/* Theme base styles */

:root {
    --primary-dark-blue: #003368;
    --primary-light-blue: #159DC8;
    --primary-dark-orange: #CD4A04;

    --secondary-light-blue: #3EB1C8;
    --secondary-sky-blue: #A4DBE8;
    --secondary-light-orange: #F99D2A;
    --secondary-green: #00BF6F;

    --neutrals-dark-grey: #54585A;
    --neutrals-light-grey: #D0D0CE;
    --neutrals-bg-grey: #F5F5F5;
    --neutrals-white: #FFFFFF;

    --system-error: #B30F0F;
    --system-success: #246407;
}

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

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

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

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

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

body {
  overflow-wrap: break-word;
}

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

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

/* Paragraphs */

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

/* Anchors */

a {
  cursor: pointer;
  text-decoration: none;
}

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

b,
strong {
  font-family: "DIN Bold";
}

@font-face {
  font-family: "DIN Light";
  src: url('https://44415401.fs1.hubspotusercontent-na1.net/hubfs/44415401/raw_assets/public/city-switcher/fonts/DIN-Light.ttf');
  font-weight: 300;
}

/* Fields */

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

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

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

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

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

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


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

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

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

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

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


/* Custom form styles */

.input {
  background-color: #fff;
  border: 1px solid  #54585A;
  width: 100%;
  position: relative;
}

.input input {
  padding: 18px;
  font-size: 16px;
  width: 100%;
  border: unset;
  background-color: unset;
  outline: none;
}

.input label {
  position: absolute;
  content: '';
  left: 10px;
  top: -10px;
  background-color: #fff;
  padding: 0px 4px;
  color: #54585A;
  text-wrap: nowrap;
  max-width: calc(100% - 10px);
  overflow: hidden;
  text-overflow: ellipsis;
}

.input:focus-within {
  border-color: #159DC8;
}

.input:focus-within:after {
  position: absolute;
  content: '';
  width: 100%;
  left: 0;
  bottom: 0;
  height: 3px;
  background-color: #159DC8;
}

.input input::placeholder {
  color: #979A9B;
}

.radio {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid #54585A;
  padding: 12.5px 12px;
  gap: 8px;
  cursor: pointer;
}
.radio span {
  font-size: 16px;
  color: #54585A;
  user-select: none;
}
.radio input {
  width: 20px;
  height: 20px;
  accent-color: #54585A;
  flex-shrink: 0;
}

.checkbox {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid #54585A;
  padding: 12.5px 12px;
  gap: 8px;
  cursor: pointer;
}
.checkbox .checkbox-ui-cont {
  width: 18px;
  height: 28px;
}
.checkbox path {
  fill: #54585A;
}
.checkbox span {
  font-size: 16px;
  color: #54585A;
  user-select: none;
}
.checkbox input {
  display: none;
}
.checkbox-checked {
  display: none;
}
.checkbox input:checked + div .checkbox-checked {
  display: block;
}
.checkbox input:checked + div .checkbox-unchecked {
  display: none;
}

.radio-card {
  max-width: 200px;
  width: 100%;
}
.radio-card__cont {
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 20px;
  box-shadow: 3px 5px 20px 0px rgba(0, 0, 0, 0.05);
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #54585A;
  height: 190px;
  user-select: none;
}
.radio-card input {
  display: none;
}

.radio-card input:checked + .radio-card__cont {
  background-color: #003368;
  color: white;
}

.radio-card__cont span {
  font-size: 16px;
  color: inherit;
  text-align: center;
  font-family: "DIN Medium";
  font-weight: 500;
}

.checkbox-card {
  max-width: 200px;
  width: 100%;
}
.checkbox-card__cont {
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 20px;
  box-shadow: 3px 5px 20px 0px rgba(0, 0, 0, 0.05);
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #54585A;
  height: 190px;
  user-select: none;
  position: relative;
}
.checkbox-card > input {
  display: none;
}

.checkbox-card input:checked + .checkbox-card__cont {
  background-color: #003368;
  color: white;
}

.checkbox-card__cont span {
  font-size: 16px;
  color: inherit;
  text-align: center;
  font-family: "DIN Medium";
  font-weight: 500;
}

