.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  text-decoration: none;
  line-height: .82;
}

.brand-symbol {
  width: 44px;
  height: 44px;
  border: 2px solid #1686b8;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 29px;
  color: #1686b8;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.6px;
}

.brand-name small {
  display: block;
  margin-top: 7px;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-brand { min-width: 180px; }
.footer-brand .brand-symbol { width: 52px; height: 52px; font-size: 34px; }
.footer-brand .brand-name { font-size: 23px; }
.footer-top a { color: #1e6a98; text-decoration: none; }
.contact-details { min-width: 175px; }

@media (max-width: 760px) {
  .site-header .brand-symbol { width: 36px; height: 36px; font-size: 23px; }
  .site-header .brand-name { font-size: 17px; }
  .footer-brand, .contact-details { min-width: 100%; }
}

.product-card h2 a,
.product-visual { color: inherit; text-decoration: none; }

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: block;
}

.product-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  z-index: 20;
  min-width: 220px;
  padding: 10px;
  border: 1px solid #e4edf2;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 32px #063e5d24;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s, visibility .18s;
}

.product-menu a {
  display: block;
  padding: 9px 11px;
  border-radius: 6px;
  color: #175a81;
  font-size: 12px;
  text-decoration: none;
  white-space: nowrap;
}

.product-menu a:hover,
.product-menu a:focus-visible {
  background: #edf7fb;
  color: #078ac1;
}

.nav-dropdown:hover .product-menu,
.nav-dropdown:focus-within .product-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

@media (max-width: 760px) {
  .nav-dropdown {
    width: 100%;
  }

  .product-menu {
    position: static;
    min-width: 0;
    padding: 0 0 0 15px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .main-nav .product-menu a {
    padding: 8px 12px;
    border-bottom: 0;
    font-size: 12px;
  }
}
