/* 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));
    }
  
}
.full-width,
.custom-width,
.content-wrapper {
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}
.dnd-section .dnd-column {
  padding: 0 24px;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}

.dnd-section[class*="force-full-width-section"] {
  padding: 0;
}
.dnd-section[class*="force-full-width-section"] .dnd-column {
  padding: 0;
}
.text__large,
.text__large p, .text__large ul, .text__large ol {
  font-size: 22px;
}
.text__medium,
.text__medium p, .text__medium ul, .text__medium ol {
  font-size: 16px;
}
.text__small,
.text__small p , .text__small ul, .text__small ol {
  font-size: 14px;
}

.overflow-hidden{
  overflow: hidden;
}
.position-relative{
  position: relative;
}
.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 24px;
}

@media (max-width: 767px) {
  .full-width,
  .custom-width,
  .dnd-section .dnd-column,
  .content-wrapper {
    padding: 0 20px;
  }

}

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

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

body {
  line-height: normal;
  overflow-wrap: break-word;
}

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

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

/* Paragraphs */

p {
  margin: 0 0 20px;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 18px;
  line-height: normal;
}

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

.body-container-wrapper ul li:not(:last-child), .body-container-wrapper ol li:not(:last-child) {
  margin-bottom: 16px;
}

/* 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 {
  max-width: 100%;
  height: auto;
  word-break: normal;
}
.text-center .cta-wrapper {
  justify-content: center;
}
.text-right .cta-wrapper {
  justify-content: flex-end;
}
.text-left .cta-wrapper {
  justify-content: flex-start;
}
.btn.button--tertiary.icon-position-left a {
  flex-direction: row-reverse;
}
.btn.button--tertiary.icon-position-left a svg {
    transform: none !important;
}
.cta-wrapper>.btn>a {
  transition: all 0.3s ease;
  font-weight: 500;
  text-align: center;
  line-height: 1;
}
.cta-wrapper {
  display: flex;
  align-items: center;  
  gap: 32px;
  flex-wrap: wrap;
}

a.btn.btn__large {
  font-size: 20px;
}

a.btn.btn__small {
  font-size: 16px;
}
.btn.button--tertiary a {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn.button--tertiary a svg {
  transition: all 0.3s ease;
}
.btn.button--tertiary a:hover svg {
  transform: translateX(6px);
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  font-weight: 500;
  text-decoration: none;
}

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

.cta-wrapper {
  margin: 24px 0 0 0;
}
/* Fields */

.hs-form-field {
  margin-bottom: 12px;
}

/* Labels */

form label {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

/* 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: 18px;
  padding: 2px 12px;
  width: 100%;
  min-height: 44px;
  font-weight: 300;
  font-size: 16px;
}

form textarea {
  resize: vertical;
  min-height: 147px;
  width: 100% !important;
}

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_rollup label,
.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


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

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

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

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

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


.form-title:empty {
  display: none;
}
form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='5' viewBox='0 0 10 5' fill='none'%3E%3Cpath d='M5 5L0 0H10L5 5Z' fill='%2311111F'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  appearance: none;
  -webkit-appearance: none;
      width: 100% !important;
}
@media (max-width: 767px) {
  fieldset.form-columns-2 .hs-form-field {
    width: 100% !important;
  }
}

@media (max-width: 400px) {
  .form-columns-2 .hs-form-field .hs-input {
    width: 100% !important;
  }
}
/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

.header__container.content-wrapper {
  max-width: 1368px;
  padding-left: 0;
  padding-right: 0;
}
header.header {
  padding: 12px 36px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99;
}
.header_column {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  gap: 32px;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0px 16px 40px 0px #0000000D;
}
/* Navigation skipper */
.header__logo.header__logo--main img {
  display: block;
}
.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;
}
.header_column .cta-wrapper {
  margin: 0;
}
.header_column .cta-wrapper>.btn>a {
  font-size: 16px;
  padding: 12px 18px;
}



.mega-menu--desktop {
  display: block;
}

.mega-menu--mobile {
  display: none;
}

.mega-menu__list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.mega-menu__item {
  position: relative;
}

.mega-menu__link {
  align-items: center;
  display: inline-flex;
  gap: 3px;
  text-decoration: none;
  transition: color .2s ease;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
}

.mega-menu__arrow {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
  transition: transform 0.2s ease;
}

.mega-menu__arrow svg {
  display: block;
  height: 5px;
  width: 8px;
}


