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

/* .content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}
 */
.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;
  z-index: 1;
}


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





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

body .container-fluid .dnd-section .force-full-width-section > .row-fluid{
  padding: 0px!important;
}
/* 
@media(max-width:1024px)and(min-width:768px) {

  body .container-fluid .dnd-section {
    padding-top: 80px!important;
    padding-bottom: 80px!important;
  } 

}
 */
.dnd_area-module-0-flexbox-positioning{
  display: -ms-flexbox !important;
  -ms-flex-direction: column !important;
  -ms-flex-align: center !important;
  -ms-flex-pack: center;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center;
}
@media (max-width: 767px) {

  .dnd-section .widget-type-cell {
    padding-left: 0px;
    padding-right: 0px;
  }
  .dnd-section img.hs-image-widget {
     margin: 20px 0 !important;
 }
}

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

/* Add Font Family  */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');
/***********************************************/
/* 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    */
/*****************************************/

/*  Configuration variables  */

                                        

    



















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

body {
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  color: #737588;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  margin: 0px;
  line-height: 1.56;
  letter-spacing: 0px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
  position:relative;
}

body .row-fluid .wrapper{
  max-width: 1170px;
  margin-left:auto!important;
  margin-right:auto!important;
  float: none;
  z-index:2;
  box-sizing:border-box;
  padding: 0px 15px;
}

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

@media(max-width: 767px) {
  .body-container-wrapper li {
    text-align: left;
  }
}

p {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  color: #737588; 
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  /*   line-height: 1.56;
  letter-spacing: 0px; */
  line-height: 25px;
  letter-spacing:0;
}

.p-18 p,
.p-18 a{
  font-size: px;
  font-family: ;
  color: ; 
  font-style: ;
  text-decoration: ;
  font-weight: ;
  line-height: 1.56;
  letter-spacing: 0px;
}

img{
  height:auto;
	vertical-align: bottom;
}
/* img:hover {
    filter: hue-rotate(320deg) contrast(110%) sepia(10%);
} */
/* Image alt text */

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

/* Anchor Links */

a {
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  color: #246bfd;
  font-style: normal;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.16px;
  cursor: pointer;
  margin-bottom:0;
}

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

h1 {
  margin-bottom: 20px;
  font-size: 56px;
  font-family: 'DM Sans', sans-serif;
  color: #101a29; 
  font-style: normal;
  text-decoration: none;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: 0px;
  text-transform: none;
}

h2 {
  font-size: 40px;
  font-family: 'DM Sans', sans-serif;
  color: #171c26;
  font-style: normal;
  text-decoration: none;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: 0px;
  text-transform: none;
  margin-bottom:15px;
}

h3 {
  font-size: 28px;
  font-family: 'DM Sans', sans-serif;
  color: #101a29;
  font-style: normal;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.36;
  letter-spacing: 0px;
  text-transform: none;
  margin-bottom:15px;
}

h4 {
  font-size: 20px;
  font-family: 'DM Sans', sans-serif;
  color: #101a29;
  font-style: normal;
  text-decoration: none;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0px;
  text-transform: none;
  margin-bottom:10px;
}

h5 {
  font-size: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #2cd8b1;
  font-style: normal;
  text-decoration: none;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom:15px;
}

h6 {
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: #101a29;
  font-style: normal;
  text-decoration: none;
  font-weight: 500;
  line-height: 17px;
  letter-spacing: 0px;
  text-transform: none;
  margin-bottom:15px;
}

h1,h2,h3,h4,h5,h6,p,a{
  margin-top:0;
  padding:0;
}

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: 16px;
  font-family: 'DM Sans', sans-serif;
  color: #737588;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height:1.8;
  letter-spacing: 0px;
  position: relative;
  margin-bottom:0;
  margin-left:15px;
}

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

.check-mark li:before {
  position: absolute;
  top: 7px;
  left: -24px;
  content: '';
  width: 13px;
  height: 13px;
  background: url()no-repeat;
  background-position: center;
  background-size: cover;
} 

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

hr {
  background-color: rgb(205, 205, 205);
  border: none;
  color: #CCC;
  height: 1px;
}

blockquote{
  margin:0;
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  color: #737588;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.32px;
  margin-top: 45px;
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 4px solid #000;
}

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!important;
  text-shadow: 0px 0px 20px rgb(0 0 0 / 22%);
}

.all-text-black,
.all-text-black h1,
.all-text-black h2,
.all-text-black h3,
.all-text-black p,
.all-text-black h4,
.all-text-black h5,
.all-text-black h6,
.all-text-black li,
.all-text-black .fa,
.all-text-black a{
  color:#000000!important;
}
.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;
  margin-bottom:0!important;
}

.base-color-text h1,
.base-color-text h2,
.base-color-text h3,
.base-color-text p,
.base-color-text h4,
.base-color-text h5,
.base-color-text h6,
.base-color-text .fa,
.base-color-text a{
  color:#246bfd;
}

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

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

.two-cta-container .left-cta {
  margin-right: 20px;
  margin-bottom: 15px;
}

@media(max-width: 1024px) and (min-width: 768px) {
  .two-cta-container .left-cta a.cta_button,
  .two-cta-container .right-cta a.cta_button{
    margin-bottom: 20px;
  }
}

@media(max-width: 767px) {
  .two-cta-container .left-cta a.cta_button {
    margin-bottom: 20px;
  }

  body .row-fluid blockquote{
    margin-top: 30px;
    margin-bottom: 30px;
  }
	 .dnd_area-row-3-vertical-alignment > .row-fluid {
    display: -ms-flexbox ;
    -ms-flex-direction: column-reverse;
    display: flex ;
    flex-direction: column-reverse;
}
}

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

/* @media(max-width: 767px) {
.row-fluid [class*="span"].dnd-column {
text-align: left;
} 
} */



@media(max-width: 767px) {

  body [class*="flexbox-positioning"] {
    align-items: flex-start;
  }

  body [class*="flexbox-positioning"] > div span>div {
    text-align: left!important;
  }
}



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

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

  .row-fluid [class*="span"].wrapper{
    padding-left:40px;
    padding-right:40px;
  }

  h1{
    font-size: 42px;
  }

  h2{
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
  }

  h3{
    font-size: 20px;
    line-height:26px;
  }

  h4{
    font-size: 14px;
    line-height: 20px;
  }


  h6{
    font-size: 14px;
  }

  .body-container-wrapper li{
    font-size: 16px;
    line-height:24px;
  }

  body a.cta_button[title], body .container-fluid .row-fluid .hs-button {
    white-space: normal;
  }

}

@media (max-width:767px){

  .row-fluid [class*="span"].wrapper{
    padding-left:20px;
    padding-right:20px;
  }

  h1{
    font-size: 30px;
    line-height:42px;
  }

  h2{
    font-size: 26px;
    font-weight: 500;
    line-height: 34px;
  }

  h3{
    font-size: 20px;
  }

  h4{
    font-size: 16px;
    line-height:22px;
  }


  h6{
    font-size: 16px;
  }

  p, .body-container-wrapper li {
    font-size: 14px;
    line-height: 24px;
  }


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

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


  body a.cta_button[title], body .container-fluid .row-fluid .hs-button {
    white-space: normal;
  }

  body a.cta_button, body a.cta-button, body .row-fluid .hs-button{
    /*     display:block; */
    font-size: 14px;
    /*     box-sizing: border-box !important;
    width: 100%;
    max-width: 360px; */
    padding-left: 0;
    padding-right: 0;
  }

  .heading-underline {
    margin-bottom: 20px;
    padding-bottom: 2px;
  }

}

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

body .container-fluid .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 .container-fluid .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;
}


@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: 20px 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;
  }   
}





.custom-model-main .custom-model-inner {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
  max-width:px;
}

.custom-model-main .close-button {
  position: absolute;
  right: -28px;
  top: -45px;
  cursor: pointer;
  z-index: 99;
  font-size: 30px;
  color: ;
}


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

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

.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:'DM Sans', sans-serif;
  color:#ffffff;
  font-style: normal;
  text-decoration: none;
  font-weight: 700;
  font-size:20px!important;
  letter-spacing: 0px;
}

.footer-section p{
  font-family:'DM Sans', sans-serif;
  color:#ffffff!important;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height: 23px;
  font-size:16px;
  letter-spacing: 0.36px;
  margin: 22px 0px 34px;
}
.footer-section a,
.footer-section .hs-menu-wrapper.hs-menu-flow-vertical>ul li a {
  padding: 10px 0;
  font-size:16px;
	 font-weight:normal;
  color:#ffffff;
}


.social-links a {
  padding: 10px;
}

body .footer-section .widget-type-header h4{
  margin-bottom:8px!important;
}

#hs_cos_wrapper_footer_1-module-18_ p{
  margin:0;
}

.row-fluid-wrapper.row-depth-1.row-number-1.dnd-row.footer_1-column-2-row-1-vertical-alignment{
  border-top:1px solid #939393;
  margin-top:40px;
}

