/* Lead */
.text-block .text-block-lead,
.text-block .text-block-lead p,
.text-block .text-block-lead ul li {
  color: var(--color-primary);
  font-family: var(--font);
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.4;
}
.text-block .text-block-lead p:last-child {
  margin-bottom: 0;
}
.text-block .text-block-lead b,
.text-block .text-block-lead strong {
  font-weight: 700;
}
.text-block .font-size-lead.text-block-link a {
  font-family: var(--font);
  font-size: 1.6875rem;
}
.text-block .font-size-lead .text-block-link-arrow .arrow-svg {
  width: 2.25rem;
  height: 2.25rem;
}


/* Text */
.text-block .text-size-big p {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
}
.text-block .text-block-text p:last-child {
  margin-bottom: 0;
}
.text-block-text {
  font-family: var(--font);
  font-size: 1.125rem;
}
.text-block-text a {
  text-decoration: underline;
}


/* Link */
.text-block-link a {
  font-family: var(--font);
  font-size: 1.375rem;
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 0;
  margin-bottom: 1rem;
}
.text-center .text-block-link a {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.text-block-link-arrow {
  margin-left: 0.75rem;
  -webkit-transition: all .25s ease-out;
  transition: all .25s ease-out;
}
.text-block-link a:hover .text-block-link-arrow {
  transform: translateX(0.5rem);
}
.text-block-link-arrow .arrow-svg {
  width: 1.75rem;
  height: 1.75rem;
}


/* Button */
.text-block .btn {
  margin-top: 3rem;
}



/***************   Mobile    ***************/

@media all and (max-width: 1799px) {
  .text-block .text-block-lead,
  .text-block .text-block-lead p,
  .text-block .text-block-lead ul li {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}

@media all and (max-width: 1439px) {
  .text-block .text-block-lead,
  .text-block .text-block-lead p,
  .text-block .text-block-lead ul li {
    font-size: 1.5rem;
  }
  .text-block .text-size-big p {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

@media all and (max-width: 1023px) {
  .text-block .text-block-lead,
  .text-block .text-block-lead p,
  .text-block .text-block-lead ul li {
    font-size: 1.25rem;
  }
  .text-block-text {
    font-size: 1rem;
  }
  .text-block-text p {
    margin-bottom: 1.5rem;
  }
  .text-block-link a {
    font-size: 1rem;
  }
  .text-block .text-size-big p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}

@media all and (max-width: 639px) {
  .text-block .text-block-title,
  .text-block .text-block-text,
  .text-block .text-block-lead,
  .text-block .text-block-link {
    margin: 0;
    text-align: left;
  }
}