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

@font-face {
  font-family: 'THICCCBOI';
  src: url(//21040616.fs1.hubspotusercontent-na1.net/hubfs/21040616/raw_assets/public/Universal%20Theme/Fonts/THICCCBOI-ExtraBold.woff2) format('woff2'),
    url(//21040616.fs1.hubspotusercontent-na1.net/hubfs/21040616/raw_assets/public/Universal%20Theme/Fonts/THICCCBOI-ExtraBold.woff) format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'THICCCBOI';
  src: url(//21040616.fs1.hubspotusercontent-na1.net/hubfs/21040616/raw_assets/public/Universal%20Theme/Fonts/THICCCBOI-Bold.woff2) format('woff2'),
    url(//21040616.fs1.hubspotusercontent-na1.net/hubfs/21040616/raw_assets/public/Universal%20Theme/Fonts/THICCCBOI-Bold.woff) format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'THICCCBOI Semi';
  src: url(//21040616.fs1.hubspotusercontent-na1.net/hubfs/21040616/raw_assets/public/Universal%20Theme/Fonts/THICCCBOI-Black.woff2) format('woff2'),
    url(//21040616.fs1.hubspotusercontent-na1.net/hubfs/21040616/raw_assets/public/Universal%20Theme/Fonts/THICCCBOI-Black.woff) format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'THICCCBOI';
  src: url(//21040616.fs1.hubspotusercontent-na1.net/hubfs/21040616/raw_assets/public/Universal%20Theme/Fonts/THICCCBOI-Regular.woff2) format('woff2'),
    url(//21040616.fs1.hubspotusercontent-na1.net/hubfs/21040616/raw_assets/public/Universal%20Theme/Fonts/THICCCBOI-Regular.woff) format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'THICCCBOI';
  src: url(//21040616.fs1.hubspotusercontent-na1.net/hubfs/21040616/raw_assets/public/Universal%20Theme/Fonts/THICCCBOI-Light.woff2) format('woff2'),
    url(//21040616.fs1.hubspotusercontent-na1.net/hubfs/21040616/raw_assets/public/Universal%20Theme/Fonts/THICCCBOI-Light.woff) format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'THICCCBOI';
  src: url(//21040616.fs1.hubspotusercontent-na1.net/hubfs/21040616/raw_assets/public/Universal%20Theme/Fonts/THICCCBOI-Medium.woff2) format('woff2'),
    url(//21040616.fs1.hubspotusercontent-na1.net/hubfs/21040616/raw_assets/public/Universal%20Theme/Fonts/THICCCBOI-Medium.woff) format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'THICCCBOI';
  src: url(//21040616.fs1.hubspotusercontent-na1.net/hubfs/21040616/raw_assets/public/Universal%20Theme/Fonts/THICCCBOI-ThicccAF.woff2) format('woff2'),
    url(//21040616.fs1.hubspotusercontent-na1.net/hubfs/21040616/raw_assets/public/Universal%20Theme/Fonts/THICCCBOI-ThicccAF.woff) format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'THICCCBOI';
  src: url(//21040616.fs1.hubspotusercontent-na1.net/hubfs/21040616/raw_assets/public/Universal%20Theme/Fonts/THICCCBOI-SemiBold.woff2) format('woff2'),
    url(//21040616.fs1.hubspotusercontent-na1.net/hubfs/21040616/raw_assets/public/Universal%20Theme/Fonts/THICCCBOI-SemiBold.woff) format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'THICCCBOI';
  src: url(//21040616.fs1.hubspotusercontent-na1.net/hubfs/21040616/raw_assets/public/Universal%20Theme/Fonts/THICCCBOI-Thin.woff2) format('woff2'),
    url(//21040616.fs1.hubspotusercontent-na1.net/hubfs/21040616/raw_assets/public/Universal%20Theme/Fonts/THICCCBOI-Thin.woff) format('woff');
  font-weight: 100;
  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: Montserrat;
  color: #222525;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  margin: 0px;
  line-height: 1.529;
  letter-spacing: -0.17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
  scroll-behavior: smooth;
}

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

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

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

  body {
    font-size:16px!important; 
  }

  a {
    font-size: 16px!important; 
}
  
  body .container-fluid .row-fluid .simple-cta a.cta_button{
    padding:0px!important;
  }
  
}

p {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-family: Montserrat;
  color: #222525; 
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.529;
  letter-spacing: -0.17px;
}

.p-16 p,
.p-16 a{
  font-size: 20px;
  font-family: Montserrat;
  color: #222525; 
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.529;
  letter-spacing: -0.17px;
}

img{
  height:auto;
}

/* Image alt text */

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

/* Anchor Links */

a {
  font-size: 16px;
  font-family: Montserrat;
  color: #000000;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.4px;
  cursor: pointer;
  margin-bottom:0;
}

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

h1 {
  font-size: 50px;
  font-family: Montserrat;
  color: #000000; 
  font-style: normal;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -1.48px;
  text-transform: none;
}

h2 {
  font-size: 40px;
  font-family: Montserrat;
  color: #000000;
  font-style: normal;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1.19px;
  text-transform: none;
}

h3 {
  font-size: 30px;
  font-family: Montserrat;
  color: #000000;
  font-style: normal;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.89px;
  text-transform: none;
}

h4 {
  font-size: 24px;
  font-family: Montserrat;
  color: #000000;
  font-style: normal;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.4px;
  text-transform: none;
}

h5 {
  font-size: 18px;
  font-family: Montserrat;
  color: #14142b;
  font-style: normal;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.222;
  letter-spacing: -0.3px;
  text-transform: none;
}

h6 {
  font-size: 14px;
  font-family: Montserrat;
  color: #000000;
  font-style: normal;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.64;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

strong {
  font-weight: 800;
}

code {
  vertical-align: bottom;
}

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

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

/* Code blocks */

pre {
  overflow: auto;
}

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

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

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

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

.body-container-wrapper li{
  font-size: 17px;
  font-family: Montserrat;
  color: #222525;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height:1.52;
  letter-spacing: -0.17px;
  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;    
}

.check-mark li:before {
  position: absolute;
  top: 7px;
  left: -24px;
  content: '';
  width: 13px;
  height: 13px;
  background: url(//21040616.fs1.hubspotusercontent-na1.net/hubfs/21040616/raw_assets/public/Universal%20Theme/Images/foursquare-button.svg)no-repeat;
  background-position: center;
  background-size: cover;
} 

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

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

blockquote{
  margin:0;
  font-size: 20px;
  font-family: Montserrat;
  color: #222525;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 25px;
  margin-bottom: 20px;
  letter-spacing: -0.2px;
}

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

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

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

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

  blockquote{
    font-size: 18px;
  }

}

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

  h1 {
    font-size: 40px;
  }

}

@media (max-width:767px){

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

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

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

  h3 {
    font-size: 20px !important;
  }

  h4 {
    font-size: 18px !important;
  }

  h5 {
    font-size: 16px !important;
    line-height: 1.64;
  }

  h6 {
    font-size: 14px !important;
  }

  p {
    font-size: 16px !important;
  }

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

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

  body .container-fluid .row-fluid .section-heading.align-center{
    margin-bottom: 30px;
  }

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

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

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

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

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

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

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

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

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

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


}



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

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

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

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


@media (max-width:767px){
  body .container-fluid .row-fluid .three-col-adjust>span {
    display: block;
    margin-right: 0;
  }

  body .row-fluid .three-col-adjust span>.hs_cos_wrapper {
    display: block;
    width: 100%;
    margin: 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;
  }   
}



/*==================================================
Modal Popup styling
====================================================*/

.custom-model-main .custom-model-wrap {
  display: block;
  width: 100%;
  position: relative;
  background-color: rgba(255, 255, 255, 1.0);
  border: 1px solid rgba(255, 255, 255, 1.0);
  border-radius:10px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
  text-align: center;
  padding: 20px 20px 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

body .row-fluid .custom-model-main .custom-model-wrap p {
  color: #000000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  text-decoration: none;
}

.custom-model-main.model-open {
  z-index: 99999;
  opacity: 1;
  overflow: hidden;
  background:  rgba(0, 59, 136, 0.75);
  visibility: visible;
}

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

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


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

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

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

body .footer-section .widget-type-header h1,
body .footer-section .widget-type-header h2,
body .footer-section .widget-type-header h3,
body .footer-section .widget-type-header h4,
body .footer-section .widget-type-header h5,
body .footer-section .widget-type-header h6 {
  font-family:Montserrat;
  color:#F45D48;
  font-style: normal;
  text-decoration: none;
  font-weight: 500;
  font-size:18px!important;
  letter-spacing: -0.4px;
}

.footer-section p{
  font-family:Montserrat;
  color:#222525;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height: 24px;
  font-size:16px;
  letter-spacing: 0.4px;
  margin: 22px 0px 34px;
}

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

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

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

@media(max-width:767px){

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

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

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

}
/*****************************************/
/* 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: 16px;
  font-family: Montserrat;
  color: #fff;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  border-radius:  0px;
  background:#F45D48;
  line-height: 1.18; 
  padding: 22px
    40px;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  transition: all .15s ease;
  -webkit-transition: all .15s ease-in;
  letter-spacing: 0.4px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  border:0px solid
    #ffffff;
  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(255, 255, 255, 
    100);
  border-color:#F45D48;
  color:#F45D48;
} 

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

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

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

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

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

.transparent-cta a.cta-button,
.transparent-cta a.cta_button,
.transparent-cta a{
  font-size: 16px;
  font-family: Montserrat;
  color: #F45D48;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  border-radius:  0px;
  background: rgba(255, 255, 255,
    0);
  position:relative;
  border: 1px
    solid #F45D48;
  padding: 22px 40px;
  line-height:1.18; 
  letter-spacing:0.4px;
  text-transform: uppercase;
}

.transparent-cta a.cta_button:hover,
.transparent-cta a:hover{ 
  background: rgba(244, 93, 72, 100);
  border-color:#F45D48;
  color:#ffffff;
} 

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

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

.simple-cta a.cta_button:hover{
  color: #F45D48;
  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;
}

body .gradient-cta a.cta_button,
body .gradient-cta a{
  background-image:linear-gradient(to right, #F45D48, #000000);
  border: 0;
  border-radius: 0px;
  font-size: 16px;
  font-family: Montserrat;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  color:#ffffff;
  transition: 0.3s all ease-in-out;
}

body .gradient-cta a.cta_button:hover,
body .gradient-cta a:hover{
  transition: 0.3s all ease-in-out;
  background-color:rgba(0, 0, 0, 100)!important;
  color:rgba(255, 255, 255, 100)!important;
}

.transparent_cta a.cta_button,
.transparent_cta a{
  background: rgba(244, 93, 72,
    100);
}

.white-cta a.cta_button,
.white-cta a{
  color: #F45D48;
  border: 0px solid #ffffff;
  background: #ffffff;
}

.white-cta a.cta_button:hover{
  color: #ffffff;
  background: #F45D48;
  border: 0px solid #F45D48;
}

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

body .row-fluid .arrow-cta a.cta_button,
body .row-fluid .arrow-cta a.cta-button,
body .row-fluid .arrow-cta a{
  position: relative!important;
  padding:  0px 0px 0px 0px!important;
  color: #F45D48;
  border: 0px solid #ffffff !important;
  background:rgba(255, 255, 255, 0) !important;
}

body .row-fluid .arrow-cta a.cta_button:after,
body .row-fluid .arrow-cta a.cta-button:after,
body .row-fluid .arrow-cta a:after{
  content: "";
  position: absolute;
  background: url(https://21040616.fs1.hubspotusercontent-na1.net/hubfs/21040616/Agency%20Atlas%20Premium/Images/next.png) no-repeat;
  width: 16px;
  height:14px;
  
  right: -20px;
  
  top: 3px;
  background-size: cover;
  background-position: center;
}

body .row-fluid .arrow-cta a.cta_button:hover,
body .row-fluid .arrow-cta a.cta-button:hover,
body .row-fluid .arrow-cta a:hover{
  background:rgba(244, 93, 72, 100) !important;
  color: #ffffff;
  border: 0px solid #F45D48 !important;
}

.arrow-cta.small a.cta-button:after, .arrow-cta.small a:after{
  top:1px;
}
/*****************************************/
/* 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: 16px;
  font-family: Montserrat;
  color: #222525;
  text-transform: none;
  font-style: normal;
  font-weight: normal;
  line-height: 1.75;
}

body .row-fluid .hs-input::-moz-placeholder {
  font-size: 16px;
  font-family: Montserrat;
  color: #222525;
  text-transform: none;
  font-style: normal;
  font-weight: normal;
  line-height: 1.75;
}

body .row-fluid .hs-input::-ms-input-placeholder {  
  font-size: 16px;
  font-family: Montserrat;
  color: #222525;
  text-transform: none;
  font-style: normal;
  font-weight: normal;
  line-height: 1.75;
}

.email-prefs .item .item-inner span {
  font-size: 18px;
  color: #000000;
  font-weight: 500;
  line-height: 1.222;
  letter-spacing: -0.3px;
}

.email-prefs .item .item-inner p {
  font-size: 18px;
  color: #222525;
  font-weight: 400;
  line-height: 1.529;
  letter-spacing: --0.17px;
}

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(255, 255, 255, 1.0);
  border: 0px solid rgba(244, 93, 72, 1.0);
  border-radius: 10px;
  max-width: 670px;
  margin: 0 auto;
  box-shadow: 0 2px 14px 0 rgb(0 0 0 / 16%);
}

h3.form-title {
  font-size: 30px;
  font-family: Montserrat;
  color: #000000;
  font-style: normal;
  text-decoration: none;
  font-weight: 500;
  line-height: ;
  letter-spacing: px;
  text-transform: ;
}

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

body .row-fluid .hs-button:hover{ 
  background: rgba(244, 93, 72, 1.0);
  border-color:#F45D48;
  color:#ffffff;
} 

.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: #F45D48;
  border: 1px solid #F45D48;
  border-radius: 0px;
  color: #ffffff;
  outline: none;
}

.hs-form label {
  display: block;
  float: none;
  width: auto;
  font-size: 16px;
  font-family: Montserrat;
  color: #14142b;
  text-decoration: 0;
  font-style: normal;
  font-weight: 600;
  text-align: left;
  line-height: 1;
  padding-top: 0;
  margin-bottom: 5px;
  margin-top: 10px;
  text-transform: none;
  letter-spacing: normal;
}

body .container-fluid .row-fluid .hs-error-msgs label {
  margin-top: 0px;
  font-size: 14px;
  font-family: Montserrat;
  color: #FF0000;
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
}

body .container-fluid .row-fluid .hs-field-desc {  
  margin-top: 0px;
  font-size: 14px;
  font-family: Montserrat;
  color: #F45D48;
  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: Montserrat;
  color: #222525;
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  text-align: left;
}

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

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

body .row-fluid .hs-input,
input#hs-pwd-widget-password{
  display: inline-block;
  width: 100%;
  height:45px;
  padding: 5px 10px;
  font-size: 16px;
  font-family: Montserrat;
  color: #14142b;
  text-transform: none;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #ffffff;
  border: 1px solid #dedede;
  box-sizing: border-box;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}

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

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

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

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

/*=======================================================
CHECKBOX AND RADIO BUTTONS STYLING
=======================================================*/            
form input[type=checkbox],
.row-fluid .hs-form .field .input input[type="checkbox"],
.row-fluid .hs-form .field .input  input[type="radio"]{
  width:auto;
}
form input[type=checkbox],
.row-fluid .hs-form .field .input input[type="checkbox"],
.row-fluid .hs-form .field .input  input[type="radio"]{
  padding: 0;
  background: rgba(255, 255, 255, 1.0);
  margin-left: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  color: #14142b;}
-webkit-appearance: none;
border: 1px solid rgba(244, 93, 72, 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: #F45D48;
  left: 2px;
  border-radius: 50%;
}

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

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

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

form input[type=checkbox]:checked:after,
.row-fluid .hs-form .field .input input[type="checkbox"]:checked:after {
  content: '';
  position: absolute;
  width: 9px;
  height: 5px;
  top: 3px;
  left: 2px;
  border: 2px solid rgba(244, 93, 72,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(244, 93, 72, 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(244, 93, 72, 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(244, 93, 72,1.0);
  background: rgba(244, 93, 72,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: 1px solid #dedede;
  position: absolute;
  left: 11px;
  top: 8px;
  border-radius: 6px;
  padding: 0px 10px;
  color: #14142b;
  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: #14142b;
  line-height: normal;
  display: flex;
  border: 1px solid #dedede;
  border-radius: 6px;
  flex-direction: column;
  justify-content: center;
  font-size: 14px;
  font-weight: normal;
  position: relative;
  right: 0;
  width: 100%;
  top: 0px;
  padding: 0 10px;
  cursor: pointer;
  max-width: 100%;
  margin-bottom: 20px;
  box-sizing:border-box;
  padding-left:134px;
}

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

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

body .row-fluid form select {
  background: url(//21040616.fs1.hubspotusercontent-na1.net/hubfs/21040616/raw_assets/public/Universal%20Theme/Images/down-arrow-image.png)no-repeat!important;
  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: 20px;
}

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

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

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

.inputs-list label {
  color: #14142b;
  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: ;
}
/****************Table Styling Starts Here*******************/

th {
  font-size: 24px;
  font-family: Montserrat;
  letter-spacing: 0.4px;
  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: #F45D48;
}

td {
  font-size: 20px;
  font-family: Montserrat;
  letter-spacing: 0px;
  line-height: 1.667;
  color: #222525;
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
  border:  1px solid #dddddd;
  padding: 20px 20px;
}

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

  th {
    font-size: 20px;
  }

  td {
    font-size: 16px;
  }
}

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

  th {
    font-size: 20px;
  }

  td {
    font-size: 14px;
  }
}

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

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






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

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

@media(min-width:768px){

  

  .header-container-wrapper .header-grp.fixed {
    position: fixed;
    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(255, 255, 255, 1);
  }  

  

}

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

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



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


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

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

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

#myOverlay .closebtn {
  width: 100%;
  max-width: 16px;
  position: absolute;
  right: 3px;
  font-size: 24px;
  z-index: 11;
  cursor: pointer;
  background: #fff;
  padding: 12px;
  border-radius: 50%;
  line-height: 0.7;
  text-align: center;
  color: #F45D48;
  top: -18px;
  box-sizing: unset;
}
#myOverlay .hs-search-field.hs-search-field--open form {
  max-width: 750px;
}
#myOverlay .overlay-content {
  max-width: 750px;
  margin: 0 auto;
}

ul#hsresults li {
  list-style-type: none;
}
ul#hsresults li a {
  text-transform: uppercase;
}

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


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

@media(min-width: 768px){

  .header-grp .logo-image{
    position: relative;
    z-index:1;
  }

}

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

@media(max-width: 767px){
  p.hs-search-results__description {
    margin-top: 15px;
  }
  .system-search-page h1 {
    margin-bottom: 20px;
  }
  .system-search-page {
    padding: 60px 0px;
  }
}

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

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


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

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

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

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

/* Fix menu disappearing on desktop after toggling mobile menu */
@media screen and (min-width: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: 15px;          /* Position Button at right of screen  */
    right: 7px;        /*******************************************/
    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: #240849; 
    transition: all .3s ease-in-out;
  }
  .mobile-trigger:hover{
    text-decoration: none; /* Removes link text underline on button */
    color:#240849;
    background-color: transparent; 
    border-color: transparent;
  }

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


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

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

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

  .mobile-trigger i, .mobile-trigger i:before, .mobile-trigger i:after{
    width: 25px;
    height: 3px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    background-color: #240849; /* 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: #240849; /* 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:#240849; /* Icon color */
    display: block;
  }

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


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

  .custom-menu-primary.js-enabled{
    /*     position: inherit;
    top:-30px; */
    /*     padding-top: 44px; /* Makes room for button */
    /*     margin: 10px 0 10px 0; */ 
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

  .child-trigger i{
    position: absolute;
    top: 22px;
    right: 24px;
  }  

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

}


.hide {
  display:none;
}

/* Styles for the Search Bar */

.header__search {
  width: auto;
}

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

.header__search input:focus {
  outline: none;
}

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

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

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

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

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

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

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

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

.header__search {
  position:relative;
}

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

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

body .row-fluid .hs-search-field__suggestions li {
  margin-bottom: 15px;
}

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

body .row-fluid input.hs-search-field__input {
  padding: 20px 62px 20px 20px;
  border: 0;
}

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

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

  .header__language-switcher--label {
    float: none;
  }
  .header__search .image-popup-search {
    margin: 0 auto;
  }
  #myOverlay .text-container {
    max-width: 80%
  }

  body .row-fluid input.hs-search-field__input {
    padding: 20px 130px 20px 20px;
  }
}

@media(max-width:767px) {

  .header-grp .image-popup-search {
    max-width: 27px;
    padding: 15px 15px;
    cursor: pointer;
  }

  #myOverlay.open-popup {
    z-index: 5;
  }
  #myOverlay .text-container {
    max-width: 80%;
  }

  #myOverlay {
    padding: 30px 0px;
  }

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

  .header-grp .image-popup-search {
    display: none;
  }

  #myOverlay .closebtn{
    top: -64px;
    right: 25px;
  }
}

@media (max-width: 568px) {
  .header-grp .image-popup-search {
    max-width: 55px;
  }
}

.mega-menu-popout-container .hs-menu-wrapper.hs-menu-flow-vertical>ul li.hs-menu-depth-1>a {
  width: 100%;
  padding: 12px 0px!important;
  font-size: 14px!important;
}

.mega-menu-popout-container{
  box-shadow: 0 2px 14px 0 rgb(0 0 0 / 16%);
}


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

  .mega-menu-popout-container .hs-menu-wrapper.hs-menu-flow-vertical>ul li.hs-menu-depth-1>a {
    width: 100%;
    padding: 8px 0px!important;
    font-size: 12px!important;
  }

  .mega-menu-popout-container h5 {
    font-size: 14px;
    margin-bottom: 10px;
  }

   .mega-menu-popout-container h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

    .mega-menu-popout-container p {
    font-size: 14px;
    margin-bottom: 0px;
  }
  
  .menu-items ul li a .text {
    font-size: 12px;
  }

  .menu-items ul li a .inner-descrption p {
    font-size: 11px;
    margin-top: 5px;
    margin-bottom: 0;
  }
  
  .menu-items ul li a {
    display: block !important;
    padding: 8px 0px !important;
}

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

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

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

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

@media(max-width: 900px)and(min-width: 768px) {
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
    padding: 15px 15px;
    font-size: 14px;
  }
}

@media(min-width: 768px) {

  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
    position: relative;
  }
  
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-item.hs-menu-depth-1 {
    position: relative;
    margin: 0 8px;
  }
  
  .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: url(//21040616.fs1.hubspotusercontent-na1.net/hubfs/21040616/raw_assets/public/Universal%20Theme/Images/down-arrow-image.png)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: url(//21040616.fs1.hubspotusercontent-na1.net/hubfs/21040616/raw_assets/public/Universal%20Theme/Images/down-arrow-image.png)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(-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;
  }
  .header-grp .hs-menu-wrapper > ul li a, .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    overflow: visible !important;
    max-width: none !important;
    width: auto !important;
  }

  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul>li a:hover {
    background-color:rgba(255, 255, 255, 0);
  }
  
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children {
    position: relative;
  }
  .header-grp .hs-menu-wrapper {
    line-height: 0;
  }

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

}

.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul > li:hover >  a{
  color:#0a8080;
} 

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

/*Sub Menu*/

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

.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a{
  font-size:16px;
  color:#222525;
  font-family: Montserrat;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  margin: 0px;
  line-height: 1.18;
  letter-spacing: 0.4px;
  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:#0a8080;
}

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

}

/*===== 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:16px;
    color:#222525;
    font-family: Montserrat;
    font-style: normal;
    text-decoration: none;
    font-weight: 400;
    margin: 0px;
    line-height: 1.18;
    letter-spacing: 0.4px;
    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:#0a8080;
  }

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

}
@media(max-width: 1024px) and (min-width: 768px) {
  
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    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.hs-menu-flow-horizontal>ul li ul li a,
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
    padding: 14px 10px;
    font-size: 12px;
  }
  
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-item.hs-menu-depth-1 {
    margin: 0 !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;
  }

}
/*======================================================================
Team Section 
======================================================================*/

.team_section .card {
  margin: auto;
  overflow-y: auto;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  transition: 0.3s;
  flex-direction: column;
  border-radius: 10px;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2);
  height: 500px;
}
.team_section .card.is-active .card-header {
  height: 80px;
}
.team_section .card.is-active .card-cover {
  height: 100px;
  top: -50px;
}
.team_section .card.is-active .card-avatar {
  transform: none;
  left: 20px;
  width: 50px;
  height: 50px;
  bottom: 10px;
}
.team_section .card.is-active .card-fullname, .card.is-active .card-jobtitle {
  left: 86px;
  transform: none;
}
.team_section .card.is-active .card-fullname {
  bottom: 18px;
  font-size: 19px;
}
.team_section .card.is-active .card-jobtitle {
  bottom: 16px;
  letter-spacing: 1px;
  font-size: 10px;
}
.team_section .card-header {
  position: relative;
  display: flex;
  height: 200px;
  flex-shrink: 0;
  width: 100%;
  transition: 0.3s;
}
.team_section .card-header * {
  transition: 0.3s;
}
.team_section .card-cover {
  width: 100%;
  height: 100%;
  position: absolute;
  height: 160px;
  top: -20%;
  left: 0;
  will-change: top;
  background-size: cover;
  background-position: center;
  filter: blur(30px);
  transform: scale(1.2);
  transition: 0.5s;
}
.team_section .card-avatar {
  width: 100px;
  height: 100px;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  object-position: center;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-64px);
}
.team_section .card-fullname {
  position: absolute;
  bottom: 0;
  font-size: 22px!important;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  transform: translateY(-10px) translateX(-50%);
  left: 50%;
}
.team_section .card-jobtitle {
  position: absolute;
  bottom: 0;
  font-size: 11px!important;
  white-space: nowrap;
  font-weight: 500;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-7px);
}
.team_section .card-main {
  position: relative;
  flex: 1;
  display: flex;
  padding-top: 10px;
  flex-direction: column;
}
.team_section .card-subtitle {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 8px;
}
.team_section .card-content {
  padding: 20px;
}
.team_section .card-desc p{
  font-size: 14px;
  margin: 0;
  font-weight: 400;
}
.team_section .card-social {
  display: flex;
  align-items: center;
  padding: 0 20px;
  margin-bottom: 30px;
}
.team_section .card-social svg {
  fill: #ffffff;
  width: 16px;
  display: block;
  transition: 0.3s;
}
.team_section .card-social a {
  color: #ffffff;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  background-color: #4a3aff;
  border-radius: 50%;
  margin-right: 10px;
}

.team_section .card-social a:last-child {
  margin-right: 0;
}
.team_section .card-buttons {
  display: flex;
  background-color: #fff;
  margin-top: auto;
  position: sticky;
  bottom: 0;
  left: 0;
  padding-top: 20px;
}
.team_section .card-buttons button {
  flex: 1 1 auto;
  user-select: none;
  background: 0;
  font-size: 13px;
  border: 0;
  padding: 15px 5px;
  cursor: pointer;
  color: #5c5c6d;
  transition: 0.3s;
  font-weight: 500;
  outline: 0;
  border-radius:0px;
}
.team_section .card-buttons button.is-active{
  background:#4a3aff;
  border-color:#4a3aff;
  color:#ffffff;
}
.team_section .card-section {
  display: none;
}
.team_section .card-section.is-active {
  display: block;
  animation: fadeIn 0.6s both;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translatey(40px);
  }
  100% {
    opacity: 1;
  }
}
.team_section .card-timeline {
  margin-top: 30px;
  position: relative;
}
.team_section .card-timeline:after {
  background: linear-gradient(to top, rgba(134, 214, 243, 0) 0%, rgba(81, 106, 204, 1) 100%);
  content: "";
  left: 42px;
  width: 2px;
  top: 0;
  height: 100%;
  position: absolute;
  content: "";
}
.team_section .card-item {
  position: relative;
  padding-left: 60px;
  padding-right: 20px;
  padding-bottom: 30px;
  z-index: 1;
}
.team_section .card-item:last-child {
  padding-bottom: 5px;
}
.team_section .card-item:after {
  content: attr(data-year);
  width: 10px;
  position: absolute;
  top: 0;
  left: 39px;
  width: 8px;
  height: 8px;
  line-height: 0.6;
  border: 2px solid #fff;
  font-size: 11px;
  text-indent: -35px;
  border-radius: 50%;
  color: rgba(134, 134, 134, 0.7);
  background: linear-gradient(to bottom, #a0aee3 0%, #516acc 100%);
}
.team_section .card-item-title {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 5px;
}
.team_section .card-item-desc p{
  font-size: 13px;
  color: #6f6f7b;
  line-height: 1.5;
}
.team_section .card-contact-wrapper {
  margin-top: 20px;
}
.team_section .card-contact{
  display: flex;
  align-items: center;
}
.team_section .card-contact p {
  font-size: 13px;
  color: #6f6f7b;
  line-height: 1.6;
  cursor: pointer;
}
.team_section .card-contact + .card-contact {
  margin-top: 16px;
}
.team_section .card-contact svg {
  flex-shrink: 0;
  width: 30px;
  min-height: 34px;
  margin-right: 12px;
  transition: 0.3s;
  padding-right: 12px;
  border-right: 1px solid #dfe2ec;
  fill: #4a3aff;
}
.team_section a.cta-button.contact-me {
  border: 0;
  outline: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  color: #fff;
  padding: 12px 16px!important;
  width: 100%;
  border-radius: 5px;
  margin-top: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

/*======================================================================
Hover Section 
======================================================================*/

.hover-section-1 .flip-box-back:before{
  background-color: rgba(74,58,255,0.8);
  content:'';
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  top:0;
  z-index:-2;
  border-radius: 8px;
}

.hover-section-1 .flip-box-front:before{
  background-color: rgba(0,0,0,0.6);
  content:'';
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  top:0;
  z-index:-2;
  border-radius: 8px;
}

.hover-section-1 .box-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 35px 0px;
  width: 100%;
}

.hover-section-1 .box-container .bottom-grp h3{
  margin-bottom: 5px;
}

@media screen and (min-width:1380px) {
  .hover-section-1 .box-container {
    flex-direction: row
  }
}

.hover-section-1 .box-item {
  position: relative;
  -webkit-backface-visibility: hidden;
  width: 415px;
  margin-bottom: 35px;
  max-width: 100%;
}

.hover-section-1 .flip-box {
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

.hover-section-1 .flip-box-front,
.hover-section-1 .flip-box-back {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  min-height: 475px;
  -ms-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  -webkit-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  padding: 20px 30px;
}

.hover-section-1 .flip-box-front {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.hover-section-1 .flip-box:hover .flip-box-front {
  -ms-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.hover-section-1 .flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.hover-section-1 .flip-box:hover .flip-box-back {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.hover-section-1 .flip-box .inner {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 60px;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
  transform: translateY(-50%) translateZ(60px) scale(.94);
  -webkit-transform: translateY(-50%) translateZ(60px) scale(.94);
  -ms-transform: translateY(-50%) translateZ(60px) scale(.94);
  top: 50%;
}

.hover-section-1 .flip-box-img {
  margin-top: 25px;
}

.card-hover .double-content.linear-conta{
  border-radius: 30px;
}

@media(min-width:768px){
  .card-hover .double-content.linear-conta .left-1{
    width:auto;
  }
}

body .row-fluid .card-hover .whole-card-link a{
  position:absolute;
  z-index:1;
  top:0;
  left:0;
  height:100%;
  width:100%;
  right:0;
  bottom:0;
  content:'';
}

.card-hover .list-container li{
  padding:20px 0;
  list-style-type:none;
  padding-left:30px;
}
.card-hover .list-container{
  position:relative;
  z-index:1;
}
.card-hover .list-container li:before{
  position:absolute;
  z-index:1;
  content:'';
  height:40px;
  width:40px;
  background:url(//21040616.fs1.hubspotusercontent-na1.net/hubfs/21040616/raw_assets/public/Universal%20Theme/Images/Vkontakte-logo.svg)no-repeat;
  background-size:cover;
  top: 15px;
  left: -30px;
}
.card-hover .btn-conta {
  margin-top:30px;
}
.card-hover .bottom-description{
  margin-top:15px;
  color: #000000;
}
.card-hover .hover .image-conta{
  margin-bottom:30px;
}
.card-hover .hover .cta-container.simple{
  margin-top:25px;
}
.card-hover .hover .cta-container.arrow-cta{
  margin-top:25px;
}
.card-hover .hover .cta-container.arrow-cta .arrow-cta a.cta-button, .arrow-cta a:after{
  top:9px;
}

.card-hover .hover{
  border:.5px solid #F0F2F3;
}

@media (max-width:767px){
  .card-hover .double-content .cta-container.white-cta{
    margin-bottom:30px;
  }

  .card-hover .double-content .cta-container a.cta_button{
    display:block;
  }

  .card-hover .double-content .image-conta{
    margin-top:30px;
  }
}

@media(max-width:767px){
  body .row-fluid .hover-section-1 .three-col-adjust span>.hs_cos_wrapper{
    clear:both;
    display:inline-block;
  }
}

/*======================================================================
SVG Vector Section 
======================================================================*/

body .row-fluid .svg-vector-cm .multiple-content .two-col-adjust span>.hs_cos_wrapper{
  flex-basis: 45.7%;
  -webkit-flex-basis: 45.7%;
}

.svg-vector-cm .multiple-content .hs_cos_wrapper{
  align-items:flex-start;
}

.svg-vector-cm .inner-conta-2.inner-conta:hover h4{
  background: -webkit-gradient(linear,left top,right top,from(rgb(141,216,22)),to(rgb(15,197,239))); 
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}

.svg-vector-cm .social-icons li .fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.svg-vector-cm .social-icons {
  list-style: none;
  width: 100%;
}
.svg-vector-cm .hs_cos_wrapper .social-icons li {
  display: inline-block;
  margin: 0.15em;
  position: relative;
  font-size: 1.2em;
}
.svg-vector-cm .hs_cos_wrapper .social-icons i {
  color: #fff;
  position: absolute;
  top: 21px;
  left: 23px;
  transition: all 265ms ease-in-out;
  text-align:center;
  transform: scale(2.2);
  -ms-transform: scale(2.2);
  -webkit-transform: scale(2.2);
}
.svg-vector-cm .hs_cos_wrapper .social-icons a {
  display: inline-block;
  min-height: 60px;
  height: 100%;
}
.svg-vector-cm .hs_cos_wrapper .social-icons a:before {
  transform: scale(0);
}
/* .svg-vector-cm .hs_cos_wrapper:hover .social-icons a:before {
transform: scale(1);
-ms-transform: scale(1);
-webkit-transform: scale(1);
transition: all 265ms ease-in-out;
content: " ";
width: 60px;
height: 60px;
border-radius: 100%;
display: block;
transition: all 265ms ease-in-out;
} */
.svg-vector-cm .hs_cos_wrapper .cta-container a:before{
  display:none;
}
.svg-vector-cm .hs_cos_wrapper{
  align-items:center;
}
/* .svg-vector-cm .hs_cos_wrapper:hover .social-icons a i {
transform: scale(1);
-ms-transform: scale(1);
-webkit-transform: scale(1);
color: #ffffff;
background: #ffffff;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
transition: all 265ms ease-in-out;
} */

/*======================================================================
Editors Pick Section 
======================================================================*/

.editors_pick .screen-arrows-slider-flex .arrows-slide {
  display: inline-block;
  cursor: pointer;
}

.editors_pick .left-col {
  z-index:1;
  box-shadow: 0 2px 14px 0 rgb(0 0 0 / 16%);
  padding: 40px 30px;
  position: absolute;
  top: 50px;
  max-width: 420px;
  margin-left: 10px!important;
  border-radius: 20px;
  width: 100%;
}

.editors_pick .left-col:after {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  will-change: top;
  background-size: cover;
  background-position: center;
  backdrop-filter:blur(16px);
  content: '';
  background: rgba(255, 255, 255, 0.4);
  z-index: -1;
  border-radius: 20px;
}

.editors_pick p.post-date {
  margin: 0px;
  margin-top: 8px;
  line-height:1;
}

.editors_pick .post-title {
  margin-bottom: 30px;
}

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

  .editors_pick .left-col{
    position: relative;
  }

  .editors_pick .right-col{
    height: 35vw!important;
  }


}

@media(max-width: 767px){

  .editors_pick .left-col {
    z-index:1;
    box-shadow: 0 2px 14px 0 rgb(0 0 0 / 16%);
    padding: 40px 30px;
    position: relative;
    top: 0px;
    max-width: 95%;
    margin: 0 auto 20px!important;
    border-radius: 20px;
  }

  .editors_pick .left-col:after{
    top:0px;
  }

  .editors_pick .right-col {
    width:100%;
    height: 60vw!important;
    margin-bottom:20px;
  }

  .editors_pick .author-avatar{
    margin-bottom: 20px;
  }

  .editors_pick .post-boxes > .row-fluid {
    display: flex;
    flex-direction: column-reverse;
  }

  .editors_pick .author-details{
    margin-bottom: 15px;
  }

}

/*======================================================================
Counter Up Section 
======================================================================*/



/*==================================================================
Section RSS Styling
==================================================================*/

.post-wrap .post-header {
  margin-bottom: 10px;
}

.post-listing h5 a {
  font-weight: 700;
}

body .row-fluid .post-listing{
  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%;
}

body .row-fluid .post-listing .post-item{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-basis: 30%;
  -webkit-flex-basis: 30%;
  float: left;
  margin-right: 3.3%;
  margin-top: 26px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position:relative;
  flex-direction: column;
}

body .row-fluid .blog-post-cm .post-listing .post-item:nth-child(3n){
  margin-right:0;
}

body .hs-featured-image{
  height:203px;
  max-width:100%;
  margin:0;
  width:100%;
}

.post-wrap{
  padding: 21px 16px 10px 20px;
}

.post-wrap p{
  margin-bottom: 11px;
}

.post-item .topic-link:first-child{
  display:block;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: normal;
} 

.post-item .topic-link{
  display:none;
}

.post-item .post-header{
  font-size: 24px;
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: normal;
}

.post-listing .post-item .featured_image {
  margin-bottom: 20px;
}

.section-rss .post-item .description-cont {
  padding: 20px 16px 50px 20px;
  clear:both;
}

body .hs-blog-post .post-body ul li {
  color: #222525; 
}
body .hs-blog-post .post-body ol li{
  color: #222525; 
}

.read-more-sec.simple-cta a.cta_button{
  color: #000000; 
}

@media(max-width:767px){

  body .row-fluid .post-listing{
    display: block;
    margin-right: 0;
  }

  body .row-fluid .post-listing .post-item{
    display: block;
    width: 100%;
    margin: 0;
    flex-basis:100%;
    margin-top: 20px;
    max-width: 100%;
    width: 100%;
    margin: 20px auto 40px;
    float: none;
  }

}

/*==================================================================
Slider Module Styling
==================================================================*/

.slider_module .quote-image img{
  margin: 0 auto 20px;
  max-width:30px;
}

.slider_module .hs_cos_wrapper{
  background:#ffffff;
  box-shadow: 0 2px 14px 0 rgb(0 0 0 / 16%);
  border-radius: 20px;
  margin: 50px 20px 20px;
}

.slider_module .hs_cos_wrapper .avatar-image{
  margin-top: -70px!important;
  margin-bottom: 20px!important;
}

/*==================================================================
Isotope Module Styling
==================================================================*/

body .row-fluid .portfolio-cm .three-col-adjust span>.hs_cos_wrapper.cards-up .top-row .tag-portfolio{
  z-index:4 
}

.portfolio-cm .tab-cm-up .menu-cont-up ul li {
  color: #4a3aff;
  padding: 12px 30px 12px;
  cursor: pointer;
  margin-right: 0;
  display: inline-block;
  border: 1px solid #4a3aff;
  border-radius: 30px;
  margin-bottom:20px;
}

body .row-fluid .portfolio-cm .three-col-adjust span>.hs_cos_wrapper.cards-up {
  margin-right: 2%;
  transition: all ease-in-out .4s;
  max-width: 30.85%;
  background: #ffffff;
  width: 100%;
  border-radius: 16px;
}

body .row-fluid .portfolio-cm .three-col-adjust span>.hs_cos_wrapper.cards-up:nth-child(3n){
  margin-right:2%;
}

body .row-fluid .portfolio-cm .three-col-adjust span>.hs_cos_wrapper.cards-up .top-row{
  box-shadow: 4px 4px 10px rgb(0 0 0 / 7%);
  border-radius: 16px;
  overflow: hidden;  
  cursor:pointer;
  position:relative;
  transition:all .4s ease-in-out;
  border: 1px solid #dfdfdf;
}

body .row-fluid .portfolio-cm .three-col-adjust span>.hs_cos_wrapper.cards-up .top-row:hover{
  box-shadow: 4px 4px 18px rgb(0 0 0 / 7%);
}

body .row-fluid .portfolio-cm .three-col-adjust span>.hs_cos_wrapper.cards-up .top-row .tag-portfolio{
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  background: #4a3aff;
  text-transform: uppercase;
  padding: 2px 10px 1px;
  font-weight: 800;
  font-size: 13px;
  border-radius: 0px 0px 8px 0px;
} 

body .row-fluid .portfolio-cm .three-col-adjust span>.hs_cos_wrapper.cards-up .whole-card-link a{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  z-index: 6;  
}

.portfolio-cm .tab-cm-up .menu-cont-up ul li.active {
  background-image: linear-gradient(to bottom right, rgba(52, 148, 230, 1), rgba(236, 110, 173, 1)) !important;
  color: #ffffff;
  border-radius: 30px;
}

body .row-fluid .portfolio-cm .filter-tab-wrap .menu {
  max-width: 100%;
}

.portfolio-cm .text-cont{
  margin-top: 0;
  padding: 10px 20px ;
  box-sizing: border-box;
  border-top: 1px solid #dfdfdf;
}

body .row-fluid .portfolio-cm .three-col-adjust span>.hs_cos_wrapper.cards-up:hover {
  transform: scale(1.09);
  z-index: 99;
}

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

  body .portfolio-cm .text-cont h5 {
    font-size: 18px;
    margin: 0;
  }

  body .row-fluid .portfolio-cm .filter-tab-wrap .menu{
    text-align:center;
  }

}

@media (min-width:768px){

  .portfolio-cm .text-cont h5{
    margin:0
  }

  .portfolio-cm .option_dropdown{
    display:none;
  }

}


@media (max-width:767px){

  body .row-fluid .portfolio-cm .filter-tab-wrap .menu{
    background: #fff;
  }

  body .row-fluid .portfolio-cm .three-col-adjust span>.hs_cos_wrapper.cards-up{
    max-width:397px;
    margin:0 auto 30px;
  }

  .portfolio-cm .menu-cont-up.single-line-list.no-margin {
    display: none;
  }

  body .container-fluid .row-fluid .three-col-adjust>span{
    max-width:397px;
    margin:0 auto;
  }

  .portfolio-cm .text-cont h5{
    margin:0
  }

  .portfolio-cm .option_dropdown {
    margin: 15px auto 40px;
  }

  .portfolio-cm .option_dropdown select{
    padding: 10px 20px;
    min-height: 30px!important;
    border-radius: 16px;
    background-image: linear-gradient(to bottom right, rgba(52, 148, 230, 1), rgba(236, 110, 173, 1)) !important;
    color: #ffffff;
    border: 1px solid;
    cursor:pointer;
  }

  .portfolio-cm .option_dropdown select option{
    color:#000000;
    cursor:pointer;
  }

  .portfolio-cm .option_dropdown select:focus{
    outline:none;
  } 

  .portfolio-cm .filter-tab-wrap.span12 {
    max-width: 395px;
    margin: 0 auto!important;
  }

}


/*==================================================================
Isotope 2 Module Styling
==================================================================*/

body .row-fluid .portfolio-cm-2 .three-col-adjust span>.hs_cos_wrapper.cards-up .top-row .tag-portfolio{
  z-index:4 
}

.portfolio-cm-2 .tab-cm-up .menu-cont-up ul li {
  color: #4a3aff;
  padding: 12px 30px 12px;
  cursor: pointer;
  margin-right: 0;
  display: inline-block;
  border: 1px solid #4a3aff;
  border-radius: 30px;
  margin-bottom:20px;
}

body .row-fluid .portfolio-cm-2 .three-col-adjust span>.hs_cos_wrapper.cards-up {
  margin-right: 2%;
  transition: all ease-in-out .4s;
  max-width: 30.85%;
  background: #ffffff;
  width: 100%;
  border-radius: 16px;
}

body .row-fluid .portfolio-cm-2 .three-col-adjust span>.hs_cos_wrapper.cards-up:nth-child(3n){
  margin-right:2%;
}

body .row-fluid .portfolio-cm-2 .three-col-adjust span>.hs_cos_wrapper.cards-up .top-row{

  border-radius: 16px;
  overflow: hidden;  
  cursor:pointer;
  position:relative;
  transition:all .4s ease-in-out;
}

body .row-fluid .portfolio-cm-2 .three-col-adjust span>.hs_cos_wrapper.cards-up .top-row .tag-portfolio{
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  background: #4a3aff;
  text-transform: uppercase;
  padding: 2px 10px 1px;
  font-weight: 800;
  font-size: 13px;
  border-radius: 0px 0px 8px 0px;
} 

body .row-fluid .portfolio-cm-2 .three-col-adjust span>.hs_cos_wrapper.cards-up .whole-card-link a{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  z-index: 6;  
}

.portfolio-cm-2 .tab-cm-up .menu-cont-up ul li.active {
  background-image: linear-gradient(to bottom right, rgba(52, 148, 230, 1), rgba(236, 110, 173, 1)) !important;
  color: #ffffff;
  border-radius: 30px;
}

body .row-fluid .portfolio-cm-22 .filter-tab-wrap .menu {
  max-width: 100%;
}

.portfolio-cm-2 .text-cont{
  margin-top: 0;
  padding: 10px 20px ;
  box-sizing: border-box;
  border-top: 1px solid #dfdfdf;
}

body .row-fluid .portfolio-cm-2 .three-col-adjust span>.hs_cos_wrapper.cards-up:hover {
  transform: scale(1.09);
  z-index: 99;
}

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

  body .portfolio-cm-2 .text-cont h5 {
    font-size: 18px;
    margin: 0;
  }

  body .row-fluid .portfolio-cm-2 .filter-tab-wrap .menu{
    text-align:center;
  }

}

@media (min-width:768px){

  .portfolio-cm-2 .text-cont h5{
    margin:0
  }

}


@media (max-width:767px){

  body .row-fluid .portfolio-cm-2 .three-col-adjust span>.hs_cos_wrapper.cards-up{
    margin:0 auto 30px;
    max-width:100%;
  }

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

  .portfolio-cm-2 .text-cont h5{
    margin:0
  }

  .portfolio-cm-2 .hs_cos_wrapper .img-cont {
    height: 80vw!important;
    max-height: none!important;
  }

  body .container-fluid .row-fluid .portfolio-cm-2 .three-col-adjust>span {
    max-width: 90%;
    margin: 0 auto;
  }

}

/*************************************************************************
Gallery page 2
**************************************************************************/

body .row-fluid .ps2-gallery-2-section .wrapper{
  max-width:1200px;
}

body .row-fluid .ps2-gallery-2-section .ps1-gallery-2-cm-container{
  display: block;
  overflow: hidden;
}

body .row-fluid .ps2-gallery-2-section .ps1-gallery-2-cm-container>span>div{
  cursor: pointer;
  overflow: hidden;
  width: 22.5%;
  float: left;
  margin-right: 1.2%;
  margin-left: 1.2%;
  margin-bottom: 35px;
  box-sizing: border-box;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.24);
  transition: all .3s ease-in-out;
}

body .row-fluid .ps2-gallery-2-section .ps1-gallery-2-cm-container>span>div:hover{
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.24);
}

.ps2-gallery-2-section .icon-container{
  position: absolute;
  float: none;
  left: 0;
  right: 0;
  transition: all .3s ease-in-out;
  top: 0;
  opacity: 0;
  bottom: 0;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  background: rgba(255, 255, 255, 0.5);
}

.ps2-gallery-2-section .icon-container img{
  width:36px;
}

.ps2-gallery-2-section .ps1-gallery-2-cm-container>span>div:hover .icon-container{
  opacity:1;   
}

.ps2-gallery-2-section .heading-container{
  position: absolute;
  right: 0;
  left: 0;
  background: black;
  padding: 10px 10px;
  bottom: -100px;
  transition: all .3s ease-in-out;
}

.ps2-gallery-2-section .ps1-gallery-2-cm-container>span>div:hover .heading-container{
  bottom:0;   
}

.ps2-gallery-2-section .ps1-gallery-2-cm-container>span>div:hover .background-container:before{
  opacity:1;
}


body .row-fluid .ps2-gallery-2-section .ps1-gallery-2-cm{
  position:relative;
}


body .row-fluid .ps2-gallery-2-section .popup-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 12;
  background: rgba(0, 0, 0, 0.72);
  padding: 80px 0;
  overflow-y: scroll;    
  opacity:0;
  pointer-events:none;
  transition:all .4s ease-in-out;
}

body .row-fluid .ps2-gallery-2-section .popup-container.open-popup {
  opacity:1;
  pointer-events:auto;
}

.row-fluid .ps2-gallery-2-section .slider-inner-container{
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  background: #000;
  position:relative;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.7);
  opacity:0;
  transition:all .6s ease-in-out;
}

.ps2-gallery-2-section .popup-container.inner-container-popup .slider-inner-container{
  opacity:1;
}

body .row-fluid .ps2-gallery-2-section .inner-background-container{
  height:540px;
}

body .ps2-gallery-2-section .slick-arrow{
  position: absolute;
  width: 40px;
  cursor: pointer;
  top: 46%;    
}

.ps2-gallery-2-section .slick-prev{
  left: -80px;
}

.ps2-gallery-2-section .slick-next{
  right: -80px;    
}

.ps2-gallery-2-section .slider-inner-container .close-button{
  position: absolute;
  right: -28px;
  width: 24px;
  top:0px;
  cursor: pointer;
}

.ps2-gallery-2-section .slider-inner-container .bottom-heading{
  padding:20px 40px;
}

.ps2-gallery-2-section .slider-inner-container .image-container{
  width: 100%;
  height: 83vh;
  overflow: hidden;
}

.ps2-gallery-2-section .slider-inner-container .image-container img{
  height: 100%;
  max-width: none;
  width: auto;
  margin: 0 auto;
}

.ps2-gallery-2-section .slider-inner-container .description-container{
  padding:20px 40px;    
}

.ps2-gallery-2-section .image-heading{
  position: absolute;
  bottom: 0;
  padding: 13px 10px;
  z-index: 4;
  background:#000;
  left:0;
  right:0;
  opacity:0;
  transition: all .4s ease-in-out;
}

.ps2-gallery-2-section .ps1-gallery-2-cm:hover .image-heading{
  opacity:1;
}

.ps2-gallery-2-section .slider-inner-container .slick-slide{
  position:relative;    
}

.ps2-gallery-2-section .slider-inner-container .image-desc{
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 30px 40px 20px;    
  opacity:0;
  transition: all .4s ease-in-out;
}

.ps2-gallery-2-section .slider-inner-container .slick-slide:hover .image-desc{
  opacity:1;
}

.ps2-gallery-2-section.gallery-loader .masonary-grp{
  opacity:0;
}

.ps2-gallery-2-section .masonary-grp{
  opacity:1;
  transition:all .4s ease-in-out;
}

.ps2-gallery-2-section.gallery-loader{
  position:relative;
}

.ps2-gallery-2-section.gallery-loader:before{
  position: absolute;
  content: '';
  top: 230px;
  left: 0;
  right: 0;
  background: url(//21040616.fs1.hubspotusercontent-na1.net/hubfs/21040616/raw_assets/public/Universal%20Theme/Images/Circel%20SVG.svg) no-repeat;
  width: 40px;
  height: 40px;
  background-size: 100%;
  margin: 0 auto;
  transition:all .4s ease-in-out;
  opacity:1;
}

.ps2-gallery-2-section:before{
  opacity:0;   
}

body .row-fluid .ps2-gallery-2-section.page-2-gallery .ps1-gallery-2-cm-container>span>div{
  width: 25%;
  float: left;
  margin-right:0;
  margin-left: 0;
  margin-bottom: 0;
}

@media (max-width:1660px){
  .row-fluid .ps2-gallery-2-section .slider-inner-container {
    width: 100%;
    max-width: 900px;  
  }  
}

@media (max-width:1024px){
  body .row-fluid .ps2-gallery-2-section .ps1-gallery-2-cm-container>span>div{
    margin-bottom: 16px;
  }

  .row-fluid .ps2-gallery-2-section .slider-inner-container {
    max-width: 560px;
  }

  .ps2-gallery-2-section .slider-inner-container .image-container {
    height: 420px;
  }

  body .row-fluid .ps2-gallery-2-section .popup-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    -webkit-align-items: center;
    -webkit-justify-content: center;
  }

  .ps2-gallery-2-section .slider-inner-container .image-desc {
    position: inherit; 
    opacity:1;
  }   
}


@media (max-width:767px){
  body .row-fluid .ps2-gallery-2-section .ps1-gallery-2-cm-container>span>div{
    width: 100%;
    float: left;
    max-width: 340px;
    margin: 0 auto 20px;
    float: none;
  }

  .row-fluid .ps2-gallery-2-section .slider-inner-container{
    max-width: 280px;
  }  

  .ps2-gallery-2-section .slider-inner-container .image-container {
    height: 180px;
  }

  .ps2-gallery-2-section .slider-inner-container .image-desc {
    padding: 20px 20px 10px;
  }

  .ps2-gallery-2-section .slider-inner-container .close-button {
    right: 2px;
    top: -35px;
  }
}

@media (max-width:1024px){
  body .row-fluid .ps2-gallery-2-section.page-2-gallery .ps1-gallery-2-cm-container>span>div{
    padding:1px;
  }   
}

@media(max-width:767px){
  .team-member br {
    display: none !important;
  }
}

/* *************Gallery module styling Ends Here ****************/
/*****************************************/
/* 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;
  } 

}