/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

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

main {
  display: block;
}

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

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

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

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

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

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

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

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

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

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

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

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

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

progress {
  vertical-align: baseline;
}

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

textarea {
  overflow: auto;
}

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

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

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

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

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

template {
  display: none;
}

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

[hidden] {
  display: none;
}

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

/* Responsive grid */

.row-fluid {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Clearfix */

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

.clearfix:after {
  clear: both;
}

/* Visibilty classes */

.hide {
  display: none;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

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

/* Responsive visibilty classes */

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

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

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

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

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

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

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

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

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

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

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

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

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

.dnd-section {
  padding:0px;
}

.dnd-section {
  position: relative;
  z-index: 1;
}


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





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

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

@media (max-width: 767px) {

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

}

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

@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

@font-face {
  font-family: 'Kenyan Coffee Rg';
  src: url('https://44153499.fs1.hubspotusercontent-na1.net/hubfs/44153499/Results%20Matter/Kenyan%20Coffee/KenyanCoffeeRg-Regular.woff2') format('woff2'),
    url('https://44153499.fs1.hubspotusercontent-na1.net/hubfs/44153499/Results%20Matter/Kenyan%20Coffee/KenyanCoffeeRg-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kenyan Coffee bd';
  src: url('https://44153499.fs1.hubspotusercontent-na1.net/hubfs/44153499/Results%20Matter/Kenyan%20Coffee/KenyanCoffeeRg-Bold.woff2') format('woff2'),
    url('https://44153499.fs1.hubspotusercontent-na1.net/hubfs/44153499/Results%20Matter/Kenyan%20Coffee/KenyanCoffeeRg-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-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    */
/*****************************************/





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

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

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

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

.body-container-wrapper li {
  margin-bottom: 0;
  list-style-type: none;
}


p {
  font-size: 18px;
  font-family: 'Titillium Web', sans-serif;
  color: #000000; 
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0px;
}


img{
  height:auto;
}

/* Image alt text */

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

/* Anchor Links */

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

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

h1 {
  font-size: 107px;
  font-family: Kenyan Coffee RG;
  color: #000000; 
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height: 0.845;
  letter-spacing: 0px;
  text-transform: uppercase;
}

h1.large {
  font-size: 146.303px;
  font-family: Kenyan Coffee RG;
  color: ; 
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height: 0.845;
  letter-spacing: 0px;
  text-transform: uppercase;
}
h2 {
  font-size: 100px;
  font-family: Kenyan Coffee Rg;
  color: #000000;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height: 0.845;
  letter-spacing: 0px;
  text-transform: uppercase;
}

h3 {
  font-size: 60px;
  font-family: Kenyan Coffee Rg;
  color: #000000;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height: 0.929;
  letter-spacing: 0px;
  text-transform: uppercase;
}

h4 {
  font-size: 32px;
  font-family: Kenyan Coffee Rg;
  color: #000000;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.03125;
  letter-spacing: 0px;
  text-transform: uppercase;
}

h5 {
  font-size: 24px;
  font-family: Kenyan Coffee Rg;
  color: #000000;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.542;
  letter-spacing: 0px;
  text-transform: uppercase;
}

h6 {
  font-size: 18px;
  font-family: Kenyan Coffee Rg;
  color: #000000;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0px;
  text-transform: uppercase;
}

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

strong {
  font-weight: 800;
}

code {
  vertical-align: bottom;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

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

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

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

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

.body-container-wrapper li{
  font-size: 18px;
  font-family: 'Titillium Web', sans-serif;
  color: #000000;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height:1.6;
  letter-spacing: 0px;
  position: relative;
}

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

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

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


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

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

blockquote{
  margin:0;
  font-size: 24px;
  font-family: 'Titillium Web', sans-serif;
  color: #000000;
  font-style: normal;
  font-style:italic;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom:1rem;
  letter-spacing: 0px;
}

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

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

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

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

.float-left{
  float:left;
}

.float-right{
  float:right;
}

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

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

.gray-bg{
  background:0;
}

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


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

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

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

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

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

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

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




@media (min-width: 768px) {

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

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

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

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

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


}

@media (max-width:767px){
  .row-fluid [class*="span"].wrapper{
    padding-left:20px;
    padding-right:20px;
  }

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

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

  body a.cta_button, body a.cta-button, body .row-fluid .hs-button{
    display:block;
  }

}

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

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

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

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

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

}



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

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

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

@media (max-width:767px){

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

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


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

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


@media(min-width:1024px) and (max-width:1340px){
  body h1,
  body h1.large {
    font-size:80px;
  }
  body h2 {
    font-size: 64px;
  }
  body h3 {
    font-size: 52px;
  }
}


@media(min-width:768px) and (max-width:1024px){
  body h1,
  body h1.large {
    font-size:70px;
  }

  body h2 {
    font-size: 52px;
  }

  body h3 {
    font-size: 42px;
  }
}


@media(max-width:767px){
  body h1,
  body h1.large {
    font-size:52px;
  }

  body h2 {
    font-size:48px;
  }

  body h3 {
    font-size:40px;
  }

}


@media(min-width:768px) and (max-width:1340px){
  body .row-fluid button, 
  body .row-fluid .button, 
  body .row-fluid a.cta-button,
  body .row-fluid a.cta_button,
  body .row-fluid a.hs-button{
    font-size:20px;
    padding:10px 14px;
  }
}

@media(min-width:768px){
  .row-reverse.row-fluid {
    flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
  }
 .row-fluid.row-reverse .left-col {
    margin-left: 3%;
  }
 .row-fluid.row-reverse .right-col {
    margin: 0;
  }
  .row-fluid.row-reverse .right-col.right_container > .content_container{
    margin:0 !important;
  }
}
/*****************************************/
/* Start your style declarations here    */
/*****************************************/

button:disabled,
.button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}

body button,
body .button,
body a.cta-button,
body a.cta_button,
body a.hs-button{    
  font-size: 26px;
  font-family: 'Titillium Web', sans-serif;
  color: #F6E911;
  font-style: normal;
  text-decoration: none;
  font-weight: 700;
  border-radius:  0px;
  background:rgba(0, 0, 0 , 0.0);
  line-height: 1.6; 
  padding: 11.4px
    18px;
  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
    #F6E911;
  text-transform: uppercase;
}

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

body button:hover,
body .button:hover,
body .row-fluid .hs-button:hover,
.row-fluid a.cta_button:hover,
body .row-fluid a.hs-button:hover{ 
  background: rgba(246, 233, 17, 
    100);
  border-color:#000000;
  color:#000000;
} 

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

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


.black-cta a.cta-button,
.black-cta a.cta_button,
.black-cta a{
  font-size: 26px;
  font-family: 'Titillium Web', sans-serif;
  color: #000000;
  font-style: normal;
  text-decoration: none;
  font-weight: 700;
  border-radius:  0px;
  background: rgba(255, 255, 255,
    0);
  position:relative;
  border: 1px
    solid #000000;
  padding: 11.4px 20px;
  line-height:1.6; 
  letter-spacing:0px;
  text-transform: uppercase;
}

.black-cta a.cta_button:hover,
.black-cta a:hover{ 
  background: rgba(0, 0, 0, 100);
  border-color:#000000;
  color:#F6E911;
} 

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

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

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

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

.transparent_cta a.cta_button,
.transparent_cta a{
  background: rgba(0, 0, 0,
    100);
}


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


@media(max-width:767px){
  body button, 
  body .button, 
  body a.cta-button, 
  body a.cta_button,
  body a.hs-button{
    font-size:18px !important;
    line-height:1 !important;
    padding:8px !important;
    min-width:140px;
  }
}
/*****************************************/
/* Start your style declarations here    */
/*****************************************/








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

/* Help text */

form legend {
  font-size: 16px;
}

/* Inputs */

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 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: 36px;
  font-family: 'Titillium Web', sans-serif;
  color: #A9A9AA;
  text-transform: none;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
}

body .row-fluid .hs-input::-moz-placeholder {
  font-size: 36px;
  font-family: 'Titillium Web', sans-serif;
  color: #A9A9AA;
  text-transform: none;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
}

body .row-fluid .hs-input::-ms-input-placeholder {  
  font-size: 36px;
  font-family: 'Titillium Web', sans-serif;
  color: #A9A9AA;
  text-transform: none;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
}

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

.email-prefs .item .item-inner p {
  font-size: 18px;
  color: #000000;
  font-weight: 400;
  line-height: 1.6;
  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: 40px 40px 40px;
  background: rgba(0, 0, 0, 1.0);
  border: 0px solid rgba(0, 0, 0, 1.0);
  border-radius: 0px;
  max-width: 900px;
  margin: 0 auto;
 box-shadow: 0px 0px 20px #1D365426;
}

h3.form-title {
  font-size: 36px;
  font-family: 'Titillium Web', sans-serif;
  color: #ffffff;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height: ;
  letter-spacing: px;
  text-transform: ;
}

body .row-fluid .hs-button {  
  font-size: 22px !important;
  line-height: 40px;
  padding: 6px 30px;
  font-family: 'Titillium Web', sans-serif;
  color: #000000;
  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(246, 233, 17, 1.0);
  border: 1px solid rgba(246, 233, 17, 1.0);
  border-radius: 0px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  width:100%;
}

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

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

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

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

body .container-fluid .row-fluid .hs-error-msgs label {
  margin-top: 0px;
  font-size: 14px;
  font-family: 'Titillium Web', sans-serif;
  color: #F6E911;
  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: 14px;
  font-family: 'Titillium Web', sans-serif;
  color: #000000;
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
}

form .hs-richtext p,
.hs-form-booleancheckbox-display p,
.legal-consent-container .hs-form-booleancheckbox-display{
  font-size: 14px ! important;
  font-family: 'Titillium Web', 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,
body input#hs-pwd-widget-password{
  display: inline-block;
  width: 100%;
  height:47px;
  padding: 6px 28px;
  font-size: 36px;
  font-family: 'Titillium Web', sans-serif;
  color: #000000;
  text-transform: none;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #F5F5F5;
  border: 0px solid #000000;
  box-sizing: border-box;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body .row-fluid form select {

  background-position: 97%!important;
  -webkit-appearance: none!important;
  -moz-appearance: none!important;
  -ms-appearance: none!important;
  cursor: pointer!important;
  background-size: 12px!important;
}

@media(max-width:480px){

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

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

  form {
    padding: 40px 20px;
  }

}

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

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

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

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

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

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

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

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

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

.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: #000000;
  display: inline-block;
  float: none;
  width: auto;
  padding: 0;
  line-height: 18px;
  text-align: left;
  white-space: normal;
  font-weight: normal;
  cursor: pointer;
  text-transform: capitalize;
}

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

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

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

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

.hs-form-required {
  color: 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;
  }

}

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


.hs_error_rollup {
    display: none;
}
/****************Table Styling Starts Here*******************/

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

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

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

  th {
    font-size: 20px;
  }

  td {
    font-size: 16px;
  }
}

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

  th {
    font-size: 20px;
  }

  td {
    font-size: 14px;
  }
}

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

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





body.header-fixed .header-grp {
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index:3;
  transition: all ease-in-out .4s;
  box-shadow: 0 2px 14px 0 rgb(0 0 0 / 16%);
  background:rgba(0, 0, 0 , 1.0);
  padding: 15px 0;
  z-index: 9999;
}  

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


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

.header-grp {
  background:rgba(0, 0, 0 , 1.0);
  position:fixed;
  z-index:3;
  line-height:0;
  top:0;
  left:0;
  right:0;
  transition: all ease-in-out .4s;
  padding:30.5px 0px 30.5px;
  z-index: 9999;
}
.header-grp .logo-container .hs_cos_wrapper_type_logo a{
  max-width: 175px;
}
.transparent_header .header-grp{
  background:transparent
}
.header-wrapper {
  max-width: 1440px;
  padding:0 45px;
  margin: 0 auto;
}
@media(max-width:767px){
  body.transparent.mobile-open .header-grp{
    background:#000;
  }
}
.header-section .custom-menu-primary .hs-menu-wrapper > ul > li > a,
.footer_menu ul li a{
  margin: 10px 13.5px !important;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  display: inline-block;
  padding: 0px 5px;
}
body .row-fluid .footer_menu ul li a{
  padding:0px 5px;
}
.header-section .custom-menu-primary .hs-menu-wrapper > ul > li:last-child > a:last-child,
.footer_menu ul li:last-child a:last-child{
  margin-right: 20px !important;
  padding-right: 5px;
}

@media(min-width:767px) and (max-width:1024px){
  body .header-section .custom-menu-primary .hs-menu-wrapper > ul > li > a{
    font-size: 18px;
  }
  body .header-wrapper {
    padding: 0 20px;
  }
}

@media(max-width:767px){
  body .header-grp{
    padding: 15px 0px 15px
  }

  body .header-grp .logo-container {
    display: inline-block;
    max-width: 130px;
  }
  body .header-wrapper {
    padding: 0 20px;
  }
  .header-grp.header-section .header-menu-container .active-branch.hs-menu-wrapper{
    top: 90px;
    background: #000;
    height: 100vh;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9999;  
  }
  .header-section .custom-menu-primary .hs-menu-wrapper > ul > li > a,
  .footer_menu ul li a{
    margin: 0 !important;
  }
  .header-grp.header-section .header-menu-container ul li a{
    display:block;
    padding: 15px 25px !IMPORTANT;
  }
  body .header-grp.header-section .header-menu-container ul li a:hover{
    color:#F6E911;
  }
}
body .header-grp.header-section .header-menu-container ul li a:hover,
.footer_section ul li a:hover{
  color:#F6E911;
}

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

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


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

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

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

/* 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: 30px;          /* Position Button at right of screen  */
    right: 20px;        /*******************************************/
    width: auto; /* Button width */
    height: auto; /* Button height */      
    padding: 7px 10px 8px 10px;
    background: #ffffff; /* Background color */
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    text-transform: uppercase;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    color: #000000; 
    transition: all .3s ease-in-out;
  }
  .mobile-trigger:hover{
    text-decoration: none; /* Removes link text underline on button */
    color:#000;
    background-color: #F6E911; 
    border-color: transparent;
  }

  /* Change button when menu is open */
  .mobile-open .mobile-trigger{
    color:#000;
    background-color: #F6E911; 
    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: #000000; /* Icon color */
    display: inline-block;
    transition: all .3s ease-in-out;
  }

  .mobile-trigger i:before{
    top: -8px; /* Position top line */
    width: 70%;
    right: 0;
  }
  .mobile-trigger i:after{
    top: 8px; /* Position bottom line */
    width: 50%;
    right: 0;
  }

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

  .mobile-open .mobile-trigger i:before {
    top: 0;
    transform: rotate(45deg);
    transition: all .3s ease-in-out;
    width: 100%;
  }
  .mobile-trigger:hover i:before, .mobile-trigger:hover i:after, .mobile-open .mobile-trigger i:before, .mobile-open .mobile-trigger i:after{
    background-color: #000; /* 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: 2px; /* Icon line height */
    background-color:#F6E911; /* 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);
  }


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

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

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

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

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

