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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

@media (max-width: 767px) {
  .content-wrapper {
    --padding-x: 24px;
  }
}

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

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

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

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

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

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

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

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

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

/* Paragraphs */

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

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

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

.button,
.hs-button,
.hs-blog-post-listing__post-button {
  padding: 15px 9px;
  border: 2px solid var(--second-color);
  --text-align: center;
  --m-text-align: left;
  text-align: var(--text-align);
  min-width: 177px;
  --border-radius: 0 28px 0 28px;
  --m-border-radius: 0;
  border-radius: var(--border-radius);
  --color: var(--second-color);
  --background: #FFFFFF;
  color: var(--color);
  background: var(--background);
  --font-weight: bold;
  --font-size: 1rem;
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  --td: none;
  --tdhover: underline;
  text-decoration: var(--td);
}
.button:hover, .button:active, .button:focus,
.hs-button:hover,
.hs-button:active,
.hs-button:focus,
.hs-blog-post-listing__post-button:hover,
.hs-blog-post-listing__post-button:active,
.hs-blog-post-listing__post-button:focus {
  text-decoration: var(--tdhover);
}
.button:hover, .button:active, .button:focus,
.hs-button:hover,
.hs-button:active,
.hs-button:focus,
.hs-blog-post-listing__post-button:hover,
.hs-blog-post-listing__post-button:active,
.hs-blog-post-listing__post-button:focus {
  color: var(--color);
  background: var(--background);
  font-size: var(--font-size);
  font-weight: var(--font-weight);
}
@media only screen and (max-width: 767px) {
  .button:not(.mobile-still),
  .hs-button:not(.mobile-still),
  .hs-blog-post-listing__post-button:not(.mobile-still) {
    --border-radius: var(--m-border-radius);
    --color: white;
    --background: var(--second-color);
    margin: 0 2px 2px;
    display: block;
    --text-align: var(--m-text-align);
    padding: 14px 20px;
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px) {
  .button.mobile-still,
  .hs-button.mobile-still,
  .hs-blog-post-listing__post-button.mobile-still {
    font-size: 15px;
    min-width: 160px;
    width: auto;
    margin: 23px 0;
    padding: 13px 19px;
  }
}
.button,
.hs-button,
.hs-blog-post-listing__post-button {
  --color: #FFFFFF;
  --background: var(--second-color);
}

a.link-button {
  padding: 15px 9px;
  border: 2px solid var(--second-color);
  --text-align: center;
  --m-text-align: left;
  text-align: var(--text-align);
  min-width: 177px;
  --border-radius: 0 28px 0 28px;
  --m-border-radius: 0;
  border-radius: var(--border-radius);
  --color: var(--second-color);
  --background: #FFFFFF;
  color: var(--color);
  background: var(--background);
  --font-weight: bold;
  --font-size: 1rem;
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  --td: none;
  --tdhover: underline;
  text-decoration: var(--td);
}
a.link-button:hover, a.link-button:active, a.link-button:focus {
  text-decoration: var(--tdhover);
}
a.link-button:hover, a.link-button:active, a.link-button:focus {
  color: var(--color);
  background: var(--background);
  font-size: var(--font-size);
  font-weight: var(--font-weight);
}
@media only screen and (max-width: 767px) {
  a.link-button:not(.mobile-still) {
    --border-radius: var(--m-border-radius);
    --color: white;
    --background: var(--second-color);
    margin: 0 2px 2px;
    display: block;
    --text-align: var(--m-text-align);
    padding: 14px 20px;
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px) {
  a.link-button.mobile-still {
    font-size: 15px;
    min-width: 160px;
    width: auto;
    margin: 23px 0;
    padding: 13px 19px;
  }
}
a.link-button.white-button {
  --color: #FFFFFF;
  --background: var(--second-color);
}
a.link-button.big-button {
  display: inline-block;
  margin: 43px 0;
  width: 230px;
  --font-size: 21px;
  --font-weight: bold;
  border-radius: 0 40px 0 40px;
  padding: 24px 19px 20px;
  line-height: 1.3;
}
@media only screen and (max-width: 767px) {
  a.link-button.big-button {
    font-size: 18px !important;
    margin: 24px 0 !important;
    padding: 13px 19px;
    max-width: 196px;
    border-radius: 0 28px 0 28px;
  }
}
a.link-button.medium-button {
  display: inline-block;
  margin: 28px 0 16px;
  width: 230px;
  --font-size: 21px;
  --font-weight: bold;
  border-radius: 0 40px 0 40px;
  padding: 18px 20px;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  a.link-button.medium-button {
    font-size: 18px !important;
    margin: 24px 0 !important;
    padding: 13px 19px;
    max-width: 196px;
    border-radius: 0 28px 0 28px;
  }
}
a.link-button.readmore-link.expand {
  --color: var(--second-color) !important;
  --background: #FFF !important;
}
@media only screen and (max-width: 767px) {
  a.link-button.readmore-link {
    padding: 16px 19px !important;
    max-width: 178px !important;
    margin-right: 13px !important;
  }
}
a.link-button.red-hover:hover, a.link-button.red-hover:active, a.link-button.red-hover:focus {
  color: white;
  background: var(--second-color);
  text-decoration: none;
}

.tab-button {
  background: var(--footer-bgr-color);
  --color: var(--dark-color);
  color: var(--color);
  text-decoration: none;
  padding: 14px 40px;
  font-size: 21px;
  font-weight: bold;
  margin: 32px 32px 26px;
  display: inline-block;
  border-radius: 30px;
}
@media only screen and (max-width: 767px) {
  .tab-button {
    font-size: 16px;
    margin: 17px 0;
    padding: 10px;
  }
}

a.arrow-down {
  color: transparent;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  display: inline-block;
  width: 34px;
  height: 43px;
  background: url("https://145259364.fs1.hubspotusercontent-eu1.net/hub/145259364/hubfs/Common/Common/arrow-down.png");
}

/* Submit button */
form input[type=submit],
form .hs-button {
  padding: 15px 9px;
  border: 2px solid var(--second-color);
  --text-align: center;
  --m-text-align: left;
  text-align: var(--text-align);
  min-width: 177px;
  --border-radius: 0 28px 0 28px;
  --m-border-radius: 0;
  border-radius: var(--border-radius);
  --color: var(--second-color);
  --background: #FFFFFF;
  color: var(--color);
  background: var(--background);
  --font-weight: bold;
  --font-size: 1rem;
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  --td: none;
  --tdhover: underline;
  text-decoration: var(--td);
}
form input[type=submit]:hover, form input[type=submit]:active, form input[type=submit]:focus,
form .hs-button:hover,
form .hs-button:active,
form .hs-button:focus {
  text-decoration: var(--tdhover);
}
form input[type=submit]:hover, form input[type=submit]:active, form input[type=submit]:focus,
form .hs-button:hover,
form .hs-button:active,
form .hs-button:focus {
  color: var(--color);
  background: var(--background);
  font-size: var(--font-size);
  font-weight: var(--font-weight);
}
@media only screen and (max-width: 767px) {
  form input[type=submit]:not(.mobile-still),
  form .hs-button:not(.mobile-still) {
    --border-radius: var(--m-border-radius);
    --color: white;
    --background: var(--second-color);
    margin: 0 2px 2px;
    display: block;
    --text-align: var(--m-text-align);
    padding: 14px 20px;
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px) {
  form input[type=submit].mobile-still,
  form .hs-button.mobile-still {
    font-size: 15px;
    min-width: 160px;
    width: auto;
    margin: 23px 0;
    padding: 13px 19px;
  }
}
form input[type=submit],
form .hs-button {
  --color: #FFFFFF;
  --background: var(--second-color);
}
form input[type=submit],
form .hs-button {
  --border-radius: 10px;
  --m-border-radius: 10px;
  --text-align: center;
  --m-text-align: center;
  padding: 17px 19px;
}
form input[type=submit],
form .hs-button {
  --hsbtn-min-width: 213px;
  --m-hsbtn-min-width: 192px;
  min-width: var(--hsbtn-min-width, 0);
}
@media only screen and (max-width: 767px) {
  form input[type=submit],
  form .hs-button {
    --hsbtn-min-width: var(--m-hsbtn-min-width, 0) !important;
  }
}

/*# sourceMappingURL=_buttons.css.map */
@charset "UTF-8";
/* Fields */
.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */
form label {
  display: block;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */
/* Inputs */
form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */
form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

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

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

.hs-dateinput:before {
  content: "📅";
  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 img {
  max-width: 100% !important;
}

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

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

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

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

/* Submit button */
form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */
.grecaptcha-badge {
  margin: 0 auto;
}

/*# sourceMappingURL=_forms.css.map */

  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

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

/* 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;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

/* Header DND sections */
.scroll-top {
  align-items: center;
  background-color: white;
  border: 2px solid #fff;
  bottom: 6rem;
  color: var(--second-color);
  cursor: pointer;
  display: flex;
  height: 60px;
  justify-content: center;
  border-radius: 0;
  margin: 0;
  padding: 1.25em;
  position: fixed;
  border: 2px solid var(--second-color);
  right: 5.8rem;
  text-align: center;
  transition: opacity 0.4s;
  width: 60px;
}
.scroll-top:hover {
  text-decoration: underline;
  color: var(--second-color);
  border: 2px solid var(--second-color);
  background: white;
  border-radius: 0;
}
@media only screen and (max-width: 767px) {
  .scroll-top {
    bottom: 80px;
    font-size: 10px;
    height: 50px;
    right: 24px;
    width: 50px;
  }
}

.scroll-top.show {
  opacity: 1;
}

.scroll-top.hide {
  opacity: 0;
}

.scroll-top:hover {
  transition: transform 100ms ease-in-out 0s;
  transform: scale(1.1);
}

.scroll-top i {
  font-size: 1.5em;
}

.scroll-top i::before {
  display: inline-block;
  transform: rotate(180deg);
}

.vertical-menu {
  align-items: center;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .vertical-menu {
    display: block;
  }
  .vertical-menu > * {
    margin: 0;
  }
  .vertical-menu div.label {
    margin: 0 0 32px 0;
  }
}

@media only screen and (min-width: 768px) {
  .header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) {
    align-items: center;
    gap: 11px;
  }
}
.header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) li a {
  --color: var(--second-color);
  --background: #FFFFFF;
  color: var(--color);
  background: var(--background);
  --font-weight: bold;
  --font-size: 1rem;
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  --td: none;
  --tdhover: underline;
  text-decoration: var(--td);
}
.header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) li a:hover, .header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) li a:active, .header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) li a:focus {
  text-decoration: var(--tdhover);
}
.header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) li a:hover, .header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) li a:active, .header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) li a:focus {
  color: var(--color);
  background: var(--background);
  font-size: var(--font-size);
  font-weight: var(--font-weight);
}
.header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) li a {
  color: var(--dark-color);
  --tdhover: none;
}
.header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) li:hover > a, .header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) li:active > a {
  color: var(--second-color);
}
@media only screen and (min-width: 768px) {
  .header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) li.hs-item-has-children > a {
    padding-bottom: 51px;
  }
}
.header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) > li.hs-item-has-children > a::after {
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  margin-left: 8px;
}
.header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) > li.hs-item-has-children:hover > a::after, .header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) > li.hs-item-has-children:active > a::after {
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  content: "\f077";
}
.header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) > li {
  --liheight: 62px;
  --mpadding: 5px 25px 5px 0;
}
@media only screen and (max-width: 767px) {
  .header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) > li {
    --liheight: 55px;
  }
  .header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) > li a {
    display: flex;
    padding: var(--mpadding);
    min-height: var(--liheight);
    align-items: center;
    line-height: 1.15rem;
  }
  .header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) > li > ul {
    margin-top: 0;
    display: none !important;
  }
  .header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) > li > ul.expand {
    display: block !important;
  }
}
.header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) > li > ul {
  background: #FFFFFF;
}
.header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) > li > ul > li > a {
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  color: var(--dark-color);
  display: flex !important;
  font-size: 1rem;
  justify-content: space-between;
  line-height: 1.15rem;
  min-height: var(--liheight);
  padding: 5px 25px;
  vertical-align: middle;
  white-space: normal !important;
}
.header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) > li > ul > li > a:hover, .header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) > li > ul > li > a:active {
  background: var(--second-color);
  color: white;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) > li > ul > li > a {
    border-bottom: none;
  }
}
.header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) > li > ul > li.hs-item-has-children > a::after {
  margin-left: 8px;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  content: ">";
}
@media only screen and (min-width: 768px) {
  .header__navigation ul[role=menu]:not(.hs-menu-children-wrapper) > li > ul {
    margin: 48px -46px;
    max-width: 181px;
    border: 1px solid var(--border-color);
  }
}

.vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(2) a,
.vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(1) a {
  padding: 15px 9px;
  border: 2px solid var(--second-color);
  --text-align: center;
  --m-text-align: left;
  text-align: var(--text-align);
  min-width: 177px;
  --border-radius: 0 28px 0 28px;
  --m-border-radius: 0;
  border-radius: var(--border-radius);
  --color: var(--second-color);
  --background: #FFFFFF;
  color: var(--color);
  background: var(--background);
  --font-weight: bold;
  --font-size: 1rem;
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  --td: none;
  --tdhover: underline;
  text-decoration: var(--td);
}
.vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(2) a:hover, .vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(2) a:active, .vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(2) a:focus,
.vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(1) a:hover,
.vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(1) a:active,
.vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(1) a:focus {
  text-decoration: var(--tdhover);
}
.vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(2) a:hover, .vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(2) a:active, .vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(2) a:focus,
.vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(1) a:hover,
.vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(1) a:active,
.vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(1) a:focus {
  color: var(--color);
  background: var(--background);
  font-size: var(--font-size);
  font-weight: var(--font-weight);
}
@media only screen and (max-width: 767px) {
  .vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(2) a:not(.mobile-still),
  .vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(1) a:not(.mobile-still) {
    --border-radius: var(--m-border-radius);
    --color: white;
    --background: var(--second-color);
    margin: 0 2px 2px;
    display: block;
    --text-align: var(--m-text-align);
    padding: 14px 20px;
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px) {
  .vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(2) a.mobile-still,
  .vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(1) a.mobile-still {
    font-size: 15px;
    min-width: 160px;
    width: auto;
    margin: 23px 0;
    padding: 13px 19px;
  }
}
@media only screen and (max-width: 767px) {
  .vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(2) a:not(.mobile-still),
  .vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(1) a:not(.mobile-still) {
    --color: var(--second-color);
    --background: #FFFFFF;
  }
}
.vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(2) a,
.vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(1) a {
  display: block;
}
@media only screen and (max-width: 767px) {
  .vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(2),
  .vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(1) {
    margin-left: calc(0px - var(--padding-x));
    margin-right: calc(0px - var(--padding-x));
  }
}

.vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(1) a {
  --color: #FFFFFF;
  --background: var(--second-color);
}
@media only screen and (max-width: 767px) {
  .vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(1) a:not(.mobile-still) {
    --color: #FFFFFF;
    --background: var(--second-color);
  }
}

@media only screen and (min-width: 768px) {
  .vertical-menu.vertical-menu--new .hs-menu-wrapper > ul > li:nth-last-child(5) {
    margin-right: 30px;
    margin-top: 5px;
  }
  .vertical-menu.vertical-menu--new .hs-menu-wrapper > ul > li:nth-last-child(4) {
    margin-right: 30px;
    margin-top: 5px;
  }
  .vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(4) {
    margin-right: 85px;
    margin-top: 5px;
  }
  .vertical-menu .hs-menu-wrapper > ul > li:nth-last-child(3) {
    margin-right: 32px;
    margin-top: 5px;
  }
}
body {
  --header-one: 99px;
  --header-two: 127px;
}
@media only screen and (max-width: 767px) {
  body {
    --header-one: 45px;
    --header-two: 45px;
  }
}

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

/* Header container */
.header__container {
  display: flex;
  justify-content: space-between;
}

html:not(.hs-inline-edit) .body-wrapper > div:first-child {
  position: sticky;
  top: 0;
  z-index: 3;
  --transformy: 0px;
  transform: translateY(var(--transformy));
  transition: transform 0.4s;
}
html:not(.hs-inline-edit) .body-wrapper > div:first-child .header-wrapper {
  top: 0;
  position: sticky;
}
html:not(.hs-inline-edit) body.scrolled-up .body-wrapper > div:first-child {
  --transformy: calc(0px - var(--header-one));
}
html:not(.hs-inline-edit) body.scrolled-down .body-wrapper > div:first-child {
  --transformy: calc(0px - var(--header-one) - var(--header-two));
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}

.header__logo img {
  max-width: 100%;
}
@media only screen and (min-width: 768px) {
  .header__logo img {
    margin-top: 2px;
  }
}
@media only screen and (max-width: 767px) {
  .header__logo img {
    display: block;
  }
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header-1st {
  padding: 1rem;
}
@media only screen and (min-width: 768px) {
  .header-1st {
    margin: 1px 0;
  }
}

@media only screen and (min-width: 768px) {
  .header-2nd {
    padding: 30px 1rem;
  }
}
/* Search bar */
.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;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .header-2nd {
    flex-direction: row;
    justify-content: space-between;
  }
  .header__column {
    position: relative;
  }
  .header__row-1 {
    padding-top: 0;
  }
  .header__row-2 {
    justify-content: center;
  }
}
/* 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;
}

/* Logo */
.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    width: 100%;
  }
  .header__logo--main {
    margin: 0 auto;
    width: 89px;
  }
  .header__logo--secondary {
    padding: 9px 0;
    width: 89px;
    box-sizing: content-box;
  }
}
@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }
  .header__search label {
    margin: 0 1rem 0 0;
  }
  .header__search .hs-search-field__input {
    width: auto;
  }
}
@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}
/* Language switcher */
.header__language-switcher {
  cursor: pointer;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}
