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

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

   *,
   *:before,
   *:after {
     box-sizing: border-box;
   }

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

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

/* Sticky Footer */
html,
body {
  height: 100%;
}

.body-wrapper {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 100%;
}

html.lenis .body-wrapper {
  min-height: 100vh;
  min-height: 100svh;
}

div[data-global-resource-path*='header'],
.body-container-wrapper,
div[data-global-resource-path*='footer'] {
  min-width: 0; /* Fixes width issues on smaller screens */
}

/* Mobile layout */

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

.row-fluid [class*='span'] {
  width: 100%;
}

/* Desktop layout */

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

  .row-fluid .span11 {
    width: 91.66%;
  }

  .row-fluid .span10 {
    width: 83.33%;
  }

  .row-fluid .span9 {
    width: 75%;
  }

  .row-fluid .span8 {
    width: 66.66%;
  }

  .row-fluid .span7 {
    width: 58.33%;
  }

  .row-fluid .span6 {
    width: 50%;
  }

  .row-fluid .span5 {
    width: 41.66%;
  }

  .row-fluid .span4 {
    width: 33.33%;
  }

  .row-fluid .span3 {
    width: 25%;
  }

  .row-fluid .span2 {
    width: 16.66%;
  }

  .row-fluid .span1 {
    width: 8.33%;
  }
}

/* Visibilty classes */

