.banner {
  background-color: var(--primary);
  padding: 13rem 0 6rem;
}
.banner__title {
  text-align: center;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: 5.2rem;
}
@media only screen and (min-width: 992px) {
  .banner__title {
    font-size: 6.4rem;
  }
}

.text .container {
  max-width: 69rem;
}
@media only screen and (min-width: 992px) {
  .text {
    padding: 8rem 0 10rem;
  }
}
.text__wrap {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
}
@media only screen and (min-width: 768px) {
  .text__wrap {
    font-size: 1.6rem;
  }
}
.text__wrap a {
  font-size: inherit;
  font-weight: inherit;
  color: var(--black);
  text-decoration: underline;
}
.text__wrap span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  text-decoration: underline;
}
.text__wrap h5 {
  font-weight: 600;
  line-height: 1.2;
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .text__wrap h5 {
    font-size: 1.8rem;
  }
}
.text__wrap p,
.text__wrap li {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
}
@media only screen and (min-width: 768px) {
  .text__wrap p,
  .text__wrap li {
    font-size: 1.6rem;
  }
}
.text__wrap h5 + p {
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
  .text__wrap h5 + p {
    margin-top: 2rem;
  }
}
.text__wrap h5 + ul,
.text__wrap h5 + ol {
  margin-top: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .text__wrap h5 + ul,
  .text__wrap h5 + ol {
    margin-top: 2rem;
  }
}
.text__wrap ol,
.text__wrap ul {
  padding-left: 1.6rem;
}
.text__wrap ul {
  list-style: disc;
}
.text__wrap ul li {
  list-style: disc;
}
.text__wrap ul + p,
.text__wrap ol + p {
  margin-top: 2rem;
}
.text__wrap ul + h5,
.text__wrap ol + h5 {
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .text__wrap ul + h5,
  .text__wrap ol + h5 {
    margin-top: 4rem;
  }
}
.text__wrap p + h5 {
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .text__wrap p + h5 {
    margin-top: 4rem;
  }
}
.text__wrap p + p {
  margin-top: 3rem;
}
.text__wrap p + ol,
.text__wrap p + ul {
  margin-top: 2rem;
}