.header__language-switcher--label a {
  display: flex;
  align-items: center;
  --color: var(--second-color);
}
.header__language-switcher--label a {
  --td: none;
  --tdhover: underline;
  text-decoration: var(--td);
}
.header__language-switcher--label a:hover, .header__language-switcher--label a:active, .header__language-switcher--label a:focus {
  text-decoration: var(--tdhover);
}
.header__language-switcher--label a {
  --hovercolor: var(--color, inherit);
  color: var(--color, inherit);
}
.header__language-switcher--label a:hover, .header__language-switcher--label a:active, .header__language-switcher--label a:focus {
  color: var(--hovercolor, inherit);
}
.header__language-switcher--label a img {
  max-width: 100%;
  width: 25px;
  margin-right: 15px;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.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: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }
  .header__language-switcher--label-current {
    display: none;
  }
  .header__language-switcher .globe_class {
    background-image: none;
  }
  /* V1 lang switcher updates to keep "in line" w/ v0 mobile styles */
  .header__language-switcher .hs-language-switcher__menu {
    display: block;
    box-shadow: none !important;
    background: transparent;
  }
  .header__language-switcher .hs-language-switcher__menu a {
    font-size: 20px !important;
  }
  .header__language-switcher .hs-language-switcher__button {
    display: none;
  }
}
/* Navigation */
#nav-toggle {
  display: none;
}

