/* Preserve the complete supplied logo without cropping or distortion. */
.navbar {
  padding-block: .55rem;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.navbar-brand img {
  display: block;
  width: clamp(72px, 6vw, 88px) !important;
  height: clamp(72px, 6vw, 88px) !important;
  max-width: none;
  aspect-ratio: 1 / 1;
  object-fit: contain !important;
  object-position: center;
  border-radius: 0;
  padding: 2px;
  background: #fff;
}

.footer-logo {
  display: block;
  width: 104px !important;
  height: 104px !important;
  aspect-ratio: 1 / 1;
  object-fit: contain !important;
  object-position: center;
  border-radius: 0;
  padding: 2px;
  background: #fff;
}

@media (max-width: 575px) {
  .navbar-brand img {
    width: 66px !important;
    height: 66px !important;
  }

  .footer-logo {
    width: 88px !important;
    height: 88px !important;
  }
}