@media (max-width: 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%;
}

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

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

.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
  font-size:px;
  color:;
  font-family: ;
  font-weight: ;
  line-height: ;
  letter-spacing: px;
  font-style: ;
  text-decoration: ;
  padding: px px;
  white-space: normal;
  max-width: 100%;
}

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



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

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

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

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

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

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

}


.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.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:;
  padding: 15px 10px;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius:0px;
  box-shadow: 0 18px 54px 0 rgb(20 20 43 / 14%);
}

.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a{
  font-size:px;
  color:;
  font-family: ;
  font-style: ;
  text-decoration: ;
  font-weight: ;
  margin: 0px;
  line-height: ;
  letter-spacing: px;
  padding:10px 20px;
  text-align: left;
  min-width: 180px;
  text-indent: 0;
}

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

.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) {
  body .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
    left: 181px;
    top:5px;
  }

  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper  ul.hs-menu-children-wrapper li a,
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper  ul.hs-menu-children-wrapper ul.hs-menu-children-wrapper li a {
    font-size:px;
    color:;
    font-family: ;
    font-style: ;
    text-decoration: ;
    font-weight: ;
    margin: 0px;
    line-height: ;
    letter-spacing: px;
    padding: 10px 15px;
  }

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

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

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

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

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

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


}

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




  @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 {
      padding: 10px 20px 10px 10px!important;
      font-size: 14px!important;
      min-width: 165px!important;
    }

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

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

    body .row-fluid .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>ul>li.hs-item-has-children>a:after {
      right: 5px !important;
      top: 13px !important;
    }


    .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{
      top: 18px!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: 14px 25px;
    }
    .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
      box-shadow: none;
    }
    .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
      border: 0;
    }

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

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

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

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

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

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

    .header-container-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a{
      padding: 14px 25px;
      font-weight: 500;
      font-size: 16px;
    }

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

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

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

    }

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

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

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

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

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

  }

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

  .lang_list_class{
    min-width:150px;
  }

  .lang_list_class li{
    text-align:left;
  }

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

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

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

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

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