@media(max-width:767px){
	 body .footer-section p{
			margin:15px 0;
	 }
	 body .footer_1-column-15-padding{
			padding-left:0 !important;
	 }
	 body .row-fluid-wrapper.row-depth-1.row-number-1.dnd-row.footer_1-column-2-row-1-vertical-alignment{
  margin-top:0px;
}
  #hs_cos_wrapper_footer_1-module-18_ p{
    text-align: center;
    margin-top: 20px;
  }

  body .row-fluid .span12.widget-span.widget-type-cell.dnd-column.footer_1-column-7-padding,
  body .row-fluid .span12.widget-span.widget-type-cell.footer_1-column-11-padding.dnd-column {

    padding-left: 0!important;
  }

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

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

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

}


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

sub {
  font-size: 15px;
  font-weight: 400;
  color: #9b9b9b;
  position: relative;
  top:4px;
  left: -10px;
  right: 0;
}


/*******************Border Sperator Module Styling starts Here  ******************/

@media (min-width:768px){
  .alignment-underline{
    margin-left:auto;
    margin-right:auto;
  }
  .underline-border.alignment-underline:before{
    right: 0;
    text-align: center;
    margin: 0 auto;
  }
}


@media (max-width:767px){
  body #main-content .container-fluid .row-fluid .underline-border{
    text-align: left;
  }
}

/********* Boder Sperator Module Styling ends Here ***********/







/********* Cta Module Styling starts Here ***********/


.cta-choices span.left-cta .video-container .video-title h6 {
  position: relative;
}

.cta-choices .left-cta .arrow-cta {
  margin-right: 50px;
}

body .simple-cta a.cta_button, body .simple-cta a{
  margin-top:0;
}

body.overflow-hidden{
  overflow:hidden;
}

.cta-choices .video-title a.cta-button {
  margin-top: 20px;
}

.cta-choices span {
  display: inline-block;
}

.cta-choices .video-container .video-section .video-title{
  display:inline-block;
  margin-left:0px;
}

.cta-choices .arrow-cta a.cta-button:after,.cta-choices .arrow-cta a:after{
  display:none
}

}



@media(max-width: 767px) {
  .custom-model-main .custom-model-inner {
    max-width: 80%;
  }

  .cta-choices {
    margin-top: 15px;
  }

  .cta-choices .arrow-cta a.cta_button {
    display: inline-block ;
    width: auto;
    box-sizing: border-box;
  }

  .cta-choices span.left-cta .cta-container .video-title h6:after {
    left: 22%;  
  }
}


.wistia_click_to_play {
  width: 100% ;
  height: auto ;
}




.nor-card .text-conta { 
  padding: 10px 30px;
  background: #f5f7fa;
}
body .row-fluid .nor-card .hs_cos_wrapper.hove{ 
  margin-top:10px;
}
.nor-card .description-conta { 
  padding: 30px;
}

.nor-card .hove{
  border:1px solid #f5f7fa;
}

@media(max-width:767px){
  .nor-card .text-conta {
    padding:10px;
  }
  .nor-card .description-conta { 
    padding: 10px;
  }
}






/*  Social Follow Styling Here And Subscrbe blog */
.social-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

.social-links__icon {
  height: 1.75rem;
  margin: 0 0.35rem;
  position: relative;
  width: 1.75rem;
}

.social-links__icon svg {
  fill: #FFF;
  height: 0.625rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
}

.social-links__icon:hover svg,
.social-links__icon:focus svg,
.social-links__icon:active svg {
  fill: #FFF;
}


.sub-form h3{
  font-size: 16px;
  line-height: 23px;
  font-weight: 600;
  letter-spacing: normal;
  margin-bottom: 10px;
  margin-top: 25px;
  text-transform: uppercase;
  
}

.sub-form .form-conta form{
  padding: 0;
  background: transparent;
  border: 0px solid rgba(255,60,0,1.0);
  border-radius: 0px;
  margin: 0 auto;
}

.sub-form .form-conta form .hs-button{
  margin: 0;
  padding-right: 0;
  padding-left: 0;
  width: 100%;
  margin-top: 10px;

}



/*****************************************/
/* 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 {    
  font-size: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #ffffff;
  font-style: normal;
  text-decoration: none;
  font-weight: 500;
  border-radius:  4px;
  background:#246bfd;
  line-height: 1.2; 
  padding: 14px
    38px;
  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:1px solid
    #00;
  text-transform: none;
}

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

.row-fluid a.cta_button:hover { 
  background: rgba(36, 107, 253, 
    100);
  border-color:#ffffff;
  color:#ffffff;
	border-radius:45px;
	transition:all 0.5s ease-in-out;
} 

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

body .container-fluid .row-fluid .small a.cta_button,
body .container-fluid .row-fluid .small .hs-button{    
  font-size: px;
  padding: px px;
}

body .container-fluid .row-fluid .medium a.cta_button,
body .container-fluid .row-fluid .medium .hs-button{    
  font-size: px;
  padding: px px;
}

body .container-fluid .row-fluid .large a.cta_button,
body  .container-fluid .row-fluid .large .hs-button{    
  font-size: px;
  padding: px px;
}

.transparent-cta a.cta-button,
.transparent-cta a.cta_button,
.transparent-cta a{
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  color: #000000;
  font-style: normal;
  text-decoration: none;
  font-weight: 500;
  border-radius:  px;
  background: rgba(255, 255, 255,
    0);
  position:relative;
  border: px
     ;
  line-height:1.2; 
  letter-spacing:0px;
  text-transform: none;
	 border:1px solid transparent;
} 

 .transparent-cta a.cta_button:hover,
.transparent-cta a:hover{ 
  background: rgba(255, 255, 255, 0);
  border-color:;
  color:#246bfd;
	 border:1px solid transparent;
} 

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

.simple-cta a.cta_button,
.simple-cta a{
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  color: #000000;
  font-style: normal;
  text-decoration: none;
  font-weight: 500;
  border: 0;
  background: rgba(255, 255, 255, 0);
  line-height:1.2; 
  letter-spacing:0px;
  padding: 17px 0px;
  position:relative;
/*   margin-top: 20px; */
  display:inline-block;
  text-transform: none;
}

.simple-cta a.cta_button:hover{
  color: #246bfd;
  background: rgba(255, 255, 255, 0);
	text-decoration:underline;
}

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(255, 255, 255,
    0);
}

body .row-fluid .white-cta a.cta_button,
body .row-fluid .white-cta a{
  color: ;
  border: px  ;
  background: ;
}

body .row-fluid .white-cta a.cta_button:hover{
  color: ;
  background: ;
  border: px  ;
}

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

.video-cta a.cta-button,
.video-cta a.cta_button,
.video-cta a{
  position: relative!important;
  padding:  px px px px!important;
  color:  !important;
  border: px   !important;
  
	 
}

.video-cta a.cta-button:before,
.video-cta a.cta_button:before,
.video-cta a:before{
  content: "";
  position: absolute;
  background: url( ) no-repeat;
  width: px;
  height:px;
  right: px;
  top: px;
  background-size: cover;
  background-position: center;
}




body .video-cta a.cta-button,
body .video-cta a.cta_button {    
  font-size: px;
  font-family: ;
  color: ;
  font-style: ;
  text-decoration: ;
  font-weight: ;
  border-radius:  4px;
  background:;
  line-height: ; 
  padding: px
    px;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  transition: all .15s ease;
  letter-spacing: px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  border:px solid
    #00;
  text-transform: ;
}


.row-fluid .video-cta a.cta_button:hover { 
 background:;
  border-color:;
  color:;
} 



@media(min-width:768px){
	 .header-cta a.cta_button {
   padding: 8.5px 24.5px;
}
}
/*****************************************/
/* Start your style declarations here    */
/*****************************************/



                                        

    






















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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

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

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

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

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

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

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

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

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

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

.email-prefs .item .item-inner span {
  font-size: 15px;
  color: #101a29;
  font-weight: 500;
  line-height: 24;
  letter-spacing: 3px;
}

.email-prefs .item .item-inner p {
  font-size: 16px;
  color: #737588;
  font-weight: 400;
  line-height: 1.56;
  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: 50px 50px 50px;
  background: rgba(255, 255, 255, 1.0);
  border: 0px solid rgba(226, 226, 226, 1.0);
  border-radius: 6px;
  max-width: 670px;
  margin: 0 auto;
}



.form-title{
  margin: 0;
  max-width: 670px;
  color: #101a29;
  background: rgba(255, 255, 255, 1.0);
  padding:20px 20px 0;
  margin:0 auto;
}

body .row-fluid .hs-button {  
  font-size: 16px;
  line-height: 18px;
  padding: 15px 33px;
  font-family: 'DM 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(36, 107, 253, 1.0);
  border: 1px solid rgba(36, 107, 253, 1.0);
  border-radius: 0px;
  text-shadow: 0 1px 3px rgb(36 180 126 / 40%);
  text-transform: none;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 6px rgb(50 50 93 / 11%), 0 1px 3px rgb(0 0 0 / 8%);
}

