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

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

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

body {
  margin: 0;
}

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

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

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

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

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

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

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

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

b,
strong {
  font-weight: 600;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
/* .content-wrapper {
margin: 0 auto;
padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
.content-wrapper {
padding: 0;
}
}

.dnd-section > .row-fluid {
margin: 0 auto;
}

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

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

/* ------- New Css ----------- */
.dnd-section[class*="full-width-section"]>.row-fluid {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.full-width-container .dnd-section > .row-fluid {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.full-width-container .dnd-section, 
.full-width-container .content-wrapper--vertical-spacing,
.full-width-container .dnd-section .dnd-column {
  padding: 0;
}
.overflow-hidden{overflow:hidden}
.dnd-section[class*=force-full-width-section]{padding:0}
.dnd-section[class*=force-full-width-section] .dnd-column{padding-left:0;padding-right:0}
.dnd-section[class*=force-full-width-section]>.row-fluid{padding-left:0;padding-right:0}
.content-wrapper{margin:0 auto}
.content-wrapper,.dnd-section>.row-fluid{margin:0 auto}
.content-wrapper,.dnd-section .dnd-column,.dnd-section>.row-fluid{padding:0 24px}
.slick-slider{outline:0}
.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-24px;margin-right:-24px}
.no-gutters{margin-right:0;margin-left:0}
.no-gutters>.col.no-gutters>[class*=col-]{padding-right:0;padding-left:0}
.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:24px;padding-left:24px}
@media (max-width: 767px) {
  .content-wrapper,.dnd-section .dnd-column,.dnd-section>.row-fluid{padding:0 20px}
  .row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-20px;margin-right:-20px}
  .col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:20px;padding-left:20px}
}
.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}
.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}
.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}
.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}
.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}
.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}
.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}
.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}
.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}
.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}
.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}
.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}
.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}
.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}
.order-first{-ms-flex-order:-1;order:-1}
.order-last{-ms-flex-order:13;order:13}
.order-0{-ms-flex-order:0;order:0}
.order-1{-ms-flex-order:1;order:1}
.order-2{-ms-flex-order:2;order:2}
.order-3{-ms-flex-order:3;order:3}
.order-4{-ms-flex-order:4;order:4}
.order-5{-ms-flex-order:5;order:5}
.order-6{-ms-flex-order:6;order:6}
.order-7{-ms-flex-order:7;order:7}
.order-8{-ms-flex-order:8;order:8}
.order-9{-ms-flex-order:9;order:9}
.order-10{-ms-flex-order:10;order:10}
.order-11{-ms-flex-order:11;order:11}
.order-12{-ms-flex-order:12;order:12}
.offset-1{margin-left:8.333333%}
.offset-2{margin-left:16.666667%}
.offset-3{margin-left:25%}
.offset-4{margin-left:33.333333%}
.offset-5{margin-left:41.666667%}
.offset-6{margin-left:50%}
.offset-7{margin-left:58.333333%}
.offset-8{margin-left:66.666667%}
.offset-9{margin-left:75%}
.offset-10{margin-left:83.333333%}
.offset-11{margin-left:91.666667%}
@media(min-width:480px){
  .col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}
  .col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}
  .col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}
  .col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}
  .col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}
  .col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}
  .col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}
  .col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}
  .col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}
  .col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}
  .col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}
  .col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}
  .col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}
  .col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}
  .order-sm-first{-ms-flex-order:-1;order:-1}
  .order-sm-last{-ms-flex-order:13;order:13}
  .order-sm-0{-ms-flex-order:0;order:0}
  .order-sm-1{-ms-flex-order:1;order:1}
  .order-sm-2{-ms-flex-order:2;order:2}
  .order-sm-3{-ms-flex-order:3;order:3}
  .order-sm-4{-ms-flex-order:4;order:4}
  .order-sm-5{-ms-flex-order:5;order:5}
  .order-sm-6{-ms-flex-order:6;order:6}
  .order-sm-7{-ms-flex-order:7;order:7}
  .order-sm-8{-ms-flex-order:8;order:8}
  .order-sm-9{-ms-flex-order:9;order:9}
  .order-sm-10{-ms-flex-order:10;order:10}
  .order-sm-11{-ms-flex-order:11;order:11}
  .order-sm-12{-ms-flex-order:12;order:12}
  .offset-sm-0{margin-left:0}
  .offset-sm-1{margin-left:8.333333%}
  .offset-sm-2{margin-left:16.666667%}
  .offset-sm-3{margin-left:25%}
  .offset-sm-4{margin-left:33.333333%}
  .offset-sm-5{margin-left:41.666667%}
  .offset-sm-6{margin-left:50%}
  .offset-sm-7{margin-left:58.333333%}
  .offset-sm-8{margin-left:66.666667%}
  .offset-sm-9{margin-left:75%}
  .offset-sm-10{margin-left:83.333333%}
  .offset-sm-11{margin-left:91.666667%}
}
.clearfix::after{display:block;clear:both;content:""}
.d-none{display:none!important}
.d-inline{display:inline!important}
.d-inline-block{display:inline-block!important}
.d-block{display:block!important}
.d-table{display:table!important}
.d-table-row{display:table-row!important}
.d-table-cell{display:table-cell!important}
.d-flex{display:-ms-flexbox!important;display:flex!important}
.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}
.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}
.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}
.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}
.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}
.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}
.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}
.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}
.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}
.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}
.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}
.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}
.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}
.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}
.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}
.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}
.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}
.align-items-center{-ms-flex-align:center!important;align-items:center!important}
.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}
.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}
.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}
.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}
.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}
.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}
.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}

