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

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

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

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

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 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
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, 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;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 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;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

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

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 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, IE 10+, and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

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

/* Responsive grid */

.row-fluid {
  width: 100%;
}

.row-fluid:before, .row-fluid:after {
  display: table;
  content: '';
}

.row-fluid:after {
  clear: both;
}

.row-fluid [class*='span'] {
  display: block;
  float: left;
  width: 100%;
  min-height: 1px;
  margin-left: 2.127659574%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.row-fluid [class*='span']:first-child {
  margin-left: 0;
}

.row-fluid .span12 {
  width: 99.99999998999999%;
}

.row-fluid .span11 {
  width: 91.489361693%;
}

.row-fluid .span10 {
  width: 82.97872339599999%;
}

.row-fluid .span9 {
  width: 74.468085099%;
}

.row-fluid .span8 {
  width: 65.95744680199999%;
}

.row-fluid .span7 {
  width: 57.446808505%;
}

.row-fluid .span6 {
  width: 48.93617020799999%;
}

.row-fluid .span5 {
  width: 40.425531911%;
}

.row-fluid .span4 {
  width: 31.914893614%;
}

.row-fluid .span3 {
  width: 23.404255317%;
}

.row-fluid .span2 {
  width: 14.89361702%;
}

.row-fluid .span1 {
  width: 6.382978723%;
}

.container-fluid:before, .container-fluid:after {
  display: table;
  content: '';
}

.container-fluid:after {
  clear: both;
}

@media (max-width: 767px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid [class*='span'] {
    display: block;
    float: none;
    width: auto;
    margin-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid:before, .row-fluid:after {
    display: table;
    content: '';
  }

  .row-fluid:after {
    clear: both;
  }

  .row-fluid [class*='span'] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.762430939%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  .row-fluid [class*='span']:first-child {
    margin-left: 0;
  }

  .row-fluid .span12 {
    width: 99.999999993%;
  }

  .row-fluid .span11 {
    width: 91.436464082%;
  }

  .row-fluid .span10 {
    width: 82.87292817100001%;
  }

  .row-fluid .span9 {
    width: 74.30939226%;
  }

  .row-fluid .span8 {
    width: 65.74585634900001%;
  }

  .row-fluid .span7 {
    width: 57.182320438000005%;
  }

  .row-fluid .span6 {
    width: 48.618784527%;
  }

  .row-fluid .span5 {
    width: 40.055248616%;
  }

  .row-fluid .span4 {
    width: 31.491712705%;
  }

  .row-fluid .span3 {
    width: 22.928176794%;
  }

  .row-fluid .span2 {
    width: 14.364640883%;
  }

  .row-fluid .span1 {
    width: 5.801104972%;
  }
}

@media (min-width: 1280px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid:before, .row-fluid:after {
    display: table;
    content: '';
  }

  .row-fluid:after {
    clear: both;
  }

  .row-fluid [class*='span'] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.564102564%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  .row-fluid [class*='span']:first-child {
    margin-left: 0;
  }

  .row-fluid .span12 {
    width: 100%;
  }

  .row-fluid .span11 {
    width: 91.45299145300001%;
  }

  .row-fluid .span10 {
    width: 82.905982906%;
  }

  .row-fluid .span9 {
    width: 74.358974359%;
  }

  .row-fluid .span8 {
    width: 65.81196581200001%;
  }

  .row-fluid .span7 {
    width: 57.264957265%;
  }

  .row-fluid .span6 {
    width: 48.717948718%;
  }

  .row-fluid .span5 {
    width: 40.170940171000005%;
  }

  .row-fluid .span4 {
    width: 31.623931624%;
  }

  .row-fluid .span3 {
    width: 23.076923077%;
  }

  .row-fluid .span2 {
    width: 14.529914530000001%;
  }

  .row-fluid .span1 {
    width: 5.982905983%;
  }
}

/* Clearfix */

.clearfix:before, .clearfix:after {
  display: table;
  content: '';
}

.clearfix:after {
  clear: both;
}

/* Visibilty classes */

.hide {
  display: none;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.hidden {
  display: none;
  visibility: hidden;
}

/* Responsive visibilty classes */

.visible-phone {
  display: none !important;
}

.visible-tablet {
  display: none !important;
}

.hidden-desktop {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-phone {
    display: inherit !important;
  }

  .hidden-phone {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .visible-tablet {
    display: inherit !important;
  }

  .hidden-tablet {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}
/*==================================================
Dnd styling
====================================================*/

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

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

.dnd-section {
  padding:0px;
}

.dnd-section {
  position: relative;
}


.dnd-section > .row-fluid {
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding:0 20px;
  width: auto;
}





.dnd-section .widget-type-cell {
  padding-left: 0px;
  padding-right: 0px;
}

body .dnd-section .full-width-section > .row-fluid{
  padding: 0px!important;
}

@media (max-width: 767px) {

  .dnd-section .widget-type-cell {
    padding-left: 0px;
    padding-right: 0px;
  }

}

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

/* vietnamese */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDkv_1w4A.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDlv_1w4A.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDrv_0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDkv_1w4A.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDlv_1w4A.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDrv_0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDkv_1w4A.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDlv_1w4A.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDrv_0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDkv_1w4A.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDlv_1w4A.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDrv_0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDkv_1w4A.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDlv_1w4A.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDrv_0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDkv_1w4A.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDlv_1w4A.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDrv_0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDkv_1w4A.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDlv_1w4A.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDrv_0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDkv_1w4A.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDlv_1w4A.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDrv_0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDkv_1w4A.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDlv_1w4A.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYqz_wNahGAdqQ43Rh_eZDrv_0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_c6Dpp_k.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_cqDpp_k.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_fKDp.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_c6Dpp_k.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_cqDpp_k.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_fKDp.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_c6Dpp_k.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_cqDpp_k.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_fKDp.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_c6Dpp_k.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_cqDpp_k.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_fKDp.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_c6Dpp_k.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_cqDpp_k.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_fKDp.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_c6Dpp_k.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_cqDpp_k.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_fKDp.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_c6Dpp_k.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_cqDpp_k.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_fKDp.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_c6Dpp_k.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_cqDpp_k.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_fKDp.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_c6Dpp_k.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_cqDpp_k.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_fKDp.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/****************************************/
/* HubSpot Style Boilerplate            */
/****************************************/

/* These includes are optional, but helpful. */
/* Images */

img {
    max-width: 100%;
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: bottom; /* Suppress the space beneath the baseline */
}

/* Videos */

video {
    max-width: 100%;
    height: auto;
}

/* Embed Container (iFrame, Object, Embed) */

.hs-responsive-embed {
    position: relative;
    height: auto;
    overflow: hidden;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}

.hs-responsive-embed iframe, .hs-responsive-embed object, .hs-responsive-embed embed {
    width: 100%;
    height: 100%;
    border: 0;
}

.hs-responsive-embed,
.hs-responsive-embed.hs-responsive-embed-youtube,
.hs-responsive-embed.hs-responsive-embed-wistia,
.hs-responsive-embed.hs-responsive-embed-vimeo {
    padding-bottom: 2%;
}

.hs-responsive-embed.hs-responsive-embed-instagram {
    padding-bottom: 116.01%;
}

.hs-responsive-embed.hs-responsive-embed-pinterest {
    height: auto;
    overflow: visible;
    padding: 0;
}

.hs-responsive-embed.hs-responsive-embed-pinterest iframe {
    position: static;
    width: auto;
    height: auto;
}

iframe[src^="http://www.slideshare.net/slideshow/embed_code/"] {
    width: 100%;
    max-width: 100%;
}

@media (max-width: 568px) {
    iframe {
        max-width: 100%;
    }
}

/* Forms */

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select {
    padding: 6px;
    display: inline-block;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Menus */

.hs-menu-wrapper ul {
    padding: 0;
}

.hs-menu-wrapper.hs-menu-flow-horizontal ul {
    list-style: none;
    margin: 0;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul {
    display: inline-block;
    margin-bottom: 20px;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul:before {
    content: " ";
    display: table;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul:after {
    content: " ";
    display: table;
    clear: both;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 {
    float: left;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
    display: inline-block;
    padding: 10px 20px;
    white-space: nowrap;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children {
    position: relative;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    position: absolute;
    z-index: 10;
    left: 0;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    display: block;
    white-space: nowrap;
    width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
    left: 180px;
    top: 0;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children:hover > ul.hs-menu-children-wrapper {
    opacity: 1;
    visibility: visible;
}

.row-fluid-wrapper:last-child .hs-menu-wrapper.hs-menu-flow-horizontal > ul {
    margin-bottom: 0;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch {
    position: relative;
    margin-bottom: 20px;
    min-height: 7em;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul {
    margin-bottom: 0;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children {
    position: static;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    display: none;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper {
    display: block;
    visibility: visible;
    opacity: 1;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper:before {
    content: " ";
    display: table;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper:after {
    content: " ";
    display: table;
    clear: both;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper > li {
    float: left;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper > li a {
    display: inline-block;
    padding: 10px 20px;
    white-space: nowrap;
    max-width: 140px;
    width: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
}

.hs-menu-wrapper.hs-menu-flow-vertical {
    width: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical ul {
    list-style: none;
    margin: 0;
}

.hs-menu-wrapper.hs-menu-flow-vertical li a {
    display: block;
    white-space: nowrap;
    width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hs-menu-wrapper.hs-menu-flow-vertical > ul {
    margin-bottom: 20px;
}

.hs-menu-wrapper.hs-menu-flow-vertical > ul li.hs-menu-depth-1 > a {
    width: auto;
}

.hs-menu-wrapper.hs-menu-flow-vertical > ul li a {
    padding: 10px 20px;
    text-decoration: none;
}

.hs-menu-wrapper.hs-menu-flow-vertical > ul li.hs-item-has-children {
    position: relative;
}

.hs-menu-wrapper.hs-menu-flow-vertical > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 180px;
}

.hs-menu-wrapper.hs-menu-flow-vertical > ul li.hs-item-has-children:hover > ul.hs-menu-children-wrapper {
    opacity: 1;
    visibility: visible;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch li a {
    min-width: 140px;
    width: auto;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch > ul {
    max-width: 100%;
    overflow: hidden;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    display: none;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper,
.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper > li.hs-item-has-children > ul.hs-menu-children-wrapper {
    display: block;
    visibility: visible;
    opacity: 1;
    position: static;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch li.hs-menu-depth-2 > a {
    padding-left: 4em;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch li.hs-menu-depth-3 > a {
    padding-left: 6em;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch li.hs-menu-depth-4 > a {
    padding-left: 8em;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch li.hs-menu-depth-5 > a {
    padding-left: 140px;
}

.hs-menu-wrapper.hs-menu-not-show-active-branch li.hs-menu-depth-1 ul {
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.18);
    -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.18);
}

@media (max-width: 568px) {
    .hs-menu-wrapper, .hs-menu-wrapper * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
        width: 100%;
    }

    .hs-menu-wrapper.hs-menu-flow-horizontal ul {
        list-style: none;
        margin: 0;
        display: block;
    }

    .hs-menu-wrapper.hs-menu-flow-horizontal > ul {
        display: block;
    }

    .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 {
        float: none;
    }

    .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a,
    .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a,
    .hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper > li a {
        display: block;
        max-width: 100%;
        width: 100%;
    }
}

.hs-menu-wrapper.hs-menu-flow-vertical.no-flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper,
.hs-menu-wrapper.hs-menu-flow-horizontal.no-flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    visibility: visible;
    opacity: 1;
}

/* Space Module */

.widget-type-space {
    visibility: hidden;
}

/* Blog Author Section */

.hs-author-listing-header {
    margin: 0 0 .75em 0;
}

.hs-author-social-links {
    display: inline-block;
}

.hs-author-social-links a.hs-author-social-link {
    width: 24px;
    height: 24px;
    border-width: 0px;
    border: 0px;
    line-height: 24px;
    background-size: 24px 24px;
    background-repeat: no-repeat;
    display: inline-block;
    text-indent: -99999px;
}

.hs-author-social-links a.hs-author-social-link.hs-social-facebook {
    background-image: url("//static.hubspot.com/final/img/common/icons/social/facebook-24x24.png");
}

.hs-author-social-links a.hs-author-social-link.hs-social-linkedin {
    background-image: url("//static.hubspot.com/final/img/common/icons/social/linkedin-24x24.png");
}

.hs-author-social-links a.hs-author-social-link.hs-social-twitter {
    background-image: url("//static.hubspot.com/final/img/common/icons/social/twitter-24x24.png");
}

.hs-author-social-links a.hs-author-social-link.hs-social-google-plus {
    background-image: url("//static.hubspot.com/final/img/common/icons/social/googleplus-24x24.png");
}

/*
 * jQuery FlexSlider v2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */

/* Wrapper */
.hs_cos_wrapper_type_image_slider {
    display: block;
    overflow: hidden
}

/* Browser Resets */
.hs_cos_flex-container a:active,
.hs_cos_flex-slider a:active,
.hs_cos_flex-container a:focus,
.hs_cos_flex-slider a:focus  {outline: none;}
.hs_cos_flex-slides,
.hs_cos_flex-control-nav,
.hs_cos_flex-direction-nav {margin: 0; padding: 0; list-style: none;}

/* FlexSlider Necessary Styles
*********************************/
.hs_cos_flex-slider {margin: 0; padding: 0;}
.hs_cos_flex-slider .hs_cos_flex-slides > li {display: none; -webkit-backface-visibility: hidden; position: relative;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.hs_cos_flex-slider .hs_cos_flex-slides img {width: 100%; display: block; border-radius: 0px;}
.hs_cos_flex-pauseplay span {text-transform: capitalize;}

/* Clearfix for the .hs_cos_flex-slides element */
.hs_cos_flex-slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
html[xmlns] .hs_cos_flex-slides {display: block;}
* html .hs_cos_flex-slides {height: 1%;}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */

/* FlexSlider Default Theme
*********************************/
.hs_cos_flex-slider {margin: 0 0 60px; background: #fff; border: 0; position: relative; -webkit-border-radius: 4px; -moz-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; zoom: 1;}
.hs_cos_flex-viewport {max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; transition: all 1s ease;}
.loading .hs_cos_flex-viewport {max-height: 300px;}
.hs_cos_flex-slider .hs_cos_flex-slides {zoom: 1;}

.carousel li {margin-right: 5px}


/* Direction Nav */
.hs_cos_flex-direction-nav {*height: 0;}
.hs_cos_flex-direction-nav a {width: 30px; height: 30px; margin: -20px 0 0; display: block; background: url(//static.hsappstatic.net/content_shared_assets/static-1.3935/img/bg_direction_nav.png) no-repeat 0 0; position: absolute; top: 50%; z-index: 10; cursor: pointer; text-indent: -9999px; opacity: 0; -webkit-transition: all .3s ease;}
.hs_cos_flex-direction-nav .hs_cos_flex-next {background-position: 100% 0; right: -36px; }
.hs_cos_flex-direction-nav .hs_cos_flex-prev {left: -36px;}
.hs_cos_flex-slider:hover .hs_cos_flex-next {opacity: 0.8; right: 5px;}
.hs_cos_flex-slider:hover .hs_cos_flex-prev {opacity: 0.8; left: 5px;}
.hs_cos_flex-slider:hover .hs_cos_flex-next:hover, .hs_cos_flex-slider:hover .hs_cos_flex-prev:hover {opacity: 1;}
.hs_cos_flex-direction-nav .hs_cos_flex-disabled {opacity: .3!important; filter:alpha(opacity=30); cursor: default;}

/* Direction Nav for the Thumbnail Carousel */
.hs_cos_flex_thumbnavs-direction-nav {
    margin: 0px;
    padding: 0px;
    list-style: none;
    }
.hs_cos_flex_thumbnavs-direction-nav {*height: 0;}
.hs_cos_flex_thumbnavs-direction-nav a {width: 30px; height: 140px; margin: -60px 0 0; display: block; background: url(//static.hsappstatic.net/content_shared_assets/static-1.3935/img/bg_direction_nav.png) no-repeat 0 40%; position: absolute; top: 50%; z-index: 10; cursor: pointer; text-indent: -9999px; opacity: 1; -webkit-transition: all .3s ease;}
.hs_cos_flex_thumbnavs-direction-nav .hs_cos_flex_thumbnavs-next {background-position: 100% 40%; right: 0px; }
.hs_cos_flex_thumbnavs-direction-nav .hs_cos_flex_thumbnavs-prev {left: 0px;}
.hs-cos-flex-slider-control-panel img { cursor: pointer; }
.hs-cos-flex-slider-control-panel img:hover { opacity:.8; }
.hs-cos-flex-slider-control-panel { margin-top: -30px; }



/* Control Nav */
.hs_cos_flex-control-nav {width: 100%; position: absolute; bottom: -40px; text-align: center;}
.hs_cos_flex-control-nav li {margin: 0 6px; display: inline-block; zoom: 1; *display: inline;}
.hs_cos_flex-control-paging li a {width: 11px; height: 11px; display: block; background: #666; background: rgba(0,0,0,0.5); cursor: pointer; text-indent: -9999px; -webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; box-shadow: inset 0 0 3px rgba(0,0,0,0.3);}
.hs_cos_flex-control-paging li a:hover { background: #333; background: rgba(0,0,0,0.7); }
.hs_cos_flex-control-paging li a.hs_cos_flex-active { background: #000; background: rgba(0,0,0,0.9); cursor: default; }

.hs_cos_flex-control-thumbs {margin: 5px 0 0; position: static; overflow: hidden;}
.hs_cos_flex-control-thumbs li {width: 25%; float: left; margin: 0;}
.hs_cos_flex-control-thumbs img {width: 100%; display: block; opacity: .7; cursor: pointer;}
.hs_cos_flex-control-thumbs img:hover {opacity: 1;}
.hs_cos_flex-control-thumbs .hs_cos_flex-active {opacity: 1; cursor: default;}

@media screen and (max-width: 860px) {
  .hs_cos_flex-direction-nav .hs_cos_flex-prev {opacity: 1; left: 0;}
  .hs_cos_flex-direction-nav .hs_cos_flex-next {opacity: 1; right: 0;}
}

.hs_cos_flex-slider .caption {
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    font-size: 2em;
    line-height: 1.1em;
    color: white;
    padding: 0px 5% 0px 5%;
    width: 100%;
    bottom: 0;
    text-align: center;
}

.hs_cos_flex-slider .superimpose .caption {
    color: white;
    font-size: 3em;
    line-height: 1.1em;
    position: absolute;
    padding: 0px 5% 0px 5%;
    width: 90%;
    top: 40%;
    text-align: center;
    background-color: transparent;
}

@media all and (max-width: 400px) {
    .hs_cos_flex-slider .superimpose .caption {
        background-color: black;
        position: static;
        font-size: 2em;
        line-height: 1.1em;
        color: white;
        width: 90%;
        padding: 0px 5% 0px 5%;
        top: 40%;
        text-align: center;
    }

    /* beat recaptcha into being responsive, !importants and specificity are necessary */
    #recaptcha_area table#recaptcha_table {width: 300px !important;}
    #recaptcha_area table#recaptcha_table .recaptcha_r1_c1 {width: 300px !important;}
    #recaptcha_area table#recaptcha_table .recaptcha_r4_c4 { width: 67px !important;}
    #recaptcha_area table#recaptcha_table #recaptcha_image {width:280px !important;}
}

.hs_cos_flex-slider h1,
.hs_cos_flex-slider h2,
.hs_cos_flex-slider h3,
.hs_cos_flex-slider h4,
.hs_cos_flex-slider h5,
.hs_cos_flex-slider h6,
.hs_cos_flex-slider p {
    color: white;
}

/* Thumbnail only version of the gallery */
.hs-gallery-thumbnails li {
    display: inline-block;
    margin: 0px;
    padding: 0px;
    margin-right:-4px;
}
.hs-gallery-thumbnails.fixed-height li img {
    max-height: 150px;
    margin: 0px;
    padding: 0px;
    border-width: 0px;
}


/* responsive pre elements */

pre {
    overflow-x: auto;
}

/* responsive pre tables */

table pre {
    white-space: pre-wrap;
}

/* adding minimal spacing for blog comments */
.comment {
    margin: 10px 0 10px 0;
}

/* make sure lines with no whitespace don't interefere with layout */
.hs_cos_wrapper_type_rich_text,
.hs_cos_wrapper_type_text,
.hs_cos_wrapper_type_header,
.hs_cos_wrapper_type_section_header,
.hs_cos_wrapper_type_raw_html,
.hs_cos_wrapper_type_raw_jinja,
.hs_cos_wrapper_type_page_footer {
    word-wrap: break-word;
}
/* HTML 5 Reset */

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
    display: block;
}

audio, canvas, video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

audio:not([controls]) {
    display: none;
}

/* Support migrations from wordpress */

.wp-float-left {
    float: left;
    margin: 0 20px 20px 0;
}

.wp-float-right {
    float: right;
    margin: 0 0 20px 20px;
}

/* Responsive Google Maps */

#map_canvas img, .google-maps img {
    max-width: none;
}

/* line height fix for reCaptcha theme */
#recaptcha_table td {line-height: 0;}
.recaptchatable #recaptcha_response_field {min-height: 0;line-height: 12px;}

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





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

html {
  font-size: ;
  overflow-x:hidden;
  scroll-behavior: smooth;
}

body {
  font-size: 18px;
  font-family: 'Work Sans', sans-serif;
  color: #55565A;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  margin: 0px;
  line-height: 1.5;
  letter-spacing: 0px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
  scroll-behavior: smooth;
}

body .row-fluid .wrapper{
  max-width: 1260px;
  margin-left:auto!important;
  margin-right:auto!important;
  float: none;
  position:relative;
  z-index:2;
  box-sizing:border-box;
  padding: 0px 20px;
}
body .row-fluid .small-wrapper{
  max-width:1174px;
  margin-left:auto!important;
  margin-right:auto!important;
  float: none;
  position:relative;
  z-index:2;
  box-sizing:border-box;
  padding: 0px 20px;
}

.body-container-wrapper li {
  margin-left: 26px;
  margin-bottom: 0;
  list-style-type: disc;
}


p {
  font-size: 18px;
  font-family: 'Work Sans', sans-serif;
  color: #55565A; 
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0px;
}


img{
  height:auto;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}

/* Anchor Links */

a {
  font-size: 18px;
  font-family: 'Work Sans', sans-serif;
  color: #78a249;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0px;
  cursor: pointer;
  display:inline-block;
  margin-bottom:0;
}

a:hover, a:focus {
  text-decoration: underline;
}

h1,.h1 {
  font-size: 65px;
  font-family: 'Work Sans', sans-serif;
  color: #346094; 
  font-style: normal;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0px;
  text-transform: none;
}
h1 span{
  font-style:italic;
  color: #00AEEF;
}

.margin-40 h2{
  margin-bottom:40px;
}

h2 {
  font-size: 48px;
  font-family: 'Work Sans', sans-serif;
  color: #346094;
  font-style: normal;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0px;
  text-transform: none;
}

h3 {
  font-size: 36px;
  font-family: 'Work Sans', sans-serif;
  color: #00AEEF;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.467;
  letter-spacing: 0px;
  text-transform: none;
}

h4 {
  font-size: 36px;
  font-family: 'Work Sans', sans-serif;
  color: #FFFFFF;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0px;
  text-transform: none;
}


h5 {
  font-size: 24px;
  font-family: 'Work Sans', sans-serif;
  color: #55565A;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0px;
  text-transform: none;
}

h6 {
  font-size: 18px;
  font-family: 'Work Sans', sans-serif;
  color: #55565A;
  font-style: normal;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0px;
  text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6, p,a {
  margin-top: 0;
  margin-bottom: 1rem;
  word-break: break-word;
}

strong {
  font-weight: 800;
}

code {
  vertical-align: bottom;
}

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

.body-container-wrapper {
  background:#ffffff;
  overflow:hidden;
}

.body-container-wrapper ul{
  padding:0;
  text-decoration:none;
  list-style:none;
  margin:20px 0;
}

.body-container-wrapper ol li,
.body-container-wrapper ol{
  list-style: decimal;
}

.body-container-wrapper ol{
  margin:0;
  padding:0;
  text-decoration:none;
  margin-bottom:15px;    
}

.body-container-wrapper li{
  font-size: 18px;
  font-family: 'Work Sans', sans-serif;
  color: #55565A;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height:1.4;
  letter-spacing: 0px;
  position: relative;
}

.p-24 p{
  font-size: 24px;
  font-family: 'Work Sans', sans-serif;
  color: #000;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height:1.5;
  letter-spacing: 0px;;
}

body .row-fluid form ul,
.no-list-style li ul{
  margin:0;
  padding:0;
}

body .row-fluid form li,
.no-list-style li{
  margin:0;    
}

/* Highlighted Text */
::-moz-selection {
  color: #fff;
  background: #55565A;
  text-shadow: none;
}
::selection {
  color: #fff;
  background: #55565A;
  text-shadow: none;
}


body .row-fluid form li:before,
.no-list-style li:before{
  display:none;
}

hr {
  color: #ccc;
  background-color: #ccc;
  height: 1px;
  border: none;
}

blockquote{
  margin:0;
  font-size: 24px;
  font-family: 'Work Sans', sans-serif;
  color: #55565A;
  font-style: normal;
  font-style:italic;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom:1rem;
  letter-spacing: 0px;
}

body .row-fluid .hide-module{
  display:none;
}

.align-center {
  text-align:center;
}

.align-left {
  text-align:left;
}

.align-right {
  text-align:right;
}

.float-left{
  float:left;
}

.float-right{
  float:right;
}

.overlay{
  position:relative;
  z-index:1;
}

.overlay:before{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background:rgba(43, 43, 43, 0.4);
  z-index: -1;
}

.gray-bg{
  background:0;
}

.all-text-white,
.all-text-white h1,
.all-text-white h2,
.all-text-white h3,
.all-text-white p,
.all-text-white h4,
.all-text-white h5,
.all-text-white h6,
.all-text-white li,
.all-text-white .fa,
.all-text-white a{
  color:#ffffff;
}


.text-margin-zero h1,
.text-margin-zero h2,
.text-margin-zero h3,
.text-margin-zero p,
.text-margin-zero h4,
.text-margin-zero h5,
.text-margin-zero h6,
.text-margin-zero .fa,
.text-margin-zero a,
body .container-fluid .row-fluid .text-margin-zero.span12,
.text-margin-zero .widget-type-cta{
  margin:0;
}

body .container-fluid .row-fluid [class*="span"]{
  min-height:0;
}

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

.hubspot-link__container.sproket{
  display:none!important;
}

.section-bg{
  background-size: cover!important;
  background-position: center center!important;
}

.section-bg .bg-image{
  display:none!important;
}

.section-padding{
  padding:100px 0;
}




@media (min-width: 768px) {

  .equal-height-container > .row-fluid-wrapper > .row-fluid {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: stretch;
    -moz-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  body .row-fluid .vertical-center{
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
  }     
}

/*========================================================
Typography Responsive Styling
========================================================*/



@media (max-width:767px){

  h1 {
    font-size: 50px !important;
  }

  h2 {
    font-size: 40px !important;
  }

  body h3 {
    font-size: 30px;
  }

  h3.form-title{
    font-size:24px !important;
    line-height: normal;
  }

  h4 {
    font-size: 30px !important;
  }
  .p-24 p{
    font-size: 20px !important;
  }
  .align-right {
    text-align: center;
  }

  .align-left {
    text-align: center;    
  }

  body a.cta_button, body a.cta-button, body .row-fluid .hs-button{
    display:block;
  }
  body .margin-40 h2{
    margin-bottom:25px;
  }
}

/*======================================================
Two Column Adjust
========================================================*/

body .row-fluid .two-col-adjust>span{
  display:-webkit-box;
  display:-moz-box;
  display:-ms-flexbox;
  display:-webkit-flex;
  display:flex;-
  webkit-box-align:stretch;
  -moz-box-align:stretch;
  -webkit-align-items:stretch;
  -ms-flex-align:stretch;
  align-items:stretch;
  flex-wrap:wrap;
  -wevkit-flex-wrap:wrap;
  flex-direction:row;
  -webkit-flex-direction:row;
  margin-right:-2.5%;
}

body .row-fluid .two-col-adjust span>.hs_cos_wrapper{
  display:-webkit-box;
  display:-moz-box;
  display:-ms-flexbox;
  display:-webkit-flex;
  display:flex;
  flex-basis:46%;
  -webkit-flex-basis:46%;
  float:left;
  margin-right:4%;
  margin-top:40px;
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
  position:relative;
}

@media(max-width:767px){

  body .row-fluid .two-col-adjust span>.hs_cos_wrapper{
    display:block;
    width:100%;
    margin:20px auto 0;
    float:none
  }

  body .row-fluid .two-col-adjust>span{
    display:block;
    margin-right:0;
  }


}



/*==================================================
Three Col Adjust 
==================================================*/

body .container-fluid .row-fluid .three-col-adjust>span {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  -wevkit-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  margin-right: -3.2%;
}

body .row-fluid .three-col-adjust span>.hs_cos_wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-basis: 29.96%;
  -webkit-flex-basis: 29.96%;
  float: left;
  margin-right: 3.5%;
  margin-top: 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position:relative;
  flex-direction: column;
  -webkit-flex-direction: column;
}

body .row-fluid .three-col-adjust span>.hs_cos_wrapper:nth-child(3n){
  margin-right:0px;
}

.row-fluid .five-col-adjust>span {
  /*   display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  -wevkit-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  margin-right: -2.565%; */
}
body .row-fluid .five-col-adjust span>.hs_cos_wrapper {
  flex-basis: 20%;
  -webkit-flex-basis: 20%;
  width:20%;
  float: left;
  box-sizing:border-box;
  position:relative;
}
@media (max-width:1024px){
  .row-fluid .five-col-adjust>span {
    display: block;
    margin-right: 0;
  }
  body .row-fluid .five-col-adjust span>.hs_cos_wrapper {
    display: block;
    flex-basis: 100%;
    width:100%;
    -webkit-flex-basis: 100%;
    margin:0;
    margin-top: 30px;
  }
}
@media (max-width:767px){

  body .container-fluid .row-fluid .three-col-adjust>span {
    display: block;
    margin-right: 0;
  }

  body .row-fluid .three-col-adjust span>.hs_cos_wrapper {
    display: block;
    width: 100%;
    margin: 30px auto 0;
    float: none;
  }   

  body .row-fluid .three-col-adjust span>.hs_cos_wrapper:nth-child(3n){
    margin-right:auto;
  }

}



/*==================================================
Four Col Adjust 
==================================================*/

body .container-fluid .row-fluid .four-col-adjust>span {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  -wevkit-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  margin-right: -2.565%;
}

body .row-fluid .four-col-adjust span>.hs_cos_wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-basis: 22.5%;
  -webkit-flex-basis: 22.5%;
  float: left;
  margin-right: 2.5%;
  margin-top: 2.43%;
  box-sizing:border-box;
  position:relative;
}

@media (max-width:767px){

  body .container-fluid .row-fluid .four-col-adjust>span {
    display: block;
    margin-right: 0;
  }

  body .row-fluid .four-col-adjust span>.hs_cos_wrapper {
    display: block;
    width:100%;
    margin-top: 20px;
  }   
}





/*=====================================================================
Footer styling
========================================================================*/

.footer-section{
  position:relative;
  z-index:2;
}

.footer-section .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a{
  max-width:100%;
}

body .footer-section .widget-type-header h1,
body .footer-section .widget-type-header h2,
body .footer-section .widget-type-header h3,
body .footer-section .widget-type-header h4,
body .footer-section .widget-type-header h5,
body .footer-section .widget-type-header h6 {
  font-family:'Work Sans', sans-serif;
  color:#55565A;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  font-size:14px!important;
  letter-spacing: 0px;
}

.footer-section p{
  font-family:'Work Sans', sans-serif;
  color:#55565A;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height: 20px;
  font-size:14px;
  letter-spacing: 0px;
  margin: 22px 0px 34px;
}

.footer-section .hs-menu-wrapper.hs-menu-flow-vertical>ul li a {
  padding: 5px 0px;
  white-space: break-spaces;
}

header.header{
  position: relative;
  z-index:5;
}

.body-container-wrapper {
  position: relative;
  z-index: 3;
}

@media(max-width:767px){

  .footer-section .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-depth-1 {
    float: none;
  }

  .footer-section .social-links {
    justify-content: flex-start!important;
    margin-bottom: 20px;
  }

  .footer-section div {
    text-align: left!important;
  }  

}

@media(min-width:1200px){
  form h4 {
    font-size: 30px;
    font-family: 'Work Sans', sans-serif;
    color: #FFFFFF;
    font-style: normal;
    text-decoration: none;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0px;
    text-transform: none;
  }
}

@media(min-width:768px){
  .row-reverse.row-fluid{
    display:flex;
    display:-webkit-flex;
    flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
  }

  .row-reverse.row-fluid .right-col {
    margin: 0;
  }
  .row-reverse.row-fluid .left-col{
    margin-left:3%;
  }

}


p a{
  display: inline;
}



@media(min-width:768px) and (max-width:1024px){
  h2{
    font-size:40px;
    line-height:normal;
  }
}


body .row-fluid .style-ul li {
  list-style-type: none;
  padding-left:18px;
  position:relative;
  margin-bottom: 5px;
  margin-left:10px;
}

body .row-fluid .style-ul li:before {
  position: absolute;
  content: "\f00c";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #00AEEF;
  left: 0;
  font-size: 14px;
  top: 4px;
}



/* Home Banner */
.banner_section{
  overflow: hidden;
  position: relative;
  Z-INDEX: 14;
  box-sizing: border-box;
  display: block;
}

.banner_section .container{
  margin: 0 auto;
}

.banner_section:before{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-repeat: no-repeat;
  content: "";
  background-position: center;
  background-size:cover;
}

.banner_section .banner_cta{
  margin-top:36px;
  display: flex;
  gap: 20px; 
}

/*     container alignment */

.banner_section .container.align_left{
  float:left;
}
.banner_section .container.align_center{
  float:none;
}
.banner_section .container.align_right{
  float:right;
}



@media (max-width: 767px) {
  .banner_section .container {
    max-width: 100%;
    text-align: center;
  }

  .banner_section .banner_cta {
    flex-direction: column;
    gap: 25px;
  }
 body .banner_section .banner_cta{
    margin-top:22px;
  }
}


  .banner_section{
   height:100vh;
    display:flex;
    justify-content:flex-start;
    align-items:center;
    padding:60px 0 !important;
    min-height:560px;
  }


@media(max-width:767px){
  .banner_section{
   height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:80px 0;
    min-height:650px;
  }
}



/********** Home two Column Section *********/


.two_col_image_slider_section .container .video_container{
  max-width: 570px;
}
.two_col_image_slider_section .container .description{
  margin-top:40px;
}
.two_col_image_slider_section .container .right_container {
  margin:0;
}
.two_col_image_slider_section .container .video_section_cta{
  margin-top:40px;
}
/* .two_col_image_slider_section .row-fluid{
display:flex !important;
}  */


@media(min-width:768px){
  .two_col_image_slider_section .inner-text-conta{
    max-width:570px;
  }
  .two_col_image_slider_section .inner-text-conta h3{
    line-height:39.6px;
    margin-bottom:24px;
  }
}

@media (max-width: 767px) {
  .two_col_image_slider_section .container{
    flex-direction: column;
    -webkit-flex-direction: column;
    padding: 0 10px;
  }    
 .two_col_image_slider_section .left-column.right_conta.span6 {
    margin-bottom: 40px;
  }
  .two_col_image_slider_section .inner-text-conta h3{
    line-height:normal;
  }

  .two_col_image_slider_section .custom-description-container h3{
    line-height:normal;
  }
  .two_col_image_slider_section .left_container{
    margin-bottom:40px;
  }
  .two_col_image_slider_section .container .banner_cta, .two_col_image_slider_section .container .description {
    margin-top: 25px;
  }
  .two_col_image_slider_section .container .video_container{
    max-width: 100%;
  }
  body .two_col_image_slider_section .container .video_section_cta {
    margin-top: 20px;
  }
  body .two_col_image_slider_section .video-right-col{
    max-width:100%;
  }
  body .two_col_image_slider_section .section-bg{
    height:277px;
  }
  body .two_col_image_slider_section .video-content a.play-icon {
    display: block;
    max-width: 50px;
  }
  body .two_col_image_slider_section .play-button{
    max-width: 50px;
  }
}
.two_col_image_slider_section .video-content .inner-div {
  position: absolute;
  bottom: 0;
  transition: all .5s ease-in-out;
  opacity: 1;
  left: 0;
  top: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.two_col_image_slider_section .video-content a.play-icon {
  display: block;
  max-width: 100px;
  margin: 0 auto;
}


/********** Home Scrollable Section *********/



@media(min-width:768px){
  .scrollable_section ul.scroll_list li {
    list-style: none;
    margin: 0;
  }
  .scrollable_section ul.scroll_list li {
    list-style: none;
    margin: 0;
    display: inline-block;
    padding: 10px 44px;
  }
  .scrollable_section ul.scroll_list {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 13px 0 67px;
  }
  .scrollable_section ul.scroll_list li:first-child{
    padding-left:0;
  }
  .scrollable_section ul.scroll_list li:last-child{
    padding-right:0;
  }
  .scrollable_section ul.scroll_list li a {
    font-style: italic;
    font-weight: bold;
  }  
  .scrollable_section ul.scroll_list li a:hover{
    text-decoration: underline #e8ebed;
    -webkit-text-decoration: underline #e8ebed;
    text-underline-offset: 4px;
    text-decoration-thickness: 4px;
  }
}
@media(max-width:767px){
  body .scrollable_section .hide_mobile{
    display:none;
  }
}
.scrollable_section.no-link-styling ul.scroll_list li a:hover{
  text-decoration: none;
}
.scrollable_section.no-link-styling ul.scroll_list li a{
  cursor: text;
}


/********** Home resource repeater Section *********/


.resource_repeater .left-col h2{
  margin-bottom:40px;
}

.resource_repeater .left-col a.cta_button{
  font-style: italic;
  font-weight: bold;
  font-size: 40px;
  line-height: 63px;
  padding: 17px 67px 17px 26px;
  position: absolute;
  bottom: 120px;
  right: 33%;
}
.resource_repeater .left-col a.cta_button:before {
  content: "";
  background:url('https://253116.fs1.hubspotusercontent-na1.net/hubfs/253116/arrow_icon.svg');
  position: absolute;
  right: 26px;
  z-index: -1;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size:contain;
  top: 34px;
  transition: all .15s ease;
}
.resource_repeater .left-col a.cta_button:hover:before {
  content: "";
  background:url('https://253116.fs1.hubspotusercontent-na1.net/hubfs/253116/arrow_icon_green.svg');
  position: absolute;
  right: 26px;
  z-index: -1;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size:contain;
  top: 34px;
  transition: all .15s ease;
}
@media(min-width:768px){
  .resource_repeater .content_conta {
    max-width: 570px;
    padding-bottom:220px;
  }
}


@media(max-width:767px){
  body .resource_repeater .left-col a.cta_button{
    padding:13.4px 60px 13.4px 18px;
    position: relative;
    bottom: 0;
    right: auto;
    margin-top: 14px;
  }
  .resource_repeater .left-col a.cta_button:hover:before,
  .resource_repeater .left-col a.cta_button:before {
    right:18px;
  }
  body .resource_repeater .left-col h2,
  body .resource_repeater .left-col p {
    color:#fff;
  }
  body .resource_repeater .left-col h2 {
    margin-bottom: 25px;
  }
  .resource_repeater {
    position:relative;
    z-index:1;
  }
  .resource_repeater:before {
    position:absolute;
    z-index:-1;
    left:0;
    right:0;
    top:0;
    bottom:0;
    background:#2C2D2F;
    content:'';
    opacity:0.55;
  }
}


@media(max-width:385px){
  .resource_repeater .left-col a.cta_button:before {
    right:18px;
  }
  body .resource_repeater .left-col a.cta_button{
    padding:13.4px 45px 13.4px 18px;
    line-height:40px;
    font-size:24px;
  }
  .resource_repeater .left-col a.cta_button:hover:before,
  .resource_repeater .left-col a.cta_button:before {
    width:20px;
    height:20px;
    top:24px;
    right:18px;
  }
}



/********** Home two Column Overlay Section *********/




@media(min-width:1200px){
  .two_col_overlay .list_container{
  margin-top:40px;
}
}
.two_col_overlay li{
  margin-left: 18px;
  margin-bottom: 20px; 
}
.two_col_overlay .image_container{
  width: 100%;
  height: 553px;
  max-width: 396px;
  position:relative;
}
.two_col_overlay .list_container{
  max-width: 570px;
  margin-left:auto;
}
.two_col_overlay .overlay_cta{
  display:flex;
  margin-top:40px;
  gap:42px;
}
.two_col_overlay {
  position:relative;
  z-index:2;
  overflow: hidden;
} 
.two_col_overlay .list_container .description{
  margin-top:40px;
}
.two_col_overlay .vector{
  bottom: -65px;
  left: -135px;
  position: absolute;
}
.two_col_overlay .vector h2{
  font-size:102px;
  line-height:1;
  color: #00AEEF;
  font-weight:300;
  font-style:italic;
  opacity: 0.9;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .two_col_overlay .overlay_cta {
    flex-direction: column;
    gap: 29px;
  }
}
@media (max-width: 767px) {
  .two_col_overlay .row-fluid{
    display:block;
  }
  .two_col_overlay .list_container {
    margin-left: 10px;
    max-width: 100%;
    margin-top: 40px;
  }
  .two_col_overlay .list_container .description {
    margin-top: 25px;
  }
  .two_col_overlay .overlay_cta {
    flex-direction:column;
    gap: 25px;
    margin-top: 35px;
  }
}
.two_col_overlay .vector h2{
  min-width:550px;
}
@media(max-width:1400px){
  body .two_col_overlay .image_container{
    max-width:76%;
    margin:0 auto;
    height:auto;
  }
  body .two_col_overlay .vector {
    bottom: -70px;
    left: -27px;
    position: absolute;
  }
  body .two_col_overlay .vector h2{
    font-size:59px;
  }
}


/********** Home Blog Section *********/



.blog-section-v2 .recent-blog-post-latest,
.blog-section-v2 .latest-news{
  z-index:1;
  position:relative;
}
.blog-section-v2 .latest-news:before, .blog-section-v2 .recent-blog-post-latest:before {
  position: absolute;
  background: url(https://253116.fs1.hubspotusercontent-na1.net/hubfs/253116/MM-Pattern-HP-Blog-News.png);
  content: '';
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: -17px;
  left: 0;
  right: 0;
  background-size: 100% 100%;
}
.blog-section-v2 .recent-blog-post-latest li{
  list-style-type:none;
  margin-left:0;
}
.blog-section-v2 .latest-news-conta li{
  list-style-type:none;
  margin-left:0;
}
.blog-section-v2 .recent-blog-post-latest .left-column ul{
  margin:0;
}
.blog-section-v2 .recent-blog-post-latest .right-column ul{
  margin:0;
}
.blog-section-v2 .latest-news-conta .news-left-column ul{
  margin:0;
}
.blog-section-v2 .latest-news-conta .news-right-column ul{
  margin:0;
}
.blog-section-v2 .latest-news{
  box-shadow: 0px 0px 20px #1D365426;
  border-radius: 3px;
  opacity: 1;
  padding:50px 30px;
  padding-top:43px;
}
.blog-section-v2 .recent-blog-post-latest{
  box-shadow: 0px 0px 20px #1D365426;
  border-radius: 3px;
  opacity: 1;
  padding:50px 30px;
  padding-top:43px;
}
.blog-section-v2 a.cta_button{
  margin-top:48px;
}
.blog-section-v2 .post-title a {
  font-size:18px;
  line-height:25px;
  letter-spacing:0;
  text-transform:capitalize;
  transition:.3s ease-in-out;
}
.blog-section-v2 .post-title h6{
  font-size:18px;
  line-height:25px;
  letter-spacing:0;
  text-transform:capitalize;
}
.blog-section-v2 .date-for-post span{
  letter-spacing: 0px;
  color: #55565A;
  opacity: 0.75;
  font-size:12px;
  line-height:18px;
}
.blog-section-v2 .blog-post__tags a{
  letter-spacing: 0px;
  color: #55565A;
  opacity: 0.75;
  font-size:12px;
  line-height:18px;
}
.blog-section-v2 .post-title a:hover h6{
  color:#78A249;
}
@media(min-width:768px){
  .blog-section-v2 .top-heading-conta {
    margin-bottom:52px;
  }
  .blog-section-v2 .latest-blog-conta{
    flex-basis:47.5%;
    -webkit-flex-basis:47.5%;
    width:47.5%;
    float:left;
  }
  .blog-section-v2 .latest-news-conta{
    flex-basis:47.5%;
    -webkit-flex-basis:47.5%;
    width:47.5%;
    float:right;
    margin-left:3%;
  }
  .blog-section-v2 .hs_cos_wrapper{
    max-width:224px;
  }
  .blog-section-v2 .latest-news-conta ul{
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 37px;
    column-gap: 45px;
  }
  .blog-section-v2 .recent-blog-post-latest .left-column ul {
    display: flex;
    gap:45px;
  }
  .blog-section-v2 .recent-blog-post-latest .right-column ul {
    display: flex;
    gap:45px;
  }
  .blog-section-v2 .recent-blog-post-latest .left-column {
    padding-bottom: 37px;
  }
  .blog-section-v2 .latest-news-conta .news-left-column {
    padding-bottom: 37px;
  }
  .blog-section-v2 .hs_cos_wrapper.latest-post-conta:nth-child(2) {
    margin-top: 0 !important;
  }
  .blog-section-v2 .hs_cos_wrapper.latest-post-conta:first-child {
    margin-top: 0 !important;
  }
}
@media(min-width:1400px){
  body .row-fluid .blog-section-v2 .two-col-adjust span>.hs_cos_wrapper{
    margin-right:7.5%;
  }
}
@media(min-width:768px) and (max-width:1024px){
  .blog-section-v2 a.cta_button {
    margin-top: 30px;
  }
}
@media(max-width:767px){
  .blog-section-v2 .latest-blog-conta {
    margin-bottom: 40px;
  }
  .blog-section-v2 a.cta_button {
    margin-top: 0px;
  }
  .blog-section-v2 .top-heading-conta {
    margin-bottom:42px;
  }
  .blog-section-v2 .recent-blog-post-latest li{
    margin-bottom:25px; 
  }
  .blog-section-v2 .latest-news-conta li{
    margin-bottom:30px; 
  }
  .blog-section-v2 .recent-blog-post-latest{
    padding-top:30px;
    padding-bottom:35px;
  }
  .blog-section-v2 .latest-news{
    padding-top:30px;
    padding-bottom:35px;
  }
  .blog-section-v2 .two-col-adjust {
    padding-bottom: 35px;
  }
}


/********** Home Blockquote Section *********/


.blockquote_section .left_content{
  position:relative
}
.blockquote_section .label{
  margin-top:25px;
}
.blockquote_section .row-fluid{
  display:flex;

}
.blockquote_section blockquote{
  max-width: 769px;
  position: relative;
  z-index:1;
}  
.blockquote_section .right_content{
  width: 100%;
  max-width: 370px;
  height: 321px;
}
@media (max-width: 767px) {
  .blockquote_section .row-fluid{
    flex-direction: column;
    align-items: center;
  }
  .blockquote_section blockquote{
    max-width: 100%;
    font-size: 20px;
  }  
  .blockquote_section .left_content{
    margin-bottom: 10px;
  }
  .blockquote_section .right_content{
    max-width: 315px;
    height: 272px;
  }
}
@media(min-width:768px) and (max-width:1400px){
  body .blockquote_section .left_content:before{
    top:-76px;
    left:0;
  }
}
@media(max-width:767px){
  body .blockquote_section .left_content:before{
    top:-40px;
    left:0;
    max-width:50px;
  }
}


/********** Home two Column Form Section *********/


.two_col_form_vector {
  position:relative;
  z-index:1;
}
.two_col_form_vector  h3.form-title {
  display: none;
}
.two_col_form_vector .description{
  max-width: 600px;
  margin: 40px 0;
}
.two_col_form_vector form{
  max-width:470px;
  margin :0 0 0 auto;
  box-shadow: 0px 0px 20px #1D365426;
  border-radius: 3px;
  padding-top:38px;
}
.two_col_form_vector .left_content{
  margin-top: 20px;
}
.two_col_form_vector  form .actions{
  margin:0;
  margin-top:5px;
}
.two_col_form_vector  form textarea.hs-input {
  height: 65px!important;
}
.two_col_form_vector .row-fluid .hs-button {
  margin-top: 0px;
}
.two_col_form_vector form textarea.hs-input{
  resize:none;
}
.two_col_form_vector .submitted-message {
  text-align: center;
  color: #fff;
  padding: 40px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .two_col_form_vector .description {
    margin: 25px 0;
  }
  body .two_col_form_vector .submitted-message {
    text-align: left;
    padding: 40px 0;
    min-height: 300px;
    display: block;
  }
  .two_col_form_vector form {
    max-width: 100%;
    margin: 50px 0 0 0;
  }
}
@media(min-width:480px) and (max-width:497px){
  .two_col_form_vector .right-content .hs-form label{
    font-size:13px;
  }
}
@media(min-width:2500px){
  body .two_col_form_vector:before{
    background-size:contain;
    height: 700px;
  }
}
/*****************************************/
/* Start your style declarations here    */
/*****************************************/

button:disabled,
.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;
}

body button,
body .button,
body a.cta-button,
body a.cta_button,
body a.hs-button{    
  font-size: 18px;
  font-family: 'Work Sans', sans-serif;
  color: #fff;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  border-radius:  3px;
  background:#78A249;
  line-height: 1; 
  padding: 7.5px
    21px;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  transition: all .15s ease;
  -webkit-transition: all .15s ease-in;
  letter-spacing: 0px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  border:2px solid
    #78A249;
  text-transform: none;
}

@media(max-width: 1024px) and (min-width: 768px) {
  body .row-fluid .hs-button {
    font-size: 14px !important;
  }
}

body button:hover,
body .button:hover,
body .row-fluid .hs-button:hover,
.row-fluid a.cta_button:hover,
body .row-fluid a.hs-button:hover{ 
  background: rgba(255, 255, 255, 
    100);
  border-color:#78A249;
  color:#78A249;
} 

body .row-fluid .hs-search-field__bar button:hover svg{
  fill:#78A249;
}

/****************Button Sizes*******************/


.transparent-cta a.cta-button,
.transparent-cta a.cta_button,
.transparent-cta a{
  font-size: 18px;
  font-family: 'Work Sans', sans-serif;
  color: #FFFFFF;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  border-radius:  3px;
  background: rgba(255, 255, 255,
    0);
  position:relative;
  border: 2px
    solid #78A249;
  padding: 7.5px 21px;
  line-height:1; 
  letter-spacing:0px;
  text-transform: none;
}

.transparent-cta a.cta_button:hover,
.transparent-cta a:hover{ 
  background: rgba(120, 162, 73, 100);
  border-color:#78A249;
  color:#ffffff;
} 

.transparent-cta a.cta_button:hover:before{
  display:none;
}

.simple-cta a.cta_button,
.simple-cta a{
  font-size: 16px;
  font-family: 'Work Sans', sans-serif;
  color: #78A249;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  border: 0;
  background: rgba(255, 255, 255, 0);
  line-height:1.18; 
  letter-spacing:0px;
  padding: 0px 0px;
  position:relative;
  margin-top: 20px;
  display:inline-block;
  text-transform: uppercase;
}

.simple-cta a.cta_button:hover{
  color: #78A249;
  background: rgba(255, 255, 255, 0);
}

body .container-fluid .row-fluid .small.simple-cta a.cta_button,
body .container-fluid .row-fluid .medium.simple-cta a.cta_button,
body .container-fluid .row-fluid .large.simple-cta a.cta_button{
  padding:0px!important;
}

.transparent_cta a.cta_button,
.transparent_cta a{
  background: rgba(120, 162, 73,
    100);
}


body .row-fluid .image-cta a.cta_button{
  background: none;
  padding: 0;
  border:none;
}


/*   This is The CSS Of Header Erp  */

header.header-erp {
    padding: 16px 20px;
  background:#F7F9FA;
}

.header-erp .header-logo-contain {
    max-width: 170px;
    max-height: 28px;
}
/*****************************************/
/* Start your style declarations here    */
/*****************************************/








/*=========================================================================
form styling
==========================================================================*/

/* Help text */

form legend {
  font-size: 16px;
}

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

form .hs-richtext img {
  max-width: 100% !important;
}

.hs-input.invalid.error {
  border-color: #55565A;
}

.hs-error-msg {
  color: #55565A;
  margin-top: 0.35rem;
}

/*======= Placeholder Color ====*/

body .row-fluid .hs-input::-webkit-input-placeholder {
  font-size: 14px;
  font-family: 'Work Sans', sans-serif;
  color: #55565A;
  text-transform: none;
  font-style: normal;
  font-weight: normal;
  line-height: 1.75;
}

body .row-fluid .hs-input::-moz-placeholder {
  font-size: 14px;
  font-family: 'Work Sans', sans-serif;
  color: #55565A;
  text-transform: none;
  font-style: normal;
  font-weight: normal;
  line-height: 1.75;
}

body .row-fluid .hs-input::-ms-input-placeholder {  
  font-size: 14px;
  font-family: 'Work Sans', sans-serif;
  color: #55565A;
  text-transform: none;
  font-style: normal;
  font-weight: normal;
  line-height: 1.75;
}

.email-prefs .item .item-inner span {
  font-size: 24px;
  color: #FFFFFF;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0px;
}

.email-prefs .item .item-inner p {
  font-size: 18px;
  color: #55565A;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0px;
}

input:focus{
  outline: none;
}

select::-ms-expand {
  display: none;
}

input[type="file"]::-webkit-file-upload-button {
  -webkit-appearance:none;
  border:0;
  background:;
  color:#ffffff;
  position:absolute;
  bottom:40%;
  left:40%;
  width:100px;
  height:24px;
  font-size:16px;
  border-radius:4px;
}

form {
  padding:30px 30px 42px;
  background: rgba(255, 255, 255, 1.0);
  border: 0px solid rgba(120, 162, 73, 1.0);
  border-radius: 0px;
  max-width: 670px;
  margin: 0 auto;
  box-shadow: 0px 0px 20px #1D365426;
}

h3.form-title {
  font-size: 30px;
  font-family: 'Work Sans', sans-serif;
  color: #55565A;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height: ;
  letter-spacing: px;
  text-transform: ;
}

body .row-fluid .hs-button {  
  font-size: 18px;
  line-height: 18px;
  padding: 7.5px 21px;
  font-family: 'Work Sans', sans-serif;
  color: #ffffff;
  font-style: normal;
  text-align: center;
  display: inline-block;
  letter-spacing: 0px;
  position: relative;
  z-index: 1;
  transition: all .15s ease;
  top: 0;
  background-color: rgba(120, 162, 73, 1.0);
  border: 2px solid rgba(120, 162, 73, 1.0);
  border-radius: 3px;
  text-shadow: 0 1px 3px rgb(36 180 126 / 40%);
  text-transform: none;
  font-weight: 400;
  cursor: pointer;
  box-shadow: 0 4px 6px rgb(50 50 93 / 11%), 0 1px 3px rgb(0 0 0 / 8%);
  min-width: 165px;
}

body .row-fluid .hs-button:hover{ 
  background: rgba(255, 255, 255, 1.0);
  border-color:#78A249;
  color:#78A249;
} 

.hs_recaptcha.hs-recaptcha.field.hs-form-field .input {
  display: inline-block;
  position: relative;
  margin-bottom: 0px;
}

body .row-fluid .hs-button:focus,
body .row-fluid .hs-button:active{
  background-color: #78A249;
  border: 1px solid #78A249;
  border-radius: 3px;
  color: #ffffff;
  outline: none;
}

.hs-form label {
  display: block;
  float: none;
  width: auto;
  font-size: 14px;
  font-family: 'Work Sans', sans-serif;
  color: #55565A;
  text-decoration: 0;
  font-style: normal;
  font-weight: 400;
  text-align: left;
  line-height: 16px;
  padding-top: 0;
  margin-bottom: 5px;
  margin-top: 0px;
  text-transform: none;
  letter-spacing: normal;
  max-height:16px;
  overflow: hidden;
}

body .container-fluid .row-fluid .hs-error-msgs label {
  margin-top: 0px;
  font-size: 10px;
  font-family: 'Work Sans', sans-serif;
  color: ;
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  line-height:normal;
}

body .container-fluid .row-fluid .hs-field-desc {  
  margin-top: 0px;
  font-size: 14px;
  font-family: 'Work Sans', sans-serif;
  color: #78A249;
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
}

form .hs-richtext p,
.hs-form-booleancheckbox-display p,
.legal-consent-container .hs-form-booleancheckbox-display{
  font-size: 14px ! important;
  font-family: 'Work Sans', sans-serif;
  color: #55565A;
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  text-align: left;
}

.legal-consent-container .hs-input[type="checkbox"] {
  margin: 0 7px 0px 0px !important;
  top: 2px !important;
}

.legal-consent-container .hs-form-booleancheckbox-display p {
  vertical-align: middle;
}

body .row-fluid .hs-input,
input#hs-pwd-widget-password{
  display: inline-block;
  width: 100%;
  height:35px;
  padding: 6px 6px;
  font-size: 14px;
  font-family: 'Work Sans', sans-serif;
  color: #55565A;
  text-transform: none;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #ffffff;
  border: 1px solid #346094;
  box-sizing: border-box;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

input.email-edit.hs-input,
body input#hs-pwd-widget-password{
  height:35px!important;
  margin-top:0px!important;
  width:100%!important;
}

body .row-fluid .field.hs-form-field{
  margin-bottom: 15px;
}

.body-container-wrapper .hs-error-msgs,
.hs-error-msg{
  margin:0;
}

.submitted-message {
  text-align: center;
}

/*=======================================================
CHECKBOX AND RADIO BUTTONS STYLING
=======================================================*/            
form input[type=checkbox],
.row-fluid .hs-form .field .input input[type="checkbox"],
.row-fluid .hs-form .field .input  input[type="radio"]{
  width:auto;
}
form input[type=checkbox],
.row-fluid .hs-form .field .input input[type="checkbox"],
.row-fluid .hs-form .field .input  input[type="radio"]{
  padding: 0;
  background: rgba(255, 255, 255, 1.0);
  margin-left: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  color: #55565A;}
-webkit-appearance: none;
border: 1px solid rgba(120, 162, 73, 1.0);
margin-right: 8px;
top: 4px;
width: 15px;
height: 15px;
}

input[type="radio"]:checked:after,
.row-fluid .hs-form .field .input input[type="radio"]:checked:after {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  top: 2px;
  background-color: #78A249;
  left: 2px;
  border-radius: 50%;
}

body textarea.hs-input {
  height: 150px!important;
  resize: none;
}

.two-col-form-section textarea.hs-input {
  height: 122px;
}

.inputs-list label>input, .inputs-list label>span {
  vertical-align: middle;
}

form input[type=checkbox]:checked:after,
.row-fluid .hs-form .field .input input[type="checkbox"]:checked:after {
  content: '';
  position: absolute;
  width: 9px;
  height: 5px;
  top: 3px;
  left: 2px;
  border: 2px solid rgba(120, 162, 73,1.0);
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}

form input[type=checkbox]:checked:after,
.row-fluid .hs-form .field .input input[type="checkbox"]:checked:after {
  display:transparent;
}

form input[type=checkbox],
body .row-fluid .hs-form .field .input input[type="checkbox"] {
  padding: 0; 
  background: rgba(255, 255, 255, 1.0);
  margin-left: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 8px;
  -webkit-appearance: none;
  border: 1px solid rgba(120, 162, 73, 1.0);
  margin-right: 8px;
  top: 3px;
  width: 15px;
  height: 15px;
  border-radius:0px;
}

input[type="radio"],
.row-fluid .hs-form .field .input input[type="radio"]{
  border-radius: 50%;
  margin-bottom: 4px;
  height: auto;
  overflow: unset;
}

input[type="radio"]::before,
.row-fluid .hs-form .field .input input[type="radio"]::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(120, 162, 73, 1.0);
  background: rgba(255, 255, 255, 1.0);
  border-radius: 50%;
  position: absolute;
  left: -21.2px;
  bottom: -7px;
  opacity: 1;
  transition: all 0.3s;
}

input[type="radio"]:checked::after,
.row-fluid .hs-form .field .input input[type="radio"]:checked::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(120, 162, 73,1.0);
  background: rgba(120, 162, 73,1.0);
  border-radius: 50%;
  position: absolute;
  left: -18px;
  bottom: -4px;
  opacity: 1;
  transition: all 0.3s;
}

input[type="radio"],
.row-fluid .hs-form .field .input input[type="radio"] {
  appearance: none;
  margin: 0;
}

.row-fluid .hs-form .field .input .hs-form-radio-display {
  margin-left: 20px;
}

.hs-input[type=file] {
  background-color: ;
  padding: initial;
  border: initial;
  line-height: initial;
  box-shadow: none;
  height: auto;
}

form .file-upload-button-label {
  border: 1px solid #346094;
  position: absolute;
  left: 11px;
  top: 8px;
  border-radius: 6px;
  padding: 0px 10px;
  color: #55565A;
  font-size: 14px;
  line-height: 36px;
  letter-spacing: 0px;
  width: auto;
  height: 0;
  display: flex;
  cursor: pointer;
  max-width: 100%;
  margin-bottom: 0px;
  height: 36px;
  font-weight: normal;
}

form .file-upload-file-name {
  height: 55px;
  color: #55565A;
  line-height: normal;
  display: flex;
  border: 1px solid #346094;
  border-radius: 6px;
  flex-direction: column;
  justify-content: center;
  font-size: 14px;
  font-weight: normal;
  position: relative;
  right: 0;
  width: 100%;
  top: 0px;
  padding: 0 10px;
  cursor: pointer;
  max-width: 100%;
  margin-bottom: 20px;
  box-sizing:border-box;
  padding-left:134px;
}

form input[type="file"] {
  display: none !important;
}

form .input {
  display: block;
  position: relative;
  margin-bottom: 0px;
}

body .row-fluid form select {
  background: url(//253116.fs1.hubspotusercontent-na1.net/hubfs/253116/raw_assets/public/Meaden%20Moore/images/down-arrow-6402.svg)no-repeat!important;
  background-position: 98.3%!important;
  -webkit-appearance: none!important;
  -moz-appearance: none!important;
  -ms-appearance: none!important;
  cursor: pointer!important;
  background-size: 8px!important;
  padding:6px 30px 6px 6px !important;
}

@media(max-width:480px){

  form .file-upload-button-label{
    font-size:12px;
  }

  form .file-upload-file-name{
    font-size:12px;
    padding-left: 102px;
  }

  form {
    padding: 40px 20px;
  }

}

.hs-input input,
.hs-input textarea {
  transition: border 0.2s linear;
}

body .hs-input:focus {
  outline: 0;
}

select[multiple].hs-input {
  height: inherit;
}

/* Force single column fields to full width inside of fieldsets */
fieldset.form-columns-1 .hs-input:not([type=radio]):not([type=checkbox]) {
  width: 100% !important;
}

body .row-fluid fieldset {
  max-width: 100%;
}

input.hs-input.error,
div.field.error input,
div.field.error textarea,
div.field.error .chzn-choices,
textarea.hs-input.error,
select.hs-input.error {
  border-color: #333e63;
}

input.hs-input.error:focus,
div.field.error input:focus,
div.field.error textarea:focus,
div.field.error .chzn-choices:focus,
textarea.hs-input.error:focus,
select.hs-input.error:focus {
  border-color: #346094;
}

.actions {
  padding: 0;
  margin-top: 20px;
}

body .row-fluid .hs-button{
  margin-top: 20px;
}

.inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 0;
}

.inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
  margin-left:0;
}

.inputs-list label {
  color: #55565A;
  display: inline-block;
  float: none;
  width: auto;
  padding: 0;
  line-height: 18px;
  text-align: left;
  white-space: normal;
  font-weight: normal;
  cursor: pointer;
  text-transform: capitalize;
}

.inputs-list:first-child {
  padding-top: 11px;
}

.inputs-list > li + li {
  padding-top: 2px;
}

ul.no-list {
  list-style: none;
}

.hs-field-desc {
  color: ;
  margin: 0px 0px 6px;
  font-size: 14px;
}

.hs-form-required {
  color: #55565A;
}

.hs-richtext {
  margin-bottom: 3px;
  line-height: 1.2;
  font-size: ;
  color: ;
}
.hs-richtext hr {
  text-align: left;
  margin-left: 0;
  width: 91%;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

.email-correction, .email-validation {
  padding-top: 3px;
  font-size: 12px;
}

.email-correction a,
.email-validation a {
  cursor: pointer;
}

@media(max-width:767px){
  body .row-fluid form .form-columns-2 .hs-form-field .hs-input {
    width: 100%!important;
  }
  /****    Search in Blog    ****/
  body .hs-blog-listing .hs-search-field__bar>form>.hs-search-field__input{
    background-size: 9% 43%;
    margin-bottom: 10px;
  }
}

@media(max-width:400px){

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

}

@media (max-width: 400px),
  (min-device-width: 320px) and (max-device-width: 480px) {
    .email-correction form .form-columns-2 .hs-form-field,
    .email-correction form .form-columns-3 .hs-form-field,
    .email-validation form .form-columns-2 .hs-form-field,
    .email-validation form .form-columns-3 .hs-form-field {
      float: none;
      width: 100%;
    }
    .email-correction form .form-columns-2 .hs-form-field .hs-input,
    .email-correction form .form-columns-3 .hs-form-field .hs-input,
    .email-validation form .form-columns-2 .hs-form-field .hs-input,
    .email-validation form .form-columns-3 .hs-form-field .hs-input {
      width: 100%;
    }
    .email-correction form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-2 .hs-form-field input[type=radio],
    .email-correction form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-3 .hs-form-field input[type=radio],
    .email-validation form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-2 .hs-form-field input[type=radio],
    .email-validation form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-3 .hs-form-field input[type=radio] {
      width: 24px;
    }

}

.hs-button,
.hs-form-field input[type=text],
.hs-form-field input[type=email],
.hs-form-field input[type=phone],
.hs-form-field input[type=number],
.hs-form-field input[type=tel],
.hs-form-field input[type=date],
.hs-form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.hs-default-font-element,
.hs-main-font-element {
  font-family: ;
}



h3.form-title {
  text-align: center;
  color: #fff;
  margin-bottom: 0;
  background: #00AEEF;
  padding: 18px 17px 17px;
} 


@media(min-width:1025px){
  fieldset.form-columns-2 {
    display: flex;
  }
}

.hs-fieldtype-textarea.hs-input{
  resize:none !important;
}
body .row-fluid ul.no-list.hs-error-msgs.inputs-list li {
  position: absolute;
  left: 0;
  top: 64px;
  font-size: 10px;
  line-height: normal;
}
body .hs-blog-post .row-fluid ul.no-list.hs-error-msgs.inputs-list li{
  top: auto;
  bottom: -18px;
}
body .row-fluid .hs-fieldtype-select ul.no-list.hs-error-msgs.inputs-list li{
  top: auto;
  bottom:-15px;
}
body .row-fluid .hs-fieldtype-radio ul.no-list.hs-error-msgs.inputs-list li{
  top: auto;
  bottom:-13px; 
}

body .row-fluid .field.hs-form-field{
  position: relative;
}
body .row-fluid .hs-fieldtype-textarea ul.no-list.hs-error-msgs.inputs-list li {
  bottom: -8px;
  top: auto;
}



@media(max-width:1024px){
  body .hs-blog-post .row-fluid ul.no-list.hs-error-msgs.inputs-list li label{
    font-size: 10px;
    line-height: normal;
  }
}


form .form-columns-1 .input{
  margin-right: 0px !important;
}
/* form .form-columns-2 .hs-form-field label{
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
} */
form .form-columns-2 .hs-form-field:first-child .input,
form .form-columns-2 .hs-form-field:first-child label{
  margin-right: 4px !important;
}
form .form-columns-2 .hs-form-field:last-child .input,
form .form-columns-2 .hs-form-field:last-child label{
  margin-left: 4px !important;
  margin-right: 0px !important;
}
@media(min-width: 1201px){
  fieldset.form-columns-2{
    gap: 22px;
  }
}
@media(min-width: 768px) and (max-width: 1200px){
  fieldset.form-columns-2{
    flex-direction:column;
    gap:0px;
  }
  form .form-columns-2 .hs-form-field,
  form .form-columns-2 .hs-form-field{
    width: 100% !important;
  }
  form .form-columns-2 .hs-form-field:first-child .input,
  form .form-columns-2 .hs-form-field:first-child label{
    margin-right: 0px !important;
  }
  form .form-columns-2 .hs-form-field:last-child .input,
  form .form-columns-2 .hs-form-field:last-child label{
    margin-left: 0px !important;
  }
}

@media(max-width: 767px){
  form .form-columns-2 .hs-form-field,
  form .form-columns-2 .hs-form-field{
    width: 100% !important;
  }
  form .form-columns-2 .hs-form-field:first-child .input,
  form .form-columns-2 .hs-form-field:first-child label{
    margin-right: 0px !important;
  }
  form .form-columns-2 .hs-form-field:last-child .input,
  form .form-columns-2 .hs-form-field:last-child label{
    margin-left: 0px !important;
  }
}

body .hs-blog-post .blog-comments .hs-form-field{
  position: inherit;
}
/****************Table Styling Starts Here*******************/

th {
  font-size: 24px;
  font-family: 'Work Sans', sans-serif;
  letter-spacing: 0px;
  line-height: 1.18;
  color: #ffffff;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  padding: 20px 20px;
  text-align:left;
  border: 1px solid #dddddd;
  background-color: #78A249;
}

td {
  font-size: 20px;
  font-family: 'Work Sans', sans-serif;
  letter-spacing: 0px;
  line-height: 1.667;
  color: #55565A;
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
  border:  1px solid #dddddd;
  padding: 20px 20px;
}

table {
  background-color: #ffffff;
  border-collapse: collapse;
  width: 100%;
  padding: 20px;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

@media(min-width: 768px) and (max-width: 1024px) {

  th {
    font-size: 20px;
  }

  td {
    font-size: 16px;
  }
}

@media(max-width: 767px) {
  table { 
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0;
  }

  th {
    font-size: 20px;
  }

  td {
    font-size: 14px;
  }
}

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

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






/*=====================================================================
header styling
========================================================================*/

/***********************Header fixed styling****************************/




.header-container-wrapper .header-grp.fixed {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index:3;
  transition: .4s ease-in-out;
  box-shadow: 0 2px 14px 0 rgb(0 0 0 / 16%);
  background:rgba(85, 86, 90, .7);
  padding:10px 0px 10px;
}  
@media(min-width:1025px){
  body.header-fixed .header-grp .custom-menu-primary .hs-menu-wrapper > ul > li > a{
    color:#ffffff;
  }
  body.header-fixed .header-grp .transparent-cta a.cta_button{
    color:#ffffff;
  }
}





/********************Header fixed styling Ends************************/

.header-grp {
  background:#ffffff00;
  position:absolute;
  z-index:3;
  line-height:0;
  top:0;
  left:0;
  right:0;
  transition: .4s ease-in-out;
  padding:0px 0px 10px;
}



/*====================================================
Header Search Styling
====================================================*/   


body .row-fluid .hs-search-field__bar button svg {
  height: 25px;
  fill:#ffffff;
}

/* .hs-search-field__bar button {
position: absolute;
right: 0;
height: 100px;
width: 116px;
background: #78A249;
border: 1px solid #78A249;
top:0px;
border-radius:0;
border-top-right-radius: 4px !important;
border-bottom-right-radius: 4px !important;
} */


body .row-fluid input.hs-search-field__input {
  height: 35px;
  font-size: 14px;
  border-radius: 4px !important;
  padding-right: 50px;
  padding-left:18px;
  padding-bottom:3px;
  padding-top:3px;
  background: transparent;
  box-sizing: content-box;
  border: 1px solid #fff !IMPORTANT;
  box-sizing: border-box;
}
/* 
#myOverlay .closebtn {
width: 100%;
max-width: 16px;
position: absolute;
right: 3px;
font-size: 24px;
z-index: 11;
cursor: pointer;
background: #fff;
padding: 12px;
border-radius: 50%;
line-height: 0.7;
text-align: center;
color: #78A249;
top: -18px;
box-sizing: unset;
}
#myOverlay .hs-search-field.hs-search-field--open form {
max-width: 750px;
}
#myOverlay .overlay-content {
max-width: 750px;
margin: 0 auto;
}
*/
ul#hsresults li {
  list-style-type: none;
}
ul#hsresults li a {
  text-transform: uppercase;
}

p.hs-search-results__description {
  margin-top: 20px;
}
.system-search-page h1 {
  margin-bottom: 40px;
}


.system-search-page {
  padding: 100px 0px;
}





/*====================================================
MOBILE MENU 
====================================================*/                

/* ==========================================================================
Custom Menu Primary
========================================================================== */


 /* Set ul background color */
 /* Set li background Color */
 /* Set link Color */
 /* Set link Hover Color */

/* Parent List */
/* .custom-menu-primary .hs-menu-wrapper > ul{ 
background:#ffffff;
}
.custom-menu-primary .hs-menu-wrapper > ul > li{
background:#ffffff;
} */
.custom-menu-primary .hs-menu-wrapper > ul > li > a{
  color:#ffffff;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a:hover{
  color:#0a8080;
}

/* Child List */
.custom-menu-primary .hs-menu-wrapper > ul ul{}
.custom-menu-primary .hs-menu-wrapper > ul ul li{
  background:#ffffff;
}
.custom-menu-primary .hs-menu-wrapper > ul ul li a{
  color:#ffffff;
}
.custom-menu-primary .hs-menu-wrapper > ul ul li a:hover{
  color:#0a8080;
}

/* Override max width on menu links */
.custom-menu-primary .hs-menu-wrapper > ul li a, 
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a,
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul li.hs-item-has-children ul.hs-menu-children-wrapper li a{
  overflow: visible !important;
  max-width: none !important;
  width: auto !important;
}

/* Fix menu disappearing on desktop after toggling mobile menu */
@media screen and (min-width:1025px) {
  .custom-menu-primary .hs-menu-wrapper { 
    display:block !important;
  }
  body .row-fluid div#myOverlay input.hs-search-field__input::placeholder {
    color: #fff;
  }
}




/*===========================================================================
Mobile Menu - Hubspot Standard Toggle Menu
============================================================================*/


/**
* Special Note
*
* When the menu is open, a class of .mobile-open is applied to the body. You can 
* use this for custom styling on any element when the menu is in the open position.                     
*/

.mobile-trigger, .child-trigger{
  display: none; /* Hide button on Desktop */
}

@media (max-width: 1024px){
  body .row-fluid input.hs-search-field__input{
    height:35px;
  }
  /* Variables
  ========================================================================== */

     /* Set Mobile Menu Background Color */
        /* Set Link Color */
   /* Set Link Hover Color */

  /* 
  * Menu Reset
  *
  * Remove styling from desktop version of custom-menu-primary. Place any 
  * additional CSS you want removed from the mobile menu in this reset 
  */

  .custom-menu-primary,
  .custom-menu-primary .hs-menu-wrapper > ul,
  .custom-menu-primary .hs-menu-wrapper > ul li,
  .custom-menu-primary .hs-menu-wrapper > ul li a{
    display: block;
    float: none;
    position: static;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    padding: 0px;
    margin: 0px;
    background-image: none;
    background-color: transparent;
    border: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow:    none;
    box-shadow:         none; 
    max-width: none;
    width: 100%;
    height: auto;
    line-height: 1;  
    font-weight: normal;
    text-decoration: none;
    text-indent: 0px;
    text-align: left;
    color:#ffffff;
  }


  /* Toggle Button
  ========================================================================== */

  .mobile-trigger{
    display: inline-block !important; /* Show button on mobile */
    cursor: pointer; /* Mouse pointer type on hover */
    position: absolute; /*******************************************/
    top:-1px;          /* Position Button at right of screen  */
    right:10px;        /*******************************************/
    width: auto; /* Button width */
    height: auto; /* Button height */      
    padding: 7px 10px 8px 10px;
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    text-transform: uppercase;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    color: #fff; 
    transition: all .3s ease-in-out;
  }
  .mobile-trigger:hover{
    text-decoration: none; /* Removes link text underline on button */
    color:#fff;
    background-color: transparent; 
    border-color: transparent;
  }

  /* Change button when menu is open */
  .mobile-open .mobile-trigger{
    color:#fff;
    background-color: transparent; 
    border-color: transparent;
  }


  /* Toggle Button Icon
  ========================================================================== */

  .mobile-trigger i{
    display: inline;
    position: relative;
    top: -4px;
  }

  .mobile-trigger i:before, .mobile-trigger i:after{
    position: absolute;
    content: '';
  }

  .mobile-trigger i, .mobile-trigger i:before, .mobile-trigger i:after{
    width: 22px;
    height: 2px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    background-color: #fff; /* Icon color */
    display: inline-block;
    transition: all .3s ease-in-out;
  }

  .mobile-trigger i:before{
    top: -7px; /* Position top line */
    right: 0;
  }
  .mobile-trigger i:after{
    top: 7px; /* Position bottom line */
    right: 0;
  }

  .mobile-open .mobile-trigger i {
    background: transparent;
    transition: all .3s ease-in-out;
  }
  .mobile-open .mobile-trigger i:after {
    top: 0;
    transform: rotate(-45deg);
    transition: all .3s ease-in-out;
    width: 100%;
  }

  .mobile-open .mobile-trigger i:before {
    top: 0;
    transform: rotate(45deg);
    transition: all .3s ease-in-out;
    width: 100%;
  }
  .mobile-trigger:hover i:before, .mobile-trigger:hover i:after, .mobile-open .mobile-trigger i:before, .mobile-open .mobile-trigger i:after{
    background-color: #fff; /* Icon color */
  }


  /* Child Toggle Button
  ========================================================================== */

  .child-trigger{
    display: block !important;
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: 20px;
    width: 16px !important;
    min-width: 16px !important;
    height: 16px !important;
    padding: 0 !important;
    background: #fff url(https://253116.fs1.hubspotusercontent-na1.net/hubfs/253116/Meaden%20Mooore%20Assets/arrow-down.svg) no-repeat;
    top: 22px;
    background-size: contain;
  }

  li.hs-menu-item.hs-menu-depth-1.active .child-trigger{
    transform: rotate(180deg);
  }



  .child-trigger:hover{
    text-decoration: none;
  }

  .child-trigger i{
    display:none !important;

  }


  /* Menu Styles on Mobile Devices
  ========================================================================== */  

  .custom-menu-primary.js-enabled{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  /* Hide menu on mobile */
  .custom-menu-primary.js-enabled .hs-menu-wrapper,
  .custom-menu-primary.js-enabled .hs-menu-children-wrapper{
    display: none;
  }  

  /* Make child lists appear below parent items */
  .custom-menu-primary ul.hs-menu-children-wrapper{
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    display: none;
  }

  /* Mobile Menu Styles */ 
  .custom-menu-primary.js-enabled .hs-menu-wrapper{
    width: 100%;
    position: relative; /**************************************************************/
    top: 0;             /* Positions the menu to drop from the very top of the screen */
    left: 0;          /**************************************************************/
    padding: 0;
  }
  .custom-menu-primary .hs-menu-wrapper{
    background-color: #ffffff; /* Menu background color set off global menuColorMobile variable */
    width: 100%; /* Full screen width */
  }

  /* Level 1 Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul > li{
    position: relative;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li a{
    font-size: 22px; /* Font size of top level list items */
    line-height: 45px;
    overflow: visible;
  }

  /* Level 1 and Higher Menu List Styles */
  /*   .custom-menu-primary .hs-menu-wrapper > ul li{
  border-top: 1px solid #55565A; /* Adds transparent dark highlights to top of top level list items */
} 
.custom-menu-primary .hs-menu-wrapper >  ul li a{
  padding: 0 10px;
  color:#ffffff; /* link color set by global mobile-aColor variable */
}

/* Level 2 and Higher Menu List Styles */
.custom-menu-primary .hs-menu-wrapper > ul ul li{
  background-color: rgba(255, 255, 255, .08);
}
.custom-menu-primary .hs-menu-wrapper > ul ul li a{
  text-indent: 10px!important; /* Indent Child lists */
  font-size: 16px; /* Font size of child lists */
}

/* Level 3 and Higher Menu List Styles */
.header-grp .hs-menu-wrapper > ul ul ul li a{
  text-indent: 30px!important; /* Indent Child lists */
}
.header-grp .hs-menu-wrapper > ul ul ul ul li a{
  text-indent: 50px!important; /* Indent Child lists */
}

.header-container-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
  pointer-events: unset;
}


.span1.header__language-switcher.header--element {
  position: absolute;
  right: 60px;
  top: 19px;
  bottom: 0;
}

}


.hide {
  display:none;
}

/* Styles for the Search Bar */

.header__search {
  width: auto;
}

.header-grp form {
  padding: unset;
  background: unset;
  border: 0;
}

.header__search input:focus {
  outline: none;
}

.header__search .hs-search-field__input {
  box-sizing: border-box;
  background-color: white;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
  background-repeat: no-repeat;
  background-position: center right 15px;
  color: ;
  border: 0!important;
  font-family: ;
  font-weight: 300;
  font-size: 22px;
  cursor: pointer;
  line-height: 42;
  padding: 0 15px;
  height: 45px;
}

.header__search .hs-search-field--open .hs-search-field__input {
  border: 1.79px solid #D1D6DC;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  background-color: white;
}

.header__search .hs-search-field__input::placeholder {
  color: transparent;
}

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

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

.header__search .hs-search-field__suggestions li a {
  color: ;
  text-decoration: none;
  padding: 3px 15px;
  transition: background-color 0.3s;
}

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

.header__search .image-popup-search {
  cursor: pointer;
  margin: 0 0 0 auto;
  float: left;
  max-width: 30px;
  max-height:30px;
}

.header__search {
  position:relative;
}

body .row-fluid input.hs-search-field__input::placeholder {
  font-size: 14px;
  color:#fff;
}
.open-popup {
  opacity: 1;
  z-index: 9999;
}
p.hs-search-results__description {
  margin-bottom: 30px;
}

ul#hsresults li {
  margin-bottom: 20px;
}
/* #myOverlay.open-popup  {
pointer-events: auto;
opacity: 1;
transition: all .5s ease-in-out;
z-index: 3;
height: 100vh;
} */
body .row-fluid .hs-search-field--open .hs-search-field__suggestions {
  border: 1px solid #000000;
  background: #FFFFFF;
  padding: 20px;
}

body .row-fluid .hs-search-field__suggestions li {
  margin-bottom: 15px;
}
/* 
#myOverlay .text-container {
max-width: 800px;
margin: 0 auto;
float: none;
position: relative;
top: 40%;
z-index: 1;
} */
body .row-fluid input.hs-search-field__input:focus {
  outline: none;
}
/* #myOverlay {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: -1;
top: -226px;
opacity: 0;
overflow: hidden;
transition: all .5s ease-in-out;
width: 100%;
padding: 37px 0px;
}
*/
body .row-fluid input.hs-search-field__input {
  /*   padding: 20px 90px 20px 20px; */
  border: 0;
}

/* #myOverlay.open-popup {
background-color: #ffffff;
top: 0px;
bottom: 0px;
background: rgba(0,0,0,0.9);
}

*/



.header-grp.header-section .wrapper{
  max-width:1440px;
}

.header-button a.cta_button {
  font-size: 14px;
  line-height: 1;
  padding: 5px 8px;
}

.top-bar-head .top_header{
  padding: 6.5px 0;
}
/* .top-bar-head .border-div{
border-bottom:1px solid #fff;
opacity:0.15;
} */


/* Mega Menu CSS */
.normal-logo{
  display:block;
}

.fixed-logo{
  display:none;
}

body.header-fixed .normal-logo{
  display:none;
}

body.header-fixed .fixed-logo{
  display:block;
}
@media(min-width:1025px){

  body .header-section .child-grp.updated {
    display: none !important;
    visibility: hidden;
    transition: opacity 1s ease-out;
    opacity: 0;
  }

}
body .header-section li.dropdown.activated .child-grp.updated {
  background: #fff;
  box-shadow: 0px 3px 6px #1D365426;
  display: block !important;
  float: none;
  margin: 0 auto!important;
  max-width: 100% !important;
  right: 0;
  left:0;
  padding: 0 !important;
  position: fixed;
  visibility: visible;
  transition: opacity 1s ease-out;
  opacity: 1;
  z-index: 4;
  overflow:hidden;
}

body .header-section li.dropdown.activated .child-grp.updated .right-column{
  background: #55565A;
}
body .header-section .child-grp.updated .left-column a{
  font-size: 16px;
  text-align: left;
  line-height: 24px;
  color: #55565A;
  font-weight: 400;
  margin: 0;
  padding:0;
}

body.header-fixed .header-grp .child-grp a{
  color:#55565A;
}




body.header-fixed .header-grp .transparent-cta a.cta_button:hover{
  color:#ffffff;
}
body .header-grp .child-grp .hs_cos_wrapper.menu_one_items a:hover{
  color:#78A249 !important;
  transition:.3s ease-in-out;
}
.top-bar-head{
  transition: .4s ease-in-out;
}
body.header-fixed .top-bar-head{
  opacity:0;
  visibility:hidden;
  transition: .4s ease-in-out;
  height:0;
  position:absolute;
  z-index:-11;
  top:-40px;
}


body .header-grp .child-grp .main-title a{
  color:#00AEEF !important;
  margin-bottom: 15px !important;
  font-weight: bold !important; transition:.3s ease-in-out;
}
@media(min-width:1025px){
  body .header-grp .child-grp .five-col-adjust span>.hs_cos_wrapper.menu_one_items{
    margin: 0;
    padding:57px 20px 30px;
  } 

  body .header-grp .child-grp .five-col-adjust span>.hs_cos_wrapper.menu_one_items:before,
  body .header-grp .child-grp .two-col-adjust span>.hs_cos_wrapper.menu_one_items:before{
    border-right: 1px solid #E8EBED;
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100vh;
    content: '';
    right: 0;
  }

  body .header-grp .child-grp .two-col-adjust span>.hs_cos_wrapper.menu_one_items{
    margin: 0;
    padding:57px 35px 30px;
  }

  body .header-grp .child-grp .five-col-adjust span>.hs_cos_wrapper.menu_one_items .inner-items{
    margin-left:15px;
  }
  body .header-grp .child-grp .five-col-adjust span>.hs_cos_wrapper.menu_one_items .inner-items a,
  body .header-grp .child-grp .two-col-adjust span>.hs_cos_wrapper.menu_one_items .inner-items a{
    margin-bottom:21px; transition:.3s ease-in-out;
  }
  body .header-grp .child-grp .five-col-adjust span>.hs_cos_wrapper.menu_one_items:last-child:before,
  body .header-grp .child-grp .two-col-adjust span>.hs_cos_wrapper.menu_one_items:last-child:before{
    border-right:0;
  }

  body .header-grp .child-grp .hs_cos_wrapper.menu_one_items .inner-items a{
    display:inline-block;
    transition:.3s ease-in-out;
  }
}

.mobile-meg{
  display:none !important;
}



@media(max-width:1024px){
  body .header-grp .logo-image {
    min-width: 170px;
  }
  .top_header .text-call-conta a{
    color:#78a249;
  }
  body .header-grp .main-title a {
    margin-top: 16px !IMPORTANT;
  }

  body .header-grp.header-section.header-section-v2 .row-fluid-wrapper:last-child .hs-menu-wrapper.hs-menu-flow-horizontal {
    top: 50px !Important;
    height: calc(100vh - 50px);
    overflow-y:scroll;
    padding-bottom: 100px;
  }
  body .header-grp.header-section.header-section-v2 .row-fluid-wrapper:last-child .hs-menu-wrapper.hs-menu-flow-horizontal::-webkit-scrollbar{
    display:none;
  }
  .custom-menu-primary.js-enabled{
    margin:0;
  }
  .top-bar-head {
    display: none;
  }
  body .header-section .child-grp.updated .left-column .repeted-items a{
    padding:5px 0;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children .child-trigger, 
  .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.dropdown > .child-trigger {
    display: block!important;
  }
  body .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li>a{
    color:#346094 !important;
    font-size:16px;
    line-height:24px;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul > li.activated > a {
    color: #346094 !important;
  }

  body .header-section li.dropdown.activated .child-grp.updated{
    display: none!important;
  }
  /*   body .header-section li.dropdown.active .child-grp.updated{
  display: block !important;
} */

  body.header-fixed .mobile-trigger i:before, 
  body.header-fixed .mobile-trigger i:after, 
  body.header-fixed.mobile-open .mobile-trigger i:before, 
  body.header-fixed.mobile-open .mobile-trigger i:after,
  body.mobile-open .mobile-trigger i:before, 
  body.mobile-open .mobile-trigger i:after{
    background-color: #346094;
  }
  body.header-fixed .mobile-trigger i{
    background-color:#346094;
  }

  body.header-fixed.mobile-open .mobile-trigger i{
    background-color:transparent;
  }

  body.header-fixed .header-container-wrapper .header-grp.fixed{
    padding: 22px 0;
  }

  body.mobile-open .header-grp{
    background:transparent;
  }
  body.mobile-open .fixed-logo {
    display: block;
  }
  body.mobile-open .normal-logo {
    display: none;
  }
}

@media(max-width:1024px){

  .header-grp .button-1,
  .header-grp .button-2 {
    padding: 20px 20px 0px;
    display: inline-block;
    width: 100%;    text-align: center;
  }
  .insight_slider .top_conatiner{
    padding:0 15px;
  }

  .header-grp .header-menu a.cta_button {
    font-size: 14px !important;
    width: -webkit-fill-available;
    padding: 5px 20px;
    max-width:335px;
  }

  body .header-grp .transparent-cta a.cta_button:hover {
    color: #ffffff;
  }
  body .header-grp .transparent-cta a.cta_button {
    color: #78A249;
  }
  body .header-grp .child-grp {
    padding:0 20px 20px 30px !IMPORTANT;
    left: 0 !IMPORTANT;
    right: 0;
    width: auto;
    /*     max-height: 40vh; */
    overflow-y: scroll;
    /*     border-top: 1px solid #55565A; */
  }
  body .header-grp .child-grp.for-1st-child{
    padding:0 !important;
  }
  body .header-section .for-1st-child.child-grp.updated .left-column .repeted-items a{
    padding:2px 20px;
    font-weight:400;
  }

  body .header-grp .child-grp.for-1st-child .inner-items .repeted-items{
    padding:0 20px 0 10px;
  }
  body .header-grp .child-grp.for-1st-child .inner-items .repeted-items:first-child{
    padding-top:10px;
  }
  body .header-grp .child-grp.for-1st-child .inner-items .repeted-items:last-child{
    padding-bottom:30px;
  }
  body .header-grp .header__search{
    display: block !important;
    position: absolute;
    right: 70px;
    top: 5px;
    z-index: 99999;
  }
  body .header-grp .header__search .dark-logo{
    display: none;
  } 
  body.mobile-open .header-grp .header__search .white-logo,
  body .header-grp .header__search .white-logo{
    display: none;
  }
  body.mobile-open .header-grp .header__search .dark-logo,
  body.header-fixed .header-grp .header__search .dark-logo{
    display: none;
  } 
  body .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 {
    border-bottom: 1px solid #E8EBED;
  }
  .main-title .child-trigger {
    top: 6px;
    background-size: 14px !Important;
    background:#fff url(https://253116.fs1.hubspotusercontent-na1.net/hubfs/253116/Meaden%20Mooore%20Assets/down-arrow.svg) no-repeat;
    transform:rotate(180deg);
  }
  .main-title.active .child-trigger {
    transform:rotate(0deg) !important;
    right:18px;
  }

  body .header-grp .child-grp.for-1st-child .menu_one_items.hs_cos_wrapper:last-child {
    padding-bottom: 10px;
  }
  body .header-section.header-grp .child-grp.updated .left-column a{
    font-weight:400;
  }
  body .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul > li.activated > a {
    color: #346094 !important;
  }
  .child-trigger:last-child {
    display: none !IMPORTANT;
  }
  body .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1:last-child {
    border-bottom: none !important;
  }
  div#myOverlay {
    opacity: 0;
    visibility: hidden;
  }
  .button-1.transparent-cta {
    display: flex;
    flex-direction: column-reverse;
  }
}

script{
  display:none !important;
}


@media(min-width:1025px){
  body .header-section li.dropdown.activated .child-grp.updated {
    margin-top:2px !important;
  }
  body.header-fixed .header-section li.dropdown.activated .child-grp.updated {
    margin-top:10px !important;
  }
  div#myOverlay .text-container button.hs-search-field__button{
    display:none;
  }
  div#myOverlay span.closebtn {
    position: absolute;
    right: 33px;
    color: #fff;
    top: 33.5px;
    z-index: 999;
    cursor: pointer;
  }
  div#myOverlay {
    position: fixed;
    left: -27px;
    right: 0;
    max-width: 572px;
    margin: 0 auto;
    top: 60px;
    background: #55565A;
    height: 67px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
  }

  body.header-fixed div#myOverlay{
    top:65px;
  }
  div#myOverlay.open-popup{
    opacity: 1;
    visibility: visible;
    transition: .3s ease-in-out;
    top:80px;
  }


  div#myOverlay .text-container{
    padding:16px;
  }

  div#myOverlay .text-container button.hs-search-field__button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: transparent;
    border: none;
    outline: none;
    padding: 10px 15px;
  }

  body .row-fluid div#myOverlay input.hs-search-field__input {
    color: #fff;
    padding-left: 18px;
  }

  body .row-fluid div#myOverlay input.hs-search-field__input:-webkit-placeholder{
    color:#fff !Important;
  }

  body .row-fluid div#myOverlay .hs-search-field__bar button svg{
    height:14px;  
  }
}

@media(min-width:1025px) and (max-width:1200px){
  body.header-fixed div#myOverlay{
    top:63px !important;
  }
}


@media(max-width:1024px){

  body .top_header .link_desk a {
    color: #78A249;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    font-weight: bold;
  }
  body .top_header {
    display: block;
    text-align: center;
    margin-top: 37px;
  }
  body .top_header .link_desk{
    display: none;
  }
  body .top_header .link_desk:first-child {
    display: block;
  }
  .overlay-content {
    padding: 35px 0 25px;
    display: inline-block;
    width: -webkit-fill-available;
    margin: 0 20px;
  }
  body .overlay-content input.hs-search-field__input:-webkit-placeholder{
    color:#55565A !Important;
  }
  body .row-fluid .overlay-content .hs-search-field__bar button svg {
    height: 14px;
    fill: #55565A;
  }
  .overlay-content form.hs-search-field__form {
    border: 1px solid #346094;
    border-radius: 4px;
    box-shadow: none;
    max-width: 100%;
    color: #000;
    height:35px;
    max-width: 379px;
    margin: 0 auto;
    position: relative;
  }
  .overlay-content input#site_search-input {
    box-sizing: border-box;
    color: #55565A;
    border-radius: 4px;
    border: none !important;
    padding: 1px 55px 5px 18px;
  }
  .overlay-content button.hs-search-field__button {
    background: transparent;
    color: #000;
    border: none;
    position: absolute;
    z-index: 9999;
    right: 14px;
    bottom: 0;
    width: 14px;
    height: 14px;
    padding: 0;
    top: 10px;
    font-size:14px;
  }

  body .top_header .link_desk strong {
    font-weight: bold;
  }
  body .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1:nth-child(8) {
    border-bottom: none;
  } 
  body .row-fluid .overlay-content input.hs-search-field__input{
    border:none !important;
    padding-bottom: 7px;
  }
}



/* Additional CSS */


body .row-fluid .overlay-content input.hs-search-field__input::placeholder{
  color:#346094;
}

@media(max-width:1024px){
  .header-grp .button-2{
    padding-top:10px;
  }
  .header-grp .header-menu a.cta_button{
    font-size: 18px !important;
    padding: 10px 20px;
  }
}





body .row-fluid .header-section input.hs-search-field__input:focus{
  outline:none;
  border-color:#fff;
}

body li.hs-menu-item.hs-menu-depth-1 .child-trigger.inner-trigger {
  transform: rotate(0deg) !important;
  right: 19px;
}

body li.hs-menu-item.hs-menu-depth-1 .main-title.active .child-trigger.inner-trigger {
  transform: rotate(180deg) !important;
  right:21px;
}
/*****************************************/
/* Start your style declarations here    */
/*****************************************/



                                        

/* 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: 1024px) {
  .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!important;
}

@media (max-width: 1024px) {
  .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;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0;
  transition: opacity 200ms linear,width 200ms cubic-bezier(0.17, 0.67, 0.83, 0.67),left 0.15s linear,top 0.1s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.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;
  /*   top: 100%; */
  visibility: visible;
  opacity: 1;
  transition: opacity 200ms ease-out;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  /*   top: 0; */
  visibility: visible;
  opacity: 1;
  transition: opacity 200ms ease-out;
}

@media (max-width: 1024px) {
  .hs-menu-wrapper.flyouts .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%;
}

.footer-section .hs-menu-wrapper.hs-menu-flow-vertical>ul li a{
  color:#FFFFFF;
}

.footer-section .hs-menu-wrapper.hs-menu-flow-vertical>ul > li:hover >  a{
  color:#78A249;
} 

.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
  font-size:14px;
  color:#FFFFFF;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0px;
  font-style: normal;
  text-decoration: none;
  padding: 15px 10px;
  white-space: normal;
  max-width: 100%;
}

.custom-menu-primary .hs-menu-wrapper > ul > li:hover {
  color: ;
  border-radius: 3px;
}



@media(min-width: 1025px) {

  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
    position: relative;
  }

  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-item.hs-menu-depth-1 {
    position: relative;
  }

  .header-grp .mega-menu-popout-container .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-item.hs-menu-depth-1{
    margin:0px!important;
  }

  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    display: block;
    white-space: nowrap;
    width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>a:after,  
  .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>ul>li.hs-item-has-children>a:after {
    position: absolute;
    content: '';
    background:no-repeat;
    background-size: cover;
    background-position: center center;
    width: 10px;
    height: 10px;
    top: 20px;
    right: 0px;
    z-index: 1;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    transition: 0.4s all ease-in-out;
  }
  .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>ul>li.hs-item-has-children>a:after,
  .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>ul>li.hs-item-has-children:hover>a:after {
    top: 16px!important;
    right: 14px!important;
  }
  .header-grp .hs-menu-wrapper ul>li.hs-item-has-children:hover>a:after, 
  .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>ul>li.hs-item-has-children:hover>a:after {
    position: absolute;
    content: '';
    background:;
    background-size: cover;
    background-position: center center;
    width: 10px;
    height: 10px;
    top: 20px;
    right: 0px;
    z-index: 1;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(-180deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    transition: 0.4s all ease-in-out;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children:hover > ul.hs-menu-children-wrapper {
    opacity: 1; 
    visibility: visible;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    position: absolute;
    z-index: 10;
    left: 0px;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
    left: 180px!important;
    top: 0!important;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 {
    line-height: 0;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1>a {
    border-top: 0;
    z-index: 3;
    margin:0;
    text-transform:uppercase;
  }
  .header-grp .hs-menu-wrapper > ul li a, .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    overflow: visible !important;
    max-width: none !important;
    width: auto !important;
  }

  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul>li a:hover {
    background-color:rgba(255, 255, 255, 0);
  }

  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children {
    position: relative;
  }
  .header-grp .hs-menu-wrapper {
    line-height: 0;
  }

  .hs-menu-wrapper.hs-menu-flow-horizontal > ul {
    display: inline-block;
    margin-bottom: 20px;
  }
  .header-grp .hs-menu-wrapper {
    display: block !important;
  }

}


.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul > li.activated >  a{
  color:#78A249 !important;
} 

.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.active a{
  color:;
}

/*Sub Menu*/

.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper{
  background:#ffffff;
  padding: 15px 10px;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius:0px;
  box-shadow: 0 18px 54px 0 rgb(20 20 43 / 14%);
}

.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a{
  font-size:16px;
  color:#55565A;
  font-family: 'Work Sans', sans-serif;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  margin: 0px;
  line-height: 1.1;
  letter-spacing: 0px;
  padding:10px 20px;
  text-align: left;
  min-width: 180px;
  text-indent: 0;
}

.header-grp .lang_list_class li a:hover,
.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li ul li:hover a,
.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li:hover a{
  color:#78A249;
}

.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.active a{
  color:#78A249;

}

/*===== New Header Styling ===========*/

@media(min-width: 1025px) {
  body .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
    left: 181px;
    top:5px;
  }

  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper  ul.hs-menu-children-wrapper li a,
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper  ul.hs-menu-children-wrapper ul.hs-menu-children-wrapper li a {
    font-size:16px;
    color:#55565A;
    font-family: 'Work Sans', sans-serif;
    font-style: normal;
    text-decoration: none;
    font-weight: 400;
    margin: 0px;
    line-height: 1.1;
    letter-spacing: 0px;
    padding: 10px 15px;
  }

  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper ul.hs-menu-children-wrapper li:hover a,
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper ul.hs-menu-children-wrapper ul.hs-menu-children-wrapper li:hover a{
    color:;
  }

  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper ul.hs-menu-children-wrapper li.active a,
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper ul.hs-menu-children-wrapper ul.hs-menu-children-wrapper li.active a{
    color:#78A249;
  }

  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper ul {
    left: 170px !important;
  }

  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper{
    transform: translateY(-15px);
    transition: 0.4s all ease-in-out;
  }

  .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children:hover>ul.hs-menu-children-wrapper {
    opacity: 1;
    visibility: visible;
    transition: 0.4s all ease-in-out;
    transform: translateY(0px);
  }

  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children a{
    padding:10px 30px 10px 20px;
  }


}


@media(max-width:1024px){
  .header-grp {
    z-index: 99999;
  }
  body .row-fluid .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper{
    padding:0px; 
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    font-size: 14px;
    padding: 14px 25px;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    box-shadow: none;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    border: 0;
  }

  .header-grp ul.hs-menu-children-wrapper{
    box-shadow: none;
  }

  .header-grp .right-col {
    display: none;
  }

  .header-grp {
    padding:22px 0;
  }  

  .custom-menu-primary .hs-menu-wrapper,
  .span1.header__search.header--element.vertical-center,
  .span3.right-col.vertical-center.align-right
  {
    display:none;
  }  

  body .container-fluid .row-fluid  .mobile-trigger{
    top:-33px;
    cursor:pointer;
  }

  body .row-fluid .custom-menu-primary.js-enabled .hs-menu-wrapper{
    top: 72px;
    position:absolute;
  }

  .header-container-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a{
    padding: 17px 10px 17px 20px;
    font-weight: 400;
    margin-right:55px;
    font-size: 14px;
  }

  body .container-fluid .row-fluid .custom-menu-primary.js-enabled {
    position: absolute;
    width: 100%;
    left: 0;
    margin: 0;
    right: 0;
    top: 36px;
    padding: 0;
  }  

  body .container-fluid .row-fluid  .mobile-open .mobile-trigger,
  body .container-fluid .row-fluid  .mobile-trigger {
    background-color: transparent;
    border: none;
  }

  body .container-fluid .row-fluid .mobile-trigger:hover i, 
  body .container-fluid .row-fluid .mobile-trigger:hover i:before, 
  body .container-fluid .row-fluid .mobile-trigger:hover i:after, 
  body .container-fluid .row-fluid .mobile-open .mobile-trigger i, 
  body .container-fluid .row-fluid .mobile-open .mobile-trigger i:before, 
  body .container-fluid .row-fluid .mobile-open .mobile-trigger i:after {
    background-color: #333e63;

  }

  body .container-fluid .row-fluid .mobile-trigger i, 
  body .container-fluid .row-fluid .mobile-trigger i:before, 
  body .container-fluid .row-fluid .mobile-trigger i:after {
    width: 30px;
    height: 4px;
    background-color: #333e63;
  }

  body .container-fluid .row-fluid .mobile-trigger i:before {
    top: -7px;
  }

  body .container-fluid .row-fluid .mobile-trigger i:after {
    top: 7px;
  } 

  body .container-fluid .row-fluid .mobile-trigger{
    top: -33px;  
  }  

  .span3.logo-image.vertical-center {
    max-width:80px;
  }

}

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

.lang_list_class{
  min-width:150px;
}

.lang_list_class li{
  text-align:left;
}

.lang_list_class li a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
  font-family: cursive;
}




/* Migration CSS */

body .hs-form label{
  overflow:inherit;
  display:initial;
}
body .hs-form label > span:first-child{
  display:inline;
}
body input[type="radio"], 
body .row-fluid .hs-form .field .input input[type="radio"]{
  border:none;
}
body .row-fluid form a{
  font-size: 14px ! important;
  font-family: 'Work Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  text-align: left;
  margin:0px;
}
body input[type="radio"]::before,
body .row-fluid .hs-form .field .input input[type="radio"]::before{
  bottom:-5px;
}
ul.no-list.hs-error-msgs.inputs-list li {
  position: absolute;
}
/* body .body-wrapper .container-fluid .row-fluid .erp-section .hs-error-msgs label.hs-error-msg.hs-main-font-element{
font-size:11px;
top:4px;
} */
body input[type="radio"]:checked::after, 
body .row-fluid .hs-form .field .input input[type="radio"]:checked::after{
  bottom:-2px;
  left:-19px;
}

body input[type="radio"]::before,
body .row-fluid .hs-form .field .input input[type="radio"]::before{
  left:-22px;
}
header.header-erp .header-container-wrapper{
  max-width:1440px;
  margin:0 auto;
  padding:0 20px;
  width:100%;
  float:none;
}
.hs_error_rollup {
  display: none;
}


@media(min-width:768px){
  body .gernal_module .main_container{
    padding-bottom:0px;
  }
}
@media(min-width:1025px) and (max-width:1279px){
  body .body-wrapper .container-fluid .row-fluid .erp-section .hs-error-msgs label.hs-error-msg.hs-main-font-element{
    font-size:9px;
  }
}

@media(min-width:1228px) and (max-width:1280px){
  body input[type="radio"]:checked::after, 
  body .row-fluid .hs-form .field .input input[type="radio"]:checked::after{
    left:-19px;
    bottom:-2px;
  }
}
@media(max-width:767px){
  body form{
    max-width:none;
  }
}



ul.no-list.hs-error-msgs li label a {
  display: none;
}



body .hs-blog-listing .hs-search-field__bar>form>.hs-search-field__input{
  outline-offset: 0px;
  border:1px solid #346094 !important;
  outline:none !important;
}
body .hs-blog-listing header .hs-search-field__bar>form>.hs-search-field__input{
  border-color:#fff !important;
}

@media(max-width:767px){
  .outSetText{
    text-align:center;
  }
}


body.hs-content-path-international a.cta_button:focus{
  color:#fff;
}
body.hs-content-path-international a.cta_button:hover{
  color:#78a249;
}

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


/* Blog post */

.blog-post {
  max-width: 728px;

}

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

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


article.blog-post ul li a{
  margin:0;
}


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

.blog-post__tag-link {
  font-size: 0.875rem;
}

/* Blog related posts */

.blog-related-posts {
  background-color: #f8f5f2;
  padding: 120px 0px;
}

.blog-related-posts time.blog-index__post-timestamp {
  font-size: 12px;
  margin-left: 10px;
}

.blog-related-posts a.blog-index__post-tag {
  padding: 5px;
  border: 1px solid #eaeaea;
  font-size: 12px;
  margin: 8px;
  margin-left: 0px;
}

.hs-blog-post .blog-related-posts .blog-index__post-author{
  padding:10px 0px;
  border:none;
  margin: 10px 0px;
}

.hs-blog-post .blog-index__post-author .blog-index__post-author-name {
  margin-bottom: 5px;
  margin-left: 10px;
}

.hs-blog-post .blog-related-posts .blog-index__post-tags {
  margin: 15px 0px;
}

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

.blog-related-posts__list {
  display: flex;
  flex-wrap: wrap;
}

.blog-related-posts__post {
  flex: 0 0 100%;
  padding: 1rem;
}

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

@media(min-width: 768px) and (max-width: 1024px){

  body .row-fluid .hs-button{
    min-width: auto;
  }

}

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

.blog-related-posts__image {
  height: auto;
  max-width: 100%;
}

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

/* Blog comments */

.blog-comments {
  max-width: 769px;
}

.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;
}


/*********** Hubspot Search Style **********/
.hs-blog-listing a,
.hs-blog-post a{
  text-decoration: none;
}
.hs-blog-listing .hs-search-field form{
  position: relative;
  overflow: hidden;
}
.hs-blog-listing .hs-search-field form input{
  position: relative;
  border: 2.97872px solid #EEF1FE;
  box-sizing: border-box;
  border-radius: 11.9149px;
  height: 94px;
  padding: 32px 120px 32px 38px;
}
.hs-blog-listing .hs-search-field form input::placeholder{
  color: #959595;
  font-size:16px;
}
.hs-blog-listing .hs-search-field form button{
  border-radius: 0px 5.95745px 5.95745px 0px ;
  padding: 27px 39.5px;
  position: absolute;
  top: 0px;
  right: 0;
}
.hs-blog-listing .hs-search-field form button svg{
  height: 34px;
  font-weight: normal;
}
@media(max-width: 1024px){
  .hs-blog-listing .hs-search-field form input{
    height: 76px;
    padding: 17px 80px 15px 20px;
  }
  .hs-blog-listing .hs-search-field form button{
    padding: 23px 26.5px;
    right: 15px;
    top: 9px;
  }
  .hs-blog-listing .hs-search-field form button svg{
    height: 23px;
  }
}
@media(max-width: 480px){
/*   .hs-blog-listing .hs-search-field form input {
    height: 60px;
    padding: 12px 20px 12px 20px;
  }
  .hs-blog-listing .hs-search-field form button{
    padding: 23px 26.5px;
    position: relative;
    top: unset;
    right: unset;
    border-radius: 5.95745px;
    padding: 15px 26.5px;
    margin-top: 11px;
    width: 100%;
  }
  .hs-blog-listing .hs-search-field form button svg{
    height: 23px;
  } */
}
/*********** Listing Style **********/
.hs-blog-listing .blog-index__post{
  padding: 0;
  margin-bottom: 46px;
  transition: all 0.2s ease-in-out;
  border: 1px solid #EEF1FE;
  box-shadow: 0 2px 14px 0 rgb(0 0 0 / 8%);
}

.hs-blog-listing .blog-index__post:hover{
  box-shadow: 0 2px 14px 0 rgb(0 0 0 / 16%);
}

.hs-blog-listing .blog-index__post .blog-index__post-image-wrapper{
  height: 24vw;
}
.hs-blog-listing .blog-index__post .blog-index__post-content{
  padding: 35px 43px 40px 43px;
  background: #FFFFFF;
  transition: all 0.2s ease-in-out;
}

.hs-blog-listing .blog-index__post .blog-index__post-author-image{
  width: 35px;
  margin-right:15px;
}
.hs-blog-listing .blog-index__post .blog-index__post-author-name{
  transition: all 0.2s ease-in-out;
}

.hs-blog-listing .blog-index__post .blog-index__post-tag{
  text-transform: uppercase;
  border: 1px solid #EEF1FE;
  box-sizing: border-box;
  margin: 8px;
  margin-left:0px;
  padding: 4px 13px;
  display:inline-block;
  font-size:12px!important;
}
.hs-blog-listing .blog-index__post .blog-index__post-title,
.hs-blog-listing .blog-index__post .blog-index__post-title a{
  margin-top: 15px;
  margin-bottom: 15px;
  transition: all 0.2s ease-in-out;
}

.hs-blog-listing .blog-index__post .blog-index__post-summary p{
  margin-bottom: 21px;
  transition: all 0.2s ease-in-out;
}

.hs-blog-listing .blog-index__post .blog-index__post-author{
  margin-bottom: 18px;
}
.hs-blog-listing .blog-index__post .blog-index__post-tags{
  margin-bottom: 15px;
}
@media(max-width: 1024px){
  .hs-blog-listing .blog-index__post .blog-index__post-image-wrapper {
    height: 35vw;
    display: block;
  }
  .hs-blog-listing .blog-index__post .blog-index__post-content{
    padding: 35px 30px 40px 30px;
  }
}
@media(max-width: 767px){
  .hs-blog-listing .blog-index__post .blog-index__post-image-wrapper {
    height: 52vw;
  }
  .hs-blog-listing .blog-index__post .blog-index__post-content{
    padding: 30px 15px 30px 15px;
  }
  .hs-blog-listing .blog-index__post .blog-index__post-title,
  .hs-blog-listing .blog-index__post .blog-index__post-title a{
    margin-bottom: 15px;
  }
  .hs-blog-listing .blog-index__post{
    margin-bottom: 30px;
  }
}

@media(max-width: 480px) {

  time.blog-index__post-timestamp {
    margin: 15px 0px 0px!important;
    font-size: 12px;
  }

  .blog-index__post-author {
    align-items: center;
    display: block!important;
  }

  .hs-blog-listing .blog-index__post .blog-index__post-tag{
    font-size:10px!important;
  }

}

/******** Pagination Style *******/
.hs-blog-listing .pagination{
  max-width: 283px;
  margin: 0 auto;
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
}
.hs-blog-listing .pagination .pagination__link-text,
.hs-blog-listing .pagination .pagination__link--first,
.hs-blog-listing .pagination .pagination__link--last{  
  display: none;
}

.hs-blog-listing .pagination .pagination__link--active{
  border: none;

}
.hs-blog-listing .pagination .pagination__link-icon svg,
.hs-blog-listing .pagination .pagination__link-icon svg{
  fill: #5F7597;
}
/*********** Categories and Recent Post Style *************/
.hs_cos_wrapper_type_post_filter .block,
.hs_cos_wrapper_type_post_listing .block,
.hs_cos_wrapper_type_post_filter .block,
.recentpost-module .block{
  border: 1px solid #EEF1FE;
  box-sizing: border-box;
  border-radius: 4px;
  box-shadow: 0 2px 14px 0 rgb(0 0 0 / 16%);
  background:#ffffff;
}

.hs_cos_wrapper_type_post_filter .block h3,
.hs_cos_wrapper_type_post_listing .block h3,
.hs_cos_wrapper_type_post_filter .block h3,
.recentpost-module .block h3{
  position: relative;
  border-bottom: 1px solid #EEF1FE;
  position: relative;
  padding: 22.5px 10px 22.5px 26px;
  margin: 0;
  font-size: 20px;
  display:none;
}
.hs_cos_wrapper_type_post_filter .block h3:before,
.hs_cos_wrapper_type_post_listing .block h3:before,
.hs_cos_wrapper_type_post_filter .block h3:before,
.recentpost-module .block h3:before{
  position: absolute;
  content: '';
  height: 24px;
  width: 4px;
  top: 22px;
  left: -2px;
  display:none;
  background: #0a8080;
}

.hs_cos_wrapper_type_post_filter .block ul li,
.hs_cos_wrapper_type_post_listing .block ul li,
.hs_cos_wrapper_type_post_filter .block ul li,
.recentpost-module .block ul li{
  list-style-type: none;
  margin-left:0px;
}

.hs_cos_wrapper_type_post_filter .block ul,
.hs_cos_wrapper_type_post_listing .block ul,
.hs_cos_wrapper_type_post_filter .block ul,
.recentpost-module .block ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.hs_cos_wrapper_type_post_filter a.filter-expand-link{
  display: none;
}
.hs_cos_wrapper_type_post_filter .block ul{
  padding: 23px 25px 13px 25px;
}
.hs_cos_wrapper_type_post_filter a{
  font-size: 14px;
  vertical-align: super;
}
.hs_cos_wrapper_type_post_filter li{
  margin-bottom: 11px;
}
.hs_cos_wrapper_type_post_filter a .filter-link-count{
  float: right;
}
.hs_cos_wrapper_type_post_listing ul{
  padding-top: 7px;
}

.hs_cos_wrapper_type_post_listing li,
.recentpost-module li{
  padding: 14px 23px 15px 23px;
}
.hs_cos_wrapper_type_post_listing li:last-child,
.recentpost-module li:last-child{
  border-top: 1px solid #EEF1FE;
}
.row-number-12 .hs_cos_wrapper_type_post_filter .filter-link-count,
.style-2 .hs_cos_wrapper_type_post_filter .filter-link-count{
  display: none;
}

.row-number-12 .hs_cos_wrapper_type_post_filter li,
.style-2 .hs_cos_wrapper_type_post_filter li{
  display: inline-block;
  padding: 3.5px 12.5px;
  margin-right: 8px;
  margin-bottom: 8px;
  border: 1px solid #EEF1FE;
  box-sizing: border-box;
  border-radius: 2px;
  line-height: 0;
}

/********* Blog Post page Style **********/
.hs-blog-post .post-wrapper{
  position: relative;
  z-index: 1;
  margin-top: -66px;
}

.hs-blog-post .post-wrapper .left-col{
  background: #ffffff;
  padding: 40px;
  box-shadow: 0 2px 14px 0 rgb(0 0 0 / 8%);
}

.hs-blog-post .top-box-container{
  background: #f8f5f2;
  border-radius: 9px;
  padding: 60px 76px 60px 76px;
  margin-bottom: 56px;
  box-shadow: 0 2px 14px 0 rgb(0 0 0 / 16%);
}
.hs-blog-post .top-box-container h1{
  margin: 0;
}

.hs-blog-post .body-cont.row-fluid {
  padding: 0px 0px 100px;
  background: #0a8080 !important;
}

.hs-blog-post .blog-post__tag-link{
  margin-right: 21px;
  text-decoration:underline;
  font-size:18px;
  margin:0;
}

.hs-blog-post .blog-post__tags {
  padding: 25px 0;
  border-top:0.3px solid #EAEAEA;
  border-bottom:0.3px solid #EAEAEA;
  margin-bottom:30px;
  margin-top:46px;
}

.hs-blog-post .blog-index__post-author{
  border-top: 1px solid #EAEAEA;
  border-bottom: 1px solid #EAEAEA;
  padding: 34px 0 34px 0;
  margin: 40px 0px;
}
.hs-blog-post .blog-index__post-author .author-image{
  height: 90px;
  width: 90px;
  border-radius: 100%;
  background-size: cover !important;
  background-position: top center !important;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}

.hs-blog-post .blog-index__post-author .blog-index__post-author-name{
  margin-bottom: 5px;
}

.hs-blog-post .blog-index__post-author p.blog-index__post-author-name{
  margin: 0;
}

.hs-blog-post .blog-index__post-author .right-cont{
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 150px);
}

.hs-blog-post .comment.depth-0{
  border: 0;
}

.hs-blog-post .comment-from h4{
  display: block;
  margin-bottom: 4px;
}

.hs-blog-post .comment-date{
  display: block;
}
.hs-blog-post .comment-body{
  margin-top: 10px;
}
.hs-blog-post .comment-body p{
  margin-bottom: 8px;
}
.hs-blog-post button.comment-reply-to{
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.hs-blog-post .comment.depth-1{
  padding-top: 74px;
  position: relative;
  padding-left: 120px;
}
.hs-blog-post .comment.depth-1:before{
  position: absolute;
  content: '';
  height: 100%;
  width: 100px;
  top: -128px;
  left: -26px;
  border-left: 1px solid #C2C2C2;
  border-bottom: 1px solid #C2C2C2;
  border-bottom-left-radius: 20px;
}

.hs-blog-post .comment.depth-1:nth-child(1):before{
  height: 30%;
}

.hs-blog-post .comment.depth-1:nth-child(2n):before{
  top: -144px;
}

.hs-blog-post .spacing-div{
  margin-bottom: 42px;
}

.hs-blog-post .minute-read {
  margin: 20px 0px;
}

.hs-blog-post span.published-date {
  margin-right: 20px;
}

.hs-blog-post .social-sharing-icon {
  margin-top: 25px;
}

@media(max-width: 1024px){
  .hs-blog-post .top-box-container{
    padding: 45px 30px 45px 30px;
  }
}
@media(max-width: 767px){
  .hs-blog-post .comment.depth-0{
    margin-top: 0;
  }

  .blog-related-posts{
    padding:60px 0px;
  }

  .hs-blog-post .body-cont.row-fluid {
    padding: 0px 0px 60px;
  }

  .hs-blog-post .comment.depth-1:before{  
    display: none;
  }

  .hs-blog-post .comment.depth-1{
    padding-left: 40px;
    padding-top: 32px
  }

  .hs-blog-post .blog-comments{
    margin-bottom: 60px;
  }

  .hs-blog-post .top-box-container{
    margin-bottom: 40px;
  }

  .hs-blog-post .blog-post__tag-link{
    margin-bottom: 8px;
    font-size:14px!important;
    display: inline-block;
    margin:0;
  }
  .hs-blog-post .post-wrapper{
    margin-top: -46px;
  }

  .hs-blog-post .post-wrapper .right-col{
    margin-top: 30px;
  }
  .hs-blog-post .spacing-div{
    margin-bottom: 30px;
  }
  body .hs-blog-post .blog-post__tags {
    margin-top:30px;
  }
}

.blog-post__body p {
  margin-bottom: 26px;
}

.blog-post-module{
  position: relative;
}

.blog-post-module .post_featured_image{
  min-height: 689px;
  padding: 100px 0 100px 0;
  width: 100%;
  position: relative;
}

@media(max-width: 1024px){
  .blog-post-module .post_featured_image{
    min-height: 64vw;
  }
}
@media(max-width: 767px){
  .blog-post-module .post_featured_image{
    min-height: 80vw;
  }

}
.hs_cos_wrapper_type_post_filter .block ul{
  padding:0;
}

.hs_cos_wrapper_type_post_filter .block ul li a{
  margin:0;
}

.container-fluid.body-container.body-container--blog-index .hs-search-field.hs-search-field--initialized form{
  padding:0;
  box-shadow:none;
}

.container-fluid.body-container.body-container--blog-index .hs_cos_wrapper_type_post_filter .block, .hs_cos_wrapper_type_post_listing .block, .recentpost-module .block{
  padding:0;
  box-shadow:none;
  margin:0;
  border:none;
}

body .body-container--blog-index .hs-search-field form input {
  border: 1px solid #346094 !important;
  border-radius: 11.9149px;
  box-sizing: border-box;
  height: 35px;
  padding: 7px 45px 7px 22px;
  position: relative;
}

.container-fluid.body-container.body-container--blog-index .hs-search-field form button{
  padding:0;
}


.container-fluid.body-container.body-container--blog-index .hs-search-field__bar button {
  position: absolute;
  right: 4px;
  height: 38px;
  width: 35px;
  background: transparent;
  border: 1px solid transparent;
  top: 0px;
  border-radius: 0;
  border-top-right-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
}

.container-fluid.body-container.body-container--blog-index .hs-search-field form button svg {
  font-weight: 300;
  height: 17px;
  fill: #55565A;
} 

.container-fluid.body-container.body-container--blog-index input.hs-search-field__input{
  font-size:17px;
}

.banner-text h1 {
  margin-bottom: 48px;
}
.banner-text h5 {
  line-height:36px;
}
h3.form-title{
  line-height:normal;
  border-radius: 3px 3px 0 0;
}


@media(min-width:768px){
  .blog-post-container .right-col.vertical-center {
    position:relative;
  }
  .blog-post-container .right-col.vertical-center:before{
    border-left:1px solid #E8EBED;
    position: absolute;
    left: -30px;
    top: 0;
    bottom: 0;
    content: '';
  }
  .author-container .left-col.align-center {
    max-width: 134px;
  }
  body .blog-post-container .blog-post{
    padding-right:10px;
  }
  body .blog-post-container .read-now-cta {
    padding-bottom: 60px;
  }
}


body .blog-post h1 span{
  text-transform:uppercase;
  font-size:54px;
  line-height:63px;
  color:#346094;
  font-style:normal;
}
@media(min-width:768px) and (max-width:1024px){
  body .blog-post-container .right-col.vertical-center:before{
    left: -20px;
  }
  body .blog-post h1 span{
    font-size:45px;
    line-height:normal;
  }
}

@media(max-width:767px){
  .banner-text h1 {
    margin-bottom: 25px;
    font-size: 45px !important;
    line-height: normal;
  }
  .container-fluid.body-container.body-container--blog-index .hs-search-field__bar button{
    margin-top:2px;
  }
  body .blog-post-container {
    padding: 60px 0;
  }
  body .blog-post-container .subscribe-blog-section {
    padding-bottom: 45px;
  }
  body .blog-post-container .blog-post{
    padding-bottom:60px;
  }
  .author-container .blog-author_image {
    margin-bottom: 20px;
  }
  .author-container .author-details-conta {
    margin-bottom: 20px;
  }
  body .blog-post-filter-container .hs_cos_wrapper_type_post_filter .block{
    padding-bottom:20px;
  }
  .blog-post-filter-container .hs_cos_wrapper_type_post_filter .block h3{
    font-size:18px !important;
  }
  body .blog-post-container .blog-post h2{
    line-height:normal;
  }
  body .blog-post-container .blog-post h1 span{
    font-size:40px;
    line-height:normal;
  }

}
.content-wrapper{
  max-width:1200px;
  padding:0 15px;
  margin:0 auto;
}



.subscribe-blog-section {
  padding-bottom: 70px;
}
.blog-post-container {
  padding: 93px 0 103px;
}

.blog-comments form {
  max-width: 769px;
  box-shadow: 0px 0px 20px #1D365426;
  border-radius: 3px;
}

.post-blog-search-conta .hs-search-field.hs-search-field--initialized form{
  padding:0;
  box-shadow:none;
}

.post-blog-search-conta .hs_cos_wrapper_type_post_filter .block, .hs_cos_wrapper_type_post_listing .block, .recentpost-module .block{
  padding:0;
  box-shadow:none;
  margin:0;
  border:none;
}

.post-blog-search-conta .hs-search-field form input {
  border: 1px solid #346094 !important;
  border-radius: 11.9149px;
  box-sizing: border-box;
  height: 35px;
  padding: 7px 45px 7px 22px;
  position: relative;
}

.post-blog-search-conta .hs-search-field form button{
  padding:0;
}

.submitted-message {
  text-align: center;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.post-blog-search-conta .hs-search-field__bar button {
  position: absolute;
  right: 10px;
  height: 37px;
  width: 35px;
  background: transparent;
  border: 1px solid transparent;
  top: 0px;
  border-radius: 0;
  border-top-right-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
}

.post-blog-search-conta .hs-search-field form button svg {
  font-weight: 300;
  height: 17px;
  fill: #55565A;
} 

.post-blog-search-conta input.hs-search-field__input{
  font-size:17px !important;
}

.blog-post-filter-container .hs_cos_wrapper_type_post_filter .block h3{
  display:block;
  padding: 0;
  color: #55565A;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 10px;
  border-bottom: none;

}
.blog-post-filter-container .hs_cos_wrapper_type_post_filter .block{
  box-shadow:none;
  border:none;
  padding-bottom:35px;
}

.blog-post-container a.cta_button:hover{
  background:transparent;
  border:none;
}
.blog-post-container .get-guide-cta{
  margin-bottom:30px;
}

.post-blog-search-conta {
  padding-bottom: 36px;
}
.blog-post-container a.cta_button{
  padding:0;
  background:transparent;
  border:none;
}

.author-details-conta a{
  text-decoration:underline;
  font-weight:600;
}
.blog-post{
  padding-bottom:140px;
}

.hs-search-field__suggestions-container{
  display:none;
}

.blog-post__meta a{
  margin-right:3%;
  line-height:normal;
}

time.blog-post__timestamp {
  margin-right: 3%;
}

.blog-post__meta a:first-child{
  margin-right:0;
  text-decoration:underline;
}

.blog-post-filter-container .hs_cos_wrapper_type_post_filter a{
  font-size:18px;
  text-decoration:underline;
  line-height:25.2px;
}

.blog-post-filter-container .hs_cos_wrapper_type_post_filter li {
  margin-bottom: 3px;
}

@media(min-width:768px){

  .blog-comments .hs_firstname.hs-firstname.hs-fieldtype-text.field.hs-form-field {
    width: 48%;
    float: left;
  }
  .blog-comments .hs_lastname.hs-lastname.hs-fieldtype-text.field.hs-form-field {
    width: 48%;
    float: right;
    margin-left:4%;
  }
}

.blog-comments .hs-form label{
  display:inline;
}

body .blog-comments textarea.hs-input {
  height: 65px!important;
  resize: none;
}

body .row-fluid .blog-comments .hs-button{
  margin:0;
}

body .row-fluid .blog-comments ul.no-list.hs-error-msgs.inputs-list {
  position: absolute;
}


@media(max-width:1024px){
  .banner-text br{
    display:none;
  }
}

.hs-blog-listing .hs-search-field form{
  max-width:100%;
}

body .row-fluid form a {
  text-decoration: underline;
}

.hs-blog-listing .hs-search-field form{
  padding:0; 
}
.hs-blog-listing .hs-search-field form button{
  border:none;
}

.hs-blog-listing .hs-search-field__bar>form>.hs-search-field__input{
  padding:0;

  height: 35px;
  font-size: 14px;
  border-radius: 4px !important;
  padding-right: 50px;
  padding-left: 18px;
  padding-bottom: 3px;
  padding-top: 3px;
  background: transparent;
  box-sizing: content-box;
  border: 1px solid #fff !IMPORTANT;
  box-sizing: border-box;
  color: #55565A;
  outline: 1px solid #346094;
  border-radius: 4px;
  background:url('https://www.meadenmoore.com/hubfs/search.svg')no-repeat;
  background-position:right;
  background-size: 6% 43%;
}

body .row-fluid input.hs-search-field__input:focus{
  border-radius:4px;
  outline: 1px solid #346094;
}

.hs-blog-listing .hs-search-field form button svg{
  height:0;
}


body .row-fluid input.hs-search-field__input:focus{
  border-radius:4px;
  outline: 1px solid #346094;
}

.hs-blog-listing .hs-search-field__bar>form>.hs-search-field__input{
  padding:0;

  height: 35px;
  font-size: 14px;
  border-radius: 4px !important;
  padding-right: 50px;
  padding-left: 18px;
  padding-bottom: 3px;
  padding-top: 3px;
  background: transparent;
  box-sizing: content-box;
  border: 1px solid #fff !IMPORTANT;
  box-sizing: border-box;
  color: #55565A;
  outline: 1px solid #346094;
  border-radius: 4px;
  background:url('https://www.meadenmoore.com/hubfs/search.svg')no-repeat;
  background-position:right;
  background-size: 6% 43%;
}

.hs-blog-listing .hs-search-field form button{
  border:none;
}

.hs-blog-listing .header-section .hs-search-field__bar>form>.hs-search-field__input {
  background: none;
}

.hs-blog-listing .hs-search-field form button{
  background:none;
  padding:0;
}

.hs-blog-listing .main_slider_section {
  padding: 40px 0;
}

.hs-blog-listing .hs-search-field form {
  padding: 0;
  box-shadow: none;
}

.hs-blog-listing .hs-search-field form input::placeholder{
  font-size:12px;
  line-height:normal;
}

.hs-blog-listing .hs-search-field__bar>form>.hs-search-field__input{
  padding:0;
  height: 37px;
  font-size: 14px;
  border-radius: 4px !important;
  padding-right: 50px;
  padding-left: 18px;
  padding-bottom: 3px;
  padding-top: 3px;
  background: transparent;
  box-sizing: content-box;
  border: 1px solid #fff !IMPORTANT;
  box-sizing: border-box;
  color: #55565A;
  outline: 1px solid #346094;
  border-radius: 4px;
  background:url('https://www.meadenmoore.com/hubfs/search.svg')no-repeat;
  background-position:right;
  background-size: 6% 43%;
}

.row-fluid-wrapper.row-depth-1.row-number-11.dnd-section.dnd_area-row-3-vertical-alignment {
  padding-bottom: 50px;
}

.hs-search-field__bar.hs-search-field__bar--button-inline::placeholder{
  font-size:10px;
}

h4{
  color:#346094;
  font-weight:bold;
}
/*****************************************/
/* System Page */
/*****************************************/
.systems-page {
  padding: 100px 0;
}
.hs-search-results__pagination {
  flex-wrap: wrap;
}
li.hs-search-results__listing__item {
  margin: 0;
}
p.hs-search-results__message {
  padding-bottom: 30px;
}
a.hs-search-results__link {
  margin: 0;
}
body p.hs-search-results__description {
  margin-top: 0px;
}
.error-page-content{
  padding:180px 0px 130px!important;
  text-align:center;
} 
.max_width_670px{
  max-width:670px;
  text-align:center;
  margin:0 auto;
}

.password_styles form{
  margin-top:40px;
  border-radius: 8px;
  padding: 40px 20px;
}
.error-page-content form input[type=checkbox]{
  margin-bottom: 2px;
}

.error-page-content.search-results,
.error-page-content.subscription-preferences{
  text-align:left;
}

.error-page-content h1{
  margin-bottom: 30px;
}

.error-page-content p{
  margin-bottom: 30px;
}

.subscription-preferences h1{
  color: #14142b;
  font-size: 40px;
}

.subscription-preferences p{
  color: #14142b;
}

.error-page-content h2 {
  font-size: 30px;
}  

.search-results ul#hsresults li {
  margin-bottom: 20px;
}

.search-results a.hs-search-results__title {
  font-size: 20px;
  color: #14142b;
  font-weight: bold;
}

.search-results p {
  color: #8184a3;
  margin-bottom: 0px;
}

.search-results ul#hsresults li {
  padding: 30px;
  margin-bottom: 4%;
  background:#ffffff;
  border-radius: 16px;
}

@media(min-width: 768px){

  .search-results ul#hsresults {
    display:flex;
    flex-wrap: wrap;
    margin-top: 40px!important;
    margin-bottom: -4%;
  }

  .search-results ul#hsresults li {
    flex-basis: 48%;
    margin-right: 4%;
    padding: 40px;
  }

  .search-results ul#hsresults li:nth-child(2n){
    margin-right: 0px!important;
  }

}

@media(min-width: 768px) and (max-width: 1024px){

  .error-page-content {
    padding: 180px 0px 100px;
  }

  .error-page-content h1 {
    font-size: 40px;
  }  

  .error-page-content h2 {
    font-size: 26px;
  }  

}

@media(max-width: 767px){
  .systems-page {
    padding: 50px 0;
  }
  .error-page-content h1{
    font-size: 30px!important;
  }

  .error-page-content {
    padding: 180px 0px 80px;
  }

  .error-page-content h2 {
    font-size: 20px!important;
  } 

}

.hs-responsive-embed-wrapper.hs-responsive-embed{
  max-width:none !important;
}


.syatem-banner-space{
  padding:250px 0;
  background-image: url(https://www.meadenmoore.com/hubfs/2020/Website%20Images/02%20Services/Updated%20Banner%20Images/CAR-CUL-6.C.jpg);
  background-size: cover;
  background-position: center center;
}


@media(min-width:768px) and (max-width:1024px){
  .syatem-banner-space{
    padding:200px 0;
  }

}

@media(max-width:767px){
  .syatem-banner-space{
    padding:150px 0 60px;
  }
}


.password_styles input.hs-button{    
  font-size: 18px;
  font-family: 'Work Sans', sans-serif;
  color: #fff;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  border-radius:  3px;
  background:#78A249;
  line-height: 1; 
  padding: 7.5px
    21px;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  transition: all .15s ease;
  -webkit-transition: all .15s ease-in;
  letter-spacing: 0px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  border:2px solid
    #78A249;
  text-transform: none;
  margin-top:20px;
}



.password_styles input.hs-button:hover{ 
  background: rgba(255, 255, 255, 
    100);
  border-color:#78A249;
  color:#78A249;
}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}