









.modal {
  display: none;      
}
.modal__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  opacity: 0;
  
  transition: opacity 0.2s;
  will-change: opacity;
  background-color: #000;

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

.modal__header {
  /* Optional */
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.modal__close {
  /* Optional */
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='15px' height='16px' viewBox='0 0 15 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='2.-Menu' transform='translate(-15.000000, -13.000000)' stroke='%23000000'%3E%3Cg id='Group' transform='translate(15.000000, 13.521000)'%3E%3Cpath d='M0,0.479000129 L15,14.2971819' id='Path-3'%3E%3C/path%3E%3Cpath d='M0,14.7761821 L15,-1.24344979e-14' id='Path-3'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  width: 15px;
  height: 15px;
}

.modal__wrapper {
  width: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 0;

  max-width: 540px;
  max-height: 80vh;
  
  transition: transform 0.2s, opacity 0.2s;
  will-change: transform;
  background-color: #fff;
 
  display: flex;
  flex-direction: column; 

  -webkit-transform: translateY(5%);
  transform: translateY(5%);
  
  -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */

  /* Optional */
  box-shadow: 0 2px 6px #777;
  border-radius: 5px;    
  margin: 20px;  
}

.modal__content {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
  flex-grow: 1;
  /* Optional */
  padding: 1.5rem;
}

.modal.is-active {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 9999;
}

.modal.is-visible .modal__wrapper {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.modal.is-visible .modal__overlay {
  opacity: 0.5;
}









/* 1a. Global Settings */
















  










  











  









/* 1b. Header Settings */















   




/* 1c. Typography */





































































































































  

















/* 1d. Buttons */




















































/* 1e. Forms */






































  








































/* 1f. Tables */


















 


/* 1g. Blog */



















    






















/* 1h. Footer */

















:root {
  /** GLOBAL SETTINGS **/

  /* Global Colors  */
  --primary-color:#4AC7AA;
  --secondary-color:#ffffff;
  
  --primary-color-rgb:74, 199, 170;
  --secondary-color-rgb:255, 255, 255;

  --body-background-color: #FFFFFF;
  
  --swiper-theme-color: var(--primary-color);
  
  /** GLOBAL FONTS **/

  /* Menu Font */
  
  
  --global-menu-font-family: Roboto;
 
  
  
  
  

  
    
  

  --global-menu-font-style: normal;
  --global-menu-font-weight: 700;
  --global-menu-font-decoration: none;
  

  
  
  --global-menu-color: #0d0a0a;

  /* Header font */
    

  --global-heading-font-family: 'palatino linotype', 'book antiqua', palatino, serif;
  
  
  
  
  

  
    
  

  --global-heading-font-style: normal;
  --global-heading-font-weight: 700;
  --global-heading-font-decoration: none;

  
  
  --global-heading-color: #0d0a0a;

  /* Body font */
  

  --global-body-font-family: Roboto;
  
  
  
  
  

  
    
  

  --global-body-font-style: normal;
  --global-body-font-weight: normal;
  --global-body-font-decoration: none;

  
  
  --global-body-color: #0d0a0a;

  /* spacing */
  --dnd-section-padding-desktop: 80px;
  --dnd-section-padding-tablet: 60px;
  --dnd-section-padding-mobile: 40px;
  --container-width: 1110px;

  
    /** HEADER SETTINGS **/
  --header-bg-color: rgba(255, 255, 255, 1.0);
  --header-menu-link-color: rgba(13, 10, 10, 1);
  --header-menu-link-color-hover: rgba(74, 199, 170, 1.0);
  --header-child-bg-color: rgba(255, 255, 255, 1.0);
  --header-child-menu-link-color: rgba(13, 10, 10, 1);
  --header-child-menu-link-color-hover: rgba(74, 199, 170, 1.0);
  --header-font-size: 14px;
  --header-menu-text-transform: none;
  --header-menu-letter-spacing: 0.14px;

  /** TYPOGRAPHY **/

  /* H1 */
  

  --h1-font-family: var(--global-heading-font-family);
  --h1-font-weight: var(--global-heading-font-weight);
  --h1-color: #0d0a0a;
  
  

  --h1-font-size-desktop: 72px;
  --h1-font-size-tablet: 60px;
  --h1-font-size-mobile: 34px;
  --h1-line-height: 1.11;
  --h1-letter-spacing: -0.72px;

   /* H2 */
  
    --h2-font-family: var(--global-heading-font-family);
    --h2-font-weight: var(--global-heading-font-weight);
    --h2-color: #0d0a0a;

  

  --h2-font-size-desktop: 48px;
  --h2-font-size-tablet: 40px;
  --h2-font-size-mobile: 32px;
  --h2-line-height: 1.21;
  --h2-letter-spacing: -0.48px;

  /* H3 */
  
  --h3-font-family: var(--global-heading-font-family);
  --h3-font-weight: var(--global-heading-font-weight);
  --h3-color: #0d0a0a;

  

  --h3-font-size-desktop: 36px;
  --h3-font-size-tablet: 32px;
  --h3-font-size-mobile: 28px;
  --h3-line-height: 1.22;
  --h3-letter-spacing: 0px;

  /* H4 */
  
    --h4-font-family: var(--global-heading-font-family);
    --h4-font-weight: var(--global-heading-font-weight);
    --h4-color: #0d0a0a;

  

  --h4-font-size-desktop: 28px;
  --h4-font-size-tablet: 25px;
  --h4-font-size-mobile: 22px;
  --h4-line-height: 1.36;
  --h4-letter-spacing: 0px;

  /* H5 */
  
    --h5-font-family: var(--global-heading-font-family);
    --h5-font-weight: var(--global-heading-font-weight);
    --h5-color: #0d0a0a;

  

  --h5-font-size-desktop: 24px;
  --h5-font-size-tablet: 22px;
  --h5-font-size-mobile: 20px;
  --h5-line-height: 1.25;
  --h5-letter-spacing: 0px;

/* H6 */
  
    --h6-font-family: var(--global-heading-font-family);
    --h6-font-weight: var(--global-heading-font-weight);
    --h6-color: #0d0a0a;

  

  --h6-font-size-desktop: 20px;
  --h6-font-size-tablet: 18px;
  --h6-font-size-mobile: 16px;
  --h6-line-height: 1.25;
  --h6-letter-spacing: 0px;
  --h6-text-transform: uppercase;


   /* body para */
  
  
    --para-font-family: var(--global-body-font-family);
    --para-font-weight: var(--global-body-font-weight);
    --para-color: #0d0a0a;

  

  --para-font-size-desktop: 20px;
  --para-font-size-tablet: 16px;
  --para-font-size-mobile: 16px;
  --para-line-height: 1.56;
  --para-letter-spacing: 0.18px;
  --para-margin-bottom: 20px;

  
  /* blog para */
  --blog-para-color: #0d0a0a;
  --blog-para-font-size-desktop: 20px;
  --blog-para-font-size-tablet: 16px;
  --blog-para-font-size-mobile: 16px;
  --blog-para-line-height: 1.78;
  --blog-para-letter-spacing: 0.36px;
  --blog-para-margin-bottom: 20px;


  /* blockquote */
  

  --blockquote-font-family: 'palatino linotype', 'book antiqua', palatino, serif;
  --blockquote-color: #0d0a0a;
  
    
    
    
    

    
      
    
  
    --blockquote-font-style: normal;
    --blockquote-font-weight: 700;
    --blockquote-font-decoration: none; 

  

  --blockquote-font-size-desktop: 36px;
  --blockquote-font-size-tablet: 32px;
  --blockquote-font-size-mobile: 25px;
  --blockquote-line-height: 1.22;
  --blockquote-letter-spacing: 0px;

  /* link color */
  --link-color: rgba(74, 199, 170, 1.0);
  --link-color-hover: rgba(13, 10, 10, 1.0);
  --link-decoration: ;

  /* read more */
  --readmore-font-size-desktop: 14px;
  --readmore-font-size-tablet: 14px;
  --readmore-font-size-mobile: 14px;
  --readmore-line-height: 1.56;
  --readmore-font-weight: 600;
  --readmore-letter-spacing: 0.14px;
  --readmore-text-transform: none;
  --readmore-color: rgba(74, 199, 170, 1.0);
  --readmove-color-hover: rgba(74, 199, 170, 1.0);
  --readmore-icon-color: ;
  --readmore-icon-color-hover: ;
  --readmore-icon-size: ;


  /** Buttons **/
  --cta-size-small-font-size: 14px;
  --cta-size-small-padding: 11px 20px;

  --cta-size-regular-font-size: 18px;
  --cta-size-regular-padding: 17px 20px;

  --cta-size-large-font-size: 16px;
  --cta-size-large-padding: 25px 40px;


  /* PRIMARY CTA */

  

  --cta-primary-color: rgba(255, 255, 255, 1.0);
  --cta-primary-font-weight: 600;
  --cta-primary-letter-spacing: 0.14px;
  --cta-primary-text-transform: none;

  --cta-primary-bg-color: rgba(74, 199, 170, 1.0);
  --cta-primary-border: 1px none #4AC7AA;
  --cta-primary-border-radius: 8px;
  --cta-primary-bg-color-hover: rgba(74, 199, 170, 1.0);
  --cta-primary-color-hover: rgba(255, 255, 255, 1.0);
  --cta-primary-border-hover: 1px none #4AC7AA;


  /* SECONDARY CTA */

  

  --cta-secondary-color: rgba(255, 255, 255, 1.0);
  --cta-secondary-font-weight: 600;
  --cta-secondary-letter-spacing: 0.14px;
  --cta-secondary-text-transform: none;

  --cta-secondary-bg-color: rgba(255, 255, 255, 1.0);
  --cta-secondary-border: 1px none #ffffff;
  --cta-secondary-border-radius: 8px;
  --cta-secondary-bg-color-hover: rgba(255, 255, 255, 1.0);
  --cta-secondary-color-hover: rgba(255, 255, 255, 1.0);
  --cta-secondary-border-hover: 1px none #ffffff;


  /* SIMPLE TEXT CTA */

  

  --cta-simple-font-weight: ;
  --cta-simple-letter-spacing: 0.14px;
  --cta-simple-text-transform: none;

  --cta-simple-color-hover: rgba(74, 199, 170, 1.0);
  --cta-simple-underline-width: 1;
  --cta-simple-underline-color: rgba(255, 255, 255, 1.0);


  /* FORMS */

  /* title */
  --form-title-bg-color: rgba(239, 242, 246, 1.0);
  --form-title-color: #0d0a0a;
  --form-title-padding: 25px 25px;
  --form-title-border: 1px none #D0D0D0;
  --form-title-corner-radius: 8px;

  /* labels */
  

    --form-labels-font-family: var(--para-font-family);
    --form-labels-color: #707883;

  

  --form-labels-color-custom: #707883;
  --form-labels-font-size: 20px;
  --form-labels-letter-spacing: 0.3px;
  --form-labels-padding: 6px 0px;


  /* fields */  
  --form-fields-bg-color: rgba(255, 255, 255, 1.0);
  --form-fields-placeholder-color: #707883;
  
  

    --form-fields-font-family: var(--para-font-family);
    --form-fields-color: #0d0a0a;

  

  --form-fields-color-custom: #0d0a0a;
  --form-fields-font-size: 20px;
  --form-fields-letter-spacing: 0.3px;
  --form-fields-padding: 12px 12px;
  --form-fields-border: 1px none #111111;
  --form-fields-corner-radius: 4px;

  --form-fields-checkbox-radio-color: #4AC7AA;
  --form-fields-checkbox-radio-bg-color: #FFFFFF;

  --form-fields-gdpr-font-size:12px; 
  --form-fields-gdpr-color:#707883; 
  --form-fields-gdpr-line-height:1.4; 
  --form-fields-gdpr-letter-spacing:0px; 

  --form-fields-richtext-color:#707883; 
  --form-fields-richtext-line-height:1.67; 


  
  --form-fields-helptext-font-size: 12px;
  --form-fields-helptext-text-color: #707883;
  --form-fields-helptext-line-height: 1.4;

  
  --form-fields_error-text-color: #a30001;

  
  --form-bg-color: rgba(255, 255, 255, 0.0);

  
  --form-border: 1px none #f6aa2d;
  --form-corner-radius: 0px;

  
  --form-padding: 0px 0px;


  /* TABLE */
  --table-head-bg-color: rgba(74, 199, 170, 1.0);
  --table-head-font-color: #FFFFFF;

  --table-head-border: 2px none #0d0a0a;

  
  --table-font-color: #0d0a0a;

  
  --table-bg-color: rgba(255, 255, 255, 1.0);

  
  --table-border: 1px solid #0d0a0a;

  
  --table-padding: 15px 15px;

  /* BLOG */
  
  --listing-post-bg-color: rgba(255, 255, 255, 1.0);
  --listing-post-title-color: #0d0a0a;
  --listing-post-tag-color: ;
  --listing-post-text-color: #0d0a0a;
  --listing-post-font-size: 14px;
  --listing-post-image-height: ;
  --listing-post-padding: 30px 25px;

  --listing-post-border: ;
  --listing-post-corner-radius: 8px;

  --listing-post-shadow-color: rgba(0, 0, 0, 0.05);
  --listing-post-shadow-size: 35px;
      
  
  --newsletter-bg-color: rgba(74, 199, 170, 1.0);
  --newsletter-text-color: #ffffff;

  
  --topic-bg-color: ;
  --topic-color: #4AC7AA;
  --topic-font-size: 13px;
  --topic-text-transform: uppercase;
  --topic-font-weight: 700;

  --topic-border: ;
  --topic-border-radius: ;

  --topic-padding: ;

  --topic-bg-color-hover: ;
  --topic-color-hover: #4AC7AA;
  --topic-border-hover: ;

  /* Footer */
   --footer-style-options-bg-color: rgba(74, 199, 170, 1.0);
   --footer-style-options-header-color: #fff;
   --footer-style-options-text-color: #fff;
   --footer-style-options-link-color: #fff;
   --footer-style-options-link-color-hover: rgba(255, 255, 255, 1.0);
   --footer-style-options-horizontal-line-color: rgba(255, 255, 255, 1.0);
   --footer-style-options-font-size: 14px;
   --footer-style-options-bottom-font-size: ;

}
/* Theme base styles */

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

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

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

.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: 28px;
    margin-left: 2.127659574%;
    *margin-left: 2.0744680846382977%;
    -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%;
    *width: 99.94680850063828%;
}

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

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

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

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

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

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

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

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

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

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

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

.container-fluid {
    *zoom: 1;
}

.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%;
        *zoom: 1;
    }

    .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: 28px;
        margin-left: 2.762430939%;
        *margin-left: 2.709239449638298%;
        -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%;
        *width: 99.9468085036383%;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .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: 28px;
        margin-left: 2.564102564%;
        *margin-left: 2.510911074638298%;
        -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%;
        *width: 99.94680851063829%;
    }

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

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

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

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

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

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

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

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

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

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

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

