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


/* 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));
    }
  
}
.dnd-section > .row-fluid,
.page-center,
.content-wrapper {
  margin:0 auto;
  padding: 0 0;
  width:100%;
}
.page-center.full_width,
.content-wrapper.full_width{
  width:100%;
  max-width:100%;
}
.dnd-section[class*="force-full-width-section"]>.row-fluid .dnd-column {
  padding: 0;
}

.dnd-section[class*="force-full-width-section"] > .row-fluid{
  padding:0;
}

.dnd-section[class*="force-full-width-section"]{
  padding:0;
}

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

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}
@font-face {
  font-family: "Inter";
  src: url("https://axelera.pro/hubfs/raw_assets/public/Axelera_september2026/fonts/InterVariable.woff2") format("woff2-variations");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
    }

@font-face {
  font-family: "Inter";
  src: url("https://axelera.pro/hubfs/raw_assets/public/Axelera_september2026/fonts/InterVariable-Italic.woff2") format("woff2-variations");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
    }


/* 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. */
main#main-content {
  background: radial-gradient(circle at 30% 10%, #fafafa 0%, rgb(250 250 250 / 0%) 40%), radial-gradient(circle at 70% 20%, #9ebfae66 0%, #9ebfae00 40%), radial-gradient(circle at 60% 30%, rgba(0, 144, 168, 0.1) 0%, rgba(0, 144, 168, 0) 10%), radial-gradient(circle at 30% 40%, rgb(250, 250, 250) 0%, rgba(250, 250, 250, 0) 40%), radial-gradient(circle at 70% 50%, rgba(158, 191, 174, 0.4) 0%, rgba(158, 191, 174, 0) 40%), radial-gradient(circle at 40% 90%, rgba(0, 144, 168, 0.1) 0%, rgba(0, 144, 168, 0) 20%), radial-gradient(circle at 10% 100%, rgba(24, 40, 244, 0.1) 0%, rgba(24, 40, 244, 0) 10%), radial-gradient(circle at 100% 100%, rgb(250, 250, 250) 0%, rgba(250, 250, 250, 0) 10%), radial-gradient(circle at 9% 12%, rgba(18, 29, 61, 0.6) 0%, rgba(18, 29, 61, 0) 33%), radial-gradient(circle at 95% 90%, rgba(18, 29, 61, 0.23) 0%, rgba(18, 29, 61, 0) 40%), rgb(255, 255, 255);
}

html {
  scroll-behavior: smooth; 
}
body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

::selection {
  background-color: var(--secondary_color);
  color:#FFFFFF;
}

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

th{
  text-align:left; 
}
/* Paragraphs */

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

p:last-child{
  margin-bottom: 0;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration:none;
  transition:all 0.3s ease;
}
/* 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 0 16px;
}

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */
.quote_wrap {
  margin-top: 28px;
}

blockquote {
  line-height: 1.5;
  padding: 20px;
  width: 100%;
  border-left: 4px solid var(--primary_color);
  border-radius: 0 8px 8px 0;
  margin: 0;
  background: rgba(110, 158, 150, 0.08);
  font-style: italic;
}

.eyebrow_text{
  margin-bottom:16px;
}
@media(max-width:767px){
  ol {
    padding-left: 20px;
  }
  ul {
    padding-left: 20px;
  }
}
/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  vertical-align:middle;
  max-width:100%;
  word-break: normal;
}

svg{
  fill: currentColor;
  vertical-align: middle;
}
.hs-search-results__listing {
  margin-bottom: 24px !important;
}
.systems-page p,.systems-page p:last-child {
  margin-bottom: 16px;
}
.hs-search-results__pagination{
  flex-wrap: wrap;
}
button,
.button,
.hs-button,
.primary_btn,
.primary-btn a,
.btn-custom a,
.secondary_btn,
.secondary-btn a,
.custom-btn a {
  cursor: pointer;
  display: inline-flex;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  line-height:inherit;
  justify-content:center;
  align-items:center;
}

.link {
  display: inline-flex;
  align-items: center;
}

form .hs-button, 
form input[type=submit]{
  border-radius:4px;
  line-height: 1.428;
}

.link a {
  vertical-align: middle;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  line-height:inherit;
  position:relative;
  padding-right:20px;
}

