.text-block {
  width: 100%;
}

.text-block.is-fixed-width {
  max-width: 1100px;
  margin: 0 auto;
}

.text-block.is-full-width {
  max-width: none;
  margin: 0;
}

.text-block__title {
  font-size: 32px;
  font-weight: 700;
  font-family: "Helvetica Neue", sans-serif;
  line-height: 100%;
  margin-bottom: 24px;
}

.text-block__content {
  font-size: 20px;
  font-weight: 400;
  font-family: "Helvetica Neue", sans-serif;
  line-height: 150%;
  color: #424242;
  text-align: justify;
}
.text-block__content ul {
  list-style: none;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.text-block__content li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.text-block__content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  background-color: #FFB000;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .text-block {
    padding-left: 1rem;
    padding-right: 1rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  .text-block__content ul {
    padding-left: 0;
  }

}