/* Clearfix */

.clearfix {
    *zoom: 1;
}

.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 ;
    }
}
.content-wrapper {
    margin: 0 auto;
    max-width: 1240px;
    max-width: 1110px;
    padding: 0 20px;
}

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

.dnd-section,
.content-wrapper--vertical-spacing {
    padding: 80px 20px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.dnd-section > .row-fluid {
    margin: 0 auto;
    max-width: 1200px;
    max-width: 1110px;
}

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

@media (min-width: 768px) {
    .dnd-section {
        padding-top: 60px;
      padding-bottom: 60px;
    }
}

@media (min-width: 1025px) {
    .dnd-section {
        padding-top: 80px;
         padding-bottom: 80px;
    }
}

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

    .dnd-module .widget-type-linked_image img {
        margin-bottom: 10px;
    }
}

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

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

html {
  font-size: 16px;
}


@media(min-width: 768px) {
  html {
      font-size: 16px;
  } 
}


@media(min-width: 1025px) {
  html {
      font-size: 20px;
  }
}

body {
  font-family: Lato, sans-serif;
  color: #494A52;
  line-height: 1.4;
  line-height: 1.56;
  letter-spacing: 0.18px;
  word-break: break-word;
  background-color: #FFFFFF;
  
    font-family: Roboto, sans-serif; font-style: normal; font-weight: normal; text-decoration: none; color:#0d0a0a;
  
}



img {
  max-width: 100%;
}

/* Paragraphs */

p {
    font-size: 1rem;
    margin: 0 0 1.4rem;
    margin-bottom: 20px;
}

strong {
  font-weight: 700;
}

/* Anchors */

a {
  color: #0270E0;
  color: rgba(74, 199, 170, 1.0);
  cursor: pointer;
  text-decoration: none;
}