.float-left{float:left!important}
.float-right{float:right!important}
.float-none{float:none!important}
.position-static{position:static!important}
.position-relative{position:relative!important}
.position-absolute{position:absolute!important}
.position-fixed{position:fixed!important}
.position-sticky{position:-webkit-sticky!important;position:sticky!important}
.fixed-bottom,.fixed-top{position:fixed;right:0;left:0;z-index:1030}
.fixed-top{top:0}
.fixed-bottom{bottom:0}

.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0000);white-space:nowrap;border:0}
.w-25{width:25%!important}
.w-50{width:50%!important}
.w-75{width:75%!important}
.w-100{width:100%!important}
.w-auto{width:auto!important}
.h-25{height:25%!important}
.h-50{height:50%!important}
.h-75{height:75%!important}
.h-100{height:100%!important}
.h-auto{height:auto!important}
.mw-100{max-width:100%!important}
.mh-100{max-height:100%!important}
.m-0{margin:0!important}
.m-1{margin:.25rem!important}
.m-2{margin:.5rem!important}
.m-3{margin:1rem!important}
.m-4{margin:1.5rem!important}
.m-5{margin:3rem!important}
.p-0{padding:0!important}
.p-1{padding:.25rem!important}
.p-2{padding:.5rem!important}
.p-3{padding:1rem!important}
.p-4{padding:1.5rem!important}
.p-5{padding:3rem!important}
.m-auto{margin:auto!important}
.text-justify{text-align:justify!important}
.text-nowrap{white-space:nowrap!important}
.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.text-left{text-align:left!important}
.text-right{text-align:right!important}
.text-center{text-align:center!important}
@media(min-width:576px){
  .d-sm-none{display:none!important}
  .d-sm-inline{display:inline!important}
  .d-sm-inline-block{display:inline-block!important}
  .d-sm-block{display:block!important}
  .d-sm-table{display:table!important}
  .d-sm-table-row{display:table-row!important}
  .d-sm-table-cell{display:table-cell!important}
  .text-sm-left{text-align:left!important}
  .text-sm-right{text-align:right!important}
  .text-sm-center{text-align:center!important}
}
@media(min-width:768px){
  .col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}
  .col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}
  .col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}
  .col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}
  .col-md-2-1{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}
  .col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}
  .col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}
  .col-md-4-1{-ms-flex:0 0 40%;flex:0 0 40%;max-width:40%}
  .col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}
  .col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}
  .col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}
  .col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}
  .col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}
  .col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}
  .col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}
  .col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}
  .order-md-first{-ms-flex-order:-1;order:-1}
  .order-md-last{-ms-flex-order:13;order:13}
  .order-md-0{-ms-flex-order:0;order:0}
  .order-md-1{-ms-flex-order:1;order:1}
  .order-md-2{-ms-flex-order:2;order:2}
  .order-md-3{-ms-flex-order:3;order:3}
  .order-md-4{-ms-flex-order:4;order:4}
  .order-md-5{-ms-flex-order:5;order:5}
  .order-md-6{-ms-flex-order:6;order:6}
  .order-md-7{-ms-flex-order:7;order:7}
  .order-md-8{-ms-flex-order:8;order:8}
  .order-md-9{-ms-flex-order:9;order:9}
  .order-md-10{-ms-flex-order:10;order:10}
  .order-md-11{-ms-flex-order:11;order:11}
  .order-md-12{-ms-flex-order:12;order:12}
  .offset-md-0{margin-left:0}
  .offset-md-1{margin-left:8.333333%}
  .offset-md-2{margin-left:16.666667%}
  .offset-md-3{margin-left:25%}
  .offset-md-4{margin-left:33.333333%}
  .offset-md-5{margin-left:41.666667%}
  .offset-md-6{margin-left:50%}
  .offset-md-7{margin-left:58.333333%}
  .offset-md-8{margin-left:66.666667%}
  .offset-md-9{margin-left:75%}
  .offset-md-10{margin-left:83.333333%}
  .offset-md-11{margin-left:91.666667%}
  .d-md-none{display:none!important}
  .d-md-inline{display:inline!important}
  .d-md-inline-block{display:inline-block!important}
  .d-md-block{display:block!important}
  .d-md-table{display:table!important}
  .d-md-table-row{display:table-row!important}
  .d-md-table-cell{display:table-cell!important}
  .d-md-flex{display:-ms-flexbox!important;display:flex!important}
  .d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}
  .flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}
  .flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}
  .flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}
  .flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}
  .flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
  .flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}
  .flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
  .justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}
  .justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}
  .justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}
  .justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}
  .justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
  .align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}
  .align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}
  .align-items-md-center{-ms-flex-align:center!important;align-items:center!important}
  .align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}
  .align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}
  .align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
  .align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
  .align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}
  .align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}
  .align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
  .align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
  .align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}
  .align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
  .align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
  .align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}
  .align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
  .align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
  .float-md-left{float:left!important}
  .float-md-right{float:right!important}
  .float-md-none{float:none!important}
  .m-md-0{margin:0!important}
  .m-md-1{margin:.25rem!important}
  .m-md-2{margin:.5rem!important}
  .m-md-3{margin:1rem!important}
  .m-md-4{margin:1.5rem!important}
  .m-md-5{margin:3rem!important}
  .p-md-5{padding:3rem!important}
  .m-md-auto{margin:auto!important}
  .text-md-left{text-align:left!important}
  .text-md-right{text-align:right!important}
  .text-md-center{text-align:center!important}
}
@media(min-width:992px){
  .col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}
  .col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}
  .col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}
  .col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}
  .col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}
  .col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}
  .col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}
  .col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}
  .col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}
  .col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}
  .col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}
  .col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}
  .col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}
  .col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}
  .order-lg-first{-ms-flex-order:-1;order:-1}
  .order-lg-last{-ms-flex-order:13;order:13}
  .order-lg-0{-ms-flex-order:0;order:0}
  .order-lg-1{-ms-flex-order:1;order:1}
  .order-lg-2{-ms-flex-order:2;order:2}
  .order-lg-3{-ms-flex-order:3;order:3}
  .order-lg-4{-ms-flex-order:4;order:4}
  .order-lg-5{-ms-flex-order:5;order:5}
  .order-lg-6{-ms-flex-order:6;order:6}
  .order-lg-7{-ms-flex-order:7;order:7}
  .order-lg-8{-ms-flex-order:8;order:8}
  .order-lg-9{-ms-flex-order:9;order:9}
  .order-lg-10{-ms-flex-order:10;order:10}
  .order-lg-11{-ms-flex-order:11;order:11}
  .order-lg-12{-ms-flex-order:12;order:12}
  .offset-lg-0{margin-left:0}
  .offset-lg-1{margin-left:8.333333%}
  .offset-lg-2{margin-left:16.666667%}
  .offset-lg-3{margin-left:25%}
  .offset-lg-4{margin-left:33.333333%}
  .offset-lg-5{margin-left:41.666667%}
  .offset-lg-6{margin-left:50%}
  .offset-lg-7{margin-left:58.333333%}
  .offset-lg-8{margin-left:66.666667%}
  .offset-lg-9{margin-left:75%}
  .offset-lg-10{margin-left:83.333333%}
  .offset-lg-11{margin-left:91.666667%}
  .d-lg-none{display:none!important}
  .d-xl-none{display:none!important}

  .m-lg-auto{margin:auto!important}
  .text-lg-left{text-align:left!important}
  .text-lg-right{text-align:right!important}
  .text-lg-center{text-align:center!important}
  .d-lg-block{display:block!important}
}
@media(min-width:1200px){
  .col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}
  .col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}
  .col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}
  .col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}
  .col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}
  .col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}
  .col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}
  .col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}
  .col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}
  .col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}
  .col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}
  .col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}
  .col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}
  .col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}
  .d-xl-block{display:block!important}
}
.text-lowercase{text-transform:lowercase!important}
.text-uppercase{text-transform:uppercase!important}
.text-capitalize{text-transform:capitalize!important}
.font-weight-light{font-weight:300!important}

