/*
 * The header and footer use separate Lottie instances. Their dimensions match
 * the native 132 × 67 logo composition so Webflow's renderer cannot expand a
 * canvas beyond its intended brand area.
 */
.q-logo-lottie {
  display: block;
  width: 132px;
  height: 67px;
  max-width: 132px;
  max-height: 67px;
  overflow: hidden;
}

.q-logo-lottie > canvas,
.q-logo-lottie > svg {
  display: block;
  width: 132px !important;
  height: 67px !important;
  max-width: 132px !important;
  max-height: 67px !important;
}

.q-logo-static {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .q-logo-lottie {
    display: none;
  }

  .q-logo-static {
    display: block !important;
    width: 132px;
    height: auto;
  }

  .footer .footer-logo .q-logo-static {
    margin: 0 auto;
  }
}
