/* 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: 1024px) {
  .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 {
  margin: 0 auto;
  padding: 0 1rem;
}

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

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height:1.05em;
}

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


/* Search */

.systems-page--search-results h1 {padding-top:80px; margin-bottom:40px;}
.systems-page--search-results .hs-search-results__listing {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.systems-page--search-results .hs-search-results__listing  .hs-search-results__title:hover,
.systems-page--search-results .hs-search-results__listing  .hs-search-results__title:hover .hs-search-highlight {font-weight:900;}
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;
}
/* Fields */

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

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* 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;
  font-size: 0.875rem;
  padding: 16px 24px;
  width: 100%;
}

.hs-fieldtype-select .input {
  position: relative;}


form select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.hs-fieldtype-select .input::after {
  content: '';
  position: absolute;
  right: 20px; 
  top: 50%;
  transform: translateY(-50%) rotate(45deg); 
  width: 6px; 
  height: 6px; 
  border-right: 2px solid #000; 
  border-bottom: 2px solid #000; 
  pointer-events: none;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}
form fieldset h3 {font-size:18px;}

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

.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;
}




.body-container--signup form {     font-family: 'Satoshi Medium';
 }
  .body-container--signup .hsfc-ErrorAlert {display:none;}
  .body-container--signup .hsfc-NavigationRow .hsfc-ErrorAlert {display:block;}
  .body-container--signup  [data-hsfc-id=Renderer] .hsfc-DropdownInput__Caret>span {
    border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  }

  .widget-type-form {
    box-shadow: 0px 1px 36.7px 0px rgba(0, 0, 0, 0.12);
  }


  /* Radio buttons */

  /* Hide the default radio buttons */
.hs-form-radio-display input[type="radio"] {
  display: none;
}

/* Style the radio button container */
form fieldset .hs-fieldtype-radio .input ul {
  display: flex; gap:0; flex-direction: column;
  cursor: pointer;
}
form fieldset .hs-fieldtype-radio .input ul li {margin: 0 0 5px; font-weight: 700;}
fieldset.form-columns-1 .hs-input {width:100% !important}

/* Create a custom radio button */
form fieldset .hs-form-radio-display span::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none"><g clip-path="url(%23clip0_7_1268)"><path fill-rule="evenodd" clip-rule="evenodd" d="M0.237549 7.32408C0.237549 5.56824 0.947562 3.88433 2.21139 2.64277C3.47523 1.40121 5.18935 0.703705 6.97668 0.703705C8.76401 0.703705 10.4781 1.40121 11.742 2.64277C13.0058 3.88433 13.7158 5.56824 13.7158 7.32408C13.7158 9.07991 13.0058 10.7638 11.742 12.0054C10.4781 13.2469 8.76401 13.9444 6.97668 13.9444C5.18935 13.9444 3.47523 13.2469 2.21139 12.0054C0.947562 10.7638 0.237549 9.07991 0.237549 7.32408Z" fill="%23E0E0E0"/></g><defs><clipPath id="clip0_7_1268"><rect width="13.4783" height="13.2407" fill="white" transform="translate(0.237549 0.703705)"/></clipPath></defs></svg>');
}

form fieldset .hs-form-radio-display input[type="radio"]:checked + span::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="21" viewBox="0 0 20 21" fill="none"><g clip-path="url(%23clip0_645_22488)"><rect y="0.5" width="20" height="20" rx="5" fill="%23FD4346"/><circle cx="10" cy="10.5" r="3" fill="white"/></g><defs><clipPath id="clip0_645_22488"><rect y="0.5" width="20" height="20" rx="10" fill="white"/></clipPath></defs></svg>');
}
form fieldset .hs-form-radio-display input[type="radio"]:checked + span { 
color:black
}

form fieldset .hs-form-radio-display span {
  position: relative; padding-left:20px;
}