a:hover,
a:focus {
  color: rgba(13, 10, 10, 1.0);
}

a:active {
  color: rgba(13, 10, 10, 1.0);
}

a[data-hs-anchor]:empty {
    padding-top: 90px;
    display: inline-block;
    margin-top: -90px;
}

.tag-listing-link-wrapper {
  text-align: right;
}

.read-more {
  color: rgba(74, 199, 170, 1.0);
  font-size: 14px;
  line-height: 1.56;
  text-transform: none;
  letter-spacing: 0.14px;
  font-weight: 600;
  margin-top: 1rem;
}

.read-more:hover,
.read-more:focus {
  color: rgba(74, 199, 170, 1.0);
}

.read-more.link-small {
    display: flex;
}

.read-more.link-small .link-icon {
  padding-left: 5px;
}


@media(min-width: 768px) {
  .read-more {
    font-size: 14px;
  } 
}


@media(min-width: 1025px) {
  .read-more {
    font-size: 14px;
  }
}


/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #111111;
  font-family: 'Roboto', serif;
  font-weight: 900;
  margin: 0 0 1.4rem;
  font-weight: 700; text-decoration: none; font-family: 'palatino linotype', 'book antiqua', palatino, serif; font-style: normal; color:#0d0a0a;
}

h1 {
  font-size: 2.1rem;
  font-size: 34px;
  line-height: 1.11;
  letter-spacing: -0.72px;
  
    font-weight: 700; text-decoration: none; font-family: 'palatino linotype', 'book antiqua', palatino, serif; font-style: normal; color:#0d0a0a;
    color: #0d0a0a; 
  
}

h2 {
  font-size: 1.6rem;
  font-size: 32px;
  line-height: 1.21;
  letter-spacing: -0.48px;
  
    font-weight: 700; text-decoration: none; font-family: 'palatino linotype', 'book antiqua', palatino, serif; font-style: normal; color:#0d0a0a;
    color: #0d0a0a; 
  
}

h3 {
  font-size: 1.25rem;
  font-size: 28px;
  line-height: 1.22;
  letter-spacing: 0px;
  
    font-weight: 700; text-decoration: none; font-family: 'palatino linotype', 'book antiqua', palatino, serif; font-style: normal; color:#0d0a0a;
    color: #0d0a0a; 
  
}

h4 {
  font-size: 1.175rem;
  font-size: 22px;
  line-height: 1.36;
  letter-spacing: 0px;
  
    font-weight: 700; text-decoration: none; font-family: 'palatino linotype', 'book antiqua', palatino, serif; font-style: normal; color:#0d0a0a;
    color: #0d0a0a; 
  
}

h5 {
  font-size: 1rem;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0px;
  
    font-weight: 700; text-decoration: none; font-family: 'palatino linotype', 'book antiqua', palatino, serif; font-style: normal; color:#0d0a0a;
    color: #0d0a0a; 
  
}

h6 {
  font-size: 0.9rem;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0px;
  text-transform: uppercase;
  
    font-weight: 700; text-decoration: none; font-family: 'palatino linotype', 'book antiqua', palatino, serif; font-style: normal; color:#0d0a0a;
    color: #0d0a0a; 
  
}


@media(min-width: 768px) {
  h1 {
    font-size: 60px;
  } 
  h2 {
    font-size: 40px;
  } 
  h3 {
    font-size: 32px;
  } 
  h4 {
    font-size: 25px;
  } 
  h5 {
    font-size: 22px;
  } 
  h6 {
    font-size: 18px;
  } 
}


@media(min-width: 1025px) {
  h1 {
    font-size: 72px;
  } 
  h2 {
    font-size: 48px;
  } 
  h3 {
    font-size: 36px;
  } 
  h4 {
    font-size: 28px;
  } 
  h5 {
    font-size: 24px;
  } 
  h6 {
    font-size: 20px;
  } 
}

/* Lists */
ul,
ol {
  margin: 0 0 1.5rem;
}

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  margin: 2rem 0;
}

blockquote,
blockquote p,
.hs-blog-post .blog-content-main-wrapper blockquote p {
  font-size: 25px;
  line-height: 1.22;
  letter-spacing: 0px;
  border-left-color: #ffffff;
  
  
    font-family: 'palatino linotype', 'book antiqua', palatino, serif; font-style: normal; font-weight: 700; text-decoration: none; color:#0d0a0a;
  

}


@media(min-width: 768px) {
  blockquote,
  blockquote p,
  .hs-blog-post .blog-content-main-wrapper blockquote p {
    font-size: 32px;
  } 
}


@media(min-width: 1025px) {
  blockquote,
  blockquote p,
  .hs-blog-post .blog-content-main-wrapper blockquote p {
    font-size: 36px;
  } 
}

/* Horizontal rules */

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

/* Subscripts and superscripts */

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Focus styles */

:focus {
  outline: auto;
  outline-color: green;
}

.disable-focus-styles :focus {
  outline: none;
}
button,
.button,
.cta_button[title],
.cta_primary,
.cta_secondary {
  cursor: pointer;
  display: inline-block;
  font-size: 0.92rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s linear;
  white-space: normal;
  word-break: break-word;
}

button,
.button,
.cta_button[title],
.cta_primary {
  background-color: rgba(74, 199, 170, 1.0);
  border: 1px none #4AC7AA;
  border-radius: 8px;
  color: rgba(255, 255, 255, 1.0);
  padding: 17px 20px;
  text-transform: none;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.14px
}

.button svg {
    fill: rgba(255, 255, 255, 1.0);
}

.button.button--icon-right svg {
  margin-right: 0;
  margin-left: 10px;
}

.button svg {
  margin-right: 5px;
}

button:disabled,
.button:disabled,
.cta_button[title]:disabled,
.cta_primary:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

button:hover,
button:focus,
.button:hover,
.button:focus,
.cta_button[title]:hover,
.cta_button[title]:focus,
.cta_primary:hover,
.cta_primary:focus {
  background-color:rgba(74, 199, 170, 1.0);
  color: rgba(255, 255, 255, 1.0);
  border: 1px none #4AC7AA;
}

button:active,
.button:active,
.cta_button[title]:active,
.cta_primary:active{
  background-color: #71727A;
  border-color: #71727A;
  color: #FFF;
  text-decoration: none;
}

button:hover,
button:focus,
.button:hover,
.button:focus,
button:active,
.button:active,
.cta_button[title]:hover,
.cta_button[title]:focus,
.cta_button[title]:active,
.cta_primary:hover,
.cta_primary:focus,
.cta_primary:active {
  background-color: rgba(74, 199, 170, 1.0);
  border: 1px none #4AC7AA;
  color: rgba(255, 255, 255, 1.0);
}

.button--icon-right {
  display: inline-flex;
  flex-direction: row-reverse;
}

/* Secondary Button */

.button.button--secondary,
.cta_button.cta_secondary,
.cta_secondary {
  background-color: rgba(255, 255, 255, 1.0);
  border: 1px none #ffffff;
  border-radius: 8px;
  color: rgba(255, 255, 255, 1.0);
  padding: 17px 20px;
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0.14px
}

.button.button--secondary svg,
.cta_button.cta_secondary svg,
.cta_secondary svg {
  fill: rgba(255, 255, 255, 1.0);
}

.button.button--secondary:hover,
.button.button--secondary:focus,
.button.button--secondary:active,
.cta_button.cta_secondary:hover,
.cta_button.cta_secondary:focus,
.cta_button.cta_secondary:active,
.cta_secondary:hover,
.cta_secondary:focus,
.cta_secondary:active {
  background-color: rgba(255, 255, 255, 1.0);
  border: 1px none #ffffff;
  color: rgba(255, 255, 255, 1.0);
}

/* Simple Button */
.button.button--simple,
.cta_button.cta_simple,
.cta_simple{
  color: rgba(74, 199, 170, 1.0);
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0.14px;
  background: none;
  padding: 0 !important;
  position: relative;
}

.button.button--simple svg,
.button--simple svg{
  fill: rgba(74, 199, 170, 1.0);
}



  .button.button--simple:after,
  .cta_button.cta_simple:after,
  .cta_simple:after {
    content: none;
  }



