.navbar {
  background-color: var(--white);
  border-bottom: 1px solid rgba(185, 185, 185, 1);
  z-index: 1000;
  position: fixed;
}

.navbar .nav-item {
  padding-right: calc(100vw * 0.02) !important;
  padding-left: calc(100vw * 0.02) !important;
}

.navbar .nav-link {
  position: relative;    
  color: var(--primary-color);
  text-decoration: none;
  font-size: calc(1.25rem * var(--screen-scale));
  font-style: normal;
  font-weight: 700;
  line-height: 1.25rem; /* 125% */
  padding-right: 0 !important;
  padding-left: 0 !important;
  width: fit-content;
}

.navbar .nav-link.active {
  color: var(--accent-red); /* Sets the text color to red */
}

.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-red);
}

.navbar .menu-content {
  height: 100%;
}

.navbar .nav-logo {
  text-align: center;
  align-self: center;
}

.navbar .nav-menu {
  align-self: center;
}

.navbar-brand {
  width: 25%;
}