.link a:after {
  position: absolute;
  content: '→';
  display: inline-block;
  right: 0;
  width: 16px;
  top: 0px;
  height: auto;
  transition: all 0.3s ease;
}

.link a:hover:after {
  right: -5px;
}



button:disabled,
.button:disabled,
.hs-button:disabled,
form .hs-button:disabled:active,
form .hs-button:disabled:focus,
form .hs-button:disabled:hover,
form input[type=submit]:disabled:active,
form input[type=submit]:disabled:focus,
form input[type=submit]:disabled:hover{
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: var(--secondary_color);
}
/* 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, .button:not(.button--custom), .hs-button:not(.custom-btn){
  background-size: 250% auto !important;
  transition: .3s linear;
  background-position: 3% !important;
}
.button.button--secondary:before,
.button.button--secondary:active:before,
.button.button--secondary:focus:before{
  background-position: 99% !important;
  background-size: 250% auto !important;
  border-radius: 25px;
  box-sizing: content-box;
  content: "";
  height: 100%;
  left: 0;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: px;
  position: absolute;
  top: 0;
  transition: all .5s ease-in-out;
  width: 100%;
  z-index: 0;
}
.button.button--secondary,
.button.button--secondary:active,
.button.button--secondary:focus{
  position: relative;
  transition: .3s linear;
  display: inline-block;
  border: none;
}

.blog-post__content-wrapper .blog-post .eyebrow a:hover:before,
.button.button--secondary:active:before,
.button.button--secondary:focus:before,
.button.button--secondary:hover:before,
.hs-blog-listing .blog-index .widget-module ul li a:hover:before,
.hs-blog-listing .widget-module .filter-expand-link:hover:before {
  background-position: 0 !important;
}
.button.button--small {
  background-position: 3% !important;
}
.button:hover,
.hs-button:hover,
button:hover {
  background-position: 85% !important;
}

.button.button--secondary:hover {
  background: 0 0 !important;
  border: none;
}
p:last-child {
  margin-bottom: 0;
}
a:hover {
  font-weight: 400;
}


.benchmarks_wrapper .metrics-nav.metrics-nav--active,
.counter-nav.counter-nav--active{
  display: flex;
}

.benchmarks_wrapper .metrics-nav,
.counter-nav{
  align-items: center;
  display: none;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.benchmarks_wrapper .metrics-arrow:disabled,
.counter-arrow:disabled{
  cursor: not-allowed;
  opacity: .4;
  pointer-events: none;
}

.benchmarks_wrapper .metrics-arrow,
.counter-arrow{
  align-items: center;
  background: #eeeff2;
  border: 0;
  color: var(--secondary_color);
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  height: 50px;
  justify-content: center;
  padding: 8px;
  transition: all .5s ease;
  width: 50px;
}

.benchmarks_wrapper .metrics-arrow svg,
.counter-arrow svg{
  color: inherit;
  height: 20px;
  transition: all .5s ease;
  width: 20px;
}

.benchmarks_wrapper .metrics-dots,
.counter-dots{
  align-items: center;
  display: flex;
  flex: 0 1 auto;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  width: max-content;
  -ms-overflow-style: none;
  scrollbar-width: none;

}

.benchmarks_wrapper .metrics-dot.is-active,
.counter-dot.is-active{
  opacity: 1;
  background: var(--primary_color);
}

.benchmarks_wrapper .metrics-dot,
.counter-dot{
  border: none;
  border-radius: 50%;
  cursor: pointer;
  flex: 0 0 auto;
  height: 12px;
  margin: 0 4px;
  opacity: .5;
  padding: 0;
  transition: background .25s ease,transform .25s ease;
  width: 12px;
  background: var(--primary_color);
}

.benchmarks_wrapper .metrics-dot:hover,
.counter-dot:hover{
  background: var(--primary_color);
}

.benchmarks_wrapper .metrics-dot:not(.is-active),
.counter-dot:not(.is-active){
  background: var(--secondary_color);
}

.benchmarks_wrapper .metrics-arrow,
.counter-arrow {
  align-items: center;
  background: #eeeff2;
  border: 0;
  color: var(--secondary_color);
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  height: 50px;
  justify-content: center;
  padding: 8px;
  transition: all .5s ease;
  width: 50px;
}


.benchmarks_wrapper .metrics-arrow:hover,
.counter-arrow:hover,
.counter-arrow:active,
.counter-arrow:focus{
  background: var(--secondary_color);
  color: #fff;
  transform: none;
  border:none;
}
.hs-form-field{margin-bottom:24px}form label{display:block;font-size:14px;font-weight:500;margin-bottom:8px;line-height:1.428}.form-title{margin-bottom:0}form legend{font-size:12px}form{margin-bottom:20px}form input[type=email],form input[type=file],form input[type=number],form input[type=password],form input[type=search],form input[type=tel],form input[type=text],form select,form textarea{display:inline-block;font-size:16px;line-height:24px;padding:12px 16px;width:100%;font-weight:400;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,-webkit-text-decoration-color;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}form select{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;appearance:none}form input[type=email]:focus,form input[type=file]:focus,form input[type=number]:focus,form input[type=password]:focus,form input[type=search]:focus,form input[type=tel]:focus,form input[type=text]:focus,form select:focus,form textarea:focus{outline:1px auto -webkit-focus-ring-color;outline-color:var(--secondary_color)}form textarea{resize:vertical}form fieldset{max-width:100%!important}.form-title:empty{display:none}form .inputs-list{margin:0;padding:0;list-style:none}form .inputs-list>li{display:block;margin:.7rem 0;margin-top:0}form .inputs-list input,form .inputs-list span{vertical-align:middle}form input[type=checkbox],form input[type=radio]{cursor:pointer;margin-right:.35rem}.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:focus,.fn-date-picker td .pika-button:hover{border-radius:0!important;color:#fff}form input[type=file]{background-color:transparent;border:initial;padding:initial}form .hs-richtext,form .hs-richtext p{font-size:12px;margin:0 0 1.4rem}form .hs-richtext img{max-width:100%!important}.legal-consent-container .hs-form-booleancheckbox-display>span,.legal-consent-container .hs-form-booleancheckbox-display>span p{margin-left:1rem!important}.hs-form-required{color:red!important}.hs-input.invalid.error{border-color:red!important}.hs-error-msg,.hs-error-msgs label{color:red!important}.hs-error-msg{margin-top:.35rem}fieldset .input{margin-right:0!important}form input[type=email],form input[type=number],form input[type=password],form input[type=search],form input[type=tel],form input[type=text],form select,form textarea{width:100%!important}form textarea{min-height:122px}form .hs-submit{padding-top:10px}form .hs-button,form input[type=submit]{cursor:pointer;display:inline-block;text-align:center;transition:all .15s linear;white-space:normal;margin-top:20px;width:100%;font-weight:700}.submitted-message{font-weight:700!important;text-align:center}.grecaptcha-badge{margin:0 auto}@media(min-width:768px){fieldset.form-columns-2 .hs-form-field:first-child .input{margin-right:16px!important}}@media(max-width:768px){fieldset .hs-form-field{float:none!important;width:100%!important}}

.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:.35rem .7rem;text-decoration:none;transition:background-color .3s}

/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
  font-size: 15px;
}

table thead th {
  border-width: 0 1px 0 1px;
}

table,
table tbody tr:first-child td{
  border-top-width: 0 !important;
}
/* 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%;
}
/* 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;
  }
}
.skip-content-btn a{display:inline-block;margin-left:43px;text-align:center;transform:translateY(-250%);transition:transform .3s;position:absolute;top:30px;left:90px;z-index:99999}.skip-content-btn>a:focus{transform:translateY(0);outline:none}header.header{position:relative;z-index:99}html.mega_menu_open{overflow:hidden}
footer.footer_wrap .footer_wrap_top .footer_wrap_col_address h6 {
  font-size: 14px;
}

footer.footer_wrap .footer_wrap_top .footer_wrap_col_address p {
  line-height: 1.6;
}

footer.footer_wrap .footer_wrap_top .footer_wrap_col_address .flag_text p {
  line-height: 1.3;
  margin: 0;
}

footer.footer_wrap{position:relative;z-index:9;padding-top:80px;padding-bottom:20px;background-color:var(--secondary_color);color:#fff}footer.footer_wrap .footer_wrap_top{display:flex;flex-wrap:wrap;gap:20px}footer.footer_wrap .footer_wrap_top .footer_wrap_col_address,footer.footer_wrap .footer_wrap_top .footer_wrap_col_newsletter{width:calc(33% - 15px)}footer.footer_wrap .footer_wrap_top .footer_wrap_col_company,footer.footer_wrap .footer_wrap_top .footer_wrap_col_menu{width:calc(17% - 15px)}footer.footer_wrap .footer_wrap_top .footer_wrap_col_address p{margin-bottom:7px;font-weight:600}footer.footer_wrap .footer_wrap_top .footer_wrap_col_address h6{margin-bottom:20px;color:var(--primary_color);font-weight:600}footer.footer_wrap p{font-size:14px}footer.footer_wrap a{color:var(--primary_color)}footer.footer_wrap .footer_wrap_top .footer_wrap_col_address a{font-weight:600}footer.footer_wrap .footer_wrap_top .footer_wrap_col_address .footer_wrap_social{margin-top:20px}footer.footer_wrap .footer_wrap_top .footer_wrap_col_address .footer_wrap_eu{display:flex;align-items:center;margin-top:20px;gap:30px}footer.footer_wrap .footer_wrap_top .footer_wrap_col_address .footer_wrap_eu .flag_text a{color:#fff;font-weight:400;line-height:1;font-size:13px}footer.footer_wrap .footer_wrap_top .footer_wrap_col_address .footer_wrap_eu .flag_text{max-width:350px}footer.footer_wrap .footer_wrap_top .footer_wrap_col_address .footer_wrap_eu .flag{min-width:65px}footer.footer_wrap .footer_wrap_top .footer_wrap_col_menu ul{display:flex;flex-direction:column;list-style:none;margin:0;padding:0;flex-wrap:wrap}footer.footer_wrap .footer_wrap_top .footer_wrap_col_menu .hs-menu-wrapper>ul>li>a{margin-bottom:10px;color:var(--primary_color);display:inline-block;font-size:14px;font-weight:600}footer.footer_wrap .footer_wrap_top .footer_wrap_col_menu .hs-menu-wrapper>ul>li ul a{font-size:14px;display:inline-block;font-weight:700;padding:7px 0;color:#fff}footer.footer_wrap .footer_wrap_top .footer_wrap_col_newsletter .widget-type-form{border:none;background-color:transparent;padding:0;border-radius:0}footer.footer_wrap .footer_wrap_top .footer_wrap_col_newsletter .form-title{padding:0;font-size:14px;color:var(--primary_color)!important;font-weight:600;margin-bottom:20px}footer.footer_wrap .footer_wrap_top .footer_wrap_col_newsletter form label{color:#fff;font-size:13px;font-weight:600}footer.footer_wrap .footer_wrap_top .footer_wrap_col_newsletter form input.hs-button{width:auto;margin-top:0}footer.footer_wrap .footer_wrap_bottom{margin-top:20px;display:flex;gap:20px;justify-content:space-between}footer.footer_wrap .footer_wrap_bottom .footer_wrap_bottom_links a{color:#fff}footer.footer_wrap .footer_wrap_top .footer_wrap_col_menu .hs-menu-wrapper>ul>li ul a:hover{color:var(--primary_color)}@media(max-width:992px){footer.footer_wrap .footer_wrap_top .footer_wrap_col_address{width:36.67%}footer.footer_wrap .footer_wrap_top .footer_wrap_col_company,footer.footer_wrap .footer_wrap_top .footer_wrap_col_menu{width:29%}footer.footer_wrap .footer_wrap_top .footer_wrap_col_newsletter{width:100%}}@media(max-width:767px){footer.footer_wrap .footer_wrap_top .footer_wrap_col_address,footer.footer_wrap .footer_wrap_top .footer_wrap_col_company,footer.footer_wrap .footer_wrap_top .footer_wrap_col_menu,footer.footer_wrap .footer_wrap_top .footer_wrap_col_newsletter{width:100%}footer.footer_wrap .footer_wrap_bottom{flex-direction:column}footer.footer_wrap{padding-top:60px;padding-bottom:60px}}@media(max-width:400px){footer.footer_wrap .footer_wrap_top .footer_wrap_col_address .footer_wrap_eu{flex-direction:column;align-items:flex-start}}