.hide {
  display: none;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.hidden {
  display: none;
  visibility: hidden;
}

/* Responsive visibilty classes */

.visible-phone {
  display: none !important;
}

.visible-tablet {
  display: none !important;
}

.hidden-desktop {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-phone {
    display: inherit !important;
  }

  .hidden-phone {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .visible-tablet {
    display: inherit !important;
  }

  .hidden-tablet {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 20px;
}

.dnd-section {
  position: relative;
}

.dnd-section>.row-fluid {
  margin: 0 auto;
  padding: 0 10px;
}

.dnd-section .dnd-module.widget-span {
  padding: 0 10px;
}

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

/* Elements
Base HMTL elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.)
*/

@font-face {
  font-family: 'GT Ultra Fine';
  src: local('GT Ultra Fine Regular'), local('GTUltraFine-Regular'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/forth-may-2024/fonts/GTUltraFine-Regular.woff2') format('woff2'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/forth-may-2024/fonts/GTUltraFine-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Ultra Fine';
  src: local('GT Ultra Fine Regular Italic'), local('GTUltraFine-RegularItalic'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/forth-may-2024/fonts/GTUltraFine-RegularItalic.woff2') format('woff2'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/forth-may-2024/fonts/GTUltraFine-RegularItalic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'GT Ultra Fine';
  src: local('GT Ultra Fine Light'), local('GTUltraFine-Light'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/forth-may-2024/fonts/GTUltraFine-Light.woff2') format('woff2'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/forth-may-2024/fonts/GTUltraFine-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Ultra Fine';
  src: local('GT Ultra Fine Light Italic'), local('GTUltraFine-LightItalic'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/forth-may-2024/fonts/GTUltraFine-LightItalic.woff2') format('woff2'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/forth-may-2024/fonts/GTUltraFine-LightItalic.woff') format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'GT Ultra';
  src: local('GT Ultra Regular'), local('GTUltra-Regular'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/forth-may-2024/fonts/GTUltra-Regular.woff2') format('woff2'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/forth-may-2024/fonts/GTUltra-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Ultra';
  src: local('GT Ultra Regular Italic'), local('GTUltra-RegularItalic'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/forth-may-2024/fonts/GTUltra-RegularItalic.woff2') format('woff2'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/forth-may-2024/fonts/GTUltra-RegularItalic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'GT Ultra';
  src: local('GT Ultra Bold'), local('GTUltra-Bold'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/forth-may-2024/fonts/GTUltra-Bold.woff2') format('woff2'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/forth-may-2024/fonts/GTUltra-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Ultra';
  src: local('GT Ultra Bold Italic'), local('GTUltra-BoldItalic'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/forth-may-2024/fonts/GTUltra-BoldItalic.woff2') format('woff2'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/forth-may-2024/fonts/GTUltra-BoldItalic.woff') format('woff');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: local('NeueHaasDisplay-Mediu'), url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/forth-may-2024/fonts/NeueHaasDisplay-Mediu.woff2') format('woff2'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/forth-may-2024/fonts/NeueHaasDisplay-Mediu.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Risley';
  src: local('Risley Regular'), local('Risley-Regular'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/forth-may-2024/fonts/Risley-Regular.woff2') format('woff2'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/forth-may-2024/fonts/Risley-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'Engravers\' Gothic';
    src: local('Engravers\' Gothic'), local('EngraversGothicBT-Regular'),
        url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/forth-may-2024/fonts/EngraversGothicBT-Regular.woff2') format('woff2'),
        url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/forth-may-2024/fonts/EngraversGothicBT-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
  color: #0c2340;
  font-family: 'GT Ultra Fine';
  font-weight: 300;
  line-height: 125%;
  word-break: break-word;
}

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

/* Paragraphs */

p {
  margin: 0 0 1.25em;
}

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

/* Anchors */

a {
  cursor: pointer;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.15s linear;
}

a:hover,
a:focus {
  text-decoration: none;
}

a:focus {
  outline: 0;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5em;
}

h1 {
  letter-spacing: -0.02em;
  line-height: 90%;
}

h2 {
  letter-spacing: -0.02em;
  line-height: 110%;
}

h3 {
  line-height: 90%;
}

h4 {
  letter-spacing: -0.02em;
  line-height: 108.5714%;
}

h5 {
  line-height: 108.3333%;
}

h6 {
  line-height: 125%;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0 !important;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.25em;
  padding-left: 25px;
}

ul:last-child,
ol:last-child {
  margin-bottom: 0 !important;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
  padding-left: 0;
}

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  margin: 0 0 1.25em;
  quotes: '\201C''\201D';
  text-align: center;
}

blockquote:last-child {
  margin-bottom: 0 !important;
}

blockquote:before {
  content: open-quote;
}

blockquote:after {
  content: close-quote;
}

/* Horizontal rules */

hr {
  border: 0;
  border-bottom: 1px solid #ccc;
  margin: 1.25em 0;
}

hr:first-child {
  margin-top: 0;
}

hr:last-child {
  margin-bottom: 0 !important;
}

/* Image alt text */

img,
picture {
  font-size: 9px;
  height: auto;
  max-width: 100%;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  line-height: 107.1429%;
  min-width: 246px;
  text-align: center;
  transition: all 0.35s ease;
  white-space: normal;
}

button:disabled,
.button:disabled {
  background-color: #D0D0D0 !important;
  border-color: #D0D0D0 !important;
  color: #E6E6E6 !important;
}

a.button {
  text-decoration: none;
}

/* No button */

.no-button {
  border: 0;
  border-radius: 0;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  padding: 0;
  text-align: left;
}

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: 0;
  color: initial;
  text-decoration: none;
  transition: none;
}
/* Fields */

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

/* Labels */

form label {
  display: block;
  font-size: 14px;
  line-height: 107.1429%;
}

.hs-form-field > label {
  margin-bottom: 10px;
}

/* Help text */

form legend {
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
}

/* Inputs */

form input[type='text'],
form input[type='email'],
form input[type='password'],
form input[type='tel'],
form input[type='number'],
form input[type='file'],
form select,
form textarea {
  border: 1px solid rgba(12, 35, 64, 0.2);
  color: #0c2340;
  display: block;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
  padding: 10px 20px;
  width: 100%;
}

form input[type='text']:focus,
form input[type='email']:focus,
form input[type='password']:focus,
form input[type='tel']:focus,
form input[type='number']:focus,
form input[type='file']:focus,
form select:focus,
form textarea:focus {
  border-color: #0c2340;
  outline: 0;
}

form select {
  padding: 10px 16px;
}

form select[data-select2-id] {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  border: 1px solid rgba(12, 35, 64, 0.2);
  border-radius: 0;
  height: auto;
}

.select2-container--default .select2-selection--single:focus {
  border-color: #0c2340;
  outline: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #0c2340;
  font-size: 12px;
  height: 36.8px;
  letter-spacing: 0.04em;
  line-height: 140%;
  padding: 10px 59px 10px 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 15 9'%3E%3Cpath stroke='%230c2340' stroke-width='2' d='M14 1 6.91 8M1 1l7.09 7'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  height: 100%;
  right: 22px;
  width: 15px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 15 9'%3E%3Cpath stroke='%230c2340' stroke-width='2' d='m1 8 7.09-7M14 8 6.91 1'/%3E%3C/svg%3E");
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-dropdown {
  border-color: #0c2340;
  border-radius: 0;
  color: #0c2340;
  font-size: 24px;
  letter-spacing: normal;
  line-height: 108.3333%;
  margin-top: -0.2px;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: 1px solid #0c2340;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 230px;
}

.select2-results__option {
  opacity: 0.5;
  padding: 6px 14px;
}

.select2-results__option:first-child {
  padding-top: 14px;
}

.select2-results__option:last-child {
  padding-bottom: 14px;
}

.select2-container--default .select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: transparent;
  color: #0c2340;
  opacity: 1;
}

form textarea {
  height: 223px;
  resize: vertical;
}

form fieldset {
  margin: 0 -10px !important;
  max-width: none !important;
  min-width: auto;
}

form fieldset .hs-form-field {
  padding: 0 10px;
}

form fieldset.form-columns-1 .input,
form fieldset.form-columns-1 .hs-input:not([type='checkbox']):not([type='radio']),
form fieldset.form-columns-2 .input,
form fieldset.form-columns-2 .hs-input:not([type='checkbox']):not([type='radio']),
form fieldset.form-columns-3 .input,
form fieldset.form-columns-3 .hs-input:not([type='checkbox']):not([type='radio']) {
  margin-right: 0 !important;
  width: 100% !important;
}

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

form fieldset.form-columns-3 .hs-form-field {
  width: 33.33% !important;
}

@media (max-width: 767px) {
  form fieldset.form-columns-2 .hs-form-field,
  form fieldset.form-columns-3 .hs-form-field {
    width: 100% !important;
  }
}

/* Inputs - checkbox/radio */

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

form .inputs-list li {
  display: block;
  margin: 8px 0 0;
}

form .inputs-list li:first-child {
  margin-top: 0;
}

form input[type='checkbox'],
form input[type='radio'] {
  cursor: pointer;
}

form .inputs-list .hs-form-booleancheckbox-display,
form .inputs-list .hs-form-checkbox-display,
form .inputs-list .hs-form-radio-display {
  font-size: 17px;
  line-height: 125%;
}

form .inputs-list .hs-form-booleancheckbox-display > input[type='checkbox'],
form .inputs-list .hs-form-checkbox-display > input[type='checkbox'],
form .inputs-list .hs-form-radio-display > input[type='radio'] {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
}

form .inputs-list .hs-form-booleancheckbox-display > span,
form .inputs-list .hs-form-checkbox-display > span,
form .inputs-list .hs-form-radio-display > span {
  display: flex;
  gap: 14px;
  align-items: center;
}

form .inputs-list .hs-form-booleancheckbox-display > span::before,
form .inputs-list .hs-form-checkbox-display > span::before,
form .inputs-list .hs-form-radio-display > span::before {
  border-radius: 2px;
  border: 1px solid #0c2340;
  content: '';
  cursor: pointer;
  display: block;
  height: 12px;
  width: 12px;
}

form .inputs-list .hs-form-checkbox-display > input[type='checkbox']:checked + span::before,
form .inputs-list .hs-form-booleancheckbox-display > input[type='checkbox']:checked + span::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%230c2340' d='M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm273 177L209 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L303 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px auto;
}

form .inputs-list .hs-form-radio-display > span::before {
  border-radius: 100%;
}

form .inputs-list .hs-form-radio-display > input[type='radio']:checked + span::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%230c2340' d='M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512zm0-352a96 96 0 1 1 0 192 96 96 0 1 1 0-192z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px auto;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 17 17'%3E%3Cpath fill='%230c2340' d='M3.542 15.585c-.39 0-.723-.14-1-.417a1.364 1.364 0 0 1-.417-1V4.251c0-.39.139-.723.416-1 .278-.278.611-.416 1-.416h.709V1.418h1.417v1.417h5.666V1.418h1.417v1.417h.708c.39 0 .723.138 1 .416.278.277.417.61.417 1v9.917c0 .39-.139.723-.416 1a1.364 1.364 0 0 1-1 .417H3.541Zm0-1.417h9.916V7.085H3.542v7.083Zm0-8.5h9.916V4.251H3.542v1.417ZM8.5 9.918a.685.685 0 0 1-.505-.204.685.685 0 0 1-.203-.504c0-.201.068-.37.203-.505A.685.685 0 0 1 8.5 8.5c.2 0 .369.068.505.204a.685.685 0 0 1 .203.505c0 .2-.068.369-.203.504a.685.685 0 0 1-.505.204Zm-2.833 0a.685.685 0 0 1-.505-.204.685.685 0 0 1-.204-.504c0-.201.068-.37.204-.505a.685.685 0 0 1 .505-.204c.2 0 .369.068.504.204a.685.685 0 0 1 .204.505c0 .2-.068.369-.204.504a.685.685 0 0 1-.504.204Zm5.666 0a.685.685 0 0 1-.504-.204.686.686 0 0 1-.204-.504c0-.201.068-.37.204-.505a.685.685 0 0 1 .504-.204c.201 0 .37.068.505.204a.685.685 0 0 1 .204.505c0 .2-.068.369-.204.504a.685.685 0 0 1-.505.204ZM8.5 12.751a.686.686 0 0 1-.505-.203.685.685 0 0 1-.203-.505c0-.2.068-.369.203-.505a.685.685 0 0 1 .505-.203c.2 0 .369.067.505.203a.685.685 0 0 1 .203.505c0 .2-.068.369-.203.505a.686.686 0 0 1-.505.203Zm-2.833 0a.686.686 0 0 1-.505-.203.685.685 0 0 1-.204-.505c0-.2.068-.369.204-.505a.685.685 0 0 1 .505-.203c.2 0 .369.067.504.203a.685.685 0 0 1 .204.505c0 .2-.068.369-.204.505a.686.686 0 0 1-.504.203Zm5.666 0a.686.686 0 0 1-.504-.203.686.686 0 0 1-.204-.505c0-.2.068-.369.204-.505a.685.685 0 0 1 .504-.203c.201 0 .37.067.505.203a.685.685 0 0 1 .204.505c0 .2-.068.369-.204.505a.686.686 0 0 1-.505.203Z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: '';
  display: block;
  height: 17px;
  position: absolute;
  right: 21px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
}

.hs-dateinput input.hs-input {
  padding-right: 59px;
}

.fn-date-picker .pika-button,
.fn-date-picker .pika-next,
.fn-date-picker .pika-prev {
  border-radius: 0;
  min-width: auto;
}

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

/* Placeholder */

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #0c2340;
  opacity: 0.2;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #0c2340;
  opacity: 0.2;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #0c2340;
  opacity: 0.2;
}

::placeholder {
  color: #0c2340;
  opacity: 0.2;
}

/* Headings and text */

.widget-type-form .form-title {
  font-size: 64px;
  line-height: 107.4%;
  margin-bottom: 35px;
}

.widget-type-form .hs-richtext,
.widget-type-form .hs-richtext p {
  font-size: 14px;
  margin: 0 0 22px;
}

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

/* GDPR */

.legal-consent-container .inputs-list > li:first-child {
  margin-top: 0;
}

.legal-consent-container .hs-form-booleancheckbox-display > span {
  margin-left: 2em !important;
}

/* Validation */

.hs_error_rollup {
  color: red;
  display: none;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
  margin-bottom: 25px;
}

.hs-form-required {
  color: red;
}

.hs-input.invalid.error {
  border-color: red;
}

.hs-error-msg {
  color: red;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
  margin-top: 5px;
}

/* Submit button */

form input[type='submit'],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  line-height: 107.1429%;
  min-width: 246px;
  text-align: center;
  text-decoration: none;
  transition: all 0.35s ease;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
/* Table */

table {
  border-collapse: collapse;
  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
*/

.animated {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}
/* Sticky Header */

.main-header {
  background-color: #fff;
  border-bottom: 0.5px solid transparent;
  position: relative;
  width: 100%;
  z-index: 999;
}

body[data-sticky='true'] .main-header {
  background-color: #fff;
  border-bottom-color: #0c2340;
  position: fixed;
  top: 0 !important;
  left: 0;
}

body[data-nav='true'] {
  overflow: hidden;
}

/* Header Container */

.header-container {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto 1fr;
  min-height: 70.98px;
  padding-bottom: 19px;
  padding-top: 19px;
}

.header-container.content-wrapper {
  max-width: none;
}

.main-header--no-navigation .header-container {
  display: flex;
  justify-content: 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 .logo-company-name {
  font-size: 18px;
}

#hs_cos_wrapper_header_logo {
  max-width: 65.15px;
}

/* Navigation */

#hs_cos_wrapper_header_links {
  font-size: 17px;
  line-height: 125%;
}

#hs_cos_wrapper_header_links .hs-menu-wrapper.hs-menu-flow-horizontal ul {
  gap: 32px;
}

#hs_cos_wrapper_header_links a {
  text-decoration-line: none;
}

#hs_cos_wrapper_header_links a:hover,
#hs_cos_wrapper_header_links a:focus {
  text-decoration-line: underline;
}

.header-navigation {
  align-items: center;
  display: flex;
  /* gap: 18px; */
  gap: 32px;
  justify-content: end;
}

/* div[data-global-resource-path*='header-insider.html'] .header-navigation {
  gap: 32px;
} */

#hs_cos_wrapper_header_buttons .button {
  background-color: #bb8459;
  background-image: linear-gradient(#ffffff, #ffffff);
  border-color: #bb8459;
  color: #ffffff;
  font-size: 12px;
  line-height: 108.3333%;
  min-width: auto;
  padding: 9px 11.5px;
}

#hs_cos_wrapper_header_buttons .button:hover,
#hs_cos_wrapper_header_buttons .button:focus {
  background-color: #bb8459;
  border-color: #bb8459;
  color: #bb8459;
}

.popup-navigation-wrapper {
  background-color: #0c2340;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  left: 0;
  min-height: 100%;
  opacity: 0;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  visibility: hidden;
  width: 100%;
  z-index: 999;
}

body[data-nav='true'] .popup-navigation-wrapper {
  opacity: 1;
  visibility: inherit;
}

.popup-navigation--toggle {
  background: none;
  border-radius: 0;
  border: 0;
  display: block;
  min-width: auto;
  padding: 0;
  position: relative;
}

.popup-navigation--toggle:hover,
.popup-navigation--toggle:focus {
  background: none;
  border: 0;
}

.popup-navigation--toggle:active {
  transform: scale(0.9);
}

.popup-navigation--toggle svg {
  display: block;
  width: auto;
}

.popup-navigation--open {
  color: #0c2340;
}

.popup-navigation--open:hover,
.popup-navigation--open:focus {
  color: #0c2340;
}

.popup-navigation--open svg {
  height: 8px;
}

.popup-navigation--close {
  color: #ffffff;
  left: 40.57px;
  position: absolute;
  /* right: 40.57px; */
  top: 40.08px;
}

/* div[data-global-resource-path*='header-insider.html'] .popup-navigation--close {
  left: 40.57px;
  right: auto;
} */

.popup-navigation--close:hover,
.popup-navigation--close:focus {
  color: #ffffff;
}

.popup-navigation--close svg {
  height: 14.85px;
}

.popup-navigation-wrapper a {
  color: inherit;
}

.popup-navigation-wrapper a:hover,
.popup-navigation-wrapper a:focus {
  color: inherit;
}

#hs_cos_wrapper_popup_navigation_image {
  /* flex: 0 1 43.1949%; */
  flex: 0 1 47.439%;
  overflow: hidden;
  position: relative;
}