.font-weight-bold{font-weight:700!important}

.text-white{color:#fff!important}
.text-primary{color:#007bff!important}
.visible{visibility:visible!important}
.invisible{visibility:hidden!important}
.position-absolute,.position-fixed,.position-relative{z-index:100}
@media (min-width:768px){
  .visible-phone{display:none!important}
}
@media (max-width:767px){
  .hidden-phone{display:none!important}
}
.f400{font-weight:400}
.regular{font-weight:500}
.semiBold{font-weight:600}
.Bold{font-weight:700}

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

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */
html{
  scroll-behavior: smooth;
}

body {
  line-height: 1.5625;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

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

/* Paragraphs */

p {
  margin: 0 0 15px;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration: underline;
  transition: all 0.5s ease;
}
a:hover {
  text-decoration: underline;
}

/* Headings */

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

h1 {
  line-height: 1.33333333333;
}
h2 {
  line-height: 1.27777777778;
}
h3 {
  line-height: 1.28571428571;
}
h4 {
  line-height: 1.4;
}
h5 {
  line-height: 1.2;
}
h6 {
  line-height: 1.71;
}

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-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;
}
/* Form */
.contact-banner-wrp .hbspt-form,
.hs_cos_wrapper_type_form, 
.hs_cos_wrapper_type_blog_subscribe, 
.hs_cos_wrapper_type_google_search, 
.hs_cos_wrapper_type_email_simple_subscription, 
.hs_cos_wrapper_type_password_prompt, 
.hs_cos_wrapper_type_module .widget-type-email_subscriptions, 
.hs_cos_wrapper_type_member_login, 
.hs_cos_wrapper_type_member_register, 
.hs_cos_wrapper_type_password_reset_request, 
.hs_cos_wrapper_type_password_reset{
  max-width: 767px;
  padding: 57px 36px 52px;
  display: inline-block;
  width: 100%;
  margin-bottom: 25px;
}
h3.form-title:empty {
  display: none;
}
form {
  max-width: 767px;
}
form fieldset.form-columns-1 .input,
form fieldset.form-columns-2 .hs-form-field .input {
  margin-right: 0 !important;
}
form fieldset.form-columns-2 .hs-form-field:first-child .input {
  margin-right: 0 !important;
}
form fieldset.form-columns-2 {
  display: flex;
  column-gap: 31px;
}
form fieldset.form-columns-1 .hs-input {
  width: 100% !important;
}
form fieldset .hs-input[type=radio],
form fieldset .hs-input[type=checkbox] {
  width: auto !important;
}
.hs-fieldtype-textarea.hs-input {
  vertical-align: middle;
}

@media(max-width: 767px) {
  form fieldset.form-columns-2 {
    flex-wrap: wrap;
  }
  form fieldset.form-columns-2 .hs-form-field {
    float: none;
    width: 100% !important;
  }
}
@media(max-width:479px) {
  form fieldset.form-columns-2 .hs-form-field:first-child .input,
  form fieldset.form-columns-2 .hs-form-field:first-child .input {
    margin-right: 0 !important;
  }
  form fieldset.form-columns-2 .hs-form-field {
    width: 100% !important;
    float: none;
  }
  .form-columns-2 .hs-form-field .hs-input {
    width: 100% !important;
  }
}


/* Form fields */

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

/* Labels */
.hs-form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

.hs-form label {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: ;
  display: block;
  float: none;
  width: auto;
  text-align: left;
  padding-top: 0;
  margin-bottom: 8px;
}

.hs-form-field > label {
  margin-bottom: 8px;
}

.inputs-list.hs-error-msgs label {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: .5rem;
  color: #ff0000;
}

.hs-error-msgs label {
  color: #ff0000;
}
/* Help text - legends */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  min-height: 38px;
  padding: 0 15px;
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  box-sizing: border-box;
  outline: none;
}
textarea.hs-input {
  height: auto;
}
.hs-input:focus {
  outline: none;
}
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;
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
  width: auto;
}

