/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
#main-content .title-l{
  font-size: 76px;
  font-weight: 700;
  line-height: 82px
}

#main-content .text-l{
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
#main-content .text-xl-bold{
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px; /* 141.667% */
}

#main-content .text-l-bold{
  font-size: 20px;
  font-weight: 700;
  line-height: 30px; /* 150% */
}
  #main-content .text-s-bold{
    font-size: 14px;
    font-weight: 700;
    line-height: 20px; /* 142.857% */
  }
  #main-content .text-s{
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
  }
  #main-content .title-s{
    font-size: 40px;
    font-weight: 700;
    line-height: 46px
  }
  #main-content .tag-m{
      /* Tag/M */
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px; /* 131.25% */
    letter-spacing: -0.16px;
  }
  #main-content .text-m-bold{
    font-size: 16px;
    font-weight: 700;
    line-height: 24px; /* 150% */
  }
  #main-content .text-m{
    font-size: 16px;
    line-height:24px;
    font-weight: 400;
  }
  #main-content .tag-l{
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 140% */
    letter-spacing: -0.2px;
  }
/* Tag/S */
  #main-content .tag-s{
    font-family: Poppins;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px; /* 146.154% */
    letter-spacing: -0.13px;
  }
  #main-content .title-m{

    font-family: Poppins;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 72px; /* 112.5% */
  }
  #main-content .title-s-black{
    font-family: Poppins;
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: 46px; /* 115% */
}
#main-content .tag-s-bold{

  /* Tag/S-Bold */
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 19px; /* 146.154% */
  letter-spacing: -0.13px;
}
#main-content .title-xs{
  /* Title/XS */
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
}

@media(max-width: 767px){
  #main-content .text-m-bold-mobile{
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
  }
  #main-content .tag-s-bold-mobile{

    /* Tag/S-Bold */
    font-family: Poppins;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 19px; /* 146.154% */
    letter-spacing: -0.13px;
  }
  #main-content .text-xs-mobile{
        /* Text/XS */
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 150% */
  }

  #main-content .tag-s-mobile{
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px; /* 146.154% */
    letter-spacing: -0.13px;
  }
  #main-content .tag-m-mobile{
      /* Tag/M */
      font-family: Poppins;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 21px; /* 131.25% */
      letter-spacing: -0.16px;
      

  }
  #main-content .text-s-mobile{
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
  }
  #main-content .title-mobile-m-black{
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 32px; /* 133.333% */
  }
  #main-content .text-mobile-s{
    /* Title/Mobile-S */
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px; /* 140% */
  }
  #main-content .title-s-mobile{
    font-size: 40px;
    font-weight: 700;
    line-height: 46px
  }
  #main-content .text-s-bold-mobile{
    font-size: 14px;
    font-weight: 700;
    line-height: 20px; /* 142.857% */
  }
  #main-content .title-mobile-s{
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px; /* 140% */
  }

  #main-content .title-mobile-m{
          /* Title/Mobile-M */
      font-family: Poppins;
      font-size: 24px;
      font-style: normal;
      font-weight: 700;
      line-height: 32px; /* 133.333% */
  }

  #main-content .title-mobile-l{
      /* Title/Mobile-L */
    font-family: Poppins;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px; /* 128.571% */
  }
  #main-content .mobile-s-black{
      /* Title/Mobile-S-Black */
      font-family: Poppins;
      font-size: 20px;
      font-style: normal;
      font-weight: 900;
      line-height: 28px; /* 140% */
   }
   #main-content .text-l-bold-mobile{
    font-size: 20px;
    font-weight: 700;
    line-height: 30px; /* 150% */
  }
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  line-height:20px;
  
}
.hs-button,.background-button{
  background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="16" viewBox="0 0 17 16" fill="none"><path d="M3.83301 7.99998H13.1663M13.1663 7.99998L8.49967 3.33331M13.1663 7.99998L8.49967 12.6666" stroke="black" stroke-width="1.5" stroke-linecap="square"/></svg>')
  no-repeat right 12px top 50%;
}
#main-content .narrow-button{
  padding:12px 20px;
}
#main-content .white-button{
  border: 1px solid #fff;
  color: #fff;
  background:transparent;
  transition: all 0.15s linear;
}
#main-content .white-button:hover{
  border-color: var(--primary-safety-yellow-50, #FFDE00);
  color:black;
  background: var(--primary-safety-yellow-50, #FFDE00);
}
#main-content .white-button svg{
  transition: all 0.15s linear;
}
#main-content .white-button:hover svg path{
  stroke:black!important;
}


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: 40px;
}
@media (max-width: 768px) {
  .hs-form-field {
    margin-bottom: 20px;
  }
}

