.banner-content {
  font-family: var(--font-primary);
}
.banner-content::before {
  background-color: var(--background-secondary);
}

.banner-content-subtitle {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
}
@media (min-width: 768px) {
  .banner-content-subtitle {
    font-size: var(--text-lg);
    line-height: 25px;
  }
}
@media (min-width: 1024px) {
  .banner-content-subtitle {
    color: var(--text-primary);
    font-size: var(--text-xs);
    line-height: 16px;
  }
}
@media (min-width: 1920px) {
  .banner-content-subtitle {
    font-size: var(--text-xs);
    line-height: 24px;
  }
}
.alt-colors .banner-content-subtitle {
  color: var(--text-secondary);
}

.banner-content-title {
  color: var(--text-secondary);
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: bold;
  line-height: 32px;
  text-align: left;
}
@media (min-width: 1024px) {
  .banner-content-title {
    color: var(--text-primary);
    font-size: var(--text-2xl);
    line-height: 40px;
  }
}
.alt-colors .banner-content-title {
  color: var(--text-secondary);
}
.banner-content-title.desktop {
  display: none;
}
@media (min-width: 768px) {
  .banner-content-title.desktop {
    display: block;
  }
}
.banner-content-title.mobile {
  display: block;
}
@media (min-width: 768px) {
  .banner-content-title.mobile {
    display: none;
  }
}

.banner-content-description {
  color: var(--text-secondary);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  line-height: 20px;
}
@media (min-width: 1024px) {
  .banner-content-description {
    color: var(--text-primary);
    font-size: var(--text-base);
    line-height: 24px;
  }
}
.alt-colors .banner-content-description {
  color: var(--text-secondary);
}
.banner-content-description.desktop {
  display: none;
}
@media (min-width: 768px) {
  .banner-content-description.desktop {
    display: block;
  }
}
.banner-content-description.mobile {
  display: block;
}
@media (min-width: 768px) {
  .banner-content-description.mobile {
    display: none;
  }
}

.banner-buttons .btn {
  background-color: var(--background-secondary);
  color: #fff;
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  line-height: 20px;
  /* stylelint-disable-next-line */
  /* stylelint-disable-next-line */
}
.banner-buttons .btn:hover {
  background-color: var(--background-primary);
}
.banner-buttons .btn:focus {
  color: var(--text-primary);
}

/**
* @description Iterates over the $space-gap values and creates a class for each one.
* @param {list} $space-gap - A list of space gap values.
*/
.gap-8 {
  gap: 8px;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

.banner-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 0.9375rem;
  position: relative;
}
.banner-text.margins-enabled {
  margin-top: 4rem;
}

.banner-text-content {
  padding: 1.5rem;
}

.banner-text-content-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "FinalSix-bold", sans-serif;
  font-size: 1.25rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.75rem;
  text-align: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .banner-text-content-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.experience-assets-banner .margins-enabled {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .experience-assets-banner .margins-enabled {
    margin-top: 32px;
  }
}
@media (min-width: 1024px) {
  .experience-assets-banner .margins-enabled {
    margin-top: 28px;
  }
}

/* stylelint-disable-next-line */
.experience-layouts-up1ItemCarousel .margins-enabled {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .experience-layouts-up1ItemCarousel .margins-enabled {
    margin-top: 32px;
  }
}
@media (min-width: 1024px) {
  .experience-layouts-up1ItemCarousel .margins-enabled {
    margin-top: 21px;
  }
}
@media (min-width: 1440px) {
  .experience-layouts-up1ItemCarousel .margins-enabled {
    margin-top: 31px;
  }
}

/*# sourceMappingURL=bannerText.css.map*/