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

.open-sans-<uniquifier> {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}


/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
  font-family: "Open Sans", sans-serif;
}
body.header-fixed {
  padding-top: 122px;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

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

/* Paragraphs */

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

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
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;
}


.btn {
  border-radius: 8px;
  display: flex;
  padding: 15px 24px;
  border: 2px solid transparent;
  justify-content: center;
  align-items: center;
  gap: 10px;
/*   transition: all 0.15s linear; */
  transition: all .0s ease-in-out;
  color: #28222C;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 16px */
  text-decoration: none;
  place-self: flex-start;
  min-height: 50px;
}
.btn:hover,
.btn:focus,
.btn:active {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 23px;
  border: 3px solid transparent;
}
.btn.primary {
  background: #15EFE1;
}
.btn.primary:hover,
.btn.primary:focus,
.btn.primary:active {
  background: #F4EFF8;
  color: #006D8C;
}

.btn.secondary {
  background: transparent;
  color: #5E0E97;
  border: 2px solid #5E0E97;
}
.btn.secondary:hover,
.btn.secondary:focus,
.btn.secondary:active {
  color: #340058;
  border: 3px solid #340058;
}

.btn.purple {
  background: #5E0E97;
  color: #F4EFF8;
/*   border: none; */
}
.btn.purple:hover,
.btn.purple:focus,
.btn.purple:active {
  background: #340058;
  color: #F4EFF8;
}

.btn.offblack {
  background: #28222C;
  color: #F4EFF8;
/*   border: none; */
}
.btn.offblack:hover,
.btn.offblack:focus,
.btn.offblack:active {
  background: #340058;
  color: #F4EFF8;
}

.btn.light-purple {
  background: #CA80FF;
  color: #28222C;
/*   border: none; */
}
.btn.light-purple:hover,
.btn.light-purple:focus,
.btn.light-purple:active {
  background: #E4DAEB;
  color: #28222C;
}

.btn.deep-aqua {
  background: #006D8C;
  color: #FBF6FF;
/*   border: none; */
}
.btn.deep-aqua:hover,
.btn.deep-aqua:focus,
.btn.deep-aqua:active {
  color: #E4DAEB;
  background: #49454C;
}


/* Bordered Buttons */
.btn.offblack_border {
  background: transparent;
  color: #28222C;
  border: 2px solid #28222C;
}
.btn.offblack_border:hover,
.btn.offblack_border:focus,
.btn.offblack_border:active {
  color: #340058;
  border: 3px solid #340058;
}

.btn.light-purple_border {
  background: transparent;
  color: #CA80FF;
  border: 2px solid #CA80FF;
}
.btn.light-purple_border:hover,
.btn.light-purple_border:focus,
.btn.light-purple_border:active {
  color: #E4DAEB;
  border: 3px solid #E4DAEB;
}

.btn.aqua_border {
  background: transparent;
  color: #15EFE1;
  border: 2px solid #15EFE1;
}
.btn.aqua_border:hover,
.btn.aqua_border:focus,
.btn.aqua_border:active {
  color: #F4EFF8;
  border: 3px solid #F4EFF8;
}

.btn.deep-aqua_border {
  background: transparent;
  color: #006D8C;
  border: 2px solid #006D8C;
}
.btn.deep-aqua_border:hover,
.btn.deep-aqua_border:focus,
.btn.deep-aqua_border:active {
  color: #49454C;
  border: 3px solid #49454C;
}

/* Text Link Icon Buttons */
.text-link_icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 16px */
  text-decoration: none;
}
.text-link_icon:hover,
.text-link_icon:focus,
.text-link_icon:active {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-decoration: none;
}
.text-link_icon span.link-icon {
  transition: transform 0.3s ease;
}
.text-link_icon:hover span.link-icon,
.text-link_icon:focus span.link-icon,
.text-link_icon:active span.link-icon {
  transform: translateX(6px);
}

/* Purple Link Icon */
.purple--link_icon {
  color: #5E0E97;
}
.purple--link_icon:hover,
.purple--link_icon:focus,
.purple--link_icon:active {
  color: #340058;
}
.purple--link_icon span.link-icon svg path {
  fill: #5E0E97;
}
.purple--link_icon:hover span.link-icon svg path,
.purple--link_icon:focus span.link-icon svg path,
.purple--link_icon:active span.link-icon svg path {
  fill: #340058;
}
/* END Purple Link Icon */

