.text_block {
  padding: 11rem 0;
  background-color: #FDFDFD;
}
@media only screen and (max-width: 834px) {
  .text_block {
    padding: 9rem 0;
  }
}
.text_block__inner {
  margin: 0 auto;
  max-width: 88rem;
  text-align: center;
}
.text_block__inner * {
  color: #1A4352;
}
.text_block__head {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}
.text_block__content {
  margin: 0 auto 4rem;
  max-width: 84rem;
}
.text_block__content:last-child {
  margin-bottom: 0;
}
.text_block__content p, .text_block__content ul, .text_block__content ol {
  margin-bottom: 1.6rem;
}
.text_block__content p:last-child, .text_block__content ul:last-child, .text_block__content ol:last-child {
  margin-bottom: 0;
}
.text_block__content ul, .text_block__content ol {
  padding-left: 2.3rem;
}
.text_block__content p, .text_block__content li, .text_block__content span, .text_block__content a {
  font-size: 2rem;
}
@media only screen and (max-width: 576px) {
  .text_block__content p, .text_block__content li, .text_block__content span, .text_block__content a {
    font-size: 1.8rem;
  }
}
.text_block__content a {
  font-weight: 700;
  display: inline-flex;
}
.text_block__content a:before {
  content: "";
  position: absolute;
  bottom: -0.1rem;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background-color: currentColor;
  transition: all ease-in-out 0.3s;
}
.text_block__content a:hover:before {
  opacity: 0;
}
.text_block__button {
  margin: 0 auto;
}