form fieldset .hs-form-radio-display span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media (max-width:1024px) {
  form fieldset .hs-fieldtype-radio .input ul {
    column-gap: 20px; row-gap: 0; flex-wrap: wrap;
  }
  .form-columns-2 .hs-form-field .hs-input {width:100% !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
*/

.lang_switcher_link[data-language="en-us"] {
  display: none !important;
}


/* Header DND sections */

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

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:20px 30px;
}

.header__logo--menu-wrapper {
  display:flex;
  gap:33px;
}

.header__menu--wrap {
  display:flex;
  gap:33px;
  align-items: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;
  overflow: hidden;
  justify-content: center;
  gap:10px;
}
.header__logo, .header__logo_icon, .header__logo_icon span, .header__logo_mainlogo, .header__logo_mainlogo span
 {line-height: 0;}
.header__logo span {display:block;}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

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

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

.header__ctas.header__cta--main {
  display:flex; gap:20px; align-items: center;
}
.header_cta--header__cta--wrapper {
  display:flex; gap:20px; align-items: center;
}
/* Language switcher */

.header__language-switcher {
  cursor: pointer;
}

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

.header__language-switcher .lang_list_class {

}

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

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

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

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

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

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

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

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size:15px; text-transform: uppercase; font-weight:700;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #131313;
  content: "";
  display: block;
  height: 0px;
  margin-left: 5px;
  margin-top: 0.175rem;
  width: 0px;
}