.mega-menu__panel::before {
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.mega-menu__submenu {
  margin: 0;
  padding: 0;
}

.mega-menu__sublink {
  display: block;
  padding: 12px;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease;
  font-size: 16px;
  font-weight: 500;
}

.mega-menu__item--open > .mega-menu__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}


.mega-menu__sublink:hover,
.mega-menu__item:hover>a {
  color: #0E3F8C;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .mega-menu__item--has-dropdown:hover > .mega-menu__panel,
  .mega-menu__item--has-dropdown:focus-within > .mega-menu__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }
}
@media (min-width: 1025px) {
  .header__menu.header__menu--mobile {
    display: none !important;
  }
  .mega-menu__submenu .cta-wrapper {
    display: none;
  }
  .mega-menu__toggle {
    display: none;
  }
  .mega-menu__panel {
    left: 0;
    min-width: 290px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    visibility: hidden;
    z-index: 100;
    background: #fff;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    padding: 12px;
  }
  #nav-icon {
    display: none;
  }
  .header__cta.header__cta--tablet {
    display: none;
  }
  .mega-menu__link--icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }  
  .mega-menu__item--has-dropdown:hover .mega-menu__link--icon svg path {
    fill: #0E3F8C;
  }
  .icon__mobile {
    display: none;
  }
  .mega-menu--desktop .mega-menu__item--has-dropdown:after {
    content: "";
    width: 100%;
    background: transparent;
    height: 30px;
    display: block;
    position: absolute;
  }

  .mega-menu__item--has-dropdown:hover > .mega-menu__panel,
  .mega-menu__item--has-dropdown:focus-within > .mega-menu__panel {
    -moz-box-shadow: 0px 16px 40px 0px rgb(0 0 0 / 5%);
    -webkit-box-shadow: 0px 16px 40px 0px rgb(0 0 0 / 5%);
    box-shadow: 0px 16px 40px 0px rgb(0 0 0 / 5%);
    margin: 15px 0 0 0;
  }
}

@media (max-width: 1200px) and (min-width: 1025px) {
  .mega-menu__list {
    gap: 24px;
  }
}

@media (max-width: 1024px) {
  .header__cta.header__cta--tablet .pp-cta__cta .cta-wrapper {
    justify-content: center;
  }
  .header__menu.header__menu--desktop {
    display: none !important;
  }
  .icon__mobile svg, button.mega-menu__toggle svg {
    width: 8px;
  }
  .mega-menu__link, .mega-menu__sublink {
    font-size: 18px;
    display: block;
  }
  .mega-menu__link--icon {
    display: none;
  }
  header.header {
    padding: 12px;
  }
  .mega-menu__submenu .btn.button--primary, 
  .mega-menu__submenu .cta-wrapper>.btn>a {
    width: 100%;
  }
  .mega-menu__panel {
    display: none;
  }
  button.mega-menu__toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  span.mega-menu__arrow {
    display: none;
  }
  .mega-menu__minus {
    display: none;
  }
  #nav-icon.open span {
    background: var(--white-color);
  }
  .header__cta.header__cta--desktop {
    display: none;
  }
  .header__menu {
    display: none;
  }
  .icon__mobile {
    width: 48px;
    height: 40px;
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    top: 0;
  }
  #nav-icon.open {
    background: var(--secondary-color);
  }

  #nav-icon {
    width: 36px;
    height: 36px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    border: none;
    padding: 8px;
    border-radius: 6px;
  }

  #nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 21px;
    background: var(--secondary-color);
    opacity: 1;
    left: 0;
    right: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    margin: 0 auto;
  }

  #nav-icon span:nth-child(1) {
    top: 8px;
  }

  #nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
    top: 16px;
  }
  #nav-icon span:nth-child(4) {
    top: 24px;
  }

  #nav-icon.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
  }

  #nav-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  #nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  #nav-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }

  .header__menu {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    height: 100vh;
    background: #fff;
    padding: 0;
    display: none;
    padding: 165px 20px 72px;
    z-index: -1;
    overflow-y: auto;
  }
  .mega-menu__list {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    align-items: flex-start;
  }
  .pp-cta__cta,
  nav.mega-menu.mega-menu--desktop {
    max-width: 575px;
    margin: 0 auto;
  }
  .pp-cta__cta {
    margin: 48px auto 0;
  }
  .mega-menu__item {
    width: 100%;
  }
  .header_column .cta-wrapper {
    justify-content: center;
    margin: 16px 0 0 0;
  }
  .mega-menu__sublink:hover, .mega-menu__item:hover>a{
    text-decoration: none; 
  }
  .mega-menu__toggle.no-button.child-open .mega-menu__minus {
    display: block;
  }
  .mega-menu__toggle.no-button.child-open .mega-menu__plus {
    display: none;
  }
  .mega-menu__link{
    padding: 8px 0;
  }
  .mega-menu__list {
    gap: 16px;
  }
  button.mega-menu__toggle svg  {
    width: 10px;
    height: auto;
  }
  .icon__mobile svg {
    width: 7px;
    height: auto;
  }

}