body .row-fluid .hs-button:hover{ 
  background: rgba(36, 107, 253, 1.0);
  border-color:#246bfd;
  color:#ffffff;
  box-shadow: 0 7px 14px rgb(50 50 93 / 10%), 0 3px 6px rgb(0 0 0 / 8%);
	border-radius:45px;
	transition:all 0.5s ease-in-out;
} 

body .row-fluid .hs-button {
  text-align: center;
	border-radius:4px;
  display: block;
 width: 100%;
  box-sizing: border-box;
  max-width: 100%;
  margin: 24px auto 0;
	transition:all 0.5s ease-in-out;
}

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

.hs-form label {
  display: block;
  float: none;
  width: auto;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: #101a29;
  text-decoration: 0;
  font-style: normal;
  font-weight: 500;
  text-align: left;
  line-height: 1;
  padding-top: 0;
  margin-bottom: 10px;
  margin-top: 11px;
  text-transform: none;
}

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

body .container-fluid .row-fluid .hs-field-desc {  
  margin-top: 0px;
  font-size: 11px;
  font-family: 'DM Sans', sans-serif;
  color: #1871c9;
  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: 10px ! important;
  font-family: 'DM Sans', sans-serif;
  color: #000000;
  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,
.systems-page-psw input#hs-pwd-widget-password{
  display: inline-block;
  width: 100%;
  height:45px;
  padding: 5px 10px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: #000000;
  text-transform: none;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #ffffff;
  border: 1px solid #e2e2e2;
  box-sizing: border-box;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  margin-bottom: 2px;
}

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

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

/*=======================================================
CHECKBOX AND RADIO BUTTONS STYLING
=======================================================*/            

.row-fluid .hs-form .field .input input[type="checkbox"],
.row-fluid .hs-form .field .input  input[type="radio"]{
  width:auto;
}

.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: #101a29;
-webkit-appearance: none;
border: 1px solid rgba(16, 26, 41, 1.0);
margin-right: 8px;
top: 4px;
width: 15px;
height: 15px;
}

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

body .row-fluid textarea.hs-input {
  height: 150px;
  /*   resize: none; */
}

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

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

.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(36, 107, 253,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);
}

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

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: 7px;
  -webkit-appearance: none;
  border: 1px solid rgba(16, 26, 41, 1.0);
  margin-right: 8px;
  top: 3px;
  width: 15px!important;
  height: 15px;
  border-radius: 4px;
}

.row-fluid .hs-form .field .input input[type="checkbox"]:checked{
  border: 1px solid rgba(36, 107, 253,1.0);
}

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

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

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

.row-fluid .hs-form .field .input input[type="radio"]:checked::before{
  border: 1px solid rgba(36, 107, 253,1.0);
}

.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 #e2e2e2;
  position: absolute;
  left: 11px;
  top: 7.5px;
  border-radius: 4px;
  padding: 0px 10px;
  color: #101a29;
  font-size: 14px;
  line-height: 29px;
  letter-spacing: 0px;
  width: auto;
  height: 0;
  display: flex;
  cursor: pointer;
  display: flex;
  cursor: pointer;
  max-width: 100%;
  margin-bottom: 0px;
  height: 30px;
}

form .file-upload-file-name {
  height: 45px;
  color: #101a29;
  line-height: normal;
  display: flex;
  border: 1px solid #e2e2e2;
  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 .file-upload-file-name:focus{
  border: 1px solid #64ee85;
}

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

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

body .row-fluid form select {
  background: url('../../images/arrow-down-3101.svg') no-repeat !important;
  background-position: 96% 56% !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  cursor: pointer;
  background-size: 18px !important;
}

body .row-fluid .hs-form fieldset.form-columns-2 .hs-form-field {
  width: 49%;
  margin-right: 2%;
}

body .row-fluid .hs-form fieldset .hs-form-field:last-child{
  margin-right:0;
}

body .row-fluid .hs-form fieldset.form-columns-2 .input,
body .row-fluid .hs-form fieldset.form-columns-3 .input {
  margin-right:0px;
}

body .container-fluid .row-fluid .hs-form fieldset .field:last-child .input{
  margin-right:0;
}

@media(max-width:480px){

  body form.hs-form .form-columns-2 .hs-form-field .hs-input,body form.hs-form .form-columns-3 .hs-form-field .hs-input{
    width:100%;
  }

  body .row-fluid .hs-form fieldset .input{
    margin:0;
  }

  body .row-fluid .hs-form fieldset.form-columns-3 .hs-form-field {
    width: 100%;
    margin-right: 0;
  }

  .row-fluid form .hs_submit .actions{
    text-align:center;
  }

  body .row-fluid .hs-form fieldset.form-columns-2 .hs-form-field {
    width: 100%;
    margin-right: 0;
  }

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

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

}

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

body .hs-input:focus {
  outline: 0;
  border: 1px solid #101a29;
}

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: #6315ff;
}

.actions {
  padding: 0;
  text-align:center
}

.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: #101a29;
  display: block;
  float: none;
  width: auto;
  padding: 0;
  line-height: 18px;
  text-align: left;
  white-space: normal;
  font-weight: normal;
  text-transform: capitalize;
}
.inputs-list:first-child {
  padding-top: 6px;
  margin-bottom: 18px;
}
.inputs-list > li + li {
  padding-top: 2px;
}


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

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

.hs-form-required {
  color: red;
}

.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;
  }
  form{
    padding:20px 20px;
  }

}

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



/* Subscribe Form Stylings Here */



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

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

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

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

.sub-form .email-prefs .item .item-inner span {
  font-size: 15px;
  color: #101a29;
  font-weight: 500;
  line-height: 24;
  letter-spacing: 3px;
}

 .sub-form .email-prefs .item .item-inner p {
  font-size: 16px;
  color: #737588;
  font-weight: 400;
  line-height: 1.56;
  letter-spacing: -0px;
}



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

 .sub-form form {
  padding: 50px 50px 50px;
  background: rgba(245, 247, 250, 1.0);
  border: 0px solid rgba(36, 107, 253, 1.0);
  border-radius: 0px;
  max-width: 670px;
  margin: 0 auto;
}


 .sub-form .form-title{
  margin: 0;
  max-width: 670px;
  color: #000000;
  background: rgba(245, 247, 250, 1.0);
  padding:20px 20px 0;
  margin:0 auto;
}

body .row-fluid .sub-form .hs-button {  
  font-size: 14px;
  line-height: 18px;
  padding: 15px 33px;
  font-family: 'DM Sans', sans-serif;
  color: #ffffff;
  font-style: normal;
  letter-spacing: 0px;
  background-color: rgba(36, 107, 253, 1.0);
  border: 1px solid rgba(36, 107, 253, 1.0);
  border-radius: 0px;
  text-transform: uppercase;
  font-weight: 500;

}

body .row-fluid .sub-form .hs-button:hover{ 
  background: rgba(255, 18, 80, 1.0);
  border-color:#ff1250;
  color:#ffffff;
} 

body .row-fluid .sub-form .hs-button:focus,
body .row-fluid .sub-form .hs-button:active{
  background-color: #246bfd;
  border: 1px solid #246bfd;
  border-radius: 0px;
  color: #ffffff;
}

.sub-form .hs-form label {
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: #424242;
  text-decoration: 0;
  font-style: normal;
  font-weight: 500;
  text-transform: none;
}

body .container-fluid .row-fluid .sub-form .hs-error-msgs label {
  font-size: 10px;
  font-family: 'DM Sans', sans-serif;
  color: #FF0000;
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
}

body .container-fluid .row-fluid .sub-form .hs-field-desc {  
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
  color: #1871c9;
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
}

.sub-form form .hs-richtext p,
.sub-form .hs-form-booleancheckbox-display p,
.sub-form .legal-consent-container .hs-form-booleancheckbox-display{
  font-size: 10px ! important;
  font-family: 'DM Sans', sans-serif;
  color: #000000;
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  text-transform: none;

}





body .row-fluid .sub-form .hs-input,
.sub-form .systems-page-psw input#hs-pwd-widget-password{
  height:46px;
  padding: 5px 10px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: #000000;
  text-transform: none;
  font-style: normal;
  font-weight: 400;
  background: #ffffff;
  border: 1px solid #dedede;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;

}



/*=======================================================
CHECKBOX AND RADIO BUTTONS STYLING
=======================================================*/            


.row-fluid .sub-form .hs-form .field .input input[type="checkbox"],
.row-fluid .sub-form .hs-form .field .input  input[type="radio"]{
  background: rgba(255, 255, 255, 1.0);
  color: #424242;}
border: 1px solid rgba(0, 0, 0, 1.0);

}

.row-fluid .sub-form .hs-form .field .input input[type="radio"]:checked:after {
  background-color: #246bfd;

}


.row-fluid .sub-form .hs-form .field .input input[type="checkbox"]:checked:after {
  border: 2px solid rgba(36, 107, 253,1.0);
}


