<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.footer-inner .link-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }
  .footer-inner .footer-column {
    width: fit-content;
  }
  
  .footer-bottom {
    background-color: transparent;
  }
  .footer-bottom .copyright {
    font-size: small;
    padding: 20px;
    text-align: left;
    color: white;
    background-color: #22211D;
  }
  
  #footer-links-mobile {
    display: none;
  }
  
  @media screen and (max-width: 900px) {
    .footer-bottom .copyright {
      padding: 12px;
      text-align: center;
    }
    address {
      display: none !important;
    }
    #footer-links-mobile {
      display: block;
      padding-top: 25px;
      padding-bottom: 25px;
      background-color: #333;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      font-family: "Poppins", sans-serif;
      color: white;
      width: 80%;
      margin: 0 auto;
      gap: 8px;
    }
    .footer-links h4 {
      font-size: 18px;
      font-weight: 500;
      font-family: "Poppins", sans-serif;
      color: rgba(255, 255, 255, 0.6);
      letter-spacing: 1px;
      margin: 0px;
      padding: 0px;
      margin-bottom: 8px;
    }
    .footer-links .link {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: #ededed;
      padding: 0px;
    }
    .footer-links .link:hover span {
      text-decoration: underline;
    }
    .footer-links .link i {
      font-size: 16px;
      margin-right: 10px;
    }
    .footer-links .link .content span {
      font-size: 12px;
      line-height: 12px;
    }
    .footer-links .location {
      display: flex;
      align-items: center;
      padding: 16px;
      background-color: rgba(255, 255, 255, 0.3);
      border-radius: 5px;
      margin-top: 10px;
      color: white;
      text-decoration: none;
      transition: background-color 0.3s;
    }
    .footer-links .location:hover {
      background-color: rgba(255, 255, 255, 0.4);
    }
    .footer-links .location i {
      font-size: 25px;
      margin-right: 16px;
    }
    .footer-links .location i.fa-angle-right {
      margin-left: auto;
      font-size: 15px;
    }
    .footer-links .location .content {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .footer-links .location .content span {
      font-size: 12px;
      line-height: 12px;
    }
  }</pre></body></html>