/* 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: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  padding: 16px;
  width: 100%;
}

#main-content form select {
  background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke="black" stroke-width="2" stroke-linecap="square"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  appearance: none;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\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;
  transition: all 0.15s linear;
  white-space: normal;
}

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

.hs-input.invalid.error {
  border-color:#E40136;
  outline-color:#E40136;
  color: var(--secondary-action-red-50, #E40136);
}
.hs-error-msgs.inputs-list label{
  color: var(--secondary-action-red-50, #E40136);
  font-size:14px;
}
body .hs-input:focus-visible, #footer .hs-input:focus-visible{
  border-color: var(--primary-safety-yellow-50, #FFDE00) !important;
  border-radius:0!important;
  
  outline-color: var(--primary-safety-yellow-50, #FFDE00) !important;
}

#main-content fieldset.form-columns-2 .input{
  margin:0;
}
#main-content fieldset{
  display:flex;
  flex-wrap:wrap;
  column-gap:40px;

}
#main-content fieldset.form-columns-2 .hs-form-field{
  float:none;
  width: calc(50% - 20px);
}
@media(max-width: 768px){
  #main-content fieldset.form-columns-2 .hs-form-field{
    width:100%;
  }
  #main-content .hs-form-field .hs-input{
    width:100%;
  }
}
/* 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
*/

