/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: 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;
}

/* 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: inherit; /* 1 */
  margin: 0; /* 2 */
}

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

.justify-content-start {
    -ms-flex-pack: start!important;
    justify-content: flex-start!important
}

.justify-content-end {
    -ms-flex-pack: end!important;
    justify-content: flex-end!important
}

.justify-content-center {
    -ms-flex-pack: center!important;
    justify-content: center!important
}

.justify-content-between {
    -ms-flex-pack: justify!important;
    justify-content: space-between!important
}

.justify-content-around {
    -ms-flex-pack: distribute!important;
    justify-content: space-around!important
}

.align-items-start {
    -ms-flex-align: start!important;
    align-items: flex-start!important
}

.align-items-end {
    -ms-flex-align: end!important;
    align-items: flex-end!important
}

.align-items-center {
    -ms-flex-align: center!important;
    align-items: center!important
}

.cm-col,.cm-col-1,.cm-col-10,.cm-col-11,.cm-col-12,.cm-col-2,.cm-col-3,.cm-col-4,.cm-col-5,.cm-col-6,.cm-col-7,.cm-col-8,.cm-col-9,.cm-col-auto,
.cm-col-md, .cm-col-md-1, .cm-col-md-10, .cm-col-md-11, .cm-col-md-12, .cm-col-md-2, .cm-col-md-3, .cm-col-md-4, .cm-col-md-5, .cm-col-md-6, .cm-col-md-7, .cm-col-md-8, .cm-col-md-9, .cm-col-md-auto{
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  width: 100%
}

.cm-col {
  -ms-flex-preferred-size: 0;
  -ms-flex-positive: 1;
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%
}

.cm-col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 100%;
  width: auto
}
.cm-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
@media(min-width:768px){  
    .cm-col-md-1{
      width:8.333%;
    }
    .cm-col-md-2{
      width: 16.66666667%;
    }
    .cm-col-md-3{
      width:25%;
    }
    .cm-col-md-4{
      width:33.333%;
    } 
    .cm-col-md-5{
      width: 41.66666667%;
    }
    .cm-col-md-6{
      width:50%;
    }
    .cm-col-md-7{
      width: 58.33333333%;
    }
    .cm-col-md-8{
      width: 66.66666667%;
    }
    .cm-col-md-9{
      width:75%;
    }
    .cm-col-md-10{
      width:83.33333333%;
    }
    .cm-col-md-11{
      width:91.66666667%
    }
    .cm-col-md-12{
      width:100%;
    }      
  }
@media (min-width: 1200px) {
  .cm-col-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%
  }

  .cm-col-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%
  }

  .cm-col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
  }

  .cm-col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%
  }

  .cm-col-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%
  }

  .cm-col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
  }

  .cm-col-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%
  }

  .cm-col-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%
  }

  .cm-col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
  }

  .cm-col-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%
  }

  .cm-col-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%
  }

  .cm-col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
  }
}

@media (max-width: 1199px) {
  .cm-col,.cm-col-1,.cm-col-10,.cm-col-11,.cm-col-12,.cm-col-2,.cm-col-3,.cm-col-4,.cm-col-5,.cm-col-6,.cm-col-7,.cm-col-8,.cm-col-9,.cm-col-auto,
  .cm-col-md, .cm-col-md-1, .cm-col-md-10, .cm-col-md-11, .cm-col-md-12, .cm-col-md-2, .cm-col-md-3, .cm-col-md-4, .cm-col-md-5, .cm-col-md-6, .cm-col-md-7, .cm-col-md-8, .cm-col-md-9, .cm-col-md-auto{
    padding-left: 20px;
    padding-right: 20px;
  }
  .cm-row {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.content-wrapper,
.dnd-section > .row-fluid,
.page-center,
.header__container,
.footer__container{
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
}

.dnd-section[class*="-force-full-width-section"]>.row-fluid {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right:0 !important;
  width:100% !important;
}
@media (max-width: 1199px) {
  .content-wrapper,
.dnd-section > .row-fluid,
.page-center,
.header__container,
  .footer__container{
   padding-left: 38px;
  padding-right: 38px;
  }
}
@media (max-width: 767px) {
  .content-wrapper,
.dnd-section > .row-fluid,
.page-center,
.header__container,
  .footer__container{
   padding-left: 20px;
  padding-right: 20px;
  }
}

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

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;    
  font-display: swap;
  src: url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/fa-solid-900.woff2) format("woff2"),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/fa-solid-900.ttf) format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 100;    
  font-display: swap;
  src: url(https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-Thin.otf) format("otf");
  src: url('https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-Thin.eot'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-Thin.woff2) format('woff2'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-Thin.woff) format('woff'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-Thin.ttf) format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 100;    
  font-display: swap;
  src: url(https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-ThinItalic.otf) format("otf");
  src: url('https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-ThinItalic.eot'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-ThinItalic.woff2) format('woff2'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-ThinItalic.woff) format('woff'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-ThinItalic.ttf) format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;    
  font-display: swap;
  src: url(https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-SemiBold.otf) format("otf");
  src: url('https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-SemiBold.eot'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-SemiBold.woff2) format('woff2'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-SemiBold.woff) format('woff'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-SemiBold.ttf) format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 600;    
  font-display: swap;
  src: url(https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-SemiBoldItalic.otf) format("otf");
  src: url('https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-SemiBoldItalic.eot'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-SemiBoldItalic.woff2) format('woff2'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-SemiBoldItalic.woff) format('woff'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-SemiBoldItalic.ttf) format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;    
  font-display: swap;
  src: url(https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-Regular.eot);
  src: url(https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-Regular.otf) format("otf"),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-Regular.ttf) format("truetype"),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-Regular.woff2) format("woff2"),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-Regular.woff) format("woff");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;    
  font-display: swap;
  src: url(https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-Medium.otf) format("otf");
  src: url('https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-Medium.eot'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-Medium.woff2) format('woff2'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-Medium.woff) format('woff'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-Medium.ttf) format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 500;    
  font-display: swap;
  src: url(https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-MediumItalic.otf) format("otf");
  src: url('https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-MediumItalic.eot'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-MediumItalic.woff2) format('woff2'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-MediumItalic.woff) format('woff'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-MediumItalic.ttf) format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;    
  font-display: swap;
  src: url(https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-Light.otf) format("otf");
  src: url('https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-Light.eot'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-Light.woff2) format('woff2'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-Light.woff) format('woff'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-Light.ttf) format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 300;    
  font-display: swap;
  src: url(https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-LightItalic.otf) format("otf");
  src: url('https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-LightItalic.eot'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-LightItalic.woff2) format('woff2'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-LightItalic.woff) format('woff'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-LightItalic.ttf) format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 200;    
  font-display: swap;
  src: url(https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-ExtraLight.otf) format("otf");
  src: url('https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-ExtraLight.eot'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-ExtraLight.woff2) format('woff2'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-ExtraLight.woff) format('woff'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-ExtraLight.ttf) format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 200;    
  font-display: swap;
  src: url(https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-ExtraLightItalic.otf) format("otf");
  src: url('https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-ExtraLightItalic.eot'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-ExtraLightItalic.woff2) format('woff2'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-ExtraLightItalic.woff) format('woff'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-ExtraLightItalic.ttf) format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;    
  font-display: swap;
  src: url(https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-ExtraBold.otf) format("otf");
  src: url('https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-ExtraBold.eot'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-ExtraBold.woff2) format('woff2'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-ExtraBold.woff) format('woff'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-ExtraBold.ttf) format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 800;    
  font-display: swap;
  src: url(https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-ExtraBoldItalic.otf) format("otf");
  src: url('https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-ExtraBoldItalic.eot'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-ExtraBoldItalic.woff2) format('woff2'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-ExtraBoldItalic.woff) format('woff'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-ExtraBoldItalic.ttf) format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;    
  font-display: swap;
  src: url(https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-Bold.otf) format("otf");
  src: url('https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-Bold.eot'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-Bold.woff2) format('woff2'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-Bold.woff) format('woff'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-Bold.ttf) format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 700;    
  font-display: swap;
  src: url(https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-BoldItalic.otf) format("otf");
  src: url('https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-BoldItalic.eot'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-BoldItalic.woff2) format('woff2'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-BoldItalic.woff) format('woff'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-BoldItalic.ttf) format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 900;    
  font-display: swap;
  src: url(https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-Black.otf) format("otf");
  src: url('https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-Black.eot'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-Black.woff2) format('woff2'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-Black.woff) format('woff'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-Black.ttf) format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 900;    
  font-display: swap;
  src: url(https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-BlackItalic.otf) format("otf");
  src: url('https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/fonts/Poppins-BlackItalic.eot'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-BlackItalic.woff2) format('woff2'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-BlackItalic.woff) format('woff'),
    url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/fonts/Poppins-BlackItalic.ttf) format('truetype');
}