.header__navigation {
  display: flex;
}

/* Mobile toggles */
@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }
  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #FFF;
    display: block;
    left: 0;
    --header: calc(var(--header-one) + var(--header-two) + 3px);
    position: fixed;
    right: 0;
    top: var(--header);
    z-index: 2;
    padding: var(--padding);
  }
  body.scrolled-up .header__navigation.open,
  body.scrolled-up .header__search.open,
  body.scrolled-up .header__language-switcher.open {
    --header: calc(var(--header-two) + 3px);
  }
  .header-wrapper:not(.no-lang) .header__navigation.open,
  .header-wrapper:not(.no-lang) .header__search.open,
  .header-wrapper:not(.no-lang) .header__language-switcher.open {
    padding-bottom: 28px;
  }
  .header__navigation--toggle,
  .header__search--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 0 0 7px;
    position: relative;
    height: 28px;
    width: 21px;
    font-size: 22px;
    color: var(--second-color);
  }
  .header__navigation--toggle.open,
  .header__search--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }
  .header__navigation--toggle.hide,
  .header__search--toggle.hide {
    display: none;
  }
  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after {
    display: block;
    word-break: normal;
  }
  .header__navigation--toggle::after {
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    content: "\f0c9";
  }
  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }
  .header__search--toggle:after {
    content: "Search";
  }
  .header__close--toggle {
    display: none;
    margin-right: -2px;
    margin-top: -7px;
  }
  .header__close--toggle::after {
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    content: "\f00d";
  }
  .header__close--toggle.show {
    display: block;
  }
}
.header-one {
  border-top: 10px solid var(--second-color);
}

