@charset "UTF-8";
header {
  position: sticky;
  top: 0;
  height: 50px;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--white);
  padding: 0 10px;
  z-index: 1029;
}
header .header-content{
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.header-logo{
  display: flex;
  align-items: center;
}
.header-logo img{
  height: 30px;
  max-width: 120px;
}
.header-nav{
  height: 100%;
  display: flex;
  align-items: center;
}
.header-nav-list{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}
.header-nav-list > li {
  margin: 0 1em;
}