:root {
  --borders_color: #707070;
}
body {
  line-height: 1.6;
  overflow-wrap: break-word;
}

html {
  scroll-behavior: smooth;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}
a.hs-button {
  display: inline-block;
}
img{
  max-width:100%;
  height:auto;
  vertical-align: middle;
}

/* Paragraphs */

p {
  margin: 0 0 1.4rem;
}
p:last-child {
  margin-bottom: 0px;
}
/* Anchors */

a {
  cursor: pointer;
  text-decoration:none;
}
.body-container p a {
  text-decoration: underline;
}
/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 30px;
}
h2 {
  margin: 0 0 40px;
}
h3 {
  margin: 0 0 30px;
}
h1 {
  line-height: 1.14; 
}
h2, h3 {
  line-height: 1.4;
}
h4 {
  line-height: 1.5;
}
h6 {
  line-height: 1.5;
}
/* Lists */
.lead {
  font-size: 20px;
  line-height: 32px;
}
@media (min-width: 1200px) {
  .lead {
    font-size: 36px;
    line-height: 50px;
  }
}
ul,
ol {
  margin: 0 0 1.4rem;
  padding-left: 22px;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}
.body-container .widget-type-rich_text ol li, .body-container .widget-type-rich_text ul li {
  padding-left: 8px;
}
.body-container .widget-type-rich_text ul[data-list=check] li {
  padding-left: 1.5rem;
}
ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */
caption {
  font-size: 16px;
  font-family: Arial;
  font-weight: 400;
}
blockquote {
  font-size: 22px;
  line-height: 1.5;
  color: #999999;
  margin: 0;
}
blockquote a {
  font-size: 22px;
  line-height: 1.5;
  color: #999999;
  margin: 0;
  text-decoration: underline;
}

strong {
  font-weight: 600;
}
/* Horizontal rules */

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

/* Dark mode / inverted text */

.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section h5,
.dark-section h6,
.dark-section p,
.dark-section li {
   color: #ffffff;
}

/* Image alt text */

img {
  max-width: 100%;
  height: auto;
  word-break: normal;
}
@media (min-width: 1200px) {
  #Reset {
    background: transparent !important;
  }
}
#Reset:hover svg path,
.close-button:hover svg rect{
  fill: var(--xa_grey_light);
}
.arrow-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.arrow-icon:hover{
  background-color: #ECF2F5;
}
ul[data-list="check"], ul[data-list="red"] {
  list-style: none;
  padding: 0;  
}
ul[data-list="check"] li {
  background-image: url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/images/check-icon.svg);
  background-position: left 10px;
  background-repeat: no-repeat;
  background-size: 0.7rem;
  padding-left: 1.5rem;
  position: relative;
}
.body-container .widget-type-rich_text ul[data-list="red"] li {
  position: relative;
  padding-left: 30px;
}
.body-container .widget-type-rich_text ul[data-list="red"] li:before {
  content: '';
  position: absolute;
  top: 12px;
  left: 1px;  
  width: 7px;
  height: 7px;
  background-color: var(--xa_red);
  border-radius: 100%;
}

/* Background colours */

.bgd-orange {
  background-color: #f9d8b4;
}

.bgd-lime {
  background-color: #deebbf;
}

.bgd-navy {
  background-color: #b3cce2;
}

.bgd-olive {
  background-color: #e2e1d3;
}

.bgd-mandarine {
  background-color: #fddf99;
}

.bgd-gold {
  background-color: #e9d5a8;
}

.bgd-ocean {
  background-color: #c2d7df;
}

.bgd-aubergine {
  background-color: #e2dde9;
}

.bgd-sky {
  background-color: #c7e2f3;
}

.bgd-red {
  background-color: #D50E22;
}

@media (max-width: 1199px) {
  body {
    line-height: 1.4;
  }
  h2 {
    margin: 0 0 30px;
  }
  .body-container .widget-type-rich_text ul[data-list=primary] li:before {
    width: 5px;
    height: 5px;
    left: 5px;    
  }
  blockquote {
    font-size: 15px;
    line-height: 1.5;
  }
  blockquote a {
    font-size: 15px;
  }

}
@media (max-width: 767px) {
  caption {
    font-size: 12px;
  }
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  transition: all 0.15s linear;
  white-space: normal;
}

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

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
@media (max-width: 1199px) {
  .button, .hs-button, button {
    font-size: 14px;
    line-height: 21px;
  }
}
/* Form fields */