.button.button--simple:hover,
.button.button--simple:focus,
.button.button--simple:active,
.cta_button.cta_simple:hover,
.cta_button.cta_simple:focus,
.cta_button.cta_simple:active,
.cta_simple:hover,
.cta_simple:focus,
.cta_simple:active{
  border: none;
  color: rgba(74, 199, 170, 1.0);
}



  .button.button--simple:hover:after,
  .button.button--simple:focus:after,
  .button.button--simple:active:after,
  .cta_button.cta_simple:hover,
  .cta_button.cta_simple:focus,
  .cta_button.cta_simple:active,
  .cta_simple:hover,
  .cta_simple:focus,
  .cta_simple:active{
    content: none;
  }



/* Button Sizing */
.button.button--small,
.cta_button.button--small {
  font-size: 14px;
  padding: 11px 20px;
}

.button.button--large,
.cta_button.button--large {
  font-size: 16px;
  padding: 25px 40px;
}
/* Form fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Form */

form {
  font-family: Lato, sans-serif;
  
    font-family: Roboto;
  
  background-color: rgba(255, 255, 255, 0.0);
  border: 1px none #f6aa2d;
  border-radius: 0px;
  padding: 0px 0px;
}



fieldset.form-columns-1 .hs-input:not([type="checkbox"]):not([type="radio"]) {
  width: 100% !important;
}

/* Form Title */

.form-title {
  background-color: rgba(239, 242, 246, 1.0);
  border: 1px none #D0D0D0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  color: #0d0a0a;
  padding: 25px 25px;
  margin-bottom: 0;
}


/** special labels **/
.field {
    position: relative;
}

.field.text>label {
    position: absolute;
    top: 0;
    margin: 12px 12px;
    padding: 0;
    pointer-events: none;
    transition: .4s;
    left: 0;
    z-index: 2;
    padding: 0;
}

.field.text.active>label {
    margin-top: 5px;
    font-size: 13px;
}

.focus label,
.active label{
    font-size:13px;
}

/* animation to add space for label and reduce right before the send button */
.field.text {
    transition: .3s;
}

.field.text.active~button,
.field.text.active~input[type='submit'],
.field.text.active~.hs-button {
    margin-top: 1rem;
}


/* Form Title */

.form-title {
  background-color: rgba(239, 242, 246, 1.0);
  border: 1px none #D0D0D0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  color: #0d0a0a;
  padding: 25px 25px;
  margin-bottom: 0;
}

/* Labels */

form label,
.hs-form-field > label {
  color: #33475B;
  display: block;
  font-size: 0.875rem;
  padding-top: 0;
  margin-bottom: 0.35rem;
  text-align: left;
  width: auto;
  font-size: 16px;
  padding: 6px 0px;
  
    font-family: Roboto, sans-serif; font-style: normal; font-weight: normal; text-decoration: none; color:#0d0a0a;
    color: #707883;
  
  letter-spacing: 0.3px;
}


/* Help text - legends */

form legend,
.hs-form-field legend {
  color: #33475B;
  font-size: 0.875rem;
  color: #707883;
  font-size: 12px;
  line-height: 1.4;
}

/* Inputs */

.input {
  position: relative;
}

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=number],
input[type=file],
select,
textarea {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 3px;
  color: #33475B;
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
  min-height: 45px; 
  
    font-family: Roboto, sans-serif; font-style: normal; font-weight: normal; text-decoration: none; color:#0d0a0a;
    color: #0d0a0a;
  

  background-color: rgba(255, 255, 255, 1.0);
  border: 1px none #111111;
  border-radius: 4px;
  font-size: 16px;
  padding: 12px 12px;
  padding-top:22px;
  letter-spacing: 0.3px;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=file]:focus,
select:focus,
textarea:focus {
  outline-color: rgba(82, 168, 236, 0.8);
}

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


::-webkit-input-placeholder {
  color: #707883;
}

::-moz-placeholder {
  color: #707883;
}

:-ms-input-placeholder {
  color: #707883;
}

:-moz-placeholder {
  color: #707883;
}

::placeholder {
  color: #707883;
}


/* Inputs - checkbox/radio */

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

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

.inputs-list>li label {
    padding-top: 0;
    padding-bottom: 0;
}

.inputs-list input,
.inputs-list span {
  font-size: 0.875rem;
  vertical-align: middle;
}

.hs-input[type=checkbox],
.hs-input[type=radio] {
  border: none;
  cursor: pointer; 
  line-height: normal;
  margin: 0px 15px 3px 0px;
  padding: 0;
  width: auto;
  border-radius: 4px;
}

input[type=radio],
input[type=checkbox]{
    background-color: #FFFFFF;
    -webkit-appearance: none;
    width: 24px !important;
    height: 24px;
    margin-right: .9rem;
    margin-top: 2px;
    float: left;
}

input[type=radio]{
  border-radius: 50% !important;
  border: 6px solid #fff;
  color: transparent;
  border: none;
}

input[type=radio]:checked {
  background-color: #4AC7AA;
  box-shadow: 0px 0px 8px 0px #d2d2d2;
  -webkit-box-shadow: 0px 0px 8px 0px #d2d2d2;
  -moz-box-shadow: 0px 0px 8px 0px #d2d2d2;
  border: 6px solid #FFFFFF;
}

input[type=checkbox]:checked {
  background-color: #FFFFFF;
}

input[type=checkbox]:checked:before {
  content: "";
  display: block;
  margin: 3px auto;
  width: 8px;
  height: 13px;
  border: solid #4AC7AA;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.hs-fieldtype-radio > label,
.hs-fieldtype-checkbox > label {
    font-weight: bold;
    font-style: normal;
    margin-bottom: 10px;
    display: block;
    margin-top: 20px;
}


/* Inputs - datepicker */
.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  color: #33475B;
  content:'\01F4C5';
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

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

.fn-date-picker td.is-today .pika-button {
  color: #343A40;
}

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

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

/* Inputs - Datepicker */

.hs-datepicker .is-selected button.pika-button {
  background-color: #ffffff;
}

.hs-datepicker button.pika-button:hover {
  background-color: #4AC7AA !important;
}


/* Inputs - file picker */

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

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

form .header {
  background-color: transparent;
  border: none;
}

form .hs-richtext,
form .hs-richtext *,
form .hs-richtext p,
form .hs-richtext h1,
form .hs-richtext h2,
form .hs-richtext h3,
form .hs-richtext h4,
form .hs-richtext h5,
form .hs-richtext h6 {
  color: #707883;
  line-height: 1.67;
}

/* GDPR */

form .legal-consent-container, 
form .legal-consent-container .hs-richtext, 
form .legal-consent-container .hs-richtext p {
  color: #707883;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0px;
}

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


/* Validation */

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

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

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


.hs_error_rollup {
  display: none;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  background-color: #494A52;
  border: 1px solid #494A52;
  border-radius: 6px;
  color: #FFF;
  cursor: pointer;
  display: inline-block;
  font-size: 0.92rem;
  font-weight: normal;
  height: auto;
  line-height: 1.1;
  margin: 0;
  padding: 15px 53px;
  position: relative;
  text-align: center;

  text-decoration: none;
  transition: all 0.15s linear;
  white-space: normal;
  width: auto;
  word-break: break-word;
}

form input[type=submit]:hover,
form input[type=submit]:focus,
form .hs-button:hover,
form .hs-button:focus {
  background-color: #21222A;
  border-color: #21222A;

  color: #FFF;
}

form input[type=submit]:active,
form .hs-button:active {
  background-color: #71727A;
  border-color: #71727A;

  color: #FFF;
}

/* Submit */



  form input[type=submit],
  form .hs-button {
    background-color: rgba(255, 255, 255, 1.0);
    border: 1px none #ffffff;
    border-radius: 8px;
    color: rgba(255, 255, 255, 1.0);
    padding: 17px 20px;
    text-transform: none;
    font-weight: 600;
    letter-spacing: 0.14px
  }

  form input[type=submit]:hover,
  form input[type=submit]:focus,
  form .hs-button:hover,
  form .hs-button:focus,
  form input[type=submit]:active,
  form .hs-button:active {
    background-color: rgba(255, 255, 255, 1.0);
  border: 1px none #ffffff;
  color: rgba(255, 255, 255, 1.0);
  }





  form input[type=submit],
  form .hs-button {
    font-size: 18px;
    padding: 17px 20px;
  }



/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}



@media(min-width: 768px) {
  form label,
  .hs-form-field > label,
  form .hs-richtext,
  form .hs-richtext p {
    font-size: 20px;
  } 

  input[type=text],
  input[type=email],
  input[type=password],
  input[type=tel],
  input[type=number],
  input[type=file],
  select,
  textarea {
    font-size: 20px;
  } 

}



