/* 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. */

@font-face{
    font-family: "awb-icons";
    src: url(https://49713046.fs1.hubspotusercontent-na1.net/hubfs/49713046/raw_assets/public/dualboot_2025/fonts/awb-icons.ttf),
        url(https://49713046.fs1.hubspotusercontent-na1.net/hubfs/49713046/raw_assets/public/dualboot_2025/fonts/awb-icons.woff);
    font-style: normal;
    font-weight: normal;
    font-display: swap;
}
@font-face{
    font-family: 'Libre italic';
    src: url(https://49713046.fs1.hubspotusercontent-na1.net/hubfs/49713046/raw_assets/public/dualboot_2025/fonts/librebaskervilleitalic.ttf),
        url(https://49713046.fs1.hubspotusercontent-na1.net/hubfs/49713046/raw_assets/public/dualboot_2025/fonts/librebaskervilleitalic.woff),
        url(https://49713046.fs1.hubspotusercontent-na1.net/hubfs/49713046/raw_assets/public/dualboot_2025/fonts/librebaskervilleitalic.woff2);
    font-style: normal;
    font-weight: normal;
    font-display: swap;
}
@font-face{
    font-family: "Font Awesome 5 Free";
    src: url(https://49713046.fs1.hubspotusercontent-na1.net/hubfs/49713046/raw_assets/public/dualboot_2025/fonts/fa-solid-900.ttf),
        url(https://49713046.fs1.hubspotusercontent-na1.net/hubfs/49713046/raw_assets/public/dualboot_2025/fonts/fa-solid-900.woff),
        url(https://49713046.fs1.hubspotusercontent-na1.net/hubfs/49713046/raw_assets/public/dualboot_2025/fonts/fa-solid-900.woff2);
    font-style: normal;
    font-weight: 900;
    font-display: swap;
}

body {
    line-height: 1.4;
    overflow-wrap: break-word;
    font-family: "Inter", sans-serif !important;
    overflow-x: hidden;
}

/* 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;
    transition-property: color, background-color, border-color;
    transition-duration: .2s;
    transition-timing-function: linear;
    text-decoration: none !important;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 1.4rem;
    font-family: "Inter", sans-serif !important;
}

/* 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;
    vertical-align: middle;
}

ul.no-list.hs-error-msgs.inputs-list li {
    margin: 0;
    color: #dc3232;
}

ul.no-list.hs-error-msgs.inputs-list li label {
    color: inherit !important;
}

.hs_error_rollup {
    background-color: #f2dede;
    border: 1px solid;
    color: ;
    border-radius: 0px 0px 0px 0px;
    color: #b94a48;
    padding: 25px;
    font-size: 14px;
    margin-bottom: 30px;
}

.hs_error_rollup label {
    font-size: inherit;
    font-family: "Inter", sans-serif;
    margin: 0;
}

.hs_error_rollup li label:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-size: 1.33333em;
    line-height: .75em;
    vertical-align: -.0667em;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    content: "\f071";
}
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: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\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;
}


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

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

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

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

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

/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

header.fusion-header-wrapper {
    left: 0;
    position: absolute;
    z-index: 10000;
    top: 0;
    width: 100%;
}
.fusion-header-sticky-height {
    display: none;
}
.fusion-header {
    padding-left: 30px;
    padding-right: 30px;
    backface-visibility: hidden;
    transition: background-color .25s ease-in-out;
}
.fusion-header-wrapper .fusion-row{
    position: relative;
    max-width: 1230px;
    margin: 0 auto;
    padding: 0;
}

.fusion-logo {
    display: block;
    float: left;
    max-width: 100%;

    --logo_margin-top: 30px;
    --logo_margin-bottom: 30px;
    --logo_margin-left: 0px;
    --logo_margin-right: 0px;
    margin: var(--logo_margin-top) var(--logo_margin-right) var(--logo_margin-bottom) var(--logo_margin-left);
}
.fusion-header-wrapper .fusion-row:before,.fusion-header-wrapper .fusion-row:after {
    content: " ";
    display: table;
}

.fusion-header-wrapper .fusion-row:after {
    clear: both;
}

.fusion-header-wrapper .fusion-row .fusion-main-menu {
    float: right;
    position: relative;
    z-index: 200;
    overflow: hidden;
    height: 104px;
}

.fusion-overlay-search {
    display: flex;
    visibility: hidden;
    align-items: center;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -150%);
    width: 100%;
    transition: opacity .8s cubic-bezier(.8, 0, .25, 1), transform .8s cubic-bezier(.8, 0, .25, 1);
}

.fusion-overlay-search .fusion-search-spacer {
    width: calc((var(--form_input_height)) * .4);
    --form_input_height: 50px;
}

.fusion-header-wrapper .fusion-main-menu .menu_section .hs-menu-wrapper > ul {
    display: flex;
    flex-wrap: wrap;
    transition: opacity .8s cubic-bezier(.8, 0, .25, 1), transform .8s cubic-bezier(.8, 0, .25, 1);
    list-style: none;
    margin: 0;
    padding: 0;
}

.fusion-header-wrapper .fusion-main-menu .menu_section .hs-menu-wrapper > ul > li {
    overflow: visible !important;
    padding-right: var(--nav_padding);
    --nav_padding: 35px;
    float: left;
    margin: 0;
    position: relative;
    cursor: pointer;
}

.fusion-header-wrapper .fusion-main-menu .menu_section .hs-menu-wrapper > ul > li > a {
    position: relative;
    justify-content: center;
    height: 104px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    line-height: 1;
    -webkit-font-smoothing: subpixel-antialiased;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    letter-spacing: 0.015em;
}


.fusion-header-wrapper .fusion-main-menu .menu_section .hs-menu-wrapper > ul > li:last-child {
    padding: 0;
}

.fusion-header-wrapper .fusion-main-menu .menu_section .hs-menu-wrapper > ul > li:last-child span {
    outline: 0;
    padding: 9px 20px;
    line-height: 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
    border-style: solid;
    border-radius: 30px;
    text-transform: none;
    transition: all .2s;
    font-weight: 500;
    margin: 0;
    border-width: 2px;
    border-color: #fafafa;
}

.fusion-header-wrapper .fusion-main-menu .menu_section .hs-menu-wrapper > ul > li:not(:last-child) > a:after {
    content: " ";
    border-top: 3px solid #fff;
    position: absolute;
    top: calc(50% + 1.15em);
    left: 0;
    width: 100%;
    border-top-style: solid;
    transform: scaleX(0);
    transition: transform .2s ease-in-out;
}

.fusion-header-wrapper .fusion-main-menu .menu_section .hs-menu-wrapper > ul > li > a:hover:after {
    transform: scaleX(1);
}
.fusion-header-wrapper .fusion-main-menu .menu_section .hs-menu-wrapper > ul > li:last-child span:hover {
    color: #212121;
    background: #fafafa;
}

.fusion-caret {
    margin-left: 9px;
}
.fusion-caret .fusion-dropdown-indicator {
    vertical-align: middle;
}
.fusion-caret .fusion-dropdown-indicator:before {
    content: "\f107";
    font-family: awb-icons;
    font-style: normal;
}
.fusion-header-wrapper .fusion-main-menu .menu_section .hs-menu-wrapper > ul > li > ul{
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    transition: opacity .2s ease-in;
    width: 200px;
    background: #fff;
    box-shadow: 1px 1px 30px rgba(0, 0, 0, .06);
    margin-top: -30px;
    border-radius: 5px;
    border-top: 3px solid #fff;
    font-family: inherit;
    font-weight: 400;
    letter-spacing: 0.015em;
}

.fusion-header-wrapper .fusion-main-menu .menu_section .hs-menu-wrapper > ul > li:hover > ul {
    visibility: visible;
    opacity: 1;
}

.fusion-header-wrapper .fusion-main-menu .menu_section .hs-menu-wrapper > ul > li > ul > li {
    float: none;
    margin: 0;
    padding: 0;
    position: relative;
    cursor: pointer;
}

.fusion-header-wrapper .fusion-main-menu .menu_section .hs-menu-wrapper > ul > li > ul > li a {
    border-bottom: none;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    color: #212121;
    font-size: 14px;
    letter-spacing: 0.015em;
    line-height: 1.6;
    text-indent: 0;
    height: auto;
    transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out, height 0s, line-height 0s;';
    padding: 7px 20px;
    padding: 12px 20px;
    display: block;
    text-decoration: none;
}

.fusion-header-wrapper .fusion-main-menu .menu_section .hs-menu-wrapper > ul > li > ul > li a:hover {
    background: #f2f3f5;
}
.fusion-logo div#hs_cos_wrapper_header_logo1 {
    display: none;
}
.fusion-mobile-menu-icons {
    display: none;
    position: relative;
    top: 0;
    right: 0;
    vertical-align: middle;
    text-align: right;
    margin-top: 10px;
}

.fusion-mobile-menu-icons a {
    float: right;
    font-size: 21px;
    margin-left: 20px;
    font-family: awb-icons !important;
    speak: never;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    transition-property: color, background-color, border-color;
    transition-duration: .2s;
    transition-timing-function: linear;
    color: #fafafa !important;
    text-decoration: none;
}

.fusion-mobile-menu-icons a:before {
    content: "\f0c9";
}
.mobile_menu_section {
    display: none;
    clear: both;
    color: #333;
}

.mobile_menu_section {
    padding-top: 20px;
    margin-left: -30px;
    margin-right: -30px;
    margin-bottom: 0;
}

.mobile_menu_section .hs-menu-wrapper > ul {
    display: block;
    border: none;
    border-top: 1px solid transparent;
    list-style: none;
    margin: 0;
    padding: 0;
    border-color: var(--mobile_menu_border_color);
    --mobile_menu_border_color: rgba(255, 252, 252, 0);
}

.mobile_menu_section .hs-menu-wrapper > ul > li{
    position: relative;
    font-size: 12px;
    line-height: normal;
}

.mobile_menu_section .hs-menu-wrapper > ul > li > a{
    font-size: 16px;
    letter-spacing: 0.015em;
    height: 42px;
    background-color: #212121;
    justify-content: left;
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    padding: 0 12px;
    padding-left: 30px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fafafa;
}
.mobile_menu_section .hs-menu-wrapper > ul > li > a span{
    -webkit-font-smoothing: auto;  
}


.mobile_menu_section .hs-menu-wrapper > ul > li button.fusion-open-submenu {
    display: block;
    z-index: 1;
    position: absolute;
    top: 1px;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: 0;
    background: 0 0;
    min-width: 50px;
    border: none;
    line-height: 15px;
    font-size: 13px;
    text-align: center;
    height: 42px;
    line-height: 42px;
    font-size: 16px;
    right: 0;
    padding-right: 35px;
    color: #fafafa;
    padding-left: 6px;
    padding-top: 0;
    padding-bottom: 0;
}
.mobile_menu_section .hs-menu-wrapper > ul > li button.fusion-open-submenu:before{
    display: block;
    margin: 0;
    content: "\e61f";
    font-family: awb-icons;   
}


.mobile_menu_section .hs-menu-wrapper > ul > li > ul {
    display: none;
}

.mobile_menu_section .hs-menu-wrapper > ul > li > ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile_menu_section .hs-menu-wrapper > ul > li > ul > li {
    position: relative;
    font-size: 12px;
    line-height: normal;
}

.mobile_menu_section .hs-menu-wrapper > ul > li > ul > li > a {
    height: 42px;
    display: flex;
    background: #212121;
    color: #fafafa;
    justify-content: left;
    align-items: center;
    border-bottom: 1px solid transparent;
    padding: 0 12px;
    padding-left: 39px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.015em;
}

.mobile_menu_section .hs-menu-wrapper > ul > li > ul > li > a:before{
    content: "-";
    margin-right: 2px;
}
.fusion-header-wrapper .fusion-main-menu .menu_section .hs-menu-wrapper > ul > li.active > a:after {
    transform: scaleX(1);
}
@media only screen and (min-width: 921px) {

    .fusion-header-wrapper .fusion-main-menu .menu_section .hs-menu-wrapper > ul > li:last-child span {
        font-size: 14px;
    }
    .fusion-logo div#hs_cos_wrapper_header_logo2 {
        display: none;
    }
    .fusion-logo div#hs_cos_wrapper_header_logo1 {
        display: block;
    }

    .mobile_menu_section {
        display: none;
    }
}

@media (max-width: 920px){
    .fusion-logo {
        margin: 0;
    }

    .fusion-header-wrapper .fusion-row .fusion-main-menu {
        display: none;
    }

    .fusion-header {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .fusion-mobile-menu-icons {
        display: block;
    }


}
footer.footer {
    position: relative !important;
    z-index: 9 !important;
}

footer.footer .footer-wrapper {
    padding: 0;
}

footer.footer .fusion-fullwidth {
    --awb-content-wrap
    wrap: var(--awb-flex-wrap, wrap);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 88px 30px 60px;
    background: #212121;
}

footer.footer .fusion-builder-row {
    max-width: 1279.2px;
    margin-left: calc(-4% / 2);
    margin-right: calc(-4% / 2);
    position: relative;
    z-index: 10;
    display: flex;
    flex: 1;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer.footer .fusion-layout-column {
    width: 70%;
    display: flex;
    margin-bottom: 20px;
    float: left;
    position: relative;
}

footer.footer .fusion-layout-column2 {
    width: 24%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
    float: left;
}

footer.footer .fusion-layout-column .fusion-column-wrapper {
    flex-direction: column;
    margin-left: 2.74285714286%;
    margin-right: 2.74285714286%;
    width: 100%;
    display: flex;
}

footer.footer .fusion-layout-column .fusion-image-element {
    line-height: 1;
    margin-bottom: 20px;20px:;
}

footer.footer .fusion-layout-column .fusion-image-element span.has-fusion-standard-logo {
    display: inline-block;
    z-index: 1;
    overflow: hidden;
    position: relative;
    vertical-align: middle;
    max-width: 100%;
    line-height: 1;
    filter: none;
    transition: all;
}

footer.footer .fusion-layout-column .fusion-image-element span.has-fusion-standard-logo .imageSec {
    display: none;
}

footer.footer .fusion-layout-column .fusion-text p {color: #8d8d8d;font-size: 16px;font-family: "Inter", sans-serif;line-height: 1.5;font-weight: 400;letter-spacing: 0.24px;margin: 16px 0;}

footer.footer .fusion-layout-column nav.awb-menu ul {
    padding: 0;
    margin: 0;
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    transition: min-height calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
    min-height: 24px;
    font-family: "Inter", sans-serif;
}

footer.footer .fusion-layout-column nav.awb-menu ul li {
    position: relative;
    display: flex;
    justify-content: center;
    line-height: 1.6;
}

footer.footer .fusion-layout-column nav.awb-menu ul li a {
    color: #8d8d8d !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: inherit;
    text-decoration: underline !important;
    letter-spacing: 0.24px;
    transition: color calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1), background-color calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
}
footer.footer .fusion-layout-column nav.awb-menu ul li a:hover{
    color: #fff !important;
}
footer.footer .fusion-layout-column nav.awb-menu ul li:hover a{
    color: #fff;
    text-decoration: underline;
}
footer.footer .fusion-layout-column nav.awb-menu ul li a span {
    color: inherit;
}

footer.footer .fusion-layout-column2 .fusion-column-wrapper {
    flex-direction: column;
    margin-left: 8%;
    margin-right: 8%;
    width: 100%;
    display: flex;
}

footer.footer .fusion-layout-column2 .fusion-column-wrapper .fusion-builder-row {
    width: 104% !important;
    max-width: 104% !important;
    margin-left: calc(-4% / 2);
    margin-right: calc(-4% / 2);
    flex: auto;
    flex-grow: initial;
    flex-shrink: initial;
    display: flex;
    align-items: flex-start;
    justify-content: start;
}

footer.footer .fusion-layout-column2 .fusion-column-wrapper .fusion-builder-row .fusion-layout-columnIn1 {
    width: 60%;
    margin-bottom: 20px;
    display: flex;
    float: left;
}

footer.footer .fusion-layout-column2 .fusion-column-wrapper .fusion-builder-row .fusion-layout-columnIn1 .fusion-column-wrapper {
    margin-left: 3.2%;
    margin-right: 3.2%;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

footer.footer .fusion-layout-column2 .fusion-column-wrapper .fusion-builder-row .fusion-layout-columnIn1 .fusion-column-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

footer.footer .fusion-layout-column2 .fusion-column-wrapper .fusion-builder-row .fusion-layout-columnIn1 .fusion-column-wrapper ul li {
    line-height: 1.6;
}

footer.footer .fusion-layout-column2 .fusion-column-wrapper .fusion-builder-row .fusion-layout-columnIn1 .fusion-column-wrapper ul li a {
    padding-top: 10px;
    color: #fff;
    display: flex;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.24px;
}
footer.footer .fusion-layout-column2 .fusion-column-wrapper .fusion-builder-row .fusion-layout-columnIn1 .fusion-column-wrapper ul li a:hover{
    text-decoration: underline!important;
}
footer.footer .fusion-layout-column2 .fusion-column-wrapper .fusion-builder-row .fusion-layout-columnIn1 .fusion-column-wrapper ul li a span {
    color: inherit;
}

footer.footer .fusion-layout-column2 .fusion-column-wrapper .fusion-builder-row .fusion-layout-columnIn2 {
    width: 25%;
    position: relative;
    float: left;
    margin-bottom: 20px;
}

footer.footer .fusion-layout-column2 .fusion-column-wrapper .fusion-builder-row .fusion-layout-columnIn2 .fusion-column-wrapper {margin-left: 7.68%;margin-right: 7.68%;width: 100%;}

footer.footer .fusion-layout-column2 .fusion-column-wrapper .fusion-builder-row .fusion-layout-columnIn2 .fusion-column-wrapper ul {padding: 0;list-style: none;,animation: ;margin: 0;}

footer.footer .fusion-layout-column2 .fusion-column-wrapper .fusion-builder-row .fusion-layout-columnIn2 .fusion-column-wrapper ul li {
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

footer.footer .fusion-layout-column2 .fusion-column-wrapper .fusion-builder-row .fusion-layout-columnIn2 .fusion-column-wrapper ul li a {
    padding-top: 10px;
    color: #8d8d8d;
    display: flex;
    line-height: inherit;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.24px;
}
footer.footer .fusion-layout-column2 .fusion-column-wrapper .fusion-builder-row .fusion-layout-columnIn2 .fusion-column-wrapper ul li a:hover {
    text-decoration: underline !important;
}
footer.footer .fusion-layout-column2 .fusion-column-wrapper .fusion-builder-row .fusion-layout-columnIn2 .fusion-column-wrapper ul li a span {
    color: inherit;
}

section.to-top-container.to-top-right a {
    background-color: #333;
    bottom: 0;
    height: 35px;
    position: fixed;
    text-align: center;
    width: 48px;
    opacity: 0;
    z-index: 100000;
    transition: opacity .4s ease-in-out, background .2s ease-in-out;
    line-height: 1;
    pointer-events: none;
    border-radius: 6px 6px 0 0;
    right: 75px;
}

span#awb-to-top-label {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

a#toTop:before {
    line-height: 35px;
    content: "\f106";
    -webkit-font-smoothing: antialiased;
    font-family: awb-icons;
    font-size: 22px;
    color: #fff;
}
section.to-top-container.to-top-right a:hover {
    background: #005af0;
}
section.to-top-container.to-top-right a.show {
    opacity: 1;
    pointer-events: all;
}
@media screen and (max-width: 1024px){
    footer.footer .fusion-layout-column {
        width: 60%;
    }

    footer.footer .fusion-layout-column2 {
        width: 40%;
    }

    .fusion-layout-columnIn3 {
        width: 15%;
        margin-bottom: 20px;
        display: flex;
        height: 1px;
    }

    footer.footer .fusion-layout-column2 .fusion-column-wrapper .fusion-builder-row .fusion-layout-columnIn1 {
        width: 50%;
    }

    footer.footer .fusion-layout-column2 .fusion-column-wrapper .fusion-builder-row .fusion-layout-columnIn2 {
        width: 50%;
    }

    footer.footer .fusion-layout-column2 .fusion-column-wrapper {
        margin-left: 4.8%;
        margin-right: 4.8%;
    }

    footer.footer .fusion-layout-column2 .fusion-column-wrapper .fusion-builder-row .fusion-layout-columnIn2 .fusion-column-wrapper {
        margin-left: 3.84%;
        margin-right: 3.84%;
    }

    footer.footer .fusion-layout-column .fusion-column-wrapper {
        margin-left: 3.2%;
        margin-right: 3.2%;
    }

    footer.footer .fusion-layout-column2 .fusion-column-wrapper .fusion-builder-row .fusion-layout-columnIn1 .fusion-column-wrapper {
        margin-left: 3.84%;
        margin-right: 3.84%;
    }
}

@media screen and (max-width:640px){
    footer.footer .fusion-builder-row {
        flex-direction: column-reverse;
    }

    footer.footer .fusion-fullwidth {
        padding-left: 15px;
        padding-right: 15px;
    }

    footer.footer .fusion-layout-column {
        width: 100%;
    }

    footer.footer .fusion-layout-column .fusion-column-wrapper {
        margin-left: 1.92%;
        margin-right: 1.92%;
    }

    footer.footer .fusion-layout-column nav.awb-menu ul li a {
        font-size: 12.5px;
    }

    footer.footer .fusion-layout-column .fusion-image-element {
        margin-bottom: 0;
        margin-top: 60px;
    }

    footer.footer .fusion-layout-column2 {
        width: 100%;
    }

    footer.footer .fusion-layout-column2 .fusion-column-wrapper {
        margin-left: 1.92%;
        margin-right: 1.92%;
    }

    footer.footer .fusion-layout-column2 .fusion-column-wrapper .fusion-builder-row {
        flex-direction: unset !important;
        justify-content: space-between;
    }

    .fusion-layout-columnIn3 {
        display: none;
    }

    footer.footer .fusion-layout-column2 .fusion-column-wrapper .fusion-builder-row .fusion-layout-columnIn2 {
        width: 30%;
    }

    footer.footer .fusion-layout-column2 .fusion-column-wrapper .fusion-builder-row .fusion-layout-columnIn2 .fusion-column-wrapper {
        margin-left: 6.3%;
        margin-right: 6.3%;
    }
}
html {
    scroll-behavior: smooth;
    /* For better compatibility with Safari older versions */
    -webkit-scroll-behavior: smooth;
    overflow-x: hidden;
}
/* 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%;
}

/* Root */

.fusion-card2.howWeDo {
    background: none;
    padding: 0;
    margin: 0;
    margin-top: 40px;
    margin-left: -105px;
    margin-right: -105px;
    padding: 0 30px;
}

.fusion-card2.howWeDo .fusion-title {
    margin-bottom: 30px;
}

.fusion-card2.howWeDo .fusion-content-boxes {
    margin-top: 0;
}

.fusion-card2.howWeDo .fusion-content-boxes .fusion-column {
    width: 33.333%;
}

.fusion-card2.howWeDo .fusion-content-boxes .fusion-column .col .heading:before {
    display: none;
}

.fusion-card2.howWeDo .fusion-content-boxes .fusion-column .col .heading h2.content-box-heading {
    font-size: 18px;
    letter-spacing: 0.24px;
}
.fusion-card2.howWeDo .fusion-content-boxes .fusion-column .col{
    box-shadow: 5px 10px 10px 0px #0000001A;
}
@media screen and (max-width: 800px){
    .fusion-card2.howWeDo .fusion-content-boxes .fusion-column{
        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;
  }
}