.menu-iter {
  background-color: #f4f6fd;
  position: sticky;
  z-index: 50;
  top: 0;
  width: 100%;
  border-bottom: 1px solid #C1C6D6;
}

.menu-iter .container {
  padding: 14px 32px;
  max-width: 1384px;
  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: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  font-size: 16px;
  width: max-content;
  padding: 2px;
  color: #566077;
  height: fit-content;
}
.menu-iter .content a > .desktop {
  display: flex;
}
.menu-iter .content a > .mobile {
  display: none;
}

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

.menu-iter .information {
  display: flex;
  align-items: center;
  gap: 32px;
}
.menu-iter .information a {
  cursor: pointer;
  padding: 11px 32px;
  background-color: #0098cd;
  border: 1px solid #0098cd;
  border-radius: .25rem;
  color: #fff;
  display: flex;
  height: fit-content;
  width: max-content;
  justify-content: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
  text-align: center;
  text-decoration-line: none;
  transition: background-color .3s, color .3s;
}

.menu-iter .information a:hover {
  background-color: transparent;
  color: #0098cd;

}

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

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

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