/** Shopify CDN: Minification failed

Line 467:1 Expected "}" to go with "{"

**/
footer.footer-new {
  background-color: rgba(var(--color-primary));
  color: rgba(var(--color-white));
  font-family: var(--font-display-family);
  position: relative;
  z-index: 1;
}

footer .footer-newsletter {
  background-color: #E0EFFF;
  padding: 1.5rem;
  border-radius: 2rem;
  margin: 1.5rem 1.5rem 3rem;
  display: inline-block;
  width: -webkit-fill-available;
}

footer .footer-newsletter__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: -webkit-fill-available;
}

footer section {
  background: rgba(var(--color-white));
}

footer .footer-newsletter__content form {
  overflow: hidden !important;
}

footer .footer-newsletter__content form button {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  transition: background-color 0.3s ease !important;
}

footer .footer-newsletter__content form input {
  border-top-left-radius: 8px !important;
  border-bottom-left-radius: 8px !important;
}

footer .footer-newsletter__title {
  color: rgba(var(--color-black));
  font-family: var(--font-display-family);
  font-size: 1.5rem;
  font-weight: var(--font-display-weight);
  margin: 0 0 1rem;
  text-align: left;
  flex: 0 0 auto;
}

footer .newsletter-form__wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  justify-content: center;
}

footer .newsletter-form__input {
  flex: 1;
  max-width: 300px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  font-size: 1rem;
  background-color: rgba(var(--color-white));
  color: rgba(var(--color-black));
}

footer .newsletter-form__input::placeholder {
  color: #9ca3af;
}

footer .newsletter-form__input:focus {
  outline: 2px solid rgba(var(--color-secondary));
  outline-offset: 2px;
  border-color: rgba(var(--color-secondary));
}

footer .newsletter-form__button {
  padding: 0.75rem 1.5rem;
  background-color: rgba(var(--color-accent));
  color: rgba(var(--color-white));
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
  flex: 0 0 auto;
}

footer .newsletter-form__button:hover,
footer .newsletter-form__button:focus {
  background-color: rgba(var(--color-accent-dark));
  outline: 2px solid rgba(var(--color-secondary));
  outline-offset: 2px;
}

footer .newsletter-form__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

footer .footer-newsletter__social {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  flex: 0 0 auto;
}

footer .social-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

footer .social-links__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: rgba(var(--color-black));
  text-decoration: none;
  transition: all 0.2s ease;
}

footer .footer-newsletter__form {
  width: 100%;
}

footer .social-links__item:hover,
footer .social-links__item:focus {
  background-color: rgba(var(--color-secondary));
  color: rgba(var(--color-white));
  transform: translateY(-2px);
  outline: 2px solid rgba(var(--color-white));
  outline-offset: 2px;
}

footer .social-links__icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

footer .footer-main {
  padding: 0 0 3rem;
}

footer .footer-disclaimer {
  background-color: rgba(var(--color-white));
  color: rgba(var(--color-black));
  margin-bottom: 1.5rem;
  padding: 1.5rem 1.5rem 10.5rem;
}

footer .footer-disclaimer__content {
  max-width: 1200px;
  margin: 0 auto;
}

footer .footer-disclaimer .rich-text__content {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(var(--color-black));
}

footer .footer-disclaimer .rich-text__content p {
  margin-bottom: 1rem;
}

footer .footer-disclaimer .rich-text__content p:last-child {
  margin-bottom: 0;
}

footer .footer-main__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
}

footer .footer-logo {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-left: 1.5rem;
}

footer .footer-logo__image {
  max-width: 150px;
  height: auto;
  filter: brightness(0) invert(1);
}

footer .footer-logo__text {
  font-size: 1.5rem;
  font-weight: var(--font-display-weight);
  color: rgba(var(--color-white));
  text-transform: lowercase;
}

footer .footer-navigation {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 0 1.5rem;
}

footer .footer-nav__title {
  font-family: var(--font-display-family);
  font-size: 1rem;
  font-weight: var(--font-display-weight);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(var(--color-white));
  position: relative;
  border-bottom: 1px solid rgba(var(--color-white));
  margin-bottom: unset;
}