#search-wrapper{
  display:none;
  transition-behavior: allow-discrete;
  transition: all 0.3s ease,
  /* …except opacity, which will jump immediately */
  opacity 0s ease;
  opacity:0;
}
#search-wrapper.show{
  display:block;
  opacity:1;
}
@starting-style {
  #search-wrapper.show {
    opacity: 0;
  }
}
#header{
  position:fixed;
  z-index:1000;
  width:100%;
  top:0;
  left:0;
  right:0;
}
/*
#header .middle-row-wrapper{
  position:relative;
}
*/
#header .top-row{
  
  display:flex;
  justify-content:flex-end;
  gap:44px;
  padding-top:10px;
  padding-bottom:10px;
  align-items:center;
}
#header .middle-row-wrapper{
  background: #FFF;
  padding-top:16px;
  padding-bottom:16px;
}
#header .top-row, #header .middle-row{
  max-width:1280px;
  margin:0 auto;
}
#header .top-row-wrapper{
  background: var(--Primary-Bold-Black-05, #F8F8F8);
  padding-top:10px;
  padding-bottom:10px;
}
#header .top-menu a,#header .top-menu li,#header .nav a,#header .nav li{
  color: var(--Colours-Black, #000);
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  text-decoration: none;
  white-space: nowrap;
}
#header .yellow-menu a,#header .yellow-menu li{
  color: var(--primary-bold-black-70, #000);

  /* Text/S-Bold */
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
  text-decoration: none;
}
#header .yellow-menu a{
  background-image:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M12.6668 14V12.6667C12.6668 11.9594 12.3859 11.2811 11.8858 10.781C11.3857 10.281 10.7074 10 10.0002 10H6.00016C5.29292 10 4.61464 10.281 4.11454 10.781C3.61445 11.2811 3.3335 11.9594 3.3335 12.6667V14M10.6668 4.66667C10.6668 6.13943 9.47292 7.33333 8.00016 7.33333C6.5274 7.33333 5.3335 6.13943 5.3335 4.66667C5.3335 3.19391 6.5274 2 8.00016 2C9.47292 2 10.6668 3.19391 10.6668 4.66667Z" stroke="black" stroke-width="1.5" stroke-linecap="square"/></svg>');
  background-repeat:no-repeat;
  background-position:12px 50%;
  background-color: var(--primary-safety-yellow-50, #FFDE00);
  padding: 8px 12px 8px 32px;
}
#header .yellow-menu a:hover{
  background-color: var(--Primary-Safety-Yellow-30, #FFEA60);
}
#header .middle-row{
  display:flex;
  align-items:center;
}
@media(max-width:1300px){
  #header .nav .hs-menu-depth-1 > .hs-menu-children-wrapper{
  display:none;
  }
  button.hs-search-field__button {
    scale: 0.9;
  }
  #header .middle-row-wrapper{
    border-bottom: 1px solid var(--Primary-Bold-Black-10, #E6E6E6);
  }
  #header.open:has(.hs-menu-depth-1.click) .nav.mobile {
    background: var(--Primary-Bold-Black-05, #F8F8F8);
  }
}
#header .nav .hs-menu-depth-1 > .hs-menu-children-wrapper{
  z-index:99999999;
}
#header .nav .hs-menu-depth-1 > .hs-menu-children-wrapper{
  z-index:99999999;
}
@media(min-width:1300px){
#header .nav .hs-menu-depth-1 > .hs-menu-children-wrapper,#header .nav .hs-menu-depth-2 > .hs-menu-children-wrapper{
  left:0;
  top:32px;
  transition: top 0.3s ease,
  /* …except opacity, which will jump immediately */
  opacity 0s ease;
  position:absolute;
  pointer-events: none;
  opacity:0;
  transition-behavior: allow-discrete;
  width:100vw;
  /*width:300px;*/
  padding-top:32px;
  padding-bottom:32px;
  flex-direction:row;
  box-shadow: 0px 4px 12px -2px rgba(17, 17, 17, 0.12);
}
#header .nav .hs-menu-depth-1 > .hs-menu-children-wrapper{
  z-index:-1;
  
}
}
#header .nav {
  margin-left:32px;
}
@media(min-width:1300px){
  /*
#header #hs_menu_wrapper_main_nav_ .hs-menu-item{
  position:relative;

}
*/
#header .middle-row-wrapper{
  position:relative;
}
#header .nav .hs-menu-depth-1.hs-item-has-children::after,#header .nav .hs-menu-depth-2.hs-item-has-children::after{
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='20'%20height='20'%20viewBox='0%200%2020%2020'%20fill='none'%3E%3Cpath%20d='M5%207.5L10%2012.5L15%207.5'%20stroke='black'%20stroke-linecap='square'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  width:20px;
  height:20px;
  /* position it to the right and center vertically */
  background-position: right center;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.3s ease,
  /* …except opacity, which will jump immediately */
  opacity 0s ease;
  }
  #header .nav .hs-menu-depth-1,#header .nav .hs-menu-depth-2  {
    border-bottom: 2px solid transparent;
  }
  #header .nav .hs-menu-depth-1:hover,#header .nav .hs-menu-depth-2:hover  {
    border-bottom: 2px solid var(--primary-safety-yellow-50, #FFDE00);
  }
  #header .nav .hs-menu-depth-1.hs-item-has-children:hover::after,
  #header .nav .hs-menu-depth-2.hs-item-has-children:hover::after {
    transform: rotate(180deg);
  }
}





.hs-menu-wrapper.active-branch > ul {
  gap:22px;
}

