.another-header {
  position: fixed;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px 22px;
  background-color: rgba(255, 255, 255, 0.5);
}

.icon-logo {
  position: absolute;
  top: 25px;
}

.accordion {
  margin: 8px auto;
  max-width: 60vw;
  margin-right: 50px;
  margin-bottom: 0;
}

.toggle {
  display: none;
}

.option {
  position: relative;
  margin-bottom: 1em;
}

.title,
.menu-list {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.title {
  cursor: pointer;
  padding: 8px;
  display: block;
  color: #333;
  font-size: 25px;
  font-weight: bold;
  padding-left: 0;
}

.title::after,
.title::before {
  content: '';
  position: absolute;
  right: 1.25em;
  top: 1.25em;
  width: 2px;
  height: 0.75em;
  transition: all 0.3s;
}

.title::after {
  transform: rotate(90deg);
}

.menu-list {
  max-height: 0;
  overflow: hidden;
}

.menu-list ul {
  list-style: none;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 0;
}

.menu-list a {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  color: #83d3e2;
  -webkit-text-stroke: 0.3px black;
}

.menu-list ul::before.menu-list li::before .menu-list a::before {
  content: attr(data-text);
  position: absolute;
  color: black;
  width: 0;
  overflow: hidden;
  transition: 1s;
}

.menu-list ul:hover:before .menu-list li:hover:before .menu-list a :hover::before {
  width: 100%;
}

.toggle:checked + .title + .menu-list {
  max-height: 500px;
  transition: all 0.8s;
}

.toggle:checked + .title::before {
  transform: rotate(90deg) !important;
}