#hs_cos_wrapper_popup_navigation_image img {
  display: block;
  height: 100% !important;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

#hs_cos_wrapper_popup_navigation_insider {
  flex: 0 1 47.439%;
  overflow: hidden;
  position: relative;
}

#hs_cos_wrapper_popup_navigation_insider::before {
  background-color: #ffffff;
  bottom: 0;
  content: '';
  display: block;
  right: 0;
  position: absolute;
  top: 0;
  width: 1px;
}

.popup-navigation--contents {
  align-items: start;
  display: flex;
  flex-flow: row wrap;
  /* flex: 0 1 56.8051%; */
  flex: 0 1 52.561%;
  gap: 148px;
  /* padding: 140px 40px 40px 9.7227%; */
  padding: 140px 40px 40px;
}

/* div[data-global-resource-path*='header-insider.html'] .popup-navigation--contents {
  flex: 0 1 52.561%;
  padding-left: 40px;
} */

#hs_cos_wrapper_popup_navigation_primary {
  width: 100%;
}

.popup-navigation--footer {
  align-items: end;
  align-self: flex-end;
  display: grid;
  font-size: 14px;
  font-weight: 400;
  gap: 53px;
  grid-template-columns: 1fr auto;
  justify-content: space-between;
  line-height: 107.1429%;
  width: 100%;
}