/* Inputs - datepicker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

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

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #ffffff;
  margin-left: 4px;
}

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

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

.hs-error-msgs label {
  color: #EF6B51;
}

/* Submit button */
form input[type=submit],
form .hs-button {
  margin: 0;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  -webkit-transition: background-color 300ms ease-out;
  transition: background-color 300ms ease-out;
  white-space: normal;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  position: relative;
  text-decoration: none;
}
form .hs-button, 
form input[type=submit] {
  margin-top: 32px;
}
.hs-button {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

#hs-search-module .hs-input {
  margin-bottom: 16px;
}

@media (max-width: 767px) {

  form {
    max-width: 100%;
  }
}
/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

.close-icon-wrp .close:after,
.close-icon-wrp .close:before {
    background-color: #2D6C90;
    height: 3px;
    transition: .3s;
    width: 28px;
}
.custom-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 0 12px #1e252b1a;
    background-color: #2D6C90;
    background-image: radial-gradient(circle farthest-corner at 50% 100%, #7498A5 0%, #2D6C90 70%);
    background-repeat: no-repeat;
    background-position: center bottom;
}
.custom-header.lp-header {
    padding: 15px 0 14px;
}
.header__container {
    margin: 0 auto;
    width: 100%;
}
.custom-logo img {
    width: 146px !important;
}
.header-bottom-in {
    align-items: center;
    display: flex;
    justify-content: space-between;
}
.custom-header.lp-header .header-bottom-in {
    justify-content: center;
}
.custom-menu-wrap {
    display: flex;
    padding-left: 0;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.custom-menu-primary.desktop {
    width: 100%;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.close-icon-wrp,
.mobile-trigger {
    align-items: center;
    cursor: pointer;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li {
    position: relative;
    padding: 0 24px 0 8px;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:not(.hs-item-has-children) {
    padding: 0;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:first-child {
    padding-left: 0;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:last-child {
    padding-right: 0;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:after {
    bottom: -17px;
    content: "";
    height: 27px;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    width: 100%;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a {
    display: inline-block;
    padding: 25px 16px;
    position: relative;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:not(.hs-item-has-children) > a {
    padding: 25px 18px;
}
/* .custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a:before {
    position: absolute;
    top: 50%;
    margin-top: 10px;
    height: 1px;
    width: 0%;
    z-index: 3;
    content: "";
    -webkit-transition: 0.3s;
    transition: 0.3s;
    left: 16px;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul ul > li > a:before {
    content: "";
    height: 1px;
    margin-top: 10px;
    position: absolute;
    top: 50%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 0;
    z-index: 3;
    left: 0;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.active-branch > a:before,
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.active > a:before,
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:hover > a:before {
    left: 16px;
    width: calc(100% - 32px);
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul ul > li.active > a:before,
.custom-menu-primary.desktop .hs-menu-wrapper > ul ul > li:hover > a:before {
    left: 0;
    width: calc(100% - 18px);
}
.custom-menu-primary.desktop .hs-menu-wrapper ul li > a:after,
.custom-menu-primary.desktop .hs-menu-wrapper ul ul li > a:after {
    content: "";
    display: inline-block;
    border-style: solid;
    border-width: 0 5px 5px;
    height: 0;
    border-color: transparent transparent #1e252b;
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    transition: 0.4s ease-in-out;
    margin-left: 8px;
    position: absolute;
    right: 0;
    bottom: 30px;
}
.custom-menu-primary.desktop .hs-menu-wrapper ul li:not(.hs-item-has-children) > a:after {
    border-bottom-color: transparent;
} */
/* .custom-menu-primary.desktop .hs-menu-wrapper ul li.active-branch > a:after,
.custom-menu-primary.desktop .hs-menu-wrapper ul li.active > a:after,
.custom-menu-primary.desktop .hs-menu-wrapper ul li:hover > a:after,
.custom-menu-primary.desktop .hs-menu-wrapper ul ul li:hover > a:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: right;
} */
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li ul {
    list-style: none;
    margin: 0;
    padding: 12px;
    position: absolute;
    left: 0;
    width: 178px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.5s;
    top: 100%;
    transform: translateY(-12px);
  background: #2D6C90;
    z-index: 2;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.hs-item-has-children:hover > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    top: calc(100% + 0px);
    transform: translateY(0);
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.hs-item-has-children > ul li:not(:last-child) {
    margin-bottom: 12px;
}
.custom-menu-primary.desktop .hs-menu-wrapper ul li a {
    font-size: 16px;
    line-height: 1.375;
    text-decoration: none;
  font: normal normal normal 16px/21px Roca;
  font-weight: 300 !important;
}
.custom-menu-primary.desktop .hs-menu-wrapper ul ul li > a:after {
    border-color: transparent;
    bottom: 4px;
}
.custom-menu-primary.desktop .hs-menu-wrapper ul ul li:hover > a:after {
    border-color: transparent transparent #1c9ad6;
}
.custom-menu-primary.desktop .hs-menu-wrapper ul ul li a {
    display: inline-block;
    padding-right: 18px;
    position: relative;
}
.mobile-trigger {
    position: relative;
    transition-duration: 0.5s;
    display: flex;
    justify-content: center;
      margin-left: 20px;
  width: 40px;
}
.mobilegroupig {
    display: flex;
    align-items: center;
    align-content: center;
}
.mobile-trigger .icon {
    cursor: pointer;
    display: inline-block;
    height: 100%;
    position: relative;
    row-gap: 6px;
    display: flex;
    flex-direction: column;
  width: 100%;
      padding: 0;
    align-items: center;
    justify-content: center;
}
.mobile-trigger span {
    background-color: #fff;
    position: relative;
    transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}
.mobile-trigger span:first-child {
    width: 100%;
    height: 3px;
    display: block;
}
.mobile-trigger span:nth-child(2) {
    width: 100%;
    height: 3px;
    display: block;
}
.mobile-trigger span:nth-child(3) {
    display: block;
    height: 3px;
    width: 100%;
}
.close-icon-wrp:hover .close:after,
.close-icon-wrp:hover .close:before,
.mobile-trigger:hover span {
    background-color: #1c9ad6;
}
.close-icon-wrp {
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    height: 40px;
    justify-content: center;
    padding: 7px;
    transition: .5s;
  position: relative;
    width: 40px;
}
.custom-menu-primary.desktop .hs-menu-wrapper ul li:hover > a {
    /* border-bottom: 1px solid #fff; */
    text-decoration: underline;
}
.actions .menu-icon .vertical,
.close-icon-wrp:hover,
.hs-button .vertical {
    transform: rotate(90deg);
}
.close-icon-wrp .close {
    width: 18px;
    height: 18px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-icon-wrp .close:before {
    content: "";
    position: absolute;
    transform: rotate(-45deg);
}
.close-icon-wrp .close:after {
    content: "";
    position: absolute;
    transform: rotate(45deg);
}
.close-icon-wrp span.sq {
    width: 8px;
    height: 8px;
    position: absolute;
    z-index: 2;
    border: 6px solid #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.close-icon-wrp span.sq:before {
    position: absolute;
    content: "";
    width: 4.5px;
    height: 4.5px;
    background-color: #1c9ad6;
    transition: 0.3s;
}
.close-icon-wrp:hover span.sq:before {
    background-color: #000;
}
.actions .menu-icon,
.hs-button .menu-icon {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
}
.actions .menu-icon .bar,
.hs-button .bar {
    position: absolute;
    width: 20px;
    height: 2px;
    transition: 0.4s ease-in-out;
}
.actions .menu-icon .horizontal,
.hs-button .horizontal {
    transform: rotate(0);
}
.actions:hover .menu-icon .horizontal,
.hs-button:hover .horizontal {
    transform: rotate(45deg);
    transform-origin: right;
    width: 14px;
}
.actions:hover .menu-icon .vertical,
.hs-button:hover .vertical {
    transform: rotate(-45deg);
    transform-origin: right;
    width: 14px;
}
.hs_recaptcha.hs-recaptcha.field.hs-form-field {
    overflow: hidden;
    overflow-x: auto;
}
body.no-banner {
    margin-top: 71px;
}
.header-soc {
    display: flex;
    column-gap: 24px;
}
.header-soc .btn-wrapper .hs-button {
    font-size: 16px;
    font-weight: 700;
    font: normal normal 700 16px / 21px Roca;
    text-align: center;
    white-space: nowrap;
    display: flex;
    padding: 8px 36px;
    align-items: center;
    align-content: center;
    line-height: 0;
}
.body-wrapper:not(.hs-blog-post),
.overflow-hidden,
body.mobile-open {
    overflow: hidden;
}
.hs-cta-embed a {
    display: inline-block;
}
@media (min-width: 1201px) and (min-width: 768px) {
    .custom-menu-mobile,
    .mobile-trigger {
        display: none;
    }
}
@media (min-width: 1201px) {
    .bg-overlay {
        display: none;
    }
}
@media (max-width: 1200px) {
    .custom-header.lp-header {
        padding: 3px 0 2px;
    }
  .mobile-menu-header .footer-social .info ul li.button-lclsoe {
    display: none;
}
    .custom-menu-wrap {
        display: none;
    }
    .header-bottom {
        padding: 12px 0;
    }
    .mobile-menu-header {
        background-color: #2d6c90;
        background-image: radial-gradient(circle farthest-corner at 50% 100%, #7498a5 0, #2d6c90 70%);
        background-position: bottom;
        background-repeat: no-repeat;
        padding: 8px 20px;
        position: relative;
        display: flex;
        justify-content: space-between;
    }
    .mobile-menu-header .mobilegroupig {
        column-gap: 20px;
    }
    .bg-overlay,
    .custom-menu-mobile {
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        height: 100%;
        width: 100%;
    }
    .bg-overlay {
        left: 0;
        background-color: #59595b;
        opacity: 0.75;
        z-index: 999;
        visibility: hidden;
        pointer-events: none;
        transition: 0.3s;
    }
    body.mobile-open .bg-overlay {
        visibility: visible;
        pointer-events: auto;
    }
    .custom-menu-mobile {
        overflow: hidden;
        background-color: #2D6C90;
        overflow-y: auto;
        transform: translateX(100%);
        max-width: 472px;
        z-index: 9999;
        transition: 0.5s;
    }
    .mobile-open .custom-menu-mobile {
        transform: translateX(0);
    }
    .custom-menu-primary.mobile {
      padding: 72px 20px;
      padding-top: 72px;
      padding-bottom: 32px;
    }
    .custom-menu-mobile > .header-soc {
      justify-content: center;
    }
    .custom-menu-primary.mobile .hs-menu-wrapper > ul {
        display: block;
    }
    .custom-menu-primary.mobile .hs-menu-wrapper > ul > li {
        margin-bottom: 32px;
    }
    .custom-menu-primary.mobile .hs-menu-wrapper > ul > li:last-child {
        margin-bottom: 0;
    }
    .custom-menu-primary.mobile .hs-menu-wrapper ul ul.hs-menu-children-wrapper {
      background: #5788A0 0% 0% no-repeat padding-box;
      box-shadow: 0px 0px 8px #1B384B1F;
      border-radius: 10px;
      padding: 12px 16px;
    }
    .custom-menu-primary.mobile .hs-menu-wrapper > ul > li > a {
        color: #fff;
        display: inline-block;
        font-size: 16px;
        font-weight: normal;
        letter-spacing: 0;
        line-height: 21px;
        padding-bottom: 16px;
        text-decoration: none;
        font-family: var(--header-font);
    }
    .custom-menu-primary.mobile .hs-menu-wrapper ul ul > li > a {
        color: #fff;
        display: inline-block;
        font-size: 16px;
        font-weight: normal;
        letter-spacing: 0;
        line-height: 21px;
        padding-bottom: 16px;
        text-decoration: none;
        font-family: var(--header-font);
    }
    .custom-menu-primary.mobile .hs-menu-wrapper ul ul > li:last-child > a,
    .custom-menu-primary.mobile .hs-menu-wrapper > ul > li:not(.hs-item-has-children) > a {
        padding-bottom: 0;
    }
}
.header-soc {
    align-items: center;
    align-content: center;
}
#hs_cos_wrapper_header_social_links .footer-social {
    margin-top: 0!important;
}

.header-soc svg path, .header-soc svg rect, .header-soc svg:hover path {
    fill: #fff!important;
}
.header-soc .footer-social {
    margin-top: 0;
}
.header-soc .footer-social ul {
    column-gap: 16px;
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    align-content: center;
}

@media (max-width: 767px) {
    .header__container {
        padding: 0 20px;
    }
  .header-soc .footer-social ul {
    column-gap: 14px;
  }
  .mobile-trigger span {
    background-color: var(--secondary);
  }

}
.footer {
    padding: 60px 0 56px
}

.footer .row {
    display: flex;
    margin-left: -24px;
    margin-right: -24px
}

.footer-logo {
    padding: 0;
    width: 58%
}

.copyright-col {
    padding: 0 24px;
    font-weight: 400;
    text-align: right;
    width: 42%
}

.footer-info {
    margin-bottom: 0;
}

.footer-info p {
    margin-bottom: 12px
}

.footer-info p:last-child {
    margin-bottom: 0
}

.hr-line {
    height: 4px;
    margin-bottom: 56px;
    width: 100%;
    margin-top: 56px
}

.footer-menu .hs-menu-wrapper>ul {
    column-gap: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.footer-menu .hs-menu-wrapper>ul>li {
    width: 25%
}

.footer-menu .hs-menu-wrapper ul ul li:not(:last-child) {
    margin-bottom: 16px
}

.footer-menu .hs-menu-wrapper ul ul li a {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    display: inline-block;
    text-decoration: none
}

.footer-menu .hs-menu-wrapper ul li a:hover {
    text-decoration: none
}

.footer-soc {
    margin-bottom: 0;
}

.footer-soc .footer-social {
    margin-top: 0 !important
}

.footer-soc ul {
    column-gap: 32px !important;
    justify-content: flex-end !important
}

.copyright-wrp {
    display: flex;
    flex-wrap: wrap;
    column-gap: 6px;
    justify-content: flex-end;
    row-gap: 15px
}

.copyright-wrp.mobile {
    display: none
}

.lp-footer .footer-soc {
    height: 32px
}

@media(min-width:992px) {
    .copyright.mobile {
        display: none
    }
}

@media (max-width:991px) and (min-width:768px) {
    .footer-menu .hs-menu-wrapper ul ul li a {
        font-size: 16px;
        line-height: 22px
    }
}

@media (max-width:991px) {
    .footer {
        padding: 57px 0 56px
    }
    .footer-info {
        display: none
    }
    .footer-soc {
        margin-bottom: 39px
    }
    .copyright-col,
    .footer-logo {
        width: 50%
    }
    .footer-logo img {
        width: 376px !important
    }
    .copyright .hs_cos_wrapper {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column
    }
}


.footer-bottom {
    background: #f2f1ed;
}
.footer {
    padding-bottom: 0;
}

.row.bottomteir .columninner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-between;
    align-items: center;
      width: 100%;
      margin-top: 64px;
  margin-bottom: 72px;
}
.btn-wrapper.alignmentoptions {
  display: flex;
}

.footer-btn .btn-white-outline-wrapper .hs-button {
background-color: transparent;
    border: 2px solid #2D6C90;
    border-radius: 38px;
    color: #2D6C90;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 700;
    font: normal normal 700 16px / 21px Roca;
    text-align: center;
    white-space: nowrap;
    display: flex;
    padding: 8px 21px;
    padding-top: 10px;
    align-items: center;
    align-content: center;
    line-height: 0;
}
.footer .footer-bottom .row.topteir {
    margin-top: -30px;
    overflow: visible;
}
span#hs_cos_wrapper_footer_logo_hs_logo_widget {
    overflow: visible;
    height: 100%;
    position: relative;
}
a#hs-link-footer_logo_hs_logo_widget {
    height: 100%;
    position: relative;
}
@media(max-width:767px) {
    .footer {
        padding: 56px 0;
      padding-bottom: 0;
    }
    .footer-logo img {
        width: 166px !important
    }
    .copyright {
        text-align: right
    }
    .footer-menu .hs-menu-wrapper>ul {
        flex-wrap: wrap;
        column-gap: 20px;
        row-gap: 56px
    }
    .footer-menu .hs-menu-wrapper>ul>li {
        width: calc(50% - 20px)
    }
    .footer-logo {
        padding-right: 20px
    }
    .copyright-col {
        padding-left: 20px
    }
    .copyright-wrp,
    .lp-footer .footer-soc {
        display: none
    }
    .copyright-wrp.mobile {
        display: block;
        margin-top: 56px;
        text-align: right
    }
    .footer-soc {
        margin-bottom: 0
    }
    .footer .footer-bottom {
        overflow: hidden
    }
    .lp-footer .copyright-wrp.mobile {
        margin-top: 16px
    }
  .footer .footer-bottom .row.topteir {
    margin-top: 24px;
    overflow: visible;
  }
  .footer-btn {
    width: fit-content;
  }
  .row.bottomteir .columninner {
    grid-template-columns: 1fr;
    justify-content: start;
    align-items: center;
    width: 100%;
    margin-top: 24px;
    row-gap: 24px;
    margin-bottom: 0;
  }
  .footer .footer-bottom .content-wrapper {
    max-width: 100%;
    width: max-content;
    padding: 0;
  }
}

@media(max-width:350px) {
    .footer .row {
        flex-wrap: wrap;
        row-gap: 30px
    }
    .copyright-col,
    .footer-logo {
        width: 100%;
        text-align: center
    }
    .footer-soc ul {
        justify-content: center !important
    }
    .copyright,
    .copyright-wrp.mobile {
        text-align: center
    }
    .footer-menu .hs-menu-wrapper>ul>li {
        width: 100%
    }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.banner-section .dnd-section>.row-fluid {
  padding: 0;
}
.dnd-section[class*="full-width-section"]>.row-fluid {
  padding-left: 0;
  padding-right: 0;
}
.banner-section .dnd-section {
  padding: 0;
}

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