/**
Include icons in scss/css.
Usage: 
 @include icon(close);
*/
/*
Media query mixin.
Usage: 
@include media($bp-l, min)
*/
/*
Mixin to add loading spinner to button/element.
Usage: 
@include loading()
*/
.rich-text-section {
  position: relative;
  display: block;
}

.rich-text-section__container {
  --desktop-spacing: 6.5rem;
  --mobile-spacing: 4rem;
  width: 100%;
  box-sizing: border-box;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 var(--container-side-space);
  display: flex;
  height: 100%;
  position: relative;
  padding-bottom: var(--mobile-spacing);
  padding-top: var(--mobile-spacing);
}
@media only screen and (min-width: 768px) {
  .rich-text-section__container {
    padding-bottom: var(--desktop-spacing);
    padding-top: var(--desktop-spacing);
  }
}
.rich-text-section__container--smaller-space {
  --desktop-spacing: 5rem;
  --mobile-spacing: 2.5rem;
}
.rich-text-section__container--h-center {
  justify-content: center;
}
.rich-text-section__container--h-left {
  justify-content: flex-start;
}
.rich-text-section__container--h-right {
  justify-content: flex-end;
}
.rich-text-section__container--v-center {
  align-items: center;
}
.rich-text-section__container--v-top {
  align-items: flex-start;
}
.rich-text-section__container--v-bottom {
  align-items: flex-end;
}

.rich-text-section__content {
  display: flex;
  gap: 0.5rem;
  flex-flow: column;
  text-align: center;
  height: 100%;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .rich-text-section__content {
    width: 100%;
    max-width: 54.375rem;
  }
}

.rich-text-section__content-eyebrow {
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 600;
  letter-spacing: -0.0125rem;
}
@media (min-width: 992px) {
  .rich-text-section__content-eyebrow {
    font-size: 1.25rem;
  }
}
.rich-text-section__content-eyebrow a {
  color: inherit;
}

.rich-text-section__content-title {
  font-size: 2rem;
  line-height: 130%;
  font-weight: 600;
  letter-spacing: -0.0875rem;
}
@media (min-width: 992px) {
  .rich-text-section__content-title {
    font-size: 3rem;
  }
}
.rich-text-section__content-title a {
  color: inherit;
}
.rich-text-section__content-title--bottom-space {
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .rich-text-section__content-title--bottom-space {
    margin-bottom: 1rem;
  }
}

.rich-text-section__content-icon {
  margin-bottom: 1rem;
}

.rich-text-section__buttons {
  margin-top: 1.5rem;
}
@media only screen and (max-width: 575px) {
  .rich-text-section__buttons {
    margin-top: 1.25rem;
    width: 100%;
  }
}

.rich-text-section__buttons--center {
  justify-content: center;
}

.rich-text-section__buttons--left {
  justify-content: flex-start;
}

.rich-text-section__buttons--right {
  justify-content: flex-end;
}

.rich-text-section__buttons a {
  width: auto;
}

.rich-text-section__buttons .primary-button {
  padding-left: 4.25rem;
  padding-right: 4.25rem;
}

.rich-text-section__content--center {
  text-align: center;
  align-items: center;
}

.rich-text-section__content--left {
  text-align: left;
  align-items: flex-start;
}

.rich-text-section__content--right {
  text-align: right;
  align-items: flex-end;
}

.rich-text-section__button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .rich-text-section__button {
    gap: 1.5rem;
  }
}
.rich-text-section__button--center {
  justify-content: center;
}
.rich-text-section__button--left {
  justify-content: flex-start;
}
.rich-text-section__button--right {
  justify-content: flex-end;
}
.rich-text-section__button a {
  width: auto;
}
