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

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  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));
    }
  
}
.full-width,
.custom-width,
.content-wrapper {
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}
.dnd-section .dnd-column {
  padding: 0 24px;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}

.dnd-section[class*="force-full-width-section"] {
  padding: 0;
}
.dnd-section[class*="force-full-width-section"] .dnd-column {
  padding: 0;
}
.text__large,
.text__large p, .text__large ul, .text__large ol {
  font-size: 20px;
}
.text__medium,
.text__medium p, .text__medium ul, .text__medium ol {
  font-size: 16px;
}
.text__small,
.text__small p , .text__small ul, .text__small ol {
  font-size: 14px;
}

.overflow-hidden{
  overflow: hidden;
}
.position-relative{
  position: relative;
}
.dnd-section > .row-fluid {
  margin: 0 auto;
}

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

@media (max-width: 767px) {
  .full-width,
  .custom-width,
  .dnd-section .dnd-column,
  .content-wrapper {
    padding: 0 20px;
  }

}

/* Elements
Base HTML 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.5;
  overflow-wrap: break-word;

}

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

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

/* Paragraphs */

p {
  margin: 0 0 20px;
}

/* Anchors */

a {
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 24px;
  line-height: 1.2;
}
h4,.h4 {
    line-height: 1.5;
}
/* 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;
}
.text-center .cta-wrapper {
  justify-content: center;
}
.text-right .cta-wrapper {
  justify-content: flex-end;
}
.text-left .cta-wrapper {
  justify-content: flex-start;
}

.cta-wrapper>.btn>a {
  transition: all 0.3s ease;
  font-weight: 500;
  text-align: center;
}

.btn.button--tertiary a {
  text-align: left;
}
.cta-wrapper>.btn>a>label,
.cta-wrapper>.btn>a>span,
.cta-wrapper>.btn>a * {
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.cta-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn.button--tertiary a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding-right: 5px;
}
.btn.button--tertiary a:hover {
  text-decoration: underline;
}
.btn.button--tertiary a:hover svg {
  transform: translateX(5px);
}
.btn.button--tertiary a svg {
  transition: all 0.3s ease;
}
.hs_submit.hs-submit .actions,
.cta-wrapper>.btn {
  position: relative;
  overflow: hidden;
}

.hs_submit.hs-submit {
  display: flex;
}

.hs_submit.hs-submit .actions {
  position: relative;
}

a.btn.btn__large {
  font-size: 20px;
}

a.btn.btn__small {
  font-size: 16px;
}
.btn.button--secondary-white a:after,
.btn.button--secondary a:after,
.btn.button--primary-white a:after,
.btn.button--primary a:after {
  content: "";
  height: 200px;
  width: 200%;
  display: block;
  position: absolute;
  left: 0;
  top: -2px;
  transform: translateY(-70%) translatex(-100%);
  transition: all 0.8s ease;
  transform-origin: left;
  pointer-events: none;
  clip-path: polygon(0 1%, 100% 0, 58% 100%, 0% 100%);
}

.btn.button--secondary-white a:hover:after,
.btn.button--secondary a:hover:after,
.btn.button--primary-white a:hover:after,
.btn.button--primary a:hover:after {
  left: 0;
  transform: translateY(0) translatex(0);
}
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;
}



/* 

form .actions:after{
  content: "";
  height: 200px;
  width: 200%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-70%) translatex(-100%);
  transition: all 0.8s ease;
  transform-origin: left;
  pointer-events: none;
  clip-path: polygon(0 1%, 100% 0, 58% 100%, 0% 100%);
}

form .actions{
  position: relative;
  overflow: hidden;
}

form .actions:hover:after {
  left: 0;
  transform: translateY(0) translatex(0);
}
 */



/* 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;
}
.cta-wrapper {
  margin: 24px 0 0 0;
}

@media (max-width: 767px) {
  .cta-wrapper {
    margin: 24px 0 0 0;
  }
}
/* Fields */

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

.form-title:empty {
  display: none;
}
.hs-form-field>label {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
}
.hs-form-booleancheckbox {
  position: relative;
  padding-left: 24px;
}
.hs-form-booleancheckbox input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
}
.hs_submit.hs-submit {
  margin: 24px 0 0;
}
.grecaptcha-badge {
  margin: 0 !important;
}
.hs-form-booleancheckbox>label> span:after {
  width: 16px;
  height: 16px;
  display: block;
  border: 1px solid #DB686A;
  border-radius: 2px;
  content: "";
  padding: 0;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 1px;
}
.hs-form-booleancheckbox>label> span:before {
  border: 2px solid #DB686A;
  border-top: none;
  border-right: none;
  content: "";
  height: 5px;
  left: 3px;
  opacity: 0;
  position: absolute;
  top: 5px;
  transform: rotate(-45deg);
  width: 10px;;
}
.hs-form-booleancheckbox>label>input:checked + span:before {
  opacity: 1;
}
ul.no-list.hs-error-msgs.inputs-list>li>label {
  color: red;
  font-size: 16px;
}

