.content {
  position: relative;
  padding: 5rem 0;
}
.content__container {
  max-width: 49.75rem;
  width: 100%;
  margin: 0 auto;
}
.content__title {
  background: linear-gradient(-165deg, #FF7300 0%, #FEA550 60%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3.75rem;
}
.content__text {
  font-size: max(1.125rem, 14px);
  line-height: 140%;
  color: var(--white-08);
  opacity: 0.8;
}
.content__text a {
  color: var(--white);
  -webkit-transition: color var(--hover-transition);
  transition: color var(--hover-transition);
}
@media (any-hover: hover) {
  .content__text a:hover {
    color: #ff8017;
  }
}
.content__text > *:not(:last-child) {
  margin-bottom: 1.6875rem;
}
@media (max-width: 768px) {
  .content {
    padding: 60px 0 120px;
  }
  .content__title {
    margin-bottom: 40px;
  }
  .content__text {
    font-size: 16px;
  }
  .content__text > *:not(:last-child) {
    margin-bottom: 16px;
  }
}
/*# sourceMappingURL=content.css.map */