#glossary {
  padding: 5rem 0 8rem;
}

@media screen and (max-width: 724px) {
  #glossary {
    padding: 3rem 0 6rem;
  }
}
.filtering__list {
  margin-bottom: 10rem;
}

.filtering__item {
  text-decoration: none;
}

.glossary__block {
  margin-bottom: 11rem;
}
.glossary__block:last-child {
  margin-bottom: 0;
}

.glossary__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4rem;
}
.glossary__item:last-child {
  margin-bottom: 0;
}
.glossary__item dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 22rem;
  padding-right: 3rem;
  font-size: 2.2rem;
  font-weight: 700;
  color: #054A97;
}
.glossary__item dd {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media screen and (max-width: 724px) {
  .glossary__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .glossary__item dt {
    width: 100%;
    margin-bottom: 0.8rem;
    padding-right: 0;
  }
  .glossary__item dd {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}