/**
 * @file
 * Callout Bar 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.
 */
.callout-bar {
  background-color: #003366;
  margin: 6rem 0;
  padding: 3rem 6%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
@media screen and (max-width: 73.0625rem) {
  .callout-bar {
    margin: 3rem 0;
    flex-wrap: wrap;
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .callout-bar {
    margin: 2.5rem 0;
    padding: 2rem 6% 0.5rem;
    text-align: center;
  }
}

.callout-bar__title {
  color: #ffffff;
  margin: 0 2rem 0 0;
}
@media screen and (max-width: 73.0625rem) {
  .callout-bar__title {
    margin: 0 2rem 2rem 2rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .callout-bar__title {
    margin: 0 0 1.5rem;
    width: 100%;
  }
}

.callout-bar__description {
  font-size: 1.875rem;
}
@media screen and (max-width: 87.4375rem) {
  .callout-bar__description {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 73.0625rem) {
  .callout-bar__description {
    margin: 0 0 2rem 0;
  }
}
@media screen and (max-width: 47.9375rem) {
  .callout-bar__description {
    font-size: 1.125rem;
    margin: 0 0 1.5rem 0;
  }
}
.callout-bar__description.calout-bar__description--has-width {
  width: 36%;
}
@media screen and (max-width: 73.0625rem) {
  .callout-bar__description.calout-bar__description--has-width {
    width: auto;
  }
}
.callout-bar__description p {
  margin-bottom: 0;
}

.callout-bar__button {
  margin: 0 0 0 2rem;
  font-size: 1.1875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #003366;
  border: 0.1875rem solid #ffffff;
  text-decoration: none;
  padding: 1.5rem 2.5rem;
  transition: all 0.2s ease-in;
}
@media screen and (max-width: 87.4375rem) {
  .callout-bar__button {
    font-size: 1.0625rem;
  }
}
@media screen and (max-width: 73.0625rem) {
  .callout-bar__button {
    margin: 0 2rem 2rem 2rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .callout-bar__button {
    font-size: 0.875rem;
    padding: 1.25rem 2rem;
    margin: 0 1rem 1.5rem 1rem;
  }
}
.callout-bar__button:hover {
  background-color: #ffffff;
  color: #003366;
  transition: all 0.2s ease-out;
}

/*# sourceMappingURL=callout-bar.css.map*/