.cc--stat-item .f--stat-subheading,
.cc--stat-item .f--stat-subheading p, .cc--stat-item .f--stat-subheading sup, .cc--stat-item .f--stat-subheading sub,
.cc--stat-item .f--stat-subheading p sup,
.cc--stat-item .f--stat-subheading p sub, .cc--stat-item .f--description, .cc--stat-item .f--stat-headline,
.cc--stat-item .f--stat-headline p, .cc--stat-item .f--stat-headline sup, .cc--stat-item .f--stat-headline sub,
.cc--stat-item .f--stat-headline p sup,
.cc--stat-item .f--stat-headline p sub {
  font-family: 'PT Serif', Georgia, serif;
  font-style: normal;
  font-weight: 700; }

.cc--stat-item .f--stat-subheading em,
.cc--stat-item .f--stat-subheading p em, .cc--stat-item .f--stat-subheading em sup, .cc--stat-item .f--stat-subheading em sub,
.cc--stat-item .f--stat-subheading p em sup,
.cc--stat-item .f--stat-subheading p em sub, .cc--stat-item .f--stat-headline em,
.cc--stat-item .f--stat-headline p em, .cc--stat-item .f--stat-headline em sup, .cc--stat-item .f--stat-headline em sub,
.cc--stat-item .f--stat-headline p em sup,
.cc--stat-item .f--stat-headline p em sub {
  font-family: 'PT Serif', Georgia, serif;
  font-style: italic;
  font-weight: 700; }

.stat-item {
  font-family: 'Oswald', Georgia, sans-serif;
  font-style: normal;
  font-weight: 500; }

/*  Centering an element within its parent element
*
*   @param {Axis} $axis - x: centers horizontally, y: centers vertically, null: centers both axis
*
*   Example Usage:
*
*   // Center on both x and y axis
*   .container {
*     .link {
*       @include centered;
*     }
*   }
*
*   // Center on the X axis
*   .container {
*     .link {
*       @include centered(x);
*     }
*   }
*
*   // Center on the Y axis
*   .container {
*     .link {
*       @include centered(y);
*     }
*   }
*
*/
/*  Centering within an flex container
*
*   @param {Display} $display - inline: display set to inline-flex, else display set to flex
*
*
*   Example Usage:
*
*   .container {
*     @include vertical-align-flex;
*   }
*
*/
/* Chevron mixin for creating chevrons
*
*  @param {Size} $size - the size of the chevron
*  @param {Thickness} $thickness - thickness
*  @param {Color} $color - color
*  @param {Direction} $direction - direction chevron faces
*
*  Example Usage:
*
*     .chevron {
*       @include chevron(12px, 12px, #000, 'down');
*     }
*
*/
/*  Clearfix for clearing floats within a container
*
*   No Params
*
*   Example Usage:
*
*     .container {
*       @include clearfix;
*
*       .link {
*          float: left;
*       }
*     }
*
*/
/*  Set font-size and optionally leading
*
*   @param {Font Size} $fontSize - Unit-less font size
*   @param {Leading}   $leading  - (default: null) - Optional- Unit-less leading from Photoshop or Sketch
*
*   Example Usage:
*
*     p {
*       @include font-size(12,14);
*     }
*
*/
/**
* Hide Text
*/
/* Hover mixin for hover states
*
*  Note: This mixin has a dependency on what-intent plugin which detects the current input method
*        https://github.com/ten1seven/what-input
*
*  @param {Transition Duration} $transition-duration - the duration of transitions on hover states
*
*  Example Usage:
*
*     a {
*       @include hover() {
*         background-color: red
*       }
*     }
*
*/
/**
 * Returns a percentage width based on the number and total number of columns
 *
 * @param 	int 	$num 	Number of columns (e.g. 4)
 * @param 	int 	$total 	Total number of columns (e.g. 24)
 * @return 	float 			 Total width (%)
 */