@media (max-width: 480px) {
	.form-columns-2 .hs-form-field .hs-input { 
		width: 100% !important
	}
}
/* Table */

table {
  border: 1px solid #DEE2E6;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
  background-color: rgba(255, 255, 255, 1.0);
  border-color: 1px solid #0d0a0a;
}

tbody + tbody {
  border-top: 2px solid #DEE2E6;
  border-top-color: #0d0a0a;
}

/* Table Cells */

th,
td {
  border: 1px solid #DEE2E6;
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #0d0a0a;
  color: #0d0a0a;
  padding: 15px 15px;
}

/* Table Header */

thead th,
thead td {
  background-color: #343A40;
  border-bottom: 2px solid #DEE2E6;
  color: #FFF;
  vertical-align: bottom;
  background-color: rgba(74, 199, 170, 1.0);
  border-bottom-color: 2px none #0d0a0a;
  color: #FFFFFF;
}

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

/* Header container */
.header {
  background-color: #F8FAFC;
  background-color: rgba(255, 255, 255, 1.0);
  font-family: Roboto, sans-serif; font-style: normal; font-weight: 700; text-decoration: none;
  font-size: 14px;
  color: rgba(13, 10, 10, 1);
  position: relative;
  padding: 10px 20px;
  
}

.header.header-scroll {
  box-shadow: 0 2px 3px 0 rgb(0 0 0 / 5%);
}

.header.header-scroll .top-navigation,
.header.header-scroll ~ #hs_cos_wrapper_breadcrums_menu .cm-breadcrumbs {
    display: none;
}

.header__container {
  margin: 0 auto;
  max-width: 1110px;
}

.header__container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}

.header__row-1,
.header__row-2 {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
justify-content: space-between;
width: 100%;
}

body.body-header__scroll [data-global-resource-path*=header], 
body.body-header__scroll header.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
}

body.body-header__scroll header.header.header-scroll ~ .display-breadcrumbs {
    display: none !important;
}

body [data-global-resource-path*=header_no_navigation], 
body [data-global-resource-path*=header_no_navigation] header {
    position: relative !important;
}


.header__search_cta_wrapper {
  display: flex;
  align-items: center;
}

/* Logo */

.header__logo {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
height: auto;
max-width: 200px;
overflow: hidden;
  margin-right: 20px;
}

.header__logo img {
max-width: 100%;
}

.header__logo .logo-company-name {
font-size: 28px;
margin-top: 7px;
}

.header--no-navigation {
  padding-top: 2rem;
}

.header--no-navigation .header__logo {
margin: 0 auto;
}



/* Language switcher */

.header__language-switcher {
  cursor: pointer;
}

.top-navigation .header__container  {
  justify-content: flex-end;
}

.header__language-switcher .lang_switcher_class {
position: static;
}

.header__language-switcher .lang_list_class {
border: 2px solid #D1D6DC;
border-radius: 6px;
box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
color: #494A52;
display: block;
font-family: Lato, serif;
font-size: 0.8rem;
left: calc(100% - 33px);
opacity: 0;
min-width: 150px;
padding-top: 0;
text-align: left;
top: 120%;
transition: opacity 0.3s;
visibility: hidden;
}

.header__language-switcher:hover .lang_list_class {
opacity: 1;
transition: opacity 0.3s;
visibility: visible;
}

.header__language-switcher .lang_list_class:before {
border-bottom-color: #D1D6DC;
left: 70%;
top: -25px;
}

.header__language-switcher .lang_list_class:after {
left: 70%;
top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
border-bottom-color: #EBEFF3;
top: -22px;
transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
border: none;
font-size: 18px;
padding: 10px 15px;
}

.header__language-switcher .lang_list_class li:first-child {
border-radius: 6px 6px 0 0;
border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
border-bottom: none;
border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
background-color: #EBEFF3;
transition: background-color 0.3s;
}

.header__language-switcher .lang_list_class li a {
color: #494A52;
font-family: Lato, serif;
}

.header__language-switcher .lang_list_class li a:hover {
color: #494A52;
}

.header__language-switcher--label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;   
  justify-content: flex-end;
}

.header__language-switcher--label-current {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: inherit;
}

.header__language-switcher--label-current:after {
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 6px solid #494A52;
content: "";
display: block;
height: 0px;
margin-left: 10px;
margin-top: 3px;
width: 0px;
}

.header__language-switcher .globe_class {
  background-image: none;
}

/* Navigation */

#nav-toggle {
display: none;
}

.header__menu--flex {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}


@media(min-width: 1025px) {
  .header__column {
      width: 100%;
  }

  li.has-submenu:hover>.submenu,
  li.has-submenu.focus>.submenu {
      visibility: visible;
      opacity: 1;
      transition: visibility 0s,opacity .3s;
  }

  .submenu.level-2 {
      top: 75px;
      left: 50%;
      transform: translateX(-50%);
  } 

  .submenu .submenu {
      top: 0;
      left: 100%;
      transform: none;
      width: 200px;
      text-transform: none;
      border-radius: 6px;
      box-shadow: 0 2px 9px 0 rgba(0,0,0,0.2);
      transition: visibility 0s, opacity 0.3s;
  }

  body .submenu.level-2 .menu-item .menu-link {
      background-color: rgba(255, 255, 255, 1.0);
      color: rgba(13, 10, 10, 1);
  }

  body  .submenu.level-2 .menu-item .menu-link ~ .menu-arrow {
      color: rgba(13, 10, 10, 1);
  }

  body .submenu.level-2 .menu-item .menu-link:hover,
  body .submenu.level-2 .menu-item .menu-link:focus,
  body .submenu.level-2 .menu-item .menu-link:hover ~ .menu-arrow,
  body .submenu.level-2 .menu-item .menu-link:focus ~ .menu-arrow{
      color: rgba(74, 199, 170, 1.0);
  }
  
  .header__element-mobile {
      display: none;
  }

}


/* Mobile styles */

@media (max-width: 1024px) {
  
  /* header nav toggle */
    .header__navigation--toggle {
        width: 38px;
        height: 26px;
        right: 0;
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        position: absolute;
        cursor: pointer;
        z-index: 999;
        top: 5px;
    }

    .header__navigation--toggle span {
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        background: rgba(13, 10, 10, 1);
        border-radius: 9px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }
    
    .header__navigation--toggle span:nth-child(1) {
        top: 0px;
    }

    .header__navigation--toggle span:nth-child(2),
    .header__navigation--toggle span:nth-child(3) {
        top: 10px;
    }

    .header__navigation--toggle span:nth-child(4) {
        top: 20px;
    }

    .header__navigation--toggle.open span:nth-child(1) {
        top: 18px;
        width: 0%;
        left: 50%;
    }

    .header__navigation--toggle.open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .header__navigation--toggle.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .header__navigation--toggle.open span:nth-child(4) {
        top: 18px;
        width: 0%;
        left: 50%;
    }

    .header__navigation__mobile_group {
        background-color: rgba(255, 255, 255, 1.0);
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        overflow-y: auto;
        min-width: 200px;
        width: 90%;
        max-width: 400px;
        display: inline-block;
        padding: 6rem 2rem 2rem;
        box-shadow: 0 0 1px rgb(39 39 39 / 50%);
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -o-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: transform .5s;
        transition: transform .5s;
        z-index: 99;
    }

    .header__navigation__mobile_group.open {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);

    }

    body .submenu.level-1 > li {
        border-bottom: 1px solid rgba(13, 10, 10, 1);
    }
  
    body .submenu.level-1 > li {
        padding: 0;
    }
  
    body .submenu.level-1 > li a {
        padding-top: 16px;
        padding-bottom: 16px;
    }
  
    body ul.level-2 li a {
        padding: 12px 20px !important;
    }
  
    body ul.level-3 li a {
        padding: 12px 40px !important;
    }
  
    body .submenu.level-2 .menu-item {
        border-top: 1px solid rgba(13, 10, 10, 1);
    }
  
    body .submenu.level-2 .has-submenu .menu-arrow {
        transform: none;
        right: 10px;
        top: 9px;
    }

    .header__search_cta_wrapper {
        margin-top: 2rem;
        display: block;
    }
  
    body .submenu.level-1>.has-submenu>.menu-arrow {
        top: 21px;
    }
  
    .submenu.level-2, 
    .submenu.level-3 {
        border: 0;
        box-shadow: none;
        opacity: 1 !important;
        position: static !important;
        -webkit-transform: unset;
        -ms-transform: unset;
        transform: unset;
        visibility: visible !important;
        width: 100% !important;
        z-index: 2;
    }
  
  .header__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    /*flex-direction: column;
    padding: 20px 0 0;*/
    justify-content: space-between;
  }

  .header__container form {
    max-width: 100%;
  }
  
  .top-navigation .header__language-switcher {
      display: none !important;
  }
  
  .header__language-switcher .lang_list_class {
      right: -43px;
      left: initial;
      top: 200%;
  }


  .header__search.open {
    background-color: #F8FAFC;
    display: block;
    height: calc(100vh - 115px);
    left: 0;
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }




  .header__column {
    position: relative;
  }

  .header__row-2 {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px;
  }


  .header__language-switcher--toggle {
   /* background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;*/
    height: 25px;
    width: 25px;
    top: 5px;
    position: relative;
    margin-right: 4rem;
  }


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

  .header__search--toggle {
    display: none !important;
  }
  
  .header__search {
      margin-bottom: 2rem;
  }
  
  .header__search .header__search-input {
      display: block;
      position: relative;
      top: 0;
      width: 100%;
  }

  .header__search .hs-search-field__input {
    padding-left: 15px;
  }

  .header__search .hs-search-field__suggestions li {
    padding: 10px 0;
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}

