:root {
  --Blue-IM-Heading: #80bbfe;
}

h2 {
  font-size: clamp(2rem, 2.75vw, 2.75rem);
}

.UX-Text--Display {
  font-size: clamp(1.5rem, 2.25vw, 2.25rem);
  line-height: 1.4;
}

/*************************************************
IM Hero
*************************************************/
.IM-Hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  /*position: relative;*/
  background: var(--BradyBlue-80);
  background: -moz-linear-gradient(72deg, rgb(10, 45, 89) 0%, rgb(7, 26, 51) 95%);
  background: -webkit-linear-gradient(72deg, rgb(10, 45, 89) 0%, rgb(7, 26, 51) 95%);
  background: linear-gradient(72deg, rgb(10, 45, 89) 0%, rgb(7, 26, 51) 95%);
  min-height: 15vw;
}
.IM-Hero .BR-LayoutConstraint {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.IM-Hero__Text {
  color: #FFF;
  width: 100%;
}
@media screen and (min-width: 48em) {
  .IM-Hero__Text {
    width: 75%;
  }
}
@media screen and (min-width: 64em) {
  .IM-Hero__Text {
    width: 66%;
  }
}
.IM-Hero__H1 {
  color: var(--Blue-IM-Heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.125;
  margin: 0 0 0.125em 0;
}
.IM-Hero__Subhead {
  color: #FFF;
  font-size: clamp(1.15rem, 1.5vw, 1.75rem);
  line-height: 1.25;
  margin: 0 0 0 0.125vw;
}

/* Justification */
.IM-Hero--JustifyCenter .IM-Hero__Text {
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

/* Variant with an image */
.IM-Hero--ImageRight .IM-Hero__Text {
  width: 100%;
  padding: 0 1rem 2rem 0;
}
.IM-Hero--ImageRight .IM-Hero__ImageRight {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}
.IM-Hero--ImageRight .IM-Hero__ImageRight--66PercentWide {
  width: 66%;
}
.IM-Hero--ImageRight .IM-Hero__ImageRight img {
  width: auto;
  height: 100%;
}
@media screen and (min-width: 40em) {
  .IM-Hero--ImageRight {
    overflow: clip;
  }
  .IM-Hero--ImageRight .BR-LayoutConstraint {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .IM-Hero--ImageRight .IM-Hero__Text {
    width: 75%;
  }
  .IM-Hero--ImageRight .IM-Hero__ImageRight {
    width: 25%;
  }
}
@media screen and (min-width: 64em) {
  .IM-Hero--ImageRight .IM-Hero__Text {
    width: 66%;
  }
  .IM-Hero--ImageRight .IM-Hero__ImageRight {
    width: 33%;
  }
}
@media screen and (min-width: 75em) {
  .IM-Hero--ImageRight {
    height: 20vh;
  }
}

/* Center on mobile */
@media screen and (max-width: 40em) {
  .IM-Hero--CenterOnMobile {
    text-align: center;
  }
}

/*************************************************
Infographic section
*************************************************/
.IM-Infographic {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.IM-Infographic .IM-Infographic__TextItem h2, .IM-Infographic .IM-Infographic__TextItem h3, .IM-Infographic .IM-Infographic__TextItem h4, .IM-Infographic .IM-Infographic__TextItem h5, .IM-Infographic .IM-Infographic__TextItem h6 {
  margin: 0 0 0.5rem;
}
@media screen and (min-width: 48em) {
  .IM-Infographic {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
}
@media screen and (min-width: 64em) {
  .IM-Infographic {
    text-align: left;
  }
}

@media screen and (min-width: 48em) {
  .IM-Infographic__Section:nth-child(1),
  .IM-Infographic__Section:nth-child(2) {
    width: calc(50% - 0.5rem);
  }
  .IM-Infographic__Section:nth-child(3) {
    width: 100%;
  }
}
@media screen and (min-width: 64em) {
  .IM-Infographic__Section:nth-child(1),
  .IM-Infographic__Section:nth-child(2) {
    width: calc(25% - 0.6666666667rem);
    margin-top: 2rem;
  }
  .IM-Infographic__Section:nth-child(3) {
    width: calc(50% - 0.6666666667rem);
  }
  .IM-Infographic__Section:nth-child(2) {
    order: 3;
  }
}
@media screen and (min-width: 75em) {
  .IM-Infographic__Section:nth-child(1),
  .IM-Infographic__Section:nth-child(2) {
    width: calc(20% - 0.6666666667rem);
  }
  .IM-Infographic__Section:nth-child(3) {
    width: calc(60% - 0.6666666667rem);
  }
  .IM-Infographic__Section:nth-child(2) {
    order: 3;
  }
}
.IM-Infographic__Image {
  width: 100%;
  margin: 2rem auto 0;
}
@media screen and (min-width: 64em) {
  .IM-Infographic__Image {
    margin-top: 0 auto;
  }
}
.IM-Infographic__Image img {
  width: 100%;
}

/*************************************************
Text only banner
*************************************************/
.Banner--TextOnly {
  width: 100%;
  padding: 2rem;
}

.Banner--Centered {
  text-align: center;
}

.Banner--Constrained {
  border-radius: 0.5rem;
}

.Banner--Yellow {
  background: var(--Yellow-70);
}

/*************************************************
Misc.
*************************************************/
/* Background image */
.UX-BackgroundImage {
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: difference;
}

/*# sourceMappingURL=ux-im.css.map */