body .row-fluid .sub-form .hs-form .field .input input[type="checkbox"] {
  background: rgba(255, 255, 255, 1.0);
  border: 1px solid rgba(0, 0, 0, 1.0);

}

.row-fluid .sub-form .hs-form .field .input input[type="checkbox"]:checked{
  border: 1px solid rgba(36, 107, 253,1.0);
}



.row-fluid .sub-form .hs-form .field .input input[type="radio"]::before {
  border: 1px solid rgba(0, 0, 0, 1.0);
  background: rgba(255, 255, 255, 1.0);
}

.row-fluid .sub-form .hs-form .field .input input[type="radio"]:checked::after {
  border: 1px solid rgba(36, 107, 253,1.0);
  background: rgba(36, 107, 253,1.0);

}

.row-fluid .sub-form .hs-form .field .input input[type="radio"]:checked::before{
  border: 1px solid rgba(36, 107, 253,1.0);
}


.sub-form .hs-input[type=file] {
  background-color: ;
}

.sub-form form .file-upload-button-label {
  border: 1px solid #dedede;
  color: #424242;
}

.sub-form form .file-upload-file-name {
  color: #424242;
  border: 1px solid #dedede;
}


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

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

.sub-form .inputs-list label {
  color: #424242;
  text-transform: capitalize;
}

.sub-form .sub-form .hs-field-desc {
  color: #333e63;
}


.sub-form .hs-richtext {
  font-size: ;
}


.sub-form .hs-default-font-element,
.sub-form .hs-main-font-element {
  font-family: ;
}
/****************Table Styling Starts Here*******************/

th {
  font-size: 25px;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
  padding: 20px 20px;
  text-align:left;
  border: 1px solid #dddddd;
  background-color: #246bfd;
}

td {
  font-size: 20px;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0px;
  line-height: 1.5;
  color: #101a29;
  font-weight: 400;
  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(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****************************/

@media(min-width:768px){

	 

	 .header-container-wrapper .header-grp.fixed {
			position: fixed;
			width: 100%;
			left: 0;
			right: 0;
			top: 0;
			z-index:10;
			transition: all ease-in-out .4s;
			box-shadow: 0 2px 14px 0 rgb(0 0 0 / 16%);
			background:#ffffff;
			padding:20px 0;
	 }  

	 

}

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

.header-grp {
	 /*   background:#ffffff; */
	 background:transparent;
	 position:absolute;
	 z-index:10;
	 line-height:0;
	 top:0;
	 left:0;
	 right:0;
	 transition: all ease-in-out .4s;
	 padding:20px 0;
}



/*====================================================
Header No navigation Styling
====================================================*/   

header.header--no-navigation .header-grp{
	 padding: 0;
}


/*====================================================
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: #f45d48;
	 border: 1px solid #f45d48;
	 top:0px;
	 border-radius:0;
	 border-top-right-radius: 6px !important;
	 border-bottom-right-radius: 6px !important;
}

body .row-fluid input.hs-search-field__input {
	 padding: 20px;
	 height: 100px;
	 font-size: 32px;
	 border-radius: 6px !important;
}

#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: #14142b;
	 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;
}


@media(max-width: 1000px) and (min-width: 768px) {
	 #myOverlay .closebtn {
			right: -19px;
	 }
}

@media(max-width: 767px){
	 p.hs-search-results__description {
			margin-top: 15px;
	 }
	 .system-search-page h1 {
			margin-bottom: 20px;
	 }
	 .system-search-page {
			padding: 60px 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:;
}
.custom-menu-primary .hs-menu-wrapper > ul > li{
	 background:;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a{
	 color:#ffffff;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a:hover{
	 color:;
}

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

/* 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:768px) {
	 .custom-menu-primary .hs-menu-wrapper { 
			display:block !important;
	 }
}




/*===========================================================================
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: 767px){


	 /* 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:13px;          /* Position Button at right of screen  */
			right: 8px;        /*******************************************/
			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: #246bfd; 
			transition: all .3s ease-in-out;
	 }
	 .mobile-trigger:hover{
			text-decoration: none; /* Removes link text underline on button */
			color:#246bfd;
			background-color: transparent; 
			border-color: transparent;
	 }

	 /* Change button when menu is open */
	 .mobile-open .mobile-trigger{
			color:#246bfd;
			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: 25px;
			height: 3px;
			-webkit-border-radius: 1px;
			-moz-border-radius: 1px;
			border-radius: 1px;
			background-color: #246bfd; /* Icon color */
			display: inline-block;
			transition: all .3s ease-in-out;

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

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

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


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

	 .child-trigger{
			display: block !important;
			cursor: pointer;
			position: absolute;
			top: 0px;
			right: 0px;
			width: 55px !important;
			min-width: 55px !important;
			height: 45px !important;
			padding: 0 !important;
			border-left: 1px dotted rgba(255, 255, 255, .20);
	 }

	 .child-trigger:hover{
			text-decoration: none;
	 }
	 .child-trigger i{
			position: relative;
			top: 50%; /* Centers icon inside button */
			margin: 0 auto !important;
			-webkit-transform: rotate(0deg);
			-ms-transform: rotate(0deg);
			transform: rotate(0deg);
	 }
	 .child-trigger i:after{
			position: absolute;
			content: '';
	 }

	 .child-trigger i, .child-trigger i:after{
			width: 10px; /* Icon line width */
			height: 1px; /* Icon line height */
			background-color:#000000; /* Icon color */
			display: block;
	 }

	 .child-trigger i:after{
			-webkit-transform: rotate(-90deg);
			-ms-transform: rotate(-90deg);
			transform: rotate(-90deg);
	 }
	 .child-trigger.child-open i:after{
			-webkit-transform: rotate(-180deg);
			-ms-transform: rotate(-180deg);
			transform: rotate(-180deg);
	 }
	 .child-trigger.child-open i{
	 }


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

	 .custom-menu-primary.js-enabled{
			/*     position: inherit;
			top:-30px; */
			/*     padding-top: 44px; /* Makes room for button */
			/*     margin: 10px 0 10px 0; */ 
			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 #e7e7e7; /* 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;
	 }

	 .header-container-wrapper ul li.hs-menu-depth-1 .child-trigger {
			position: absolute;
			left: 0;
			right: 0;
			width: 100%!important;
			height: 45px !important;
	 }

	 .child-trigger i{
			position: absolute;
			top: 22px;
			right: 24px;
	 }  
	 .span1.header__language-switcher.header--element {
			position: absolute;
			right: 100px;
			top: 18px;
			bottom: 0;
	 }

}
.lang_list_class {
	 min-width: 150px;
}
.header__language-switcher--label-current {
	 display: none;
}
.hide {
	 display:none;
}

@media(min-width:1200px){
	 .lang_switcher_class {
			margin-top: -13px;
	 }
	 body .header__search .image-popup-search {
			margin: -13px 0 0 auto;
	 }
}
/* 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: right;
	 max-width: 20px;
	 max-height:20px;
}

.header__search {
	 position:relative;
}

.header-section .row-fluid .span1.header__language-switcher.header--element,
.header-section .row-fluid .span1.header__search.header--element{
	 width:2.4%;
}

body .row-fluid input.hs-search-field__input::placeholder {
	 font-size: 32px;
}
.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 62px 20px 20px;
	 border: 0;
}

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

.lang_switcher_class .globe_class {
	 background-image: url('../../images/Updated Icons/website-4945-1.svg');
}

.lang_switcher_class .lang_list_class li a:hover {
	 color: #ff4f0f;
}


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

	 .header__language-switcher--label {
			float: none;
	 }
	 .header__search .image-popup-search {
			margin: 0 auto;
	 }
	 #myOverlay .text-container {
			max-width: 80%
	 }
	 body .row-fluid input.hs-search-field__input {
			padding: 20px 130px 20px 20px;
	 }
}

@media(max-width:767px) {

	 body .header-grp .span1.header__search.header--element.vertical-center {
			display: block;
			position: absolute;
			right: 60px;
			top:18px;
	 }
	 .header-section .row-fluid .span1.header__language-switcher.header--element, .header-section .row-fluid .span1.header__search.header--element {
			width:30px;
	 }

	 .header-section .logo-image img{
			max-width:140px;
	 }
	 body .hs-landing-page header .header-grp .cta-choices {
			padding: 15px;

	 } 

}
/*****************************************/
/* 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: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

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

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top:55px; 
  width: 100%;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children > .hs-menu-children-wrapper {
 min-width: 180px;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 1440px) and (min-width:1025px) {

  body .row-fluid .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover>.hs-menu-children-wrapper,
  body .row-fluid .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{
/*     min-width: 86px;
    width: unset; */
  }

body .row-fluid .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover>.hs-menu-children-wrapper{
  min-width:170px!important;
  }

  body .row-fluid .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:170px!important;
  }

  body .row-fluid .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,
  body .row-fluid .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,
  body .row-fluid .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;
  }
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

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

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

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

