@import "../global.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);
}

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

/* Align Center - Wide */
.fwm-column-halves .fwm-nestable-flex {
  align-items: center;
}

/* Primary H2 */
.fwm-section-header .fwm-section-header-hgroup .fwm-section-header-title-text {
  line-height: 1.2;
  font-size: 2rem;
  font-weight: 900;
}
.fwm-section-header .fwm-section-header-hgroup .fwm-section-header-eyebrow-text {
  padding-bottom: 0;
  font-weight: 400;
}
.fwm-section-header .fwm-section-header-hgroup::after {
  content: "";
  display: block;
  width: 6.25rem;
  height: 0.25rem;
  background: var(--secondary);
  margin: 0.75rem 0 0.75rem;
}

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

.fwm-section-header.fwm-text-align-center .fwm-section-header-hgroup::after {
  margin: 0.75rem auto;
}

@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;
  }
}
/* Primary H3 */
h3.fwm-primary-h3.fwm-primary-h3 {
  font-weight: 800;
}
h3.fwm-primary-h3.fwm-primary-h3::after {
  width: 6.25rem;
  height: 0.25rem;
}

.fwm-lightTheme h3.fwm-primary-h3.fwm-primary-h3 {
  color: var(--primary-text);
}

/* Hero Gradient/Box */
.fwm-hero-gradient.fwm-hero-box {
  position: relative;
}
.fwm-hero-gradient.fwm-hero-box .fwm-hero-large-heading-container {
  background: rgba(14, 73, 123, 0.76);
}
.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: 800;
  line-height: 1;
}
.fwm-hero-gradient.fwm-hero-box .fwm-hero-large-text-container.fwm-hero-no-cta hgroup::after {
  content: "";
  display: block;
  margin: 0.9375rem 0 1rem 0;
  width: 6.25rem;
  height: 0.25rem;
  background-color: var(--secondary);
}
.fwm-hero-gradient.fwm-hero-box .fwm-hero-box-align-center .fwm-hero-large-text-container.fwm-hero-no-cta hgroup::after {
  margin: 0.9375rem auto 1rem;
}
.fwm-hero-gradient.fwm-hero-box {
  /* if next Section is lightTheme */
}
.fwm-hero-gradient.fwm-hero-box + section.fwm-lightTheme::before, .fwm-hero-gradient.fwm-hero-box + section.fwm-lightTheme::after {
  content: "";
  height: calc(3vw + 0.125rem);
  width: 49%;
  background-color: var(--white);
  position: absolute;
  top: -3vw;
}
.fwm-hero-gradient.fwm-hero-box + section.fwm-lightTheme::before {
  left: 0;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.fwm-hero-gradient.fwm-hero-box + section.fwm-lightTheme::after {
  right: 0;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.fwm-hero-gradient.fwm-hero-box {
  /* if next Section is gray */
}
.fwm-hero-gradient.fwm-hero-box + section.fwm-lightTheme.fwm-bg-lightC::before, .fwm-hero-gradient.fwm-hero-box + section.fwm-lightTheme.fwm-bg-lightC::after {
  background-color: var(--gray);
}