#header #hs_cos_wrapper_site_logo img{
  display:block;
}
#header .hs-menu-item.hs-menu-depth-3 a, #header .hs-menu-item.hs-menu-depth-3{
  color: var(--primary-white-00, #FFF);
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}
#header .hs-menu-item{
  position:static;
}
#search-button-wrapper{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:4px;
  width:100%;
}
.search-button{
  color: var(--Colours-Black, #000);
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}

#header .hs-menu-wrapper ul{
  flex-wrap:nowrap;
  gap:32px;
}
#header .nav-wrapper{
  display:flex;
  justify-content:space-between;
  align-items:center;
  width:100%;
}
#header .hs-menu-wrapper.flyouts .hs-menu-children-wrapper a { 
   display:inline-block;
}
#header form{
  background:transparent;
  border:none;

}
#search-wrapper{
  background: var(--primary-bold-black-70, #000);
  border:none;
}
#search{
  max-width:1164px;
  margin:0 auto;
  padding-top:76px;
  padding-bottom:80px;
}
#header form{
  position:relative;

}
#hs_cos_wrapper_site_search .hs-search-field__input{
  border-radius: 200px;
  border: 2px solid var(--Primary-Bold-Black-10, #E6E6E6);
  background: var(--primary-white-00, #FFF);
}
#hs_cos_wrapper_site_search button{
  background-color:var(--primary-safety-yellow-50, #FFDE00);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  padding:13px;
  position:absolute;
  top:5px;
  border:none;
  right:8px;
  background-image: url(data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 28 28" fill="none"><path d="M24.5 24.5L19.4833 19.4833M22.1667 12.8333C22.1667 17.988 17.988 22.1667 12.8333 22.1667C7.67868 22.1667 3.5 17.988 3.5 12.8333C3.5 7.67868 7.67868 3.5 12.8333 3.5C17.988 3.5 22.1667 7.67868 22.1667 12.8333Z" stroke="black" stroke-width="2" stroke-linecap="square"/></svg>);
  width: 55px;
  background-repeat: no-repeat;
  background-position: center;
  }
  span#hs_cos_wrapper_site_search_ {
    display:none;
}
#hs_cos_wrapper_site_search  .hs-search-field__input{
  color: var(--primary-bold-black-70, #000);

  /* Text/L */
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 150% */
  padding-left:50px;
}
#hs_cos_wrapper_site_search  .hs-search-field__input::placeholder{
  color: var(--Primary-Bold-Black-30, #B3B3B3);

  /* Text/L */
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 150% */
}
#hs_cos_wrapper_site_search  input.hs-search-field__input:focus-visible {
    outline: none;
}
#search-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
}
.search-in {
  position:relative;
}
#search-wrapper .close{
  top:20px;
  right:20px;
  position:absolute;
  cursor:pointer;
}
ul#autocomplete-results {
    width: 1073px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    top: -2px;
    border: none;
}
#header li.results-for {
    display: none;
}
#autocomplete-results li {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="24" viewBox="0 0 25 24" fill="none"><path d="M21.5 21L17.2 16.7M19.5 11C19.5 15.4183 15.9183 19 11.5 19C7.08172 19 3.5 15.4183 3.5 11C3.5 6.58172 7.08172 3 11.5 3C15.9183 3 19.5 6.58172 19.5 11Z" stroke="%23B3B3B3" stroke-width="2" stroke-linecap="square"/></svg>');
    background-repeat: no-repeat;
    background-position: 22px center;
    padding-top:5px;
    padding-bottom:5px;
}
#autocomplete-results a{
  padding-left: 64px;
  padding-right:22px;
  color: var(--primary-bold-black-70, #000);

  /* Text/M */
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  text-decoration: none;
}
#autocomplete-results li:hover{
  background-color: var(--Primary-Bold-Black-05, #F8F8F8);
  cursor:pointer;
}
#autocomplete-results a:focus, #autocomplete-results a:hover{
  background:transparent;
}
.search-module{
  position:relative;
}
.search-cancel{
  position:absolute;
  display:none;
  z-index:99999;
  top: 50%;
  right: 91px;
  transform: translateY(-50%);
}
#header:has(#autocomplete-results li[tabindex="1"]) .search-cancel{
  display:block;
}
#header #burger-menu-close {
  display:none;
}
#header #burger-menu{
  display:none;
}
#header .hs-menu-depth-3 > a:hover{
  color: var(--primary-safety-yellow-50, #FFDE00);
}
@media(min-width:1300px){
  #header .hs-menu-wrapper ul{
    gap:24px;
  }
  #header .login-menu-mobile{
    display:none;
  }
  #header .nav.mobile{
    display:none;
  }
  #header .hs-menu-wrapper ul{
    display:flex!important;
  }
}
@media(max-width:1300px){
  #header .nav a, #header .nav li, #header .top-menu a, #header .top-menu li{
    white-space:pre-wrap;
  }
  #header .li.hs-menu-item.hs-menu-depth-2{
    display:none;
  }
  #header .login-menu-mobile{
    display:block;
    margin-left:auto;
  }
  #header-in{
    border-bottom: 1px solid var(--Primary-Bold-Black-10, #E6E6E6);
  }
  #header .top-row-wrapper{
    display:none;
  }
  #header .nav.desktop{
    display:none;
  }
  .nav.mobile{
    display:none;
  }
  .nav.mobile.show{
    display:flex;
  }
  #header #burger-menu-close.show {
    display:block;
  }
  #header #burger-menu.show{
    display:block;
  }
  #header .search-button{
    display:none;
  }
  #header .nav-wrapper{
    width:unset;
  }
  #header .login-menu-mobile a {
    color: var(--Colours-Black, #000);
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    text-decoration: none;
  }
  #header .hs-menu-item{
    display:flex;
  }
  div#search-button-wrapper {
    margin-left: 24px;
    margin-right: 24px;
  }
  #header .middle-row-wrapper{  
    padding-left:16px;
    padding-right:16px;
  }
  #header.open ~ #header-backdrop {
    display:block;
    background: var(--Primary-Bold-Black-50, #666);
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index:999;
  }
  #header.open {
    bottom: 96px;
    left: 14vw;
    max-width: calc(100vw - 28vw);
    right: 14vw;
    top: 96px;
    max-height:max-content;
  }
  
