
.menu-iter {
  border-bottom: 1px solid #e5e5e5;
  background-color: #eaedf8;
  position: sticky;
  z-index: 15;
  top: 0;
  width: 100%;
  padding: 14px 32px;
}

.menu-iter .container {
  max-width: 1320px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.menu-iter .content {
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: scroll;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.menu-iter .content::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.menu-iter .content a {
  font-size: 16px;
  width: max-content;
  line-height: 28px;
  padding: 2px;
  color: #566077;
  height: fit-content;
}
.menu-iter .content a:hover {
  border-bottom: solid 1px black;
}
.menu-iter .content a > .desktop {
  display: flex;
}
.menu-iter .content a > .mobile {
  display: none;
}

.menu-iter .content a.active {
  border-bottom: 1px solid black;
  font-weight: bold;
}

.menu-iter .information {
  display: flex;
  align-items: center;
  gap: 32px;
}
.menu-iter .information > div > span {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  text-align: end;
}
.menu-iter .information p {
  font-weight: 600;
  width: max-content;
  font-size: 14px;
  line-height: 20px;
  color: #010741;
}
.menu-iter .information a {
  padding: 12px 31px !important;
}

@media (max-width: 1319px) {
  .menu-iter .content {
    gap: 16px;
  }
  .menu-iter .information {
    gap: 16px;
  }
}

@media (max-width: 1249px) {
  .menu-iter {
    padding: 14px 24px;
  }
}

@media (max-width: 1023px) {
  .menu-iter {
    border-top: 1px solid #e5e5e5;
    padding: 16px;
  }
  .menu-iter .information {
    display: none;
  }
  .menu-iter .content a > .desktop {
    display: none;
  }
  .menu-iter .content a > .mobile {
    display: flex;
  }
}