.checkbox-card__checkbox {
  position: absolute;
  left: 20px;
  top: 20px;
}

.checkbox-card__checked {
  display: none;
}
.checkbox-card input:checked + .checkbox-card__cont .checkbox-card__checked {
  display: block;
}
.checkbox-card input:checked + .checkbox-card__cont .checkbox-card__unchecked {
  display: none;
}

.textarea {
  border: 1px solid #54585A;
  outline: none;
  color: #54585A;
  font-family: "DIN Regular";
  font-size: 16px;
  width: 100%;
  padding: 10px;
}
.textarea::placeholder {
  color: #54585A;
}

@media screen and (max-width: 600px) {
  .input input {
    padding: 14px;
    font-size: 14px;
  }
  
  .radio {
    padding: 10px 12px;
  }
  .radio span {
    font-size: 14px;
  }
  .radio input {
    width: 15px;
    height: 15px;
  }

  .checkbox {
    padding: 10px 12px;
  }
  .checkbox span {
    font-size: 14px;
  }
  .checkbox .checkbox-ui-cont {
    width: 14px;
    height: 24px;
  }
  .checkbox svg {
    width: 14px;
    height: 24px;
  }

  .radio-card, .checkbox-card {
    max-width: 170px;
  }
  .radio-card__cont, .checkbox-card__cont {
    padding: 15px;
    height: 160px;
  }
  .radio-card__cont span, .checkbox-card__cont span {
    font-size: 14px;
  }
  .radio-card__cont img, .checkbox-card__cont img {
    width: 40px;
    height: 40px;
  }

  .textarea {
    font-size: 14px;
  }
}
/* 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
*/