.popup-navigation--footer .copyright {
  display: none;
  margin-bottom: 11px;
}

#hs_cos_wrapper_popup_navigation_secondary .hs-menu-wrapper ul {
  gap: 13px 53px;
}

/* Interim Popup Nav */

.popup-navigation-interim > .content-wrapper {
  padding: 171px 70px;
  position: relative;
  width: 100%;
}

.popup-navigation-interim .popup-navigation--close {
  right: 29px;
  top: 24px;
}

.popup-navigation-interim .popup-navigation--close svg {
  height: 18px;
}

.popup-navigation-interim #hs_cos_wrapper_header_logo_nav {
  left: 50%;
  max-width: 74px;
  position: absolute;
  top: 20px;
  transform: translateX(-50%);
}

.popup-navigation-interim #hs_cos_wrapper_navigation_primary {
  font-size: 50px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 90%;
  text-transform: uppercase;
}

.popup-navigation-interim #hs_cos_wrapper_navigation_primary .menu__item {
  justify-content: center;
}

.popup-navigation-interim #hs_cos_wrapper_navigation_primary .menu__item:not(:first-child) {
  margin-top: 43px;
}

.popup-navigation-interim #hs_cos_wrapper_navigation_primary .menu__link {
  color: inherit;
  padding-left: 0.02em;
  text-align: center;
  text-decoration: none;
}

