.menu-bar {
  width: 100%;
  background-color: #196ca2;
}

.menu-bar .menu-bar-main {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap: 32px;
  width: 1440px;
  margin: 0 auto;
}

.menu-bar .menu-item {
  display: block;
  width: fit-content;
  cursor: pointer;
  color: #ffffff;
  font-size: 18px;
  line-height: 48px;
  font-weight: 700;
  text-align: center;
  padding: 0 16px;
}

.menu-bar .menu-item.active {
  position: relative;
}

.menu-bar .menu-item.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #FAAB66;
}