footer .footer-nav__list {
  list-style: none;
  margin: 0;
  padding: 1rem 0 0 0;
}

footer .footer-nav__item {
  margin-bottom: 0.75rem;
}

footer .footer-nav__item:last-child {
  margin-bottom: 0;
}

footer .footer-nav__link {
  color: rgba(var(--color-white));
  text-decoration: none;
  font-family: var(--font-display-family);
  font-size: 1rem;
  font-weight: 300;
  transition: color 0.2s ease;
}

footer .footer-nav__link:hover,
footer .footer-nav__link:focus {
  color: rgba(var(--color-secondary));
  text-decoration: underline;
  outline: none;
}

footer .footer-bottom {
  border-top: 1px solid rgba(var(--color-white));
  padding: 3rem 0 3rem;
  margin: 0 1.5rem;
}

footer .footer-bottom__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

footer .footer-legal__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex-direction: column;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

footer .footer-legal__item {
  margin: 0;
}

footer .footer-legal__link {
  color: rgba(var(--color-white));
  text-decoration: none;
  font-family: var(--font-display-family);
  font-size: 1rem;
  font-weight: 300;
  transition: color 0.2s ease;
}

footer .footer-legal__link:hover,
footer .footer-legal__link:focus {
  color: rgba(var(--color-secondary));
  text-decoration: underline;
  outline: none;
}

footer .footer-copyright__text {
  color: rgba(var(--color-white));
  font-family: var(--font-display-family);
  font-size: 1rem;
  font-weight: 300;
  margin: 0;
}

footer .footer-copyright__brand {
  color: rgba(var(--color-white));
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  transition: color 0.2s ease;
}

footer .footer-copyright__brand:hover,
footer .footer-copyright__brand:focus {
  color: rgba(var(--color-secondary));
  outline: none;
}

footer .footer-new a:focus {
  outline: 2px solid rgba(var(--color-secondary));
  outline-offset: 2px;
}

footer .footer-new .skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: rgba(var(--color-secondary));
  color: rgba(var(--color-white));
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
}

footer .footer-new .skip-link:focus {
  top: 6px;
}

@media (min-width: 992px) {
  footer .newsletter-form__wrapper {
    flex-direction: row;
    align-items: center;
  }

  footer .footer-newsletter__social {
    width: unset;
  }

  footer .footer-main__content {
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    align-items: start;
  }

  footer .footer-logo {
    justify-content: flex-start;
  }

  footer .footer-navigation {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  footer .footer-nav__column {
    text-align: left;
  }

  footer .footer-bottom__content {
    justify-content: space-between;
    align-items: start;
  }

  footer .footer-legal {
    display: block;
    gap: 1.5rem;
    flex-direction: row;
  }

  footer .footer-legal__list {
    justify-content: flex-start;
  }

  footer .footer-copyright {
    text-align: right;
  }


  footer .footer-newsletter__content {
    flex-direction: row;
  }

  footer .footer-newsletter {
    margin: 2rem 4rem;
  }

  footer .footer-main__content {
    grid-template-columns: 1fr 4fr;
    gap: 4rem;
  }

  footer .footer-main {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    padding-bottom: 1.5rem;
  }

  footer .footer-bottom {
    margin: 0 4rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
  }

  footer .footer-legal__list {
    flex-direction: row;
  }

  footer .footer-disclaimer {
    padding-bottom: 1.5rem;
}

@media screen and (min-width: 1800px) {
  footer .footer-bottom {
    margin: 0 4rem;
    padding-top: 3rem;
  }

  footer .footer-main {
    padding-bottom: 3rem;
  }

  footer .footer-main__content {
    grid-template-columns: 1fr 3fr;
  } 
}

@media (prefers-contrast: high) {
  footer .footer-bottom {
    border-top-color: #ffffff;
  }
  
  footer .footer-nav__link:hover,
  footer .footer-nav__link:focus,
  footer .footer-legal__link:hover,
  footer .footer-legal__link:focus {
    color: #ffff00;
  }
}

@media (prefers-reduced-motion: reduce) {
  footer .footer-new * {
    transition: none !important;
    animation: none !important;
  }
}