@media only screen and (max-width: 767px) {
  .header-one {
    border-top-width: 5px;
  }
  .header-one .header-1st {
    padding: 9px 0 9px;
  }
}

.header__language-switcher-mobile-element {
  margin-top: 15px;
}
.header__language-switcher-mobile-element .header__language-switcher--label a img {
  margin-right: 9px;
}
@media only screen and (min-width: 768px) {
  .header__language-switcher-mobile-element {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  #hs_cos_wrapper_language-switcher .hs-language-switcher__current-language {
    display: inline-block !important;
    margin-left: 7px;
  }
}

.mobile-bgr {
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0.1);
  left: 0;
  height: 100vh;
  z-index: 0;
  width: 100vw;
}
@media only screen and (min-width: 768px) {
  .mobile-bgr {
    display: none;
  }
}
body:not(.nav-open) .body-wrapper .mobile-bgr {
  display: none;
}

body.nav-open {
  overflow: hidden;
}
body.nav-open .header-2nd {
  padding-bottom: 20px;
}
body.nav-open header.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100vw;
}

.footer > div:first-child {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child {
  background: white;
  border-top: 5px solid var(--footer-bgr-color);
  padding-bottom: 12px !important;
  padding-top: 39px !important;
}
@media only screen and (max-width: 767px) {
  .footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child {
    padding-bottom: 42px !important;
    padding-top: 17px !important;
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
}
.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child {
  padding: 0px 15px !important;
}
@media only screen and (max-width: 767px) {
  .footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child {
    padding: 24px 0 0 !important;
  }
  .footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child {
    margin-bottom: 16px !important;
  }
  .footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child img {
    width: 111px !important;
  }
}
.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child img {
  width: 197px !important;
}
.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) {
  padding: 0 !important;
}
.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div {
  justify-content: flex-start;
}
@media only screen and (min-width: 768px) {
  .footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div {
    padding: 1px 0 0 24px !important;
  }
}
@media only screen and (max-width: 767px) {
  .footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div {
    flex: 1 1 auto;
  }
}
.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div > div {
  padding: 0 !important;
  --mw-mobile: 139px;
}
@media only screen and (min-width: 768px) {
  .footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div > div {
    --mw: 161px;
    width: var(--mw);
    flex: 0 1 var(--mw);
  }
}
.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div > div:not(:nth-child(3)) > div:first-child h3, .footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div > div:not(:nth-child(3)) > div:first-child h4 {
  font-size: 1rem;
  line-height: 1rem;
  margin: 0 0 10px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div > div:not(:nth-child(3)) > div:first-child h3, .footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div > div:not(:nth-child(3)) > div:first-child h4 {
    margin: 0 0 12px 0;
  }
}
.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div > div:not(:nth-child(3)) li {
  line-height: 1rem;
  margin-bottom: 11px;
}
.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div > div:not(:nth-child(3)) li:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div > div:not(:nth-child(3)) li {
    line-height: 1.1rem;
    margin-bottom: 15px;
    font-size: 0.875rem;
  }
}
.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div > div:not(:nth-child(3)) a {
  color: var(--dark-color);
}
.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div > div:not(:nth-child(3)) a:hover {
  color: var(--second-color);
}
@media only screen and (min-width: 768px) {
  .footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div > div:nth-child(3) {
    padding: 0 !important;
    margin-left: auto;
    --mw: 158px;
    padding-right: 30px !important;
    margin-top: -2px;
  }
}
.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div > div:nth-child(3) > div:first-child {
  display: none !important;
}
.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div > div:nth-child(3) li {
  margin-bottom: 10px;
}
.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div > div:nth-child(3) a {
  --td: none;
  --tdhover: underline;
  text-decoration: var(--td);
}
.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div > div:nth-child(3) a:hover, .footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div > div:nth-child(3) a:active, .footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div > div:nth-child(3) a:focus {
  text-decoration: var(--tdhover);
}
.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div > div:nth-child(3) a {
  color: var(--dark-color);
  font-weight: bold;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div > div:nth-child(3) ul {
    display: flex;
    flex-direction: row;
  }
  .footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div > div:nth-child(3) ul li:first-child {
    min-width: var(--mw-mobile);
  }
}
@media only screen and (max-width: 767px) {
  .footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div > div {
    width: auto !important;
    min-width: var(--mw-mobile);
  }
}
.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) {
  background: var(--footer-bgr-color) !important;
}
@media only screen and (max-width: 767px) {
  .footer > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
}
@media only screen and (min-width: 768px) {
  .footer > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div {
    padding: 7px 16px;
  }
}
.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div li {
  margin-right: 45px;
}
.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div li:last-child {
  margin-right: 0;
}
.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div a {
  --td: none;
  --tdhover: underline;
  text-decoration: var(--td);
}
.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div a:hover, .footer > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div a:active, .footer > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div a:focus {
  text-decoration: var(--tdhover);
}
.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div a {
  color: var(--dark-color);
  text-decoration: none;
  font-size: 0.9rem;
}
@media only screen and (max-width: 767px) {
  .footer > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div a {
    font-size: 14px;
  }
}
.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div:nth-child(1) {
  padding: 0 !important;
}
@media only screen and (max-width: 767px) {
  .footer > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div:nth-child(1) img {
    width: 153px !important;
  }
}
.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div:nth-child(2) {
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .footer > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div:nth-child(2) {
    padding-left: 60px;
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div:nth-child(2) {
    padding: 0px !important;
  }
  .footer > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div:nth-child(2) ul {
    flex-direction: row;
    margin: 11px 0 26px;
  }
}
.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:nth-child(2) > div > div:nth-child(3) {
  font-size: 12px;
  padding: 0 !important;
  color: var(--grey-color);
}

@media only screen and (min-width: 768px) {
  .footer-landing.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child img {
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-landing.footer > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child > div:first-child {
    margin-bottom: 0 !important;
  }
}

/*# sourceMappingURL=_header.css.map */
/* 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%;
}

/* Landing Pages CSS*/
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/
body.landing-page {}

body.landing-page .hs-button {
  width: 280px;
  text-align: center;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

body.landing-page .link-button {
  width: 230px;
  display: inline-block;
  font-size: 21px !important;
  background-color: #ffffff;
  color: #e8380d;
  -webkit-border-top-right-radius: 40px;
  -webkit-border-bottom-left-radius: 40px;
  -moz-border-radius-topright: 40px;
  -moz-border-radius-bottomleft: 40px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  text-align: center;
  letter-spacing:1px;
}

body.landing-page .hs-button {
  width: 230px;
  display: inline-block;
  font-size: 21px !important;
  -webkit-border-top-right-radius: 40px;
  -webkit-border-bottom-left-radius: 40px;
  -moz-border-radius-topright: 40px;
  -moz-border-radius-bottomleft: 40px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  text-align: center;
  letter-spacing:1px;
}

body.landing-page .pink-color-highlight {
    text-decoration: none;
    box-shadow: inset 0 -.40em 0 rgb(248, 238, 232);
    color: inherit;
}

body.landing-page a.hs-button:hover {
  background-color: #e8380d !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

/*CTA Button*/

body.landing-page section.cards__card.card {
  box-shadow: none;
}

/*card box shadow*/


body.landing-page img.sp-show {
  display: none;
}

/*  Image show on Mobile*/

body.landing-page #hs_cos_wrapper_widget_1725892934674 .cards .card__text h3 {padding: 0px !important;}

body.landing-page th.th-left,
body.landing-page th.th-right {
  text-align: left;
  border: none;
  padding: 0px;
  margin: 0px
}

body.landing-page th.th-left {
  width: 25% !important;
  padding-left: 40px;
}

body.landing-page th.th-right {
  width: 75% !important;
  padding-left: 40px;
}

/*Table*/



#hs_cos_wrapper_widget_1725893534629_ h1 {
    margin-top: 80px;
    margin-bottom: 40px;
}

  body.landing-page #hs_cos_wrapper_widget_1725893534629 h1 {
    letter-spacing: 1px !important;
  }
/* H1 Title */

  body.landing-page #hs_cos_wrapper_widget_1725892934674 section.cards__card.card {
    margin-top:20px !important;
  } 
  body.landing-page #hs_cos_wrapper_widget_1725892934674 div.cards {
    margin-top:0px !important;
  } 

  body.landing-page #hs_cos_wrapper_widget_1725892934674 h3 {
    font-size:21px !important;
    line-height:1.3 !important;
    letter-spacing: 1px !important;
    margin-top: 20px !important;
    font-size: 21px !important;
    letter-spacing: 1px !important;
    line-height: 1.3 !important;
    min-height: inherit !important;
  }
