:root {
  --blue-grey: #2d2a32;
  --_typography-colours---headings: var(--dark-grey);
  --_typography-colours---body-copy: var(--blue-grey);
  --_typography-colours---links: var(--yellow);
  --_typography-colours---links-hover: var(--red);
  --red: #dd1c1a;
  --_section-spacing---main-section--ms-lr-padding: 64px;
  --_section-spacing---main-section--ms-tb-padding: 96px;
  --_section-spacing---main-section--ms-gap: 128px;
  --_section-spacing---large-block--lb-padding: 48px;
  --_section-spacing---large-block--lb-border-radius: 32px;
  --yellow: #efe81f;
  --off-white: #eef0f2;
  --_button-sizes---button-tb-padding: 16px;
  --_button-sizes---button-lr-padding: 64px;
  --_button-sizes---button-border-radius: 200px;
  --dark-grey: #231f20;
  --_section-spacing---small-block--sb-padding: 24px;
  --_section-spacing---small-block--sb-border-radius: 16px;
  --_section-spacing---medium-block--mb-padding: 32px;
  --_typography-colours---color: white;
  --_section-spacing---large-block--lb-gap: 24px;
  --_button-sizes---button-font-size: 16px;
  --_section-spacing---main-section--size: 0px;
  --_section-spacing---small-block--sb-gap: 16px;
}

body {
  color: var(--blue-grey);
  font-family: Instrument Sans, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

h1 {
  color: var(--_typography-colours---headings);
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Instrument Sans, sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 72px;
}

h2 {
  color: var(--_typography-colours---headings);
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Instrument Sans, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
}

h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}

p {
  color: var(--_typography-colours---body-copy);
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 32px;
}

a {
  color: var(--_typography-colours---links);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: var(--_typography-colours---links-hover);
}

a.w--current {
  color: var(--red);
}

.main-section {
  padding: 40px var(--_section-spacing---main-section--ms-lr-padding) var(--_section-spacing---main-section--ms-tb-padding);
  grid-column-gap: var(--_section-spacing---main-section--ms-gap);
  grid-row-gap: var(--_section-spacing---main-section--ms-gap);
  --_typography-colours---headings: var(--dark-grey);
  --_typography-colours---body-copy: var(--blue-grey);
  --_typography-colours---links: var(--yellow);
  --_typography-colours---links-hover: var(--red);
  --_typography-colours---color: white;
  flex-flow: column;
  display: flex;
}

.large-block {
  padding: var(--_section-spacing---large-block--lb-padding);
  border-radius: var(--_section-spacing---large-block--lb-border-radius);
  background-color: var(--yellow);
  opacity: 1;
}