.hs-form-field {
  margin-bottom: 30px;
}
.hs-form-field > label {
  line-height: 32px;
  margin-bottom: 4px;
}
.hs-form-field > label span:empty {
  display: none;
}
/* Labels */

form label {
  display: block;
  font-size: 15px;
  margin-bottom: 0.35rem;
}
h3.form-title {
  margin-bottom: 40px;
}
/* Help text - legends */

form legend {
  font-size: 0.875rem;
}

/* Inputs */
.widget-type-form {
  background-color: #E5EDF3;
  padding: 40px 50px 60px;
}
form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  background-color: #FFF;
  border: 1px solid;
  border-radius: 0px;
  display: inline-block;
  font-weight: 500;
  padding: 9px 20px 9px;
  width: 100%;
  line-height:32px;
  outline: 0;
}

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

/* Inputs - checkbox/radio */

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

form .inputs-list > li {
  display: block;
  margin-top: 0;
  margin-bottom: 30px;
}
form .inputs-list > li:last-child {
  margin-bottom: 0px;
}
form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}
form input[type=checkbox]{
  width:18px;
  height: 18px;
  margin-right: 24px;
}
fieldset.form-columns-1 .hs-form-booleancheckbox input[type=checkbox]  {
  width:18px !important;
}
form li.hs-form-booleancheckbox >label {
  line-height: 20px;
  display: flex;
  flex-wrap: wrap;
}
form li.hs-form-booleancheckbox label span {
  width: calc(100% - 50px);
}
form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
}
form input[type=radio] {
  width: 35px !important;
  height: 35px;
  margin-right: 22px;
}
fieldset.form-columns-2 .input,
fieldset.form-columns-1 .input{
  margin-right: 0px !important;
}
input[type=radio] {
  accent-color: black;
  position: relative;
}
input[type=radio]:checked:before {
  display: none;
}
input[type=radio]:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-color: #fff;
  background-image: url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/images/form_radio.png);
  background-position: center;
  border-radius: 50%;
}
input[type=radio]:checked:after {
  content: "";
  border-radius: 100%;
  border: 1px solid #000;
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
  box-shadow: inset 0 0 0 8.5px #fff;
  border-color: #000;
  background: #000;
}
.inputs-list.multi-container .hs-form-radio:last-child {
  margin-bottom: 0;
}
.hs-fieldtype-booleancheckbox.field.hs-form-field {
  margin-bottom: 40px;
}
form .legal-consent-container {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .form-columns-2 .hs-form-field:first-child {
    padding-right: 18px;
  }
  .form-columns-2 .hs-form-field:last-child {
    padding-left: 18px;
  }  
}
@media (min-width: 1200px) {
  .hs-fieldtype-booleancheckbox.field.hs-form-field {
    width: 84%;
  }
}
fieldset.form-columns-1 .hs-input:not(input[type=checkbox]):not(input[type=radio]) {
  width: 100%;
}
form .legal-consent-container .hs-form-booleancheckbox-display>span {
  margin-left: 0px !important;
}
form select {
  background-image: url(https://139707786.fs1.hubspotusercontent-eu1.net/hubfs/139707786/raw_assets/public/Xantaro%20website%208-2023/images/select-arrow.svg);
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right 30px center;
}
form select option:checked,
form select option:hover {
  box-shadow: 0 0 10px 100px #4ddc3b inset;
}
@media (max-width: 1200px) {
  form .inputs-list>li {   
    margin-bottom: 20px;
    margin-top: 0;
  }
  .hs-fieldtype-checkbox.field.hs-form-field {
    margin-bottom: 25px;
  }
  .hs-fieldtype-booleancheckbox.field.hs-form-field {
    margin-bottom: 17px;
  }
  .form-container h3 {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  fieldset.form-columns-2 .hs-form-field {
    float: none !important;
    width: 100% !important;
  }
  .hs-fieldtype-textarea.field.hs-form-field {
    margin-bottom: 20px;
  }
  .hs-fieldtype-radio.field.hs-form-field {
    margin-bottom: 25px;
  }
}

/* Inputs - datepicker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext {
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.3;
}
form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */
/* 
.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}
*/
form ul.inputs-list.multi-container input[type=checkbox] {
  width: 27px;
  height: 27px;
  margin-right: 22px;
  position: relative;
}
form li.hs-form-radio label,
form li.hs-form-checkbox label{
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
}
/* Validation */

.hs-form-required {
  color: #EF6B51;
}

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

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

/* Submit button */
.hs-button,
form input[type=submit],
form .hs-button,
.button-wrapper a,
.cta_button{
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s linear;
  white-space: normal;
}
.button-wrapper-block a {
  cursor: pointer;
  display: block;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s linear;
  white-space: normal;
}
@media (max-width: 1199px) {
  .hs-button, a.cta_button{
    font-size: 14px;
  }
  form input[type=submit], form .hs-button, .button-wrapper a {
    font-size: 14px;
    margin-top: 13px;
  }
  .widget-type-form {
    padding: 40px 38px;
  }
  h3.form-title {
    margin-bottom: 13px;
  }
  .hs-form-field {
    margin-bottom: 13px;
  }
  form input[type=email], form input[type=file], form input[type=number], form input[type=password], form input[type=tel], form input[type=text], form select, form textarea {
    font-weight: 600;
  }
  form .hs-richtext {
    font-size: 12px;
    line-height: 20px;
  }
  form label {
    font-size: 12px;
    line-height: 20px;
  }
  form input[type=checkbox] {
    margin-right: 14px;
  }
  form input[type=submit], form .hs-button {
    width: 100%;
  }
  form li.hs-form-radio label,
  form li.hs-form-checkbox label{
    font-size: 15px;
    font-weight: 600;
  }
}
@media (max-width: 767px) {
  .widget-type-form {
    padding: 40px 18px;
  }
}
/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}




/* overlay styling */

.dark-overaly-wrp {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(153, 153, 153, 0.5);
  align-items: center;
  justify-content: center;
  display: flex;
  width: 100%;
  height: 100%;
}
.dark-overaly-wrp:before {
  content: "";
  display: inline-block;
  height: 100%;
  margin-right: -0.05em;
  vertical-align: middle;
}
.dark-overaly-wrp .page-center {
/*   position: relative;
  vertical-align: middle;
  width: 100%;
  z-index: 2;
  display: inline-block;
  max-height: 582px;
  overflow: hidden;
  overflow-y: auto;
  max-height: 100%; */
}
.dark-overaly-wrp .content {
  background: #fff;
  padding: 100px 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.dark-overaly-wrp .left-col, 
.dark-overaly-wrp .right-col {
  flex: 1;
}
.dark-overaly-wrp h3 {
  margin-bottom: 60px;
}

.dark-overaly-wrp .content-in {
  display: inline-block;
  max-height: 582px;
  max-height: 100vh;
  overflow: hidden;
  overflow-y: auto;
  position: relative;
  vertical-align: middle;
  width: 100%;
  z-index: 2;
}

@media(max-width: 767px){
  .dark-overaly-wrp .content {
    padding: 60px 30px;
    border-radius: 12px;
    gap: 0;
  }
  .dark-overaly-wrp .left-col, 
  .dark-overaly-wrp .right-col {
    width: 100%;
    flex: none;
  }
  .dark-overaly-wrp .left-col {
    margin-bottom: 90px;
  }
  .dark-overaly-wrp h3 {
    margin-bottom: 15px;
  }
}
/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
  font-weight: 600;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom: 0px;
}

tr td {
  display: flex;
  align-items: center;
  padding: 17px 20px;
  border-top-width: 1px;
  border-top-style: solid;
}

.table-content tbody tr:last-child td {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

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

.dnd-section.DND_banner-row-0-force-full-width-section {
  padding: 0;
}
.justify-content-start {
  -ms-flex-pack: start!important;
  justify-content: flex-start!important
}

.justify-content-end {
  -ms-flex-pack: end!important;
  justify-content: flex-end!important
}

.justify-content-center {
  -ms-flex-pack: center!important;
  justify-content: center!important
}

.justify-content-between {
  -ms-flex-pack: justify!important;
  justify-content: space-between!important
}
.site-header {
  position: relative;
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transition: 0.5s ease;  
  border-bottom: 1px solid #00000066;
  z-index: 99;
}
@media(min-width: 1200px){
.site-header {
    min-width: 100px;
  }
}
header.site-header.nav-up {
  top: -110px;
}
.header-wrapper {
  min-height: 100px;
}
/* Logo */
.site-header .row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify!important;
  justify-content: space-between!important;
}
.header__logo img {
  max-width: 300px;
  /*width: 100% !important;*/
}
.header-right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
}

