@import "../global.css";
@import "../condensed.css";
@import "../hero-shrink.css";

div#root {
  --primary: #00487c;
  --primary-text: #00487c;
  --primary-svg: #00487c;
  --secondary: var(--gold);
  --secondary-text: var(--gold);
  --secondary-svg: var(--gold);
  --secondary-accent-line: var(--gold);
  --dark-gray: #74787a;
}

/* DBA logo */
div#root .fwm-team-header-entity-logo-image {
  width: 18.75rem;
}

/* Branding logo */
.fwm-team-header-branding-logo svg * {
  fill: var(--black);
}

/* Primary H2 */
.fwm-section-header .fwm-section-header-hgroup .fwm-section-header-title-text {
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0.0625vw;
}

.fwm-lightTheme .fwm-section-header .fwm-section-header-hgroup .fwm-section-header-title-text {
  color: var(--primary-text);
}

@media (min-width: 48rem) {
  .fwm-section-header hgroup.fwm-section-header-hgroup .fwm-section-header-title-text {
    font-size: 2.25rem;
  }
}
@media (min-width: 64rem) {
  .fwm-section-header hgroup.fwm-section-header-hgroup .fwm-section-header-title-text {
    font-size: 2.5rem;
  }
}
/* Rich Text H2 */
span.fwm-rich-text-editor h2 {
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0.0625vw;
}

@media (min-width: 48rem) {
  span.fwm-rich-text-editor h2 {
    font-size: 2.25rem;
  }
}
@media (min-width: 64rem) {
  span.fwm-rich-text-editor h2 {
    font-size: 2.5rem;
  }
}
/* Rich Text <hr> */
span.fwm-rich-text-editor hr {
  border: initial;
  border-top: 0.25rem solid var(--dark-gray);
}

section.fwm-text-center.fwm-darkTheme.fwm-nestable-no-subcomponents.fwm-not-subcomponent span.fwm-rich-text-editor h4 {
  font-weight: 900;
  padding: 0.625rem 1.25rem;
  border: 0.25rem solid #fff;
  display: table;
  margin: auto;
  font-size: 1.25rem;
}

/* Primary H3 */
p.nmx-eyebrow.fwm-card-eyebrow.fwm-primary-h3-eyebrow {
  margin-bottom: 0;
}
p.nmx-eyebrow.fwm-card-eyebrow.fwm-primary-h3-eyebrow + .fwm-primary-h3 {
  font-size: 1.5rem;
  margin-bottom: 0;
}
p.nmx-eyebrow.fwm-card-eyebrow.fwm-primary-h3-eyebrow + .fwm-primary-h3::after {
  display: none !important;
}

@media (min-width: 48rem) {
  p.nmx-eyebrow.fwm-card-eyebrow.fwm-primary-h3-eyebrow {
    font-size: 1.25rem;
  }
  p.nmx-eyebrow.fwm-card-eyebrow.fwm-primary-h3-eyebrow + .fwm-primary-h3 {
    font-size: 1.75rem;
  }
}
@media (min-width: 64rem) {
  p.nmx-eyebrow.fwm-card-eyebrow.fwm-primary-h3-eyebrow + .fwm-primary-h3 {
    font-size: 2rem;
  }
}
/* Hero Gradient/Box */
.fwm-hero-gradient.fwm-hero-box .fwm-hero-large-text-container hgroup {
  position: relative;
}
.fwm-hero-gradient.fwm-hero-box .fwm-hero-large-text-container hgroup .fwm-hero-large-heading h1,
.fwm-hero-gradient.fwm-hero-box .fwm-hero-large-text-container hgroup .fwm-hero-large-heading h2 {
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
  padding: 0;
  text-shadow: 0 0 40px black;
}
.fwm-hero-gradient.fwm-hero-box .fwm-hero-large-text-container hgroup .fwm-hero-large-supporting-text p {
  letter-spacing: 0.45vw;
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
}
.fwm-hero-gradient.fwm-hero-box .fwm-hero-large-text-container.fwm-hero-no-cta hgroup {
  position: relative;
}
.fwm-hero-gradient.fwm-hero-box .fwm-hero-large-text-container.fwm-hero-no-cta hgroup::before, .fwm-hero-gradient.fwm-hero-box .fwm-hero-large-text-container.fwm-hero-no-cta hgroup::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: 10rem;
  height: 10rem;
  border: 0.25rem solid #fff;
}
.fwm-hero-gradient.fwm-hero-box .fwm-hero-large-text-container.fwm-hero-no-cta hgroup::before {
  top: -0.3125rem;
  transform: translate(-50%, -55%) rotate(45deg);
  transform-origin: center center;
  border-bottom: none;
  border-right: none;
}
.fwm-hero-gradient.fwm-hero-box .fwm-hero-large-text-container.fwm-hero-no-cta hgroup::after {
  bottom: -0.3125rem;
  border-left: none;
  border-top: none;
  transform: translate(-50%, 55%) rotate(45deg);
}

