.page-topics-menu {
  position: sticky;
  width: 100%;
  top: 80px;
  left: 0;
  z-index: 98;
  background-color: rgba(255, 255, 255, 0.7);
  height: 56px;
  backdrop-filter: blur(20px);
  transition: all 0.3s;
}

.page-topics-menu:hover {
  background-color: rgba(255, 255, 255, 1);
}

.page-topics-menu > * {
  height: 100%;
}

.page-topics-menu ul {
  margin: 0;
  padding: 0;
}

.page-topics-menu ul li {
  height: 100%;
  display: flex;
  align-items: center;
}

.page-topics-menu a {
  text-decoration: none;
  color: var(--Deep-Purple, #512455);
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 24px */
}

.page-topics-menu li.hoverable-link::after {
  bottom: 0px;
}

.page-topics-menu .page-sections-links {
  gap: 32px;
}

@media only screen and (max-width: 1080px) {
  .page-topics-menu {
    top: 54px;
  }
  .page-sections-links {
    overflow-x: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  .page-sections-links::-webkit-scrollbar {
    display: none;
  }
  .page-sections-links li {
    white-space: nowrap;
  }
}

@media only screen and (max-width: 768px) {
  .page-topics-menu {
    top: 54px;
  }
  .page-sections-links li:first-child {
    margin-left: 24px;
  }
  .page-sections-links li:last-child {
    margin-right: 24px;
  }
}