.site-header .header-button {
  padding-left: 40px;
}
.site-header .hs-button {
  font-size: 15px;
  font-weight: 500;
  min-height: 100px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 22px;
  padding-right: 22px;
  line-height: 2;
  min-width: 194px;
}

.custom-menu-primary {
  padding-right: 24px;
}
.header-right-links {
  padding-left: 24px;
}
.header-right-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center; 
  position: relative;
}
.mega-menu:before {
  /*   content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: rgb(0 0 0 / 60%);
  height: 671px;
  clip-path: polygon(0 0, 100% 0%, 100% 49%, 0 79%); */
}
span.close-icon {
  position: absolute;
  right:30px;
  top: 16px;
  cursor: pointer;
  display: none;
}
span.close-icon:hover svg {
  fill: #C6C6C6;
}
.header__logo {
  padding-bottom: 17px;
  padding-top: 24px; 
}
.header__logo img {
  max-width: 195px !important;
  display: block;
}

/*header links */
.header-links .link-items{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
}
.header-links .link-items > li {
  padding: 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-links .link-items > li:first-child {
  padding-left: 0px;
}

.header-links .link-items > li:last-child {
  padding-right: 10px;
}
.header-links .link-items ul {
  list-style: none;
}

.header-links .link-items ul li:not(:last-child) {
  margin-bottom: 15px;
}
.header-links .link-items li ul {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 100%;
  padding: 57px 80px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  margin-top: 0px;
  transform: translateY(50px);
  transition: all .4s ease-in-out;
  z-index: 1;
}
.header-links .link-items li ul li a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

.header-right-inner .globe_class {
  width: 0;
  height: 0;
  background: none;
}
.header-links .link-items li span {
  cursor: pointer;
}
button.searchButton {
  padding: 0;
  margin: 0;
  background: none !important;
  border: none !important;
  cursor: pointer;
}

/* Search bar */
.searchBox {
  position: absolute;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  left: 0;
  right: 0;
  background: rgb(0 0 0 / 60%);
  height: 100vh;
  width: 100%;
  transition: all .3s ease-in-out;
}
.searchBox.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.hs-search-field {
  max-width: 892px;
  margin: 0 auto;
  padding-top: 207px;
}
.header__search {
  padding: 0 1rem;
  width: auto;
}



.hs-search-field__form {
  position: relative;
}

.header__search .hs-search-field__label {
  flex-basis: auto;
}



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



.header__search .hs-search-field__button {
  padding: 0;
  fill: #000;
  background-color: transparent;
  border: none;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
}

.header__search .hs-search-field__button svg {
  height: 25px;
}


.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

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

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

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

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




.menu-overlay {
  position: absolute;
  top: 100%;
  width: 100%;
  background: rgb(0 0 0 / 60%);
  height: 100vh;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity .15s linear;
  -o-transition: opacity .15s linear;
  transition: all .15s linear;
  visibility: hidden;
  z-index: -1;
}

.show-overlay .menu-overlay {
  opacity: 1;
  visibility: visible;
}
/* Language switcher */


/*Header Menu */
.header-menu .hs-menu-wrapper > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

}
.hs-menu-wrapper ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.custom-menu-primary .hs-menu-wrapper >ul > li > a {
  padding: 5px 19px;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}
span.child-trigger {
  padding-left: 4px;
}
span.child-trigger svg {
  fill: currentColor;
}

.custom-menu-primary .hs-menu-wrapper>ul >li> .mega-menu >ul {
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: row !important;
  max-width: 1416px;
  margin: 0 auto;
  position: relative;
}
.custom-menu-primary .hs-menu-wrapper>ul >li> .mega-menu >ul {
  padding-top: 53px;
  padding-bottom: 14px;
}