/* Off Black Link Icon */
.offblack--link_icon {
  color: #28222C;
}
.offblack--link_icon:hover,
.offblack--link_icon:focus,
.offblack--link_icon:active {
  color: #340058;
}
.offblack--link_icon span.link-icon svg path {
  fill: #28222C;
}
.offblack--link_icon:hover span.link-icon svg path,
.offblack--link_icon:focus span.link-icon svg path,
.offblack--link_icon:active span.link-icon svg path {
  fill: #340058;
}
/* END Off Black Link Icon */

/* Light Purple Link Icon */
.light-purple--link_icon {
  color: #CA80FF;
}
.light-purple--link_icon:hover,
.light-purple--link_icon:focus,
.light-purple--link_icon:active {
  color: #E4DAEB;
}
.light-purple--link_icon span.link-icon svg path {
  fill: #CA80FF;
}
.light-purple--link_icon:hover span.link-icon svg path,
.light-purple--link_icon:focus span.link-icon svg path,
.light-purple--link_icon:active span.link-icon svg path {
  fill: #E4DAEB;
}
/* END Light Purple Link Icon */

/* Aqua Link Icon */
.aqua--link_icon {
  color: #15EFE1;
}
.aqua--link_icon:hover,
.aqua--link_icon:focus,
.aqua--link_icon:active {
  color: #F4EFF8;
}
.aqua--link_icon span.link-icon svg path {
  fill: #15EFE1;
}
.aqua--link_icon:hover span.link-icon svg path,
.aqua--link_icon:focus span.link-icon svg path,
.aqua--link_icon:active span.link-icon svg path {
  fill: #F4EFF8;
}
/* END Aqua Link Icon */

/* Deep Aqua Link Icon */
.deep-aqua--link_icon {
  color: #006D8C;
}
.deep-aqua--link_icon:hover,
.deep-aqua--link_icon:focus,
.deep-aqua--link_icon:active {
  color: #49454C;
}
.deep-aqua--link_icon span.link-icon svg path {
  fill: #006D8C;
}
.deep-aqua--link_icon:hover span.link-icon svg path,
.deep-aqua--link_icon:focus span.link-icon svg path,
.deep-aqua--link_icon:active span.link-icon svg path {
  fill: #49454C;
}
/* END Deep Aqua Link Icon */
/* Fields */

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

form {
  background: transparent;
}

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


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

footer.footer {
  background-color: #FBF6FF;
  font-family: "Open Sans", sans-serif;
}
.footer__container {
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 0 20px;
}
.footer__container a {
/*   transition: all 0.15s linear; */
}
.footer__container ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.footer__container .row {
  display: flex;
  flex-wrap: nowrap;
  gap: 120px;
}

/* First row full-width */
.footer__container .row.top .col.full-width {
  flex: 1 1 100%;
}