@media (max-width: 767px) {
  .header__menu {
    padding: 150px 20px 56px;
  }
}
.footer__container.content-wrapper {
  max-width: 1416px;
}
footer.footer .cta-wrapper>.btn>a {
  font-size: 16px;
  padding: 12px 18px;
}

footer.footer .cta-wrapper {
  margin: 0;
}
.footer__row {
  display: flex;
  gap: 36px;
  padding: 56px 0 48px;
}

.footer__logo {
  border-bottom: 1px solid #D3D2D2;
  padding-bottom: 20px;
  margin: 0 0 20px;
}

.footer__logo img {
  display: block;
}

.footer__copyright {
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
}

.footer__links ul li a {
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  display: block;
}

.footer__links ul {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

#footer-contact {
  font-size: 16px;
  font-weight: 400;
  line-height: 135%;
}

.footer-contact__heading {
  font-size: 18px;
  font-weight: 600;
}
.footer-contact__heading {
  margin: 0 0 16px;
}
.footer-contact__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}
.footer-contact__item {
  align-items: flex-start;
  display: flex;
  gap: 4px;
}
.footer-contact__icon {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
  margin-top: 0.125rem;
}
.footer-contact__svg {
  display: block;
  height: 20px;
  width: 20px;
}
.footer-contact__text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.footer-contact__address-line {
  display: block;
}

.footer-contact__link {
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__column1.footer__column {
  max-width: 324px;
  width: 100%;
}
.footer__column2.footer__column {
  flex: 1;
  max-width: 236px;
}
.footer__column3.footer__column {
  flex: 1;
}

.footer__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer__menu ul li a {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  display: block;
}
.footer__menu ul {
  display: flex;
  gap: 32px;
}
.footer-contact__link:hover,
.footer__menu ul li a:hover, 
.footer__links ul li a:hover {
  text-decoration: underline;
}
.footer__bottom--row {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid #D3D2D2;
  padding: 32px 0;
}
.footer__copyright p {
  margin: 0;
  opacity: 66%;
}
.footer-social__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}
.footer-social__link {
  display: block;
  line-height: 0;
  transition: opacity 0.2s ease;
}

.footer-social__link:hover,
.footer-social__link:focus {
  opacity: 0.75;
}

.footer-social__icon {
  display: block;
  height: auto;
  max-height: 40px;
  max-width: 40px;
  width: auto;
}
.footer-social__title {
  font-size: 18px;
  color: #918F8F;
  margin: 0 0 12px 0;
  font-weight: 600;
}

@media (min-width: 1025px) {
  .footer__contact--tablet {
    display: none;
  }
}

@media (max-width: 1024px) {
  .footer__row {
    flex-wrap: wrap;
  }
  .footer__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer__contact--desktop {
    display: none;
  }
  .footer__contact--tablet {
    margin: 36px 0 0 0;
  }

  .footer__menu {
    align-items: flex-start;
    height: 100%;
  }

  .footer__cta {
    margin-bottom: 0;
    margin-top: auto;
    width: 100%;
  }

  .footer__bottom--row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer.footer .cta-wrapper .btn.button--primary,
  footer.footer .cta-wrapper>.btn>a {
    width: 100%;
  }

  footer.footer .footer__menu ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .footer__row {
    grid-template-columns: 1fr;
  }

  footer.footer .footer__menu ul {
    grid-template-columns: 1fr;
  }

  .footer__column3.footer__column {
    order: 1;
  }

  .footer__column1.footer__column {
    order: 2;
  }
  .footer__bottom--row {
    flex-direction: column-reverse;
  }
  .footer__menu {
    justify-content: center;
  }

  .footer__row {
    gap: 72px;
  }
  .footer__links ul {
    align-items: center;
    gap: 24px;
  }
  .footer__menu ul li a {
    text-align: center;
  }
}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

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

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