.words-glossary__head {
  position: fixed;
  top: 104px;
  left: 0;
  padding: 2rem 0 0 0;
  background: white;
  width: 100%;
  border-bottom: 3px solid var(--ada-page-color);
}

.words-glossary__header {
  margin-bottom: 2rem;
}

.words-glossary__header ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.words-glossary__header li {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 2.5rem;
  position: relative;

  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.words-glossary__header li a {
  color: black;
  text-decoration: none !important;
}

.words-glossary__header li a:hover {
  text-decoration: none;
}

.words-glossary__header li::before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: var(--ada-page-color);
  border-radius: 100%;
  top: 0rem;
  left: 0rem;
  z-index: -1;
  opacity: 0;
}

.words-glossary__header li.active a {
  color: white;
}

.words-glossary__header li.active::before {
  opacity: 1;
}

.words-glossary__list {
  margin-bottom: 2rem;
}

.words-glossary__group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.words-glossary__group a {
  color: black !important;
  text-decoration: none !important;
  font-size: 2rem;
}

.words-glossary__content {
  padding-top: 110px;
}

.words-glossary__groupall {
  margin-bottom: 4rem;
}

.words-glossary__groupall h2 {
  color: black !important;
  font-size: 6rem;
  margin-bottom: 0;
  line-height: 1;
  text-transform: uppercase;
}

.words-glossary__word h3 {
  scroll-margin-top: 250px;
}