form input[type=submit], form .hs-button {
  font-weight: 500;
}
/* Labels */

form label {
  display: block;
  margin-bottom: 4px;
}

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

[data-hsfc-id=Renderer] .hsfc-FieldLabel {
  font-size: 13px !important;
  margin-bottom: 4px !important;
  font-weight: 300;
}
[data-hsfc-id=Renderer] .hsfc-Button {
  font-weight: 500 !important;
}

[data-hsfc-id=Renderer] .hsfc-CheckboxFieldGroup__Options label {
  font-size: 16px !important;
  color: var(--primary-color) !important
}

[data-hsfc-id=Renderer] .hsfc-RichText p {
  font-weight: 300 !important;
}
.hsfc-Step .hsfc-Step__Content {
  padding: 0!important;
}

[data-hsfc-id=Renderer] .hsfc-ErrorAlert {
  font-size: 16px;
}

/* 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;
  width: 100%;
  padding: 10px;
  min-height: 43px;
  text-decoration: none;
  width: 100% !important;
  font-weight: 300;
  font-size: 18px;
}
form textarea {
  resize: vertical;
}
form select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M6 7L0 1.0997L1.11828 0L6 4.8006L10.8817 0L12 1.0997L6 7Z' fill='%23181F24'/%3E%3C/svg%3E");  background-repeat: no-repeat;
  background-position: right 16px center;
}

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;
  font-size: 14px;
  margin: 0;
}
form select option {
  color: rgb(24 31 36 / 100%);
}
form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

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

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

/* 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;
}
ul.no-list.hs-error-msgs.inputs-list>li>label,
.hs-error-msg {
  font-size: 14px !important;
  margin-top: 2px;
  font-weight: 300;
}

/* 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;
  text-decoration: none;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


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


@media (max-width: 767px){
  .hs-form-field.hs_recaptcha .input {
    margin: 0 auto;
    transform: scale(0.6) !important;
    -webkit-transform: scale(0.6) !important;
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  } 

  [data-hsfc-id=Renderer] .hsfc-Row {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
  }
}
/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

/* Header DND sections */
.header__container.content-wrapper {
  max-width: 1416px;
}
header.header.no-nav .header__top {
  display: none;
}
.header .dnd-section {
  padding: 0;
}
.custom-menu-primary>.hs_cos_wrapper {
  width: 100%;
  flex: 1;
}
.header__topnav ul {
  gap: 30px;
}
.mega-menu {
  position: relative;
}
header.header {
  z-index: 99;
  position: relative;
  box-shadow: 0px 0px 16px 0px rgba(24, 31, 36, 0.07);
  backdrop-filter: blur(36px);
}
.header__row {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 12px 0;
}
.header__logo.header__logo--main {
  min-width: 81px;
}
.hs-language-switcher__icon--custom {
  width: 100% !important;
  max-width: 100% !important;
  height: auto;
  margin-right: 0 !important;
}

.hs-language-switcher__button, 
.hs-language-switcher__button:hover {
  background: transparent;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 2px;
  padding: 7px;
  width: 32px;
  height: 32px;
}

