/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.text-block.width-wide .container {
  max-width: 119rem;
}
.text-block.width-full .container {
  max-width: 100%;
}
.text-block.size-big {
  font-size: 2rem;
  line-height: normal;
  font-weight: 500;
}
.text-block.size-medium {
  font-size: 1.8rem;
  line-height: 2.6rem;
}
.text-block .container {
  max-width: 75rem;
  margin: 0 auto;
}
.text-block h1, .text-block h2, .text-block h3, .text-block h4, .text-block h5, .text-block h6 {
  margin: 0 0 2.5rem;
}
.text-block p, .text-block li {
  margin: 0 0 2rem;
}
.text-block p:last-child, .text-block li:last-child {
  margin: 0;
}
.text-block ul {
  list-style: none;
  padding-left: 2.6rem;
}
.text-block li {
  position: relative;
  margin: 0 0 0.3rem;
}
.text-block li:before {
  position: absolute;
  top: 0.6rem;
  left: -26px;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50px;
  background-color: #7A939C;
}

@media (max-width: 768px) {
  .text-block.size-big {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  .text-block.size-medium {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
}