/**
 * Hero Banner — ships as style.css.
 *
 * From theme root (rsi-rcm): `npm run compile:blocks`.
 *
 * @package Rsi_Rcm
 */
/* stylelint-disable-next-line wrap-rem-on-px/wrap-rem-on-px */
/* stylelint-disable wrap-rem-on-px/wrap-rem-on-px */
/* stylelint-enable wrap-rem-on-px/wrap-rem-on-px */
/*
USAGE:
font-size: fluid(12, 62); : from rem(12)@380px to  rem(62)@1440px
gap: fluid(10, 33, 992);  : from rem(10)@991px to  rem(33)@1440px
margin-right: fluid(32, 65, 320, 2560);  : from rem(32)@320px to  rem(65)@2560px
*/
/*
AUTOFILL

USAGE:
@include mixin.autofill(background-color, text-color);
@include mixin.autofill;

Note: Call this mixin in the wrapper or container to where you intend to manipulate the
      default chrome autofill styles for input, textarea and select elements.
*/
/* stylelint-disable */
/* stylelint-enable */
/**
 * Hero Banner — ships as style.css.
 *
 * From theme root (rsi-rcm): `npm run compile:blocks`.
 *
 * @package Rsi_Rcm
 */
.l-h1-v1 {
  font-size: 3.8125rem;
  font-weight: 700;
  line-height: 1;
}

.l-h1-v2 {
  font-size: 3.3125rem;
  font-weight: 700;
  line-height: 1;
}

@media screen and (min-width:1199px) {
  .l-h1-v2 {
    font-size: 8.4375rem;
    font-weight: 700;
    line-height: 1;
  }
}
.l-h2-v1 {
  font-size: 2.4375rem;
  font-weight: 400;
  line-height: 1.2;
}

@media screen and (min-width:1199px) {
  .l-h2-v1 {
    font-size: 3.8125rem;
    font-weight: 400;
    line-height: 1;
  }
}
.l-h2-v2 {
  font-size: 1.9375rem;
  font-weight: 500;
  line-height: 1.2;
}

@media screen and (min-width:1199px) {
  .l-h2-v2 {
    font-size: 3.8125rem;
    font-weight: 500;
    line-height: 1;
  }
}
.l-h2-v3 {
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: 1.2;
}

@media screen and (min-width:1199px) {
  .l-h2-v3 {
    font-size: 3.0625rem;
    font-weight: 700;
    line-height: 1.2;
  }
}
.l-h3 {
  font-size: 2.4375rem;
  font-weight: 700;
  line-height: 1.2;
}

.l-h4 {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.2;
}

@media screen and (min-width:1199px) {
  .l-h4 {
    font-size: 1.9375rem;
    font-weight: 700;
    line-height: 1.2;
  }
}
.l-body-lg {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}

.l-body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

.l-body-sm {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.2;
}

.l-button {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03rem;
}

.l-eyebrow {
  font-size: 1.5625rem;
  font-weight: 400;
  line-height: 1.2;
}

section.section.section--hero-banner {
  position: relative;
  overflow: hidden;
  padding: 6.4375rem 0 4.75rem;
}
@media screen and (min-width:1199px) {
  section.section.section--hero-banner {
    padding: 8.125rem 0 7.25rem;
  }
}
section.section.section--hero-banner > .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
section.section.section--hero-banner .hero-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: var(--dark-purple);
}
section.section.section--hero-banner .hero-banner__media--gradient-default {
  background-image: radial-gradient(120% 80% at 87% 74%, rgba(0, 165, 151, 0.8) 0%, rgba(0, 165, 151, 0) 55%), linear-gradient(188deg, var(--purple) 39%, #d10077 157%), linear-gradient(192deg, var(--dark-purple) 25%, var(--purple) 110%);
}
section.section.section--hero-banner .hero-banner__media--gradient-blue {
  background-image: radial-gradient(50.08% 48.95% at 85% 90.3%, rgba(151, 95, 228, 0.5) 0%, rgba(151, 95, 228, 0) 100%), linear-gradient(212deg, #20104a -22.18%, #4b25b0 106.43%);
}
section.section.section--hero-banner .hero-banner__media picture,
section.section.section--hero-banner .hero-banner__media video,
section.section.section--hero-banner .hero-banner__media iframe,
section.section.section--hero-banner .hero-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
section.section.section--hero-banner .hero-banner__media iframe {
  pointer-events: none;
}
section.section.section--hero-banner.hero-banner--overlay .hero-banner__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
section.section.section--hero-banner.hero-banner--overlay picture,
section.section.section--hero-banner.hero-banner--overlay video,
section.section.section--hero-banner.hero-banner--overlay iframe {
  position: relative;
  z-index: 0;
}
section.section.section--hero-banner .rsi.hero-banner .hero-banner__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8125rem;
  max-width: 100%;
}
@media screen and (min-width:1199px) {
  section.section.section--hero-banner .rsi.hero-banner .hero-banner__content {
    gap: 1.625rem;
    max-width: 48.0625rem;
  }
}
@media screen and (min-width:1199px) {
  section.section.section--hero-banner .rsi.hero-banner .hero-banner__content--narrow {
    max-width: 39.875rem;
  }
}
section.section.section--hero-banner .hero-banner__cta {
  align-self: flex-start;
}
@media screen and (min-width:1199px) {
  section.section.section--hero-banner .hero-banner__cta {
    margin-top: 0.4375rem;
  }
}
section.section.section--hero-banner .hero-banner__callout {
  width: 100%;
  max-width: 41.5rem;
  margin-top: 0.125rem;
}
section.section.section--hero-banner .hero-banner__callout-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1.4375rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0.25rem 0.375rem -0.25rem rgba(0, 0, 0, 0.1), 0 0.625rem 0.9375rem -0.1875rem rgba(0, 0, 0, 0.1);
}
section.section.section--hero-banner .hero-banner__callout-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--purple);
  box-shadow: 0 0.3125rem 0.234375rem rgba(0, 0, 0, 0.1), 0 0.15625rem 0.15625rem rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
section.section.section--hero-banner .hero-banner__callout-icon img,
section.section.section--hero-banner .hero-banner__callout-icon .hero-banner__callout-icon-img {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}
section.section.section--hero-banner .hero-banner__callout-text {
  margin: 0.375rem 0 0 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  line-height: 1.5rem;
  letter-spacing: -0.01953125rem;
  font-weight: 500;
}
section.section.section--hero-banner .hero-banner__callout-text strong,
section.section.section--hero-banner .hero-banner__callout-text b {
  font-weight: 700;
}
section.section.section--hero-banner .hero-banner__headline {
  margin: 0;
  color: var(--white);
  font-size: 2.4375rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width:1199px) {
  section.section.section--hero-banner .hero-banner__headline {
    font-size: 3.8125rem;
    font-weight: 700;
    line-height: 1;
  }
}
section.section.section--hero-banner .hero-banner__headline code {
  display: inline;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-family: inherit;
  color: var(--light-purple);
}
section.section.section--hero-banner .hero-banner__description {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}
section.section.section--hero-banner .hero-banner__description p {
  margin: 0 0 1rem;
}
section.section.section--hero-banner .hero-banner__description p:last-child {
  margin-bottom: 0;
}
section.section.section--hero-banner .hero-banner__description a {
  color: var(--white);
  text-decoration: underline;
}
section.section.section--hero-banner .hero-banner__description a:hover {
  color: var(--white);
  opacity: 0.9;
}

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