/**
 * @file
 * CTA Button 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.
 */
.cta-button {
  margin-bottom: 1.125rem;
}
.cta-button > a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 6.5625rem;
  font-size: 1.1875rem;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #003366;
  border: 0.1875rem solid #003366;
  text-decoration: none;
  padding: 1rem 18%;
  transition: all 0.2s ease-in;
}
@media screen and (max-width: 87.4375rem) {
  .cta-button > a {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 73.0625rem) {
  .cta-button > a {
    min-height: 5rem;
    font-size: 1rem;
    padding: 1rem 12%;
  }
}
.cta-button > a:hover {
  background-color: #ffffff;
  color: #003366;
  transition: all 0.2s ease-out;
}
.page-layout__sidebar .cta-button {
  margin-bottom: 6rem;
}
@media screen and (max-width: 73.0625rem) {
  .page-layout__sidebar .cta-button {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .page-layout__sidebar .cta-button {
    margin-bottom: 3rem;
  }
}
.inner-columns .cta-button {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 47.9375rem) {
  .inner-columns .cta-button {
    justify-content: flex-start;
  }
}
.inner-columns .cta-button a {
  padding: 1rem 12%;
  width: 100%;
  max-width: 29.0625rem;
}

.cta-button__notes {
  line-height: 1.5;
  color: #003366;
  margin: 1.5rem 0;
  padding: 0 7.5%;
}
.cta-button__notes a {
  color: #003366;
}
@media screen and (max-width: 73.0625rem) {
  .cta-button__notes {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .cta-button__notes {
    margin: 1rem 0;
  }
}

/*# sourceMappingURL=cta-button.css.map*/