.header__language-switcher .globe_class {
  background: none;
}
.header__language-switcher .lang_list_class li a, .header__language-switcher-label-current,
.header__language-switcher--label-current {
  font-size:15px; text-transform: uppercase; font-weight:700;
}
.header-light .header__language-switcher--label-current {color:white;}
.header--scrolled.header-light .header__language-switcher--label-current {color:#131313;}
.header-light .header__language-switcher--label-current:after {border-top-color:white;}
.header--scrolled.header-light .header__language-switcher--label-current:after {border-top-color:#131313;}
.header__language-switcher .lang_list_class li a:hover {
  color:#FD4346;
}
.header__language-switcher .lang_list_class li a {
  display:grid; grid-template-columns: auto 1fr; align-items: center;
}
.header__language-switcher .lang_list_class li a img, 
.header__language-switcher--label-current img {width:20px; height:20px; margin-right:4px;}
.header__language-switcher .lang_list_class {
  border-radius: 16px;
  box-shadow: 0 4px 20.9px 0 rgba(0, 0, 0, .25);
}

.header__language-switcher .lang_list_class:before, .header__language-switcher .lang_list_class:after {
  display: none;
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {

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

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

  .header__navigation--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

 
  .header__language-switcher--toggle:after {
    content: "Language";
  }


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

.burger {
  width: 20px;
  height: 20px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.burger span, 
.burger span::before, 
.burger span::after {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #1E1E1F;
  border-radius: 2px;
  position: absolute;
  transition: transform 0.3s, background-color 0.3s;
}
.burger span::before, 
.burger span::after {
  content: "";
}
.burger span::before {
  transform: translateY(-7px);
}
.burger span::after {
  transform: translateY(7px);
}
.burger.clicked span, .header-light .burger.clicked span {
  background-color: transparent;
}
.burger.clicked span::before {
  transform: rotate(45deg);
}
.burger.clicked span::after {
  transform: rotate(-45deg);
}

.no-scroll {
  overflow: hidden;
}

.mobilemenuview {
  position: fixed;
  top: -150%;
  left: 0;
  width: 100%;
  z-index: 9;
  transition: top 0.5s ease;
  padding: 20px 0;
}

.mobilemenuview.active {
  top: calc(0% + 50px);
  overflow-y: auto;
  max-height: 100%;
  padding-bottom:60px;
}

.header .content-wrapper.header-top .span12,
.header .content-wrapper.header-bottom .span12 {min-height: auto;}

.header-light  #hs_cos_wrapper_site_mobilelogo,
.header--scrolled.header-light #hs_cos_wrapper_site_logo { display:block;}
.header-light  #hs_cos_wrapper_site_logo,
.header--scrolled.header-light #hs_cos_wrapper_site_mobilelogo
 {display:none;}
.menu-icons-wrapper .menu__link.menu__link--toggle {background:transparent !important;}
.menu__link--toggle {cursor:pointer;}

.header-light .menu__link.menu__link--toggle, .header-light .menu__link {color:white;}
.header--scrolled.header-light .menu__link
 {color:#131313;}
.header-light .menu__item--open .menu__link--toggle, 
.header-light .menu__link:hover,
.header--scrolled.header-light .menu__link.menu__link--toggle:hover,
.header--scrolled.header-light .menu__link:hover {color: #fd4346;}

.header-light .menu__link.menu__link--toggle svg path {stroke:white;}

.header--scrolled.header-light .menu__link.menu__link--toggle svg path {
  stroke:#131313;
}
.header--scrolled.header-light .menu__item--open .menu__link.menu__link--toggle svg path,
.header--scrolled.header-light .menu__link.menu__link--toggle:hover svg path {
  stroke:#fd4346;
}
.header-light .burger span, 
.header-light .burger span:after, 
.header-light .burger span:before {background-color: #fff;}

.header--scrolled.header-light .header_cta--header__cta--mainbtn .button {
  color: rgba(253, 67, 70, 1.0) !important;
  background-color: rgba(255, 232, 232, 1.0) !important;
}
.header--scrolled.header-light .header_cta--header__cta--simplebtn .button {
  color:#131313 !important;
}

/* Hide the language list by default */
.lang_list_class {
  display: none !important;
  position: absolute !important;
  z-index: 50 !important;
  padding: 0 !important;
  top: 26px !important;
  left: 70% !important;
}

/* Show the language list when hovering over the label */
.header__language-switcher--label:hover .lang_list_class,
.header__language-switcher--label:hover + .lang_list_class,
.lang_list_class:hover {
  display: block !important;
}

/* Style the language list items */
.lang_list_class a {
  display: grid !important;
  text-decoration: none !important;
}


@media (min-width:1025px) {
  .header {
    position: fixed; 
    width: 100%;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    top: 0;
    left: 0;
    z-index: 1000; 
  }
  
  .header.header--scrolled { 
    background: white; 
    box-shadow: 0px 4px 10.9px 0px rgba(0, 0, 0, 0.12);     
  }
  .mobilemenuview {display:none;} 
}

@media (min-width:1024px) {
  .header.darkbg #hs_cos_wrapper_site_logo {display:block;}
  .header.darkbg #hs_cos_wrapper_site_mobilelogo, 
  #hs_cos_wrapper_site_mobilelogo {display:none;}
  .burger {display:none;}
}

@media (max-width:1040px) {
  .header__menu--wrap, .menu__wrapper {gap:20px !important;}
}

@media (max-width:1024px) {
  .header.darkbg #hs_cos_wrapper_site_logo {display:none;}
  #hs_cos_wrapper_site_mobilelogo {display:none;}
  .header.darkbg #hs_cos_wrapper_site_mobilelogo {display:block;}
  .header__logo--menu-wrapper .header__menu--wrap {display: none;}
  .header_cta--header__cta--wrapper {display:none;}
  .burger {display:flex;}
  .header {transition: background 0.8s ease;}
  .header__container {padding:15px 20px; z-index:99; position: relative; } 
  .header-light .header__container {position: absolute; top: 0; width: 100%;
    background: transparent;} 
  .header.darkbg { background: #1E1E1F; height: 100vh; transition: background 0.3s ease;} 
  .header.darkbg .header__container { background: #1E1E1F; }
  .header.darkbg .burger span:after, 
  .header.darkbg .burger span:before { background-color: #fff;  }
  .header__menu--wrap, .menu__wrapper {flex-direction: column; align-items: flex-start;}
  .header__menu--wrap-main, .header__menu--wrap-withicons {width: 100%;}
  .header__menu--wrap, .menu__wrapper {gap:0px !important;}
  .mobilemenuview .header_cta--header__cta--wrapper { display: flex; flex-direction: row-reverse; margin-top: 28px;
        gap: 14px; padding:0 20px; align-items: flex-start; justify-content: flex-end;}
  .mobilemenuview .header_cta--header__cta--simplebtn .button, 
  .mobilemenuview .header_cta--header__cta--mainbtn .button {
    color: #1E1E1F !important; background: #fff !important; padding: 18px 13px 19px 13px !important;  width: 100%;  
    font-size: 17px !important; min-width: 250px; border-radius:100px !important;
  }
  .mobilemenuview .header_cta--header__cta--mainbtn .button {
    background: #FD4346 !important; color:white !important;
  }
  .header.darkbg .header__language-switcher--label-current:after {
  border-top-color:#fff;
  }
  .header.darkbg .header__language-switcher--label-current {
  color:#fff;
  }
}
@media (max-width:600px) {
  .mobilemenuview .header_cta--header__cta--wrapper {
    flex-direction: column-reverse;
  }
}

@media (max-width:480px) {
  .mobilemenuview .header_cta--header__cta--simplebtn, 
  .mobilemenuview .header_cta--header__cta--mainbtn {width:80%;}
  .mobilemenuview .header_cta--header__cta--wrapper {padding:0; align-items: center;}
}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Components
Custom fonts
*/
@font-face {font-family: 'Satoshi Black'; src: url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/SatoshiFont/Satoshi-Black.eot'); src: local('Satoshi Black'), local('Satoshi Black'), url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/SatoshiFont/Satoshi-Black.eot?#iefix') format('embedded-opentype'), url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/SatoshiFont/Satoshi-Black.woff2') format('woff2'),url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/SatoshiFont/Satoshi-Black.ttf') format('woff'),url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/SatoshiFont/Satoshi-Black.ttf') format('truetype');font-weight: 900;font-style: normal; font-display: swap;}
@font-face {font-family: 'Satoshi Bold'; src: url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/SatoshiFont/Satoshi-Bold.eot'); src: local('Satoshi Bold'), local('Satoshi Bold'),url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/SatoshiFont/Satoshi-Bold.eot?#iefix') format('embedded-opentype'), url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/SatoshiFont/Satoshi-Bold.woff2') format('woff2'),url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/SatoshiFont/Satoshi-Bold.woff') format('woff'), url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/SatoshiFont/Satoshi-Bold.ttf') format('truetype');font-weight: 700;font-style: normal;font-display: swap;}
@font-face {font-family: 'Satoshi Light';src: url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/SatoshiFont/Satoshi-Light.eot');src: local('Satoshi Light'), local('Satoshi Light'),url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/SatoshiFont/Satoshi-Light.eot?#iefix') format('embedded-opentype'), url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/SatoshiFont/Satoshi-Light.woff2') format('woff2'), url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/SatoshiFont/Satoshi-Light.woff') format('woff'), url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/SatoshiFont/Satoshi-Light.ttf') format('truetype');font-weight: 300;font-style: normal;font-display: swap;}
@font-face {font-family: 'Satoshi Medium'; src: url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/SatoshiFont/Satoshi-Medium.eot');src: local('Satoshi Medium'), local('Satoshi Medium'),url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/SatoshiFont/Satoshi-Medium.eot?#iefix') format('embedded-opentype'), url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/SatoshiFont/Satoshi-Medium.woff2') format('woff2'), url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/SatoshiFont/Satoshi-Medium.woff') format('woff'), url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/SatoshiFont/Satoshi-Medium.ttf') format('truetype'); font-weight: 500;font-style: normal;font-display: swap;}
@font-face {font-family: 'Satoshi Regular'; src: url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/SatoshiFont/Satoshi-Regular.eot'); src: local('Satoshi Regular'), local('Satoshi Regular'),url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/SatoshiFont/Satoshi-Regular.eot?#iefix') format('embedded-opentype'),url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/SatoshiFont/Satoshi-Regular.woff2') format('woff2'), url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/SatoshiFont/Satoshi-Regular.woff') format('woff'), url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/SatoshiFont/Satoshi-Regular.ttf') format('truetype');font-weight: 400; font-style: normal;font-display: swap;}
@font-face {
    font-family: 'Lexend Deca';
    src: url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/LexendFont/LexendDeca-Bold.eot');
    src: url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/LexendFont/LexendDeca-Bold.eot?#iefix') format('embedded-opentype'),
        url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/LexendFont/LexendDeca-Bold.woff2') format('woff2'),
        url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/LexendFont/LexendDeca-Bold.woff') format('woff'),
        url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/LexendFont/LexendDeca-Bold.ttf') format('truetype'),
        url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/LexendFont/LexendDeca-Bold.svg#LexendDeca-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lexend Deca';
    src: url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/LexendFont/LexendDeca-Light.eot');
    src: url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/LexendFont/LexendDeca-Light.eot?#iefix') format('embedded-opentype'),
        url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/LexendFont/LexendDeca-Light.woff2') format('woff2'),
        url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/LexendFont/LexendDeca-Light.woff') format('woff'),
        url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/LexendFont/LexendDeca-Light.ttf') format('truetype'),
        url('https://26246491.fs1.hubspotusercontent-eu1.net/hubfs/26246491/LexendFont/LexendDeca-Light.svg#LexendDeca-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* 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;
  }
}
/* .swiper-paginationx span.swiper-pagination-bullet {
width: 24px;
height: 24px;
} */
span.swiper-pagination-bullet {
  margin-inline: 10px;
  padding: 5px;
}
/* Fix LCP layout shift on the UAE homepage hero */
.section.hero.hero--with-video {
  min-height: 450px;
}

@media screen and (max-width: 768px) {
  .section.hero.hero--with-video {
    min-height: 380px;
  }
}