.popup-navigation-interim #hs_cos_wrapper_navigation_primary .menu__link:hover > span,
.popup-navigation-interim #hs_cos_wrapper_navigation_primary .menu__link:focus > span,
.popup-navigation-interim #hs_cos_wrapper_navigation_primary .menu__link--active-link > span,
.popup-navigation-interim #hs_cos_wrapper_navigation_primary .menu__link--active-branch > span {
  text-decoration-line: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}

.popup-navigation-interim #hs_cos_wrapper_navigation_primary .menu__link small {
  display: block;
  font-size: 17px;
  letter-spacing: 0;
  line-height: 125%;
  margin-top: 8px;
}
.main-footer {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #0c2340;
  color: #ffffff;
  position: relative;
}

.main-footer .content-wrapper {
  max-width: none;
}

.main-footer a {
  color: inherit;
  text-decoration-line: none;
}

.main-footer a:hover,
.main-footer a:focus {
  color: inherit;
  text-decoration-line: underline;
}

.main-footer--top {
  padding-top: 20px;
}

.main-footer--top > .content-wrapper::before,
.main-footer--top > .content-wrapper::after {
  background-color: #ffffff;
  content: '';
  display: block;
  height: 1px;
  opacity: 0.2;
  width: 100%;
}

.main-footer--links {
  display: grid;
  gap: 67px 20px;
  grid-template-columns: 36.351% 1fr auto;
}

#hs_cos_wrapper_footer_links_primary_l,
#hs_cos_wrapper_footer_links_primary_r {
  font-size: 35px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 108.5714%;
}

#hs_cos_wrapper_footer_links_primary_l .hs-menu-wrapper ul,
#hs_cos_wrapper_footer_links_primary_r .hs-menu-wrapper ul {
  gap: 10px;
}

#hs_cos_wrapper_footer_links_primary_r {
  grid-column: span 2;
}

#hs_cos_wrapper_footer_links_secondary_l,
#hs_cos_wrapper_footer_links_secondary_r {
  align-self: end;
  font-size: 17px;
  line-height: 150%;
}

#hs_cos_wrapper_footer_links_secondary_l .hs-menu-wrapper ul,
#hs_cos_wrapper_footer_links_secondary_r .hs-menu-wrapper ul {
  gap: 10px;
}

#hs_cos_wrapper_footer_logo_extra {
  align-self: end;
  max-width: 128px;
}

#hs_cos_wrapper_footer_form_header {
  margin-bottom: 70px;
}

#hs_cos_wrapper_footer_form_header h1,
#hs_cos_wrapper_footer_form_header h2,
#hs_cos_wrapper_footer_form_header h3,
#hs_cos_wrapper_footer_form_header h4,
#hs_cos_wrapper_footer_form_header h5,
#hs_cos_wrapper_footer_form_header h6 {
  font-size: 24px;
  line-height: 108.3333%;
  margin-bottom: 0;
  max-width: 300px;
}

#hs_cos_wrapper_footer_form form {
  display: grid;
  grid-template-columns: 1fr auto;
}

#hs_cos_wrapper_footer_form form input[type='text'],
#hs_cos_wrapper_footer_form form input[type='email'],
#hs_cos_wrapper_footer_form form input[type='password'],
#hs_cos_wrapper_footer_form form input[type='tel'],
#hs_cos_wrapper_footer_form form input[type='number'],
#hs_cos_wrapper_footer_form form input[type='file'],
#hs_cos_wrapper_footer_form form input[type='date'],
#hs_cos_wrapper_footer_form form select,
#hs_cos_wrapper_footer_form form textarea {
  background-color: transparent;
  border-color: #ffffff;
  border-width: 1px;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: normal;
  line-height: 15px;
  min-height: 45px;
  padding: 14px 19px;
  width: 100%;
}

#hs_cos_wrapper_footer_form form input[type='text']:focus,
#hs_cos_wrapper_footer_form form input[type='email']:focus,
#hs_cos_wrapper_footer_form form input[type='password']:focus,
#hs_cos_wrapper_footer_form form input[type='tel']:focus,
#hs_cos_wrapper_footer_form form input[type='number']:focus,
#hs_cos_wrapper_footer_form form input[type='file']:focus,
#hs_cos_wrapper_footer_form form input[type='date']:focus,
#hs_cos_wrapper_footer_form form select:focus,
#hs_cos_wrapper_footer_form form textarea:focus {
  border-color: #ffffff;
}

#hs_cos_wrapper_footer_form form .hs-button,
#hs_cos_wrapper_footer_form form input[type='submit'] {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 15 11'%3E%3Cpath fill='%23fff' d='M.227 5h14v1h-14z'/%3E%3Cpath fill='%23fff' d='m9.117 9.742 4.95-4.95.707.708-4.95 4.95z'/%3E%3Cpath fill='%23fff' d='m14.067 6.207-4.95-4.95.707-.707 4.95 4.95z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px 11px;
  border-color: #ffffff;
  border-width: 1px;
  color: #ffffff;
  font-size: 0;
  height: 45px;
  margin-top: 0;
  min-width: auto;
  padding: 0;
  position: relative;
  width: 153px;
  z-index: 1;
}