body .navigation-primary a,
.header__logo .logo-company-name,
.header__language-switcher-label-current,
.header__language-switcher .lang_list_class li a {
font-family: Roboto, sans-serif; font-style: normal; font-weight: 700; text-decoration: none;
color: rgba(13, 10, 10, 1);
text-transform: none;
letter-spacing: 0.14px;
line-height: 1.2;
font-size: 14px;
}

.hs-breadcrumb-menu-item a,
.hs-breadcrumb-menu-item { 
  
    font-family: Roboto, sans-serif; font-style: normal; font-weight: normal; text-decoration: none; color:#0d0a0a;
  
  
  
    font-family: Roboto;
  
}

.hide-breadcrumbs {
  display:none;
}
.display-breadcrumbs {
  display:block !important
}


body .navigation-primary a:hover,
body .navigation-primary a:focus,
body .navigation-primary a:hover ~ .menu-arrow,
body .navigation-primary a:focus ~ .menu-arrow,
.header__language-switcher-label-current:hover,
.header__language-switcher-label-current:focus,
.header__language-switcher .lang_list_class li:hover a,
.header__language-switcher .lang_list_class li a:focus, 
body .navigation-primary a:active,
body .header__language-switcher-label-current:active,
body .header__language-switcher .lang_list_class li a:active,
.hs-breadcrumb-menu-item a:hover,
li.hs-breadcrumb-menu-item.last-crumb {
color: rgba(74, 199, 170, 1.0);
}

body .navigation-primary .submenu.level-1 > li > a.active-item:after {
background-color: #4AC7AA;
}

/*body .submenu.level-2 .menu-item .menu-link,*/
body .header__language-switcher .lang_list_class,
body .submenu.level-2 > li:first-child:before {
background-color: rgba(255, 255, 255, 1.0);

}



body .submenu.level-2 .menu-item .menu-link:hover,
body .submenu.level-2 .menu-item .menu-link:focus,
body .header__language-switcher .lang_list_class li:hover,
body .submenu.level-2 > li:first-child:hover:before,
body .submenu.level-2 > li:first-child.focus:before {
background-color: rgba(255, 255, 255, 1.0);
}

.header__language-switcher .lang_list_class.first-active::after {
border-bottom-color: rgba(255, 255, 255, 1.0);
}



.header__language-switcher-label-current:after {
border-top-color: rgba(13, 10, 10, 1);
}

@media(max-width: 767px) {
.header__navigation {
  background-color: rgba(255, 255, 255, 1.0);
}

.header__navigation-toggle svg,
.menu-arrow svg {
  fill: rgba(13, 10, 10, 1);
}
}

.header-top .row-fluid [class*=span],
.header-bottom .row-fluid [class*=span]{
    min-height: 0;
}
.footer {
  background-color: rgba(74, 199, 170, 1.0);
}

.cta-container {
  margin: 0 auto;
} 

.cta-wrapper  {
  max-width: 603px;
  margin: 0 auto;
}

.footer__container {
  max-width: 1110px;
  margin: 0 auto;
}

.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
  color: #fff;
  margin-bottom: 24px;
}

.footer,
.footer p,
.footer span,
.footer i {
  color: #fff;
}

.footer a:not(.cta_button):not(.cta-primary):not(.cta-secondary) {
  color: #fff;
}

.footer a:not(.cta_button):not(.cta-primary):not(.cta-secondary):hover,
.footer a:not(.cta_button):not(.cta-primary):not(.cta-secondary):focus {
  color: rgba(255, 255, 255, 1.0);
}

.footer hr {
  color: rgba(255, 255, 255, 1.0);
  background-color: rgba(255, 255, 255, 1.0);
}


.footer,
.footer p,
.footer span,
.footer li {
font-size: 14px;
}

.footer__copyright {
padding: 1rem 0;
}

.footer__copyright > div {
padding: .5rem 0;
}


body .footer-social-links .social-links__link {
    background: rgba(255, 255, 255, 1.0);
    height: 48px;
    width: 48px;
    border-radius: 50%;
    margin: 0 5px;
    position: relative;
}

body .footer-social-links .social-links__link:hover {
    background: rgba(255, 255, 255, 1.0);
}

body .footer-social-links .social-links__icon svg {
  fill: #0f331b;
}

body .footer-social-links .social-links__link:hover,
body .footer-social-links .social-links__link:hover svg {
  fill: rgba(15, 51, 27, 1.0);
}

.footer-single-content .social-media-content a {
  display: inline-block;
  width: 22.3px;
  height: 22.3px;
  text-align: center;
  background-color: rgba(255, 255, 255, 1.0);
  color: #0f331b;
  margin-right: 13px;
  border-radius: 2px;
}

.footer-single-content .social-media-content a span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.footer-single-content .social-media-content a svg {
  width: 15px;
  height: 15px;
  fill: #0f331b;
}

.footer-single-content .social-media-content a:hover,
.footer-single-content .social-media-content a:hover svg {
  background-color: rgba(255, 255, 255, 1.0);
  fill: rgba(15, 51, 27, 1.0);
}

