.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  color: white;
  background-color: rgba(24, 50, 47, 255);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  padding: 0 50px;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.header.scrolled {
  height: 40px;
}

.header.scrolled #logo {
  font-size: 1.2rem;
}

.header.scrolled #search,
.header.scrolled #menu {
  font-size: 1.5rem;
}
.header .logo img {
  height: 60px;
}
.logo {
  font-size: 2rem;
  margin-left: 20px;
}

.lists {
  list-style: none;
  display: flex;
  gap: 50px;
}

.lists .sub-list {
  margin-left: 20px;
  list-style: none;
}

.lists .sub-list a {
  text-decoration: none;
  color: white;
}

.lists .sub-list span i {
  font-size: 1.5rem;
  cursor: pointer;
}

#search,
#menu {
  font-size: 2rem;
  cursor: pointer;
}
#menu {
  display: none;
}
#search span,
#menu span {
  font-size: 1rem;
  margin-right: 5px;
}
#search span i,
#menu span i {
  margin-left: 10px;
}
.short-menu {
  width: 100%;
  height: 400px;
  background-color: rgba(24, 50, 47, 255);
  padding: 20px;
  display: flex;
  justify-content: space-around;
  /* gap: 100px; */
  font-size: 18px;
  margin-top: 430px;
  display: none;
  position: fixed;
  top: -400px;
  margin-left: -50px;
  box-shadow: 1px 1px 1px 1px rgba(24, 50, 47, 255);
}
.short-menu ul {
  list-style: none;
}
.short-menu ul .sub-list {
  padding: 20px;
}
.short-menu ul .sub-list a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.short-menu .close {
  margin-top: 20px;
  color: white;
}
.close span i {
  cursor: pointer;
  font-size: 30px;
  margin-top: 20px;
  margin-left: 5px;
}