/* card title */


body.landing-page #hs_cos_wrapper_widget_1725894174526_ h3 {
  margin-top: 20px;
  margin-bottom: 20px;
  letter-spacing: 1px !important;
  line-height: 1.3 !important;
}
/* single image title */


/* Animatopy : Bounce In left : BEGIN */
@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* Animatopy : Bounce In left : END */




@media only screen and (max-width: 767px) {
  
  
  body.landing-page .link-button {
  -webkit-border-top-right-radius: 28px;
  -webkit-border-bottom-left-radius: 28px;
  -moz-border-radius-topright: 28px;
  -moz-border-radius-bottomleft: 28px;
  border-top-right-radius: 28px;
  border-bottom-left-radius: 28px;
}

body.landing-page .hs-button {
  -webkit-border-top-right-radius: 28px;
  -webkit-border-bottom-left-radius: 28px;
  -moz-border-radius-topright: 28px;
  -moz-border-radius-bottomleft: 28px;
  border-top-right-radius: 28px;
  border-bottom-left-radius: 28px;
}
  
  
  
  
  
  body.landing-page .the-maybe-red {
    background-image: url('https://145259364.fs1.hubspotusercontent-eu1.net/hubfs/145259364/Website/SIAL/Products/contactus/img_sp.png') !important;
  }
  /*  contact cta background*/

  body.landing-page .link-button {
    width: 160px;
    height: 52px;
    font-size: 14px !important;
    line-height: 20px !important;
  }

  body.landing-page .hs-button {
    width: 160px;
    height: 52px;
    font-size: 14px !important;
    line-height: 14px !important;
  }
  /*CTA Button*/

  body.landing-page img.sp-block {
    display: block !important;
    float: none !important;
    margin: 0px auto 20px auto !important;
  }
  /*Image one line*/
  
  
  #hs_cos_wrapper_widget_1725893534629 h1 {
    margin-top: 40px;
    margin-bottom: 20px;
}
  
  
  
  body.landing-page img.img-250 {
    width:100% !important;
    max-width:250px !important;
    display:block;
    margin: 0px auto;
  }
  
  body.landing-page img.img-200 {
    width:100% !important;
    max-width:200px !important;
    display:block;
    margin: 0px auto;
  }


  body.landing-page img.sp-hide {
    display: none !important;
  }

  body.landing-page img.sp-show {
    display: block;
  }

  body.landing-page .sp-hide {
    display: none !important;
  }

  /*  Hide & Show on mobile*/

  
  body.landing-page #hs_cos_wrapper_widget_1725894174526_ h3 {
    margin-top: 10px;
    margin-bottom: 5px;
  }
  
  body.landing-page #hs_cos_wrapper_widget_1725892934674 h3 {
    margin-top: 10px !important;
  }
  /*   card title */
  
  

  body.landing-page #hs_cos_wrapper_widget_1725892934674 section.cards__card.card {
    --width: calc(100% - var(--gap));
    box-sizing: border-box;
    flex: 0 1 var(--width);
    width: var(--width);
  }


  body.landing-page #hs_cos_wrapper_widget_1725900838256 section.cards__card.card {
    --width: calc(33% - var(--gap));
    box-sizing: border-box;
    flex: 0 1 var(--width);
    width: var(--width);
  }

  body.landing-page .sial-paris-lp-product-banner {
    padding: 30px !important;
  }

  body.landing-page .sial-paris-lp-product-banner h1 {
    margin: 0px !important;
    font-size: 28px !important;
    line-height: 34px !important;
  }

  body.landing-page div#hs_cos_wrapper_dnd_area-module-1 img {
    width: 100% !important;
    max-width: 236px !important;
    height: auto !important;
    display: block;
    margin: 0px auto;
  }


  body.landing-page .cell_17259004686212-vertical-alignment {
    border-right: 0px !important;
    border-bottom: 7px solid #EFEFEF !important;
  }

  body.landing-page .plr-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  body.landing-page .ptb-40-lr-25 {
    padding: 40px 25px !important;
  }

  body.landing-page .plr-25,
  body.landing-page .cell_17259906950563-padding,
  body.landing-page .cell_1725991840426-padding,
  body.landing-page .cell_17259920465052-padding {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }


  body.landing-page .mb-10 {
    padding-bottom: 10px !important;
  }

  body.landing-page .mb-15 {
    padding-bottom: 15px !important;
  }
  body.landing-page .mb-20 {
    margin-bottom: 20px !important;
  }

  body.landing-page .mt-pb {
    margin-top: 20px !important;
    padding-bottom: 10px !important;
  }
  body.landing-page .mt-20 {
    margin-top: 20px !important;
  }
  body.landing-page .mt-40 {
    margin-top: 40px !important;
  }
  body.landing-page .pt-40 {
    padding-top: 40px !important;
  }
  body.landing-page .pb-25 {
    padding-bottom: 25px !important;
  }

  body.landing-page .fz-28 {
    font-size: 28px !important;
    line-height: 1.15 !important;
  }

  body.landing-page .fz-24 {
    font-size: 24px !important;
    line-height: 1.15 !important;
  }

  body.landing-page .fz-20 {
    font-size: 20px !important;
    line-height: 1.15 !important;
  }

  body.landing-page .fz-18 {
    font-size: 18px !important;
    line-height: 1.3 !important;
  }

  body.landing-page .fz-16 {
    font-size: 16px !important;
    line-height: 1.15 !important;
  }

  body.landing-page .cta-callout {
    font-size: 16px !important;
    line-height: 1.15 !important;
  }

  body.landing-page #hs_cos_wrapper_widget_1725893534629 h1 {
    font-size: 28px !important;
    line-height: 1.15 !important;
  }

  body.landing-page #hs_cos_wrapper_widget_1725894174526 h3,
  body.landing-page #hs_cos_wrapper_widget_1725892934674 h3 {
    font-size: 18px !important;
    line-height: 1.15 !important;
  }
  
    body.landing-page .lh-14 {line-height: 1.4 !important;}

  body.landing-page #hs_cos_wrapper_module_17259004638153 h1 {
    margin-top: 30px;
  }

  body.landing-page div.with-border, body.landing-page p.with-border {border-left-width: 5px !important;}
  
  
  body.landing-page table.no-border p {
    padding: 0px !important;
    margin: 0px !important;
  }


  body.landing-page th.th-right,
  body.landing-page th.th-left {
    display: block;
    width: 100% !important;
    text-align: left;
    margin: 0px !important;
    padding-top: 0px !important;
    padding-left: 20px !important;
  }

  body.landing-page th.th-left {
    padding-bottom: 10px !important;
  }

  body.landing-page th.th-right {
    padding-bottom: 20px !important;
  }
}


/*****************************************/
/* Start your style declarations here    */
/*****************************************/
/* @import url('http://example.com/example_style.css'); */
/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/
.the-kv {
  position: relative;
}
.the-kv .relative {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.the-kv .relative img {
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
}
.the-kv .relative img.sp-hide {
  height: 85% !important;
  margin-bottom: 0;
  margin-right: 8.3%;
}
.the-kv .relative img.sp-show {
  height: 49% !important;
  margin-right: 4%;
}

body.landing-page {
  --bdpadding: 25px;
}
@media only screen and (max-width: 767px) {
  body.landing-page .dnd-section .dnd-column {
    padding: 0 var(--bdpadding);
  }
}
body.landing-page .cell_17258929349622-padding {
  padding-left: var(--bdpadding) !important;
  padding-right: var(--bdpadding) !important;
  --m-more-space: 0;
}

/*# sourceMappingURL=landing-pages.ol.css.map */

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