#hs_cos_wrapper_footer_form form .hs-button:hover,
#hs_cos_wrapper_footer_form form .hs-button:focus,
#hs_cos_wrapper_footer_form form input[type='submit']:hover,
#hs_cos_wrapper_footer_form form input[type='submit']:focus {
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 15 11'%3E%3Cpath fill='%230C2340' d='M.227 5h14v1h-14z'/%3E%3Cpath fill='%230C2340' d='m9.117 9.742 4.95-4.95.707.708-4.95 4.95z'/%3E%3Cpath fill='%230C2340' d='m14.067 6.207-4.95-4.95.707-.707 4.95 4.95z'/%3E%3C/svg%3E");
  border-color: #ffffff;
  color: #0c2340;
}

#hs_cos_wrapper_footer_form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ffffff;
  font-size: 14px;
  line-height: 107.1429%;
  opacity: 1;
  text-transform: uppercase;
}

#hs_cos_wrapper_footer_form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff;
  font-size: 14px;
  line-height: 107.1429%;
  opacity: 1;
  text-transform: uppercase;
}

#hs_cos_wrapper_footer_form :-moz-placeholder {
  /* Firefox 18- */
  color: #ffffff;
  font-size: 14px;
  line-height: 107.1429%;
  opacity: 1;
  text-transform: uppercase;
}

#hs_cos_wrapper_footer_form ::placeholder {
  color: #ffffff;
  font-size: 14px;
  line-height: 107.1429%;
  opacity: 1;
  text-transform: uppercase;
}

#hs_cos_wrapper_footer_form .hs-form-field {
  position: relative;
  margin-bottom: 0;
  margin-right: -0.5px;
}

#hs_cos_wrapper_footer_form .hs-form-field > label {
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin-bottom: 0;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

#hs_cos_wrapper_footer_form .hs_error_rollup {
  display: none;
}

#hs_cos_wrapper_footer_logos .grouped_custom_logos {
  margin-top: 34px;
}

#hs_cos_wrapper_footer_logos img[src*="LVX_Logo-white.png"] {
  max-height: 52px;
}

.main-footer--bottom {
  font-size: 14px;
  line-height: 107.1429%;
  padding: 20px 0 21px;
}

.main-footer--bottom .address,
.main-footer--bottom .reference {
  margin-bottom: 0;
}

#hs_cos_wrapper_footer_links_tertiary .hs-menu-wrapper ul {
  gap: 10px 6.6%;
}

.main-footer--bottom .reference {
  text-align: right;
}

.main-footer--bottom-stack > .content-wrapper {
  display: flex;
  justify-content: space-between;
}

.main-footer--bottom-stack > .content-wrapper:nth-child(1) {
  align-items: center;
  padding-bottom: 12px;
  padding-top: 12px;
}

.main-footer--bottom-stack > .content-wrapper:nth-child(2) {
  align-items: flex-end;
  border-top: 0.25px solid #FFFFFF;
  padding-bottom: 12px;
  padding-top: 12px;
}

.method-footer-logo {
  flex: 0 1 30px;
}

.method-footer-logo svg {
  display: block;
}

.main-footer--bottom-stack #hs_cos_wrapper_footer_address {
  font-size: 14px;
  line-height: 110%;
  margin-bottom: 0;
  padding-right: 19px;
}

#hs_cos_wrapper_footer_social .social-links__link {
  color: #0c2340;
}

#hs_cos_wrapper_footer_social .social-links__link:hover,
#hs_cos_wrapper_footer_social .social-links__link:focus {
  color: #fff;
}

#hs_cos_wrapper_footer_social .social-links__icon {
  background-color: #fff;
  border: 1px solid #fff;
  height: 38px;
  width: 38px;
}

#hs_cos_wrapper_footer_social .social-links__link:hover .social-links__icon,
#hs_cos_wrapper_footer_social .social-links__link:focus .social-links__icon {
  background-color: transparent;
}

#hs_cos_wrapper_footer_social .social-links__icon svg {
  height: 20px;
}

.main-footer--bottom-stack .reference {
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 120%;
  text-align: right;
}

@media (min-width: 768px) {
  .main-footer--top > .content-wrapper {
    display: grid;
    gap: 20px 1px;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
  }

  .main-footer--top > .content-wrapper::before,
  .main-footer--top > .content-wrapper::after {
    grid-column: span 2;
  }

  .main-footer--links {
    padding-right: 20px;
  }

  .main-footer--links::before {
    background-color: #ffffff;
    content: '';
    display: block;
    height: 100%;
    left: 50%;
    opacity: 0.2;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 1px;
  }

  .main-footer--form {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    padding-left: 20px;
  }

  #hs_cos_wrapper_footer_form {
    margin-top: auto;
  }
}

@media (min-width: 1025px) {
  .main-footer--bottom .content-wrapper {
    align-items: end;
    display: grid;
    grid-template-columns: 50% 1fr auto;
  }

  #hs_cos_wrapper_footer_links_tertiary {
    padding-right: 6.188%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .main-footer--bottom .content-wrapper {
    align-items: flex-end;
    display: flex;
    gap: 20px;
    justify-content: space-between;
  }

  #hs_cos_wrapper_footer_links_tertiary {
    flex: 0 1 39.421%;
  }

  #hs_cos_wrapper_footer_links_tertiary .hs-menu-wrapper ul {
    gap: 10px 20px;
    justify-content: space-between;
  }
}
/* Logo */

.hs_cos_wrapper_type_logo,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_logo a {
  display: inline-block;
  vertical-align: top;
}

/* 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 ul {
  flex-direction: row;
}

/* 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,
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:focus-within>.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,
.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:focus-within>.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%;
}

/* Images */

.hs_cos_wrapper_type_linked_image,
.hs-image-widget {
  display: inline-block;
  vertical-align: top;
}