/*  Unitless line-height
*
*   @param {Font Size} $fontSize - Unit-less font size
*   @param {Leading}   $leading  - Unit-less leading from Photoshop or Sketch
*
*   Example Usage:
*
*     @include line-height(16, 20);
*
*/
/*  Remove List Styles
*
*   No Params
*
*   Example Usage:
*
*     ul {
*       @include no-bullet;
*     }
*
*/
/*
  Maintain ratio mixin.
  @param {List} [$ratio] Ratio the element needs to maintain. A 16:9 ratio would look like this:
    .element { @include maintain-ratio(16 9); }
*/
/*  Media Query Mixin
*
*   @param {Media Query} $mq - Media query in single quotes: eg. 'screen and (min-width: 480px)'
*
*   Example Usage:
*
*     .selector {
*       property: value;
*
*       @include mq($bp768) {
*         property: value;
*       }
*     }
*
*/
/*  Overflow Scroll
*   Allows you to set overflow scrolling on the x and y axis
*
*   @param {axix} $axis - the axis on which to set scroll
*/
/*  Placeholder Mixin
*
*   No Params
*
*   Example Usage:
*
*     input[placeholder] {
*       @include placeholder {
*         color: red;
*       }
*     }
*
*/
/*  PX to REM Conversion
*
*   @param {Pixel} $px - Unitless pixel value to be converted into rems.
*
*   Example Usage:
*
*     margin-bottom: rem(20);
*
*/
/*  Triangle helper mixin
*
*   @param {Direction} $direction - Triangle direction, either `top`, `right`, `bottom` or `left`
*   @param {Color} $color [currentcolor] - Triangle color
*   @param {Length} $size [1em] - Triangle size
*
*/
/*  Visually hide text within an element
*   Used mostly for accessibility reasonse
*
*   No Params
*
*   Example Usage:
*
*     button {
*       span {
*         @include visuallyhidden;
*       }
*     }
*
*/
.cc--stat-item {
  text-align: center; }
  .cc--stat-item:not(:last-child) {
    margin-bottom: 1.875rem; }
  @media screen and (min-width: 768px) {
    .cc--stat-item:not(:last-child) {
      margin-bottom: 0; } }
  .cc--stat-item .f--stat-subheading,
  .cc--stat-item .f--stat-subheading p {
    font-size: 1.25rem;
    line-height: 1.4;
    color: #000; }
  .cc--stat-item .f--description {
    font-size: 0.875rem;
    line-height: 2.2858;
    color: #000; }
    @media screen and (min-width: 768px) {
      .cc--stat-item .f--description {
        font-size: 1rem;
        line-height: 2; } }
  .cc--stat-item .f--stat-headline,
  .cc--stat-item .f--stat-headline p {
    font-size: 1.125rem;
    line-height: 1.3334;
    margin-bottom: 0.625rem;
    color: #000; }
    @media screen and (min-width: 768px) {
      .cc--stat-item .f--stat-headline,
      .cc--stat-item .f--stat-headline p {
        font-size: 1.5rem;
        line-height: 1.3334; } }

.stat-item {
  margin-bottom: 0.9375rem;
  display: flex;
  justify-content: center;
  color: #007FAC; }
  @media screen and (min-width: 768px) {
    .stat-item {
      margin-bottom: 1.25rem; } }
  @media screen and (min-width: 1024px) {
    .stat-item {
      margin-bottom: 1.875rem; } }
  .stat-item .f--text {
    font-size: 2.25rem;
    line-height: 1; }
    @media screen and (min-width: 1440px) {
      .stat-item .f--text {
        font-size: 3.5rem;
        line-height: 1; } }
  .stat-item .f--stat-prefix,
  .stat-item .f--stat-suffix {
    font-size: 1.25rem;
    line-height: 1.05;
    align-self: flex-end; }
    @media screen and (min-width: 1440px) {
      .stat-item .f--stat-prefix,
      .stat-item .f--stat-suffix {
        font-size: 1.875rem;
        line-height: 1.0667; } }