.blog-post {
  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: #f8f5f2;
  padding: 120px 0px;
}

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

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

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

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

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

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

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

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

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

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

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

}

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

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

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

/* Blog comments */

.blog-comments {
  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;
}


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

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

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

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

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

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

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

@media(max-width: 480px) {

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

.hs-blog-post .blog-post__tag-link{
  background: #0a8080;
  color:#ffffff;
  padding: 7px 24px;
  margin-right: 21px;
  text-transform: uppercase;
  font-size:14px;
}

.hs-blog-post .blog-post__tags {
  margin-bottom: 30px;
}

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

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

  margin: 0;
}
.hs-blog-post .blog-index__post-author .right-cont{
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 150px);
}
.hs-blog-post .comment.depth-0{
  border: 0;
}
.hs-blog-post .comment-from h4{
  display: block;
  margin-bottom: 4px;
}
.hs-blog-post .comment-date{
  display: block;
}
.hs-blog-post .comment-body{
  margin-top: 10px;
}
.hs-blog-post .comment-body p{
  margin-bottom: 8px;
}
.hs-blog-post button.comment-reply-to{
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.hs-blog-post .comment.depth-1{
  padding-top: 74px;
  position: relative;
  padding-left: 120px;
}
.hs-blog-post .comment.depth-1:before{
  position: absolute;
  content: '';
  height: 100%;
  width: 100px;
  top: -128px;
  left: -26px;
  border-left: 1px solid #C2C2C2;
  border-bottom: 1px solid #C2C2C2;
  border-bottom-left-radius: 20px;
}
.hs-blog-post .comment.depth-1:nth-child(1):before{
  height: 30%;
}
.hs-blog-post .comment.depth-1:nth-child(2n):before{
  top: -144px;
}
.hs-blog-post .post-footer form{
  display: none;
}
.hs-blog-post .spacing-div{
  margin-bottom: 42px;
}

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

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

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

@media(max-width: 1024px){

  .hs-blog-post .top-box-container{
    padding: 45px 30px 45px 30px;
  }

}
@media(max-width: 767px){
  .hs-blog-post .comment.depth-0{
    margin-top: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

}
/*****************************************/
/* System Page */
/*****************************************/

.error-page-content{
  padding:180px 0px 130px!important;
  text-align:center;
} 

.error-page-content form input[type=checkbox]{
  margin-bottom: 2px;
}

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

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

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

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

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

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

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

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

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

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

@media(min-width: 768px){

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

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

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

}

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

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

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

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

}

@media(max-width: 767px){

  .error-page-content h1{
    font-size: 30px!important;
  }

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

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

}