.custom-menu-primary .hs-menu-wrapper > ul > li:hover {
/*   color: ; */
  border-radius: 3px;
}
.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul>li:hover> a{
background:  rgba(255, 255, 255, 1.0);
}
  
@media(max-width: 900px)and(min-width: 768px) {
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
    padding: 32px 16px;
  }
}

@media(min-width: 768px) {

  .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;
    margin: 0 8px;
  }

  .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: '';
    margin-top:5px;
    right: 0;
    z-index: 1;
    transition: all 0.3s ease-in-out;
  }

  .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>a:after{
    background: url('/Updated Growthkit Pack/Images/angle-down.svg');
    background-size: contain;
    background-position: center center;
    background-repeat:no-repeat;
    width:10px;
    height: 8px;
  }

  body .row-fluid .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>ul>li.hs-item-has-children>a:after {
     background: url('/Updated Growthkit Pack/Images/angle-down.svg');
    background-size: contain;
    background-position: center center;
    transform: rotate(-90deg);
    width:10px;
    height: 10px;
		 background-repeat:no-repeat;
  }

  .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>ul>li.hs-item-has-children>a:after{
    background: none;
  }
  .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: 14px!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 {
    transform: rotate(180deg);
    transition: all 0.3s 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: 1px;
  }
  .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;
  }
  .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.hs-menu-depth-1:hover>a {
    border-bottom: 0;
    border-top: 0;
  }

  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul>li a:hover {
    border-radius: 0;
  }

  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children {
    position: relative;
  }
  .header-grp .hs-menu-wrapper {
    line-height: 0;
    text-align: center;
    float: right;
    position: relative;
    right: -15px;
  }

  .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:hover a{
  color:#101a29;
} 

.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;
  box-shadow: 0 18px 54px 0 rgb(20 20 43 / 14%);
  border-radius: 0;
}

.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;
  color:#000000e3;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  margin: 0px;
  line-height: 1;
  letter-spacing: 0px;
  padding:10px 20px;
  border-bottom: 1px solid #e7e7e7;
  text-align: left;
/*   min-width: 140px; */
  text-indent: 0;
  text-transform: capitalize;
}



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

}

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

@media(min-width: 768px) {
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li:hover a{
    color:#000000;
    background:#f5f7fa;
  }

  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: 153px;
    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:14px;
    color:#000000e3;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    text-decoration: none;
    font-weight: 400;
    margin: 0px;
    line-height: 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:#000000;
    background: #f5f7fa;
  }

 .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,
.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:#000000;
    background: #ffffff;
  }

  .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: 160px !important;
  }

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

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

@media(min-width:768px)and(max-width:1180px){
  body .header-grp a.cta_button {
    width: 100%;
    display: block;
    padding: 19px 5px;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-item.hs-menu-depth-1{
    margin:0px !important;
  }
}
@media(max-width: 1200px) and (min-width: 1025px) {
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
    padding: 15px;
  }
  .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 {
    right: 0px !important;
    top: 15px;
  }
}
@media(max-width: 1024px) and (min-width: 768px) {
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    min-width: unset !important;
    padding: 10px 20px 10px 10px;
    font-size: 11px;
  }

  body .row-fluid .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover>.hs-menu-children-wrapper{
    width:unset;
    min-width: 170px;
    left:0px;
  }
  body .row-fluid .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,
  body .row-fluid .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:11px;
  }

  .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: 134px !important;
  }

  .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>a:after{
    right: 1px !important;
    width: 8px;
    height: 8px;
    margin-top:1px;
  }

  body .row-fluid .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>ul>li.hs-item-has-children>a:after {
    right: 4px !important;
    width: 8px;
    height: 8px;
    top: 35px;
  }

  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
    padding: 14px 14px;
    font-size: 11px;
  }
	 
	 .header-grp .header-cta span.left-cta .single-cta a.cta_button {
    min-width: 70px;
    padding: 10px;
   }
	 
	  .header-grp .cta-choices>span{
			margin-bottom:0;
	 }
  body .row-fluid .header-grp{
    padding-top:15px;
  }

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

}

@media(max-width:767px){
  .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: 15px 15px;
    
  }
  .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: 20px 0px;
    background:#ffffff;
		 position:relative;
  }  

  .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: 65px;
    position:absolute;
  }

  .header-container-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a{
    padding: 15px 15px;
    font-weight: 400;
    color:#101a29;
  }

  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li:hover a{
/*      color:#ffffff */
		  color:#101a29;
  }

  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: #246bfd;

  }

  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: #246bfd;
  }

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

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

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

  .span3.logo-image.vertical-center {
    max-width:116px;
    float:left;
  }

}


/* templates
Specific pieces of UI that are stylized. Typically used for Pages styling
*/

/* .hs-blog-listing #main-content,
.hs-blog-post #main-content{
padding-top:85px;
} */
/* .hs-blog-listing .header-grp.header-section,
.hs-blog-post .header-grp.header-section{
background:#fff;

} */
/* Blog post */

.blog-post {
	 margin: 0 auto;
	 max-width: 960px;
}

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

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

.blog-post__timestamp {
	 display: block;
}

.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: #F8FAFC;
}

.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 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 {
	 margin: 0 auto;
	 max-width: 680px;
}

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

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



/* Blog Navigation */

.blog-navigation {
	 background-color: #fff;
	 box-shadow: -12px 12px 22px -1px rgba(0, 0, 0, 0.1);
	 display: flex;
	 flex-direction: row;
	 justify-content: space-between;
}

@media (max-width: 767px) {
	 .blog-navigation {
			display: block;
			padding: 0;
			text-align: center;
	 }
}

.blog-navigation__tag-filter form {
	 background-color: #f2f4f6;
	 border: none;
	 color: #051f46;
	 padding: 30px;
}

#blog-filter__category {
	 background-color: #f2f4f6;
	 border: none;
	 color: #051f46;
	 width: auto;
}

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

.blog-navigation__search .hs-search-field,
.blog-navigation__search .hs-search-field__bar {
	 height: 100%;
}

.blog-navigation__search form {
	 align-items: center;
	 background-color: transparent;
	 border: none;
	 display: flex;
	 flex-direction: row;
	 height: 100%;
	 margin-left: auto;
	 max-width: 100%;
	 padding: 0;
	 position: relative;
}

@media (max-width: 767px) {
	 .blog-navigation__search form {
			margin: 0 auto;
			padding: 0;
	 }
}

.blog-navigation__search--no-label form:before {
	 background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='25px' height='22px' viewBox='0 0 25 22' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Blog' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Construction---Blog---2-col' transform='translate(-1085.000000, -388.000000)'%3E%3Cg id='hero' transform='translate(0.000000, 105.000000)'%3E%3Cg id='Group-5' transform='translate(1086.000000, 284.000000)'%3E%3Ccircle id='Oval' stroke='%231F2E43' cx='5.33333333' cy='5.33333333' r='5.33333333'%3E%3C/circle%3E%3Cline x1='9.47691329' y1='8.66666667' x2='16' y2='13.2736132' id='Path-3' stroke='%23051F46'%3E%3C/line%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	 background-repeat: no-repeat;
	 content: '';
	 height: 25px;
	 left: 0;
	 pointer-events: none;
	 position: absolute;
	 top: 55%;
	 transform: translateY(-50%);
	 width: 25px;
}

@media (max-width: 767px) {
	 .blog-navigation__search--no-label form:before {
			left: 10px;
	 }
}

.blog-navigation__search form label {
	 display: block;
	 flex-shrink: 0;
}

.blog-navigation__search form input.hs-search-field__input {
	 border: none;
	 color: #051f46;
	 padding: 0.75rem 2.25rem;
}

.blog-navigation__search .hs-search-field--open .hs-search-field__suggestions {
	 background-color: #fff;
	 border-color: #d0d0d0;
	 padding: 10px;
	 position: absolute;
	 width: 100%;
	 z-index: 1;
}

/* prettier-ignore */
.blog-navigation__search .hs-search-field--open .hs-search-field__suggestions li {
	 padding: 5px 0;
}

.blog-navigation__search form button {
	 border-bottom-left-radius: 0;
	 border-top-left-radius: 0;
	 border-top-right-radius: 0;
	 height: 100%;
}

/* Blog Post Header */

.blog-header {
	 background-color: #f2f4f6;
	 margin-bottom: 10px;
	 padding: 10px 0;
}

/* Blog Post Listing */

.blog-index__post {
	 border-bottom: 4px solid #ff5e14;
	 box-shadow: -12px 12px 22px -1px rgba(0, 0, 0, 0.1);
	 display: flex;
	 margin: 75px 0;
}

.blog-index__post-image-wrapper {
	 flex-shrink: 0;
	 position: relative;
	 width: 50%;
}