.hs-language-switcher__current-language {
  display: none;
}
.hs-language-switcher__icon {

  margin-right: 0 !important;
}
/* 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;
}
.header__top form input[type=search] {
  border: 1px solid rgba(255, 255, 255, 1);
  padding: 5px 8px 2px;
  border-radius: 2px;
  background: transparent;
  color: #FFFFFF;
  height: 32px;
  min-height: 32px;
  font-size: 14px;
  font-weight: 300;
}
.light_header .header__top {
  border-bottom: 1px solid var(--light--color);
}

header.header .hs-search-field__suggestions-container {
  flex-basis: 100%;
  position: absolute !important;
  top: 100%;
  text-align: left;
  background: #000;
  color: #fff;
  z-index: 99999;
  left: 0;
  right: 0;
  width: 100%;
}
.header__search.header--element .header__search--container {
  min-width: 245px;
  width: 100%
}
.header__search.header--element {
  display: flex;
  gap: 12px;
  align-items: center;
}
input[type="search"]::-webkit-search-cancel-button {
  display: none;
}
input[type="search"]:-moz-search-cancel-button {
  display: none;
}
input[type="search"]::-ms-clear  {
  display: none;
}  
.header__logo--main img,
.header__logo img {
  display: block;
}
.mega-menu__link {
  text-decoration: none;
}
.mega-menu__item>.mega-menu__link:hover,
.mega-menu__item:hover>.mega-menu__link{
  text-decoration: underline; 
}

.on-scrol-header .header__logo.header__light {
  display: none;
}
.on-scrol-header .header__dark.header__dark {
  display: block;
}
.header__topnav ul li a:hover {
  text-decoration: underline;
}

@media (min-width: 1025px) { 
  #nav-icon {
    display: none;
  }
  .on-scrol-header .header__top {
    display: none;
  }
  .on-scrol-header  header.header {
    position: fixed;
  }
  .header__menu-section {
    width: 100%;
  }
  .header__navbar--mobile{
    display: none 
  }
  header.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }

  body.light_header header.header {
    box-shadow: none;
  }
  .light_header .header__logo.header__light {
    display: none;
  }
  .light_header .header__dark.header__dark {
    display: block;
  }

  .custom-menu-primary {
    display: flex;
    column-gap: 30px;
    width: auto;
    position: relative;
    flex-grow: 1;
    justify-content: flex-end
  }
  .header__column {
    display: flex;
    justify-content: flex-end;
    column-gap: 30px;
    flex-basis: 100%;
    column-gap: 30px;
  }
  .header__dark {
    display: none;
  }
  .header__top form button {
    position: absolute;
    top: 0;
    right: 8px;
    height: 100%;
    width: 24px;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }
  .header__top form button svg {
    width: 18px;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  .header__top {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.33);
    position: relative;
    z-index: 111;
  }
  .header__top .header__top--row {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    align-items: center;
  }
  .dark_header .header__topnav ul {
    gap: 30px;
  }
  .header__topnav ul li a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 0 0;
  }
  .header__topnav ul li a:hover {
    color: var(--secondary-color);
  }
}
@media (max-width: 1024px) {
  .filter-show header.header {

    z-index: 1;
  }

  .header__cta {
    display: none;
  }
  header.header {
    z-index: 9;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
  }
  #nav-icon{
    width: 36px;
    height: 36px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    border: none;
    padding: 8px;
    border-radius: 2px;
  }
  #nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 20px;
    background: var(--primary-color);
    opacity: 1;
    left: 0;
    right: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    margin: 0 auto;
  }

  #nav-icon span:nth-child(1) {
    top: 8px;
  }
  #nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
    top: 16px;
  }

  #nav-icon span:nth-child(4) {
    top: 24px;
  }
  #nav-icon.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
  }

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

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

  #nav-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  .header__light {
    display: none;
  }
  .header__top {
    display: none;
  }
  .header__column {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 100%;
    height: 100vh;
    background: #fff;
    padding:0;
    display: none;
    margin-top: 1px;
  }
  .header__row {
    padding: 9px 0;
    justify-content: space-between;
  }
  #nav-icon.open {
    background: rgba(24, 31, 36, 0.1);
  }
  .mega-menu__item.mega-menu__item--has-mega.active-child>.mega-menu__link {
    color: var(--secondary-color);
  }
  .mega-menu__link-item {
    padding: 12px;
  }   

  .mega-menu__panel-inner {
    padding: 0;
  }
  .menu-open  header.header{
    background: #fff;
  }  
  header.header {
    box-shadow: none;
    backdrop-filter: blur(56px);
    border-bottom: 1px solid var(--light--color);;
    background: rgb(255 255 255 / 90%);
  }

  .header__menu-section {
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
  .header__menu-section {
    /*     padding: 72px 24px;
    padding-bottom: 68px; */
  }
  body.menu-open {
    overflow: hidden;
  }

  .header__nav--mobile ul li a {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: var(--primary-color);
  }

  .header__navbar--mobile {
    background: var(--light--color);
    padding: 16px;
    margin: 0 0 48px;
  }

  .header__nav--mobile ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: unset !important;
    gap: 30px;
    justify-content: center;
  }
  .header__nav--mobile ul li {
    width: auto;
  }
  .header__nav--search-language {
    margin: 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .hs-search-field__input {
    box-sizing: border-box;
    width: 100%;
    flex: 1;
    border: 1px solid var(--primary-color);
    padding: 2px 8px;
    min-height: auto;
  }


  .header__navbar--mobile .hs-language-switcher__button {
    border-color: var(--primary-color);
  }
  .header__navbar--mobile .header__search.header--element .hs-search-field__input {
    box-sizing: border-box;
    width: 100%;
    flex: 1;
    border: 1px solid var(--primary-color);
    min-height: auto;
    padding: 5px 8px 2px;
    font-size: 14px;
    border-radius: 2px;
    height: 32px;
  }
  .header__search.header--element button {
    position: absolute;
    top: 0;
    right: 0px;
    height: 100%;
    width: 32px;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }
  .header__search.header--element button svg path {
    fill:  var(--primary-color);
  }
  .header__nav--mobile ul li a:hover {
    color: var(--secondary-color);
  }
  .header__search.header--element button svg {
    min-width: 15px;
    height: auto;
    width: 15px;
    display: block;
  }
  .header__search.header--element {
    max-width: 472px;
    width: 100%;
  }
  .header__search.header--element div {
    width: 100%;
  }
  .custom-menu-primary {
    padding: 0 20px 80px;
  }
}
footer.footer .content-wrapper {
  max-width: 1416px;
}
footer.footer.no-nav .footer__bottom--container {
  justify-content: center;
}
footer.footer.no-nav  .footer__logo{
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

footer.footer.no-nav .footer__top {
  justify-content: center;
  text-align: center;
}
footer.footer{
  z-index: auto;
}
.footer__bottom {
  border-top: 2px solid rgba(245, 245, 245, 1);
  padding: 18px 0;
}
.footer__bottom--container{
  display: flex;
  justify-content: space-between;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  padding: 44px 0 30px;
}
.footer__logo, .footer__contact {
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 2px solid rgba(245, 245, 245, 1);
}

.footer__contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact ul li {
  font-size: 16px;
  font-weight: 500;
}

.footer__legal a {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: var(--primary-color);
}

.footer__copyright p, .footer__copyright {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
}

.footer__menu .hs-menu-wrapper>ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.footer__menu .hs-menu-wrapper>ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.footer__brand {
  width: 30%;
}

.footer__menu {
  width: 40%;
}

.footer__newsletter {
  width: 30%;
}

.footer__menu .hs-menu-wrapper>ul>.hs-item-has-children>a {
  font-size: 18px;
  line-height: 150%;
  color: #404040;
  text-decoration: none;
  font-weight: 500;
  margin: 0 0 12px;
  display: block;
  opacity: 80%;
}
.footer__menu .hs-menu-wrapper>ul .hs-menu-children-wrapper>li>a {
  color: var(--primary-color);
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 0;
  display: block;
}
.footer__menu .hs-menu-wrapper>ul .hs-menu-children-wrapper>li>a:hover {
  color: var(--secondary-color);
}
.footer__copyright p, .footer__copyright {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  color: var(--primary-color);
}

.footer__legal a {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: var(--primary-color);
  padding: 0 10px;
}
.footer__legal a:not(:last-of-type) {
  border-right: 1px solid var(--primary-color);
}
.footer .footer__logo img {
  max-width: 182px;
  width: 100% !important;
}

.footer  fieldset.form-columns-2 .hs-form-field {
  width: 100% !important;
}

.footer  fieldset.form-columns-1 input {
  width: 100% !important;
}

footer.footer.no-nav .footer__logo img {
  margin: 0 auto;
}
@media(min-width: 1025px){
  .footer__copyright--tablet{
    display: none;
  }
}

@media(max-width: 1024px){
  .footer__copyright--desktop{
    display: none;
  }
  .footer__newsletter {
    width: 100%;
  }
  .footer__top {
    flex-wrap: wrap;
    gap: 0;
  }  
  .footer__menu {
    width: 50%;
    padding-left: 10px;
  }
  .footer__brand {
    width: 50%;
    padding-right: 10px;
  }
  .footer__newsletter {
    margin: 48px 0 0 0;
  }
  .footer__menu .hs-menu-wrapper>ul {
    gap: 20px;
  }
  .form .form__title {
    font-size: 22px;
    text-align: center;
  }
  .footer .footer__logo img {
    width: 100% !important;
    max-width: 100%;
  }
  .footer .footer__logo img {
    max-width: 264px;
    width: 100% !important;
    display: block;
  }
  .footer__menu .hs-menu-wrapper>ul {
    gap: 20px;
    row-gap: 36px;
  }
  .footer__copyright.footer__copyright--tablet {
    margin: 16px 0 0 0;
  }
  .footer__bottom--container {
    align-items: center;
  }
}
@media(max-width: 767px){
  .footer__menu {
    width: 100%;
    padding-left: 0;
    order: 1;
  }
  .footer__brand {
    width: 100%;
    padding-right: 0;
    order: 2;
  }
  .footer__newsletter {
    order: 3;
  }
  .footer__bottom--container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .footer__copyright {
    order: 2;
  }
  .footer__subbrand img {
    margin: 0 auto;
    display: block;
    max-width: 224px !important;
    width: 100% !important;
  }
  .footer .footer__logo img {
    margin: 0 auto;
  }  
  .footer__logo {
    margin: 36px 0 24px;
    padding-bottom: 24px;
  }
  .footer__bottom {
    padding: 20px 0;
  }
  .footer__copyright.footer__copyright--tablet {
    margin: 24px 0 0 0;
  }
}

@media(max-width: 479px){
  .hs_submit.hs-submit .actions {
    width: 100%;
  }
}
/* 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%;
}

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