.footer .hs-menu-wrapper .hs-menu-item {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.footer .hs-menu-wrapper .hs-menu-item:first-child {
  padding-top: 0;
}

.footer .hs-menu-wrapper .hs-menu-item a {
  padding-right: 0;
  padding-left: 0;
}

/* Footer LP */

.footer-landing .footer__container {
  padding:  1rem ;
      display: flex;
    justify-content: space-between;
    align-items: center;
}


/* test commit tes 2*/
@media(max-width: 767px) {
  .footer__content--column > div > div:first-child {
      margin-top: 2rem;
  }

  .footer {
      text-align: center;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

@media (max-width: 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%;
}
.tns-outer{padding:0 !important}.tns-outer [hidden]{display:none !important}.tns-outer [aria-controls],.tns-outer [data-action]{cursor:pointer}.tns-slider{-webkit-transition:all 0s;-moz-transition:all 0s;transition:all 0s}.tns-slider>.tns-item{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.tns-horizontal.tns-subpixel{white-space:nowrap}.tns-horizontal.tns-subpixel>.tns-item{display:inline-block;vertical-align:top;white-space:normal}.tns-horizontal.tns-no-subpixel:after{content:'';display:table;clear:both}.tns-horizontal.tns-no-subpixel>.tns-item{float:left}.tns-horizontal.tns-carousel.tns-no-subpixel>.tns-item{margin-right:-100%}.tns-no-calc{position:relative;left:0}.tns-gallery{position:relative;left:0;min-height:1px}.tns-gallery>.tns-item{position:absolute;left:-100%;-webkit-transition:transform 0s, opacity 0s;-moz-transition:transform 0s, opacity 0s;transition:transform 0s, opacity 0s}.tns-gallery>.tns-slide-active{position:relative;left:auto !important}.tns-gallery>.tns-moving{-webkit-transition:all 0.25s;-moz-transition:all 0.25s;transition:all 0.25s}.tns-autowidth{display:inline-block}.tns-lazy-img{-webkit-transition:opacity 0.6s;-moz-transition:opacity 0.6s;transition:opacity 0.6s;opacity:0.6}.tns-lazy-img.tns-complete{opacity:1}.tns-ah{-webkit-transition:height 0s;-moz-transition:height 0s;transition:height 0s}.tns-ovh{overflow:hidden}.tns-visually-hidden{position:absolute;left:-10000em}.tns-transparent{opacity:0;visibility:hidden}.tns-fadeIn{opacity:1;filter:alpha(opacity=100);z-index:0}.tns-normal,.tns-fadeOut{opacity:0;filter:alpha(opacity=0);z-index:-1}.tns-vpfix{white-space:nowrap}.tns-vpfix>div,.tns-vpfix>li{display:inline-block}.tns-t-subp2{margin:0 auto;width:310px;position:relative;height:10px;overflow:hidden}.tns-t-ct{width:2333.3333333%;width:-webkit-calc(100% * 70 / 3);width:-moz-calc(100% * 70 / 3);width:calc(100% * 70 / 3);position:absolute;right:0}.tns-t-ct:after{content:'';display:table;clear:both}.tns-t-ct>div{width:1.4285714%;width:-webkit-calc(100% / 70);width:-moz-calc(100% / 70);width:calc(100% / 70);height:10px;float:left}
/* tinysldier css */
.tns-controls {
    text-align: center;
    margin-bottom: 10px;
}

.tns-nav {
    text-align: center;
    margin: 10px 0;
}

.tns-nav > [aria-controls] {
    width: 9px;
    height: 9px;
    padding: 0;
    margin: 0 5px;
    border-radius: 50%;
    background: #ddd;
    border: 0;
}

.tns-nav > .tns-nav-active {
    background: #999;
}

.tns-outer [data-action] {
    display: none;
}

.tns-controls button[data-controls="prev"],
.tns-controls button[data-controls="next"] {
  border: none;
  background: none;
  display: block !important;
  width: 15px;
  height: auto;
  position: absolute;
  top: -1rem;
  bottom: 0;
  background: none;
}

.tns-controls button[data-controls="prev"] svg, 
.tns-controls button[data-controls="next"] svg {
    height: 30px;
    width: 30px;
}

.tns-controls button[data-controls="prev"] {
   margin-left: -3rem;
}

.tns-controls button[data-controls="next"] {
   right: -3rem;
}


/**
 * Swiper 8.1.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 15, 2022
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-slide-visible .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}

.swiper-button.swiper-button-hidden {
    opacity: 0;
}

.swiper-pagination.swiper-pagination-bullets {
    padding-bottom: 1em;
}

.swiper-pagination-bullet {
    background: #ddd !important;
    opacity: 1
}
.swiper-pagination-bullet-active {
    background: #999 !important;
    opacity: 1
}


@media(max-width: 1110px) {
  .testimonial-slider.with-nav {
      padding-right: 40px;
      padding-left: 40px;
  }
  
  .tns-controls button[data-controls="next"] {
      right: 0 !important;
  }
  
  .tns-controls button[data-controls="prev"] {
     margin-left: -2rem;
  }
}


.header__container.standard,
.footer__container.standard,
.cta-container {
    max-width: 1110px;
}

.header__container.full,
.footer__container.full {
   max-width: 100%;    
   padding-right: 2rem;
   padding-left: 2rem;
}
/* COMMON */

.blog-content-main-wrappper {
  background: #f7f8fa;
  padding: 70px 20px;
}


.hs-blog-post .blog-content-main-wrapper,
.hs-blog-post .blog-content-main-wrapper p{
  color: #0d0a0a;
  font-size: 16px;
  line-height: 1.78;
  letter-spacing: 0.36px;
}

.hs-blog-post .blog-post__body p{
  margin-bottom: 20px;
}


@media(min-width: 768px) {
  .hs-blog-post .blog-content-main-wrapper,
  .hs-blog-post .blog-content-main-wrapper p{
      font-size: 16px;
  }
}


@media(min-width: 1025px) {
  .hs-blog-post .blog-content-main-wrapper,
  .hs-blog-post .blog-content-main-wrapper p{
      font-size: 20px;
  }

}

/* Blog Hero Image */
.blog-header {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.blog-header__inner {
  max-width: 1110px;
  margin: 0 auto;
  padding: 4.5rem 12px 1rem;
}

.blog-header__subtitle {
  margin: 1rem 0 2rem;
}

/* Blog Tag Header */
.blog-index__tag-header {
  flex: 1 0 100%;
  padding: 1rem;
}

.blog-index__tag-subtitle {
  font-size: 1.16rem;
  line-height: 1.1;
}

.blog-index__tag-heading {
  padding-bottom: 1rem;
  /*border-bottom: 3px solid #D1D6DC;*/
}

/* Blog Menu Topics */
.blog-index__topics {
  width: 100%;
  margin-bottom: 2rem;
}
.blog-index__topics__menu {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.blog-index__topics__menu li{
}
.blog-index__topics__menu li a {
  display: block;
  font-size: 13px;
  line-height: 1em;
  padding: 12px 0;
  letter-spacing: 0.52px;
  text-align: center;
  text-transform: uppercase;
  color: #0d0a0a;
  border-bottom: 3px solid transparent; 
  transition: .4s;
  margin: 0 20px;
  opacity: 0.3;
  font-weight: 600;
}

.blog-index__topics__menu li a.active{
  color: #4AC7AA;
  border-color: #4AC7AA;
  opacity: 1;
}
.blog-index__topics__menu li a:hover:not(.active){
  color: #4AC7AA;
  border-color: #4AC7AA;
}


/* Blog index */
.blog-index {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem 0;
  justify-content: space-between;
}

.blog-index.no-topic-menu {
    padding-top: 0;
}

.blog-index:after {
  content: "";
  flex: auto;
}

.blog-index__post {
  position: relative;
  flex: 0 0 100%;
  padding: 0;
  margin-bottom: 30px;
  overflow: hidden;
  color: #0d0a0a;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 1.0);
  border-radius: 8px;
  
}

.blog-index__post p {
  font-size: 14px;
}

.blog-recent-posts__title-content {
  padding: 30px 25px;
}

.blog-index__post-size--large p,
.blog-index__post-size--large,
.blog-index__post-size--large .read-more  {
  font-size: initial;
}



.blog-index__post .blog-index__post-content {
  display: block;
}

.blog-index__post .blog-index__post-content img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}


.blog-index__post.block-subscribe {
  
  background-color: rgba(74, 199, 170, 1.0);
  padding: 30px 25px;
}

.blog-index__post.block-subscribe *,
.blog-index__post.block-subscribe form .legal-consent-container .hs-richtext, 
.blog-index__post.block-subscribe form .legal-consent-container .hs-richtext p {
   color: #ffffff;
}


.blog-index__post.block-subscribe .hs-input,
.blog-index__post.block-subscribe .field label span {
  color: #0d0a0a;
}

.blog-index__post.block-subscribe .form-title {
  display: none;
}

.blog-index__post.block-subscribe form input[type=submit] {
  font-weight: normal
}

@media screen and (min-width: 768px) {
  .blog-index {
      padding: 4rem 0;
  }
  .blog-index:after,
  .blog-index__post {
      flex-grow: 0;
      flex-shrink: 0;
      flex-basis: calc((100% - 28px)/2);
  }

  .blog-index__post {
      margin-bottom: 56px;
  }

}

@media screen and (min-width: 1000px) {
  .blog-index:after,
  .blog-index__post {
      flex-grow: 0;
      flex-shrink: 0;
      flex-basis: calc((100% - 56px)/3);
  }
}

/* Blog Related Posts, Recent Posts and Newsletter */

/* related */
.blog-related-posts {
  background-color: rgba(247, 248, 250, 1.0);
  color: #0d0a0a;
  margin-top: 3rem;
  padding: 4rem 0 2rem;
}

.blog-related-posts .related-posts-title * {
  color: #0d0a0a;
}

.blog-related-posts .related-posts-title {
  max-width: 630px;
}



.blog-related-posts__list {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0 0;
}

/* recent */
.blog-recent-posts {}
.blog-recent-posts__image{
  height: 182px;
  position: relative;
  overflow: hidden;
}
.blog-recent-posts__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.no-object-fit .blog-recent-posts__image img {
  height: auto;
}

@media(min-width: 800px){
  .blog-recent-posts__image {
      height: 182px;
      padding: 0;
  }
}

.blog-recent-posts__content {
     padding: 10px 0; 
}

.blog-index__post-content--large h3 a,
.blog-recent-posts__title a,
.blog-index__post-title a {
  color: #0d0a0a;
}

.blog-newsletter__wrapper, 
.blog-recent-posts__post {
  display: block;
  height: 100%;
}

.blog-newsletter__wrapper {
  height: auto;
}

.blog-index__widget--newsletter,
.blog-newsletter__wrapper {
  background-color: rgba(74, 199, 170, 1.0);
}

.blog-index__widget--newsletter .blog-newsletter-padding,
.blog-newsletter__wrapper .blog-newsletter-padding {
  padding: 30px 25px;
}

.blog-newsletter__wrapper,
.blog-newsletter__wrapper p,
.blog-newsletter__wrapper div,
.blog-newsletter__wrapper .blog-newsletter__title span,
.blog-newsletter__wrapper h2,
.blog-newsletter__wrapper h3,
.blog-newsletter__wrapper h4,
.blog-newsletter__wrapper h5,
.blog-newsletter__wrapper h6
.blog-newsletter__wrapper a,
.blog-newsletter__wrapper .legal-consent-container .hs-richtext p, 
.blog-newsletter__wrapper .legal-consent-container .hs-richtext a, 
.blog-newsletter__wrapper .legal-consent-container .hs-richtext{
  color: #ffffff;
}

.blog-newsletter__wrapper .form-title {
  display: none;
}

.blog-newsletter__bottomImage {
  max-width: 200px;
  margin: 2rem auto 0;
}

/* featured */
.blog-index__post-content {
}

.blog-index__post-image {
  display: block;
}

.blog-index__post-image img {
  max-width: 100%;
  height: 100% !important;
  width: 100%;
  object-fit: cover;
}

.blog-index__post.blog-index__post-size--large .blog-index__post-content {
  height: auto !important;
  padding: 3rem;
}

.blog-index__post.blog-index__post-size--large .blog-index__post-image {
   height: 100%;
}

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

  .blog-index__post.blog-index__post-size--large {
      flex: 1 0 100%;
      display: flex;
      flex-direction: row-reverse;
  }
  
  .blog-index__post.blog-index__post-size--large .blog-index__post-image-wrapper {
      flex: 1 1 48%;
      height: 520px;
  }

  .blog-index__post.blog-index__post-size--large .blog-index__post-content {
      flex: 1 1 48%;
      padding-left: 2rem;
  }
}

@media(max-width: 767px) {
  .blog-index__post.blog-index__post-size--large .blog-index__post-image-wrapper {
      height: 182px;
  }

  .blog-index__post.blog-index__post-size--large .blog-index__post-content {
    padding:30px 25px;
  }

}


/* Blog Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 4.3rem;
}

.blog-pagination__link {
  display: inline-flex;
  padding: .25rem .4rem;
  margin: 0 .4rem;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  color: #0d0a0a;
  background-color: rgba(255, 255, 255, 1.0);
  transition: .4s;
  font-size: 16px;
  align-items: center;
  justify-content: center;
}

.blog-pagination__link--active,
.blog-pagination__link:hover,
.blog-pagination__link:focus {
  text-decoration: none;
  background-color: rgba(74, 199, 170, 1.0);
  color: #ffffff
}

.blog-pagination__prev-link:hover svg,
.blog-pagination__next-link:hover svg {
  fill: #ffffff
}

.blog-pagination__prev-link,
.blog-pagination__next-link {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
}

.blog-pagination__prev-link {
  text-align: right;
  margin-right: .25rem;
}

.blog-pagination__next-link {
  text-align: left;
  margin-left: .25rem;
}

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

.blog-pagination__prev-link svg,
.blog-pagination__next-link svg {
  fill: #0d0a0a;
  margin: 0 3px;
}

.blog-pagination__prev-link--disabled svg,
.blog-pagination__next-link--disabled svg {
  fill: #ccd7e3;
}

/* Blog index tag */
.blog-index-tag {
  padding-top: 2rem;
}

.blog-index-tag .blog-index__topics__menu {
  margin-top: 0;
}

/* Blog author */
.blog-index__author-details {
  margin-top: 1rem;
}

.blog-index__author-social-links {
  margin-bottom: 2em;
}

.blog-index__author-social-links a {
  display: inline-block;
  margin: 0 8px;
}

.blog-index__author-social-links svg {
  height: 18px;
  width: 18px;
}

/* blog post */
.blog-post h1 {
  text-align:center;
}

.blog-post__meta.author-wrap {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.blog-post .blog-header__author-avatar {
  padding-right: 14px;
}

.blog-post a:not(.blog-post__tag-link):not(.blog-header__author-name) {
  text-decoration: underline;
}

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

.blog-post__meta a {
  text-decoration: none;
  font-weight: 500;
  color: #0d0a0a;
}

.blog-post__timestamp{
  line-height: normal;
  color:#7c807d;
  font-size: 14px;
}

.blog-post {
  max-width: 920px;
  margin: 0 auto;
  padding: 3.3rem 0;
}

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


.hs-blog-post .blog-post__body {
  margin-top: 2rem;
}

.hs-blog-post .blog-header__author-avatar:not(.blog-post_author_bottom-avatar) img {
  width: 56px;
  height: 56px;
  margin: 0 1rem 0 0;
  float: left;
  overflow: hidden;
  border-radius: 50%;
}

.blog-post_author {
  padding-top: 2rem;
}

.blog-post_author .blog-header__author-avatar {
  margin-bottom: 1rem;
}

.blog-post_author .blog-header__author-avatar img {
  border-radius: 50%;
      width: 80px;
    height: 80px;
    object-fit: cover;
}

.hs-blog-post .blog-content-main-wrapper .blog-post_author .blog-post_author-details,
.hs-blog-post .blog-content-main-wrapper .blog-post_author .blog-post_author-details p  {
    font-size: 90%;
    line-height: 1.5;
}

.hs-blog-post .blog-content-main-wrapper .blog-post_author .blog-post_author-details p.blog-header__author-name-wrapper  {
    margin-bottom: 5px;
    font-size: 1rem;
}

.blog-post_author .blog-post_author-details .blog-header__author-name-wrapper a {
    font-weight: bold;
}


@media(min-width: 768px){
  .blog-post_author {
      display: flex;
      flex-wrap: wrap;
  }

  .blog-post_author .blog-header__author-avatar {
      width: 100px;
      margin-right: 1rem;
  }

  .blog-post_author .blog-post_author-details {
      width: calc(100% - 120px);
  }

}

@media(min-width: 724px){
  .blog-post__body img.big {
      margin-left: -94px;
      margin-right: -94px;
      display: inline-block;
      max-width: calc(100% + 94px *2);
  }
}
@media(min-width: 912px){
  .blog-post__body img {
      max-width: 912px;
      margin: 1rem calc((-912px + 724px) / 2 ) 0;
  }
}

/* blog tags */

.blog-post__tags {
    margin-bottom: 10px;
    font-family: Roboto
}

.blog-post__tags a:first-child {
  padding-left: 0;
}

.blog-post__tag-link {
  display: inline-block;
  color: #4AC7AA;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 5px;
  display: inline-block;
  margin-right: 3px;
}

.blog-post__tag-link:hover {
  color: #0d0a0a;
}

/* blog post read more */
.blog-post__recent-posts-readmore {
    margin-top: 4rem;
}

.blog-post__recent-posts-readmore ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.blog-post__recent-posts-readmore ul li {
    margin-bottom: 20px;
}

/* Blog Comments */

.blog-comments {
  max-width: 800px;
  margin: 0 auto;
}

.blog-comments form {
  max-width: 100%;
}

.blog-comments form input[type=text],
.blog-comments form input[type=email], 
.blog-comments form select, 
.blog-comments form textarea
 {
  border: 1px solid #d5d5d5;
}

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


.blog-comments .comment-reply-to {
  border: 0 none;
}

.blog-comments .comment-reply-to:hover {
  background-color: transparent;
  text-decoration: underline;
}


#comments-listing .comment-reply-to {
  color: rgba(74, 199, 170, 1.0);
}

#comments-listing .comment-reply-to:hover,
#comments-listing .comment-reply-to:focus {
  color: rgba(74, 199, 170, 1.0);
}

#comments-listing .comment-reply-to:active {
  color: rgba(74, 199, 170, 1.0);
}

/** In content editor test **/
html.hs-inline-edit .blog-post__body {
  min-height: 200px;
}