.document {
  font: 18px/25px $font-leksa;
  p {
    hyphens: auto;
    margin-bottom: 17px;
    & + li,
    & + ol {
      margin-top: -10px;
    }
  }
  h1 {
    font: 30px/35px $font-leksa;
    margin-bottom: 36px;
  }
  h2 {
    font: 35px/1 $font-futurademi;
    margin-top: 36px;
    margin-bottom: 19px;
  }
  h3 {
    font: 25px/1 $font-futurademi;
    margin-top: 30px;
    margin-bottom: 21px;
  }
  h4 {
    font: 19px/20px $font-futurademi;
    margin-top: 30px;
    margin-bottom: 19px;
  }
  b {
    font-family: $font-futurademi;
  }
  ol {
    counter-reset: list;
    margin-bottom: 17px;
    ol {
      margin-left: 25px;
    }
  }
  li {
    position: relative;
    display: block;
    hyphens: auto;
    margin-bottom: 7px;
    padding-left: 30px;
    counter-increment: list 1;
    &:before {
      content: counter(list) '. ';
      position: absolute;
      left: 0;
      top: 0;
    }
  }
  &-list {
    &_fourth {
      li {
        &:before {
          content: '•';
        }
      }
    }
    &__header {
      margin-bottom: 25px;
      &:before {
        font-weight: bold;
      }
    }
  }
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
