/** Shopify CDN: Minification failed

Line 49:10 Expected identifier but found whitespace
Line 49:12 Unexpected "{"
Line 49:21 Expected ":"

**/
.footer-custom {
    padding: 0 32px;
    width: 100%;
  }
  
.footer-custom__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    gap: 32px;
    max-width: 1440px;
  
    margin: 0 auto;
  }
  
  .footer-custom__content {
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding-top: 25px;
  }
  
  .footer-custom__nav {
    display: flex;
    gap: 96px;
    align-items: flex-start;
  }
  
  .footer-custom__nav-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-custom__nav-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    margin: 0;
    color: {{ section.settings.text_color | default: '#ffffff' }};
  }
  
  .footer-custom__nav-title--uppercase {
    text-transform: uppercase;
  }
  
  .footer-custom__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-custom__nav-item {
    margin: 0;
    display: flex;
  }
  
  .footer-custom__nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
  }
  
  .footer-custom__nav-link:hover {
    opacity: 0.8;
  }
  
  .footer-custom__copyright {
    margin-top: auto;
  }
  
  .footer-custom__copyright-text {
    font-family: 'Suisse BP', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
  }
  
  .footer-custom__logo {
    max-width: 279px;
    max-height: 256px;
    height: 100%;
    width: 100%;
    object-fit: contain;
    display: flex;
    align-items: center;
  }
  
  .footer-custom__logo-image {
      height: 100%;
      width: 100%;
      object-fit: contain;
  }
  
  .footer-custom__logo-image--mobile {
      display: none;
  }
  .copyright__mobile {
      display: none;
  }
  @media screen and (max-width: 768px) {
      .footer-custom__logo-image--desktop {
          display: none;
      }
      .copyright__desktop{
          display: none;
      }
      .footer-custom__logo{
          flex-direction: column;
          gap: 10px;
      }
  
      .footer-custom__nav-title,.footer-custom__nav-link{
          font-size: 14px;
      }
      .copyright__mobile{
          display: block;
      }
      .footer-custom__logo-image--mobile {
          display: block;
      }
      .footer-custom__container{
          flex-direction: column;
          gap: 32;
      }
      .footer-custom{
          padding: 32px 0;
      }
  }
  