@media (min-width: 48rem) {
  .fwm-hero-gradient.fwm-hero-box .fwm-hero-large-text-container hgroup .fwm-hero-large-heading h1,
  .fwm-hero-gradient.fwm-hero-box .fwm-hero-large-text-container hgroup .fwm-hero-large-heading h2 {
    font-size: 3rem;
  }
  .fwm-hero-gradient.fwm-hero-box .fwm-hero-large-text-container hgroup .fwm-hero-large-supporting-text p {
    font-size: 1.5rem;
  }
}
@media (min-width: 64rem) {
  .fwm-hero-gradient.fwm-hero-box .fwm-hero-large-text-container hgroup .fwm-hero-large-heading h1,
  .fwm-hero-gradient.fwm-hero-box .fwm-hero-large-text-container hgroup .fwm-hero-large-heading h2 {
    font-size: 3.3rem;
  }
  .fwm-hero-gradient.fwm-hero-box .fwm-hero-large-text-container hgroup .fwm-hero-large-supporting-text p {
    font-size: 1.65rem;
  }
}
/* Awards */
section.fwm-awards-horizontal .fwm-custom-content-wrapper-disclaimer {
  border-top: 4px solid var(--dark-gray);
}

/* Border Cards */
.fwm-card-border-set.fwm-lightTheme .fwm-nestable-grid {
  gap: 1.5rem;
}
.fwm-card-border-set.fwm-lightTheme .fwm-card-set-item {
  border: initial;
  border-left: 0.25rem solid var(--dark-gray);
  border-bottom: 0.25rem solid var(--dark-gray);
  padding: 0 1.25rem 1.25rem 1.25rem;
  background: initial;
}

/* Text Center - Standard Width */
section.fwm-text-center.fwm-darkTheme.fwm-nestable-no-subcomponents.fwm-not-subcomponent {
  position: relative;
}

section.fwm-text-center.fwm-darkTheme.fwm-nestable-no-subcomponents.fwm-not-subcomponent::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0.3125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5.5rem;
  height: 5.5rem;
  background: url("https://media.northwesternmutual.com/sites/images/25101d2c-50fc-4e07-bcb2-7910149a4745.png?width=original") no-repeat center center/auto 100%;
  opacity: 0.25;
}

section.fwm-text-center.fwm-darkTheme.fwm-nestable-no-subcomponents.fwm-not-subcomponent .fwm-section-header-supporting-text {
  margin-top: 0.5rem;
}

section.fwm-text-center.fwm-darkTheme.fwm-nestable-no-subcomponents.fwm-not-subcomponent span.fwm-rich-text-editor h4 {
  font-weight: 900;
  padding: 0.625rem 1.25rem;
  border: 0.25rem solid #fff;
  display: table;
  margin: auto;
  font-size: 1.25rem;
}

@media (min-width: 48rem) {
  section.fwm-text-center.fwm-darkTheme.fwm-nestable-no-subcomponents.fwm-not-subcomponent span.fwm-rich-text-editor h4 {
    font-size: 1.5rem;
  }
}
.fwm-lightTheme img[src*="1be34645-a0d6-4ac9-a654-ea2528b60607"],
.fwm-lightTheme img[src*="76417c91-9e9b-4fad-bc18-43131c592f09"] {
  border: var(--border-box-theme-light);
}