/* 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%;
}
.header {
  padding: 0px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  position: relative;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.header__logo-white {
  display: none;
}

.header__skip {
  position: absolute;
  left: -100%;
  top: -100%;
}
.header__skip:focus {
  left: 0;
  top: 0;
}

.header__logo a {
  line-height: 0;
  -webkit-tap-highlight-color: transparent;
}

.header__bars-icon-button {
  background-color: unset;
  padding: 0px;
  border: unset;
  cursor: pointer;
}

.header__bars-icon-button,
.header__xmark-icon-button {
  background-color: unset;
  padding: 0px;
  border: unset;
  cursor: pointer;
}

.header__xmark-icon-button {
  display: none;
}

.header__nav-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  display: none;
  z-index: 1;
}
.header__nav-desktop {
  display: none;
}

.header__nav-mobile-actions {
  padding: 20px 30px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #d0d0ce;
  border-top: 1px solid #d0d0ce;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.header__plan-my-move .button {
  width: 100%;
  color: #003368;
  fill: #003368;
}

.header__nav-mobile ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}

.header__nav-mobile .hs-menu-children-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms;
}

.header__nav-mobile .hs-menu-children-wrapper > div {
  overflow: hidden;
}

.header__nav-mobile .hs-menu-children-wrapper--show {
  grid-template-rows: 1fr;
}

.hs-menu-item__chevron-right {
  display: none;
  transition: 200ms ease;
}

.hs-menu-item__chevron-right--active {
  transform: rotate(90deg);
}

.hs-menu-item--with-children .hs-menu-item__chevron-right {
  display: block;
}

.header__nav-desktop
  .hs-menu-item--with-children
  .hs-menu-children-wrapper
  .hs-menu-item__chevron-right {
  transform: rotate(0deg);
}

.header__nav-mobile
  .hs-menu-item--with-children
  .hs-menu-children-wrapper
  .hs-menu-item__chevron-right {
  display: none;
}

.header__nav-desktop .hs-menu-item__chevron-right--children {
  display: block;
}

.header__nav-mobile .hs-menu-item a {
  padding: 0px 30px;
  width: 100%;
  height: 72px;
  background: #fff;
  border-bottom: 1px solid #d0d0ce;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: #54585a !important;
}
.header__nav-mobile .hs-menu-children-wrapper a {
  padding: 0px 40px;
}

.header__switch-label {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.header__switch-icon {
  display: block;
  flex: 0 0 18px;
  height: 18px;
  object-fit: contain;
  width: 18px;
}

.header__switch-icon--light {
  display: none;
}

@media screen and (min-width: 1024px) {
  .header--white .header__logo {
    display: none;
  }

  .header--white .header__logo-white {
    display: block;
  }

  .header__nav-mobile {
    display: none !important;
  }

  .header__nav-desktop {
    display: flex;
    margin-left: 40px;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
  }
  .header__nav-desktop ul {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
  }

  .header.header--white {
    background-color: transparent;
    box-shadow: none;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 5;
  }

  .header__nav-desktop > ul {
    display: flex;
  }

  .header__nav-desktop > ul > .hs-menu-item {
    position: relative;
  }

  .header__nav-desktop > ul > .hs-menu-item a {
    height: 126px;
    padding: 0px 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "DIN Medium";
    gap: 8px;
    color: #54585a;
    background-color: #fff;
    position: relative;
    transition: 200ms ease;
    font-weight: 500;
  }

  .header--white .header__nav-desktop > ul > .hs-menu-item a {
    background-color: transparent;
    color: #fff;
  }

  .header--white .header__switch-icon--dark {
    display: none;
  }

  .header--white .header__switch-icon--light {
    display: block;
  }

  .header__nav-desktop > ul > .hs-menu-item::after {
    transition: 200ms ease;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #159dc8;
    height: 5px;
    opacity: 0;
    pointer-events: none;
  }

  .header__nav-desktop > ul > .hs-menu-item:hover::after {
    opacity: 1;
  }

  .header--white .header__nav-desktop > ul > .hs-menu-item:hover a {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .header__nav-desktop .hs-menu-children-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    visibility: hidden;
    height: 0;
    opacity: 0;
    transition: 200ms ease;
  }

  .header__nav-desktop > ul > .hs-menu-item:hover .hs-menu-children-wrapper {
    visibility: visible;
    height: auto;
    opacity: 1;
  }

  .header__nav-desktop .hs-menu-children-wrapper .hs-menu-item a {
    width: 372px;
    background: linear-gradient(180deg, #fff 0%, #d0d0ce 100%);
    font-size: 16px;
    height: 72px;
    color: #54585a;
    justify-content: space-between;
    position: relative;
    transition: 200ms ease;
  }
  .header__nav-desktop .hs-menu-children-wrapper .hs-menu-item a:hover {
    color: #159dc8 !important;
  }
  .header__nav-desktop .hs-menu-children-wrapper .hs-menu-item path {
    transition: 200ms ease;
  }
  .header__nav-desktop .hs-menu-children-wrapper .hs-menu-item svg {
    transition: 200ms ease;
  }
  .header__nav-desktop .hs-menu-children-wrapper .hs-menu-item a:hover path {
    fill: #159dc8;
  }
  .header__nav-desktop .hs-menu-children-wrapper .hs-menu-item a:hover svg {
    transform: translateX(4px);
  }

  .header__nav-desktop .hs-menu-children-wrapper .hs-menu-item a::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: #159dc8;
    opacity: 0;
    transition: 200ms ease;
  }
  .header__nav-desktop .hs-menu-children-wrapper .hs-menu-item a:hover::after {
    opacity: 1;
  }

  .header--white
    .header__nav-desktop
    .hs-menu-children-wrapper
    .hs-menu-item
    a {
    color: #54585a;
  }

  .header__nav-desktop > ul > .hs-menu-item .hs-menu-item__chevron-right {
    transform: rotate(90deg) translateX(0px);
  }

  .header__nav-desktop > ul > .hs-menu-item .hs-menu-item__chevron-right svg {
    fill: #54585a;
  }

  .header--white
    .header__nav-desktop
    > ul
    > .hs-menu-item
    .hs-menu-item__chevron-right
    svg {
    fill: #fff;
  }

  .header--white
    .header__nav-desktop
    .hs-menu-item
    .hs-menu-children-wrapper
    .hs-menu-item__chevron-right
    svg {
    fill: #54585a;
  }

  .header {
    padding: 0px 104px;
    height: auto;
    justify-content: normal;
    align-items: center;
  }

  .header__bars-icon-button,
  .header__xmark-icon-button {
    display: none !important;
  }
}

.header__actions {
  display: flex;
  gap: 12px;
}

.header__actions .header__nav-desktop-plan-my-move .button {
  height: 42px;
}

.header__search-field-container {
  position: relative;
}

.header__toggle-search {
  background-color: unset;
  border: unset;
  padding: 13px;
  cursor: pointer;
}

.header__search-field-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  visibility: hidden;
  opacity: 0;
  transition: 200ms ease;
}

.header__search-field-wrapper--active {
  width: 250px;
  opacity: 1;
  visibility: visible;
}
.header__toggle-search svg {
  fill: #54585a;
}

.header--white .header__toggle-search svg {
  fill: white;
}
.footer__wrapper {
  display: flex;
  padding: 40px 160px;
}

.footer__links-wrapper {
  display: flex;
  justify-content: center;
  flex: 1;
  margin-left: -178px;
}
.footer__links {
  display: flex;
  gap: 120px;
}

.footer__heading {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 24px;
  font-family: "DIN Medium";
}

.footer__list h3 {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 24px;
  font-family: "DIN Medium";
  color: #54585a;
}

.footer__list ul {
  list-style: none;
  padding-left: 8px;
  margin-bottom: 0px;
}

.footer__list ul li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #54585a;
}

.footer__list ul li:not(:last-child) {
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.footer__copyright {
  background-color: #f3f3f3;
  text-align: center;
  width: 100%;
  padding: 32px 160px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.footer__copy-text {
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: 400;
  color: #919191;
}

.footer__copyright a {
  text-decoration: none;
  color: #919191;
}

.footer__copyright a:hover {
  color: #159dc8;
}

.footer__link {
  font-size: 16px;
}

.footer__guidance-list {
  margin-bottom: 24px;
}

.footer__services-list {
  margin-bottom: 24px;
}

@media screen and (max-width: 1500px) {
  .footer__links-wrapper {
    margin-left: 0px;
  }
}

@media screen and (max-width: 1280px) {
  .footer__wrapper {
    padding: 30px;
  }
  .hs-breadcrumb-menu {
    padding: 15px 30px !important;
  }
}

@media screen and (max-width: 1024px) {
  .footer__links {
    gap: 50px;
  }

  .footer__guidance-list {
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 820px) {
  .footer__wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}

@media screen and (max-width: 590px) {
  .footer__links {
    flex-direction: column;
  }
}

/* Breadcrumbs */

