/**
 * @file
 * Page title styles.
 */
/**
 * @file
 * Dependencies.
 *
 * The necessary dependencies for compiling styles.
 * Nothing here should compile into CSS, helpers only.
 */
/**
 * @file
 * Color variables.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Typography declarations.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Custom Functions.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/* Remove the unit of a length.
 * @param {Number} $number - Number to remove unit from
 * @return {Number} - Unitless number
 *
 * Reference: https://css-tricks.com/snippets/sass/strip-unit-function/
*/
/* Convert a value (raw number or pixel size) into rems. */
/**
 * @file
 * General variables.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Custom Mixins.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * Breakpoint
 *
 * usage example:
 * @include breakpoint($feature: max-width, $value: 1509px) {
 *  display: none;
 * }
 */
/* Dynamic containment mixin. */
/**
 * @file
 * Z-Indices.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
.page-title-basic {
  padding: calc(10.095rem + 3rem) 5rem 2.75rem 3.25rem;
  border-bottom: 1px solid #D3D3D3;
}
@media screen and (max-width: 87.4375rem) {
  .page-title-basic {
    padding: calc(7.515625rem + 2.6rem) 2.5rem 2.375rem 3.25rem;
  }
}
@media screen and (max-width: 73.0625rem) {
  .page-title-basic {
    padding: calc(6.065625rem + 2.2rem) 2rem 2rem 2rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .page-title-basic {
    padding: 1.5rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .masthead--alert-button + .layout-container .page-title-basic {
    padding-top: 2.25rem;
  }
}
.page-title-basic .breadcrumbs {
  color: #006633;
}
.page-title-basic .breadcrumbs a {
  color: #006633;
  font-weight: bold;
  text-decoration: underline;
}
.page-title-basic .breadcrumbs a:hover {
  text-decoration: none;
}
.page-title-basic h1 {
  color: #003366;
  font-family: "Proxima-Nova", sans-serif;
  font-weight: 900;
  font-style: normal;
  line-height: 1.03;
  font-size: 4.5rem;
  margin: 0.75rem 0 0;
  text-transform: uppercase;
}
@media screen and (max-width: 87.4375rem) {
  .page-title-basic h1 {
    font-size: 3.875rem;
  }
}
@media screen and (max-width: 73.0625rem) {
  .page-title-basic h1 {
    font-size: 3.25rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .page-title-basic h1 {
    font-size: 2.0625rem;
  }
}
.page-title-basic h2 {
  color: #003366;
  font-family: "Proxima-Nova", sans-serif;
  font-weight: 900;
  font-style: normal;
  line-height: 1.03;
  font-size: 2.25rem;
  margin: 0.75rem 0 0;
}
@media screen and (max-width: 87.4375rem) {
  .page-title-basic h2 {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 73.0625rem) {
  .page-title-basic h2 {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .page-title-basic h2 {
    font-size: 1.125rem;
  }
}

/*# sourceMappingURL=page-title.css.map*/