/* Page Header */

#hs_cos_wrapper_page_header {
  padding-bottom: 40px;
  padding-top: 95px;
  text-align: center;
}

#hs_cos_wrapper_page_header h1,
#hs_cos_wrapper_page_header h2,
#hs_cos_wrapper_page_header h3,
#hs_cos_wrapper_page_header h4,
#hs_cos_wrapper_page_header h5,
#hs_cos_wrapper_page_header h6 {
  font-size: 90px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 90%;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-right: 46px;
  }

  .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 17px;
    width: 12px;
  }

  .hs-dateinput:before {
    right: 15px;
  }

  .hs-dateinput input.hs-input {
    padding-right: 46px;
  }

  form input[type='submit'],
  form .hs-button {
    min-width: 196px;
  }

  .header-container {
    padding-bottom: 19px;
    padding-top: 19px;
  }

  .header-navigation {
    gap: 12px;
  }

  #hs_cos_wrapper_header_links {
    display: none;
  }

  /* div[data-global-resource-path*='header-insider.html'] #hs_cos_wrapper_header_links {
    display: none;
  } */

  #hs_cos_wrapper_header_logo {
    max-width: 49.15px;
  }

  .popup-navigation--close {
    left: auto;
    right: 40.57px;
  }

  /* div[data-global-resource-path*='header-insider.html'] .popup-navigation--close {
    left: auto;
    right: 40.57px;
  } */

  .popup-navigation--contents {
    flex: 1;
    padding: 140px 40px 40px;
  }

  /* div[data-global-resource-path*='header-insider.html'] .popup-navigation--contents {
    flex: 1;
  } */

  #hs_cos_wrapper_popup_navigation_image {
    display: none;
  }

  #hs_cos_wrapper_popup_navigation_insider {
    flex: 0 1 100%;
    margin-top: 10px;
  }

  #hs_cos_wrapper_popup_navigation_insider::before {
    bottom: auto;
    height: 1px;
    left: 40px;
    right: 40px;
    top: 0;
    width: auto;
  }

  #hs_cos_wrapper_popup_navigation_insider .insider-form {
    padding-bottom: 0;
  }

  #hs_cos_wrapper_popup_navigation_insider .insider-form-bg {
    opacity: 0;
  }

  .popup-navigation--footer.hide-on-desktop {
    padding: 35px 40px 45px;
  }

  .main-footer--links {
    gap: 50px 20px;
    grid-template-columns: 39.842% 1fr auto;
  }

  #hs_cos_wrapper_footer_links_primary_l,
  #hs_cos_wrapper_footer_links_primary_r {
    font-size: 24px;
    /* 20px to 24px */
    font-size: clamp(1.1765rem, 2.76vw + 0.0588rem, 1.4118rem);
    letter-spacing: normal;
    line-height: 108.3333%;
  }

  #hs_cos_wrapper_footer_links_primary_l .hs-menu-wrapper ul,
  #hs_cos_wrapper_footer_links_primary_r .hs-menu-wrapper ul {
    gap: 12px;
  }

  #hs_cos_wrapper_footer_links_secondary_l,
  #hs_cos_wrapper_footer_links_secondary_r {
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
  }

  #hs_cos_wrapper_footer_logo_extra {
    max-width: 96px;
  }

  #hs_cos_wrapper_footer_form_header h1,
  #hs_cos_wrapper_footer_form_header h2,
  #hs_cos_wrapper_footer_form_header h3,
  #hs_cos_wrapper_footer_form_header h4,
  #hs_cos_wrapper_footer_form_header h5,
  #hs_cos_wrapper_footer_form_header h6 {
    font-size: 20px;
    letter-spacing: -0.02em;
    line-height: 110%;
    max-width: 250px;
  }

  #hs_cos_wrapper_footer_form form .hs-button,
  #hs_cos_wrapper_footer_form form input[type='submit'] {
    width: 172px;
  }

  .main-footer--bottom {
    padding: 20px 0;
  }

  #hs_cos_wrapper_page_header {
    padding-bottom: 20px;
    padding-top: 80px;
  }

  #hs_cos_wrapper_page_header h1,
  #hs_cos_wrapper_page_header h2,
  #hs_cos_wrapper_page_header h3,
  #hs_cos_wrapper_page_header h4,
  #hs_cos_wrapper_page_header h5,
  #hs_cos_wrapper_page_header h6 {
    font-size: 72px;
  }

  #hs_cos_wrapper_footer_logos .grouped_custom_logos {
    margin-top: 22px;
  }

  #hs_cos_wrapper_footer_logos img[src*='LVX_Logo-white.png'] {
    max-height: 39px;
  }
}
@media (max-width: 767px) {
  form textarea {
    height: 203px;
  }

  .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-right: 40px;
  }

  .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 14px;
  }

  .hs-dateinput:before {
    right: 12px;
  }

  .hs-dateinput input.hs-input {
    padding-right: 40px;
  }

  .header-container {
    /* grid-template-columns: auto 1fr; */
    grid-template-columns: 1fr auto 1fr;
    padding-bottom: 24.89px;
    padding-top: 25.02px;
  }

  /* div[data-global-resource-path*='header-insider.html'] .header-container {
    grid-template-columns: 1fr auto 1fr;
  } */

  #hs_cos_wrapper_header_logo {
    max-width: 65.15px;
  }

  #hs_cos_wrapper_header_links {
    display: none;
  }

  #hs_cos_wrapper_header_buttons {
    bottom: 0;
    left: 0;
    position: fixed;
    width: 100%;
  }

  #hs_cos_wrapper_header_buttons .grouped-buttons {
    flex-flow: column wrap;
    gap: 0;
  }

  #hs_cos_wrapper_header_buttons .button {
    background-image: none;
    padding: 15px;
  }

  #hs_cos_wrapper_header_buttons .button:hover,
  #hs_cos_wrapper_header_buttons .button:focus {
    background-color: #ffffff;
    border-color: #bb8459;
    color: #bb8459;
  }

  .popup-navigation--close {
    right: 30.15px;
    top: 30.08px;
  }

  /* div[data-global-resource-path*='header-insider.html'] .popup-navigation--close {
    right: 30.15px;
  } */

  .popup-navigation--contents {
    gap: 40px;
    padding: 77px 30px 36px;
  }

  /* div[data-global-resource-path*='header-insider.html'] .popup-navigation--contents {
    padding-left: 30px;
  } */

  .popup-navigation--footer {
    gap: 20px;
  }

  .popup-navigation--footer .copyright {
    display: block;
  }

  .popup-navigation--footer .reference {
    font-size: 10px;
    line-height: 110%;
  }

  #hs_cos_wrapper_popup_navigation_secondary {
    align-self: end;
    order: 1;
    text-align: right;
  }

  #hs_cos_wrapper_popup_navigation_secondary .hs-menu-wrapper ul {
    flex-flow: column wrap;
  }

  #hs_cos_wrapper_popup_navigation_insider::before {
    left: 30px;
    right: 30px;
  }

  .popup-navigation--footer.hide-on-desktop {
    padding: 50px 30px 31px;
  }

  .popup-navigation-interim > .content-wrapper {
    padding: 171px 20px;
  }

  .main-footer--top > .content-wrapper:before {
    margin-bottom: 20px;
  }

  .main-footer--top > .content-wrapper:after {
    margin-top: 38px;
  }

  .main-footer--links {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    gap: 70px 20px;
    grid-template-columns: 44.049% 1fr auto;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  #hs_cos_wrapper_footer_links_primary_l,
  #hs_cos_wrapper_footer_links_primary_r {
    font-size: 20px;
    font-weight: 300;
    line-height: 110%;
  }

  #hs_cos_wrapper_footer_links_secondary_l,
  #hs_cos_wrapper_footer_links_secondary_r {
    align-self: start;
  }

  #hs_cos_wrapper_footer_logo_extra {
    align-self: start;
    max-width: 83px;
  }

  #hs_cos_wrapper_footer_form form input[type='text'],
  #hs_cos_wrapper_footer_form form input[type='email'],
  #hs_cos_wrapper_footer_form form input[type='password'],
  #hs_cos_wrapper_footer_form form input[type='tel'],
  #hs_cos_wrapper_footer_form form input[type='number'],
  #hs_cos_wrapper_footer_form form input[type='file'],
  #hs_cos_wrapper_footer_form form input[type='date'],
  #hs_cos_wrapper_footer_form form select,
  #hs_cos_wrapper_footer_form form textarea {
    border-color: #ffffff;
    min-height: 55px;
    padding: 19px 16px;
  }

  #hs_cos_wrapper_footer_form form .hs-button,
  #hs_cos_wrapper_footer_form form input[type='submit'] {
    height: 55px;
    width: 107px;
  }

  #hs_cos_wrapper_footer_logos .grouped_custom_logos {
    margin-top: 57px;
    padding-inline: 7px;
  }

  #hs_cos_wrapper_footer_logos img[src*='LVX_Logo-white.png'] {
    max-height: 39px;
  }

  .main-footer--bottom {
    padding: 20px 0 65px;
  }

  .main-footer--bottom .content-wrapper {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr auto;
    grid-template-areas:
      'footerCopy footerBtmLinks'
      'footerReference footerBtmLinks';
  }

  #hs_cos_wrapper_footer_links_tertiary {
    grid-area: footerBtmLinks;
  }

  #hs_cos_wrapper_footer_links_tertiary .hs-menu-wrapper ul {
    align-items: end;
    flex-direction: column;
    gap: 12px;
    justify-content: space-between;
  }

  .main-footer--bottom .reference {
    font-size: 10px;
    line-height: 110%;
    text-align: left;
  }

  .main-footer--bottom-stack > .content-wrapper:nth-child(1) {
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 20px;
    padding-top: 20px;
  }

  .main-footer--bottom-stack > .content-wrapper:nth-child(2) {
    padding-bottom: 55px;
    padding-top: 12px;
  }

  .main-footer--bottom-stack #hs_cos_wrapper_footer_address {
    padding-bottom: 19px;
    padding-right: 0;
    text-align: center;
    width: 100%;
  }

  #hs_cos_wrapper_page_header {
    align-items: center;
    display: flex;
    justify-content: center;
    padding-bottom: 63px;
    padding-top: 4px;
  }

  #hs_cos_wrapper_page_header h1,
  #hs_cos_wrapper_page_header h2,
  #hs_cos_wrapper_page_header h3,
  #hs_cos_wrapper_page_header h4,
  #hs_cos_wrapper_page_header h5,
  #hs_cos_wrapper_page_header h6 {
    font-size: 45px;
  }
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be hidden on mobile */

@media (max-width: 767px) {
  .hide-on-mobile {
    display: none !important;
  }
}

/* For content that needs to be hidden on tablet */

@media (min-width: 768px) and (max-width: 1024px) {
  .hide-on-tablet {
    display: none !important;
  }
}

/* For content that needs to be hidden on desktop */

@media (min-width: 1025px) {
  .hide-on-desktop {
    display: none !important;
  }
}

/* For content that needs to be on hidden on tablet and mobile */

@media (max-width: 1024px) {
  .only-desktop {
    display: none !important;
  }
}

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