.large-block.home-banner {
  --_typography-colours---headings: var(--_typography-colours---color);
  --_typography-colours---body-copy: var(--off-white);
  --_typography-colours---links: var(--yellow);
  --_typography-colours---links-hover: var(--yellow);
  background-color: #777;
  background-image: url('../images/home_banner.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.large-block.cta-button {
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.large-block.refurbish-section {
  background-image: url('../images/pexels-karola-g-5908766.jpg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.large-block.mattress-banner {
  text-align: center;
  --_typography-colours---headings: var(--_typography-colours---color);
  --_typography-colours---body-copy: var(--off-white);
  --_typography-colours---links: var(--yellow);
  --_typography-colours---links-hover: var(--yellow);
  background-image: linear-gradient(#0009, #0009), url('../images/mattress-_banner_rolls.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.large-block.electric-banner {
  text-align: center;
  --_typography-colours---headings: var(--_typography-colours---color);
  --_typography-colours---body-copy: var(--off-white);
  --_typography-colours---links: var(--yellow);
  --_typography-colours---links-hover: var(--yellow);
  background-image: linear-gradient(#00000080, #00000080), url('../images/electronic_banner.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: flex-start;
  padding-top: 96px;
  padding-bottom: 96px;
  display: flex;
}

.large-block.black-background {
  background-color: var(--blue-grey);
}

.large-block.mattress-steps {
  filter: saturate(80%);
  mix-blend-mode: normal;
}

.top-bar {
  padding: 16px var(--_section-spacing---main-section--ms-lr-padding);
  background-color: var(--blue-grey);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.facebook-link-block {
  width: 24px;
  height: 24px;
}

.header-contact-link-block {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: var(--off-white);
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  display: flex;
}

.header-contact-link-block.footer-link-block {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  font-size: 16px;
  font-weight: 400;
}

.top-bar-link-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.top-bar-link-icon {
  width: 16px;
  height: 16px;
}

.top-bar-link-icon.footer-link-icon {
  width: 24px;
  height: 24px;
}

.button-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.navbar {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.navbar-div {
  padding: 16px var(--_section-spacing---main-section--ms-lr-padding);
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.image {
  width: 100%;
}

.faded-circle-arrows {
  opacity: .15;
  width: 300px;
}

.dropdown {
  font-weight: 600;
  transition: opacity .2s;
}

.dropdown:hover {
  color: var(--red);
}

.primary-button {
  padding: var(--_button-sizes---button-tb-padding) var(--_button-sizes---button-lr-padding);
  border-radius: var(--_button-sizes---button-border-radius);
  background-color: var(--red);
  text-align: center;
  transition-property: background-color;
  transition-duration: .1s;
}

.primary-button:hover {
  background-color: var(--dark-grey);
  color: var(--off-white);
}

.secondary-button {
  padding: var(--_button-sizes---button-tb-padding) var(--_button-sizes---button-lr-padding);
  border-radius: var(--_button-sizes---button-border-radius);
  background-color: var(--off-white);
  color: var(--blue-grey);
  text-align: center;
  transition: background-color .1s, color .2s;
}

.secondary-button:hover {
  background-color: var(--dark-grey);
  color: var(--off-white);
}

.footer {
  padding: var(--_section-spacing---main-section--ms-lr-padding) var(--_section-spacing---main-section--ms-lr-padding) 24px;
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  background-color: var(--dark-grey);
  --_typography-colours---headings: var(--_typography-colours---color);
  --_typography-colours---body-copy: var(--off-white);
  --_typography-colours---links: var(--yellow);
  --_typography-colours---links-hover: var(--yellow);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-logo {
  width: 300px;
  margin-bottom: 24px;
}

.footer-menu-wrapper {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-link {
  color: var(--off-white);
  font-size: 18px;
  font-weight: 500;
}

.paragraph {
  text-align: center;
  margin-top: 48px;
  font-size: 16px;
}

.cta-section-wrapper {
  padding: var(--_section-spacing---main-section--ms-tb-padding) var(--_section-spacing---main-section--ms-lr-padding);
  --_typography-colours---headings: var(--_typography-colours---color);
  --_typography-colours---body-copy: var(--off-white);
  --_typography-colours---links: var(--yellow);
  --_typography-colours---links-hover: var(--yellow);
  background-image: linear-gradient(48deg, #000, #0000), url('../images/Mother-Earth-Recycling-Storefront.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  justify-content: flex-start;
  align-items: flex-end;
  height: 500px;
  display: flex;
}

.div-block {
  width: 50%;
}

.recycling-home-section, .div-block-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.small-block {
  padding: var(--_section-spacing---small-block--sb-padding);
  border-radius: var(--_section-spacing---small-block--sb-border-radius);
  background-color: var(--blue-grey);
  --_typography-colours---headings: var(--_typography-colours---color);
  --_typography-colours---body-copy: var(--off-white);
  --_typography-colours---links: var(--yellow);
  --_typography-colours---links-hover: var(--yellow);
  flex-flow: column;
  display: flex;
}

.text-block-2 {
  color: var(--off-white);
}

.img {
  text-align: right;
  width: 64px;
  margin-left: auto;
}

.brand {
  width: 250px;
}

.image-2 {
  width: 40px;
}

.div-block-4 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.black-link {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--dark-grey);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.img-2 {
  width: 14px;
  height: 14px;
}

.yellow-block {
  padding: var(--_section-spacing---small-block--sb-padding);
  border-radius: var(--_section-spacing---small-block--sb-border-radius);
  background-color: var(--yellow);
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.subtitle-small {
  font-size: 24px;
}

.subtitle-small.white {
  color: var(--_typography-colours---headings);
}

.div-block-5 {
  padding: var(--_section-spacing---medium-block--mb-padding);
  border-radius: var(--_section-spacing---small-block--sb-border-radius);
  background-color: var(--off-white);
  width: 50%;
}

.div-block-6 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-3 {
  width: 66%;
}

.div-block-7 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.step-wrapper {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.step-number {
  width: 15%;
  font-size: 96px;
  line-height: 96px;
}

.div-block-8 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  display: flex;
}

.steps-intro-banner {
  width: 50%;
}

.div-block-10 {
  width: 100%;
}

.div-block-11 {
  width: 80%;
}

.div-block-12 {
  text-align: center;
  width: 70%;
}

.div-block-13 {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.about-logo {
  width: 200px;
  margin-bottom: 32px;
}

.dropdown-toggle {
  border: 1px solid var(--blue-grey);
  background-color: var(--_typography-colours---color);
  border-radius: 24px;
  width: 100%;
  padding: 24px;
}

.dropdown-toggle.w--open {
  border-bottom-width: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.div-block-14 {
  grid-column-gap: var(--_section-spacing---large-block--lb-gap);
  grid-row-gap: var(--_section-spacing---large-block--lb-gap);
  flex-flow: column;
  display: flex;
}

.icon-2 {
  margin-right: 40px;
  transform: rotate(360deg);
}

.recycle-dropdown {
  width: 100%;
  font-weight: 600;
}

.dropdown-toggle-2 {
  color: var(--dark-grey);
  transition: color .2s;
}

.dropdown-toggle-2:hover {
  color: var(--red);
}

.dropdown-list {
  background-color: var(--off-white);
  transition: opacity .2s;
}

.nav-menu-link.w--current {
  color: var(--red);
}

.dropdown-list-2 {
  background-color: var(--off-white);
  padding: 16px 8px;
  position: relative;
}

.dropdown-list-2.w--open {
  background-color: var(--_typography-colours---color);
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  padding-top: 16px;
  padding-bottom: 32px;
  padding-left: 24px;
}

.electronic-list {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  margin-bottom: 0;
  padding-left: 24px;
  display: flex;
}

.upgrade-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 24px;
  padding-bottom: 64px;
  display: grid;
}

.upgrade-wrapper {
  background-color: var(--off-white);
  border-radius: 16px;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 500;
}

.contact-page-wrapper {
  grid-column-gap: 96px;
  grid-row-gap: 96px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact-info-box {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.contact-page-icon {
  width: 32px;
}

.text-block-3 {
  font-size: 24px;
  font-weight: 500;
}

.contact-info-wrapper {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 48px;
  display: flex;
}

.white_link {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--off-white);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.utility-page-wrap {
  padding: 48px var(--_section-spacing---main-section--ms-lr-padding) var(--_section-spacing---main-section--ms-lr-padding);
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  display: flex;
}

.div-block-15 {
  margin-top: 24px;
}

.image-4 {
  width: 96px;
  margin-bottom: 48px;
}

.slider {
  border-radius: 24px;
  height: 450px;
}

.slider-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.div-block-16 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.mask {
  border-radius: 24px;
}

.refurbishing-banner {
  grid-column-gap: 96px;
  grid-row-gap: 96px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.slide-nav {
  margin-bottom: 16px;
}

.div-block-17 {
  border-radius: var(--_section-spacing---small-block--sb-border-radius);
  background-color: var(--red);
  margin-top: 32px;
  padding: 32px;
}

.text-block-4 {
  color: var(--off-white);
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
}

.div-block-18 {
  border-radius: var(--_section-spacing---small-block--sb-border-radius);
  background-color: var(--off-white);
  margin-bottom: 40px;
  padding: 40px;
}

.text-block-5 {
  font-size: 48px;
  line-height: 64px;
}

.paragraph-3 {
  --_typography-colours---headings: var(--_typography-colours---color);
  --_typography-colours---body-copy: var(--off-white);
  --_typography-colours---links: var(--yellow);
  --_typography-colours---links-hover: var(--yellow);
}

.legal-h2 {
  margin-top: 40px;
}

.text-block-6 {
  font-size: 32px;
  line-height: 64px;
}

.text-block-7 {
  margin-top: 64px;
  margin-bottom: 64px;
  font-size: 40px;
  line-height: 56px;
}

.map {
  border-radius: var(--_section-spacing---large-block--lb-border-radius);
}

.text-block-8 {
  margin-top: 32px;
  font-size: 32px;
  line-height: 48px;
}

@media screen and (max-width: 991px) {
  body {
    --_section-spacing---main-section--ms-lr-padding: 24px;
    --_section-spacing---main-section--ms-tb-padding: 40px;
    --_section-spacing---main-section--ms-gap: 64px;
    --_section-spacing---large-block--lb-padding: 32px;
    --_section-spacing---large-block--lb-border-radius: 24px;
    --_section-spacing---small-block--sb-padding: 16px;
    --_section-spacing---small-block--sb-border-radius: 8px;
    --_section-spacing---medium-block--mb-padding: 24px;
    --_section-spacing---large-block--lb-gap: 16px;
    --_section-spacing---small-block--sb-gap: 8px;
    --_button-sizes---button-tb-padding: 12px;
    --_button-sizes---button-lr-padding: 24px;
    --_button-sizes---button-border-radius: 200px;
    --_button-sizes---button-font-size: 16px;
  }

  h1 {
    font-size: 48px;
    line-height: 64px;
  }

  h2 {
    font-size: 32px;
    line-height: 40px;
  }

  p {
    font-size: 16px;
    line-height: 32px;
  }

  .header-contact-link-block {
    font-size: 12px;
  }

  .top-bar-link-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .top-bar-link-wrapper.footer-bar-link-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
    margin-top: 32px;
  }

  .faded-circle-arrows {
    width: 250px;
  }

  .footer {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .footer-menu-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
  }

  .paragraph {
    width: 66%;
    margin-top: 0;
  }

  .heading {
    font-size: 32px;
  }

  .div-block {
    width: 66%;
  }

  .recycling-home-section {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .icon {
    object-position: 50% 50%;
  }

  .menu-button {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .yellow-block {
    height: 200px;
  }

  .steps-intro-banner {
    width: 66%;
  }

  .div-block-11 {
    width: 100%;
  }

  .div-block-12 {
    width: 90%;
  }

  .dropdown-toggle {
    padding: 16px;
  }

  .contact-page-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .contact-page-icon {
    width: 24px;
  }

  .text-block-3 {
    font-size: 18px;
  }

  .contact-info-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    margin-top: 24px;
  }

  .utility-page-content {
    width: 80%;
  }

  .div-block-18 {
    padding: 32px;
  }

  .text-block-5 {
    font-size: 32px;
    line-height: 40px;
  }

  .legal-h2 {
    margin-top: 32px;
  }

  .text-block-7 {
    margin-top: 24px;
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 48px;
  }

  .text-block-8 {
    font-size: 24px;
    line-height: 32px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    line-height: 56px;
  }

  .large-block.refurbish-section {
    padding-top: 200px;
  }

  .top-bar {
    display: none;
  }

  .image {
    text-align: left;
  }

  .faded-circle-arrows {
    width: 150px;
  }

  .paragraph {
    width: 80%;
  }

  .brand {
    padding-left: 0;
  }

  .div-block-5 {
    width: 75%;
  }

  .div-block-6 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .step-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
  }

  .div-block-12 {
    width: 100%;
  }

  .about-logo {
    width: 150px;
  }

  .text-block-7 {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 40px;
  }
}

@media screen and (max-width: 479px) {
  body {
    --_section-spacing---main-section--ms-lr-padding: 16px;
    --_section-spacing---main-section--ms-tb-padding: 32px;
    --_section-spacing---main-section--ms-gap: 32px;
    --_section-spacing---large-block--lb-padding: 16px;
    --_section-spacing---large-block--lb-border-radius: 16px;
    --_section-spacing---small-block--sb-padding: 8px;
    --_section-spacing---small-block--sb-border-radius: 8px;
    --_section-spacing---medium-block--mb-padding: 12px;
    --_section-spacing---large-block--lb-gap: 8px;
    --_section-spacing---small-block--sb-gap: 4px;
    --_button-sizes---button-tb-padding: 12px;
    --_button-sizes---button-lr-padding: 24px;
    --_button-sizes---button-border-radius: 200px;
    --_button-sizes---button-font-size: 12px;
  }

  h1 {
    margin-bottom: 8px;
    font-size: 32px;
    line-height: 40px;
  }

  h2 {
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 32px;
  }

  h3 {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 24px;
  }

  p {
    line-height: 24px;
  }

  .main-section {
    padding-top: 8px;
  }

  .large-block.refurbish-section {
    padding-top: 96px;
  }

  .top-bar {
    flex-flow: column;
  }

  .header-contact-link-block.footer-link-block {
    font-size: 14px;
  }

  .top-bar-link-wrapper {
    flex-flow: column;
  }

  .top-bar-link-wrapper.footer-bar-link-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .top-bar-link-icon.footer-link-icon {
    width: 16px;
    height: 16px;
  }

  .button-wrapper {
    flex-flow: column;
    align-items: stretch;
  }

  .navbar-div {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .image {
    width: 150px;
  }

  .faded-circle-arrows {
    width: 96px;
  }

  .footer {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    padding-bottom: 16px;
  }

  .footer-logo {
    width: 200px;
  }

  .footer-menu-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .footer-link {
    font-size: 16px;
  }

  .paragraph {
    width: 100%;
  }

  .heading {
    font-size: 24px;
  }

  .cta-section-wrapper {
    height: 400px;
  }

  .div-block {
    width: 100%;
  }

  .brand {
    width: 150px;
  }

  .div-block-5 {
    width: 100%;
  }

  .step-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .step-number {
    width: 100%;
    font-size: 48px;
    line-height: 48px;
  }

  .div-block-8 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .steps-intro-banner {
    width: 100%;
  }

  .about-logo {
    width: 96px;
    margin-bottom: 16px;
  }

  .contact-info-box {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .contact-page-icon {
    font-size: 14px;
  }

  .text-block-3 {
    font-size: 16px;
  }

  .utility-page-wrap {
    padding-top: 24px;
  }

  .utility-page-content {
    width: 100%;
  }

  .div-block-17 {
    margin-top: 16px;
    padding: 16px;
  }

  .text-block-4 {
    font-size: 16px;
    line-height: 24px;
  }

  .div-block-18 {
    margin-bottom: 32px;
    padding: 16px;
  }

  .legal-h2 {
    margin-top: 24px;
  }

  .text-block-7 {
    font-size: 18px;
    line-height: 32px;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_0cbd839c-b471-4861-d700-ed0b0fe88f91-ded861a7 {
    order: -9999;
  }
}