.blog-index__post-image {
	 height: 100%;
	 -o-object-fit: cover;
	 object-fit: cover;
	 -o-object-position: top left;
	 object-position: top left;
	 position: absolute;
	 width: 100%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	 .blog-index__post-image-wrapper,
	 .blog-index__post-image {
			display: block;
			height: auto;
			position: static;
	 }
}

@media screen and (max-width: 1000px) {
	 .blog-index__post {
			flex-direction: column;
			height: 100%;
	 }

	 .blog-index__post-image-wrapper {
			border-radius: 0;
			display: block;
			height: 175px;
			width: 100%;
	 }
}

.blog-index__post-content {
	 padding: 30px 50px;
}

h3.blog-index__post-content__title {
	 margin: 0;
}

.blog-index__post-content__title a {
	 color: inherit;
	 text-decoration: none;
}

.blog-author {
	 align-items: center;
	 display: flex;
}

.blog-author__image {
	 height: 60px;
	 margin-right: 20px;
	 overflow: hidden;
	 width: 60px;
}

.blog-author__image img {
	 height: 100%;
	 width: auto;
}

.blog-author__name h5 {
	 margin: 10px 0;
}

.blog-index__tag-header {
	 margin-top: 80px;
}

.blog-tags,
.blog-author,
.blog-index__post__date {
	 margin-bottom: 20px;
}

.blog-tag:after {
	 content: ',';
}

.blog-tag:last-child:after {
	 content: '';
}

.blog-summary {
	 border-top: 2px solid #e7ebef;
	 flex-grow: 1;
	 margin: 20px 0;
	 padding-top: 20px;
}

.blog-summary h1,
.blog-summary h2,
.blog-summary h3,
.blog-summary h4,
.blog-summary h5,
.blog-summary h6,
.blog-summary p {
	 font-size: 16px !important;
	 line-height: 1.5;
	 margin: 0;
}

/* Blog Pagination */

.blog-pagination {
	 margin: 25px 0 50px;
	 text-align: center;
}

.blog-pagination__link {
	 letter-spacing: 1.6px;
	 margin: 0 3px;
	 padding: 10px;
}

a.blog-pagination__link--active {
	 background-color: #051f46;
	 color: #fff;
}

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

/* Two Column Blog Styles  */

.blog-index--2-col {
	 display: flex;
	 flex-wrap: wrap;
	 justify-content: space-between;
	 padding-bottom: 80px;
}

.blog-index--2-col__post {
	 box-shadow: -12px 12px 22px -1px rgba(0, 0, 0, 0.1);
	 margin-top: 80px;
	 width: calc(50% - 50px);
}

@media screen and (max-width: 1000px) {
	 .blog-index--2-col {
			flex-direction: column;
	 }

	 .blog-index--2-col__post {
			width: 100%;
	 }
}

.blog-index--2-col__post-image-wrapper {
	 border-bottom: 4px solid #ff5e14;
	 display: block;
	 height: 230px;
	 margin-bottom: 20px;
	 width: 100%;
}

.blog-index--2-col__post-image {
	 height: 100%;
	 -o-object-fit: cover;
	 object-fit: cover;
	 -o-object-position: top left;
	 object-position: top left;
	 width: 100%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	 .blog-index--2-col__post-image-wrapper,
	 .blog-index--2-col__post-image {
			display: block;
			height: auto;
	 }
}

.blog-index--2-col__post-content {
	 display: flex;
	 flex-direction: column;
	 padding: 10px 40px 50px;
}

.blog-post__tags {
	 padding: 20px 0;
}

.blog-index--2-col__post-content__title {
	 margin: 20px 0 0;
}

.blog-index--2-col__post-content__title a {
	 color: inherit;
	 text-decoration: none;
}

/* Blog Post Styles  */

.blog-post {
	 padding: 0 100px;
	 position: relative;
}

@media screen and (max-width: 1000px) {
	 .blog-post {
			padding: 0 20px;
	 }
}

a.back-to-blog {
	 font-weight: 700;
	 text-decoration: none;
}

a.back-to-blog:hover {
	 font-weight: 700;
}

.back-to-blog div {
	 display: inline;
}

.blog-post__tag {
	 font-weight: 300;
	 text-decoration: none;
}

.blog-post__tag:after {
	 content: ',';
}

.blog-post__tag:last-child:after {
	 content: '';
}

.blog-post__title {
	 margin: 10px 0;
}

.blog-author__name {
	 color: inherit;
	 text-decoration: none;
}

.blog-post__image-wrapper {
	 height: 420px;
	 margin: 35px 0;
	 position: relative;
	 width: 100%;
}

.blog-post__image {
	 height: 100%;
	 -o-object-fit: cover;
	 object-fit: cover;
	 width: 100%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	 .blog-post__image-wrapper,
	 .blog-post__image {
			display: block;
			height: auto;
	 }
}

.blog-post__social-sharing .share-title {
	 display: none;
}

.blog-post__social-sharing .social-links {
	 align-items: center;
	 color: #19cca3;
	 display: flex;
	 flex-direction: row;
}

.blog-post__social-sharing .social-links__icon span {
	 align-items: center;
	 display: flex;
	 justify-content: center;
}

.blog-post__social-sharing .social-links__icon {
	 align-items: center;
	 background-color: #f2f4f6;
	 display: flex;
	 height: 30px;
	 justify-content: center;
	 margin: 20px 10px 10px 0;
	 width: 30px;
}

.blog-post__social-sharing .social-links__icon svg {
	 fill: #ff5e14;
	 height: 15px;
}

@media screen and (min-width: 1300px) {
	 .blog-post__social-sharing .social-links {
			display: inline-flex;
			flex-direction: column;
	 }

	 .blog-post__social-sharing {
			left: -2rem;
			margin-bottom: 0;
			position: absolute;
			text-align: left;
			top: 2rem;
	 }
}

@media screen and (min-width: 1024px) {
	 .blog-post__social-sharing {
			left: 0;
			margin-bottom: 0;
			position: absolute;
			text-align: left;
			top: 2rem;
	 }

	 .blog-post__social-sharing .share-title {
			display: block;
	 }

	 .blog-post__social-sharing .social-links {
			display: inline-flex;
			flex-direction: column;
	 }

	 .blog-post__social-sharing .social-links__icon {
			margin: 10px 0;
	 }
}

.sample-icon {
	 background-color: #19cca3;
	 border-radius: 50%;
	 height: 30px;
	 margin: 5px;
	 width: 30px;
}

.blog-post__body {
	 line-height: 24px;
}

.blog-post__comments-listing {
	 margin: 3rem 0;
}

.blog-post__author {
	 background-color: #f2f4f6;
	 padding: 20px 0;
}

.blog-post__author .container {
	 padding: 0 100px;
}

.blog-post__author .buffer {
	 background-color: #fff;
	 display: flex;
	 padding: 20px 100px;
}

.blog-post__author__image {
	 height: 150px;
	 width: 150px;
}

.blog-post__author__image img {
	 height: 100%;
	 width: auto;
}

.blog-post__author__text {
	 margin-left: 35px;
}

.blog-post__author__text h6 {
	 margin: 10px 0;
}

.blog-post__author__sharing {
	 display: flex;
}

.sample-icon.small {
	 height: 15px;
	 width: 15px;
}

/* Related Posts */

.blog-recent-posts {
	 padding-bottom: 100px;
}

.blog-recent-posts__title {
	 margin: 50px 0;
}

.blog-recent-posts__list {
	 display: flex;
	 justify-content: space-between;
}

@media screen and (max-width: 1000px) {
	 .blog-recent-posts__list {
			flex-direction: column;
	 }
}

@media screen and (max-width: 767px) {
	 .blog-post__author .buffer {
			display: block;
			padding: 20px;
	 }

	 .blog-post__author__text {
			margin-left: 0;
	 }
}
.content-wrapper-blog, .container-blog{
	 max-width: 1200px;
}

.container-blog {
	 margin: 0 auto;
	 overflow: visible;
	 padding: 0 25px;
}





















/* Blog Post */

