.header {
  width: 100%;
  min-width: 1024px;
  height: 80px;
  position: fixed;
  top: -80px;
  left: 0;
  z-index: 999;
}

.header-show {
  transform: translateY(80px);
}

.header-animation {
  transition: transform 0.2s ease;
}

.header-bg {
  backdrop-filter: blur(10px);
  background: hsla(0, 0%, 100%, 0.8);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 66px;
  width: 100%;
  height: 80px;
  background: rgba(105, 105, 105, 0.1);
  box-sizing: border-box;
}

.header-logo {
  width: 164px;
  height: 42px;
  cursor: pointer;
}

.header-logo-img {
  width: 100%;
  height: 42px;
}

.colour {
  display: none;
}

.header-bg .colour {
  display: inline-block;
}

.header-bg .normal {
  display: none;
}

.header-bg .menu-wrapper {
  color: #646a73;
}

.menu-wrapper {
  display: flex;
  height: 80px;
  color: #ffffff;
}

.menu-item {
  position: relative;
  margin-left: 40px;
}

.menu-item-account::before {
  content: "";
  display: block;
  height: 10px;
  position: absolute;
  bottom: 35px;
  left: -20px;
  border-right: 1px solid #fff;
}

.header-bg .menu-item-account::before {
  border-right: 1px solid #bbbfc4;
}

.menu-item-link {
  position: relative;
  font-weight: 400;
  font-size: 14px;
  line-height: 80px;
  cursor: pointer;
  margin: 0;
}

.header-bg .menu-item-link a {
  color: #646a73;
}

.menu-item-link a {
  color: #ffffff;
  width: 100%;
  height: 100%;
  display: inline-block;
}

.menu-item-link:hover a {
  color: hsla(0, 0%, 100%, 0.5);
}

.header-bg .menu-item-link:hover a {
  color: #3370ff;
}

.menu-item.active .menu-item-link {
  font-weight: 800;
}

.menu-item.active .menu-item-link a::after {
  opacity: 1;
}

.menu-item-link a::after {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  width: 24px;
  left: calc(50% - 12px);
  bottom: 14px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  background-color: #ffffff;
}

.header-bg .menu-item-link a::after {
  background-color: #3370ff;
}

.header-bg .menu-item.active .menu-item-link a {
  color: #3370ff;
}

.menu-item.active .menu-item-link a {
  color: #ffffff;
}

@media screen and (max-width: 1060px) {
  .header-content {
    padding: 0 30px;
  }
}
