.nav-bar2 {
  background-color: #EEEEEE;
  border-bottom: 1px solid #e0e0e0;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  white-space: nowrap;
  position: fixed;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 700px) {
  .nav-bar2 {
    justify-content: start;
  }
}
.nav-bar2 .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-bar2 #nav-menu-2 {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0 10px;
  justify-content: flex-end;
}
@media screen and (max-width: 700px) {
  .nav-bar2 #nav-menu-2 {
    overflow-x: auto;
    white-space: nowrap;
    padding-left: 10px;
    justify-content: start;
  }
  .nav-bar2 #nav-menu-2 li:first-child {
    margin-left: 0;
    padding-left: 0;
    justify-content: right;
  }
  .nav-bar2 #nav-menu-2 a {
    font-size: 12px;
    padding: 8px 10px;
    overflow: visible;
    text-align: right;
  }
}
.nav-bar2 #nav-menu-2 li {
  display: inline;
}
.nav-bar2 #nav-menu-2 li a {
  text-decoration: none;
  color: #333;
  font-weight: 400;
  padding: 10px 15px;
  transition: background-color 0.6s, color 0.3s, font-weight 0.75s;
}
.nav-bar2 #nav-menu-2 li a.selected {
  font-weight: 700;
}
.nav-bar2 #nav-menu-2 li a:hover {
  font-weight: 700;
}

body {
  overflow-x: hidden;
}/*# sourceMappingURL=navbar-2.css.map */