/*    #header.open {width: 100%;left: 0;bottom: auto;top: 0;max-width: 100%;} */
  #header img{
    max-width:83px;
  }
  #header.open .nav.mobile {
    display: flex;
    position: absolute;
    top: 100%;
    background: white;
    height: calc(100vh - 96px - 96px - 54px);
/*      height: calc(100vh - 71px); */
    width: 100%;
    margin-left: 0;
    left: 0;
    gap: 32px;
    padding: 32px 16px;
  }
  #header .hs-item-has-children > .hs-menu-children-wrapper {
    gap:32px;
  }
  .nav-back{
    display:none;
  }
  #header:has(.click) .nav-back{
    display:block;
  }
  #hs_cos_wrapper_main_nav_mobile:has(.hs-menu-depth-1.click) .hs-menu-depth-1 > a
  , #hs_cos_wrapper_main_nav_mobile:has(.hs-menu-depth-2.click2) .hs-menu-depth-2 > a
  {
    display:none;
  }
  @media(max-width:1300px){
    #header .nav .hs-menu-depth-2 > .hs-menu-children-wrapper{
      display:none;
    }
  }
  #header .hs-menu-depth-2 > .hs-menu-children-wrapper{
    top:0;
    transition: all 0.3s ease,
  /* …except opacity, which will jump immediately */
  opacity 0s ease;
  }
  #header .hs-menu-depth-1.click > .hs-menu-children-wrapper
  , #header .hs-menu-depth-2.click2 > .hs-menu-children-wrapper
  {
    display:flex!important;
  }
  #header.open:has(.hs-menu-depth-2.click2) .hs-menu-depth-2:not(.click2) {
    display: none;
  }
  #header.open:has(.hs-menu-depth-1.click) .hs-menu-depth-1:not(.click) {
    display: none;
  }
  #header #hs_cos_wrapper_contact_us_mobile_ .hs-menu-depth-1{
    display:block;
  }
  #header.open:has(.hs-menu-depth-2.click2) .nav.mobile {
    background: var(--primary-bold-black-70, #000);
  }
  #header.open:has(.hs-menu-depth-2.click2) .nav-back path {
    stroke:white!important;
  }
  div#nav-mobile-in {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width:100%;
  }
  div#hs_cos_wrapper_contact_us_mobile {
      border-top: 1px solid var(--Primary-Bold-Black-30, #B3B3B3);
      width: 100%;
      padding-top:8px;
  }
  #hs_menu_wrapper_main_nav_mobile_ > ul{
    flex-direction:column;  
  }
  #header li.hs-menu-item.hs-menu-depth-1.hs-item-has-children::after ,  #header li.hs-menu-item.hs-menu-depth-2.hs-item-has-children::after {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M7.5 15L12.5 10L7.5 5" stroke="black" stroke-linecap="square"/></svg>');
    width: 20px;
    content: "";
    display:inline-block;
    vertical-align: text-top;
  }
  #header:has(.click) li.hs-menu-item.hs-menu-depth-1.hs-item-has-children::after {
    background:none;
  }
  #header .nav-mobile-middle {
    display: flex;
    gap: 32px;
  }
  #header.open:has(.hs-menu-depth-2.click2) #hs_menu_wrapper_contact_us_mobile_ a {
    color:white;
  }
  #search {
    padding-left:20px;
    padding-right:20px;
  }
  #hs_cos_wrapper_site_search .hs-search-field__input{
    font-size: 14px;
    line-height: 20px
  }
  #hs_cos_wrapper_site_search  .hs-search-field__input::placeholder{
    font-size: 14px;
    line-height: 20px
  }
  #hs_cos_wrapper_site_search button{
    top:0;
    right:6px;
  }
  #header .hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
    left: -9999px;
    opacity: 1;
    position: static;
  }
  ul#autocomplete-results{
    width: calc(100% - 50px); 
  }

}
svg.nav-back {
    min-width: 24px;
    max-width: 24px;
}
@starting-style{
  header .nav .hs-menu-depth-1.hover > .hs-menu-children-wrapper,#header .nav .hs-menu-depth-2.hover2 > .hs-menu-children-wrapper{
    opacity:0;
    left:-9999px;
    right:-9999px;
    top:0;
  }
}

