.nav {
  position: fixed;
  width: 100%;
  height: 100px;
  background-color: rgba(0, 0, 0, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav > .logoLink {
  order: 1;
  margin-left: 30px;
  line-height: 80px;
  height: 70px;
}
.nav > .logoLink > img {
  width: 70px;
}
.navSearchDiv {
  margin-left: 10px;
  min-width: 50%;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  order: 2;
}
.navSearchDiv:hover,
.navSearchDiv:has(input:focus) {
  background-color: rgba(255, 255, 255, 0.7);
}
.focusBgNone {
  outline: none;
  border-color: transparent;
  box-shadow: none;
}
.navSearchDiv > input {
  min-width: calc(100% - 45px);
  height: 40px;
  background: none;
  border: none;
  position: relative;
  left: 10px;
  top: -4px;
}
.navSearchDiv > button {
  position: relative;
  width: 40px;
  height: 40px;
  background: no-repeat;
  /* background: none; */
  border-radius: 50%;
  color: rgb(0, 0, 0);
  border: none;
  cursor: pointer;
}
.navLinks {
  order: 3;
  margin-right: 10px;
}
.navLink {
  display: inline-block;
  min-width: 100px;
  height: 30px;
  line-height: 30px;
  margin-right: 5px;
  text-decoration: none;
  color: rgb(180, 180, 180);
  text-align: center;
  border-radius: 15px;
}
.navLink:hover {
  color: rgb(255, 255, 255);
  /* background-color: rgba(0, 0, 0, 0.8); */
}
.active {
  color: rgb(255, 255, 255);
}
.hidden {
  visibility: hidden;
}