.hs-blog-post .blog-post-content{
	 padding:80px 0 0;
}
.hs-blog-post .blog-post-content .wrapper{
	 max-width: 1170px;
	 margin-left: auto !important;
	 margin-right: auto !important;
	 float: none;
	 z-index: 2;
	 box-sizing: border-box;
	 padding: 0px 15px;
}
.hs-blog-post .blog-post-content .hs-featured-image-link{
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 position:relative;
	 z-index:1;
	 min-height:500px;
}
.hs-blog-post .blog-post-content .featured-image-conta .hs-featured-image-link:before{
	 background:url('https://7319095.fs1.hubspotusercontent-na1.net/hubfs/7319095/Rectangle%2011.png');
	 background-position:center;
	 background-size:cover;
	 position: absolute;
	 top: 0;
	 right: 0;
	 left: 0;
	 content: '';
	 z-index: -1;
	 width: 100%;
	 height: 100%;
}
.hs-blog-post .blog-post-content .blog-contant .blog-content h1{
	 color:#fff;
}
.hs-blog-post .blog-post-content .info-section {
	 padding: 80px 0;
	 position:relative;
}
.hs-blog-post .blog-post-content .author_avatar img {
	 width: 50px;
	 height: 50px;
	 border-radius: 100px;
}
.hs-blog-post .blog-post-content .category-conta .post-filter,
.hs-blog-post .blog-post-content .category-conta .recent-post-conta .recent-blogs,
.hs-blog-listing .recent-blogs {
	 background-color: #fff;
	 padding: 20px;
	 box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
	 border-radius:12px;
}
.hs-blog-listing .blog-post__tags,
.hs-blog-post .blog-post-content .blog-post__tags {
	 background-color: #246bfd;
	 padding: 5px;
	 color: #fff;
	 display: flex;
	 border-radius: 4px;
	 align-items: center;
	 justify-content: center;
	 cursor:pointer;
}
.hs-blog-post .blog-post-content .info_conta {
	 display: flex;
	 align-items: center;
	 justify-content: space-between;
	 padding-bottom:20px;
}
.hs-blog-post .blog-post-content .blog-post__tags a.blog-tag{
	 line-height:normal;
	 color:#fff;
}
.hs-blog-post .blog-post-content .info_conta .author-info,
.hs-blog-post .blog-post-content .info_conta .info {
	 display: flex;
	 align-items: center;
}
.hs-blog-post .blog-post-content .info_conta .info{
	 justify-content:flex-end;
}
.hs-blog-post .blog-post-content .info_conta .info .date-conta p{
	 margin:0;
}
.hs-blog-post .blog-post-content .info_conta .author-info .author_avatar,
.hs-blog-post .blog-post-content .info_conta .info .date-conta{
	 margin-right:20px;
}
.hs-blog-post .blog-post-content .info-section .category-conta .post-filter ul {
	 margin: 0px;
}
.hs-blog-post .blog-post-content .info-section .category-conta .post-filter ul li {
	 margin-left: 0;
	 list-style-type: none;
}
.hs-blog-post .blog-post-content .info-section .category-conta .post-filter ul li span {
	 display: none;
}
.hs-blog-post .blog-post-content .info-section .category-conta .post-filter ul li a{
	 transition: all .2s linear;
	 line-height:normal;
	 position:relative;
}
.hs-blog-post .blog-post-content .info-section .category-conta .post-filter ul li a:after{
	 content: '';
	 position: absolute;
	 width: 100%;
	 transform: scaleX(0);
	 height: 2px;
	 bottom: 0;
	 left: 0;
	 background-color: #246bfd;
	 transform-origin: bottom right;
	 transition: transform 0.25s ease-out;
}
.hs-blog-post .blog-post-content .info-section .category-conta .post-filter ul li a:hover:after{
	 transform: scaleX(1);
	 transform-origin: bottom left;
}
.hs-blog-post .blog-post-content .info-section .Premium-filter-container{
	 padding:0;
}
.hs-blog-post .blog-post-content .subscribe_form_conta{
	 padding:100px 0;
	 background:url('https://3842749.fs1.hubspotusercontent-na1.net/hubfs/3842749/Email.jpg');
	 background-position:center;
	 background-size:cover;
	 position:relative;
	 z-index:1;
}
.hs-blog-post .blog-post-content .subscribe_form_conta:before{
	 background:url('https://7319095.fs1.hubspotusercontent-na1.net/hubfs/7319095/Rectangle%2011.png');
	 background-position:center;
	 background-size:cover;
	 position: absolute;
	 top: 0;
	 right: 0;
	 left: 0;
	 content: '';
	 z-index: -1;
	 width: 100%;
	 height: 100%;
}
.hs-blog-post .blog-post-content .subscribe_form {
	 width: 100%;
	 max-width: 50%;
	 margin-left: auto;
}
.hs-blog-post .blog-post-content .related-blog-post-cm{
	 padding-bottom:80px;
}
.hs-blog-post .blog-post-content .inputs-list label{
	 color: #FF0000;
	 font-weight: 400;
	 margin:0;
}
.hs_error_rollup{
	 display:none;
}
.hs-blog-post .blog-post-content .info-section .info-conta .content-conta{
	 position:relative;
}



@media(max-width:767px){
	 .hs-blog-post .blog-post-content .hs-featured-image-link{
			min-height:300px;
	 }
	 .hs-blog-post .blog-post-content .info-section{
			padding:40px 0;
	 }
	 .hs-blog-post .blog-post-content .subscribe_form{
			max-width:none;
			width:100%;
	 }
	 .hs-blog-post .blog-post-content .related-blog-post-cm{
			padding-bottom:40px;
	 }
	 .hs-blog-post .blog-post-content{
			padding:0;
	 }
	 .hs-blog-post .blog-post-content .info_conta .author-info .author_name .author-link,
	 .hs-blog-post .blog-post-content .info_conta .info .blog-post__tags .blog-tag{
			font-size:14px;
	 }
}

@media(min-width:768px) and (max-width:1024px){
	 .hs-blog-post .blog-post-content .hs-featured-image-link{
			min-height:400px;
	 }
	 .hs-blog-post .blog-post-content .info-section{
			padding:60px 0;
	 }
}

@media(max-width:480px){
	 .hs-blog-post .blog-post-content .info_conta{
			display:block;
	 }
	 .hs-blog-post .blog-post-content .info_conta .author-info,
	 .hs-blog-post .blog-post-content .info_conta .info{
			justify-content:space-between;
	 }
}
/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
  .hero-overly {
    position: absolute;
    z-index: -1;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0, 0, 0);
/*     opacity: .7; */
  }
[class*="-force-full-width-section"] > .row-fluid{
  padding:0px!important;
}


/* System pages */



.systems-page {
  margin: 0 auto;
  max-width: 700px;
  padding: 3rem 1.4rem;
}

.systems-page--search-results {
  max-width: 100%;
}

.systems-page .header {
  background-color: transparent;
  border-bottom: none;
  padding: 0;
}

.systems-page .success {
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  color: #4F7D24;
  display: inline-block;
  margin: 1.4rem 0;
  padding: 0.1rem 0.7rem;
  width: 100%;
}

.systems-page form input {
  max-width: 100%;
}

.systems-page form input[type='submit'] {
  margin: 0.7rem 0;
  display: block;
}

/* Search pages */

.hs-search-results__title {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  text-decoration: underline;
}

.hs-search-results__title:hover {
  text-decoration: none;
}

.hs-search-results__description {
  padding-top: 0.7rem;
}

/* Password prompt */

.password-prompt input[type=password] {
  height: auto !important;
  margin-bottom: 1.4rem;
}

.systems-page #hs-login-widget-remember,
.systems-page #hs-login-widget-remember ~ label {
  display: inline-block;
  margin-bottom: 0.175rem;
}

.systems-page #hs_login_reset {
  display: block;
  margin-bottom: 0.7rem;
}

/* Backup unsubscribe */

.backup-unsubscribe #email-prefs-form div {
  padding-bottom: 0 !important;
}

.backup-unsubscribe input[type=email] {
  font-size: 0.875rem !important;
  margin-bottom: 1.4rem;
  padding: 0.7rem !important;
}

/* Subscription preferences */

#email-prefs-form .item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#email-prefs-form .item.disabled input:disabled {
  cursor: not-allowed;
}

/* Membership pages */

#hs-membership-form a[class*='show-password'] {
  font-size: 0.75rem;
}

/* Input error messages */

.form-input-validation-message ul.hs-error-msgs {
  padding-left: 0;
  margin: 0;
}

.form-input-validation-message ul.hs-error-msgs li {
  margin: 0;
}


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

/*****************************************/
/* 404 Error Page   */
/*****************************************/

#dnderror-page{

}
.error-page-404{
  background:#f5f7fa;
  padding:149px 0px 158px;
} 

.error-page-section1 {
  max-width: 750px;
  margin: 0 auto;
  float: none;
  padding: 70px 96px 70px 100px;
  border: 2px solid #000;
  background: #fff;
  box-sizing: border-box;
}

.error-page-section1 h1 {
  font-size: 38px;
  line-height: 1.2;
}
.error-page-section1 p {
  font-size: 15px;

}

.error-page-section1 a {
  font-size: 15px;
}

@media (max-width: 1024px) and (min-width:768px){
  .error-page-404 {
    padding: 80px 0px;
  }
}
@media (max-width: 767px){
  .error-page-section1 {
    padding: 20px 20px;
  }
  .error-page-404 {
    padding: 60px 0px;
  }
  #dnderror-page .contact-cm .cm-container {
    text-align: center;
  }
  .error-page-404 h1 {
    font-size: 26px;

  }
}


/*****************************************/
/* 500 Error Page   */
/*****************************************/
.error-page-500{
  background:#f5f7fa;
  padding:149px 0px 158px;
}

.error-page-500-section1 {
  max-width: 750px;
  margin: 0 auto;
  float: none;
  padding: 70px 100px;
  border: 2px solid #000;
  background: #fff;
  box-sizing: border-box;
}
.error-page-500-section1 h1 {
  font-size: 38px;
  line-height: 1.2;
}