#header .hs-menu-children-wrapper {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  z-index: 1000;
  padding: 10px 0;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.hs-item-has-children {
  position: relative;
}
@media(min-width:1200px){
  #header .hs-menu-children-wrapper::before{
        position: absolute;
        content: "";
        top: 0;
        opacity:0;
        left: -100vw;
        width:100vw;
        height:100%;
        background: var(--Primary-Bold-Black-05, #f8f8f8);
        transition: all 0.3s ease,
        /* …except opacity, which will jump immediately */
        opacity 0s ease,
        background-color 0s ease
        ;
  }
  #header .hs-menu-depth-2 .hs-menu-children-wrapper::before{
        background: var(--primary-bold-black-70, #000);
        opacity:0;
        transition: all 0.3s ease,
        /* …except opacity, which will jump immediately */
        opacity 0s ease,
        background-color 0s ease
        ;
  }
  #header .hs-menu-depth-1.hover .hs-menu-children-wrapper::before ,#header .hs-menu-depth-2.hover2 .hs-menu-children-wrapper::before{
        opacity:1;
  }
  #header .hs-menu-depth-2 .hs-menu-children-wrapper{
  background: var(--primary-bold-black-70, #000);
  }
  #header .hs-menu-children-wrapper{
    background: var(--Primary-Bold-Black-05, #f8f8f8);
  }
   #header .hs-menu-item .hs-menu-children-wrapper{
        flex-wrap:wrap;
   }
}
/* 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;
  }
}