.navbar {
  font-family: 'Poppins';
}

.nav-link a {
  padding: 0 2px;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.nav-link:before {
  content: "";
  position: absolute;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: var(--bs-primary);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-link, .nav-link:focus {
  font-size: 16px;
  padding: 0 2px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.nav-link:hover:before, .nav-link.active:before {
  visibility: visible;
  width: 100%;
}

.nav-link.active, .nav-link.active:focus {
  color: var(--bs-primary) !important;
}

.navbar-collapse {
  padding: 0;
}

.navbar-nav {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-item {
  position: relative;
  white-space: nowrap;
  padding: 15px 14px;
}

.nav-item:last-child {
  /*padding-right: 0;*/
}

.nav-link:hover {
  color: var(--bs-primary) !important;
}

.nav-spacer {
  height: 110px;
}

.dropdown-item:hover {
  font-family: inherit;
  font-size: inherit;
  color: var(--bs-primary);
  background-color: inherit;
}

.dropdown-menu {
  font-family: 'Poppins';
  color: #444444;
  font-size: 15px;
}

.dropdown {
}

a:has([data-id="branding"]) {
  /*display: none;*/
}

/* makes anchor jumps account for navbar height */

section[id] {
  scroll-margin-top: var(--navbar-height);
}

/* Brand logo and text */

.navbar-brand {
  height: 65px;
}

.navbar-brand-logo {
  width: 60px;
  min-width: 60px;
}

/* used to stop signature from bullying the CTA button. But now the entire sig is gone on md=< */