.error-page-500-section1 h4 {
  margin-bottom: 13px;
}
.error-page-500-section1 a {
  font-size: 15px;
}

@media (max-width: 1024px) and (min-width:768px){
  .error-page-500 {
    padding: 80px 0px;
  }
}
@media (max-width: 767px){
  .error-page-500-section1 {
    padding: 20px 20px;
  }
  .error-page-500 {
    padding: 60px 0px;
  }
  .error-page-500 h1 {
    font-size: 26px;

  }

}

/*****************************************/
/* Email Preferences  */
/*****************************************/

#email-preferences form {
  max-width: unset;
}

#email-preferences {
  padding: 52px 0px 100px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #email-preferences .email-prefs .systems-page{
    padding: 52px 0px 100px;
  }
}
#email-preferences form {
  border: none;
  padding:0px;
}


.email-prefs .item .item-inner {
  -moz-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -moz-transition-property: background;
  -webkit-transition-property: background;
  -o-transition-property: background;
  transition-property: background;
  -moz-transition-duration: 0.15s;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -moz-transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  border: 1px solid #E4E4E4;
  overflow: hidden;
  margin-top: 0;
  padding: 15px;
  background: #f5f7fa;
}
#email-preferences .email-prefs .item .item-inner {
  border-radius: 0;
  border: 0;
  width: 100%;

}

.email-prefs .item {
  -moz-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  padding-bottom: 1px;
  position: relative;
  margin: 20px 0px;
}
#email-preferences .email-prefs .item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-basis: 30.9%;
  -webkit-flex-basis: 30.9%;
  float: left;
  margin-right: 2.43%;
  margin-top: 25px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

@media(max-width:1024px) and (min-width:768px){
  #email-preferences .email-prefs .item {

    flex-basis: 46.9%;
    -webkit-flex-basis: 46.9%;

  }
}
@media(max-width:767px){
  #email-preferences .email-prefs .item {

    flex-basis: 100%;
    -webkit-flex-basis: 100%;

  }
}
#email-preferences .subscribe-options {
  margin-bottom: 0;
  overflow: hidden;
  display: block;
  width: 100%;
  margin-top: 40px;
}
#email-preferences .form-style input[type="checkbox"] {
  border: solid 2px #000000;
  padding: 7px;
  border-radius: 3px;
  margin-bottom: 4px;
  height: auto;
  float: left;
  margin-top: -2px;
  position: relative;
  cursor: pointer;
}

#email-preferences input[type="checkbox"]:checked .email-prefs .item-inner{
  background: #f0f7fc;
  border: 1px solid #e0e7ec;
}


#email-preferences .email-prefs .item-inner:hover {
  -moz-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 1px 1px 4px rgb(0 0 0 / 10%);
  -o-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 4px rgb(0 0 0 / 10%);
}

html body #email-preferences .page-header {
  margin: 0px;
  padding-bottom: 1em;
}


.widget-type-email_subscriptions p, .widget-type-email_subscriptions h1, .widget-type-email_subscriptions h2, .widget-type-email_subscriptions_confirmation p, .widget-type-email_subscriptions_confirmation h1, .widget-type-email_subscriptions_confirmation h2, .widget-type-email_simple_subscription p, .widget-type-email_simple_subscription h1, .widget-type-email_simple_subscription h2 {
  font-weight: normal;
  font-size: 20px;
  line-height: 25px;
  margin: 1px 0px 4px;
}

#email-preferences .widget-type-email_subscriptions h1, #email-preferences #content {
  font-weight: 700;
  line-height: normal;
}
#email-preferences #content {
  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%;
}

#email-preferences .header { 
  margin-left: 0;
  display: block;
  width: 100%;
}

#email-preferences .email-prefs .item p {
  clear: both;
  margin: 5px 20px 0px;
}

#email-preferences .email-prefs .item .item-inner span {
  font-size: 16px;
  color: #444;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0px;
  display: inline-flex;
}
#email-preferences .email-prefs .item .item-inner p {
  font-size: 14px;
  color: #444;
  font-weight: normal;
  line-height: 25px;
  letter-spacing: 0;
}

#email-preferences .hs-button {
  max-width: 315px;
  margin-left: 0px;
}
#email-preferences .subscribe-options label span {
  font-weight: normal;
  margin-left: 3px;
  font-size: 14px;
  font-weight: bold;
}
#email-preferences .subscribe-options label {
  margin-left: 0;
}
#email-preferences .subscribe-options input[type="checkbox"] {
  border: solid 2px #000000;
  top: 1px;
  position: relative;
  cursor: pointer;
  background: white;
  margin-left: 0px;
  margin-right: 3px;
}
.subscribe-options p:last-child{
  margin:0px;
}
.subscribe-options label span {
  vertical-align: top;
}
#email-preferences .checkbox-row {
  margin-top: 0;
  overflow: hidden;
}
#email-preferences .checkbox-row input {
  vertical-align: middle;
  margin: 0;
  padding: 0;
  float: left;
  top: 3px;
  position: relative;
  cursor: pointer;
}
#email-preferences .checkbox-row span.fakelabel span {
  float: left;
  font-weight: bold;
  margin-left: 7px;
  vertical-align: top;
}
#email-preferences .checkbox-row span.fakelabel {
  -moz-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  text-transform: normal;
  vertical-align: middle;
}

/*****************************************/
/* Subscriptions Conformation Page   */
/*****************************************/
.subscriptions-conformation{
  background:#f5f7fa;
  padding:149px 0px 158px;
}

.subscriptions-conf {
  max-width: 750px;
  margin: 0 auto;
  float: none;
  padding: 70px 85px 70px 92px;
  border: 2px solid #000000;
  background: #fff;
  box-sizing: border-box;
}
.subscriptions-conf h1 {
  font-size: 38px;
  line-height: 1.2;
  max-width: 500px;
}
.subscriptions-conf h2 {
  margin-bottom:10px;
}
#subscriptions_conf #content {
  font-weight: 700;
  margin-top: 20px;
  font-size:16px;
}


@media (max-width: 1024px) and (min-width:768px){
  .subscriptions-conformation {
    padding: 80px 0px;
  }
}
@media (max-width: 767px){
  .subscriptions-conf {
    padding: 20px 20px;
  }
  .subscriptions-conformation {
    padding: 60px 0px;
  }
  #subscriptions_conf .contact-cm .cm-container {
    text-align: center;
  }
  .subscriptions-conf h1 {
    font-size: 26px;

  }
}



/*****************************************/
/* Backup Unsubscribe Page   */
/*****************************************/
.backup-unsubscribe{
  background:#f5f7fa;
  padding:149px 0px 158px;
}
#backup_unsubscribe .hs-button {
  max-width: 187px;
  margin-left: 0px;
  margin-top: 10px;
}


#backup_unsubscribe form {    
  background-color: #fff;
  border: 2px solid #000;
  max-width: 750px;
  margin: 0px auto;
  float: none;
  padding: 70px 100px;
  box-sizing:border-box;
}
#backup_unsubscribe form h3{
  margin-bottom: 15px;
}
#backup_unsubscribe input.email-edit.hs-input::placeholder{
  color:#9B9A98;
  font-weight:400;
  font-size: 15px;
  letter-spacing: 1px;
}
#backup_unsubscribe input.email-edit.hs-input {
  height:46px;
}
@media (max-width: 1024px) and (min-width:768px){
  .backup-unsubscribe {
    padding: 80px 0px;
  }
}
@media (max-width: 767px){
  #backup_unsubscribe form {
    padding: 20px 20px;
  }
  .backup-unsubscribe {
    padding: 60px 0px;
  }
  #backup_unsubscribe .contact-cm .cm-container {
    text-align: center;
  }
  #backup_unsubscribe input.email-edit.hs-input {
    width: 100%!important;
  }
  #backup_unsubscribe .hs-button {    
    max-width: 100%;
  }
  .widget-type-email_subscriptions h2 {
    font-size: 15px !important;
  }
  #email-preferences .widget-type-email_subscriptions h1 {
    font-size: 20px !important;
  }
}
.widget-type-email_subscriptions h2, .widget-type-email_subscriptions_confirmation h2, .widget-type-email_simple_subscription h2 {
  font-size: 14px;
}
.widget-type-email_subscriptions p, .widget-type-email_subscriptions_confirmation p, .widget-type-email_simple_subscription p {
  font-size: 14px;
}

td.columnContent.widget-span.widget-type-linked_image img {
  height: 100%!important;
}

/*****************************************/
/*        Password Prompt Page          */
/*****************************************/

.systems-page-psw {
  padding: 100px 0px;
}

.systems-page-psw form{
  margin-top: 60px;
}

.systems-page-psw input#hs-pwd-widget-password{ 
  height:45px !important;
  margin-top: 30px !important;
}

@media(max-width: 767px) {
  .systems-page-psw {
  padding: 60px 0px;
}
}

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