.custom-menu-primary .hs-menu-wrapper>ul >li> .mega-menu >ul> li span.title {
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  display: block;
  padding-bottom: 12px;
  margin-bottom: 8px;
}
.hs-menu-depth-3 , ul.submenu.level-3 > li {
  padding-bottom: 20px;
  width: 100%;
}
.hs-menu-depth-3 > a,
ul.submenu.level-3 > li> a{
  position: relative;
  padding-left: 21px;
  display: flex;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;

}
.hs-menu-depth-3 > a span,
ul.submenu.level-3 > li> a span {
  color: rgba(213, 15, 33, 1.0);
}
.custom-menu-primary .hs-menu-wrapper>ul >li> .mega-menu ul li.hs-menu-depth-3 svg,
ul.submenu.level-3 > li svg{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.custom-menu-primary .hs-menu-wrapper>ul >li> .mega-menu ul li svg path {
  fill: currentColor;
}
.custom-menu-primary .hs-menu-wrapper>ul >li> .mega-menu ul.simple-menu-wrap {
  width: 224px;
  flex-direction: column !important;
  padding-top: 54px;
}

.custom-menu-primary .hs-menu-wrapper>ul >li> .mega-menu ul.simple-menu-wrap li a {
  display: block;
  padding: 0 19px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}
.custom-menu-primary .page-center {
  position: relative;
}

@media(min-width: 768px) {
  .body-container-wrapper {
    overflow: hidden;
  }
}
@media (min-width: 1200px) {
  .custom-menu-primary .hs-menu-wrapper>ul >li> .mega-menu >ul.mega-menu-wrap> li {
    width: 25%;
    padding: 0 30px;
  }
  .mega-menu {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    margin-top: 1px;
    transition: all .4s ease-in-out;
  }
  .mega-menu.open-megamenu {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
  }
  .custom-menu-primary .hs-menu-wrapper>ul >li> .mega-menu ul.simple-menu-wrap li {
    padding-bottom: 20px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul >li> .mega-menu ul.simple-menu-wrap {
    margin-left: 57%;
  }
  .header-links .link-items li:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
  }
  .header-links .link-items li ul:before {
    content: "";
    width: 100%;
    height: 35px;
    top: -35px;
    background: transparent;
    position: absolute;
    left: 0;
  }

  .header-links .link-items li ul {
    border-top: 1px solid #00000066;
  }
  li.menu-image {
    text-align: right;
  }
  .header__container.close-container {
    position: relative;
    padding: 0;
    height: 0;
  }
  .header__container.close-container span.close-icon {
    right: 0;
    z-index: 99;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li>.mega-menu>ul.mega-menu-wrap>li:nth-of-type(4)+.menu-image {
    position: absolute;
    right: 24%;
    height: auto;
    width: 80px;
    top: 28px;
    padding: 0;
  }
}
@media (max-width: 1300px) and (min-width: 1200px) {
  .custom-menu-primary .hs-menu-wrapper >ul > li > a {
    padding-left: 10px;
    padding-right: 10px;
  }

}

/* Mobile Trigger */
button.mobile-trigger {
  border: none;
  background: transparent !important;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-trigger span, .mobile-trigger span:before, .mobile-trigger span:after {
  content: '';
  position: absolute;
  display: block;
  width: 30px;
  height: 4px;
  background: #d50e22;
  cursor: pointer;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  /*   border-radius: 16px; */
}
.mobile-trigger span:before {
  top: -9px;
}
.mobile-trigger span:after {
  bottom: -9px;
}
.mobile-open .mobile-trigger span {
  background-color: transparent;
}
.mobile-open .mobile-trigger span:before {
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #d51224;
}
.mobile-open .mobile-trigger span:after {
  top: 10px;
  -webkit-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
  background-color: #d51224;
}
.header-links .link-items .language-icon ul li:first-child a.lang_switcher_link,
.header-links .dropdown-wrapper ul li:first-child a{
  color: rgba(213, 15, 33, 1.0);
}
/* .header-links .link-items li ul li a br {
  display: block;
  content: "";
  margin-top: -12px;
} */
@media (min-width: 1200px) {
  .mobile-trigger, svg.visible-mobile,
  li.dl-back,
  .custom-menu-primary.mobile-menu{
    display: none !important;
  }
  .mobile-menu-wrap {
    display: none;
  }
  .custom-menu-primary.desktop-menu {
    display: block !important;
  }


}
@media (max-width: 1300px) and (min-width: 1200px){
  .site-header .header-button {
    padding-left: 16px;
  }

  .header-right-links {
    padding-left: 15px;
  }

  .custom-menu-primary {
    padding-right: 0px;
  }

  .site-header .hs-button {
    padding-left: 15px;
    padding-right: 15px;
  }
  .site-header .hs-button {
    min-width: 180px;
  }

}
@media (max-width: 1199px) {
  .custom-menu-primary, .site-header .header-button,
  .custom-menu-primary.desktop-menu{
    display: none;
  }
  .menu-overlay {
    display: none;
  }
  .header-links .link-items li:not(.search-icon) {
    display: none;
  }
  .custom-menu-primary {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 100px;
    background: #fff;
    padding: 0;
    overflow-y: auto;
    max-height: calc(100vh - 100px)!important;
  }

  .header-menu .hs-menu-wrapper > ul {
    flex-direction: column;
  }

  .header-menu {
    padding-top: 19px;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
  }

  .custom-menu-primary .hs-menu-wrapper >ul > li > a {
    line-height: 30px;
    padding: 0;

  }


  .custom-menu-primary .hs-menu-wrapper>ul >li> .mega-menu >ul {
    flex-direction: column !important;
    padding-top: 0;
    padding-bottom: 0;
  }

  .custom-menu-primary .hs-menu-wrapper >ul  li  a,
  .custom-menu-primary li.custom-parent-link{
    margin-bottom: 18px;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    line-height: 30px;
  }

  .menu-image {
    position: absolute;
    right: 40px;
    top: 0;
    z-index: 10
  }
  .custom-menu-primary .hs-menu-wrapper>ul >li> .mega-menu >ul> li span.title {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
    max-width: 140px;
    padding-bottom: 0px;
    font-weight: 600;
    padding-right: 15px;
  }

  .header-de .custom-menu-primary .hs-menu-wrapper>ul>li>.mega-menu>ul>li span.title {
    max-width: 200px;
  }

  .custom-menu-primary .hs-menu-wrapper>ul >li> .mega-menu >ul> li span.title svg {
    position: absolute;
    transform: none;
    right: 0;
  }
  ul.hs-menu-children-wrapper.third-level,
  .simple-menu-child > .mega-menu{
    position: absolute;
    top: 0;
    min-height: 100%;
    visibility: visible;
    width: 100%;
    z-index: 2;
    background-color: #fff;
    flex-direction: column;
    padding: 0 40px;
    transition: all 0.3s ease;
  }
  .custom-menu-primary ul li.clicked >ul.hs-menu-children-wrapper,
  .simple-menu-child.clicked > .mega-menu{
    transform: translateX(0);
    padding-bottom: 20px;
  }
  .custom-menu-primary li:not(.simple-menu-child) > ul > li.has-submenu{
    padding-left: 30px;
  }

  .custom-menu-primary .hs-menu-wrapper>ul >li> .mega-menu >ul,
  .custom-menu-primary .page-center{
    position: static;
  }
  li.dl-back svg {
    margin-right: 13px;
  }
  li.dl-back {
    padding-top: 18px;
  }
  li.custom-parent-link svg {
    margin-left: 13px;
  }
  .hs-menu-depth-3,
  .hs-menu-depth-2,
  ul.submenu.level-3 > li{
    padding-bottom: 0px;
    padding-left: 80px;
  }
  .custom-menu-primary .hs-menu-wrapper ul li.custom-parent-link {
    font-size: 15px !important;
    font-weight: 600;
    padding-left: 40px;
    cursor: pointer;
  }

  .custom-menu-primary .hs-menu-wrapper>ul >li> .mega-menu ul.simple-menu-wrap {
    width: 100%;
    padding: 0;
  }
  .custom-menu-primary .page-center ,
  .custom-menu-primary .hs-menu-wrapper>ul >li> .mega-menu ul.simple-menu-wrap li a {
    padding: 0;
  }
  .mobile-menu-bottom {
    padding-left: 38px;
    padding-right: 38px;
    padding-bottom: 38px;
    position: relative;
    background: #fff;
  }
  .mobile-menu-bottom-inner {
    border-top: 1px solid #999999;
  }
  .mobile-menu-bottom .link-items li:not(.search-icon) {
    display: block;
  }
  .mobile-menu-bottom .link-items li.search-icon {
    display: none;
  }
  .header-links .link-items {
    justify-content: center;
    padding-top: 23px;
    padding-bottom: 23px;
    margin: 0;
  }

  .site-header .hs-button {
    min-height: 56px;
    align-items: center;
    justify-content: center;
  }
  .mega-menu:before {
    display: none;
  }
  .mega-menu.mega-menu-large {
    display: none;
  }
  li.hs-item-has-children.simple-menu-child.has-submenu {
    padding-left: 0px;
  }

  body:before {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgb(0 0 0 / 60%);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: all .15s linear;
  }
  body.mobile-open:before {
    opacity: 1;
    visibility: visible;
  }
  .header-links .dropdown-wrapper ul {
    display: none;
    padding: 0 0 30px;
    list-style: none;
    margin: 0;
  }

  .header-links .dropdown-wrapper ul li {
    padding: 10px 90px 10px;
  }
  .header-links .dropdown-wrapper ul li a {
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
  }
  .mobile-menu ul.submenu.level-3>li > a {
    padding-right: 20px;
  }

}
@media (max-width: 767px) {
  .header-right-links {
    padding-left: 0px;
  }
  .header__logo img {
    max-width: 154px !important;
  }
  .menu-image {
    position: static;
    padding: 18px 30px;
    z-index: 0;
  }

  .mobile-menu span.child-trigger {
    padding-left: 13px;
    padding-right: 10px;
  }
  .header-wrapper {
    min-height: 89.6px;
  }
  .mobile-menu-bottom {
    padding-left: 20px;
    padding-right: 20px;
  }
}




.bg-menu-overlay {
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgb(0 0 0 / 60%);  
}
.custom-menu-primary .right-col img {
  object-fit:contain;
}

/* tab menu styling */

@media(min-width: 1200px) {
  .mob-menu-wrap {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  span.close-icon {
    display: none !important;
  }
}

@media(max-width: 1199px) {
  .hs-menu-wrapper.dsk-only {
    display: none !important;
  }
  .mob-menu-wrap {
    display: flex;
  }
  .mob-menu-wrap .left-col,
  .mob-menu-wrap .right-col {
    width: 50%;
    background-color: #fff;
    overflow: hidden;
    position: relative;
  }
  .mob-menu-wrap .right-col .menu-image {
    position: static;
    text-align: center;
    text-align: right;
    padding: 0 20px 20px;
  }  
  .custom-menu-primary .hs-menu-wrapper>ul >li> .mega-menu >ul li.menu-image {
    display: none !important;
  }
  ul.hs-menu-children-wrapper.third-level, 
  .simple-menu-child > .mega-menu {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(100%);
    visibility: visible;
    width: 100%;
    z-index: 2;
    transition: all .3s ease;
    background-color: #fff;
    flex-direction: column;
    padding: 0 40px;
    display: block;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
  }
  .simple-menu-child>.mega-menu, ul.hs-menu-children-wrapper.third-level {
    padding: 0;
  }
  .mob-menu-wrap .right-col .menu-image img {
    vertical-align: middle;
  }
  .header-links .link-items li {
    padding: 0 25px;
  }
  .header-links .link-items li.search-icon {
    padding-right: 15px;
    padding-top: 7px;
  }
  .hs-search-field {
    padding-left: 38px;
    padding-right: 38px;
  }
  body.mobile-open header.site-header.nav-up {
    top: 0;
  }
  .custom-menu-primary li.has-submenu.clicked {
    padding-left: 0px;
  }
  ul.hs-menu-children-wrapper.third-level> li {
    max-width: 350px;
  }
  ul.hs-menu-children-wrapper.third-level li a {
    display: block;
    padding-right: 20px;
    padding-left: 0px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>.mega-menu ul li.hs-menu-depth-3 svg,
  ul.submenu.level-3 > li svg{
    right: 0;
    left: auto;
  }
  .back-menu ul.for-desktop-only > li:not(.clicked),
  .back-menu ul.submenu.level-1> li:not(.clicked){
    height: 0;
  }
}
@media(max-width: 767px) { 
  .mob-menu-wrap .right-col .menu-image {
    padding: 18px 15px;
  }
}
@media(max-width: 767px) { 
  .custom-menu-primary {
    max-height: calc(100vh - 88px)!important;
  }
  .header-links .link-items li.search-icon {
    padding-right: 10px;
  }
  .header-links .link-items li.search-icon .searchButton {
    margin-top: 2px;
  }
  .mob-menu-wrap {
    display: block;
  }
  .mob-menu-wrap .left-col, 
  .mob-menu-wrap .right-col {
    width: 100%;
  }
  .mob-menu-wrap .right-col {
    display: none
  }
  .custom-menu-primary .hs-menu-wrapper>ul >li> .mega-menu >ul li.menu-image {
    display: block !important;
  }
  .back-menu .custom-menu-primary .hs-menu-wrapper>ul >li> .mega-menu >ul li.menu-image {
    display: none !important;
  }
  .custom-menu-primary {
    top: 88px;
  }
  .header-menu {
    padding-left: 20px;
    padding-right: 20px;
  }
  .custom-menu-primary .mega-menu-child li.has-submenu,
  .custom-menu-primary .hs-menu-wrapper ul li.custom-parent-link{
    padding-left: 38px;
  }
  .menu-image {
    padding-left: 38px;
    padding-right: 38px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul li.dl-back > a {
    margin-bottom: 28px;
  }

  .hs-menu-depth-3,
  ul.submenu.level-3 > li{
    padding-left: 38px;
  }
  .custom-menu-primary li.has-submenu.clicked > .third-level > .custom-parent-link svg {
    transform: rotateZ(90deg);
  }
  /*   .custom-menu-primary.mobile-menu ul.hs-menu-children-wrapper.third-level {
  position: absolute;
  top: 0;
  width: 100%;
  transform: translateX(100%);
  transition: all 0.5s;
  left: 100%;
  right: 0;
  height: auto;
  min-height: auto;
  z-index: 1000;
  transform-origin: top right;
}
  .custom-menu-primary.mobile-menu ul.hs-menu-children-wrapper.third-level.child-open {
  transform: translateX(0);
  left: 0;
} */
}

@media (max-width: 479px) {
  ul.hs-menu-children-wrapper.third-level, .simple-menu-child > .mega-menu {
    padding-left: 0px;
    padding-right: 0px;
  }
  .header-links .dropdown-wrapper ul li {
    padding-left: 20px;
    padding-right: 20px;
  }
}



@media (max-width: 1199px) {
  .custom-menu-primary ul li.clicked>ul.hs-menu-children-wrapper, .simple-menu-child.clicked>.mega-menu {
    position: static;
  }
  li.hs-item-has-children.simple-menu-child.has-submenu.clicked>a,
  .custom-menu-primary .hs-menu-wrapper>ul >li> .mega-menu >ul> li.clicked > span.title,
  .back-menu .custom-menu-primary .hs-menu-wrapper >ul > li.clicked > a,
  .back-menu  li.hs-item-has-children.has-submenu.clicked>a{
    display: none;
  }
}

ul.hs-search-field__suggestions {
  background: #fff;
}

.hs-search-field__suggestions #results-for, .hs-search-field__suggestions a {
  padding: 8px 20px;
}
.hs-search-field__suggestions a:hover {
  color: #000;
}
.footer {
  margin-top: 100px;
}
.custom-footer-top {
  padding-top: 119px;
  padding-bottom: 63px;
}
.footer-sticky-contact {
  display: none;
}
.footer__container {
  display: flex;
}

.footer-logo,
.copyright{
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.custom-footer-menu,
.footer-social{
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.custom-footer-menu .hs-menu-wrapper ul {
  display: flex;
}
.custom-footer-menu .hs-menu-wrapper >ul > li {
  width: 50%;
  padding: 0 18px;
}
.footer .hs-menu-wrapper ul li a {
  font-size: 15px;
  font-weight: 500;
  line-height: 40px;
  position: relative;
  display: inline-block;
}
.buttons-wrapper {
  display: flex;
  padding-top: 57px;
}
.buttons-wrapper .footer-button {
  width: 50%;
  padding: 0 18px;
}
.footer .buttons-wrapper .hs-button {
  display: block;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  border: 2px solid #fff;
  padding: 10px 15px;
  font-weight: 500;
}
.custom-footer-bottom {
  padding-bottom: 116px;
}
.copyright {
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  padding-top: 30px;
}
.footer-social {
  padding-top: 23px;
}
.social-icons-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
}
.social-icons-wrapper ul li {
  padding: 0 40px;
}
.footer .hs-menu-wrapper ul li a:before {
  width: 100%;
  height: 1px;
  background: transparent;
  content: "";
  position: absolute;
  left: 0;
  bottom: 9px;
  transition: .5s all;
}
.custom-footer-top .footer__container {
  position: relative;
}
.back-to-top {
  position: absolute;
  right: 30px;
  top: -89px;
  background-color: var(--secondary);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.back-to-top:hover svg rect {
  fill: #c6c6c6;
}
.footer .hs-menu-wrapper ul li a:empty {
  display: none;
}
.footer.footer-mini .copyright {
  padding-top: 30px;
}
.footer.footer-mini .custom-footer-bottom {
  padding-bottom: 134px;
  padding-top: 0px;
}
@media (min-width: 1200px) {
  .footer-mini .custom-footer-menu .hs-menu-wrapper ul {
    flex-direction: column;
    padding-left: 50%;
  } 
}

@media (max-width: 1199px) {
  .footer__container {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .footer-logo, .copyright {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footer-logo {
    padding-bottom: 78px;
  }
  .footer .custom-footer-top {
    padding-top: 24px;
  }
  .custom-footer-menu, .footer-social{
    -ms-flex: 0 0 75%;
    flex: 0 0 75%; 
    max-width: 75%;
  }
  .custom-footer-bottom .footer__container {
    flex-direction: column-reverse;
  }

  .custom-footer-bottom {
    padding-bottom: 25px;
    padding-top: 0px;
  }
  .back-to-top {
    right: 38px;
    top: 8px;
  }
  .custom-footer-menu .hs-menu-depth-3, .custom-footer-menu .hs-menu-depth-2 {

    padding-left: 0px;
  }
  .copyright {
    padding-top: 150px;
  }
  .custom-footer-top {
    padding-bottom: 59px;
  }
  .buttons-wrapper {
    padding-top: 24px;
  }
  footer.footer.footer-lp .footer-logo {
    padding-bottom: 0px;
  }
  .footer-mini .custom-footer-menu {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footer-mini .custom-footer-menu .hs-menu-wrapper ul {
    flex-direction: column;
  }
  .footer-mini .footer__container {align-items: flex-start;}
  .footer-mini .custom-footer-menu .hs-menu-wrapper>ul {
    gap: initial;
  }
}

@media (max-width: 767px) {
  .footer {
    margin-top: 60px;
  }
  .footer .custom-footer-top {
    padding-top: 28px;
  }
  .footer-logo img {
    max-width: 156px;
  }
  .footer-logo img {
    max-width: 156px;
  }

  .back-to-top {
    right: 25px;
    top: 2px;
  }

  .custom-footer-menu, .footer-social {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .custom-footer-menu .hs-menu-wrapper >ul > li {
    width: 100%;
    padding: 0;
  }
  .custom-footer-bottom {
    padding-top: 38px;
  }
  .custom-footer-menu .hs-menu-wrapper > ul {
    gap: 60px;
  }

  .buttons-wrapper {
    padding-top: 60px;
    flex-direction: column;
    gap: 42px;
  }
  .buttons-wrapper .footer-button {
    width: 100%;
    padding: 0;
  }
  .custom-footer-menu {
    padding-top: 44px;
  }
  .footer-social {
    padding-top: 0px;
  }
  .copyright {
    padding-top: 155px;
  }
  .custom-footer-menu .hs-menu-depth-3, .custom-footer-menu .hs-menu-depth-2 {

    padding-left: 0px;
  }
  .footer-logo {
    padding-bottom: 0px;
  }
  footer.footer {
    position: relative;
  }
  .footer-sticky-contact {
    display: block;
  }
  .footer-sticky-contact .sticky-contact-btn {
    display: block;
  }
  .footer-sticky-contact .sticky-contact-btn .modal-toggle {
    position: absolute;
    top: 120px;
    right: 20px;
  }
  footer.footer.footer-lp .copyright {
    padding-top: 0;
  }
  .footer-sticky-contact {
    position: sticky;
    top: 0;
  }
  .footer-sticky-contact {
    display: none;
}
}
@media (max-width: 479px) {
  .social-icons-wrapper ul li {
    padding: 0 20px;
  }
}
/* 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;
}

.body-container--blog-post section.contact-banner h3,
.body-container--blog-index section.contact-banner h3{
  color: var(--body-color);
  line-height: 46px;
}

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

.page-breadcrumb .breadcrumb-section {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 1;
}
.no-banner.page-breadcrumb .breadcrumb-section {
  position: static;
}
@media (min-width: 1200px) {
  .body-container--blog-post section.contact-banner p strong,
  .body-container--blog-index section.contact-banner p strong{
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 834px) {
  .page-breadcrumb {
    display: none;
  }
}
@media (min-width: 1200px) {
  .btnn_wrpr button.filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent !important;
  }

  .btnn_wrpr button.filter-btn:hover {
    background: #ECF2F5 !important;
  }
}

.blog-post__tags {
  margin: 50px 0 40px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 12px;
}
.blog-post__tags a {
  border: 1px solid var(--borders_color);
  color: var(--borders_color);
  display: inline-block;
  padding: 7px 24px;
  padding: 1px 24px;
  font-size: 15px;
  line-height: 2.1;
  font-weight: 600;
  transition: all 0.3s ease;
}
.blog-post__tags a:hover {
  color: var(--borders_color);
  background-color: var(--black_light);
}
.blog-post__tags a:not(:last-child) {
  margin-right: 24px;
  margin-right: 19px;
}
.blog-post-header h1 {
  margin-bottom: 70px;
}
.blog-post__body .news-date {
  font-size: 24px;
  line-height: 1.33;
  margin-bottom: 59px;
  display: inline-block;
  font-weight: 600;
}
.blog-post__body .dnd-section {
  margin: 0;
  padding: 0;
}
.blog-post__body .dnd-section > .row-fluid {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.blog-post__text figure,
.news_image_wrap figure{
  margin: 0;
  padding: 0;
  display: block;
  margin-bottom: 39px;
}
.blog-post__text figure.text-right {
  float: right;
}
.blog-post__text figure img,
.news_image_wrap figure img{
  height: auto;
  vertical-align: middle;
  margin-bottom: 18px;
}
.blog-post__text figure figcaption,
.news_image_wrap figure figcaption{
  font-size: 15px;
  line-height: normal;
  font-family: Arial;
}
.news-blog-post.news_image_wrap figure figcaption {
  margin-top: 18px;
}
.blog-single__author {
  margin-top: 131px;
  font-size: 20px;
  line-height: 1.6;
}
.blog-single__author .img {
  margin-bottom: 50px;
}
.blog-single__author img {
  width: 220px;
  max-width: 100%;
  height: 220px;
  object-fit: cover;
  vertical-align: middle;
}
.blog-single__author .auth-btn {
  margin-top: 39px;
}

@media(max-width: 1199px) {
  .breadcrumb-section {
    display: none;
  }
  .body-container--blog-post.event-post-page {
    padding: 30px 0 0px;
  }
  .blog-post__body .span1 {
    display: none;
  }
  .blog-post__body .span10 {
    width: 100%;
  }
  .blog-single__author {
    margin-top: 79px;
    font-size: 15px;
    line-height: 2.1;
  }
  .blog-post__tags {
    margin-bottom: 10px;
  }
  .blog-post-header h1 {
    margin-bottom: 53px;
  }
  .blog-post__body .news-date {
    margin-bottom: 29px;
    font-size: 18px;
    line-height: 21px;
  }
  .blog-post__text figure img {
    margin-bottom: 10px;
  }
  .blog-post__text figure figcaption,
  .news_image_wrap figure figcaption{
    font-size: 12px;
    line-height: 21px;
  }
  .news-blog-post .news_image_wrap figure figcaption {
    margin-top: 10px;
  }
  .blog-post__tags a {
    font-size: 13px;
    line-height: 32px;
  }
  .event-post-page .blog-post__text h2 {
    margin-bottom: 20px;
  }
}
@media(max-width: 767px) {
  .body-container--blog-post.event-post-page {
    padding: 30px 0 0px;
  }
  .blog-post__text figure.text-right {
    float: none;
  }
  .blog-single__author {
    margin-top: 69px;
    text-align: center;
  }
  .blog-post__tags {
    margin-bottom: 12px;
  }
  .blog-post-header h1 {
    margin-bottom: 91px;
  }
  .job-blog-post-container .blog-post-header h1 {
    margin-bottom: 37px;
  }

  .job-blog-post-container .news_post_date {
    margin-bottom: 25px;
  }

}

@media (max-width: 479px) {
  .blog-single__author .auth-btn .hs-button {
    width: 100%;
  }
}
/* Pagination Style Global */

#pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 4px;
  padding: 2px 4px;
  background-color: transparent;
  font-size: 16px;
  width: 30px;
  line-height: 2;
  font-weight: 600;
  height: 30px;
  color: #000 !important;
}
#pagination a:hover {
  border: 1px solid var(--xa_grey_light);
}
#pagination a.jp-previous, #pagination a.jp-next {
  background-repeat: no-repeat;
  font-size: 0;
  width: 50px;
  height: 50px;
  padding: 0;
  background-position: center;
  border-radius: 50%;
  border: none !important;
}
#pagination a.jp-previous {
  background-image: url(https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/image/arrow-prev.svg);
  margin-right: 130px;
}
#pagination a.jp-next {
  background-image: url(https://25078896.fs1.hubspotusercontent-eu1.net/hubfs/25078896/Xantaro%20website%208-2023/image/arrow-next.svg);
  margin-left: 130px;
}

#pagination a.jp-current {
  color: var( --body_color);
  border: 1px solid var(--borders_color);
}
#pagination a.jp-previous:hover, #pagination a.jp-next:hover {
  background-color: #ECF2F5;
}
@media (max-width: 1199px) {
  #pagination {
    padding-top: 30px;
  }

}
@media (max-width: 767px) {

  #pagination a.jp-previous {
    margin-right: 54px;
  }
  #pagination a.jp-next {
    margin-left: 54px;
  }

}
.hs_cos_wrapper_type_module > hr {
    width: 100%;
}
a.cta_button {
    -moz-box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    vertical-align: middle;
}
/* End Pagination Style */

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

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

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

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