/* Second row with 4 equal columns */
.footer__container .row.middle .col {
  flex: 1 1 calc(25% - 7.5px); /* 25% minus half of the 10px gap */
}
.footer__container .row.middle .col.ctas ul > li,
.footer__container .row.middle .col.solution ul > li,
.footer__container .row.middle .col.footer-menu ul > li  {
  margin-bottom: 16px;
}
.footer__container .row.middle .col.footer-menu ul > li:nth-child(2),
.footer__container .row.middle .col.footer-menu ul > li:nth-child(5){
  margin-bottom: 40px;
}
.footer__container .row.middle .col.ctas ul > li:last-child,
.footer__container .row.middle .col.solution ul > li:last-child,
.footer__container .row.middle .col.footer-menu ul > li:last-child {
  margin-bottom: 0px;
}
.footer__container .row.middle .col.solution ul > li a {
  color: #5E0E97;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}
.footer__container .row.middle .col.solution ul > li a:hover {
  color: #340058;
}

.footer__container .row.middle .col.footer-menu ul {
  display: flex;
  flex-direction: column;
}
.footer__container .row.middle .col.footer-menu ul > li:first-child a,
.footer__container .row.middle .col.footer-menu ul > li:nth-child(2) a {
  color: #28222C;
}
.footer__container .row.middle .col.footer-menu ul > li a {
  color: #49454C;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}
.footer__container .row.middle .col.footer-menu ul > li a:hover {
  color: #340058;
}


.footer__container .row.middle .col h6 {
  color: #CA80FF;
  font-style: normal;
  margin-bottom: 16px;
}

/* Third row full-width */
.footer__container .row.bottom {
  margin-top: 50px;
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid #E4DAEB;
}
.footer__container .row.bottom .col.full-width {
  flex: 1 1 100%;
  text-align: center;
}
.footer__container .row.bottom .col.legal ul {
  display: inline-flex;
  align-items: flex-start;
  gap: 64px;
}
.footer__container .row.bottom .col.legal ul > li a {
  color: #49454C;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-decoration: none;
}
.footer__container .row.bottom .col.legal ul > li a:hover {
  color: #006D8C;
}

@media (max-width: 1399px) {
  .footer__container .row {
    gap: 24px;
  }
}
@media (max-width: 991px) {
  .footer__container .row {
    flex-direction: column;
  }
  .footer__container .row {
    gap: 40px;
  }
  .footer__container .row.bottom .col.legal ul {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .footer__container .row.middle .col ul > li a {
    font-size: 24px !important;
  }
  .footer__container .row.middle .col.footer-menu ul > li a {
    text-transform: capitalize;
  }
  .footer__container .row.bottom .col.full-width {
    text-align: left;
  }
  .footer__container .row.bottom .col.legal ul {
    gap: 8px;
    display: flex;
    flex-direction: column;
  }
  .footer__container .row.bottom .col.legal ul > li a {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }
}
/* Header DND sections */

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

/* Header container */

main {
/*   padding-top: 4.5rem; */
/*   padding-top: 124px; */
  overflow: hidden;
}

@media (max-width: 1000px) {
  main {
/*     padding-top: 3.125rem; */
    padding-top: 3.125rem;
  }
}

header.header {
  position: relative;
  z-index: 9999;
  transition: all 0.30s linear;
}

.header.fixed {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 650;
  transition: all 0.30s linear;
}
.header.fixed .header__top {
  display: none;
  transition: all 0.30s linear;
}
.header__top {
  display: flex;
  padding: 8px 48px;
  background: #E4DAEB;
  transition: all 0.30s linear;
}
.header__top-wrapper {
  max-width: 1440px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  gap: 24px;
}
.header__top-wrapper .header__search {
  margin-right: 0px;
}
.header__top-wrapper .header__search form {
  background-color: transparent;
}

.header__logo {
  flex: none;
  margin-right: 95px;
}

@media (max-width: 1225px) {
  .header__logo {
    margin-right: 0;
  }
}

.header__container {
  display: flex;
  align-items: center;
/*   height: 4.5rem; */
  padding: 0 1.25rem;
  position: relative;
  padding: 12px 15px;
}

.header__container.light {
  justify-content:space-between;
}


.header__column {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  width: 100%;
}
.header__cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__column .hs-menu-item {
  margin-bottom: 0;
}

.header__column ul li.hs-menu-item:not(:last-child) {
  margin-right: 12px;
  padding-right: 12px;
  border-right: 1px solid #D9D9D9;
}

.header__column .hs-menu-item > a {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  text-decoration: underline;
  transition: all 0.2s ease-out;
}

.header__column .hs-menu-item > a:hover {
  text-decoration: none;
  transition: all 0.2s ease-in;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__column {
    position: relative;
  }
}

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

/* Search bar */

.header__search {
  display: flex;
  align-items: center;
  margin-right: 23px;
  position: relative;
}

.header__search .header--cta-links {
  position: absolute; 
  width: auto;
  right: 39px;
}

.header__search.open .header--cta-links {
  visibility: hidden;
}

.header__search .header--cta-links ul {
  width: max-content;
}

.header__search .hs-search-field {
  margin-left: 23px;
}

.header__search .hs-search-field__input {
  border-radius: 8px;
  border: none;
  align-items: center;
  gap: 10px;
  opacity: 0;
  width: 0;
  height: 44px; 
  padding: 12px 47px;
  position: relative;
  right: -10px;
  color: #000;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7; /* 27.2px */
  transition: opacity .25s ease, width .6s ease;
  visibility: collapse;
  display: none;
}

.header__search .search-close-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='24' viewBox='0 0 25 24' fill='none'%3E%3Cpath d='M6.60742 17.5441L17.6974 6.4541' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3Cpath d='M17.6974 17.5441L6.60742 6.4541' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 25px 24px;
  display: none; /* Hide close icon by default */  
}

.header__search .search-open-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none'%3E%3Cg clip-path='url(%23clip0_1092_15632)'%3E%3Cpath d='M2.64882 11.5302C3.01614 12.3945 3.5501 13.178 4.22021 13.8359C4.89033 14.4939 5.68347 15.0134 6.55436 15.3648C7.42525 15.7162 8.35683 15.8927 9.29591 15.8841C10.235 15.8755 11.1632 15.682 12.0275 15.3147C12.8918 14.9473 13.6753 14.4134 14.3332 13.7433C14.9912 13.0731 15.5107 12.28 15.8621 11.4091C16.2135 10.5382 16.39 9.60664 16.3814 8.66756C16.3728 7.72848 16.1793 6.80029 15.8119 5.93598C15.4446 5.07168 14.9107 4.28818 14.2406 3.63024C13.5704 2.97229 12.7773 2.45277 11.9064 2.10135C11.0355 1.74993 10.1039 1.57348 9.16485 1.58209C8.22577 1.59069 7.29758 1.78418 6.43328 2.1515C5.56897 2.51882 4.78548 3.05278 4.12754 3.7229C3.46959 4.39301 2.95008 5.18616 2.59866 6.05705C2.24724 6.92794 2.07079 7.85952 2.0794 8.7986C2.08801 9.73768 2.2815 10.6659 2.64882 11.5302Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.2866 13.7893L19.8329 19.3364' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1092_15632'%3E%3Crect width='20' height='20' fill='white' transform='translate(0.956055 0.459473)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 20px;
  height: 20px;
  width: 20px;
  display: block;
  position: relative;
  cursor: pointer;
  border: 0;
  margin: 0;
}

.header__search .hs-search-field__form .hs-search-field__button {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none'%3E%3Cg clip-path='url(%23clip0_1092_15632)'%3E%3Cpath d='M2.64882 11.5302C3.01614 12.3945 3.5501 13.178 4.22021 13.8359C4.89033 14.4939 5.68347 15.0134 6.55436 15.3648C7.42525 15.7162 8.35683 15.8927 9.29591 15.8841C10.235 15.8755 11.1632 15.682 12.0275 15.3147C12.8918 14.9473 13.6753 14.4134 14.3332 13.7433C14.9912 13.0731 15.5107 12.28 15.8621 11.4091C16.2135 10.5382 16.39 9.60664 16.3814 8.66756C16.3728 7.72848 16.1793 6.80029 15.8119 5.93598C15.4446 5.07168 14.9107 4.28818 14.2406 3.63024C13.5704 2.97229 12.7773 2.45277 11.9064 2.10135C11.0355 1.74993 10.1039 1.57348 9.16485 1.58209C8.22577 1.59069 7.29758 1.78418 6.43328 2.1515C5.56897 2.51882 4.78548 3.05278 4.12754 3.7229C3.46959 4.39301 2.95008 5.18616 2.59866 6.05705C2.24724 6.92794 2.07079 7.85952 2.0794 8.7986C2.08801 9.73768 2.2815 10.6659 2.64882 11.5302Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.2866 13.7893L19.8329 19.3364' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1092_15632'%3E%3Crect width='20' height='20' fill='white' transform='translate(0.956055 0.459473)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 20px;
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
  cursor: pointer;
  border: 0;
  margin: 0;
  display: none; /* Hide close icon by default */  
}

.header__search.open .search-open-icon {
  display: none;
}

.header__search.open .hs-search-field__input {
  display: flex;
  background: #F4F2F7;  
  width: 331px;
  visibility: visible;
  opacity: 1;
  transition: opacity .25s ease, width .6s ease;  
}

.header__search.open .search-close-icon {
  display: block;
  width: 32px;
  height: 44px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -7px;
  cursor: pointer;
  border: 0;
  margin: 0;
}

.header__search.open .hs-search-field__button {
  display: block;
}

.header__search .hs-search-field--open .hs-search-field__input {
  max-width: 100%;
}

.header__search .hs-search-field__suggestions-container {
  display: none;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

.mobile-nav {
  display: none;
}

/* Mobile toggles */

@media (max-width: 1330px) {
  .header__logo {
    margin-right: 0;
  }
}
@media (max-width: 1190px) {
  main {
    padding-top: 82px;
/*     padding-top: 0px; */
  }
  header.header {
    padding: 12px 0px;
    background: #FBF6FF;
    position: fixed;
    width: 100%;
    z-index: 9999;
  }
  .header__top,
  .header__cta {
    display: none;
  }
  .header__container {
    height: 3.75rem;
  }
  
  .header__column {
    justify-content: end;
  }
  
  .header__navigation,
  .header__search {
    display: none;
    width: 100%;
  }

  .header__navigation.open {
    display: none;
  }
 
  .header__navigation--toggle {
    cursor: pointer;
    position: relative;
    margin-left: 13px;
  }
  
  .header__close--toggle {
    cursor: pointer;
    position: relative;
  }

  .header__navigation--toggle.hide {
    display: block;
  }
  
  .mobile-nav.open {
    background-color: #fff;
    display: flex;
    top: 73px;
    position: absolute;
    flex-direction: column;
    left: 0;
    right: 0;
    height: calc(100vh - 46px);
    overflow: auto;  
    padding: 45px 16px;
  }

  .header__navigation--toggle.open {
    display: none;
    margin-left: 0;
    margin-right: auto;
  }
  
  .header__navigation--toggle {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Cpath d='M3.05566 18.0874H21.3369' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3Cpath d='M3.05566 12.4624H21.3369' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3Cpath d='M3.05566 6.8374H21.3369' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__close--toggle {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='24' viewBox='0 0 25 24' fill='none'%3E%3Cpath d='M6.60742 17.5441L17.6974 6.4541' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3Cpath d='M17.6974 17.5441L6.60742 6.4541' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
    margin-left: 13px;
  }
  
  .mobile-nav .mobile-links {
    padding-top: 36px;
    padding-left: 22px;
    padding-right: 22px;
    margin-bottom: 40px;
  }
  
  .mobile-nav .mobile-links ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 0;    
  }

  .mobile-nav .mobile-links a {
    color: #0C0320;
    font-size: 20px;
    font-weight: 300;
    line-height: 120%; /* 24px */
    letter-spacing: -0.3px;
    text-decoration: underline;
  }

  .mobile-nav .mobile-links a:hover {
    color: #0C0320;  
    text-decoration: none;
  }  
  
  .mobile-nav .mobile-search-input {
    border-bottom: 1px solid rgba(12, 3, 32, 0.25);      
    padding-left: 22px;
    padding-right: 22px;
    padding-bottom: 36px;
  }
  
  .mobile-nav .mobile-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding-top: 40px;
  }
  
  .mobile-search-input .hs-search-field__input {
    border-radius: 8px;
    border: 1px solid #F4F2F7;
    background: #F4F2F7;
    padding: 12px 17px;
    padding-left: 47px;
    color: #000;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7; /* 27.2px */
  }
  
  .mobile-search-input .hs-search-field__button {
    bottom: 0;
    left: 10px;
    position: absolute;
    top: 0;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none'%3E%3Cg clip-path='url(%23clip0_1092_15632)'%3E%3Cpath d='M2.64882 11.5302C3.01614 12.3945 3.5501 13.178 4.22021 13.8359C4.89033 14.4939 5.68347 15.0134 6.55436 15.3648C7.42525 15.7162 8.35683 15.8927 9.29591 15.8841C10.235 15.8755 11.1632 15.682 12.0275 15.3147C12.8918 14.9473 13.6753 14.4134 14.3332 13.7433C14.9912 13.0731 15.5107 12.28 15.8621 11.4091C16.2135 10.5382 16.39 9.60664 16.3814 8.66756C16.3728 7.72848 16.1793 6.80029 15.8119 5.93598C15.4446 5.07168 14.9107 4.28818 14.2406 3.63024C13.5704 2.97229 12.7773 2.45277 11.9064 2.10135C11.0355 1.74993 10.1039 1.57348 9.16485 1.58209C8.22577 1.59069 7.29758 1.78418 6.43328 2.1515C5.56897 2.51882 4.78548 3.05278 4.12754 3.7229C3.46959 4.39301 2.95008 5.18616 2.59866 6.05705C2.24724 6.92794 2.07079 7.85952 2.0794 8.7986C2.08801 9.73768 2.2815 10.6659 2.64882 11.5302Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.2866 13.7893L19.8329 19.3364' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1092_15632'%3E%3Crect width='20' height='20' fill='white' transform='translate(0.956055 0.459473)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    border: 0;
    cursor: pointer;
    margin: 0;
  }
  
  .mobile-search-input .hs-search-field__suggestions-container {
    display: none;
  }
  
}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

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

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

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}