.hs-breadcrumb-menu {
  padding: 0px 160px;
  height: 50px;
  border-bottom: 1px solid #54585a;
  background-color: #fff;
  display: flex;
}
.hs-breadcrumb-menu-divider:before {
  content: "/";
  padding-left: 0px;
  font-size: 14px;
}
.hs-breadcrumb-menu-item {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #767676;
}
.footer__breadcrumb-house-icon {
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hs-breadcrumb-menu-item a {
  color: #767676 !important;
  font-size: 14px;
}
.last-crumb {
  color: #000;
  font-size: 14px;
}
.first-crumb {
  padding-left: 0px;
}

.footer__legal-links {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 320px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer__legal-links a {
  font-size: 14px;
  color: #919191;
}
.footer__legal-links a:hover {
  color: #919191;
}
.footer__legal-gap {
  color: #919191;
}

@media screen and (max-width: 1280px) {
  .footer__copyright {
    padding: 32px 30px;
  }
}

@media screen and (max-width: 590px) {
  .footer__copyright {
    flex-direction: column;
    gap: 20px;
  }
  .footer__legal-links {
    order: 1;
    justify-content: center;
  }
  .footer__copy-text {
    order: 2;
  }
}

.footer__bold-link a {
  font-family: "DIN Medium";
  font-weight: 500;
  color: #54585a;
}
.footer__bold-link {
  margin-bottom: 24px;
}
/* .link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  color: #159dc8;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  border: none;
}

.link-text {
  border-bottom: 1px solid transparent;
  margin-right: 4px;
  transition: all 0.2s ease-in-out;
}

.link:hover {
  border: none;
  outline: none;
  text-decoration: none;
}

.link:hover .link-text {
  border-bottom: 1px solid #159dc8;
  margin-right: 8px;
  color: #159dc8;
} */
.divider {
  height: 1px;
  width: 100%;
  background-color: #d0d0ce;
  display: none;
}


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