.header-dcv-evoting {
  height: 92px;
  position: fixed;
  z-index: 101;
  width: 100%;
}
.nav-dcv-evoting {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px 20px;
}
.nav-brand img {
  height: 26px;
}
.nav-brand img:first-child {
  margin-right: 10px;
}
.menu {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  z-index: 101;
  top: 92px;
  left: 0;
  width: 100%;
  transition: 0.3s;
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu li {
  margin-top: 15px;
}
.menu li a {
  text-decoration: none;
}
.menu li .menu-item:hover {
  color: #ffffffd3;
}
.menu.show {
  padding-bottom: 20px;
  max-height: 500px;
}
.btn-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 28px;
}
.btn-toggle span {
  width: 100%;
  max-width: 100%;
  height: 4px;
  background-color: #fff;
  transition: 0.3s;
  border-radius: 5px;
  position: relative;
  display: block;
}
.btn-toggle.active span:nth-child(2) {
  max-width: 0;
}
.btn-toggle.active span:nth-child(1),
.btn-toggle.active span:nth-child(3) {
  max-width: none;
  width: 110%;
}
.btn-toggle.active span:nth-child(1) {
  top: 9px;
  transform: rotate(-45deg);
}
.btn-toggle.active span:nth-child(3) {
  transform: rotate(45deg);
  bottom: 9px;
}
@media (min-width: 768px) {
  .nav-dcv-evoting {
    padding: 20px;
  }
  .menu {
    position: inherit;
    max-height: none;
    flex-direction: row;
    width: auto;
    gap: 20px;
  }
  .menu li {
    margin-top: 0;
  }
  .btn-toggle {
    display: none;
  }
}
@media (min-width: 992px) {
  .nav-brand img {
    height: 39px;
  }
}
@media (min-width: 1200px) {
  .header-dcv-evoting {
    height: 100px;
  }
  .menu {
    gap: 30px;
  }
  .menu .btn-dcv-evoting {
    margin-left: 40px;
  }
}
