@charset "UTF-8";
/* ---- _colours.scss ---- */
/* -- Greys -- */
/* -- Oranges -- */
/* -- Green -- */
/* -- Blues -- */
/* -- Yellows -- */
/* -- Semantic section -- */
/* ---- end _colours.scss ---- */
/* ---- _grid.scss ---- */
/* ---- end _grid.scss ---- */
/**
 * Font Families
 */
/**
 * Font Sizes
 */
/**
 * Font Weights
 */
/* ---- _breakpoint-new.scss ---- */
/*
$tablet-sm-layout:   44.375em; // 710px
$tablet-md-layout:  48.9375em; // 783px
$desktop-sm-layout:  56.875em; // 910px
$desktop-md-layout: 61.5625em; // 985px
$desktop-lg-layout: 75em;      // 1200px

// Additional breakpoints for cc
$desktop-xl-layout: 100em;      // 1600px

*/
/* ---- end _breakpoint-new.scss ---- */
/**
    * Create a pseudo element (::before or ::after) that will act as an horizontal divider
    *
    * @param string $icon: value for 'content' proprety
    * @param string $location: 'before' for '::before'(default) or 'after' for '::after'
    */
/* Clearfix Mixin */
/* End of: clearfix */
/* Vertical aligment from:
    http://zerosixthree.se/vertical-align-anything-with-just-3-lines-of-css/
    */
/* End of: Vertical aligment */
/* -- To be applied in a "more link" section -- */
/**
    * Style an element as a button
    *
    * @param string $style: 'default', 'primary', 'secondary', 'tertiary', donate'
    * @param boolean $add-basic-style: Flag used to avoid css code duplication, default to true;
    * @param boolean $add-parent-style: Flag used to avoid css code duplication, default to true;
    * @param string $style: 'small', 'large'
    * @param boolean $arrow-style: default to false
    * @param string $border-radius: value for css property 'border-radius'
    */
/**
    * Provide a pointy arrow style for an input element that renders as a button.
    * Note that this is quite limited and it is a much better idea to use the
    * button mixin with either an <a> or a <button> element.
    */
/**
    * Stagger a transition-delay within a large grid of elements.
    */
/*
    GRID HELPERS
    created by @hugosolar
    https://codepen.io/hugosolar/pen/drqdWO
*/
.grid-sidebar.right {
  padding-left: 1.5rem; }

.grid-sidebar.left {
  padding-right: 1.5rem; }

.main-content-area {
  width: 100vw;
  margin: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem; }
  @media (min-width: 75em) {
    .main-content-area {
      width: 1120px; } }

.widget-area.gray {
  background-color: #E9E9E9; }

.widget-area.blue {
  background-color: #1eb6d9; }

.widget-area.yellow {
  background-color: #EFBE00; }

.grid-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(15rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  grid-gap: 1.5rem;
  grid-auto-flow: dense;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem; }
  @media (max-width: 44.375em) {
    .grid-container {
      display: block; } }
  .grid-container.total-cols-2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(15rem, 1fr))[2];
        grid-template-columns: repeat(2, minmax(15rem, 1fr));
    grid-gap: 1.5rem;
    grid-auto-flow: dense;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem; }
    @media (max-width: 44.375em) {
      .grid-container.total-cols-2 {
        display: block; } }
  .grid-container.total-cols-3 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(15rem, 1fr))[3];
        grid-template-columns: repeat(3, minmax(15rem, 1fr));
    grid-gap: 1.5rem;
    grid-auto-flow: dense;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem; }
    @media (max-width: 44.375em) {
      .grid-container.total-cols-3 {
        display: block; } }
  .grid-container.total-cols-4 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(15rem, 1fr))[4];
        grid-template-columns: repeat(4, minmax(15rem, 1fr));
    grid-gap: 1.5rem;
    grid-auto-flow: dense;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem; }
    @media (max-width: 44.375em) {
      .grid-container.total-cols-4 {
        display: block; } }
  .grid-container.total-cols-5 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(15rem, 1fr))[5];
        grid-template-columns: repeat(5, minmax(15rem, 1fr));
    grid-gap: 1.5rem;
    grid-auto-flow: dense;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem; }
    @media (max-width: 44.375em) {
      .grid-container.total-cols-5 {
        display: block; } }
  .grid-container.total-cols-6 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(15rem, 1fr))[6];
        grid-template-columns: repeat(6, minmax(15rem, 1fr));
    grid-gap: 1.5rem;
    grid-auto-flow: dense;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem; }
    @media (max-width: 44.375em) {
      .grid-container.total-cols-6 {
        display: block; } }
  .grid-container.total-cols-7 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(15rem, 1fr))[7];
        grid-template-columns: repeat(7, minmax(15rem, 1fr));
    grid-gap: 1.5rem;
    grid-auto-flow: dense;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem; }
    @media (max-width: 44.375em) {
      .grid-container.total-cols-7 {
        display: block; } }
  .grid-container.total-cols-8 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(15rem, 1fr))[8];
        grid-template-columns: repeat(8, minmax(15rem, 1fr));
    grid-gap: 1.5rem;
    grid-auto-flow: dense;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem; }
    @media (max-width: 44.375em) {
      .grid-container.total-cols-8 {
        display: block; } }
  .grid-container.total-cols-9 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(15rem, 1fr))[9];
        grid-template-columns: repeat(9, minmax(15rem, 1fr));
    grid-gap: 1.5rem;
    grid-auto-flow: dense;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem; }
    @media (max-width: 44.375em) {
      .grid-container.total-cols-9 {
        display: block; } }
  .grid-container.total-cols-10 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(15rem, 1fr))[10];
        grid-template-columns: repeat(10, minmax(15rem, 1fr));
    grid-gap: 1.5rem;
    grid-auto-flow: dense;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem; }
    @media (max-width: 44.375em) {
      .grid-container.total-cols-10 {
        display: block; } }
  .grid-container.total-cols-11 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(15rem, 1fr))[11];
        grid-template-columns: repeat(11, minmax(15rem, 1fr));
    grid-gap: 1.5rem;
    grid-auto-flow: dense;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem; }
    @media (max-width: 44.375em) {
      .grid-container.total-cols-11 {
        display: block; } }
  .grid-container.total-cols-12 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(15rem, 1fr))[12];
        grid-template-columns: repeat(12, minmax(15rem, 1fr));
    grid-gap: 1.5rem;
    grid-auto-flow: dense;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem; }
    @media (max-width: 44.375em) {
      .grid-container.total-cols-12 {
        display: block; } }
  .grid-container .cell {
    -ms-grid-rows: (200px)[6];
        grid-template-rows: repeat(6, 200px); }
    .grid-container .cell.use-2-cols {
      -ms-grid-column: span 2;
          grid-column: span 2; }
    .grid-container .cell.use-3-cols {
      -ms-grid-column: span 3;
          grid-column: span 3; }
    .grid-container .cell.use-4-cols {
      -ms-grid-column: span 4;
          grid-column: span 4; }
    .grid-container .cell.use-5-cols {
      -ms-grid-column: span 5;
          grid-column: span 5; }
    .grid-container .cell.use-6-cols {
      -ms-grid-column: span 6;
          grid-column: span 6; }
    .grid-container .cell.use-7-cols {
      -ms-grid-column: span 7;
          grid-column: span 7; }
    .grid-container .cell.use-8-cols {
      -ms-grid-column: span 8;
          grid-column: span 8; }
    .grid-container .cell.use-9-cols {
      -ms-grid-column: span 9;
          grid-column: span 9; }
    .grid-container .cell.use-10-cols {
      -ms-grid-column: span 10;
          grid-column: span 10; }
    .grid-container .cell.use-11-cols {
      -ms-grid-column: span 11;
          grid-column: span 11; }
    .grid-container .cell.use-12-cols {
      -ms-grid-column: span 12;
          grid-column: span 12; }
    .grid-container .cell.use-2-rows {
      -ms-grid-row: span 2;
          grid-row: span 2; }
    .grid-container .cell.use-3-rows {
      -ms-grid-row: span 3;
          grid-row: span 3; }
    .grid-container .cell.use-4-rows {
      -ms-grid-row: span 4;
          grid-row: span 4; }
    .grid-container .cell.use-5-rows {
      -ms-grid-row: span 5;
          grid-row: span 5; }
    .grid-container .cell.use-6-rows {
      -ms-grid-row: span 6;
          grid-row: span 6; }

.grid-columns {
  display: -ms-grid;
  display: grid;
  grid-gap: .5rem;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem; }
  .grid-columns.align-center {
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .grid-columns.align-right {
    -webkit-justify-content: right;
        -ms-flex-pack: right;
            justify-content: right; }
  .grid-columns.align-stretch {
    -webkit-justify-content: right;
        -ms-flex-pack: right;
            justify-content: right; }
  .grid-columns .use-1-columns {
    -ms-grid-column: span 1;
        grid-column: span 1; }
    @media (max-width: 44.375em) {
      .grid-columns .use-1-columns {
        -ms-grid-column: span 12;
            grid-column: span 12; } }
    .grid-columns .use-1-columns.offset-2 {
      -ms-grid-column-span: 1;
      -ms-grid-column: 2;
          grid-column: 2/span 1; }
      @media (max-width: 44.375em) {
        .grid-columns .use-1-columns.offset-2 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-1-columns.offset-3 {
      -ms-grid-column-span: 1;
      -ms-grid-column: 3;
          grid-column: 3/span 1; }
      @media (max-width: 44.375em) {
        .grid-columns .use-1-columns.offset-3 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-1-columns.offset-4 {
      -ms-grid-column-span: 1;
      -ms-grid-column: 4;
          grid-column: 4/span 1; }
      @media (max-width: 44.375em) {
        .grid-columns .use-1-columns.offset-4 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-1-columns.offset-5 {
      -ms-grid-column-span: 1;
      -ms-grid-column: 5;
          grid-column: 5/span 1; }
      @media (max-width: 44.375em) {
        .grid-columns .use-1-columns.offset-5 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-1-columns.offset-6 {
      -ms-grid-column-span: 1;
      -ms-grid-column: 6;
          grid-column: 6/span 1; }
      @media (max-width: 44.375em) {
        .grid-columns .use-1-columns.offset-6 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-1-columns.offset-7 {
      -ms-grid-column-span: 1;
      -ms-grid-column: 7;
          grid-column: 7/span 1; }
      @media (max-width: 44.375em) {
        .grid-columns .use-1-columns.offset-7 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-1-columns.offset-8 {
      -ms-grid-column-span: 1;
      -ms-grid-column: 8;
          grid-column: 8/span 1; }
      @media (max-width: 44.375em) {
        .grid-columns .use-1-columns.offset-8 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-1-columns.offset-9 {
      -ms-grid-column-span: 1;
      -ms-grid-column: 9;
          grid-column: 9/span 1; }
      @media (max-width: 44.375em) {
        .grid-columns .use-1-columns.offset-9 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-1-columns.offset-10 {
      -ms-grid-column-span: 1;
      -ms-grid-column: 10;
          grid-column: 10/span 1; }
      @media (max-width: 44.375em) {
        .grid-columns .use-1-columns.offset-10 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-1-columns.offset-11 {
      -ms-grid-column-span: 1;
      -ms-grid-column: 11;
          grid-column: 11/span 1; }
      @media (max-width: 44.375em) {
        .grid-columns .use-1-columns.offset-11 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
  .grid-columns .use-2-columns {
    -ms-grid-column: span 2;
        grid-column: span 2; }
    @media (max-width: 44.375em) {
      .grid-columns .use-2-columns {
        -ms-grid-column: span 12;
            grid-column: span 12; } }
    .grid-columns .use-2-columns.offset-2 {
      -ms-grid-column-span: 2;
      -ms-grid-column: 2;
          grid-column: 2/span 2; }
      @media (max-width: 44.375em) {
        .grid-columns .use-2-columns.offset-2 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-2-columns.offset-3 {
      -ms-grid-column-span: 2;
      -ms-grid-column: 3;
          grid-column: 3/span 2; }
      @media (max-width: 44.375em) {
        .grid-columns .use-2-columns.offset-3 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-2-columns.offset-4 {
      -ms-grid-column-span: 2;
      -ms-grid-column: 4;
          grid-column: 4/span 2; }
      @media (max-width: 44.375em) {
        .grid-columns .use-2-columns.offset-4 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-2-columns.offset-5 {
      -ms-grid-column-span: 2;
      -ms-grid-column: 5;
          grid-column: 5/span 2; }
      @media (max-width: 44.375em) {
        .grid-columns .use-2-columns.offset-5 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-2-columns.offset-6 {
      -ms-grid-column-span: 2;
      -ms-grid-column: 6;
          grid-column: 6/span 2; }
      @media (max-width: 44.375em) {
        .grid-columns .use-2-columns.offset-6 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-2-columns.offset-7 {
      -ms-grid-column-span: 2;
      -ms-grid-column: 7;
          grid-column: 7/span 2; }
      @media (max-width: 44.375em) {
        .grid-columns .use-2-columns.offset-7 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-2-columns.offset-8 {
      -ms-grid-column-span: 2;
      -ms-grid-column: 8;
          grid-column: 8/span 2; }
      @media (max-width: 44.375em) {
        .grid-columns .use-2-columns.offset-8 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-2-columns.offset-9 {
      -ms-grid-column-span: 2;
      -ms-grid-column: 9;
          grid-column: 9/span 2; }
      @media (max-width: 44.375em) {
        .grid-columns .use-2-columns.offset-9 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-2-columns.offset-10 {
      -ms-grid-column-span: 2;
      -ms-grid-column: 10;
          grid-column: 10/span 2; }
      @media (max-width: 44.375em) {
        .grid-columns .use-2-columns.offset-10 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-2-columns.offset-11 {
      -ms-grid-column-span: 2;
      -ms-grid-column: 11;
          grid-column: 11/span 2; }
      @media (max-width: 44.375em) {
        .grid-columns .use-2-columns.offset-11 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
  .grid-columns .use-3-columns {
    -ms-grid-column: span 3;
        grid-column: span 3; }
    @media (max-width: 44.375em) {
      .grid-columns .use-3-columns {
        -ms-grid-column: span 12;
            grid-column: span 12; } }
    .grid-columns .use-3-columns.offset-2 {
      -ms-grid-column-span: 3;
      -ms-grid-column: 2;
          grid-column: 2/span 3; }
      @media (max-width: 44.375em) {
        .grid-columns .use-3-columns.offset-2 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-3-columns.offset-3 {
      -ms-grid-column-span: 3;
      -ms-grid-column: 3;
          grid-column: 3/span 3; }
      @media (max-width: 44.375em) {
        .grid-columns .use-3-columns.offset-3 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-3-columns.offset-4 {
      -ms-grid-column-span: 3;
      -ms-grid-column: 4;
          grid-column: 4/span 3; }
      @media (max-width: 44.375em) {
        .grid-columns .use-3-columns.offset-4 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-3-columns.offset-5 {
      -ms-grid-column-span: 3;
      -ms-grid-column: 5;
          grid-column: 5/span 3; }
      @media (max-width: 44.375em) {
        .grid-columns .use-3-columns.offset-5 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-3-columns.offset-6 {
      -ms-grid-column-span: 3;
      -ms-grid-column: 6;
          grid-column: 6/span 3; }
      @media (max-width: 44.375em) {
        .grid-columns .use-3-columns.offset-6 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-3-columns.offset-7 {
      -ms-grid-column-span: 3;
      -ms-grid-column: 7;
          grid-column: 7/span 3; }
      @media (max-width: 44.375em) {
        .grid-columns .use-3-columns.offset-7 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-3-columns.offset-8 {
      -ms-grid-column-span: 3;
      -ms-grid-column: 8;
          grid-column: 8/span 3; }
      @media (max-width: 44.375em) {
        .grid-columns .use-3-columns.offset-8 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-3-columns.offset-9 {
      -ms-grid-column-span: 3;
      -ms-grid-column: 9;
          grid-column: 9/span 3; }
      @media (max-width: 44.375em) {
        .grid-columns .use-3-columns.offset-9 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-3-columns.offset-10 {
      -ms-grid-column-span: 3;
      -ms-grid-column: 10;
          grid-column: 10/span 3; }
      @media (max-width: 44.375em) {
        .grid-columns .use-3-columns.offset-10 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-3-columns.offset-11 {
      -ms-grid-column-span: 3;
      -ms-grid-column: 11;
          grid-column: 11/span 3; }
      @media (max-width: 44.375em) {
        .grid-columns .use-3-columns.offset-11 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
  .grid-columns .use-4-columns {
    -ms-grid-column: span 4;
        grid-column: span 4; }
    @media (max-width: 44.375em) {
      .grid-columns .use-4-columns {
        -ms-grid-column: span 12;
            grid-column: span 12; } }
    .grid-columns .use-4-columns.offset-2 {
      -ms-grid-column-span: 4;
      -ms-grid-column: 2;
          grid-column: 2/span 4; }
      @media (max-width: 44.375em) {
        .grid-columns .use-4-columns.offset-2 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-4-columns.offset-3 {
      -ms-grid-column-span: 4;
      -ms-grid-column: 3;
          grid-column: 3/span 4; }
      @media (max-width: 44.375em) {
        .grid-columns .use-4-columns.offset-3 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-4-columns.offset-4 {
      -ms-grid-column-span: 4;
      -ms-grid-column: 4;
          grid-column: 4/span 4; }
      @media (max-width: 44.375em) {
        .grid-columns .use-4-columns.offset-4 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-4-columns.offset-5 {
      -ms-grid-column-span: 4;
      -ms-grid-column: 5;
          grid-column: 5/span 4; }
      @media (max-width: 44.375em) {
        .grid-columns .use-4-columns.offset-5 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-4-columns.offset-6 {
      -ms-grid-column-span: 4;
      -ms-grid-column: 6;
          grid-column: 6/span 4; }
      @media (max-width: 44.375em) {
        .grid-columns .use-4-columns.offset-6 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-4-columns.offset-7 {
      -ms-grid-column-span: 4;
      -ms-grid-column: 7;
          grid-column: 7/span 4; }
      @media (max-width: 44.375em) {
        .grid-columns .use-4-columns.offset-7 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-4-columns.offset-8 {
      -ms-grid-column-span: 4;
      -ms-grid-column: 8;
          grid-column: 8/span 4; }
      @media (max-width: 44.375em) {
        .grid-columns .use-4-columns.offset-8 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-4-columns.offset-9 {
      -ms-grid-column-span: 4;
      -ms-grid-column: 9;
          grid-column: 9/span 4; }
      @media (max-width: 44.375em) {
        .grid-columns .use-4-columns.offset-9 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-4-columns.offset-10 {
      -ms-grid-column-span: 4;
      -ms-grid-column: 10;
          grid-column: 10/span 4; }
      @media (max-width: 44.375em) {
        .grid-columns .use-4-columns.offset-10 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-4-columns.offset-11 {
      -ms-grid-column-span: 4;
      -ms-grid-column: 11;
          grid-column: 11/span 4; }
      @media (max-width: 44.375em) {
        .grid-columns .use-4-columns.offset-11 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
  .grid-columns .use-5-columns {
    -ms-grid-column: span 5;
        grid-column: span 5; }
    @media (max-width: 44.375em) {
      .grid-columns .use-5-columns {
        -ms-grid-column: span 12;
            grid-column: span 12; } }
    .grid-columns .use-5-columns.offset-2 {
      -ms-grid-column-span: 5;
      -ms-grid-column: 2;
          grid-column: 2/span 5; }
      @media (max-width: 44.375em) {
        .grid-columns .use-5-columns.offset-2 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-5-columns.offset-3 {
      -ms-grid-column-span: 5;
      -ms-grid-column: 3;
          grid-column: 3/span 5; }
      @media (max-width: 44.375em) {
        .grid-columns .use-5-columns.offset-3 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-5-columns.offset-4 {
      -ms-grid-column-span: 5;
      -ms-grid-column: 4;
          grid-column: 4/span 5; }
      @media (max-width: 44.375em) {
        .grid-columns .use-5-columns.offset-4 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-5-columns.offset-5 {
      -ms-grid-column-span: 5;
      -ms-grid-column: 5;
          grid-column: 5/span 5; }
      @media (max-width: 44.375em) {
        .grid-columns .use-5-columns.offset-5 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-5-columns.offset-6 {
      -ms-grid-column-span: 5;
      -ms-grid-column: 6;
          grid-column: 6/span 5; }
      @media (max-width: 44.375em) {
        .grid-columns .use-5-columns.offset-6 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-5-columns.offset-7 {
      -ms-grid-column-span: 5;
      -ms-grid-column: 7;
          grid-column: 7/span 5; }
      @media (max-width: 44.375em) {
        .grid-columns .use-5-columns.offset-7 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-5-columns.offset-8 {
      -ms-grid-column-span: 5;
      -ms-grid-column: 8;
          grid-column: 8/span 5; }
      @media (max-width: 44.375em) {
        .grid-columns .use-5-columns.offset-8 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-5-columns.offset-9 {
      -ms-grid-column-span: 5;
      -ms-grid-column: 9;
          grid-column: 9/span 5; }
      @media (max-width: 44.375em) {
        .grid-columns .use-5-columns.offset-9 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-5-columns.offset-10 {
      -ms-grid-column-span: 5;
      -ms-grid-column: 10;
          grid-column: 10/span 5; }
      @media (max-width: 44.375em) {
        .grid-columns .use-5-columns.offset-10 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-5-columns.offset-11 {
      -ms-grid-column-span: 5;
      -ms-grid-column: 11;
          grid-column: 11/span 5; }
      @media (max-width: 44.375em) {
        .grid-columns .use-5-columns.offset-11 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
  .grid-columns .use-6-columns {
    -ms-grid-column: span 6;
        grid-column: span 6; }
    @media (max-width: 44.375em) {
      .grid-columns .use-6-columns {
        -ms-grid-column: span 12;
            grid-column: span 12; } }
    .grid-columns .use-6-columns.offset-2 {
      -ms-grid-column-span: 6;
      -ms-grid-column: 2;
          grid-column: 2/span 6; }
      @media (max-width: 44.375em) {
        .grid-columns .use-6-columns.offset-2 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-6-columns.offset-3 {
      -ms-grid-column-span: 6;
      -ms-grid-column: 3;
          grid-column: 3/span 6; }
      @media (max-width: 44.375em) {
        .grid-columns .use-6-columns.offset-3 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-6-columns.offset-4 {
      -ms-grid-column-span: 6;
      -ms-grid-column: 4;
          grid-column: 4/span 6; }
      @media (max-width: 44.375em) {
        .grid-columns .use-6-columns.offset-4 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-6-columns.offset-5 {
      -ms-grid-column-span: 6;
      -ms-grid-column: 5;
          grid-column: 5/span 6; }
      @media (max-width: 44.375em) {
        .grid-columns .use-6-columns.offset-5 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-6-columns.offset-6 {
      -ms-grid-column-span: 6;
      -ms-grid-column: 6;
          grid-column: 6/span 6; }
      @media (max-width: 44.375em) {
        .grid-columns .use-6-columns.offset-6 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-6-columns.offset-7 {
      -ms-grid-column-span: 6;
      -ms-grid-column: 7;
          grid-column: 7/span 6; }
      @media (max-width: 44.375em) {
        .grid-columns .use-6-columns.offset-7 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-6-columns.offset-8 {
      -ms-grid-column-span: 6;
      -ms-grid-column: 8;
          grid-column: 8/span 6; }
      @media (max-width: 44.375em) {
        .grid-columns .use-6-columns.offset-8 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-6-columns.offset-9 {
      -ms-grid-column-span: 6;
      -ms-grid-column: 9;
          grid-column: 9/span 6; }
      @media (max-width: 44.375em) {
        .grid-columns .use-6-columns.offset-9 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-6-columns.offset-10 {
      -ms-grid-column-span: 6;
      -ms-grid-column: 10;
          grid-column: 10/span 6; }
      @media (max-width: 44.375em) {
        .grid-columns .use-6-columns.offset-10 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-6-columns.offset-11 {
      -ms-grid-column-span: 6;
      -ms-grid-column: 11;
          grid-column: 11/span 6; }
      @media (max-width: 44.375em) {
        .grid-columns .use-6-columns.offset-11 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
  .grid-columns .use-7-columns {
    -ms-grid-column: span 7;
        grid-column: span 7; }
    @media (max-width: 44.375em) {
      .grid-columns .use-7-columns {
        -ms-grid-column: span 12;
            grid-column: span 12; } }
    .grid-columns .use-7-columns.offset-2 {
      -ms-grid-column-span: 7;
      -ms-grid-column: 2;
          grid-column: 2/span 7; }
      @media (max-width: 44.375em) {
        .grid-columns .use-7-columns.offset-2 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-7-columns.offset-3 {
      -ms-grid-column-span: 7;
      -ms-grid-column: 3;
          grid-column: 3/span 7; }
      @media (max-width: 44.375em) {
        .grid-columns .use-7-columns.offset-3 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-7-columns.offset-4 {
      -ms-grid-column-span: 7;
      -ms-grid-column: 4;
          grid-column: 4/span 7; }
      @media (max-width: 44.375em) {
        .grid-columns .use-7-columns.offset-4 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-7-columns.offset-5 {
      -ms-grid-column-span: 7;
      -ms-grid-column: 5;
          grid-column: 5/span 7; }
      @media (max-width: 44.375em) {
        .grid-columns .use-7-columns.offset-5 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-7-columns.offset-6 {
      -ms-grid-column-span: 7;
      -ms-grid-column: 6;
          grid-column: 6/span 7; }
      @media (max-width: 44.375em) {
        .grid-columns .use-7-columns.offset-6 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-7-columns.offset-7 {
      -ms-grid-column-span: 7;
      -ms-grid-column: 7;
          grid-column: 7/span 7; }
      @media (max-width: 44.375em) {
        .grid-columns .use-7-columns.offset-7 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-7-columns.offset-8 {
      -ms-grid-column-span: 7;
      -ms-grid-column: 8;
          grid-column: 8/span 7; }
      @media (max-width: 44.375em) {
        .grid-columns .use-7-columns.offset-8 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-7-columns.offset-9 {
      -ms-grid-column-span: 7;
      -ms-grid-column: 9;
          grid-column: 9/span 7; }
      @media (max-width: 44.375em) {
        .grid-columns .use-7-columns.offset-9 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-7-columns.offset-10 {
      -ms-grid-column-span: 7;
      -ms-grid-column: 10;
          grid-column: 10/span 7; }
      @media (max-width: 44.375em) {
        .grid-columns .use-7-columns.offset-10 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-7-columns.offset-11 {
      -ms-grid-column-span: 7;
      -ms-grid-column: 11;
          grid-column: 11/span 7; }
      @media (max-width: 44.375em) {
        .grid-columns .use-7-columns.offset-11 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
  .grid-columns .use-8-columns {
    -ms-grid-column: span 8;
        grid-column: span 8; }
    @media (max-width: 44.375em) {
      .grid-columns .use-8-columns {
        -ms-grid-column: span 12;
            grid-column: span 12; } }
    .grid-columns .use-8-columns.offset-2 {
      -ms-grid-column-span: 8;
      -ms-grid-column: 2;
          grid-column: 2/span 8; }
      @media (max-width: 44.375em) {
        .grid-columns .use-8-columns.offset-2 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-8-columns.offset-3 {
      -ms-grid-column-span: 8;
      -ms-grid-column: 3;
          grid-column: 3/span 8; }
      @media (max-width: 44.375em) {
        .grid-columns .use-8-columns.offset-3 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-8-columns.offset-4 {
      -ms-grid-column-span: 8;
      -ms-grid-column: 4;
          grid-column: 4/span 8; }
      @media (max-width: 44.375em) {
        .grid-columns .use-8-columns.offset-4 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-8-columns.offset-5 {
      -ms-grid-column-span: 8;
      -ms-grid-column: 5;
          grid-column: 5/span 8; }
      @media (max-width: 44.375em) {
        .grid-columns .use-8-columns.offset-5 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-8-columns.offset-6 {
      -ms-grid-column-span: 8;
      -ms-grid-column: 6;
          grid-column: 6/span 8; }
      @media (max-width: 44.375em) {
        .grid-columns .use-8-columns.offset-6 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-8-columns.offset-7 {
      -ms-grid-column-span: 8;
      -ms-grid-column: 7;
          grid-column: 7/span 8; }
      @media (max-width: 44.375em) {
        .grid-columns .use-8-columns.offset-7 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-8-columns.offset-8 {
      -ms-grid-column-span: 8;
      -ms-grid-column: 8;
          grid-column: 8/span 8; }
      @media (max-width: 44.375em) {
        .grid-columns .use-8-columns.offset-8 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-8-columns.offset-9 {
      -ms-grid-column-span: 8;
      -ms-grid-column: 9;
          grid-column: 9/span 8; }
      @media (max-width: 44.375em) {
        .grid-columns .use-8-columns.offset-9 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-8-columns.offset-10 {
      -ms-grid-column-span: 8;
      -ms-grid-column: 10;
          grid-column: 10/span 8; }
      @media (max-width: 44.375em) {
        .grid-columns .use-8-columns.offset-10 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-8-columns.offset-11 {
      -ms-grid-column-span: 8;
      -ms-grid-column: 11;
          grid-column: 11/span 8; }
      @media (max-width: 44.375em) {
        .grid-columns .use-8-columns.offset-11 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
  .grid-columns .use-9-columns {
    -ms-grid-column: span 9;
        grid-column: span 9; }
    @media (max-width: 44.375em) {
      .grid-columns .use-9-columns {
        -ms-grid-column: span 12;
            grid-column: span 12; } }
    .grid-columns .use-9-columns.offset-2 {
      -ms-grid-column-span: 9;
      -ms-grid-column: 2;
          grid-column: 2/span 9; }
      @media (max-width: 44.375em) {
        .grid-columns .use-9-columns.offset-2 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-9-columns.offset-3 {
      -ms-grid-column-span: 9;
      -ms-grid-column: 3;
          grid-column: 3/span 9; }
      @media (max-width: 44.375em) {
        .grid-columns .use-9-columns.offset-3 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-9-columns.offset-4 {
      -ms-grid-column-span: 9;
      -ms-grid-column: 4;
          grid-column: 4/span 9; }
      @media (max-width: 44.375em) {
        .grid-columns .use-9-columns.offset-4 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-9-columns.offset-5 {
      -ms-grid-column-span: 9;
      -ms-grid-column: 5;
          grid-column: 5/span 9; }
      @media (max-width: 44.375em) {
        .grid-columns .use-9-columns.offset-5 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-9-columns.offset-6 {
      -ms-grid-column-span: 9;
      -ms-grid-column: 6;
          grid-column: 6/span 9; }
      @media (max-width: 44.375em) {
        .grid-columns .use-9-columns.offset-6 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-9-columns.offset-7 {
      -ms-grid-column-span: 9;
      -ms-grid-column: 7;
          grid-column: 7/span 9; }
      @media (max-width: 44.375em) {
        .grid-columns .use-9-columns.offset-7 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-9-columns.offset-8 {
      -ms-grid-column-span: 9;
      -ms-grid-column: 8;
          grid-column: 8/span 9; }
      @media (max-width: 44.375em) {
        .grid-columns .use-9-columns.offset-8 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-9-columns.offset-9 {
      -ms-grid-column-span: 9;
      -ms-grid-column: 9;
          grid-column: 9/span 9; }
      @media (max-width: 44.375em) {
        .grid-columns .use-9-columns.offset-9 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-9-columns.offset-10 {
      -ms-grid-column-span: 9;
      -ms-grid-column: 10;
          grid-column: 10/span 9; }
      @media (max-width: 44.375em) {
        .grid-columns .use-9-columns.offset-10 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-9-columns.offset-11 {
      -ms-grid-column-span: 9;
      -ms-grid-column: 11;
          grid-column: 11/span 9; }
      @media (max-width: 44.375em) {
        .grid-columns .use-9-columns.offset-11 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
  .grid-columns .use-10-columns {
    -ms-grid-column: span 10;
        grid-column: span 10; }
    @media (max-width: 44.375em) {
      .grid-columns .use-10-columns {
        -ms-grid-column: span 12;
            grid-column: span 12; } }
    .grid-columns .use-10-columns.offset-2 {
      -ms-grid-column-span: 10;
      -ms-grid-column: 2;
          grid-column: 2/span 10; }
      @media (max-width: 44.375em) {
        .grid-columns .use-10-columns.offset-2 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-10-columns.offset-3 {
      -ms-grid-column-span: 10;
      -ms-grid-column: 3;
          grid-column: 3/span 10; }
      @media (max-width: 44.375em) {
        .grid-columns .use-10-columns.offset-3 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-10-columns.offset-4 {
      -ms-grid-column-span: 10;
      -ms-grid-column: 4;
          grid-column: 4/span 10; }
      @media (max-width: 44.375em) {
        .grid-columns .use-10-columns.offset-4 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-10-columns.offset-5 {
      -ms-grid-column-span: 10;
      -ms-grid-column: 5;
          grid-column: 5/span 10; }
      @media (max-width: 44.375em) {
        .grid-columns .use-10-columns.offset-5 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-10-columns.offset-6 {
      -ms-grid-column-span: 10;
      -ms-grid-column: 6;
          grid-column: 6/span 10; }
      @media (max-width: 44.375em) {
        .grid-columns .use-10-columns.offset-6 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-10-columns.offset-7 {
      -ms-grid-column-span: 10;
      -ms-grid-column: 7;
          grid-column: 7/span 10; }
      @media (max-width: 44.375em) {
        .grid-columns .use-10-columns.offset-7 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-10-columns.offset-8 {
      -ms-grid-column-span: 10;
      -ms-grid-column: 8;
          grid-column: 8/span 10; }
      @media (max-width: 44.375em) {
        .grid-columns .use-10-columns.offset-8 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-10-columns.offset-9 {
      -ms-grid-column-span: 10;
      -ms-grid-column: 9;
          grid-column: 9/span 10; }
      @media (max-width: 44.375em) {
        .grid-columns .use-10-columns.offset-9 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-10-columns.offset-10 {
      -ms-grid-column-span: 10;
      -ms-grid-column: 10;
          grid-column: 10/span 10; }
      @media (max-width: 44.375em) {
        .grid-columns .use-10-columns.offset-10 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-10-columns.offset-11 {
      -ms-grid-column-span: 10;
      -ms-grid-column: 11;
          grid-column: 11/span 10; }
      @media (max-width: 44.375em) {
        .grid-columns .use-10-columns.offset-11 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
  .grid-columns .use-11-columns {
    -ms-grid-column: span 11;
        grid-column: span 11; }
    @media (max-width: 44.375em) {
      .grid-columns .use-11-columns {
        -ms-grid-column: span 12;
            grid-column: span 12; } }
    .grid-columns .use-11-columns.offset-2 {
      -ms-grid-column-span: 11;
      -ms-grid-column: 2;
          grid-column: 2/span 11; }
      @media (max-width: 44.375em) {
        .grid-columns .use-11-columns.offset-2 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-11-columns.offset-3 {
      -ms-grid-column-span: 11;
      -ms-grid-column: 3;
          grid-column: 3/span 11; }
      @media (max-width: 44.375em) {
        .grid-columns .use-11-columns.offset-3 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-11-columns.offset-4 {
      -ms-grid-column-span: 11;
      -ms-grid-column: 4;
          grid-column: 4/span 11; }
      @media (max-width: 44.375em) {
        .grid-columns .use-11-columns.offset-4 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-11-columns.offset-5 {
      -ms-grid-column-span: 11;
      -ms-grid-column: 5;
          grid-column: 5/span 11; }
      @media (max-width: 44.375em) {
        .grid-columns .use-11-columns.offset-5 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-11-columns.offset-6 {
      -ms-grid-column-span: 11;
      -ms-grid-column: 6;
          grid-column: 6/span 11; }
      @media (max-width: 44.375em) {
        .grid-columns .use-11-columns.offset-6 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-11-columns.offset-7 {
      -ms-grid-column-span: 11;
      -ms-grid-column: 7;
          grid-column: 7/span 11; }
      @media (max-width: 44.375em) {
        .grid-columns .use-11-columns.offset-7 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-11-columns.offset-8 {
      -ms-grid-column-span: 11;
      -ms-grid-column: 8;
          grid-column: 8/span 11; }
      @media (max-width: 44.375em) {
        .grid-columns .use-11-columns.offset-8 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-11-columns.offset-9 {
      -ms-grid-column-span: 11;
      -ms-grid-column: 9;
          grid-column: 9/span 11; }
      @media (max-width: 44.375em) {
        .grid-columns .use-11-columns.offset-9 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-11-columns.offset-10 {
      -ms-grid-column-span: 11;
      -ms-grid-column: 10;
          grid-column: 10/span 11; }
      @media (max-width: 44.375em) {
        .grid-columns .use-11-columns.offset-10 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-11-columns.offset-11 {
      -ms-grid-column-span: 11;
      -ms-grid-column: 11;
          grid-column: 11/span 11; }
      @media (max-width: 44.375em) {
        .grid-columns .use-11-columns.offset-11 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
  .grid-columns .use-12-columns {
    -ms-grid-column: span 12;
        grid-column: span 12; }
    @media (max-width: 44.375em) {
      .grid-columns .use-12-columns {
        -ms-grid-column: span 12;
            grid-column: span 12; } }
    .grid-columns .use-12-columns.offset-2 {
      -ms-grid-column-span: 12;
      -ms-grid-column: 2;
          grid-column: 2/span 12; }
      @media (max-width: 44.375em) {
        .grid-columns .use-12-columns.offset-2 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-12-columns.offset-3 {
      -ms-grid-column-span: 12;
      -ms-grid-column: 3;
          grid-column: 3/span 12; }
      @media (max-width: 44.375em) {
        .grid-columns .use-12-columns.offset-3 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-12-columns.offset-4 {
      -ms-grid-column-span: 12;
      -ms-grid-column: 4;
          grid-column: 4/span 12; }
      @media (max-width: 44.375em) {
        .grid-columns .use-12-columns.offset-4 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-12-columns.offset-5 {
      -ms-grid-column-span: 12;
      -ms-grid-column: 5;
          grid-column: 5/span 12; }
      @media (max-width: 44.375em) {
        .grid-columns .use-12-columns.offset-5 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-12-columns.offset-6 {
      -ms-grid-column-span: 12;
      -ms-grid-column: 6;
          grid-column: 6/span 12; }
      @media (max-width: 44.375em) {
        .grid-columns .use-12-columns.offset-6 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-12-columns.offset-7 {
      -ms-grid-column-span: 12;
      -ms-grid-column: 7;
          grid-column: 7/span 12; }
      @media (max-width: 44.375em) {
        .grid-columns .use-12-columns.offset-7 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-12-columns.offset-8 {
      -ms-grid-column-span: 12;
      -ms-grid-column: 8;
          grid-column: 8/span 12; }
      @media (max-width: 44.375em) {
        .grid-columns .use-12-columns.offset-8 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-12-columns.offset-9 {
      -ms-grid-column-span: 12;
      -ms-grid-column: 9;
          grid-column: 9/span 12; }
      @media (max-width: 44.375em) {
        .grid-columns .use-12-columns.offset-9 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-12-columns.offset-10 {
      -ms-grid-column-span: 12;
      -ms-grid-column: 10;
          grid-column: 10/span 12; }
      @media (max-width: 44.375em) {
        .grid-columns .use-12-columns.offset-10 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }
    .grid-columns .use-12-columns.offset-11 {
      -ms-grid-column-span: 12;
      -ms-grid-column: 11;
          grid-column: 11/span 12; }
      @media (max-width: 44.375em) {
        .grid-columns .use-12-columns.offset-11 {
          -ms-grid-column: span 12;
              grid-column: span 12; } }

/**
 * Remove the unit of a length
 * @param {Number} $number - Number to remove unit from
 * @return {Number} - Unitless number
 */
/**
 * Convert pixels to rem
 */
/* ### --- _elements.scss ==================================================================== */
/**
* @file
* Style for HTML elements.
*/
html {
  font-size: 62.5%;
  /* Sets up the Base 10 stuff */ }

body {
  background: #fff;
  color: #464646;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5em; }
  @media (max-width: 44.375em) {
    body {
      font-size: 1.9rem;
      line-height: 1.5em; } }

a, a:visited {
  color: #049CCF; }

a:hover, a:focus {
  color: #464646; }

.entry-content a {
  box-shadow: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700; }

h1, .h1 {
  color: #333333;
  font-size: 3.8rem;
  line-height: 0.8em; }
  @media (max-width: 44.375em) {
    h1, .h1 {
      font-size: 4.8rem;
      line-height: 1em; } }

h2, .h2 {
  font-size: 3.8rem;
  line-height: 1.1667em; }

h3, .h3 {
  font-size: 2.7rem;
  line-height: 1.4444em; }

h4 {
  font-size: 2.2rem; }

h5 {
  font-size: 1.9rem; }

h6 {
  font-size: 1.8rem; }

small {
  font-size: 1.7rem; }

strong {
  font-weight: 700; }

.txt-hero {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 4.4rem;
  font-weight: 400;
  line-height: 1em; }
  @media (max-width: 44.375em) {
    .txt-hero {
      font-size: 6.4rem; } }

.txt-big {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1em; }
  @media (max-width: 44.375em) {
    .txt-big {
      font-size: 4.4rem; } }

.no-wrap {
  white-space: nowrap; }

.entry-content {
  font-size: 1.9rem;
  line-height: 3.1rem; }

p {
  font-size: 1.9rem;
  line-height: 3.1rem; }

select,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
textarea {
  background: #E9E9E9;
  background-image: none;
  border: 1px solid #E9E9E9;
  border-radius: 0px;
  color: #464646;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.6rem; }
  select:not([placeholder='']),
  input[type="text"]:not([placeholder='']),
  input[type="email"]:not([placeholder='']),
  input[type="url"]:not([placeholder='']),
  input[type="password"]:not([placeholder='']),
  input[type="search"]:not([placeholder='']),
  input[type="tel"]:not([placeholder='']),
  input[type="number"]:not([placeholder='']),
  textarea:not([placeholder='']) {
    margin-bottom: 10px; }
    select:not([placeholder='']) + label,
    input[type="text"]:not([placeholder='']) + label,
    input[type="email"]:not([placeholder='']) + label,
    input[type="url"]:not([placeholder='']) + label,
    input[type="password"]:not([placeholder='']) + label,
    input[type="search"]:not([placeholder='']) + label,
    input[type="tel"]:not([placeholder='']) + label,
    input[type="number"]:not([placeholder='']) + label,
    textarea:not([placeholder='']) + label {
      display: none !important; }
  select:focus,
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="url"]:focus,
  input[type="password"]:focus,
  input[type="search"]:focus,
  input[type="tel"]:focus,
  input[type="number"]:focus,
  textarea:focus {
    background-color: #E9E9E9;
    border-color: #2B2B2B; }

select {
  padding: 0.625em 0.4375em; }

input[type="submit"] {
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 0;
  padding: .5em 1em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: linear-gradient(180deg, #FFFFFF, #D3D3D3);
  border-color: #d4d4d4;
  box-shadow: 1px 1px 0px 1px rgba(0, 0, 0, 0.6);
  color: #333333; }
  input[type="submit"] [class*="cc-icon-"]::before {
    line-height: 0.8em; }
  input[type="submit"]:hover {
    background: linear-gradient(0deg, #D2D2D2, #A1A1A1);
    border-color: #b2b2b2; }

.crm-marker {
  color: #EC592F; }

/* -- Search form -- */
.search-form {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .search-form label {
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
    .search-form label .search-field {
      border-radius: 0 !important;
      width: 100% !important;
      height: 31px; }
  .search-form .search-submit {
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    position: relative;
    background: #049BCE;
    border-radius: 0;
    color: #fff;
    height: 31px;
    width: 32px; }
    .search-form .search-submit::before {
      content: "";
      font-family: "cc-fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      width: 1em;
      margin-right: .2em;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* Animation center compensation - margins should be symmetric */
      /* remove if not needed */
      margin-left: .2em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
      font-size: 20px;
      left: 0;
      margin: 0;
      position: relative;
      top: -1px; }
    .search-form .search-submit:hover, .search-form .search-submit:focus {
      background: #EC592F; }
  .site-footer .search-form input.search-field[type="search"] {
    font-size: 1.2rem;
    background-color: #E9E9E9;
    border-color: #E9E9E9;
    padding-bottom: 0;
    padding-top: 0;
    margin: 0;
    -webkit-appearance: none; }
  body.layout-mobile .search-form .search-field {
    display: none; }
  @media (max-width: 44.375em) {
    body.layout-mobile .search-form .search-field {
      display: block; } }

/* -- Gravity forms -- */
.gform_wrapper .top_label .gfield_label {
  margin: 0 !important; }

.gform_wrapper .top_label .gfield_label + div.ginput_container {
  margin-top: 0 !important; }

.gform_wrapper .left_label .gfield_label {
  text-align: right !important;
  width: 20% !important; }

.gform_wrapper .left_label li.gfield_html_formatted,
.gform_wrapper .left_label ul.gfield_checkbox,
.gform_wrapper .left_label ul.gfield_radio {
  margin-left: 20% !important;
  padding-left: 1em; }
  html body .gform_wrapper .left_label li.gfield_html_formatted, html body
  .gform_wrapper .left_label ul.gfield_checkbox, html body
  .gform_wrapper .left_label ul.gfield_radio {
    margin-left: 20% !important; }

.gform_wrapper .gfield_label {
  font-size: 1.6rem; }

.gform_wrapper .gfield_html {
  font-size: 1.6rem;
  line-height: 1.5em; }

.gform_wrapper .gfield_list td.gfield_list_cell input:last-child {
  margin-bottom: 0; }

.gform_wrapper .gform_wrapper .gfield_time_hour i {
  margin-right: 0.4em;
  margin-top: 5%; }

.gform_wrapper .gform_wrapper .gfield_time_hour label {
  display: none; }

.gform_wrapper input + label {
  font-size: 1.5rem !important;
  margin-top: 0 !important; }

.gform_wrapper select,
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="url"],
.gform_wrapper input[type="password"],
.gform_wrapper input[type="search"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="number"],
.gform_wrapper textarea {
  font-size: 1.6rem !important; }
  .gform_wrapper select:not([placeholder='']),
  .gform_wrapper input[type="text"]:not([placeholder='']),
  .gform_wrapper input[type="email"]:not([placeholder='']),
  .gform_wrapper input[type="url"]:not([placeholder='']),
  .gform_wrapper input[type="password"]:not([placeholder='']),
  .gform_wrapper input[type="search"]:not([placeholder='']),
  .gform_wrapper input[type="tel"]:not([placeholder='']),
  .gform_wrapper input[type="number"]:not([placeholder='']),
  .gform_wrapper textarea:not([placeholder='']) {
    margin-bottom: 10px; }
    .gform_wrapper select:not([placeholder='']) + label,
    .gform_wrapper input[type="text"]:not([placeholder='']) + label,
    .gform_wrapper input[type="email"]:not([placeholder='']) + label,
    .gform_wrapper input[type="url"]:not([placeholder='']) + label,
    .gform_wrapper input[type="password"]:not([placeholder='']) + label,
    .gform_wrapper input[type="search"]:not([placeholder='']) + label,
    .gform_wrapper input[type="tel"]:not([placeholder='']) + label,
    .gform_wrapper input[type="number"]:not([placeholder='']) + label,
    .gform_wrapper textarea:not([placeholder='']) + label {
      display: none !important; }

.gform_wrapper .description,
.gform_wrapper .gfield_description,
.gform_wrapper .gsection_description,
.gform_wrapper .instruction {
  font-size: 1.5rem !important; }

.gform_button[type="submit"] {
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 0;
  padding: .5em 1em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: #EC592F;
  border-color: #EC592F;
  color: #fff; }
  .gform_button[type="submit"] [class*="cc-icon-"]::before {
    line-height: 0.8em; }
  .gform_button[type="submit"]::after {
    border-left-color: #EC592F; }
  .gform_button[type="submit"]:hover {
    background: #FB7928;
    border-color: #FB7928;
    color: #fff; }
    .gform_button[type="submit"]:hover::after {
      border-left-color: #FB7928; }

@media only screen and (min-width: 641px) {
  .gform_wrapper .left_label div.ginput_container_email {
    width: 70%;
    margin-left: 29%; }
  ul.gform_fields:not(.top_label) div.ginput_container_email {
    width: calc(70% + 15px);
    margin-left: 29%; }
    ul.gform_fields:not(.top_label) div.ginput_container_email input {
      width: calc(50% - 15px); } }

button,
.button {
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 0;
  padding: .5em 1em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  /* -- default -- */
  /* -- Primary -- */
  /* -- Secondary -- */
  /* -- Tertiary -- */
  /* -- Donate -- */ }
  button [class*="cc-icon-"]::before,
  .button [class*="cc-icon-"]::before {
    line-height: 0.8em; }
  button.default,
  .button.default {
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 3px;
    cursor: pointer;
    display: inline-block;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 0;
    padding: .5em 1em;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background-image: linear-gradient(180deg, #FFFFFF, #D3D3D3);
    border-color: #d4d4d4;
    box-shadow: 1px 1px 0px 1px rgba(0, 0, 0, 0.6);
    color: #333333; }
    button.default [class*="cc-icon-"]::before,
    .button.default [class*="cc-icon-"]::before {
      line-height: 0.8em; }
    button.default:hover,
    .button.default:hover {
      background: linear-gradient(0deg, #D2D2D2, #A1A1A1);
      border-color: #b2b2b2; }
  button.primary,
  .button.primary {
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    display: inline-block;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 0;
    padding: .5em 1em;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background: #EC592F;
    border-color: #EC592F;
    color: #fff; }
    button.primary [class*="cc-icon-"]::before,
    .button.primary [class*="cc-icon-"]::before {
      line-height: 0.8em; }
    button.primary::after,
    .button.primary::after {
      border-left-color: #EC592F; }
    button.primary:hover,
    .button.primary:hover {
      background: #FB7928;
      border-color: #FB7928;
      color: #fff; }
      button.primary:hover::after,
      .button.primary:hover::after {
        border-left-color: #FB7928; }
    button.primary.arrow,
    .button.primary.arrow {
      background-color: transparent;
      background-image: none;
      border: 1px solid transparent;
      border-radius: 0;
      cursor: pointer;
      display: inline-block;
      font-family: "Source Sans Pro", sans-serif;
      font-size: 1.9rem;
      font-weight: 700;
      line-height: 1em;
      margin-bottom: 0;
      padding: .5em 1em;
      text-align: center;
      text-decoration: none;
      white-space: nowrap;
      vertical-align: middle;
      -ms-touch-action: manipulation;
          touch-action: manipulation;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
      padding-top: 0.4em;
      position: relative;
      z-index: 1;
      background: #EC592F;
      border-color: #EC592F;
      color: #fff; }
      button.primary.arrow::after,
      .button.primary.arrow::after {
        content: '';
        display: block;
        border-color: transparent;
        border-style: solid none solid solid;
        border-width: 1em 0 1em 0.6em;
        height: 0;
        left: 100%;
        position: absolute;
        top: 0;
        width: 0;
        margin: -1px 1px; }
      button.primary.arrow [class*="cc-icon-"]::before,
      .button.primary.arrow [class*="cc-icon-"]::before {
        line-height: 0.8em; }
      button.primary.arrow::after,
      .button.primary.arrow::after {
        border-left-color: #EC592F; }
      button.primary.arrow:hover,
      .button.primary.arrow:hover {
        background: #FB7928;
        border-color: #FB7928;
        color: #fff; }
        button.primary.arrow:hover::after,
        .button.primary.arrow:hover::after {
          border-left-color: #FB7928; }
  button.secondary,
  .button.secondary {
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    display: inline-block;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 0;
    padding: .5em 1em;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background: #00B5DA;
    border-color: #00B5DA;
    color: #fff; }
    button.secondary [class*="cc-icon-"]::before,
    .button.secondary [class*="cc-icon-"]::before {
      line-height: 0.8em; }
    button.secondary::after,
    .button.secondary::after {
      border-left-color: #00B5DA; }
    button.secondary:hover,
    .button.secondary:hover {
      background: #01C5ED;
      border-color: #01C5ED;
      color: #fff; }
      button.secondary:hover::after,
      .button.secondary:hover::after {
        border-left-color: #01C5ED; }
    button.secondary.arrow,
    .button.secondary.arrow {
      background-color: transparent;
      background-image: none;
      border: 1px solid transparent;
      border-radius: 0;
      cursor: pointer;
      display: inline-block;
      font-family: "Source Sans Pro", sans-serif;
      font-size: 1.9rem;
      font-weight: 700;
      line-height: 1em;
      margin-bottom: 0;
      padding: .5em 1em;
      text-align: center;
      text-decoration: none;
      white-space: nowrap;
      vertical-align: middle;
      -ms-touch-action: manipulation;
          touch-action: manipulation;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
      padding-top: 0.4em;
      position: relative;
      z-index: 1;
      background: #00B5DA;
      border-color: #00B5DA;
      color: #fff; }
      button.secondary.arrow::after,
      .button.secondary.arrow::after {
        content: '';
        display: block;
        border-color: transparent;
        border-style: solid none solid solid;
        border-width: 1em 0 1em 0.6em;
        height: 0;
        left: 100%;
        position: absolute;
        top: 0;
        width: 0;
        margin: -1px 1px; }
      button.secondary.arrow [class*="cc-icon-"]::before,
      .button.secondary.arrow [class*="cc-icon-"]::before {
        line-height: 0.8em; }
      button.secondary.arrow::after,
      .button.secondary.arrow::after {
        border-left-color: #00B5DA; }
      button.secondary.arrow:hover,
      .button.secondary.arrow:hover {
        background: #01C5ED;
        border-color: #01C5ED;
        color: #fff; }
        button.secondary.arrow:hover::after,
        .button.secondary.arrow:hover::after {
          border-left-color: #01C5ED; }
  button.tertiary,
  .button.tertiary {
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    display: inline-block;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 0;
    padding: .5em 1em;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background: #EFBE00;
    border-color: #EFBE00;
    color: #fff; }
    button.tertiary [class*="cc-icon-"]::before,
    .button.tertiary [class*="cc-icon-"]::before {
      line-height: 0.8em; }
    button.tertiary::after,
    .button.tertiary::after {
      border-left-color: #EFBE00; }
    button.tertiary:hover,
    .button.tertiary:hover {
      background: #FFCE10;
      border-color: #FFCE10;
      color: #fff; }
      button.tertiary:hover::after,
      .button.tertiary:hover::after {
        border-left-color: #FFCE10; }
    button.tertiary.arrow,
    .button.tertiary.arrow {
      background-color: transparent;
      background-image: none;
      border: 1px solid transparent;
      border-radius: 0;
      cursor: pointer;
      display: inline-block;
      font-family: "Source Sans Pro", sans-serif;
      font-size: 1.9rem;
      font-weight: 700;
      line-height: 1em;
      margin-bottom: 0;
      padding: .5em 1em;
      text-align: center;
      text-decoration: none;
      white-space: nowrap;
      vertical-align: middle;
      -ms-touch-action: manipulation;
          touch-action: manipulation;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
      padding-top: 0.4em;
      position: relative;
      z-index: 1;
      background: #EFBE00;
      border-color: #EFBE00;
      color: #fff; }
      button.tertiary.arrow::after,
      .button.tertiary.arrow::after {
        content: '';
        display: block;
        border-color: transparent;
        border-style: solid none solid solid;
        border-width: 1em 0 1em 0.6em;
        height: 0;
        left: 100%;
        position: absolute;
        top: 0;
        width: 0;
        margin: -1px 1px; }
      button.tertiary.arrow [class*="cc-icon-"]::before,
      .button.tertiary.arrow [class*="cc-icon-"]::before {
        line-height: 0.8em; }
      button.tertiary.arrow::after,
      .button.tertiary.arrow::after {
        border-left-color: #EFBE00; }
      button.tertiary.arrow:hover,
      .button.tertiary.arrow:hover {
        background: #FFCE10;
        border-color: #FFCE10;
        color: #fff; }
        button.tertiary.arrow:hover::after,
        .button.tertiary.arrow:hover::after {
          border-left-color: #FFCE10; }
  button.donate,
  .button.donate {
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    display: inline-block;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 0;
    padding: .5em 1em;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background: #01A635;
    border-color: #01A635;
    color: #fff; }
    button.donate [class*="cc-icon-"]::before,
    .button.donate [class*="cc-icon-"]::before {
      line-height: 0.8em; }
    button.donate::after,
    .button.donate::after {
      border-left-color: #01A635; }
    button.donate:hover,
    .button.donate:hover {
      background: #FB7928;
      border-color: #FB7928;
      color: #fff; }
      button.donate:hover::after,
      .button.donate:hover::after {
        border-left-color: #FB7928; }
    button.donate.arrow,
    .button.donate.arrow {
      background-color: transparent;
      background-image: none;
      border: 1px solid transparent;
      border-radius: 0;
      cursor: pointer;
      display: inline-block;
      font-family: "Source Sans Pro", sans-serif;
      font-size: 1.9rem;
      font-weight: 700;
      line-height: 1em;
      margin-bottom: 0;
      padding: .5em 1em;
      text-align: center;
      text-decoration: none;
      white-space: nowrap;
      vertical-align: middle;
      -ms-touch-action: manipulation;
          touch-action: manipulation;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
      padding-top: 0.4em;
      position: relative;
      z-index: 1;
      background: #01A635;
      border-color: #01A635;
      color: #fff; }
      button.donate.arrow::after,
      .button.donate.arrow::after {
        content: '';
        display: block;
        border-color: transparent;
        border-style: solid none solid solid;
        border-width: 1em 0 1em 0.6em;
        height: 0;
        left: 100%;
        position: absolute;
        top: 0;
        width: 0;
        margin: -1px 1px; }
      button.donate.arrow [class*="cc-icon-"]::before,
      .button.donate.arrow [class*="cc-icon-"]::before {
        line-height: 0.8em; }
      button.donate.arrow::after,
      .button.donate.arrow::after {
        border-left-color: #01A635; }
      button.donate.arrow:hover,
      .button.donate.arrow:hover {
        background: #FB7928;
        border-color: #FB7928;
        color: #fff; }
        button.donate.arrow:hover::after,
        .button.donate.arrow:hover::after {
          border-left-color: #FB7928; }

ul.unstyled {
  padding-left: 0; }
  ul.unstyled li {
    list-style: none outside none; }

li {
  margin-bottom: 0.5em;
  list-style-image: url("../images/bulletin.png"); }

hr {
  background: #00B5DA;
  height: 10px; }
  hr.primary {
    background: #EC592F; }
  hr.secondary {
    background: #00B5DA; }
  hr.tertiary {
    background: #EFBE00; }
  hr.donate {
    background: #01A635; }

.more-link {
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase; }
  .more-link::after {
    content: "";
    font-family: "cc-fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    /* opacity: .8; */
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;
    /* Animation center compensation - margins should be symmetric */
    /* remove if not needed */
    margin-left: .2em;
    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */
    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
    color: #F15640; }

blockquote {
  border-left: 10px solid #00B5DA;
  color: #464646;
  font-size: 2.3rem;
  font-style: normal;
  font-weight: 600;
  margin-left: 0px !important; }

.cc-search-form .gform_wrapper {
  display: block; }
  .cc-search-form .gform_wrapper form {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row; }
  .cc-search-form .gform_wrapper .gform_body {
    width: 55%;
    margin: 0; }
    @media (max-width: 44.375em) {
      .cc-search-form .gform_wrapper .gform_body {
        width: 50%; } }
    .cc-search-form .gform_wrapper .gform_body .gfield_label {
      display: none; }
    .cc-search-form .gform_wrapper .gform_body .ginput_container input {
      padding: 8px 4px;
      width: 100%;
      height: 40px;
      /* matches height of input-button */ }
    .cc-search-form .gform_wrapper .gform_body .ginput_container.ginput_container_text {
      margin: 0; }
  .cc-search-form .gform_wrapper .gform_footer.left_label {
    width: 12em;
    -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1;
    margin: 0;
    padding: 0; }
    .cc-search-form .gform_wrapper .gform_footer.left_label .button.gform_button {
      border: 0 none;
      border-radius: 0;
      box-shadow: none;
      color: #fff;
      height: 40px;
      max-width: 200px;
      max-height: 40px;
      background: url("../images/primary-button-sprite.png") no-repeat right top;
      width: 100%;
      text-transform: none; }
      .cc-search-form .gform_wrapper .gform_footer.left_label .button.gform_button:hover, .cc-search-form .gform_wrapper .gform_footer.left_label .button.gform_button:focus {
        background-position: right bottom; }

.subscribe-main-content #email-Primary {
  display: inline-block;
  width: 60%;
  padding: 7.8px !important; }
  @media (min-width: 56.875em) {
    .subscribe-main-content #email-Primary {
      width: 50%; } }
  @media (min-width: 61.5625em) {
    .subscribe-main-content #email-Primary {
      width: 40%; } }

/* ### --- END _elements.scss ==================================================================== */
.filter-form {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #E9E9E9; }
  .filter-form .filter-row {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    .filter-form .filter-row .item {
      margin-right: 1rem;
      -webkit-align-self: center;
          -ms-flex-item-align: center;
                  -ms-grid-row-align: center;
              align-self: center; }
      .filter-form .filter-row .item.search-description h5 {
        text-transform: uppercase;
        font-family: "Roboto Condensed", sans-serif;
        font-weight: 500; }
      .filter-form .filter-row .item select, .filter-form .filter-row .item input {
        margin-bottom: 0; }
      .filter-form .filter-row .item:last-child {
        margin-right: 0; }

.featured-programs .hero {
  max-width: 1120px;
  margin: 0 auto 20px;
  clear: both; }
  .featured-programs .hero .item {
    text-align: left;
    clear: both; }
  .featured-programs .hero .thumbnail {
    display: inline-block;
    float: left;
    margin-left: 32px; }
    .featured-programs .hero .thumbnail img {
      width: 200px;
      height: 200px; }
  .featured-programs .hero .teaser {
    display: inline-block;
    width: calc(100% - 280px);
    margin-left: 40px;
    clear: both; }

.featured-programs .entry-program {
  margin-bottom: 70px; }
  .featured-programs .entry-program .item {
    text-align: center; }
  .featured-programs .entry-program .thumbnail img {
    background: #fff;
    border-radius: 50%;
    width: 100px;
    height: auto; }
  .featured-programs .entry-program .title {
    font-size: 3rem;
    line-height: 1.4444em;
    margin: 24px 0 14px 0; }
    .featured-programs .entry-program .title a, .featured-programs .entry-program .title a:visited {
      color: #F15640; }
    .featured-programs .entry-program .title a:hover {
      color: #fff; }

.entry-work .thumbnail {
  width: 100%;
  height: 175px;
  overflow: hidden;
  margin-bottom: 20px; }

.entry-work .title a, .entry-work .title a:visited {
  color: #F15640; }

.entry-work .title a:hover, .entry-work .title a:active {
  color: #2B2B2B; }

.entry-event a .entry-date-content {
  position: relative; }
  .entry-event a .entry-date-content .entry-image img {
    width: 100%; }
  .entry-event a .entry-date-content .entry-date-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10; }
    .entry-event a .entry-date-content .entry-date-container .entry-date {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      height: 100%;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      text-align: center;
      color: #fff;
      background: rgba(0, 0, 0, 0.4); }
      .entry-event a .entry-date-content .entry-date-container .entry-date .weekday {
        text-transform: uppercase; }
      .entry-event a .entry-date-content .entry-date-container .entry-date .day {
        font-size: 5rem;
        line-height: 5rem;
        font-family: "Roboto Condensed", sans-serif;
        font-weight: 700; }
      .entry-event a .entry-date-content .entry-date-container .entry-date .month {
        text-transform: uppercase; }
    .entry-event a .entry-date-content .entry-date-container.no-thumb {
      position: relative; }
      .entry-event a .entry-date-content .entry-date-container.no-thumb .entry-date {
        padding: 10% 0; }

.entry-event a .entry-info {
  border-top: 10px solid #F15640;
  padding: 1rem; }
  .entry-event a .entry-info .entry-title {
    font-size: 2.2rem;
    color: #F15640; }

.entry-event a:hover .entry-date-container .entry-date {
  background: rgba(0, 0, 0, 0.6); }

.entry-event a:hover .entry-info .entry-title {
  color: #2B2B2B; }

.entry-video a .entry-title {
  font-size: 2.2rem;
  color: #2B2B2B;
  padding: 1rem 0; }

.entry-video a:hover .entry-title {
  color: #F15640; }

/* ### ---  _layout.scss ==================================================================== */
body::before, body::after {
  display: none !important;
  height: 0 !important; }

@media (max-width: 44.375em) {
  body {
    overflow-x: hidden; } }

.site {
  margin: 0; }

.site-header-wrapper {
  position: relative; }

.site-header {
  /*  background-color: $blue-brand; */
  /*height: 70px; */
  padding: 0;
  width: 100%;
  z-index: 302; }
  .site-header img {
    height: 50px;
    transition: all 0.4s ease;
    max-width: 100%;
    width: auto; }
  .site-header.spacer {
    position: relative;
    bottom: 0;
    transition: height 0.4s ease;
    box-shadow: none;
    z-index: 300; }
    .site-header.spacer .site-header-main > *,
    .site-header.spacer .site-header-main::before,
    .site-header.spacer .site-header-main::after {
      visibility: hidden; }
  .site-header.sticky {
    position: absolute;
    bottom: 0; }
  .site-header.sticky.detached {
    /* Detached header behaviour */
    position: fixed;
    top: 0;
    bottom: auto;
    z-index: 301;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
    .site-header.sticky.detached.offscreen {
      -webkit-transform: translateY(-105%);
          -ms-transform: translateY(-105%);
              transform: translateY(-105%); }
  .site-header.sticky:not(.attached) {
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease; }
  .site-header.sticky.detached {
    /* Detached header contents */
    height: 40px; }
    .site-header.sticky.detached img {
      height: 30px; }
    .site-header.sticky.detached .site-branding {
      margin-bottom: 2px; }
    .site-header.sticky.detached .menu-toggle {
      top: -3px; }
  @media (max-width: 44.375em) {
    .site-header {
      height: 50px;
      margin-top: 0; } }
  @media (min-width: 61.5625em) {
    .site-header {
      box-shadow: 0px 0 4px 0 rgba(0, 0, 0, 0.8); } }
  @media (min-width: 56.875em) {
    .site-header {
      background-image: none;
      /*    background-color: $blue-brand; */
      box-shadow: none;
      height: 130px; }
      .site-header img {
        height: 57px; }
      .site-header.sticky.detached {
        /* Detached header contents */
        height: 60px; }
        .site-header.sticky.detached img {
          height: 40px;
          width: auto; }
        .site-header.sticky.detached .site-branding {
          margin-bottom: 12px; } }

body.admin-bar .site-header.sticky {
  margin-top: 0px; }
  @media (max-width: 44.375em) {
    body.admin-bar .site-header.sticky {
      margin-top: 46px; } }
  @media (max-width: 48.9375em) {
    body.admin-bar .site-header.sticky {
      margin-top: 32px; } }

.site-menu-wrapper .main-navigation {
  margin: 0 -20px; }
  .site-menu-wrapper .main-navigation .menu-item.menu-item-has-children .sub-menu {
    background-color: #fff;
    list-style-type: none; }
    .site-menu-wrapper .main-navigation .menu-item.menu-item-has-children .sub-menu .menu-item {
      margin-bottom: 0;
      list-style: none; }
      .site-menu-wrapper .main-navigation .menu-item.menu-item-has-children .sub-menu .menu-item a {
        color: #000;
        font-size: 1.8rem; }

.archive-list .post .teaser-post-image {
  text-align: center; }

.archive-list .post .entry-content {
  margin-top: 2rem;
  width: 100% !important;
  float: none !important;
  text-align: center; }

.site-header-main {
  /*
    @include content-constrained();
    height: 100%;
    justify-content: space-between;
    position: relative;
    */ }
  @media (min-width: 56.875em) {
    .site-header-main {
      background-image: linear-gradient(90deg, #1eb6d9, #1eb6d9, #1eb6d9);
      background-size: 100% 130px;
      /* 130px: maximum height of site-header */
      background-position-y: bottom; }
      .site-header-main::before, .site-header-main::after {
        bottom: 0;
        content: "";
        left: 1%;
        position: absolute;
        right: 1%;
        top: 50%;
        z-index: -1; }
      .site-header-main::after {
        left: auto;
        right: 10px;
        -webkit-transform: skew(8deg) rotate(3deg);
            -ms-transform: skew(8deg) rotate(3deg);
                transform: skew(8deg) rotate(3deg); }
      .site-header-main, .wp-custom-logo .site-header-main {
        -webkit-align-items: flex-end;
            -ms-flex-align: end;
                align-items: flex-end;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between; } }

.site-header .site-header-menu {
  transition: margin 0.4s ease;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  margin: 0 0 20px 0; }
  @media (min-width: 56.875em) {
    .site-header .site-header-menu {
      margin-bottom: 24px;
      width: 60%; } }
  @media (min-width: 61.5625em) {
    .site-header .site-header-menu {
      width: 100%; } }

.site-header.detached .site-header-menu {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
              -ms-grid-row-align: center;
          align-self: center;
  margin: 0; }

.entry-header {
  padding-top: 2rem;
  padding-bottom: 2rem; }
  .entry-header .entry-title {
    font-size: 48px;
    line-height: 1.1em; }

.single .wrapper-main .post .entry-content, .page .wrapper-main .post .entry-content {
  float: none !important;
  width: 100% !important; }

.entry-main-content .entry-date-container {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: 10px solid #464646;
  border-bottom: 1px solid #464646; }
  .entry-main-content .entry-date-container .entry-date {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    color: #2B2B2B;
    background: transparent; }
    .entry-main-content .entry-date-container .entry-date .weekday {
      text-transform: uppercase; }
    .entry-main-content .entry-date-container .entry-date .day {
      font-size: 5rem;
      line-height: 5rem;
      font-family: "Roboto Condensed", sans-serif;
      font-weight: 700; }
    .entry-main-content .entry-date-container .entry-date .month {
      text-transform: uppercase; }

.entry-meta {
  margin-top: 1.5rem; }
  .entry-meta .item-meta {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: .8rem 0;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .entry-meta .item-meta strong {
      text-transform: uppercase;
      font-size: 1.2rem; }
    .entry-meta .item-meta.align-center {
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; }

.site-branding {
  margin: 0;
  overflow: hidden;
  max-height: 100%; }
  @media (min-width: 56.875em) {
    .site-branding {
      margin: 0 0 20px 0;
      transition: all 0.4s ease; } }

.entry-header,
.post-thumbnail,
.entry-content,
.entry-summary,
.entry-footer,
.comments-area,
.image-navigation,
.post-navigation,
.page-header,
.page-content,
.content-bottom-widgets {
  margin-left: 0 !important;
  margin-right: 0 !important; }

.site-inner {
  max-width: none; }

.site-content {
  margin-top: 35px;
  padding: 0; }

.content-area {
  float: none;
  margin-right: 0;
  width: auto; }
  body:not(.home) .content-area {
    margin-left: 20px;
    margin-right: 20px;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px; }
    @media (min-width: 56.875em) {
      body:not(.home) .content-area {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between; } }

@media (min-width: 56.875em) {
  .wrapper-main {
    -webkit-flex: 1 0 70%;
        -ms-flex: 1 0 70%;
            flex: 1 0 70%; } }

@media (min-width: 56.875em) {
  .wrapper-sidebar {
    -webkit-flex: 0 0 30%;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    padding-left: 48px; } }

.sidebar {
  float: none;
  margin-left: 0;
  padding: 0;
  width: auto; }

.site-footer-wrapper {
  position: relative; }

.site-footer {
  background: #2B2B2B;
  box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.6);
  color: #999999;
  font-size: 1.5rem;
  line-height: 1.3em;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 202; }
  .site-footer.spacer {
    visibility: hidden;
    position: relative;
    bottom: 0;
    z-index: 200; }
  .site-footer.sticky {
    position: absolute;
    bottom: 0; }
  .site-footer.sticky.detached {
    /* Detached footer behaviour */
    position: fixed;
    bottom: 0;
    z-index: 201;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
    .site-footer.sticky.detached.offscreen {
      -webkit-transform: translateY(105%);
          -ms-transform: translateY(105%);
              transform: translateY(105%); }
  .site-footer.sticky:not(.attached) {
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease; }

.cc-footer {
  margin-left: 20px;
  margin-right: 20px;
  max-width: 1120px;
  padding: 35px 15px 25px 15px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-left: auto;
  margin-right: auto;
  /* Remove extra margins at edges for different configurations */ }
  @media (max-width: 44.375em) {
    .cc-footer {
      display: block;
      padding: 35px 0 25px 0;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-flex-wrap: nowrap;
          -ms-flex-wrap: nowrap;
              flex-wrap: nowrap;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .cc-footer .column {
        display: block;
        width: 100% !important;
        text-align: center; }
        .cc-footer .column.cc-footer-license .license-icons {
          text-align: center !important; } }
  .cc-footer .column {
    margin: 5px 0; }
    @media (max-width: 44.375em) {
      .cc-footer .column {
        width: 33.333%;
        margin: 0;
        padding-left: 12px;
        padding-right: 12px;
        padding-bottom: 5px; } }
    @media (min-width: 61.5625em) {
      .cc-footer .column {
        width: 25%; } }
  .cc-footer .column.cc-footer-main {
    min-width: 280px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1; }
    .cc-footer .column.cc-footer-main .cc-footer-logo {
      display: none;
      -webkit-flex-grow: 1;
          -ms-flex-positive: 1;
              flex-grow: 1; }
    .cc-footer .column.cc-footer-main .cc-footer-links {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      .cc-footer .column.cc-footer-main .cc-footer-links .menu-footer-links-container {
        -webkit-flex-grow: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        text-align: left;
        padding-right: 5px;
        margin: 5px 0; }
      .cc-footer .column.cc-footer-main .cc-footer-links .cc-footer-links-search {
        -webkit-flex-grow: 1;
            -ms-flex-positive: 1;
                flex-grow: 1; }
      .cc-footer .column.cc-footer-main .cc-footer-links .search-form.expanded .search-field {
        min-width: 160px; }
    @media (min-width: 61.5625em) {
      .cc-footer .column.cc-footer-main {
        -webkit-order: 0;
            -ms-flex-order: 0;
                order: 0;
        padding-bottom: 0; }
        .cc-footer .column.cc-footer-main .cc-footer-logo {
          display: block; }
        .cc-footer .column.cc-footer-main .cc-footer-contact {
          display: block; }
        .cc-footer .column.cc-footer-main .cc-footer-links {
          display: block; }
          .cc-footer .column.cc-footer-main .cc-footer-links .menu-footer-links-container {
            text-align: center;
            margin: 0 0 10px 0; }
          .cc-footer .column.cc-footer-main .cc-footer-links .cc-footer-links-search {
            padding: 0 10px;
            min-width: 0;
            margin-left: 0;
            max-width: none; }
          .cc-footer .column.cc-footer-main .cc-footer-links .search-form.expanded .search-field {
            min-width: none; } }
    @media (min-width: 61.5625em) {
      .cc-footer .column.cc-footer-main .cc-footer-links .menu-footer-links-container {
        text-align: left;
        margin: 0; }
      .cc-footer .column.cc-footer-main .cc-footer-links .cc-footer-links-search {
        display: none; } }
  .cc-footer .column.cc-footer-contact {
    display: block; }
    .cc-footer .column.cc-footer-contact address {
      display: block;
      font-weight: 600;
      font-style: normal;
      margin-bottom: 5px; }
    .cc-footer .column.cc-footer-contact ul {
      display: block;
      margin: 0;
      padding: 0; }
      .cc-footer .column.cc-footer-contact ul li {
        margin: 0;
        padding: 0;
        list-style: none;
        list-style-image: none; }
      .cc-footer .column.cc-footer-contact ul a {
        color: #049CCF;
        text-decoration: none; }
        .cc-footer .column.cc-footer-contact ul a:visited {
          color: #049CCF; }
        .cc-footer .column.cc-footer-contact ul a:focus {
          color: #fff; }
        .cc-footer .column.cc-footer-contact ul a:hover {
          color: #fff; }
    @media (max-width: 44.375em) {
      .cc-footer .column.cc-footer-contact {
        display: block; } }
  .cc-footer .column.cc-footer-license {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
    .cc-footer .column.cc-footer-license .license-icons {
      font-size: 3rem;
      margin-top: 5px;
      margin-right: 10px;
      margin-bottom: 0.25em;
      text-align: left;
      white-space: nowrap;
      -webkit-flex-shrink: 0;
          -ms-flex-negative: 0;
              flex-shrink: 0; }
      .cc-footer .column.cc-footer-license .license-icons a {
        color: #fff;
        text-decoration: none; }
        .cc-footer .column.cc-footer-license .license-icons a:visited {
          color: #fff; }
        .cc-footer .column.cc-footer-license .license-icons a:focus {
          color: #049CCF; }
        .cc-footer .column.cc-footer-license .license-icons a:hover {
          color: #049CCF; }
        .cc-footer .column.cc-footer-license .license-icons a .cc-icon-cc:before,
        .cc-footer .column.cc-footer-license .license-icons a .cc-icon-cc-by:before {
          margin-left: 0; }
    .cc-footer .column.cc-footer-license .icons-credit, .cc-footer .column.cc-footer-license .website-credit {
      display: inline-block; }
    body:not(.home) .cc-footer .column.cc-footer-license .website-credit {
      display: none; }
    @media (max-width: 44.375em) {
      .cc-footer .column.cc-footer-license {
        display: block; }
        .cc-footer .column.cc-footer-license .license-icons {
          margin-top: 0;
          margin-right: 0;
          margin-bottom: 0.25em;
          text-align: left; } }
  .cc-footer .column.cc-footer-search {
    display: none; }
    @media (min-width: 61.5625em) {
      .cc-footer .column.cc-footer-search {
        display: block;
        width: 20%; }
        .cc-footer .column.cc-footer-search .search-form {
          margin-top: 4px; } }
  .cc-footer .column.cc-footer-main {
    margin-bottom: 0; }
  .cc-footer .column.cc-footer-license {
    margin-top: 0; }
  @media (max-width: 44.375em) {
    .cc-footer .column.cc-footer-main {
      padding-left: 0; }
    .cc-footer .column.cc-footer-license {
      padding-right: 0; } }
  @media (min-width: 61.5625em) {
    .cc-footer .column.cc-footer-main {
      padding-left: 0; }
    .cc-footer .column.cc-footer-license {
      padding-right: 12px; }
    .cc-footer .column.cc-footer-search {
      padding-right: 0; } }

.cc-footer a {
  color: #999999;
  text-decoration: underline; }
  .cc-footer a:visited {
    color: #999999; }
  .cc-footer a:focus {
    color: #fff; }
  .cc-footer a:hover {
    color: #fff; }

.cc-footer h6 {
  color: white;
  margin-bottom: 5px; }
  .cc-footer h6 a {
    color: white;
    text-decoration: none; }
  .cc-footer h6 a:hover {
    text-decoration: underline; }

.cc-footer p {
  margin-bottom: 0.25em; }

.cc-footer aside {
  font-size: 1.2rem;
  line-height: 1.5em; }

.underline {
  text-decoration: underline; }

.single .entry-summary {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

.comments-area {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

@media (min-width: 56.875em) {
  /* small fixes */
  .site-header {
    box-shadow: none; }
  .hero-video {
    width: 100%; } }

.home-feature .wp-block-media-text__content {
  height: 100%; }

.home-feature h1, .home-feature h2, .home-feature h3, .home-feature h4, .home-feature h5, .home-feature h6 {
  margin: 2rem 0; }

.home-feature .wp-block-gallery {
  margin-left: 0; }

.wp-block-button.is-style-arrow .wp-block-button__link {
  position: relative;
  border-radius: 0; }
  .wp-block-button.is-style-arrow .wp-block-button__link:after {
    content: "";
    position: absolute;
    right: -22px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent; }
  .wp-block-button.is-style-arrow .wp-block-button__link.has-cc-green-background-color:after {
    border-left: 22px solid #01A635; }
  .wp-block-button.is-style-arrow .wp-block-button__link.has-cc-blue-background-color:after {
    border-left: 22px solid #00A5C8; }
  .wp-block-button.is-style-arrow .wp-block-button__link.has-cc-red-background-color:after {
    border-left: 22px solid #F15640; }
  .wp-block-button.is-style-arrow .wp-block-button__link.has-cc-yellow-background-color:after {
    border-left: 22px solid #EFBE00; }
  .wp-block-button.is-style-arrow .wp-block-button__link:hover.has-cc-green-background-color:after {
    border-left: 22px solid #01cf42; }
  .wp-block-button.is-style-arrow .wp-block-button__link:hover.has-cc-blue-background-color:after {
    border-left: 22px solid #00c7f1; }
  .wp-block-button.is-style-arrow .wp-block-button__link:hover.has-cc-red-background-color:after {
    border-left: 22px solid #f47866; }
  .wp-block-button.is-style-arrow .wp-block-button__link:hover.has-cc-yellow-background-color:after {
    border-left: 22px solid #ffd019; }

.wp-block-button .wp-block-button__link.has-cc-green-background-color {
  background-color: #01A635;
  color: #fff; }
  .wp-block-button .wp-block-button__link.has-cc-green-background-color:hover {
    background-color: #01cf42; }

.wp-block-button .wp-block-button__link.has-cc-blue-background-color {
  background-color: #00A5C8;
  color: #fff; }
  .wp-block-button .wp-block-button__link.has-cc-blue-background-color:hover {
    background-color: #00c7f1; }

.wp-block-button .wp-block-button__link.has-cc-red-background-color {
  background-color: #F15640;
  color: #fff; }
  .wp-block-button .wp-block-button__link.has-cc-red-background-color:hover {
    background-color: #f47866; }

.wp-block-button .wp-block-button__link.has-cc-yellow-background-color {
  background-color: #EFBE00;
  color: #fff; }
  .wp-block-button .wp-block-button__link.has-cc-yellow-background-color:hover {
    background-color: #ffd019; }

@media (max-width: 48.9375em) {
  .wp-block-gallery {
    display: block; }
    .wp-block-gallery .blocks-gallery-item {
      width: 100%; } }

@media (max-width: 48.9375em) {
  .wp-block-media-text {
    display: block; } }

/* ### --- END _layout.scss ==================================================================== */
/* ### --- _utils.scss ==================================================================== */
/* -- CC license inside heart -- */
.love-cc {
  margin-right: 0.2em;
  overflow: hidden;
  position: relative; }
  .love-cc .cc-icon-heart-empty::before {
    margin: 0; }
  .love-cc .license {
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 0.4em;
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-58%, -58%);
        -ms-transform: translate(-58%, -58%);
            transform: translate(-58%, -58%); }

.align-right {
  text-align: right; }

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

/* IE10-11 SVG scaling hack */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  img[src*=".svg"] {
    width: 100%; } }

/* ### --- END _utils.scss ==================================================================== */
/* ### --- _navigation.scss ==================================================================== */
.main-navigation {
  display: none;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 2.2rem; }
  .main-navigation .primary-menu {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    font-weight: 700;
    width: 100%; }
    .main-navigation .primary-menu > li {
      border-left: 1px solid rgba(255, 255, 255, 0.55) !important;
      float: none;
      text-align: center;
      margin: 0;
      list-style-image: none; }
  .main-navigation .current_page_item a,
  .main-navigation .current-page-ancestor a {
    background: #E15803;
    color: #fff; }
  .main-navigation a {
    color: #fff;
    line-height: 1em;
    padding: 0.2em 0.8em 0.25em 0.8em; }
    .main-navigation a:hover, .main-navigation a:focus {
      background: #E15803 !important;
      color: #fff !important; }
  @media (min-width: 56.875em) {
    .main-navigation {
      display: block; } }
  @media (min-width: 61.5625em) {
    .main-navigation {
      font-size: 2.4rem; }
      .main-navigation a {
        padding-left: 0.8em;
        padding-right: 0.8em; } }
  @media (min-width: 75em) {
    .main-navigation {
      font-size: 2.8rem; } }

.mobile-navigation {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 2.4rem;
  text-align: center; }
  .mobile-navigation ul {
    margin: 0; }
  .mobile-navigation li {
    list-style: none outside none; }
  .mobile-navigation .current_page_item a {
    background: #E15803;
    color: #fff; }
  .mobile-navigation a {
    color: #fff;
    display: block;
    line-height: 1em;
    padding: 0.2em 1em 0.25em 1em; }
    .mobile-navigation a:hover, .mobile-navigation a:focus {
      background: #E15803 !important;
      color: #fff !important; }
  .mobile-navigation .mobile-menu {
    box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.5);
    border-bottom: 0 none;
    margin-bottom: 10px; }
  @media (min-width: 56.875em) {
    .mobile-navigation {
      display: none; } }

.menu-toggle {
  border: 0 none;
  color: #fff;
  font-size: 50px;
  margin: 0;
  padding: 0;
  position: absolute;
  right: -0.4em;
  top: 0px;
  transition: all 0.4s ease; }
  .menu-toggle:hover, .menu-toggle:focus {
    color: #333333 !important; }
  .menu-toggle.toggled-on {
    background: transparent; }
    .menu-toggle.toggled-on:hover, .menu-toggle.toggled-on:focus {
      background: transparent; }
    .menu-toggle.toggled-on i::before {
      content: '\e80f'; }
  .menu-toggle span {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0; }

.secondary-navigation {
  display: none; }

.site-header.sticky.detached .secondary-navigation {
  display: block;
  transition: opacity 0.4s ease;
  visibility: hidden;
  opacity: 0; }

@media (min-width: 56.875em) {
  .secondary-navigation {
    display: block;
    position: absolute;
    right: 140px;
    top: 0px;
    transition: all 0.4s ease;
    opacity: 1; }
  .secondary-menu {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.5rem; }
    .secondary-menu li {
      border-top: 0 none;
      list-style-type: none;
      list-style-image: none; }
    .secondary-menu .current_page_item a {
      background: #E15803;
      color: #fff;
      font-weight: 400; }
    .secondary-menu a {
      color: #fff;
      display: block;
      line-height: 1em;
      padding: 0.8em 1em; }
      .secondary-menu a:hover, .secondary-menu a:focus {
        background: #E15803;
        color: #fff !important; }
      .secondary-menu a[href*="cc-global-network"]::before {
        content: "";
        font-family: "cc-fontello";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        width: 1em;
        margin-right: .2em;
        text-align: center;
        /* opacity: .8; */
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* fix buttons height, for twitter bootstrap */
        line-height: 1em;
        /* Animation center compensation - margins should be symmetric */
        /* remove if not needed */
        margin-left: .2em;
        /* you can be more comfortable with increased icons size */
        /* font-size: 120%; */
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        /* Uncomment for 3D effect */
        /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
        font-size: 1.3em;
        line-height: 0.5em; }
      .secondary-menu a[href*="search"]::before {
        content: "";
        font-family: "cc-fontello";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        width: 1em;
        margin-right: .2em;
        text-align: center;
        /* opacity: .8; */
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* fix buttons height, for twitter bootstrap */
        line-height: 1em;
        /* Animation center compensation - margins should be symmetric */
        /* remove if not needed */
        margin-left: .2em;
        /* you can be more comfortable with increased icons size */
        /* font-size: 120%; */
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        /* Uncomment for 3D effect */
        /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
        font-size: 1.2em;
        line-height: 0.5em; } }
  @media (min-width: 56.875em) and (min-width: 56.875em) {
    .secondary-menu {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-justify-content: flex-end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      -webkit-flex-wrap: nowrap;
          -ms-flex-wrap: nowrap;
              flex-wrap: nowrap;
      width: 100%; }
      .secondary-menu > li {
        float: none;
        position: relative;
        text-align: center;
        list-style-image: none; }
        .secondary-menu > li::after {
          color: rgba(255, 255, 255, 0.55);
          /* content: '|'; */
          display: inline-block;
          position: absolute;
          right: -0.1em;
          top: 0.35em; } }

.social-navigation,
.site-header.sticky.detached .social-navigation {
  display: none; }

@media (min-width: 56.875em) {
  .social-navigation {
    margin: 0 !important;
    position: absolute;
    right: 0;
    top: 8px;
    transition: all 0.4s ease; }
    .social-navigation li {
      list-style-image: none; }
    .social-navigation li:last-child {
      margin-right: 0; }
    .social-navigation a {
      background: #fff;
      border: 0 none;
      color: #EC592F;
      height: 25px;
      width: 25px; }
      .social-navigation a::before {
        content: "";
        font-family: "cc-fontello";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        width: 1em;
        margin-right: .2em;
        text-align: center;
        /* opacity: .8; */
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* fix buttons height, for twitter bootstrap */
        line-height: 1em;
        /* Animation center compensation - margins should be symmetric */
        /* remove if not needed */
        margin-left: .2em;
        /* you can be more comfortable with increased icons size */
        /* font-size: 120%; */
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        /* Uncomment for 3D effect */
        /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
        height: auto;
        position: relative;
        top: 0.25em;
        left: 0.08em; }
      .social-navigation a[href^="mailto:"]:before {
        content: "\e801";
        left: 0.1em;
        top: 0.2em; }
      .social-navigation a[href*="facebook.com"]:before {
        content: "\e802"; }
      .social-navigation a[href*="twitter.com"]:before {
        content: "\e803"; }
      .social-navigation a:hover, .social-navigation a:focus {
        background: #464646;
        color: #EC592F; }
        .social-navigation a:hover::before, .social-navigation a:focus::before {
          color: #EC592F !important; }
    .site-header .social-navigation {
      display: block; } }

.breadcrumbs {
  font-size: 1.5rem;
  margin-bottom: 25px; }

.widget_creativecommons_author_navigation_sidebar_widget,
.widget_atom_twitter_feeds,
.widget.advanced-sidebar-menu,
.widget_categories,
.widget_recent_entries {
  border-left: 10px solid #E9E9E9 !important; }
  .widget_creativecommons_author_navigation_sidebar_widget .current_page_item a,
  .widget_creativecommons_author_navigation_sidebar_widget .current-page-ancestor a,
  .widget_atom_twitter_feeds .current_page_item a,
  .widget_atom_twitter_feeds .current-page-ancestor a,
  .widget.advanced-sidebar-menu .current_page_item a,
  .widget.advanced-sidebar-menu .current-page-ancestor a,
  .widget_categories .current_page_item a,
  .widget_categories .current-page-ancestor a,
  .widget_recent_entries .current_page_item a,
  .widget_recent_entries .current-page-ancestor a {
    color: #464646; }

#content-above-mobile .widget.advanced-sidebar-menu,
#content-above-mobile .widget.widget_categories {
  padding: 0;
  border-left: none !important; }
  #content-above-mobile .widget.advanced-sidebar-menu > .widget-title,
  #content-above-mobile .widget.widget_categories > .widget-title {
    background: #E15803;
    color: #fff;
    font-size: 1.7rem;
    line-height: 1.5em;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 8px 10px;
    text-transform: none; }
    #content-above-mobile .widget.advanced-sidebar-menu > .widget-title::after,
    #content-above-mobile .widget.widget_categories > .widget-title::after {
      content: "";
      font-family: "cc-fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      width: 1em;
      margin-right: .2em;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* Animation center compensation - margins should be symmetric */
      /* remove if not needed */
      margin-left: .2em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
      padding-top: 2px;
      font-size: 1.2em;
      float: right;
      margin: 0;
      position: relative; }
    #content-above-mobile .widget.advanced-sidebar-menu > .widget-title:hover,
    #content-above-mobile .widget.widget_categories > .widget-title:hover {
      cursor: pointer; }
  #content-above-mobile .widget.advanced-sidebar-menu ul,
  #content-above-mobile .widget.widget_categories ul {
    list-style: none;
    margin: 0 0 0 5px; }
    #content-above-mobile .widget.advanced-sidebar-menu ul li,
    #content-above-mobile .widget.widget_categories ul li {
      font-weight: 600;
      list-style-image: none;
      margin-bottom: 0px;
      margin-top: 8px;
      position: relative;
      padding-left: 20px; }
      #content-above-mobile .widget.advanced-sidebar-menu ul li::before,
      #content-above-mobile .widget.widget_categories ul li::before {
        content: "";
        font-family: "cc-fontello";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        width: 1em;
        margin-right: .2em;
        text-align: center;
        /* opacity: .8; */
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* fix buttons height, for twitter bootstrap */
        line-height: 1em;
        /* Animation center compensation - margins should be symmetric */
        /* remove if not needed */
        margin-left: .2em;
        /* you can be more comfortable with increased icons size */
        /* font-size: 120%; */
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        /* Uncomment for 3D effect */
        /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
        color: #EC592F;
        position: absolute;
        left: -3px;
        top: 4px;
        font-size: 1.9rem; }
  #content-above-mobile .widget.advanced-sidebar-menu > ul,
  #content-above-mobile .widget.widget_categories > ul {
    display: none; }
  #content-above-mobile .widget.advanced-sidebar-menu.expanded > .widget-title::after,
  #content-above-mobile .widget.widget_categories.expanded > .widget-title::after {
    content: '\e80b'; }
  #content-above-mobile .widget.advanced-sidebar-menu.expanded > ul,
  #content-above-mobile .widget.widget_categories.expanded > ul {
    display: block; }

.menu-footer-links-container ul {
  margin: 1px 0; }

.menu-footer-links-container li {
  border-right: 1px solid #606060;
  display: inline;
  font-size: 1.4rem;
  line-height: 1em;
  list-style: none;
  list-style-image: none; }
  .menu-footer-links-container li:first-child a {
    padding-left: 0; }
  .menu-footer-links-container li:last-child {
    border: none; }
    .menu-footer-links-container li:last-child a {
      padding-right: 0; }

.menu-footer-links-container a {
  padding: 0 6px;
  text-decoration: none;
  font-weight: 600; }

@media (max-width: 44.375em) {
  .menu-footer-links-container a {
    padding: 0 10px; } }

.sharedaddy {
  padding: 15px 0 !important; }
  .sharedaddy::before {
    content: '';
    height: 0px; }
  .sharedaddy h3.sd-title {
    display: inline-block;
    vertical-align: bottom !important;
    font-size: 1.8rem !important;
    font-family: "Roboto Condensed", sans-serif !important;
    line-height: 1.7em !important;
    padding-right: 15px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    font-weight: 700; }
  .sharedaddy .sd-content {
    display: inline-block;
    vertical-align: bottom; }
    .sharedaddy .sd-content ul li {
      list-style-image: none;
      list-style: none;
      display: inline-block;
      width: 32px;
      height: 32px;
      text-align: center;
      position: relative; }
      .sharedaddy .sd-content ul li a {
        display: inline-block;
        overflow: hidden;
        text-indent: -9999px; }
        .sharedaddy .sd-content ul li a::before {
          content: "";
          font-family: "cc-fontello";
          font-style: normal;
          font-weight: normal;
          speak: none;
          display: inline-block;
          text-decoration: inherit;
          width: 1em;
          margin-right: .2em;
          text-align: center;
          /* opacity: .8; */
          /* For safety - reset parent styles, that can break glyph codes*/
          font-variant: normal;
          text-transform: none;
          /* fix buttons height, for twitter bootstrap */
          line-height: 1em;
          /* Animation center compensation - margins should be symmetric */
          /* remove if not needed */
          margin-left: .2em;
          /* you can be more comfortable with increased icons size */
          /* font-size: 120%; */
          /* Font smoothing. That was taken from TWBS */
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          /* Uncomment for 3D effect */
          /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
          position: absolute;
          font-size: 2.7rem !important;
          left: 0px;
          top: 0px;
          float: left;
          font-size: 18px;
          line-height: 16px;
          margin: 0;
          text-indent: 0; }
        .sharedaddy .sd-content ul li a:hover::before, .sharedaddy .sd-content ul li a:focus::before {
          color: #000 !important; }
      .sharedaddy .sd-content ul li.share-facebook a::before {
        content: '\e80d';
        color: #3b5998; }
      .sharedaddy .sd-content ul li.share-twitter a::before {
        content: '\e80c';
        color: #00acee; }
      .sharedaddy .sd-content ul li.share-email a::before {
        content: '\e812';
        color: #e9e9e9; }
      .sharedaddy .sd-content ul li.share-google-plus-1 a::before {
        content: '\e816';
        color: #dd4b39; }
      .sharedaddy .sd-content ul li.share-linkedin a::before {
        content: '\e811';
        color: #0077b5; }

.post-tags .tags-label,
.post-tags .categories-label,
.post-category .tags-label,
.post-category .categories-label {
  display: inline-block;
  vertical-align: bottom !important;
  font-size: 1.8rem !important;
  font-family: "Roboto Condensed", sans-serif !important;
  padding-right: 15px !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  font-weight: 700;
  margin: 0px !important; }

.post-tags .tags-links,
.post-tags .categories-links,
.post-category .tags-links,
.post-category .categories-links {
  display: inline !important; }

/* ### --- END _navigation.scss ==================================================================== */
/* ### ---  _pages.scss ==================================================================== */
.page-header {
  border-top: 0 none;
  padding-top: 0; }

h1.entry-title {
  color: #333333;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 3.8rem;
  line-height: 0.8em;
  margin-bottom: 25px; }
  @media (max-width: 44.375em) {
    h1.entry-title {
      font-size: 4.8rem;
      line-height: 1em; } }

.entry-content h2,
.entry-summary h2,
.comment-content h2 {
  font-size: 3.8rem;
  line-height: 1.1667em;
  margin-bottom: 20px;
  margin-top: 0; }

.entry-content h3,
.entry-summary h3,
.comment-content h3,
.textwidget h3 {
  font-size: 2.7rem;
  line-height: 1.4444em;
  margin: 0 0 20px 0; }

.entry-content h4,
.entry-summary h4,
.comment-content h4,
.textwidget h4 {
  font-size: 2.2rem;
  line-height: 1.5em;
  margin: 0 0 10px 0;
  text-transform: none; }

.entry-content h5,
.entry-summary h5,
.comment-content h5,
.textwidget h5 {
  font-size: 1.9rem;
  line-height: 1.5em;
  margin: 0 0 10px 0; }

.entry-content h6,
.entry-summary h6,
.comment-content h6,
.textwidget h6 {
  font-size: 1.8rem;
  line-height: 1.5em;
  margin: 0 0 10px 0; }

.entry-content ul, .entry-content ol,
.entry-summary ul,
.entry-summary ol,
.comment-content ul,
.comment-content ol {
  margin-left: 0.9em; }

.entry-content a,
.entry-summary a,
.taxonomy-description a,
.logged-in-as a,
.comment-content a,
.pingback .comment-body > a,
.textwidget a,
.entry-footer a:hover,
.site-info a:hover {
  box-shadow: none; }

.entry-footer {
  color: #049CCF;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.9rem;
  margin-top: 15px; }
  .entry-footer a, .entry-footer a:visited {
    color: #049CCF; }
  .entry-footer a:hover, .entry-footer a:focus {
    color: #464646;
    text-decoration: none; }

.cc-global-network {
  background-color: #00B5DA;
  padding: 55px 10px; }
  @media (max-width: 44.375em) {
    .cc-global-network {
      padding: 55px; } }
  .cc-global-network h2 a {
    color: #fff; }
  .cc-global-network a {
    color: #fff; }
    .cc-global-network a:hover {
      color: #333333; }
  .cc-global-network .network-map a img {
    margin: 0 auto;
    height: auto;
    width: auto;
    vertical-align: bottom; }

.platform-partner ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 1.75em 0;
  padding: 0;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  list-style: none;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch; }
  @media (min-width: 75em) {
    .platform-partner ul::after {
      content: "";
      -webkit-flex: 0 1 18%;
          -ms-flex: 0 1 18%;
              flex: 0 1 18%; } }
  .platform-partner ul li {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 0;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex: 0 1 46%;
        -ms-flex: 0 1 46%;
            flex: 0 1 46%;
    margin-bottom: 25px; }
    @media (max-width: 44.375em) {
      .platform-partner ul li {
        -webkit-flex: 0 1 23%;
            -ms-flex: 0 1 23%;
                flex: 0 1 23%; } }
    @media (min-width: 75em) {
      .platform-partner ul li {
        -webkit-flex: 0 1 18%;
            -ms-flex: 0 1 18%;
                flex: 0 1 18%; } }
    .platform-partner ul li img {
      max-width: none;
      width: 100%; }

.our-programs {
  clear: both;
  background-color: #00B5DA;
  padding: 55px 20px; }
  @media (max-width: 44.375em) {
    .our-programs {
      padding: 55px; } }
  .our-programs h2 a {
    color: #fff; }
  .our-programs .inner-list {
    border-top: 1px solid #fff;
    padding-top: 40px; }
    .our-programs .inner-list ul {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row;
      list-style: none;
      -webkit-align-content: stretch;
          -ms-flex-line-pack: stretch;
              align-content: stretch;
      margin: 0;
      padding: 0; }
      .our-programs .inner-list ul li {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-justify-content: flex-start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        color: white;
        -webkit-flex: 0 1 100%;
            -ms-flex: 0 1 100%;
                flex: 0 1 100%;
        font-weight: bold;
        font-size: 2.8rem;
        margin-bottom: 25px; }
        @media (max-width: 44.375em) {
          .our-programs .inner-list ul li {
            -webkit-flex: 0 1 40%;
                -ms-flex: 0 1 40%;
                    flex: 0 1 40%; } }
        .our-programs .inner-list ul li img {
          display: block;
          width: 77px;
          height: auto;
          -webkit-flex-shrink: 0;
              -ms-flex-negative: 0;
                  flex-shrink: 0; }
        .our-programs .inner-list ul li .program-title {
          display: block;
          color: white;
          font-weight: bold;
          font-size: 2.4rem;
          margin-left: 20px;
          -webkit-flex-grow: 1;
              -ms-flex-positive: 1;
                  flex-grow: 1; }

.author-wrapper {
  margin-bottom: 20px; }
  .author-wrapper > div {
    display: inline-block;
    vertical-align: top; }
  .author-wrapper .author-image img {
    border-radius: 0px !important;
    margin-right: 10px; }
  .author-wrapper .author-info-group h4 {
    line-height: 1.3em;
    font-size: 1.6rem;
    font-weight: normal !important; }
    .author-wrapper .author-info-group h4 a {
      color: #FB7928; }
  .author-wrapper .author-info-group .author-date {
    font-size: 1.6rem;
    line-height: 1.3em; }

body.home .content-area {
  padding-top: 40px; }

body.home .site-main {
  margin-left: 20px;
  margin-right: 20px;
  max-width: 1120px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto; }

body.home .entry-content h2 {
  color: #333333;
  font-size: 3rem;
  line-height: 0.8em;
  margin-bottom: 20px; }
  @media (max-width: 44.375em) {
    body.home .entry-content h2 {
      font-size: 4.8rem;
      line-height: 1em; } }

@media (min-width: 56.875em) {
  body.home .entry-content:after {
    content: "";
    display: table;
    clear: both; }
  body.home .entry-content > div:nth-child(1) {
    float: right;
    width: 45%; }
  body.home .entry-content > div:nth-child(2) {
    float: left;
    width: 45%; } }

@media (max-width: 44.375em) {
  .single .site-main > article, .page .site-main > article {
    padding-right: 1.5rem;
    padding-left: 1.5rem; } }

@media (max-width: 44.375em) {
  .single .wrapper-sidebar, .page .wrapper-sidebar {
    padding-right: 1.5rem;
    padding-left: 1.5rem; } }

body.author .site-main .author-page-header .author-info-container {
  float: left;
  width: 100%;
  margin-right: 0px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
  margin-bottom: 20px;
  background-color: #E9E9E9; }
  @media (max-width: 44.375em) {
    body.author .site-main .author-page-header .author-info-container {
      width: 30%;
      margin-right: 35px; } }
  body.author .site-main .author-page-header .author-info-container .author-image {
    -webkit-flex: 0 1 100%;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%; }
    body.author .site-main .author-page-header .author-info-container .author-image img {
      width: 100%;
      border-radius: 0px !important; }
  body.author .site-main .author-page-header .author-info-container .author-intro {
    -webkit-flex: 0 1 100%;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    padding: 20px 20px 20px 20px;
    position: relative;
    background-color: #E9E9E9; }
    body.author .site-main .author-page-header .author-info-container .author-intro h1 {
      position: absolute;
      overflow: hidden;
      clip: rect(0 0 0 0);
      height: 1px;
      width: 1px;
      margin: -1px;
      padding: 0;
      border: 0; }
    body.author .site-main .author-page-header .author-info-container .author-intro .name {
      color: #FB7928;
      font-weight: bold; }
    body.author .site-main .author-page-header .author-info-container .author-intro .position {
      color: #464646;
      font-size: 1.6rem;
      font-weight: 700; }
    body.author .site-main .author-page-header .author-info-container .author-intro .description {
      border-top: 2px solid #fff;
      padding-top: 5px;
      font-size: 1.5rem;
      padding-bottom: 60px; }
      body.author .site-main .author-page-header .author-info-container .author-intro .description a.more {
        font-weight: 700;
        text-transform: uppercase;
        padding-left: 5px; }
    body.author .site-main .author-page-header .author-info-container .author-intro .social-links {
      position: absolute;
      bottom: 20px;
      height: 25px;
      margin-top: 10px;
      width: 200px; }
      body.author .site-main .author-page-header .author-info-container .author-intro .social-links a {
        box-shadow: none; }
      body.author .site-main .author-page-header .author-info-container .author-intro .social-links .genericon {
        color: #00B5DA;
        font-size: 2.5rem; }
        body.author .site-main .author-page-header .author-info-container .author-intro .social-links .genericon.genericon-linkedin::before {
          content: "";
          font-family: "cc-fontello";
          font-style: normal;
          font-weight: normal;
          speak: none;
          display: inline-block;
          text-decoration: inherit;
          width: 1em;
          margin-right: .2em;
          text-align: center;
          /* opacity: .8; */
          /* For safety - reset parent styles, that can break glyph codes*/
          font-variant: normal;
          text-transform: none;
          /* fix buttons height, for twitter bootstrap */
          line-height: 1em;
          /* Animation center compensation - margins should be symmetric */
          /* remove if not needed */
          margin-left: .2em;
          /* you can be more comfortable with increased icons size */
          /* font-size: 120%; */
          /* Font smoothing. That was taken from TWBS */
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          /* Uncomment for 3D effect */
          /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
          margin: 0px; }
        body.author .site-main .author-page-header .author-info-container .author-intro .social-links .genericon.genericon-facebook::before {
          content: "";
          font-family: "cc-fontello";
          font-style: normal;
          font-weight: normal;
          speak: none;
          display: inline-block;
          text-decoration: inherit;
          width: 1em;
          margin-right: .2em;
          text-align: center;
          /* opacity: .8; */
          /* For safety - reset parent styles, that can break glyph codes*/
          font-variant: normal;
          text-transform: none;
          /* fix buttons height, for twitter bootstrap */
          line-height: 1em;
          /* Animation center compensation - margins should be symmetric */
          /* remove if not needed */
          margin-left: .2em;
          /* you can be more comfortable with increased icons size */
          /* font-size: 120%; */
          /* Font smoothing. That was taken from TWBS */
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          /* Uncomment for 3D effect */
          /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
          margin: 0px; }
        body.author .site-main .author-page-header .author-info-container .author-intro .social-links .genericon.genericon-twitter::before {
          content: "";
          font-family: "cc-fontello";
          font-style: normal;
          font-weight: normal;
          speak: none;
          display: inline-block;
          text-decoration: inherit;
          width: 1em;
          margin-right: .2em;
          text-align: center;
          /* opacity: .8; */
          /* For safety - reset parent styles, that can break glyph codes*/
          font-variant: normal;
          text-transform: none;
          /* fix buttons height, for twitter bootstrap */
          line-height: 1em;
          /* Animation center compensation - margins should be symmetric */
          /* remove if not needed */
          margin-left: .2em;
          /* you can be more comfortable with increased icons size */
          /* font-size: 120%; */
          /* Font smoothing. That was taken from TWBS */
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          /* Uncomment for 3D effect */
          /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
          margin: 0px; }
        body.author .site-main .author-page-header .author-info-container .author-intro .social-links .genericon.genericon-mail::before {
          content: "";
          font-family: "cc-fontello";
          font-style: normal;
          font-weight: normal;
          speak: none;
          display: inline-block;
          text-decoration: inherit;
          width: 1em;
          margin-right: .2em;
          text-align: center;
          /* opacity: .8; */
          /* For safety - reset parent styles, that can break glyph codes*/
          font-variant: normal;
          text-transform: none;
          /* fix buttons height, for twitter bootstrap */
          line-height: 1em;
          /* Animation center compensation - margins should be symmetric */
          /* remove if not needed */
          margin-left: .2em;
          /* you can be more comfortable with increased icons size */
          /* font-size: 120%; */
          /* Font smoothing. That was taken from TWBS */
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          /* Uncomment for 3D effect */
          /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
          margin: 0px; }

body.author .site-main .author-page-header .edit-user-profile {
  padding-top: 5px;
  font-size: 1.5rem;
  padding-bottom: 40px; }

@media (max-width: 44.375em) {
  body.author .site-main .bio {
    padding-right: 55px; } }

body.author .site-main .bio .author-first-last {
  font-size: 2.7rem;
  line-height: 0px;
  display: inline-block;
  margin-bottom: 0.9em;
  font-weight: 700; }

body.author .site-main .post {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
  border-bottom: 1px solid #E9E9E9;
  margin-top: 20px;
  margin-bottom: 0px;
  padding: 30px 0 40px 0; }
  body.author .site-main .post .teaser-post-image {
    -webkit-flex: 0 1 100%;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%; }
    body.author .site-main .post .teaser-post-image img {
      margin-bottom: 20px; }
    @media (max-width: 44.375em) {
      body.author .site-main .post .teaser-post-image {
        -webkit-flex: 0 1 30%;
            -ms-flex: 0 1 30%;
                flex: 0 1 30%; } }
  body.author .site-main .post .entry-content {
    -webkit-flex: 0 1 100%;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    position: relative; }
    @media (max-width: 44.375em) {
      body.author .site-main .post .entry-content {
        -webkit-flex: 0 1 70%;
            -ms-flex: 0 1 70%;
                flex: 0 1 70%;
        padding-left: 25px; } }
    body.author .site-main .post .entry-content p {
      margin-bottom: 15px;
      line-height: 1.3em;
      font-size: 1.7rem; }
    body.author .site-main .post .entry-content h3 {
      font-size: 22px;
      line-height: 1em;
      margin-bottom: 5px; }
      body.author .site-main .post .entry-content h3 a {
        color: #049CCF; }
        body.author .site-main .post .entry-content h3 a:visited {
          color: #049CCF; }
        body.author .site-main .post .entry-content h3 a:focus {
          color: #464646; }
        body.author .site-main .post .entry-content h3 a:hover {
          color: #464646; }
  body.author .site-main .post .category {
    margin-top: 0px !important;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase; }
    body.author .site-main .post .category a {
      color: #464646; }
      body.author .site-main .post .category a:visited {
        color: #464646; }
      body.author .site-main .post .category a:focus {
        color: #EFBE00; }
      body.author .site-main .post .category a:hover {
        color: #EFBE00; }
  body.author .site-main .post > h2 {
    color: #000;
    font-size: 4.4rem;
    line-height: 1em;
    margin-bottom: 10px;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 700; }

body.author .site-main h3.news-rule {
  padding-top: 30px;
  font-size: 2em;
  border-top: 5px solid #00B5DA;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.9em;
  margin-bottom: 10px; }

body.search .site-main > article {
  margin-bottom: 40px; }
  @media (max-width: 44.375em) {
    body.search .site-main > article {
      margin-bottom: 60px; } }
  @media (min-width: 56.875em) {
    body.search .site-main > article {
      margin-bottom: 80px; } }

body.archive .page-header {
  margin-bottom: 0px; }

body.archive h1.page-title {
  color: #333333;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 3.8rem !important;
  line-height: 0.8em;
  margin-bottom: 25px; }

body.archive article.post {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
  border-bottom: 1px solid #E9E9E9;
  margin-top: 20px;
  margin-bottom: 0px;
  padding: 30px 0 40px 0; }
  body.archive article.post .teaser-post-image {
    -webkit-flex: 0 1 100%;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%; }
    body.archive article.post .teaser-post-image img {
      margin-bottom: 20px; }
    @media (max-width: 44.375em) {
      body.archive article.post .teaser-post-image {
        -webkit-flex: 0 1 30%;
            -ms-flex: 0 1 30%;
                flex: 0 1 30%; } }
  body.archive article.post .entry-content {
    -webkit-flex: 0 1 100%;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    position: relative; }
    @media (max-width: 44.375em) {
      body.archive article.post .entry-content {
        -webkit-flex: 0 1 70%;
            -ms-flex: 0 1 70%;
                flex: 0 1 70%;
        padding-left: 25px; } }
    body.archive article.post .entry-content p {
      margin-bottom: 15px;
      line-height: 1.3em;
      font-size: 1.7rem; }
    body.archive article.post .entry-content h3 {
      font-size: 22px;
      line-height: 1em;
      margin-bottom: 5px; }
      body.archive article.post .entry-content h3 a {
        color: #049CCF; }
        body.archive article.post .entry-content h3 a:visited {
          color: #049CCF; }
        body.archive article.post .entry-content h3 a:focus {
          color: #464646; }
        body.archive article.post .entry-content h3 a:hover {
          color: #464646; }
  body.archive article.post .category {
    margin-top: 0px !important;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase; }
    body.archive article.post .category a {
      color: #464646; }
      body.archive article.post .category a:visited {
        color: #464646; }
      body.archive article.post .category a:focus {
        color: #EFBE00; }
      body.archive article.post .category a:hover {
        color: #EFBE00; }
  body.archive article.post > h2 {
    color: #000;
    font-size: 4.4rem;
    line-height: 1em;
    margin-bottom: 10px;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 700; }

.page-template-page_program .two-column {
  margin-bottom: 20px; }
  .page-template-page_program .two-column h2 {
    margin-bottom: 15px; }
  @media screen and (min-width: 56.875em) {
    .page-template-page_program .two-column {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; } }
  .page-template-page_program .two-column .left-column, .page-template-page_program .two-column .right-column {
    padding: 10px; }
    @media screen and (min-width: 56.875em) {
      .page-template-page_program .two-column .left-column, .page-template-page_program .two-column .right-column {
        width: 50%;
        float: left;
        height: auto;
        -webkit-flex-grow: 1;
            -ms-flex-positive: 1;
                flex-grow: 1; } }
  @media (max-width: 48.9375em) {
    .page-template-page_program .two-column .left-column {
      margin-right: 40px; } }

.page-id-16 h1 {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

.page-id-16 a.orange-color {
  color: #E15803; }
  .page-id-16 a.orange-color:hover, .page-id-16 a.orange-color:focus {
    color: #333333 !important; }

body.page-id-48781 .form-title {
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: radial-gradient(ellipse farthest-corner, #31B75B, #02A636);
  color: #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px; }
  body.page-id-48781 .form-title img {
    margin-right: 10px; }
  body.page-id-48781 .form-title h2 {
    margin: 0; }

body.page-id-48781 .gform_wrapper {
  background: #E9E9E9;
  margin-top: 0;
  padding: 30px;
  max-width: none; }

body.page-id-48781 .gf_page_steps {
  border: 0;
  color: #999999;
  font-size: 1.8rem;
  margin: 0 auto 35px auto;
  padding: 0;
  width: 220px; }
  body.page-id-48781 .gf_page_steps:after {
    content: "";
    display: table;
    clear: both; }
  body.page-id-48781 .gf_page_steps .gf_step {
    margin: 0 5px;
    opacity: 1;
    position: relative;
    width: auto !important;
    display: inline-block; }
  body.page-id-48781 .gf_page_steps div.gf_step_active {
    color: #333333; }
    body.page-id-48781 .gf_page_steps div.gf_step_active span.gf_step_number {
      background: #fff; }
  body.page-id-48781 .gf_page_steps span.gf_step_number {
    background: #DBDBDB;
    border-radius: 50%;
    display: block;
    float: none !important;
    height: 48px;
    margin: 0 auto;
    padding-top: 10px;
    text-align: center;
    width: 48px;
    font-size: 1.25em; }
  body.page-id-48781 .gf_page_steps span.gf_step_label {
    display: block;
    margin: -10px auto 0 auto;
    text-align: center;
    font-size: 1.25em; }

body.page-id-48781 #field_3_1,
body.page-id-48781 #field_3_2,
body.page-id-48781 #field_3_3,
body.page-id-48781 #field_3_9 {
  margin-bottom: 20px; }
  body.page-id-48781 #field_3_1 > label,
  body.page-id-48781 #field_3_2 > label,
  body.page-id-48781 #field_3_3 > label,
  body.page-id-48781 #field_3_9 > label {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0; }

body.page-id-48781 #input_3_1,
body.page-id-48781 #input_3_9 {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: 0 !important;
  overflow: visible; }
  body.page-id-48781 #input_3_1 > li,
  body.page-id-48781 #input_3_9 > li {
    -webkit-flex: 0 0 46%;
        -ms-flex: 0 0 46%;
            flex: 0 0 46%;
    margin: 0 0 20px 0;
    overflow: visible; }
    body.page-id-48781 #input_3_1 > li:last-child,
    body.page-id-48781 #input_3_9 > li:last-child {
      background: #F3F3F3;
      border-color: #d4d4d4;
      border-radius: 3px;
      border-style: solid;
      border-width: 4px 4px 4px 40px;
      margin-bottom: 0;
      position: relative; }
      body.page-id-48781 #input_3_1 > li:last-child::before,
      body.page-id-48781 #input_3_9 > li:last-child::before {
        content: "";
        font-family: "cc-fontello";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        width: 1em;
        margin-right: .2em;
        text-align: center;
        /* opacity: .8; */
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* fix buttons height, for twitter bootstrap */
        line-height: 1em;
        /* Animation center compensation - margins should be symmetric */
        /* remove if not needed */
        margin-left: .2em;
        /* you can be more comfortable with increased icons size */
        /* font-size: 120%; */
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        /* Uncomment for 3D effect */
        /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
        left: -33px;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%); }
      body.page-id-48781 #input_3_1 > li:last-child.selected,
      body.page-id-48781 #input_3_9 > li:last-child.selected {
        border-color: #01A635; }
      body.page-id-48781 #input_3_1 > li:last-child input,
      body.page-id-48781 #input_3_9 > li:last-child input {
        background: #F3F3F3;
        border: 0 none;
        width: 90%; }
  body.page-id-48781 #input_3_1 input[type="radio"],
  body.page-id-48781 #input_3_9 input[type="radio"] {
    display: none; }
  body.page-id-48781 #input_3_1 label,
  body.page-id-48781 #input_3_9 label {
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 3px;
    cursor: pointer;
    display: inline-block;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 0;
    padding: .5em 1em;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background-image: linear-gradient(180deg, #FFFFFF, #D3D3D3);
    border-color: #d4d4d4;
    box-shadow: 1px 1px 0px 1px rgba(0, 0, 0, 0.6);
    color: #333333;
    display: block;
    font-size: 2rem !important;
    margin-left: 0;
    padding-bottom: 0.4em;
    width: 100%; }
    body.page-id-48781 #input_3_1 label [class*="cc-icon-"]::before,
    body.page-id-48781 #input_3_9 label [class*="cc-icon-"]::before {
      line-height: 0.8em; }
    body.page-id-48781 #input_3_1 label:hover,
    body.page-id-48781 #input_3_9 label:hover {
      background: linear-gradient(0deg, #D2D2D2, #A1A1A1);
      border-color: #b2b2b2; }
  body.page-id-48781 #input_3_1 input[type="radio"]:checked + label,
  body.page-id-48781 #input_3_9 input[type="radio"]:checked + label {
    background: #01A635;
    border-color: #018d2d;
    border-right-color: #01bf3d;
    border-top-color: #0ffe5a;
    box-shadow: 1px 1px 0px 1px rgba(0, 65, 21, 0.6);
    color: #fff; }

body.page-id-48781 #input_3_1_other,
body.page-id-48781 #input_3_9_other {
  font-size: 1.9rem !important;
  margin-bottom: 0 !important; }

body.page-id-48781 #input_3_2 {
  margin-left: 0% !important;
  padding-left: 0;
  text-align: center; }
  body.page-id-48781 #input_3_2 > li {
    display: inline-block;
    margin: 0 20px; }
    body.page-id-48781 #input_3_2 > li label {
      white-space: nowrap;
      font-size: 1.6rem !important; }

body.page-id-48781 #input_3_3 {
  font-size: 1.6rem;
  margin-left: 0% !important;
  padding-left: 0;
  text-align: center; }
  body.page-id-48781 #input_3_3 > li {
    display: inline-block; }

body.page-id-48781 #field_3_20 {
  display: none; }

body.page-id-48781 #field_3_24 {
  margin-left: 20% !important;
  width: 60%; }

body.page-id-48781 .gform_page_footer {
  border: 0 none;
  padding-top: 0;
  text-align: center; }

body.page-id-48781 input.button[value="Next"],
body.page-id-48781 input.button[value="Submit"] {
  background: url("../images/donate-button-sprite.png") no-repeat right top;
  border: 0 none;
  box-shadow: none;
  color: #fff;
  height: 54px;
  margin: 0 10px !important;
  padding-top: 13px;
  width: 170px; }
  body.page-id-48781 input.button[value="Next"]:hover, body.page-id-48781 input.button[value="Next"]:focus,
  body.page-id-48781 input.button[value="Submit"]:hover,
  body.page-id-48781 input.button[value="Submit"]:focus {
    background-position: right bottom; }

body.page-id-48781 input.button[value="Back"] {
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 0;
  padding: .5em 1em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: linear-gradient(180deg, #FFFFFF, #D3D3D3);
  border-color: #d4d4d4;
  box-shadow: 1px 1px 0px 1px rgba(0, 0, 0, 0.6);
  color: #333333;
  background: transparent;
  border-color: #999999;
  box-shadow: none;
  color: #999999;
  position: relative;
  top: 5px; }
  body.page-id-48781 input.button[value="Back"] [class*="cc-icon-"]::before {
    line-height: 0.8em; }
  body.page-id-48781 input.button[value="Back"]:hover {
    background: linear-gradient(0deg, #D2D2D2, #A1A1A1);
    border-color: #b2b2b2; }
  body.page-id-48781 input.button[value="Back"]:hover, body.page-id-48781 input.button[value="Back"]:focus {
    background: transparent;
    border-color: #464646;
    color: #464646; }

body.page-id-48781 ul.ways-to-give {
  color: #01A635;
  font-size: 2.4rem;
  font-weight: 700; }
  body.page-id-48781 ul.ways-to-give li {
    margin-bottom: 20px; }
    body.page-id-48781 ul.ways-to-give li:nth-child(2n) span {
      position: relative;
      top: 12px; }
  body.page-id-48781 ul.ways-to-give img {
    margin-right: 10px; }
  body.page-id-48781 ul.ways-to-give span {
    display: inline-block;
    line-height: 0.9; }

@media (max-width: 44.375em) {
  body.page-id-48781 .gf_page_steps {
    width: 380px; }
    body.page-id-48781 .gf_page_steps .gf_step {
      margin: 0 32px 0 32px;
      opacity: 1;
      position: relative; }
      body.page-id-48781 .gf_page_steps .gf_step:nth-child(1):after, body.page-id-48781 .gf_page_steps .gf_step:nth-child(2):after {
        background: url("../images/grey-arrow.png") no-repeat center center;
        content: '';
        display: block;
        height: 28px;
        position: absolute;
        right: -60px;
        top: 8px;
        width: 57px; }
      body.page-id-48781 .gf_page_steps .gf_step:nth-child(2):after {
        right: -67px; }
  body.page-id-48781 #input_3_1,
  body.page-id-48781 #input_3_9 {
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
    body.page-id-48781 #input_3_1 > li,
    body.page-id-48781 #input_3_9 > li {
      -webkit-flex-basis: 100px;
          -ms-flex-preferred-size: 100px;
              flex-basis: 100px;
      margin-bottom: 0 !important;
      margin-left: 10px;
      margin-right: 10px; }
      body.page-id-48781 #input_3_1 > li:last-child,
      body.page-id-48781 #input_3_9 > li:last-child {
        -webkit-flex-basis: 144px;
            -ms-flex-preferred-size: 144px;
                flex-basis: 144px; }
        body.page-id-48781 #input_3_1 > li:last-child input,
        body.page-id-48781 #input_3_9 > li:last-child input {
          padding: .2em 0; }
  body.page-id-48781 ul.ways-to-give:after {
    content: "";
    display: table;
    clear: both; }
  body.page-id-48781 ul.ways-to-give li {
    display: inline-block;
    width: 49.5%; } }

@media (min-width: 56.875em) {
  body.page-id-48781 #input_3_1 > li,
  body.page-id-48781 #input_3_9 > li {
    -webkit-flex-basis: 130px;
        -ms-flex-preferred-size: 130px;
            flex-basis: 130px;
    margin-left: 20px;
    margin-right: 20px; }
  body.page-id-48781 ul.ways-to-give li {
    width: 24.5%; } }

@media (min-width: 61.5625em) {
  body.page-id-48781 #input_3_1 > li:last-child,
  body.page-id-48781 #input_3_9 > li:last-child {
    -webkit-flex-basis: 244px;
        -ms-flex-preferred-size: 244px;
            flex-basis: 244px; } }

.blog .site-main h2.txt-hero {
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.9em;
  margin-bottom: 10px; }

.blog .site-main .post {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
  border-bottom: 1px solid #E9E9E9;
  margin-top: 20px;
  margin-bottom: 0px;
  padding: 30px 0 40px 0; }
  .blog .site-main .post .teaser-post-image {
    -webkit-flex: 0 1 100%;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%; }
    .blog .site-main .post .teaser-post-image img {
      margin-bottom: 20px; }
    @media (max-width: 44.375em) {
      .blog .site-main .post .teaser-post-image {
        -webkit-flex: 0 1 30%;
            -ms-flex: 0 1 30%;
                flex: 0 1 30%; } }
  .blog .site-main .post .entry-content {
    -webkit-flex: 0 1 100%;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    position: relative; }
    @media (max-width: 44.375em) {
      .blog .site-main .post .entry-content {
        -webkit-flex: 0 1 70%;
            -ms-flex: 0 1 70%;
                flex: 0 1 70%;
        padding-left: 25px; } }
    .blog .site-main .post .entry-content p {
      margin-bottom: 15px;
      line-height: 1.3em;
      font-size: 1.7rem; }
    .blog .site-main .post .entry-content h3 {
      font-size: 22px;
      line-height: 1em;
      margin-bottom: 5px; }
      .blog .site-main .post .entry-content h3 a {
        color: #049CCF; }
        .blog .site-main .post .entry-content h3 a:visited {
          color: #049CCF; }
        .blog .site-main .post .entry-content h3 a:focus {
          color: #464646; }
        .blog .site-main .post .entry-content h3 a:hover {
          color: #464646; }
  .blog .site-main .post .category {
    margin-top: 0px !important;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase; }
    .blog .site-main .post .category a {
      color: #464646; }
      .blog .site-main .post .category a:visited {
        color: #464646; }
      .blog .site-main .post .category a:focus {
        color: #EFBE00; }
      .blog .site-main .post .category a:hover {
        color: #EFBE00; }
  .blog .site-main .post > h2 {
    color: #000;
    font-size: 4.4rem;
    line-height: 1em;
    margin-bottom: 10px;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 700; }

.single.group-blog .post h1.entry-title {
  margin-bottom: 20px !important; }

.single.group-blog .post .single.group-blog {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

.single.group-blog .post .entry-content {
  float: none;
  width: 100%; }

body.error404 {
  height: 100%; }
  body.error404 .page-title {
    font-size: 3.8rem; }
  body.error404 input {
    padding-bottom: 0;
    padding-top: 0; }
  @media (min-width: 56.875em) {
    body.error404 #page {
      min-height: 100%;
      padding-bottom: 190px; }
      body.error404 #page > .site-inner {
        position: static; }
    body.error404 .site-footer-wrapper {
      bottom: 0;
      height: 190px;
      left: 0;
      position: absolute;
      width: 100%; } }

.cc-store h3 :focus {
  outline: none; }

.cc-store ul.list-unstyled-inline {
  list-style-type: none;
  padding: 0; }
  .cc-store ul.list-unstyled-inline li {
    margin: 0 30px;
    display: inline; }

.cc-store .store-item {
  width: 100%;
  padding: 0 10px;
  padding-bottom: 50px; }
  @media (min-width: 56.875em) {
    .cc-store .store-item {
      width: 50%;
      float: left; }
      .cc-store .store-item .panel-body {
        min-height: 210px; } }
  .cc-store .store-item .panel-footer {
    max-height: 50px; }
  .cc-store .store-item .license-image img {
    max-width: 200px;
    margin-top: -30px; }
  .cc-store .store-item .sharedaddy {
    position: static; }

/* ### --- END _pages.scss ==================================================================== */
/* ### --- _shortcodes.scss ==================================================================== */
.cc-team-shortcode h2.cc-team-heading {
  padding-top: 30px;
  font-size: 2em;
  border-top: 10px solid #00B5DA;
  margin-bottom: 30px;
  margin-top: 0px; }

.cc-team-shortcode ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  list-style: none;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch; }
  @media (max-width: 44.375em) {
    .cc-team-shortcode ul {
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  @media (min-width: 75em) {
    .cc-team-shortcode ul::after {
      content: "";
      -webkit-flex: 0 1 30%;
          -ms-flex: 0 1 30%;
              flex: 0 1 30%; } }
  .cc-team-shortcode ul li {
    list-style-image: none;
    -webkit-flex: 0 1 330px;
        -ms-flex: 0 1 330px;
            flex: 0 1 330px;
    padding-bottom: 50px;
    position: relative;
    background-color: #E9E9E9;
    margin-bottom: 25px; }
    @media (max-width: 44.375em) {
      .cc-team-shortcode ul li {
        -webkit-flex: 0 1 48%;
            -ms-flex: 0 1 48%;
                flex: 0 1 48%; } }
    @media (min-width: 75em) {
      .cc-team-shortcode ul li {
        -webkit-flex: 0 1 30%;
            -ms-flex: 0 1 30%;
                flex: 0 1 30%; } }
    .cc-team-shortcode ul li .image {
      overflow: hidden;
      position: relative; }
      .cc-team-shortcode ul li .image img.avatar {
        width: 100%;
        border-radius: 0; }
    .cc-team-shortcode ul li .intro {
      float: left;
      background-color: #E9E9E9;
      padding: 20px;
      width: 100%; }
      .cc-team-shortcode ul li .intro .name {
        color: #FB7928;
        font-size: 2rem;
        font-weight: bold; }
      .cc-team-shortcode ul li .intro .position {
        color: #464646;
        font-size: 1.6rem;
        font-weight: 700; }
      .cc-team-shortcode ul li .intro .description {
        border-top: 2px solid #fff;
        font-size: 1.6rem;
        line-height: 1.3em;
        padding-top: 5px;
        color: #000; }
        .cc-team-shortcode ul li .intro .description .more {
          font-weight: 700;
          text-transform: uppercase; }
      .cc-team-shortcode ul li .intro .social-links {
        position: absolute;
        bottom: 20px;
        height: 25px;
        margin-top: 10px;
        width: 200px; }
        .cc-team-shortcode ul li .intro .social-links a {
          box-shadow: none; }
        .cc-team-shortcode ul li .intro .social-links .genericon {
          color: #00B5DA;
          font-size: 2.5rem; }
          .cc-team-shortcode ul li .intro .social-links .genericon.genericon-linkedin::before {
            content: "";
            font-family: "cc-fontello";
            font-style: normal;
            font-weight: normal;
            speak: none;
            display: inline-block;
            text-decoration: inherit;
            width: 1em;
            margin-right: .2em;
            text-align: center;
            /* opacity: .8; */
            /* For safety - reset parent styles, that can break glyph codes*/
            font-variant: normal;
            text-transform: none;
            /* fix buttons height, for twitter bootstrap */
            line-height: 1em;
            /* Animation center compensation - margins should be symmetric */
            /* remove if not needed */
            margin-left: .2em;
            /* you can be more comfortable with increased icons size */
            /* font-size: 120%; */
            /* Font smoothing. That was taken from TWBS */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            /* Uncomment for 3D effect */
            /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
            margin: 0px; }
          .cc-team-shortcode ul li .intro .social-links .genericon.genericon-facebook::before {
            content: "";
            font-family: "cc-fontello";
            font-style: normal;
            font-weight: normal;
            speak: none;
            display: inline-block;
            text-decoration: inherit;
            width: 1em;
            margin-right: .2em;
            text-align: center;
            /* opacity: .8; */
            /* For safety - reset parent styles, that can break glyph codes*/
            font-variant: normal;
            text-transform: none;
            /* fix buttons height, for twitter bootstrap */
            line-height: 1em;
            /* Animation center compensation - margins should be symmetric */
            /* remove if not needed */
            margin-left: .2em;
            /* you can be more comfortable with increased icons size */
            /* font-size: 120%; */
            /* Font smoothing. That was taken from TWBS */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            /* Uncomment for 3D effect */
            /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
            margin: 0px; }
          .cc-team-shortcode ul li .intro .social-links .genericon.genericon-twitter::before {
            content: "";
            font-family: "cc-fontello";
            font-style: normal;
            font-weight: normal;
            speak: none;
            display: inline-block;
            text-decoration: inherit;
            width: 1em;
            margin-right: .2em;
            text-align: center;
            /* opacity: .8; */
            /* For safety - reset parent styles, that can break glyph codes*/
            font-variant: normal;
            text-transform: none;
            /* fix buttons height, for twitter bootstrap */
            line-height: 1em;
            /* Animation center compensation - margins should be symmetric */
            /* remove if not needed */
            margin-left: .2em;
            /* you can be more comfortable with increased icons size */
            /* font-size: 120%; */
            /* Font smoothing. That was taken from TWBS */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            /* Uncomment for 3D effect */
            /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
            margin: 0px; }
          .cc-team-shortcode ul li .intro .social-links .genericon.genericon-mail::before {
            content: "";
            font-family: "cc-fontello";
            font-style: normal;
            font-weight: normal;
            speak: none;
            display: inline-block;
            text-decoration: inherit;
            width: 1em;
            margin-right: .2em;
            text-align: center;
            /* opacity: .8; */
            /* For safety - reset parent styles, that can break glyph codes*/
            font-variant: normal;
            text-transform: none;
            /* fix buttons height, for twitter bootstrap */
            line-height: 1em;
            /* Animation center compensation - margins should be symmetric */
            /* remove if not needed */
            margin-left: .2em;
            /* you can be more comfortable with increased icons size */
            /* font-size: 120%; */
            /* Font smoothing. That was taken from TWBS */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            /* Uncomment for 3D effect */
            /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
            margin: 0px; }

blockquote.cc-short-block {
  border: 0px;
  margin-bottom: 70px !important; }
  blockquote.cc-short-block .blockquote-image {
    width: 100%;
    display: block;
    float: left; }
    @media (max-width: 48.9375em) {
      blockquote.cc-short-block .blockquote-image {
        width: 30%; } }
    blockquote.cc-short-block .blockquote-image img {
      margin: 0 auto; }
  blockquote.cc-short-block .clear-all {
    clear: both; }
    @media (max-width: 48.9375em) {
      blockquote.cc-short-block .clear-all {
        clear: none; } }
  blockquote.cc-short-block .blockquote-text .blockquote-text-inner {
    margin: 0 40px;
    width: auto;
    margin-top: 20px;
    text-align: center;
    font-size: 2rem;
    float: left;
    font-style: normal;
    padding-bottom: 20px;
    font-weight: 600; }
    blockquote.cc-short-block .blockquote-text .blockquote-text-inner::before {
      text-align: center; }
    @media (max-width: 48.9375em) {
      blockquote.cc-short-block .blockquote-text .blockquote-text-inner {
        width: 70%;
        margin: 0px;
        text-align: left; }
        blockquote.cc-short-block .blockquote-text .blockquote-text-inner::before {
          text-align: left; } }
    blockquote.cc-short-block .blockquote-text .blockquote-text-inner::before {
      content: "";
      font-family: "cc-fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      width: 1em;
      margin-right: .2em;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* Animation center compensation - margins should be symmetric */
      /* remove if not needed */
      margin-left: .2em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
      display: block;
      font-size: 3.7rem;
      text-align: right;
      color: #00B5DA;
      margin-left: 0px;
      padding-left: 0px;
      /* Safari */
      -webkit-transform: rotate(-180deg);
      /* Firefox */
      -moz-transform: rotate(-180deg);
      /* IE */
      -ms-transform: rotate(-180deg);
      /* Opera */
      -o-transform: rotate(-180deg);
      /* Internet Explorer */
      filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=6); }
    blockquote.cc-short-block .blockquote-text .blockquote-text-inner::after {
      content: "";
      font-family: "cc-fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      width: 1em;
      margin-right: .2em;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* Animation center compensation - margins should be symmetric */
      /* remove if not needed */
      margin-left: .2em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
      font-size: 0.8em;
      position: relative;
      top: -0.5em; }
  blockquote.cc-short-block .blockqoute-user-title {
    font-size: 1.5rem;
    font-weight: 600;
    font-style: normal;
    text-align: center; }
    @media (max-width: 48.9375em) {
      blockquote.cc-short-block .blockqoute-user-title {
        float: left; } }
    blockquote.cc-short-block .blockqoute-user-title a {
      color: #464646; }
      blockquote.cc-short-block .blockqoute-user-title a:visited {
        color: #464646; }
      blockquote.cc-short-block .blockqoute-user-title a:focus {
        color: #EFBE00; }
      blockquote.cc-short-block .blockqoute-user-title a:hover {
        color: #EFBE00; }

.choose-license {
  background: #00B5DA;
  margin-bottom: 60px;
  padding: 60px 10px;
  padding-bottom: 90px; }
  @media (max-width: 44.375em) {
    .choose-license {
      padding: 60px;
      padding-bottom: 85px; } }
  .choose-license a {
    color: #464646;
    text-decoration: underline; }
    .choose-license a:visited {
      color: #464646; }
    .choose-license a:focus {
      color: #EFBE00; }
    .choose-license a:hover {
      color: #EFBE00; }
  .choose-license h2 a {
    text-decoration: none; }
  .choose-license div.image {
    border-bottom: 1px solid rgba(255, 255, 255, 0.43);
    margin-bottom: 30px;
    padding-bottom: 40px;
    text-align: center; }
  .choose-license .button {
    font-size: 2.4rem !important;
    padding: 12px 16px !important;
    font-family: "Source Sans Pro", sans-serif;
    float: right;
    margin-right: 27px;
    text-transform: capitalize !important; }
    @media (max-width: 44.375em) {
      .choose-license .button {
        margin-right: 0px; } }
    .choose-license .button.arrow {
      position: relative;
      right: 0.6em; }

/* ### --- END _shortcodes.scss ==================================================================== */
/* ### --- _widgets.scss ==================================================================== */
.textwidget a {
  box-shadow: none; }

.widget-area {
  padding: 1.5rem 0; }
  .widget-area.blue .widget.title .widget-title {
    color: #fff; }
  .widget-area.blue .widget.title p {
    color: #fff; }
  .widget-area.blue .widget.widget_nav_menu .menu li a {
    color: #fff; }
    .widget-area.blue .widget.widget_nav_menu .menu li a:hover {
      text-decoration: underline; }
  .widget-area.blue .widget .widget-more {
    color: #fff; }
    .widget-area.blue .widget .widget-more:hover {
      color: #F15640; }

.widget {
  border: none;
  font-size: inherit;
  font-size: inherit;
  line-height: inherit;
  margin-bottom: 10px;
  /* padding: 0 20px; */ }
  .widget .widget-more {
    margin-top: 1.5rem;
    font-family: "Roboto Condensed", sans-serif;
    text-transform: uppercase;
    color: #2B2B2B;
    font-weight: 700; }
    .widget .widget-more:hover {
      color: #F15640; }
  .widget.event-list .widget-title {
    margin-bottom: 1rem;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 3rem; }
  .widget.video-list .widget-title {
    margin-bottom: 1rem;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 3rem; }
  .widget.featured-programs .widget-title {
    margin-bottom: 1rem;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 3rem; }
  .widget.title {
    margin-bottom: 3rem; }
    .widget.title .widget-title {
      margin-bottom: 0;
      font-family: "Roboto Condensed", sans-serif;
      font-size: 5rem;
      text-transform: uppercase;
      letter-spacing: .3rem;
      font-weight: 700;
      line-height: 4.5rem; }
    @media (max-width: 44.375em) {
      .widget.title .grid-container {
        display: block !important; }
        .widget.title .grid-container .widget-title {
          margin-bottom: 1rem; } }
  .widget.news {
    padding: 0; }
    .widget.news .widget-title {
      margin-bottom: 1rem;
      font-family: "Roboto Condensed", sans-serif;
      font-size: 3rem; }
    .widget.news .widget-content .grid-container {
      grid-gap: 2rem; }
      .widget.news .widget-content .grid-container .cell {
        padding: 0;
        background-color: #fff; }
        .widget.news .widget-content .grid-container .cell .entry-news a .entry-info {
          padding: 1.5rem;
          border-top: 10px solid #EFBE00;
          background-color: #fff; }
          .widget.news .widget-content .grid-container .cell .entry-news a .entry-info .entry-title {
            margin-top: 1rem;
            font-size: 1.5rem; }
  .widget.text {
    margin: 0;
    padding: 0; }
    .widget.text a {
      display: block;
      padding: 2rem;
      border-radius: .5rem;
      text-align: center;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); }
      .widget.text a .widget-title {
        font-family: "Roboto Condensed", sans-serif;
        margin-bottom: .5rem;
        font-size: 1.6rem; }
      .widget.text a p {
        margin-bottom: 0;
        font-size: 1.5rem; }
      .widget.text a .mini-text {
        font-size: 1.2rem; }
    .widget.text.blue a {
      background-color: #049BCE;
      color: #fff; }
      .widget.text.blue a:hover {
        background-color: #04aee7; }
    .widget.text.green a {
      background-color: #01A635;
      color: #fff; }
      .widget.text.green a:hover {
        background-color: #01bf3d; }
    .widget.text.orange a {
      background-color: #F15640;
      color: #fff; }
      .widget.text.orange a:hover {
        background-color: #f36b58; }
    .widget.text.dark a {
      background-color: #4d4d4d;
      color: #fff; }
      .widget.text.dark a:hover {
        background-color: #666666; }
    .widget.text.light a {
      background-color: #fff;
      color: #464646; }
      .widget.text.light a .widget-title {
        color: #000; }
      .widget.text.light a:hover {
        background-color: #fafafa; }
  .widget.widget_media_image {
    padding: 0; }
    .widget.widget_media_image .image {
      width: 100%; }
  .widget.widget_media_video {
    padding: 0; }
  .widget.widget_nav_menu .widget-header {
    padding: 0; }
    .widget.widget_nav_menu .widget-header .widget-title {
      margin-bottom: .5rem;
      font-size: 2.2rem;
      font-family: "Roboto Condensed", sans-serif; }
  .widget.widget_nav_menu .menu {
    padding: 0;
    margin: 0;
    list-style-type: none; }
    .widget.widget_nav_menu .menu li {
      list-style-image: none; }
      .widget.widget_nav_menu .menu li a {
        margin-bottom: 1rem;
        font-weight: bold;
        font-size: 1.9rem; }

.sidebar {
  min-height: 250px;
  padding: 20px 0; }

.wrapper-sidebar .widget {
  font-size: 1.7rem;
  padding: 0px;
  padding-left: 20px; }
  .wrapper-sidebar .widget .widget-title {
    color: #333333;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 2.8rem;
    line-height: 1em;
    margin: 0 0 10px 0;
    text-transform: inherit; }
  .wrapper-sidebar .widget ul {
    list-style: none;
    margin: 0px; }
    .wrapper-sidebar .widget ul li {
      list-style-image: none;
      margin-bottom: 0px;
      position: relative;
      padding-left: 20px; }
      .wrapper-sidebar .widget ul li::before {
        content: "";
        font-family: "cc-fontello";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        width: 1em;
        margin-right: .2em;
        text-align: center;
        /* opacity: .8; */
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* fix buttons height, for twitter bootstrap */
        line-height: 1em;
        /* Animation center compensation - margins should be symmetric */
        /* remove if not needed */
        margin-left: .2em;
        /* you can be more comfortable with increased icons size */
        /* font-size: 120%; */
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        /* Uncomment for 3D effect */
        /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
        color: #EC592F;
        position: absolute;
        left: -3px;
        top: 4px;
        font-size: 1.9rem; }

.widget-area.content-below {
  background: #E9E9E9; }

/* -- Sidebar -- */
#content-above-mobile {
  display: none;
  margin-bottom: 25px; }

/* -- home-content-below -- */
#home-content-below > div {
  /* margin-bottom: 10px; */ }
  @media (max-width: 44.375em) {
    #home-content-below > div {
      /*  margin-bottom: 30px; */ } }

#home-content-below > div:last-child {
  margin-bottom: 0; }

/* -- Homepage Videos -- */
.widget_creativecommons_videos_homepage_widget {
  background-image: linear-gradient(#eee, #fefefe);
  padding-top: 35px; }
  .widget_creativecommons_videos_homepage_widget .widget-header {
    margin-left: 20px;
    margin-right: 20px;
    max-width: 1120px; }
  .widget_creativecommons_videos_homepage_widget .cc-footer-float-from {
    position: absolute;
    visibility: hidden;
    width: 100%; }
  .widget_creativecommons_videos_homepage_widget h2 {
    color: #333333;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    line-height: 0.85em;
    margin-bottom: 15px;
    text-transform: uppercase; }
    @media (min-width: 61.5625em) {
      .widget_creativecommons_videos_homepage_widget h2 {
        float: left;
        width: 300px; } }
    @media (min-width: 75em) {
      .widget_creativecommons_videos_homepage_widget h2 {
        font-size: 6.4rem;
        line-height: 0.85em;
        width: 400px; } }
  .widget_creativecommons_videos_homepage_widget div.intro strong {
    color: #333333; }
  .widget_creativecommons_videos_homepage_widget div.intro a {
    color: #EC592F;
    font-weight: 700; }
    .widget_creativecommons_videos_homepage_widget div.intro a:visited {
      color: #EC592F; }
    .widget_creativecommons_videos_homepage_widget div.intro a:focus {
      color: #049CCF; }
    .widget_creativecommons_videos_homepage_widget div.intro a:hover {
      color: #049CCF; }
  @media (min-width: 61.5625em) {
    .widget_creativecommons_videos_homepage_widget div.intro {
      margin-left: 300px; } }
  @media (min-width: 75em) {
    .widget_creativecommons_videos_homepage_widget div.intro {
      margin-left: 400px; } }
  .widget_creativecommons_videos_homepage_widget .row {
    clear: both; }
  .widget_creativecommons_videos_homepage_widget .column {
    margin: 30px 0 45px 0; }
    .widget_creativecommons_videos_homepage_widget .column:last-child {
      margin-bottom: 55px; }
    @media (max-width: 48.9375em) {
      .widget_creativecommons_videos_homepage_widget .column {
        width: 30%;
        float: left;
        margin-bottom: 35px; }
        .widget_creativecommons_videos_homepage_widget .column:nth-child(3n-1) {
          padding-left: 4px;
          padding-right: 4px; } }
    @media (min-width: 56.875em) {
      .widget_creativecommons_videos_homepage_widget .column {
        padding-left: 12px !important;
        padding-right: 12px !important; } }

/* -- Homepage Sharing -- */
.homepage-sharing-widget {
  background: #00B5DA;
  font-size: 18px; }
  .homepage-sharing-widget > h2 {
    display: none; }
  .homepage-sharing-widget h3 {
    color: #333333;
    margin-bottom: 0; }
  .homepage-sharing-widget .homepage-sharing-widget-inner {
    margin-left: 20px;
    margin-right: 20px;
    max-width: 1120px; }
  .homepage-sharing-widget .column {
    margin: 30px 0 45px 0; }
    .homepage-sharing-widget .column:last-child {
      margin-bottom: 55px; }
    @media (max-width: 48.9375em) {
      .homepage-sharing-widget .column {
        width: 33.33%;
        float: left;
        margin-bottom: 35px; }
        .homepage-sharing-widget .column:nth-child(3n-1) {
          padding-left: 4px;
          padding-right: 4px; } }
    @media (min-width: 56.875em) {
      .homepage-sharing-widget .column {
        padding-left: 12px !important;
        padding-right: 12px !important; } }
  .homepage-sharing-widget .service-box {
    font-weight: 700;
    text-align: center; }
    .homepage-sharing-widget .service-box img {
      display: block;
      margin: 0 auto 5px auto; }
    .homepage-sharing-widget .service-box h3 {
      margin: 0 auto 5px auto; }
    .homepage-sharing-widget .service-box ul {
      margin: 0; }
    .homepage-sharing-widget .service-box li {
      list-style: none outside none;
      margin-bottom: 5px; }
      .homepage-sharing-widget .service-box li a {
        color: #fff; }
        .homepage-sharing-widget .service-box li a:visited {
          color: #fff; }
        .homepage-sharing-widget .service-box li a:focus {
          color: #333333; }
        .homepage-sharing-widget .service-box li a:hover {
          color: #333333; }

/* -- Homepage Supporters -- */
.cc-widget-homepage-supporters {
  background-color: #2B2B2B;
  color: #CCC;
  height: auto;
  overflow: hidden;
  padding: 25px 0 30px 0; }
  .cc-widget-homepage-supporters h2 {
    font-size: 1.8rem;
    line-height: 1.1em;
    margin-bottom: 15px;
    text-align: center; }
  .cc-widget-homepage-supporters .textwidget {
    margin-left: 20px;
    margin-right: 20px;
    max-width: 1120px; }
    .cc-widget-homepage-supporters .textwidget h2 {
      margin: 25px 0 30px 0; }
  .cc-widget-homepage-supporters ul {
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 0 25px 0; }
  .cc-widget-homepage-supporters li {
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex: 0 1 31%;
        -ms-flex: 0 1 31%;
            flex: 0 1 31%;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    list-style: none;
    margin-bottom: 20px; }
  .cc-widget-homepage-supporters .more {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase; }
    .cc-widget-homepage-supporters .more a {
      color: #049CCF; }
      .cc-widget-homepage-supporters .more a:visited {
        color: #049CCF; }
      .cc-widget-homepage-supporters .more a:focus {
        color: #fff; }
      .cc-widget-homepage-supporters .more a:hover {
        color: #fff; }
    .cc-widget-homepage-supporters .more i {
      color: #EFBE00; }
  @media (max-width: 44.375em) {
    .cc-widget-homepage-supporters h2 {
      font-size: 2.8rem;
      line-height: 1em; }
    .cc-widget-homepage-supporters .more {
      font-size: 1.7rem;
      text-align: right; } }
  @media (min-width: 61.5625em) {
    .cc-widget-homepage-supporters li {
      -webkit-flex-basis: 15%;
          -ms-flex-preferred-size: 15%;
              flex-basis: 15%; } }

/* -- Homepage What's Happening -- */
#creativecommons_homepage_whatshappening_widget-2 {
  margin-bottom: 0 !important; }

.homepage-whatshappening-widget {
  background-color: #EFBE00;
  padding-bottom: 35px;
  padding-top: 35px; }
  .homepage-whatshappening-widget .homepage-whatshappening-widget-inner {
    margin-left: 20px;
    margin-right: 20px;
    max-width: 1120px; }
    .homepage-whatshappening-widget .homepage-whatshappening-widget-inner > h2 {
      font-weight: 700;
      text-transform: uppercase;
      color: #fff;
      line-height: 1em;
      margin-bottom: 10px; }
    .homepage-whatshappening-widget .homepage-whatshappening-widget-inner > .more {
      font-family: "Roboto Condensed", sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      margin-top: 10px;
      text-align: right;
      text-transform: uppercase; }
      .homepage-whatshappening-widget .homepage-whatshappening-widget-inner > .more i {
        color: #fff; }
      .homepage-whatshappening-widget .homepage-whatshappening-widget-inner > .more a {
        color: #464646; }
        .homepage-whatshappening-widget .homepage-whatshappening-widget-inner > .more a:visited {
          color: #464646; }
        .homepage-whatshappening-widget .homepage-whatshappening-widget-inner > .more a:focus {
          color: #00B5DA; }
        .homepage-whatshappening-widget .homepage-whatshappening-widget-inner > .more a:hover {
          color: #00B5DA; }
  .homepage-whatshappening-widget .post-hero {
    margin-bottom: 20px; }
    .homepage-whatshappening-widget .post-hero .thumbnail img {
      height: auto;
      min-height: 170px;
      width: 100%; }
    .homepage-whatshappening-widget .post-hero .teaser {
      background-color: #fff;
      padding: 25px;
      position: relative;
      border-top: 10px solid #00B5DA; }
    .homepage-whatshappening-widget .post-hero .title {
      font-size: 3.5rem;
      line-height: 0.9em;
      margin-bottom: 10px; }
    .homepage-whatshappening-widget .post-hero .excerpt > :last-child {
      margin-bottom: 0; }
    .homepage-whatshappening-widget .post-hero .excerpt .more-link {
      display: none; }
    .homepage-whatshappening-widget .post-hero .category {
      margin-top: 1.5em;
      font-family: "Roboto Condensed", sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      text-transform: uppercase; }
      .homepage-whatshappening-widget .post-hero .category a {
        color: #464646; }
        .homepage-whatshappening-widget .post-hero .category a:visited {
          color: #464646; }
        .homepage-whatshappening-widget .post-hero .category a:focus {
          color: #EFBE00; }
        .homepage-whatshappening-widget .post-hero .category a:hover {
          color: #EFBE00; }
    @media (min-width: 56.875em) {
      .homepage-whatshappening-widget .post-hero .item {
        -webkit-align-items: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-flow: row nowrap;
            -ms-flex-flow: row nowrap;
                flex-flow: row nowrap;
        height: 320px; }
      .homepage-whatshappening-widget .post-hero .thumbnail {
        -webkit-flex-basis: 50%;
            -ms-flex-preferred-size: 50%;
                flex-basis: 50%;
        position: relative; }
        .homepage-whatshappening-widget .post-hero .thumbnail > a {
          -webkit-transform-style: preserve-3d;
                  transform-style: preserve-3d;
          bottom: 0;
          left: 0;
          overflow: hidden;
          position: absolute;
          right: 0;
          top: 0; }
        .homepage-whatshappening-widget .post-hero .thumbnail img {
          left: 50%;
          position: absolute;
          top: 50%;
          -webkit-transform: translate(-50%, -50%);
              -ms-transform: translate(-50%, -50%);
                  transform: translate(-50%, -50%);
          height: auto;
          max-width: none;
          min-height: 100%;
          width: 100%; }
      .homepage-whatshappening-widget .post-hero .teaser {
        -webkit-flex-basis: 50%;
            -ms-flex-preferred-size: 50%;
                flex-basis: 50%;
        position: relative; }
      .homepage-whatshappening-widget .post-hero .category {
        bottom: 20px;
        margin-top: 0;
        position: absolute; } }
  .homepage-whatshappening-widget .posts-featured .item {
    background-color: #00B5DA;
    position: relative; }
    .homepage-whatshappening-widget .posts-featured .item:not(:last-child) {
      margin-bottom: 20px; }
  .homepage-whatshappening-widget .posts-featured .thumbnail img {
    height: auto;
    min-height: 170px;
    width: 100%; }
  .homepage-whatshappening-widget .posts-featured .teaser {
    color: #fff;
    min-height: 150px;
    padding: 25px; }
  .homepage-whatshappening-widget .posts-featured .title {
    font-size: 2.2rem;
    line-height: 1em;
    margin-bottom: 10px; }
    .homepage-whatshappening-widget .posts-featured .title a {
      color: #fff; }
      .homepage-whatshappening-widget .posts-featured .title a:visited {
        color: #fff; }
      .homepage-whatshappening-widget .posts-featured .title a:focus {
        color: #464646; }
      .homepage-whatshappening-widget .posts-featured .title a:hover {
        color: #464646; }
  .homepage-whatshappening-widget .posts-featured .category {
    margin-top: 1.5em;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.3rem;
    line-height: 1.3em;
    font-weight: 700;
    text-transform: uppercase; }
    .homepage-whatshappening-widget .posts-featured .category a {
      color: #464646; }
      .homepage-whatshappening-widget .posts-featured .category a:visited {
        color: #464646; }
      .homepage-whatshappening-widget .posts-featured .category a:focus {
        color: #EFBE00; }
      .homepage-whatshappening-widget .posts-featured .category a:hover {
        color: #EFBE00; }
  @media (max-width: 44.375em) {
    .homepage-whatshappening-widget .posts-featured {
      -webkit-align-items: stretch;
          -ms-flex-align: stretch;
              align-items: stretch;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .homepage-whatshappening-widget .posts-featured .item {
        margin-bottom: 20px !important;
        padding-bottom: 30px;
        width: 48%; }
      .homepage-whatshappening-widget .posts-featured .thumbnail {
        height: 150px;
        position: relative; }
        .homepage-whatshappening-widget .posts-featured .thumbnail > a {
          -webkit-transform-style: preserve-3d;
                  transform-style: preserve-3d;
          bottom: 0;
          left: 0;
          overflow: hidden;
          position: absolute;
          right: 0;
          top: 0; }
        .homepage-whatshappening-widget .posts-featured .thumbnail img {
          left: 50%;
          position: absolute;
          top: 50%;
          -webkit-transform: translate(-50%, -50%);
              -ms-transform: translate(-50%, -50%);
                  transform: translate(-50%, -50%);
          height: auto;
          max-width: none;
          min-height: 100%;
          width: 100%; }
      .homepage-whatshappening-widget .posts-featured .category {
        bottom: 20px;
        margin-top: 0;
        position: absolute; } }
  @media (min-width: 56.875em) {
    .homepage-whatshappening-widget .posts-featured {
      -webkit-flex-wrap: nowrap;
          -ms-flex-wrap: nowrap;
              flex-wrap: nowrap; }
      .homepage-whatshappening-widget .posts-featured .item {
        margin-bottom: 0 !important;
        width: 23%; } }

/* End of: Homepage
    --------------------------------- */
.widget_creativecommons_news_features_widget {
  padding-bottom: 35px; }
  .widget_creativecommons_news_features_widget .feature-widget-inner img {
    padding-bottom: 20px; }
  @media (min-width: 56.875em) {
    .widget_creativecommons_news_features_widget .feature-widget-inner img {
      padding-bottom: 0px; } }
  .widget_creativecommons_news_features_widget .feature-widget-inner .post-hero .item {
    padding-bottom: 40px;
    border-bottom: 1px solid #E9E9E9; }
    .widget_creativecommons_news_features_widget .feature-widget-inner .post-hero .item .thumbnail img {
      height: auto;
      width: 100%;
      padding-bottom: 20px; }
    .widget_creativecommons_news_features_widget .feature-widget-inner .post-hero .item .teaser .title {
      font-size: 4.8rem;
      letter-spacing: 0.9;
      line-height: 0.9em;
      margin-bottom: 15px;
      font-weight: 700; }
      .widget_creativecommons_news_features_widget .feature-widget-inner .post-hero .item .teaser .title a {
        color: #049BCE; }
        .widget_creativecommons_news_features_widget .feature-widget-inner .post-hero .item .teaser .title a:hover {
          color: #464646; }
    .widget_creativecommons_news_features_widget .feature-widget-inner .post-hero .item .teaser .excerpt {
      position: relative; }
      .widget_creativecommons_news_features_widget .feature-widget-inner .post-hero .item .teaser .excerpt p {
        margin-bottom: 10px; }
    .widget_creativecommons_news_features_widget .feature-widget-inner .post-hero .item .teaser .category {
      margin-top: 20px; }
  .widget_creativecommons_news_features_widget .feature-widget-inner .category {
    margin-top: 0px !important;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase; }
    .widget_creativecommons_news_features_widget .feature-widget-inner .category a {
      color: #464646; }
      .widget_creativecommons_news_features_widget .feature-widget-inner .category a:visited {
        color: #464646; }
      .widget_creativecommons_news_features_widget .feature-widget-inner .category a:focus {
        color: #EFBE00; }
      .widget_creativecommons_news_features_widget .feature-widget-inner .category a:hover {
        color: #EFBE00; }
  .widget_creativecommons_news_features_widget .feature-widget-inner .author-wrapper > div {
    display: inline-block;
    vertical-align: top; }
  .widget_creativecommons_news_features_widget .feature-widget-inner .author-wrapper .author-image img {
    margin-right: 10px;
    border-radius: 0px !important; }
  .widget_creativecommons_news_features_widget .feature-widget-inner .author-wrapper .author-info-group h4 {
    line-height: 1em;
    font-size: 2rem;
    font-weight: normal !important; }
    .widget_creativecommons_news_features_widget .feature-widget-inner .author-wrapper .author-info-group h4 a {
      color: #FB7928; }
  .widget_creativecommons_news_features_widget .feature-widget-inner .author-wrapper .author-info-group .author-date {
    font-size: 1.5rem;
    line-height: 1.3em; }
  .widget_creativecommons_news_features_widget .feature-widget-inner > h2 {
    color: #000;
    font-size: 4.4rem;
    line-height: 1em;
    margin-bottom: 10px;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 700; }
  .widget_creativecommons_news_features_widget .posts-featured .item {
    padding-bottom: 40px;
    border-bottom: 1px solid #E9E9E9;
    margin-top: 30px; }
    .widget_creativecommons_news_features_widget .posts-featured .item .title {
      font-size: 3.1rem;
      line-height: 0.9em;
      margin-bottom: 15px;
      font-weight: 700; }
      .widget_creativecommons_news_features_widget .posts-featured .item .title a {
        color: #049BCE; }
        .widget_creativecommons_news_features_widget .posts-featured .item .title a:hover {
          color: #464646; }
    .widget_creativecommons_news_features_widget .posts-featured .item .teaser {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-align-content: stretch;
          -ms-flex-line-pack: stretch;
              align-content: stretch; }
      .widget_creativecommons_news_features_widget .posts-featured .item .teaser .thumbnail {
        -webkit-flex: 0 1 100%;
            -ms-flex: 0 1 100%;
                flex: 0 1 100%; }
        .widget_creativecommons_news_features_widget .posts-featured .item .teaser .thumbnail img {
          width: 100%; }
        @media (max-width: 44.375em) {
          .widget_creativecommons_news_features_widget .posts-featured .item .teaser .thumbnail {
            -webkit-flex: 0 1 48%;
                -ms-flex: 0 1 48%;
                    flex: 0 1 48%; } }
      .widget_creativecommons_news_features_widget .posts-featured .item .teaser .right-side-wrapper {
        -webkit-flex: 0 1 100%;
            -ms-flex: 0 1 100%;
                flex: 0 1 100%; }
        @media (max-width: 44.375em) {
          .widget_creativecommons_news_features_widget .posts-featured .item .teaser .right-side-wrapper {
            -webkit-flex: 0 1 49%;
                -ms-flex: 0 1 49%;
                    flex: 0 1 49%; } }
        .widget_creativecommons_news_features_widget .posts-featured .item .teaser .right-side-wrapper .excerpt p {
          line-height: 1.3em;
          font-size: 1.7rem;
          margin-bottom: 10px; }

.content-below {
  /* -- Related News -- */
  /* End of: News
        --------------------------------- */ }
  .content-below .widget_creativecommons_related_news_widget {
    background: #fff;
    padding-bottom: 30px; }
    .content-below .widget_creativecommons_related_news_widget .related-news-widget {
      display: block;
      background-color: #E0C93D;
      padding-top: 24px; }
      .content-below .widget_creativecommons_related_news_widget .related-news-widget .related-news-widget-inner {
        margin-left: 20px;
        margin-right: 20px;
        max-width: 1120px;
        overflow: auto; }
        .content-below .widget_creativecommons_related_news_widget .related-news-widget .related-news-widget-inner h2 {
          font-family: "Roboto Condensed", sans-serif;
          text-transform: uppercase;
          color: #fff;
          line-height: 1em;
          margin-bottom: 10px; }
          @media (min-width: 56.875em) {
            .content-below .widget_creativecommons_related_news_widget .related-news-widget .related-news-widget-inner h2 {
              width: 200px; } }
      @media (max-width: 44.375em) {
        .content-below .widget_creativecommons_related_news_widget .related-news-widget .item {
          width: 50%;
          float: left; }
          .content-below .widget_creativecommons_related_news_widget .related-news-widget .item:nth-child(2n) {
            padding-left: 12px; }
          .content-below .widget_creativecommons_related_news_widget .related-news-widget .item:nth-child(2n+1) {
            padding-right: 12px; } }
      @media screen and (min-width: 56.875em) {
        .content-below .widget_creativecommons_related_news_widget .related-news-widget .item {
          width: 25%; }
          .content-below .widget_creativecommons_related_news_widget .related-news-widget .item:not(:first-child) {
            padding-left: 12px; }
          .content-below .widget_creativecommons_related_news_widget .related-news-widget .item:not(:last-child) {
            padding-right: 12px; } }
      @media (max-width: 44.375em) {
        .content-below .widget_creativecommons_related_news_widget .related-news-widget .item .thumbnail {
          height: 155px; } }
      @media screen and (min-width: 56.875em) {
        .content-below .widget_creativecommons_related_news_widget .related-news-widget .item .thumbnail img {
          min-height: 100%;
          min-width: 100%; } }
      .content-below .widget_creativecommons_related_news_widget .related-news-widget .teaser {
        background-color: #00B5DA;
        margin-bottom: 20px;
        position: relative;
        padding: 20px 20px 60px 20px; }
        @media (max-width: 44.375em) {
          .content-below .widget_creativecommons_related_news_widget .related-news-widget .teaser {
            height: 195px;
            padding-bottom: 20px; } }
        .content-below .widget_creativecommons_related_news_widget .related-news-widget .teaser img, .content-below .widget_creativecommons_related_news_widget .related-news-widget .teaser div {
          display: block; }
        .content-below .widget_creativecommons_related_news_widget .related-news-widget .teaser .title {
          font-size: 1.9rem; }
          .content-below .widget_creativecommons_related_news_widget .related-news-widget .teaser .title a {
            color: #fff; }
        .content-below .widget_creativecommons_related_news_widget .related-news-widget .teaser .read-more {
          position: absolute;
          bottom: 22px;
          left: 22px; }
          .content-below .widget_creativecommons_related_news_widget .related-news-widget .teaser .read-more a {
            text-transform: uppercase;
            color: #000; }

/* Stay Tuned to the Commons
    -- Sidebar widget
    --------------------------------- */
#text-8 {
  padding-left: 0px; }
  #text-8 .widget-title {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.9rem;
    text-transform: uppercase;
    position: relative;
    padding-left: 45px;
    font-size: 1.9rem; }
    #text-8 .widget-title::before {
      content: "";
      font-family: "cc-fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      width: 1em;
      margin-right: .2em;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* Animation center compensation - margins should be symmetric */
      /* remove if not needed */
      margin-left: .2em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
      color: #E9E9E9;
      position: absolute;
      left: -3px;
      top: -8px;
      font-size: 2.7rem; }
      @media (min-width: 56.875em) {
        #text-8 .widget-title::before {
          top: -7px !important; } }
  #text-8 .textwidget #email-Primary {
    border: 0px;
    font-size: 1.7rem;
    width: 52%;
    padding: 10px 5px 9px 5px;
    line-height: 1.0em;
    margin-right: -5px; }
    @media (min-width: 56.875em) {
      #text-8 .textwidget #email-Primary {
        width: 100%; } }
    #text-8 .textwidget #email-Primary::-webkit-input-placeholder {
      font-size: 1.5rem;
      text-align: center; }
  #text-8 .textwidget .input-group input {
    vertical-align: top; }
  #text-8 .textwidget .input-group input:focus {
    background: #F3F3F3 !important; }
  @media (min-width: 56.875em) {
    #text-8 .textwidget .input-group-btn {
      float: left;
      margin-top: 10px; } }
  #text-8 .textwidget .input-group-btn button {
    padding: .5em 1.4em;
    vertical-align: top; }

#gform_widget-4 {
  padding-left: 0px; }
  #gform_widget-4 .widget-title {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.9rem;
    text-transform: uppercase;
    position: relative;
    padding-left: 45px;
    font-size: 1.9rem; }
    #gform_widget-4 .widget-title::before {
      content: "";
      font-family: "cc-fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      width: 1em;
      margin-right: .2em;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* Animation center compensation - margins should be symmetric */
      /* remove if not needed */
      margin-left: .2em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
      color: #E9E9E9;
      position: absolute;
      left: -3px;
      top: -8px;
      font-size: 2.7rem; }
      @media (min-width: 56.875em) {
        #gform_widget-4 .widget-title::before {
          top: -7px !important; } }
  #gform_widget-4 .gform_footer {
    margin: 0;
    padding: 0; }
  #gform_widget-4 li {
    padding: 0; }
  #gform_widget-4 label {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0; }
  #gform_widget-4 #field_7_2 {
    display: none; }
  #gform_widget-4 #input_7_1 {
    border: 0px;
    font-size: 1.7rem;
    width: 52%;
    padding: 10px 5px 9px 5px;
    line-height: 1.0em;
    margin-right: -5px; }
    @media (min-width: 56.875em) {
      #gform_widget-4 #input_7_1 {
        width: 100%; } }
    #gform_widget-4 #input_7_1::-webkit-input-placeholder {
      font-size: 1.5rem;
      text-align: center; }
    #gform_widget-4 #input_7_1:focus {
      background: #F3F3F3 !important; }
  #gform_widget-4 #gform_submit_button_7 {
    border: 0 none;
    border-radius: 3px;
    box-shadow: none;
    color: #fff;
    height: 40px;
    max-width: 200px;
    max-height: 40px;
    background: url("../images/primary-button-sprite.png") no-repeat right top;
    margin: 0;
    padding-top: 13px;
    width: 140px; }
    #gform_widget-4 #gform_submit_button_7:hover, #gform_widget-4 #gform_submit_button_7:focus {
      background-position: right bottom; }
    #gform_widget-4 #gform_submit_button_7:hover, #gform_widget-4 #gform_submit_button_7:focus {
      background-position: right bottom; }

/* Stay Tuned to the Commons
    -- Homepage widget
    --------------------------------- */
#text-13 {
  background-image: linear-gradient(180deg, #E1B300, #EFBE00);
  padding: 40px 0;
  /* Override some GF changes */ }
  #text-13 h2 {
    color: #333333;
    font-size: 2.8rem;
    line-height: 0.85em;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 0;
    text-transform: uppercase; }
  #text-13 form {
    padding-right: 15%;
    position: relative; }
  #text-13 label {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0; }
  #text-13 .gform_wrapper {
    margin-left: 20px;
    margin-right: 20px;
    max-width: 1120px; }
  #text-13 li {
    padding-right: 0; }
  #text-13 div.ginput_container {
    margin-top: 0; }
  #text-13 #input_7_1 {
    background: #fff url("../images/grey-envelope.png") no-repeat 15px center;
    margin-bottom: 0;
    padding-bottom: 0.8em;
    padding-left: 50px;
    padding-top: 0.8em;
    width: 100%; }
  #text-13 #gform_submit_button_7 {
    background: url("../images/primary-button-sprite.png") no-repeat right top;
    background-size: auto 200%;
    box-shadow: none;
    border: 0 none;
    color: #fff;
    height: 50px;
    margin: 0;
    padding-bottom: 0.8em;
    padding-top: 0.8em;
    width: 140px; }
    #text-13 #gform_submit_button_7:hover, #text-13 #gform_submit_button_7:focus {
      background-position: right bottom; }
  #text-13 .gform_footer {
    bottom: 0;
    margin: 0;
    padding: 0;
    position: static;
    right: 0px;
    z-index: 2; }
  @media (max-width: 48.9375em) {
    #text-13 * + * {
      margin-top: 0; }
    #text-13 li {
      margin: 0; }
    #text-13 form {
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-flow: row nowrap;
          -ms-flex-flow: row nowrap;
              flex-flow: row nowrap;
      padding-right: 0; }
    #text-13 .gform_fields {
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-flow: row nowrap;
          -ms-flex-flow: row nowrap;
              flex-flow: row nowrap; }
    #text-13 .gform_wrapper {
      margin-left: auto;
      margin-right: auto;
      max-width: 700px;
      padding-left: 20px;
      padding-right: 20px; }
    #text-13 .gform_footer {
      position: static; }
    #text-13 h2 {
      float: left;
      margin-right: 24px;
      padding-left: 60px;
      position: relative; }
      #text-13 h2::before {
        background: url("../images/email_signup.png") no-repeat left center;
        content: '';
        display: block;
        height: 50px;
        left: 0;
        position: absolute;
        top: -4px;
        width: 50px; }
      #text-13 h2 span {
        display: block; }
    #text-13 #input_7_1 {
      -webkit-flex: 0 1 290px;
          -ms-flex: 0 1 290px;
              flex: 0 1 290px;
      width: 240px; }
    #text-13 #field_7_2 {
      -webkit-flex: 0 1 310px;
          -ms-flex: 0 1 310px;
              flex: 0 1 310px;
      width: 310px; } }
  @media (min-width: 56.875em) {
    #text-13 #input_7_1 {
      width: 290px; } }

/* End of: Stay Tuned to the Commons
    --------------------------------- */
/* News
    --------------------------------- */
/* -- Author news -- */
.author-news-widget {
  display: block;
  background-color: #E0C93D;
  padding-top: 24px; }
  .author-news-widget .author-news-widget-inner {
    margin-left: 20px;
    margin-right: 20px;
    max-width: 1120px;
    overflow: auto; }
    .author-news-widget .author-news-widget-inner h2 {
      text-transform: uppercase;
      color: #fff;
      line-height: 1em; }
    @media screen and (min-width: 56.875em) {
      .author-news-widget .author-news-widget-inner .features .item {
        width: 25%;
        float: left; } }
    @media screen and (min-width: 56.875em) {
      .author-news-widget .author-news-widget-inner .features .item .thumbnail {
        max-width: 270px;
        height: 155px; } }
    .author-news-widget .author-news-widget-inner .features .item .teaser {
      background-color: #00B5DA;
      height: 195px;
      margin-bottom: 20px;
      position: relative; }
      @media screen and (min-width: 56.875em) {
        .author-news-widget .author-news-widget-inner .features .item .teaser {
          max-width: 270px; } }
      .author-news-widget .author-news-widget-inner .features .item .teaser img, .author-news-widget .author-news-widget-inner .features .item .teaser div {
        display: block; }
      .author-news-widget .author-news-widget-inner .features .item .teaser .title {
        padding-top: 22px;
        padding-left: 22px; }
        .author-news-widget .author-news-widget-inner .features .item .teaser .title a {
          color: #fff; }
      .author-news-widget .author-news-widget-inner .features .item .teaser .read-more {
        position: absolute;
        bottom: 22px;
        left: 22px; }
        .author-news-widget .author-news-widget-inner .features .item .teaser .read-more a {
          text-transform: uppercase;
          color: #000; }

/* -- Donation bar -- */
.donation-bar-wrapper {
  background: #E9E9E9;
  border-bottom: 1px solid #fff;
  color: #333333;
  font-weight: 700;
  padding: 15px 0; }

.donation-bar-inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 20px;
  margin-right: 20px;
  max-width: 1120px; }
  .donation-bar-inner:after {
    content: "";
    display: table;
    clear: both; }
  .donation-bar-inner .donate-text {
    display: block;
    margin: 0;
    margin-right: 36px;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -webkit-align-self: center;
        -ms-flex-item-align: center;
                -ms-grid-row-align: center;
            align-self: center; }
  .donation-bar-inner .donate-action {
    -webkit-align-self: center;
        -ms-flex-item-align: center;
                -ms-grid-row-align: center;
            align-self: center;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0; }
  .donation-bar-inner .button.donate {
    display: block;
    padding-left: 46px !important;
    padding-right: 8px !important;
    margin-right: 8px; }
    .donation-bar-inner .button.donate::before {
      position: absolute;
      content: '';
      background: url("../images/cc-heart.white.png") no-repeat left center;
      background-image: url("../images/cc-heart.white.svg"), none;
      background-size: 30px auto;
      width: 30px;
      height: 28px;
      top: 4px;
      left: 8px; }
  @media (min-width: 56.875em) {
    .donation-bar-inner {
      font-size: 2.8rem;
      line-height: 1.5em; }
      .donation-bar-inner .donate-text {
        -webkit-flex-grow: 0;
            -ms-flex-positive: 0;
                flex-grow: 0; }
      .donation-bar-inner .button.donate {
        font-size: 2.8rem !important;
        padding-left: 60px !important;
        padding-right: 20px !important;
        margin-right: 20px; }
        .donation-bar-inner .button.donate::before {
          background-size: 36px auto;
          width: 36px;
          height: 32px;
          top: 10px;
          left: 12px; } }

/* -- IP Supporters -- */
.cc-widget-ip-supporters {
  margin-left: 20px;
  margin-right: 20px;
  max-width: 1120px;
  background-color: #E9E9E9;
  height: auto;
  padding-top: 24px;
  padding-bottom: 30px;
  position: relative;
  overflow: hidden; }
  .cc-widget-ip-supporters h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px; }
  .cc-widget-ip-supporters ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    list-style: none;
    -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
            align-content: stretch; }
    .cc-widget-ip-supporters ul li {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex: 0 1 16%;
          -ms-flex: 0 1 16%;
              flex: 0 1 16%;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; }
  .cc-widget-ip-supporters .all-supporters {
    bottom: 20px;
    text-transform: uppercase;
    position: absolute;
    right: 0px; }
    .cc-widget-ip-supporters .all-supporters a {
      padding-right: 30px;
      position: relative;
      font-family: "Roboto Condensed", sans-serif;
      font-size: 1.6rem; }
      .cc-widget-ip-supporters .all-supporters a::after {
        content: "";
        font-family: "cc-fontello";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        width: 1em;
        margin-right: .2em;
        text-align: center;
        /* opacity: .8; */
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* fix buttons height, for twitter bootstrap */
        line-height: 1em;
        /* Animation center compensation - margins should be symmetric */
        /* remove if not needed */
        margin-left: .2em;
        /* you can be more comfortable with increased icons size */
        /* font-size: 120%; */
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        /* Uncomment for 3D effect */
        /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
        color: #EC592F;
        font-size: 2.6rem;
        position: absolute;
        right: 0px;
        top: -4px; }

/* ### --- END _widgets.scss ==================================================================== */
/* ### --- _temp.scss ==================================================================== */
/*

Temp styles go here before moving to css/app.css

*/
.homepage-sharing-widget-inner {
  -webkit-column-count: 3;
          column-count: 3; }

/* FOOTER */
#menu-footer li {
  display: inline-block;
  padding: 0 7px;
  border-right: 1px solid #999;
  font-weight: bold; }

#menu-footer li:first-of-type {
  padding-left: 0px; }

#menu-footer li:last-of-type {
  padding-right: 0px;
  border-right: none; }

#menu-footer li a {
  text-decoration: none; }

#menu-footer li a:hover {
  text-decoration: underline; }

.cc-footer .column.cc-footer-main .cc-footer-logo .cc-site-logo {
  max-width: 240px; }

.cc-footer-contact h6 {
  font-style: normal;
  margin-bottom: 5px; }

.homepage-video-widget .row.videos {
  -webkit-column-count: 3;
          column-count: 3; }

.homepage-video-widget .row.videos p {
  line-height: 24px;
  font-weight: 600; }

/* ### .homepage-sharing-widget  ### */
.homepage-sharing-widget {
  background: #efefef;
  margin-bottom: 10px; }

.homepage-sharing-widget h3 {
  font-size: 3rem;
  color: #ec592f; }

.homepage-sharing-widget .homepage-sharing-widget-inner {
  max-width: 1120px;
  /* max */
  padding-top: 60px;
  height: 260px; }

.homepage-sharing-widget .column {
  height: 120px;
  float: none;
  margin: 0; }

.homepage-sharing-widget .service-box {
  display: inline-block;
  text-align: center; }

/* ### homepage-featured-program-areas-widget  ### */
.homepage-featured-program-areas-widget {
  background: #efbe00;
  margin-bottom: 10px;
  padding-bottom: 45px; }

.homepage-featured-program-areas-widget .widget-header {
  max-width: 1120px;
  /* max */
  padding-top: 60px;
  margin: 0 auto; }

.homepage-featured-program-areas-widget .widget-header h2 {
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
  line-height: .8em;
  margin-bottom: 10px;
  font-size: 6.4rem;
  font-family: "roboto"; }

.homepage-featured-program-areas-widget .homepage-featured-program-areas-widget-inner {
  max-width: 1120px;
  /* max */
  padding-top: 60px;
  -webkit-column-count: 4;
          column-count: 4;
  margin: 0 auto; }

.homepage-featured-program-areas-widget .column {
  height: 120px;
  float: none;
  margin: 0; }

.homepage-featured-program-areas-widget .service-box {
  display: inline-block;
  text-align: center; }

.homepage-featured-program-areas-widget .service-box img {
  background: #fff;
  border-radius: 50%; }

.service-box p {
  line-height: 1.4em; }

.see-all {
  text-transform: uppercase;
  font-family: "roboto";
  text-align: right;
  font-size: 1.5rem;
  max-width: 1120px;
  /* max */
  padding-top: 50px;
  margin: 0 auto; }

.see-all a {
  color: #333;
  text-decoration: none; }

.see-all a:hover {
  color: #049CCF; }

.see-all a:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid #fff;
  margin: 0 10px; }

.hero-video {
  display: inline-block;
  float: left !important;
  margin: 0 30px 0 0; }

.mejs-controls {
  display: none !important;
  visibility: hidden !important; }

.hero-text h1 {
  font-size: 50px;
  line-height: 42px;
  font-weight: bold;
  color: #333; }

.hero-text .button {
  background: #ec592e;
  color: #fff;
  padding: 0 0;
  border: transparent;
  text-indent: -5px;
  border-radius: 0;
  line-height: 4rem;
  font-size: 2rem;
  width: 260px;
  margin-top: -13px; }

.hero-text .button:hover {
  background: #464646; }

.hero-text .button:hover:after {
  border-left: 1rem solid #464646; }

.hero-text .button:after {
  content: "";
  display: block;
  border-top: 2rem solid #fff;
  border-bottom: 2rem solid #fff;
  border-left: 1rem solid #ec592e;
  float: right;
  margin-left: -40px; }

.home .textwidget h2 {
  font-size: 6.4rem; }

.homepage-whatshappening-widget .posts-featured .item {
  background: #fff;
  width: calc(33% - 13px); }

.homepage-whatshappening-widget .posts-featured .item:nth-child(2) {
  width: calc(34% - 14px); }

.homepage-whatshappening-widget .posts-featured .item a {
  color: #1eb6d9; }

/* temp solution */
.more-link {
  display: none; }

/* NEW SECTIONS */
.widget {
  margin: 0 0 10px 0;
  padding: 0 20px;
  border: none;
  font-size: inherit;
  font-size: inherit;
  line-height: inherit; }

.widget-wrapper {
  padding-bottom: 35px;
  padding-top: 55px;
  margin-left: 20px;
  margin-right: 20px;
  max-width: 1120px;
  /* max */
  color: #333;
  margin-left: auto;
  margin-right: auto; }

.widget header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 50px 0;
  max-width: 1120px;
  margin: 0 auto; }

.widget h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: .8em;
  margin-bottom: 0px;
  font-size: 5rem;
  letter-spacing: .3rem; }

.widget h2 span {
  display: block; }

.widget .widget-description a,
.widget .widget-description a:visited {
  color: #eb5a2e;
  font-weight: bold; }

.widget .widget-inner {
  max-width: 1120px;
  margin: 0 auto; }

.widget.no-header .widget-inner {
  padding: 50px 0; }

.widget-inner article .item {
  display: inline-block; }

.widget .widget-description a:hover,
.widget .widget-description a:active {
  color: #464646; }

.widget h3.title {
  font-size: 2.2rem;
  line-height: 1em;
  margin-bottom: 10px; }

.widget .more {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  padding-bottom: 40px;
  text-align: right;
  text-transform: uppercase;
  max-width: 1120px;
  margin: 0 auto; }

.widget .more a,
.widget .more a:visited {
  color: #464646; }

.widget .more a:hover,
.widget .more a i {
  color: #fff; }

.widget .teaser .more {
  text-align: left; }

.widget .excerpt p:last-of-type {
  margin-bottom: 0px; }

.thumbnail img {
  min-height: 100%;
  width: 100%; }

.num-cols-1 .widget-inner {
  -webkit-column-count: 1;
          column-count: 1;
  -webkit-column-gap: 40px;
          column-gap: 40px; }

.num-cols-2 .widget-inner {
  -webkit-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 40px;
          column-gap: 40px; }

.num-cols-3 .widget-inner {
  -webkit-column-count: 3;
          column-count: 3;
  -webkit-column-gap: 20px;
          column-gap: 20px; }

.num-cols-4 .widget-inner {
  -webkit-column-count: 4;
          column-count: 4;
  -webkit-column-gap: 40px;
          column-gap: 40px; }

.num-cols-5 .widget-inner {
  -webkit-column-count: 5;
          column-count: 5;
  -webkit-column-gap: 40px;
          column-gap: 40px; }

/*	######	FEATURED PROGRAMS START		###### */
/*	######	LINKS START		###### */
.featured-links {
  background: #efefef;
  font-size: 1.9rem;
  margin-bottom: 10px; }

.featured-links h3 a,
.featured-links h3 a:visited {
  margin: 10px auto 0 auto;
  font-size: 2.6rem;
  color: #464646;
  display: inline-block;
  min-height: 20px; }

.featured-links article .item {
  display: inline-block;
  text-align: center; }

.featured-links h3 a:hover {
  color: #ec592f; }

#links-widget .excerpt p:last-of-type {
  margin-bottom: 0px; }

.featured-links .excerpt a,
.featured-links .excerpt a:visited {
  color: #008aa6;
  font-weight: bold;
  margin-bottom: 10px;
  display: inline-block;
  line-height: 20px; }

.featured-links .excerpt a:hover,
.featured-links .excerpt a:active {
  color: #464646; }

.featured-links h3.title {
  min-height: 50px;
  margin-bottom: 10px; }

/*	######	FEATURED NEWS START		###### */
.featured-news {
  background-color: #1eb6d9; }

.featured-news .hero {
  max-width: 1120px;
  margin: 0 auto; }

.featured-news section {
  background-color: #1eb6d9;
  padding: 55px 0px 50px 0px;
  max-width: 1120px;
  /* max */
  color: #333; }

.featured-news h2 {
  font-size: 6rem;
  color: #fff; }

.featured-news article {
  background: #fff;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 5px 10px; }

.featured-news .widget-inner {
  padding-bottom: 40px; }

.featured-news .widget-inner article:first-of-type {
  margin-bottom: 5px; }

.featured-news .widget-inner article:last-of-type {
  margin-right: 0px; }

.featured-news .widget-inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden; }

.featured-news article .title a {
  color: #1eb6d9; }

.featured-news article .title a:hover {
  color: #464646; }

.featured-news article .title {
  font-size: 2.2rem;
  line-height: 1em;
  margin-bottom: 10px; }

.featured-news .teaser {
  min-height: 150px;
  padding: 25px;
  border-top: 10px solid #efbe00; }

.featured-news article.hero {
  margin-bottom: 15px; }

.featured-news article.hero .item {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  height: 320px; }

.featured-news article.hero .thumbnail {
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
          flex-basis: 50%;
  position: relative; }

.featured-news article.hero .teaser {
  border-top: none;
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
          flex-basis: 50%;
  position: relative;
  border-top: 10px solid #efbe00; }

.featured-news article.hero .title {
  font-size: 3.5rem;
  line-height: 0.9em;
  margin-bottom: 10px; }

/*
.featured-news article .widget-inner {
    display: table;
    border-collapse: separate;
    border-spacing: 10px 5px;
} 
.featured-news article {
    background: #fff;
    display: table-cell;
    width: 33%;
}
*/
.featured-news .teaser .more a:visited,
.featured-news .teaser .more a {
  color: #ec592e; }

.featured-news .teaser .more a:hover {
  color: #464646; }

.featured-news .widget-inner > .more {
  margin: 35px 0 0 0; }

/*	######	FEATURED WORKS START		###### */
.featured-works {
  background: #efefef; }

.featured-works.num-cols-4 .widget-inner {
  -webkit-column-gap: 20px;
          column-gap: 20px;
  padding-bottom: 100px; }

.featured-works h2 {
  -webkit-flex: 1 0 0;
      -ms-flex: 1 0 0px;
          flex: 1 0 0; }

.featured-works .widget-description {
  -webkit-flex: 3 0 0;
      -ms-flex: 3 0 0px;
          flex: 3 0 0; }

.featured-works .title a,
.featured-works .title a:visited {
  color: #eb5a2e; }

.featured-works .title a:hover,
.featured-works .title a:active {
  color: #464646; }

.featured-works .hero {
  max-width: 1120px;
  margin: 0 auto 20px; }

.featured-works .hero .item {
  -webkit-column-count: 2;
          column-count: 2; }

.featured-works .hero .teaser {
  display: inline-block; }

.featured-works .thumbnail {
  width: 100%;
  height: 175px;
  overflow: hidden;
  margin-bottom: 20px; }

.featured-works .more a, .featured-works .more a:visited {
  color: #eb5a2e; }

.featured-works .more a:hover, .featured-works .more a:active {
  color: #464646; }

/*	######	VIDEO START		###### */
.featured-videos {
  background: #fff; }

.featured-videos section {
  padding-top: 85px; }

.featured-videos h2 {
  -webkit-flex: 1 0 0;
      -ms-flex: 1 0 0px;
          flex: 1 0 0; }

.featured-videos .widget-description {
  -webkit-flex: 3 0 0;
      -ms-flex: 3 0 0px;
          flex: 3 0 0; }

.featured-videos .title a,
.featured-videos .title a:visited {
  color: #464646; }

.featured-videos .title a:hover,
.featured-videos .title a:active {
  color: #eb5a2e2; }

.featured-videos .thumbnail {
  width: 100%;
  /* height: 15vw; */
  overflow: hidden;
  margin-bottom: 25px; }

.featured-videos .wp-video {
  margin-bottom: 0; }

.featured-videos .item {
  height: 350px;
  width: 100%; }

/*	######	SUBSCRIBE START (TEMP)		###### */
#subscribe {
  background: #01a5c8;
  margin-top: -10px; }

#subscribe .textwidget {
  max-width: 700px;
  margin: 0px auto;
  padding: 40px 0; }

#subscribe h4 {
  margin: 0;
  text-transform: uppercase;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  letter-spacing: 0;
  float: left;
  line-height: 2rem;
  width: 250px; }

#subscribe h4:before {
  content: "";
  display: inline-block;
  background: url(../images/email_signup.png) no-repeat;
  width: 50px;
  height: 50px;
  float: left;
  margin-right: 10px;
  margin-top: -5px; }

#subscribe .cc-subscribe-email-field {
  width: 285px;
  margin: -2px 0 0 10px;
  display: inline-block;
  float: left;
  padding: 0;
  line-height: 4rem;
  text-indent: 44px;
  font-size: 1.4rem;
  background: url(../images/grey-envelope.png) #fff no-repeat;
  background-position: 11px 11px;
  background-size: 22px; }

#subscribe .cc-subscribe-email-field:focus {
  border: 1px solid #ec592e; }

#subscribe .cc-subscribe-submit {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.5rem;
  margin: -2px 0 0 0;
  padding: 0; }

#subscribe .cc-subscribe-submit:hover {
  background: transparent; }

#subscribe .cc-subscribe-submit span {
  display: block;
  background: #ec592e;
  padding: 0 25px;
  line-height: 4rem;
  border: 1px solid #ec592e;
  margin: -1px 0 0 -1px !important;
  float: left; }

#subscribe .cc-subscribe-submit:hover span {
  background: #464646;
  border: 1px solid #464646; }

#subscribe .cc-subscribe-submit:after {
  content: "";
  display: block;
  border-top: 2rem solid transparent;
  border-bottom: 2rem solid transparent;
  border-left: 1rem solid #ec592e;
  float: right; }

#subscribe .cc-subscribe-submit:hover:after {
  border-left: 1rem solid #464646; }

.thumbnail {
  background-size: cover; }

/* SHARE YOUR WORK STYLES */
.license-icon {
  width: 32px;
  margin-right: 10px;
  display: inline-block !important; }

/* ### RESPONSIVE VIDEO  ###  */
.wp-video, video.wp-video-shortcode, .mejs-container, .mejs-overlay.load {
  width: 100% !important;
  height: 100% !important; }

.mejs-container {
  padding-top: 56.25%; }

.wp-video, video.wp-video-shortcode {
  max-width: 100% !important; }

video.wp-video-shortcode {
  position: relative; }

.mejs-mediaelement {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.mejs-controls {
  display: none; }

.mejs-overlay-play {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto !important;
  height: auto !important; }

/* wrap in @media */
.hero-video {
  width: 45%; }

/* end */
/*  responsiveness */
@media (max-width: 56.875em) {
  /* 910px */
  .num-cols-4 .widget-inner {
    -webkit-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 0px;
            column-gap: 0px; } }

@media (max-width: 48.9375em) {
  .num-cols-3 .widget-inner {
    -webkit-column-count: 1;
            column-count: 1; }
  .featured-links.num-cols-3 .widget-inner {
    -webkit-column-count: 3;
            column-count: 3; } }

@media (max-width: 30em) {
  .featured-links.num-cols-3 .widget-inner,
  .num-cols-3 .widget-inner,
  .num-cols-4 .widget-inner {
    -webkit-column-count: 1;
            column-count: 1; }
  .featured-links article .item {
    text-align: left; } }

/* ###### DETACHED STYLES  ####  */
@media (min-width: 56.875em) {
  .num-cols-4 .widget-inner {
    -webkit-column-count: 4;
            column-count: 4; }
  .featured-links article .item {
    display: inline-block;
    text-align: left;
    margin: 10px 10px; } }

@media (max-width: 48.9375em) {
  /*  iPad and below  */
  body.home .content-area {
    padding-top: 20px; }
  .widget header {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
  .widget header h2 {
    margin-bottom: 20px; }
  .hero-text h1 {
    margin-bottom: 15px; }
  #links-widget section {
    height: initial; }
  #links-widget article .item {
    display: inline-block;
    text-align: left; }
  #links-widget h3 {
    display: inline;
    padding-right: 20px; }
  .featured-links article {
    display: inline-block; }
  .featured-links article .item {
    display: inline-block;
    margin: 10px 0px; }
  .featured-news article.hero {
    margin-bottom: 0px; }
  .featured-news article.hero .item {
    display: block;
    height: 100%; }
  .featured-news .widget-inner {
    display: block;
    padding-bottom: 20px; }
  .featured-news article {
    margin: 25px 0px; }
  .featured-news article:first-of-type {
    margin: 15px 0px 25px 0px; }
  .featured-news .teaser .more {
    padding-bottom: 0px; }
  .featured-programs.num-cols-4 .widget-inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
  .featured-programs article {
    margin-bottom: 30px; }
  .featured-programs .item {
    text-align: center;
    width: 95%;
    margin: 0 auto;
    display: block !important; }
  .featured-works header {
    padding-bottom: 0px; }
  .featured-works.num-cols-4 .widget-inner {
    -webkit-column-gap: 20px;
            column-gap: 20px;
    padding-bottom: 60px;
    -webkit-column-count: 1;
            column-count: 1; }
  .featured-works .thumbnail {
    width: 100%;
    height: initial;
    overflow: hidden;
    margin: 40px 0 20px 0; } }

@media (max-width: 26.5em) {
  /*  phones 420px below  */
  .featured-programs.num-cols-4 .widget-inner {
    -webkit-column-count: 1;
            column-count: 1;
    -webkit-column-gap: 0px;
            column-gap: 0px;
    display: block; }
  .featured-programs article {
    width: 100%; } }

/*  ###########################################  */
.link_to_cc_org {
  display: inline-block;
  background: #01a5c8;
  color: #fff;
  padding: 0 10px 0 15px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 38px;
  font-weight: 600;
  font-size: .9em;
  margin-right: 10px;
  width: 250px;
  transition: all .5s; }

.link_to_cc_org::before {
  display: inline-block;
  content: " ";
  background: url(../images/earth.png) no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
  top: 5px;
  position: relative;
  margin-right: 10px; }

.link_to_cc_org:hover,
.link_to_cc_org:active {
  background: #ec592e;
  color: #fff; }

button.donate,
.button.donate {
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 0;
  padding: .5em 1em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: #01A635;
  border-color: #01A635;
  color: #fff; }

button.donate [class*="cc-icon-"]::before,
.button.donate [class*="cc-icon-"]::before {
  line-height: 0.8em; }

.site-header .button.donate::before {
  position: absolute;
  content: '';
  background: url(../images/cc-heart.white.png) left center no-repeat;
  background-image: url(../images/cc-heart.white.svg), none;
  background-size: 30px auto;
  width: 30px;
  height: 28px;
  top: 4px;
  left: 8px; }

button.donate::after,
.button.donate::after {
  border-left-color: #01A635; }

button.donate:hover,
.button.donate:hover {
  background: #FB7928;
  border-color: #FB7928;
  color: #fff; }

button.donate:hover::after,
.button.donate:hover::after {
  border-left-color: #FB7928; }

button.donate.arrow,
.button.donate.arrow {
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 0;
  padding: .5em 1em .5em 2.4em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding-top: 0.4em;
  position: relative;
  z-index: 1;
  background: #01A635;
  border-color: #01A635;
  color: #fff; }

button.donate.arrow::after,
.button.donate.arrow::after {
  content: '';
  display: block;
  border-color: transparent;
  border-style: solid none solid solid;
  border-width: 1em 0 1em 0.6em;
  height: 0;
  left: 100%;
  position: absolute;
  top: 0;
  width: 0;
  margin: -1px 1px; }

button.donate.arrow [class*="cc-icon-"]::before,
.button.donate.arrow [class*="cc-icon-"]::before {
  line-height: 0.8em; }

button.donate.arrow::after,
.button.donate.arrow::after {
  border-left-color: #01A635; }

button.donate.arrow:hover,
.button.donate.arrow:hover {
  background: #FB7928;
  border-color: #FB7928;
  color: #fff; }

button.donate.arrow:hover::after,
.button.donate.arrow:hover::after {
  border-left-color: #FB7928; }

/*
.home .featured-videos article:first-of-type {
		position:relative;
		top: -29px;
}
.home .featured-videos article:last-of-type .video { padding-top:30px;
}
*/
.home .featured-videos article:last-of-type .wp-video {
  margin-top: -28px; }

#secondary section {
  border-left: 10px solid #f3f3f3; }

#secondary section.widget_search {
  border-left: none; }

/* ### --- header.css ==================================================================== */
.site-header-wrapper,
.site-menu-wrapper {
  position: relative;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.site-header {
  /*
		background-color: #1eb6d9;
		box-shadow: 0 0 15px 0px rgba(0,0,0,.8);
		*/
  padding: 0;
  width: 100%;
  z-index: 302; }

/* .site-branding-wrapper {} */
.site-header-main {
  background-color: #1eb6d9;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.8); }

.site-header-top-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
  height: 100%;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.site-branding {
  margin: 30px 0px 30px 20px;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: visible;
  transition: all 1s; }

.cc-site-logo-link {
  padding: 0 15px 0 0;
  margin: 0 15px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.8);
  display: inline-block;
  float: left;
  transition: all 1s;
  width: 267px;
  overflow: hidden; }

.site-header .cc-site-logo {
  width: 250px;
  height: 60px;
  position: relative;
  top: 0px;
  left: 0px;
  transition: all 1s;
  max-width: initial; }

.country_id {
  display: inline-block;
  position: relative;
  float: left; }

.country_id .flag {
  display: block;
  width: 38px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  top: 5px;
  transition: all 1s; }

.site-header .name {
  opacity: 1;
  color: #fff;
  font-size: 1.9em;
  transition: all 1s;
  position: relative;
  top: 15px;
  left: 0px; }

.header-right-col {
  padding-top: 20px; }

#header-widget {
  text-align: right;
  padding: 0;
  margin-bottom: 11px;
  right: 40px;
  position: relative;
  transition: all .5s;
  height: 39px;
  width: 450px;
  overflow: hidden;
  padding-right: 10px;
  white-space: nowrap; }

.site-menu-wrapper {
  box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.8);
  background-color: #1eb6d9;
  height: 50px;
  position: relative;
  top: 0px;
  transition: all 1s; }

.site-menu-main {
  margin: 0 auto;
  max-width: 1120px;
  /* max */
  padding: 0 20px; }

.site-header-menu {
  display: block;
  -webkit-flex: initial;
  -ms-flex: initial;
  flex: initial;
  margin: 0; }

.site-header.sticky.detached .site-header-menu {
  display: block;
  -webkit-flex: initial;
  -ms-flex: initial;
  flex: initial;
  margin: 0;
  position: absolute;
  width: 100%;
  top: 100%;
  right: 0; }

.main-navigation a {
  color: #fff; }

.country_id .c_ad {
  background-image: url(icons/flags/AD.png); }

.country_id .c_ae {
  background-image: url(icons/flags/AE.png); }

.country_id .c_ag {
  background-image: url(icons/flags/AG.png); }

.country_id .c_ai {
  background-image: url(icons/flags/AI.png); }

.country_id .c_al {
  background-image: url(icons/flags/AL.png); }

.country_id .c_am {
  background-image: url(icons/flags/AM.png); }

.country_id .c_ao {
  background-image: url(icons/flags/AO.png); }

.country_id .c_aq {
  background-image: url(icons/flags/AQ.png); }

.country_id .c_ar {
  background-image: url(icons/flags/AR.png); }

.country_id .c_as {
  background-image: url(icons/flags/AS.png); }

.country_id .c_at {
  background-image: url(icons/flags/AT.png); }

.country_id .c_au {
  background-image: url(icons/flags/AU.png); }

.country_id .c_aw {
  background-image: url(icons/flags/AW.png); }

.country_id .c_ax {
  background-image: url(icons/flags/AX.png); }

.country_id .c_az {
  background-image: url(icons/flags/AZ.png); }

.country_id .c_ba {
  background-image: url(icons/flags/BA.png); }

.country_id .c_bb {
  background-image: url(icons/flags/BB.png); }

.country_id .c_bd {
  background-image: url(icons/flags/BD.png); }

.country_id .c_be {
  background-image: url(icons/flags/BE.png); }

.country_id .c_bf {
  background-image: url(icons/flags/BF.png); }

.country_id .c_bg {
  background-image: url(icons/flags/BG.png); }

.country_id .c_bh {
  background-image: url(icons/flags/BH.png); }

.country_id .c_bi {
  background-image: url(icons/flags/BI.png); }

.country_id .c_bj {
  background-image: url(icons/flags/BJ.png); }

.country_id .c_bl {
  background-image: url(icons/flags/BL.png); }

.country_id .c_bm {
  background-image: url(icons/flags/BM.png); }

.country_id .c_bn {
  background-image: url(icons/flags/BN.png); }

.country_id .c_bo {
  background-image: url(icons/flags/BO.png); }

.country_id .c_bq {
  background-image: url(icons/flags/BQ.png); }

.country_id .c_br {
  background-image: url(icons/flags/BR.png); }

.country_id .c_bs {
  background-image: url(icons/flags/BS.png); }

.country_id .c_bt {
  background-image: url(icons/flags/BT.png); }

.country_id .c_bv {
  background-image: url(icons/flags/BV.png); }

.country_id .c_bw {
  background-image: url(icons/flags/BW.png); }

.country_id .c_by {
  background-image: url(icons/flags/BY.png); }

.country_id .c_bz {
  background-image: url(icons/flags/BZ.png); }

.country_id .c_ca {
  background-image: url(icons/flags/ca.png); }

.country_id .c_cc {
  background-image: url(icons/flags/CC.png); }

.country_id .c_cd {
  background-image: url(icons/flags/CD.png); }

.country_id .c_cf {
  background-image: url(icons/flags/CF.png); }

.country_id .c_cg {
  background-image: url(icons/flags/CG.png); }

.country_id .c_ch {
  background-image: url(icons/flags/CH.png); }

.country_id .c_ci {
  background-image: url(icons/flags/CI.png); }

.country_id .c_ck {
  background-image: url(icons/flags/CK.png); }

.country_id .c_cl {
  background-image: url(icons/flags/CL.png); }

.country_id .c_cm {
  background-image: url(icons/flags/CM.png); }

.country_id .c_cn {
  background-image: url(icons/flags/CN.png); }

.country_id .c_co {
  background-image: url(icons/flags/CO.png); }

.country_id .c_cr {
  background-image: url(icons/flags/CR.png); }

.country_id .c_cu {
  background-image: url(icons/flags/CU.png); }

.country_id .c_cv {
  background-image: url(icons/flags/CV.png); }

.country_id .c_cw {
  background-image: url(icons/flags/CW.png); }

.country_id .c_cx {
  background-image: url(icons/flags/CX.png); }

.country_id .c_cy {
  background-image: url(icons/flags/CY.png); }

.country_id .c_cz {
  background-image: url(icons/flags/CZ.png); }

.country_id .c_de {
  background-image: url(icons/flags/DE.png); }

.country_id .c_dj {
  background-image: url(icons/flags/DJ.png); }

.country_id .c_dk {
  background-image: url(icons/flags/DK.png); }

.country_id .c_dm {
  background-image: url(icons/flags/DM.png); }

.country_id .c_do {
  background-image: url(icons/flags/DO.png); }

.country_id .c_dz {
  background-image: url(icons/flags/DZ.png); }

.country_id .c_ec {
  background-image: url(icons/flags/EC.png); }

.country_id .c_ee {
  background-image: url(icons/flags/EE.png); }

.country_id .c_eg {
  background-image: url(icons/flags/EG.png); }

.country_id .c_eh {
  background-image: url(icons/flags/EH.png); }

.country_id .c_er {
  background-image: url(icons/flags/ER.png); }

.country_id .c_es {
  background-image: url(icons/flags/ES.png); }

.country_id .c_et {
  background-image: url(icons/flags/ET.png); }

.country_id .c_fi {
  background-image: url(icons/flags/FI.png); }

.country_id .c_fj {
  background-image: url(icons/flags/FJ.png); }

.country_id .c_fk {
  background-image: url(icons/flags/FK.png); }

.country_id .c_fm {
  background-image: url(icons/flags/FM.png); }

.country_id .c_fo {
  background-image: url(icons/flags/FO.png); }

.country_id .c_fr {
  background-image: url(icons/flags/FR.png); }

.country_id .c_ga {
  background-image: url(icons/flags/GA.png); }

.country_id .c_gb {
  background-image: url(icons/flags/GB.png); }

.country_id .c_gd {
  background-image: url(icons/flags/GD.png); }

.country_id .c_ge {
  background-image: url(icons/flags/GE.png); }

.country_id .c_gf {
  background-image: url(icons/flags/GF.png); }

.country_id .c_gg {
  background-image: url(icons/flags/GG.png); }

.country_id .c_gh {
  background-image: url(icons/flags/GH.png); }

.country_id .c_gi {
  background-image: url(icons/flags/GI.png); }

.country_id .c_gl {
  background-image: url(icons/flags/GL.png); }

.country_id .c_gm {
  background-image: url(icons/flags/GM.png); }

.country_id .c_gn {
  background-image: url(icons/flags/GN.png); }

.country_id .c_gp {
  background-image: url(icons/flags/GP.png); }

.country_id .c_gq {
  background-image: url(icons/flags/GQ.png); }

.country_id .c_gr {
  background-image: url(icons/flags/GR.png); }

.country_id .c_gs {
  background-image: url(icons/flags/GS.png); }

.country_id .c_gt {
  background-image: url(icons/flags/GT.png); }

.country_id .c_gu {
  background-image: url(icons/flags/GU.png); }

.country_id .c_gw {
  background-image: url(icons/flags/GW.png); }

.country_id .c_gy {
  background-image: url(icons/flags/GY.png); }

.country_id .c_hk {
  background-image: url(icons/flags/HK.png); }

.country_id .c_hm {
  background-image: url(icons/flags/HM.png); }

.country_id .c_hn {
  background-image: url(icons/flags/HN.png); }

.country_id .c_hr {
  background-image: url(icons/flags/HR.png); }

.country_id .c_ht {
  background-image: url(icons/flags/HT.png); }

.country_id .c_hu {
  background-image: url(icons/flags/HU.png); }

.country_id .c_id {
  background-image: url(icons/flags/ID.png); }

.country_id .c_ie {
  background-image: url(icons/flags/IE.png); }

.country_id .c_il {
  background-image: url(icons/flags/IL.png); }

.country_id .c_im {
  background-image: url(icons/flags/IM.png); }

.country_id .c_in {
  background-image: url(icons/flags/IN.png); }

.country_id .c_io {
  background-image: url(icons/flags/IO.png); }

.country_id .c_iq {
  background-image: url(icons/flags/IQ.png); }

.country_id .c_ir {
  background-image: url(icons/flags/IR.png); }

.country_id .c_is {
  background-image: url(icons/flags/IS.png); }

.country_id .c_it {
  background-image: url(icons/flags/IT.png); }

.country_id .c_je {
  background-image: url(icons/flags/JE.png); }

.country_id .c_jm {
  background-image: url(icons/flags/JM.png); }

.country_id .c_jo {
  background-image: url(icons/flags/JO.png); }

.country_id .c_jp {
  background-image: url(icons/flags/JP.png); }

.country_id .c_ke {
  background-image: url(icons/flags/KE.png); }

.country_id .c_kg {
  background-image: url(icons/flags/KG.png); }

.country_id .c_kh {
  background-image: url(icons/flags/KH.png); }

.country_id .c_ki {
  background-image: url(icons/flags/KI.png); }

.country_id .c_km {
  background-image: url(icons/flags/KM.png); }

.country_id .c_kn {
  background-image: url(icons/flags/KN.png); }

.country_id .c_kp {
  background-image: url(icons/flags/KP.png); }

.country_id .c_kr {
  background-image: url(icons/flags/KR.png); }

.country_id .c_kw {
  background-image: url(icons/flags/KW.png); }

.country_id .c_ky {
  background-image: url(icons/flags/KY.png); }

.country_id .c_kz {
  background-image: url(icons/flags/KZ.png); }

.country_id .c_la {
  background-image: url(icons/flags/LA.png); }

.country_id .c_lb {
  background-image: url(icons/flags/LB.png); }

.country_id .c_lc {
  background-image: url(icons/flags/LC.png); }

.country_id .c_li {
  background-image: url(icons/flags/LI.png); }

.country_id .c_lk {
  background-image: url(icons/flags/LK.png); }

.country_id .c_lr {
  background-image: url(icons/flags/LR.png); }

.country_id .c_ls {
  background-image: url(icons/flags/LS.png); }

.country_id .c_lt {
  background-image: url(icons/flags/LT.png); }

.country_id .c_lu {
  background-image: url(icons/flags/LU.png); }

.country_id .c_lv {
  background-image: url(icons/flags/LV.png); }

.country_id .c_ly {
  background-image: url(icons/flags/LY.png); }

.country_id .c_ma {
  background-image: url(icons/flags/MA.png); }

.country_id .c_mc {
  background-image: url(icons/flags/MC.png); }

.country_id .c_md {
  background-image: url(icons/flags/MD.png); }

.country_id .c_me {
  background-image: url(icons/flags/ME.png); }

.country_id .c_mf {
  background-image: url(icons/flags/MF.png); }

.country_id .c_mg {
  background-image: url(icons/flags/MG.png); }

.country_id .c_mh {
  background-image: url(icons/flags/MH.png); }

.country_id .c_mk {
  background-image: url(icons/flags/MK.png); }

.country_id .c_ml {
  background-image: url(icons/flags/ML.png); }

.country_id .c_mm {
  background-image: url(icons/flags/MM.png); }

.country_id .c_mn {
  background-image: url(icons/flags/MN.png); }

.country_id .c_mo {
  background-image: url(icons/flags/MO.png); }

.country_id .c_mp {
  background-image: url(icons/flags/MP.png); }

.country_id .c_mq {
  background-image: url(icons/flags/MQ.png); }

.country_id .c_mr {
  background-image: url(icons/flags/MR.png); }

.country_id .c_ms {
  background-image: url(icons/flags/MS.png); }

.country_id .c_mt {
  background-image: url(icons/flags/MT.png); }

.country_id .c_mu {
  background-image: url(icons/flags/MU.png); }

.country_id .c_mv {
  background-image: url(icons/flags/MV.png); }

.country_id .c_mw {
  background-image: url(icons/flags/MW.png); }

.country_id .c_mx {
  background-image: url(icons/flags/MX.png); }

.country_id .c_my {
  background-image: url(icons/flags/MY.png); }

.country_id .c_mz {
  background-image: url(icons/flags/MZ.png); }

.country_id .c_na {
  background-image: url(icons/flags/NA.png); }

.country_id .c_nc {
  background-image: url(icons/flags/NC.png); }

.country_id .c_ne {
  background-image: url(icons/flags/NE.png); }

.country_id .c_nf {
  background-image: url(icons/flags/NF.png); }

.country_id .c_ng {
  background-image: url(icons/flags/NG.png); }

.country_id .c_ni {
  background-image: url(icons/flags/NI.png); }

.country_id .c_nl {
  background-image: url(icons/flags/nl.png); }

.country_id .c_no {
  background-image: url(icons/flags/NO.png); }

.country_id .c_np {
  background-image: url(icons/flags/NP.png); }

.country_id .c_nr {
  background-image: url(icons/flags/NR.png); }

.country_id .c_nu {
  background-image: url(icons/flags/NU.png); }

.country_id .c_nz {
  background-image: url(icons/flags/NZ.png); }

.country_id .c_om {
  background-image: url(icons/flags/OM.png); }

.country_id .c_pa {
  background-image: url(icons/flags/PA.png); }

.country_id .c_pe {
  background-image: url(icons/flags/PE.png); }

.country_id .c_pf {
  background-image: url(icons/flags/PF.png); }

.country_id .c_pg {
  background-image: url(icons/flags/PG.png); }

.country_id .c_ph {
  background-image: url(icons/flags/PH.png); }

.country_id .c_pk {
  background-image: url(icons/flags/PK.png); }

.country_id .c_pl {
  background-image: url(icons/flags/PL.png); }

.country_id .c_pm {
  background-image: url(icons/flags/PM.png); }

.country_id .c_pn {
  background-image: url(icons/flags/PN.png); }

.country_id .c_pr {
  background-image: url(icons/flags/PR.png); }

.country_id .c_ps {
  background-image: url(icons/flags/PS.png); }

.country_id .c_pt {
  background-image: url(icons/flags/PT.png); }

.country_id .c_pw {
  background-image: url(icons/flags/PW.png); }

.country_id .c_py {
  background-image: url(icons/flags/PY.png); }

.country_id .c_qa {
  background-image: url(icons/flags/QA.png); }

.country_id .c_re {
  background-image: url(icons/flags/RE.png); }

.country_id .c_ro {
  background-image: url(icons/flags/RO.png); }

.country_id .c_rs {
  background-image: url(icons/flags/RS.png); }

.country_id .c_ru {
  background-image: url(icons/flags/RU.png); }

.country_id .c_rw {
  background-image: url(icons/flags/RW.png); }

.country_id .c_sa {
  background-image: url(icons/flags/SA.png); }

.country_id .c_sb {
  background-image: url(icons/flags/SB.png); }

.country_id .c_sc {
  background-image: url(icons/flags/SC.png); }

.country_id .c_sd {
  background-image: url(icons/flags/SD.png); }

.country_id .c_se {
  background-image: url(icons/flags/SE.png); }

.country_id .c_sg {
  background-image: url(icons/flags/SG.png); }

.country_id .c_sh {
  background-image: url(icons/flags/SH.png); }

.country_id .c_si {
  background-image: url(icons/flags/SI.png); }

.country_id .c_sj {
  background-image: url(icons/flags/SJ.png); }

.country_id .c_sk {
  background-image: url(icons/flags/SK.png); }

.country_id .c_sl {
  background-image: url(icons/flags/SL.png); }

.country_id .c_sm {
  background-image: url(icons/flags/SM.png); }

.country_id .c_sn {
  background-image: url(icons/flags/SN.png); }

.country_id .c_so {
  background-image: url(icons/flags/SO.png); }

.country_id .c_sr {
  background-image: url(icons/flags/SR.png); }

.country_id .c_ss {
  background-image: url(icons/flags/SS.png); }

.country_id .c_st {
  background-image: url(icons/flags/ST.png); }

.country_id .c_sv {
  background-image: url(icons/flags/SV.png); }

.country_id .c_sx {
  background-image: url(icons/flags/SX.png); }

.country_id .c_sy {
  background-image: url(icons/flags/SY.png); }

.country_id .c_sz {
  background-image: url(icons/flags/SZ.png); }

.country_id .c_tc {
  background-image: url(icons/flags/TC.png); }

.country_id .c_td {
  background-image: url(icons/flags/TD.png); }

.country_id .c_tf {
  background-image: url(icons/flags/TF.png); }

.country_id .c_tg {
  background-image: url(icons/flags/TG.png); }

.country_id .c_th {
  background-image: url(icons/flags/TH.png); }

.country_id .c_tj {
  background-image: url(icons/flags/TJ.png); }

.country_id .c_tk {
  background-image: url(icons/flags/TK.png); }

.country_id .c_tl {
  background-image: url(icons/flags/TL.png); }

.country_id .c_tm {
  background-image: url(icons/flags/TM.png); }

.country_id .c_tn {
  background-image: url(icons/flags/TN.png); }

.country_id .c_to {
  background-image: url(icons/flags/TO.png); }

.country_id .c_tr {
  background-image: url(icons/flags/TR.png); }

.country_id .c_tt {
  background-image: url(icons/flags/TT.png); }

.country_id .c_tv {
  background-image: url(icons/flags/TV.png); }

.country_id .c_tw {
  background-image: url(icons/flags/TW.png); }

.country_id .c_tz {
  background-image: url(icons/flags/TZ.png); }

.country_id .c_ua {
  background-image: url(icons/flags/UA.png); }

.country_id .c_ug {
  background-image: url(icons/flags/UG.png); }

.country_id .c_uk {
  background-image: url(icons/flags/GB.png); }

.country_id .c_um {
  background-image: url(icons/flags/UM.png); }

.country_id .c_us {
  background-image: url(icons/flags/US.png); }

.country_id .c_uy {
  background-image: url(icons/flags/UY.png); }

.country_id .c_uz {
  background-image: url(icons/flags/UZ.png); }

.country_id .c_va {
  background-image: url(icons/flags/VA.png); }

.country_id .c_vc {
  background-image: url(icons/flags/VC.png); }

.country_id .c_ve {
  background-image: url(icons/flags/VE.png); }

.country_id .c_vg {
  background-image: url(icons/flags/VG.png); }

.country_id .c_vi {
  background-image: url(icons/flags/VI.png); }

.country_id .c_vn {
  background-image: url(icons/flags/VN.png); }

.country_id .c_vu {
  background-image: url(icons/flags/VU.png); }

.country_id .c_wf {
  background-image: url(icons/flags/WF.png); }

.country_id .c_ws {
  background-image: url(icons/flags/WS.png); }

.country_id .c_ye {
  background-image: url(icons/flags/YE.png); }

.country_id .c_yt {
  background-image: url(icons/flags/YT.png); }

.country_id .c_za {
  background-image: url(icons/flags/ZA.png); }

.country_id .c_zm {
  background-image: url(icons/flags/ZM.png); }

.country_id .c_zw {
  background-image: url(icons/flags/ZW.png); }

/* ########## DETACHED ######### */
.site-header.sticky.detached {
  /* Detached header behaviour */
  position: fixed;
  top: 0;
  bottom: auto;
  z-index: 301;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); }

.site-header.sticky.detached.offscreen {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%); }

.site-header.sticky:not(.attached) {
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease; }

.site-header.spacer {
  position: relative;
  bottom: 0;
  transition: height 0.4s ease;
  box-shadow: none;
  z-index: 300;
  pointer-events: none; }

.site-header.spacer .site-header-main > *,
.site-header.spacer .site-header-main::before,
.site-header.spacer .site-header-main::after {
  visibility: hidden; }

.site-header.spacer {
  opacity: 0; }

/*  detached nav styles */
.site-header.sticky.detached .secondary-navigation {
  width: 0px; }

.site-header.sticky.detached .header-right-col {
  display: none; }

.site-header.sticky.detached .site-menu-wrapper {
  top: 0px;
  position: relative;
  margin: 0 -20px;
  top: -50px;
  background: rgba(30, 182, 217, 0); }

.site-header.sticky.detached .cc-site-logo-link {
  width: 215px; }

.site-header.sticky.detached .cc-site-logo {
  width: 200px;
  height: 50px;
  top: -2px;
  left: 0px; }

.site-header.sticky.detached .site-branding {
  margin: 0px 0px 0px 5px; }

.site-header.sticky.detached .country_id .flag {
  width: 48px;
  height: 24px;
  display: inline-block;
  top: 10px; }

.site-header.sticky.detached .name {
  top: 10px;
  left: 10px; }

.site-header.sticky.detached .menu-toggle,
.site-header.sticky.detached .toggled-on .mobile-navigation {
  display: block; }

.site-header.sticky.detached .site-header-menu li {
  background: #1eb6d9;
  border-bottom: 1px solid #ffffff;
  list-style-image: none;
  margin: 0; }

.site-header.sticky.detached .site-header-menu a {
  font-weight: 700;
  padding-bottom: 15px;
  padding-top: 15px; }

.site-header.sticky.detached .main-navigation {
  display: none; }

.site-header.sticky.detached .site-header-menu.toggled-on {
  margin: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
  width: 100%; }

/* ########## Debug Tools ######### */
/*
.site-branding {border: 1px solid rgba(255, 255, 255, .8); }
.header-right-col  {border: 1px solid rgba(255, 255, 255, .8); }

.site-header::before {
   content: " < 783px";
    display: block;
    color: #fff;
    font-weight: bold;
    position: fixed;
    border: 4px solid #fff;
    padding: 5px 10px;
    right: 20px;
    top: 100px;
    background: darkgray;
}	
*/
/* ############################### */
/*	### < 985px  ###	*/
@media (max-width: 64em) {
  /*	.site-header-main { background-color: purple !important; }
	.site-header::before { content: " < 910px"; } */
  #header-widget {
    height: 0px;
    width: 350px; }
  .secondary-navigation {
    right: 25px;
    top: 11px; }
  .link_to_cc_org {
    width: 200px; }
  #secondary-navigation {
    top: 10px; } }

/*	### < 910px  ###	*/
@media (max-width: 56.874em) {
  /*	.site-header-main { background-color: red !important; }
	.site-header::before { content: " < 910px"; } */
  .secondary-navigation {
    width: 0px; }
  .header-right-col {
    display: none; }
  .site-menu-wrapper {
    top: 0px;
    position: relative;
    margin: 0 -20px;
    top: -50px; }
  .site-header .cc-site-logo-link {
    width: 215px; }
  .site-header .cc-site-logo {
    width: 200px;
    height: 50px;
    top: -2px;
    left: 0px; }
  .site-branding {
    margin: 0px 0px 0px 5px; }
  .country_id .flag {
    width: 40px;
    height: 24px;
    display: inline-block;
    top: 10px; }
  .site-header .name {
    top: 10px;
    left: 10px; } }

/*	### < 783px  ###	*/
@media (max-width: 48.9375em) {
  /*	.site-header-main { background-color: blue !important; }
	.site-header::before { content: " < 783px"; } */ }

@media (max-width: 44.375em) {
  /*	.site-header-main { background-color: green !important; }
	.site-header::before { content: " < 640px"; }  */
  .country_id .flag {
    width: 0px !important; }
  .site-header .name {
    top: 12px !important;
    left: 0px !important; }
  .site-header .cc-site-logo-link {
    width: 44px !important;
    border-right: 1px solid rgba(255, 255, 255, 0);
    margin: 0 5px 0 0; } }

/*	### < 783px  ###	*/
@media (max-width: 26.5em) {
  /*	.site-header-main { background-color: orange !important; }
	.site-header::before { content: " < 783px"; }  */
  .site-header .name {
    font-size: 1.2em;
    top: 13px !important;
    display: none; } }

/*	### > 985px  ###	*/
@media (min-width: 61.5625em) {
  /*	.site-header-main { background-color:; }
	.site-header::before { content: " < 985px"; }  */ }

/* ### --- navigation.css ==================================================================== */
/* NAVIGATION CSS */
/*  #################   MAIN   ################    */
.main-navigation {
  display: block;
  font-size: 2.4rem;
  font-family: "Source Sans Pro", sans-serif; }

.main-navigation a {
  padding-left: 0.7em;
  padding-right: 0.7em; }

.main-navigation .primary-menu {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  font-weight: 700;
  width: 100%;
  position: relative;
  top: 8px; }

.main-navigation .primary-menu > li {
  border-left: 1px solid rgba(255, 255, 255, 0.55) !important;
  float: none;
  text-align: center;
  margin: 0;
  list-style-image: none;
  padding: 0; }

.main-navigation .primary-menu > li:first-child {
  border-left: none !important; }

.main-navigation .current_page_item a,
.main-navigation .current-page-ancestor a {
  background: rgba(0, 0, 0, 0.4);
  color: #fff; }

.main-navigation a {
  color: #fff;
  padding: 0 15px;
  line-height: 3.6rem; }

.main-navigation a:hover, .main-navigation a:focus {
  background: rgba(0, 0, 0, 0.2) !important;
  color: #fff !important; }

/*  #################   SECONDARY  ################    */
.secondary-navigation {
  display: block;
  position: relative;
  right: 55px;
  top: 0px;
  transition: all 0.4s ease;
  opacity: 1; }

.secondary-menu {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.5rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0; }

.secondary-menu li {
  border-top: 0 none;
  list-style-type: none;
  list-style-image: none; }

.secondary-menu .current_page_item a {
  background: #E15803;
  color: #fff;
  font-weight: 400; }

.secondary-menu a {
  color: #fff;
  display: block;
  line-height: 1em;
  padding: 0.8em 1em; }

.secondary-menu a:hover, .secondary-menu a:focus {
  background: #E15803;
  color: #fff !important; }

.secondary-menu a[href*="cc-global-network"]::before {
  content: "";
  font-family: "cc-fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  font-size: 1.3em;
  line-height: 0.5em; }

.secondary-menu a[href*="search"]::before {
  content: "";
  font-family: "cc-fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  font-size: 1.2em;
  line-height: 0.5em; }

/*  #################   SOCIAL  ################    */
.social-navigation {
  margin: 0 !important;
  transition: all 0.4s ease; }

.social-navigation li {
  list-style-image: none; }

.social-navigation li:last-child {
  margin-right: 0; }

.social-navigation a {
  background: #efbe00;
  border: 0 none;
  color: #fff;
  height: 29px;
  width: 29px;
  padding: 0;
  margin: 0 5px;
  overflow: hidden;
  line-height: 2em; }

.social-navigation a::before {
  content: "";
  font-family: "cc-fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  height: auto;
  position: relative;
  top: 0.4em;
  left: 0; }

.social-navigation a[href^="mailto:"]:before {
  content: "\e801";
  left: 0;
  top: 0.35em; }

.social-navigation a[href*="facebook.com"]:before {
  content: "\e802"; }

.social-navigation a[href*="twitter.com"]:before {
  content: "\e803"; }

.social-navigation a:hover, .social-navigation a:focus {
  background: #464646;
  color: #fff; }

.social-navigation a:hover::before, .social-navigation a:focus::before {
  color: #fff !important; }

.site-header .social-navigation {
  display: block; }

/*  #################   MOBILE  ################    */
.mobile-navigation {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 2.4rem;
  text-align: center;
  transition: all 1s;
  height: 0px;
  overflow: hidden; }

.toggled-on .mobile-navigation {
  display: none;
  height: 285px;
  box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.8); }

.mobile-navigation ul {
  margin: 0; }

.mobile-navigation li {
  list-style: none outside none; }

.mobile-navigation .current_page_item a {
  background: #E15803;
  color: #fff; }

.mobile-navigation a {
  color: #fff;
  display: block;
  line-height: 1em;
  padding: 0.2em 1em 0.25em 1em; }

.mobile-navigation a:hover, .mobile-navigation a:focus {
  background: #F8722A !important;
  color: #fff !important; }

.mobile-navigation .mobile-menu {
  box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.5);
  border-bottom: 0 none;
  margin-bottom: 10px; }

.menu-toggle {
  border: 0 none;
  color: #fff;
  font-size: 50px;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0px;
  top: 0px;
  transition: all 0.4s ease; }

.menu-toggle:hover, .menu-toggle:focus {
  color: #ffffff !important; }

.menu-toggle.toggled-on {
  background: transparent; }

.menu-toggle.toggled-on:hover, .menu-toggle.toggled-on:focus {
  background: transparent; }

.menu-toggle.toggled-on i::before {
  content: '\e80f'; }

.menu-toggle span {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

/*
  @media (min-width: 56.875em) and (min-width: 56.875em) {
    .secondary-menu {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: end;
		-webkit-justify-content: flex-end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		margin: 0;
	}
      .secondary-menu > li {
        float: none;
        position: relative;
        text-align: center;
        list-style-image: none; 
		margin: 0;
}
        .secondary-menu > li::after {
          color: rgba(255, 255, 255, 0.55);
          content: '|';
          display: inline-block;
          position: absolute;
          right: -0.1em;
          top: 0.35em; 
	}
        .secondary-menu > li.social-navigation::after { display: none; }
}
*/
.site-header.sticky.detached .social-navigation {
  display: none; }

.breadcrumbs {
  font-size: 1.5rem;
  margin-bottom: 25px; }

/*  #################   RESPONSIVE  ################    */
/*	### < 985px  ###	*/
/*	### < 910px  ###	*/
@media (max-width: 56.874em) {
  #site-navigation {
    display: none; }
  .site-header-menu {
    margin: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 100%;
    width: 100%;
    z-index: 100;
    display: block;
    -webkit-flex: initial;
        -ms-flex: initial;
            flex: initial; }
  .site-header-menu.toggled-on {
    margin: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 100%;
    width: 100%;
    z-index: 100; }
  .site-header-menu.toggled-on::before {
    /* box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.5); */
    content: '';
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    top: -1px;
    width: 100%;
    z-index: 2; }
  .site-header-menu li {
    background: #1eb6d9;
    border-bottom: 1px solid #ffffff;
    list-style-image: none;
    margin: 0; }
  .site-header-menu li:first-child {
    border-top: 0 none; }
  .site-header-menu .mobile-navigation li:first-child {
    border-top: 1px solid #ffffff; }
  .site-header-menu li:last-child {
    border-bottom: 0 none; }
  .site-header-menu a {
    font-weight: 700;
    padding-bottom: 15px;
    padding-top: 15px; }
  .site-header-menu a:hover, .site-header-menu a:focus {
    background: #F8722A; }
  .toggled-on .mobile-navigation {
    display: block; } }

/*	### < 783px  ###	*/
/*	### < 640px  ### ???	*/
/*	### < 783px  ###	*/
/*	### > 985px  ###	*/
.admin-bar.layout-mobile .site-header.sticky.detached.offscreen {
  margin-top: 0; }

@media (max-width: 44.375em) {
  /* 44.375em; // 710px 
	
	body { border: 5px solid red; }*/ }

@media (max-width: 48.9375em) {
  /* 48.9375em; // 783px 
	body { border: 5px solid blue; }*/ }

@media (max-width: 56.874em) {
  /* 56.875em; // 783px  
	body { border: 5px solid darkgrey; }*/
  /* footer fixes */
  .cc-footer .column.cc-footer-main {
    display: none; }
  .cc-footer .column.cc-footer-contact {
    -webkit-flex-grow: 3;
        -ms-flex-positive: 3;
            flex-grow: 3;
    padding-left: 20px; }
  .cc-footer .column.cc-footer-license {
    -webkit-flex-grow: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    padding-right: 20px; } }

@media (min-width: 56.875em) {
  /* 56.875em; // 910px  
	body { border: 5px solid green; }*/
  .site-header {
    box-shadow: none; }
  .hero-video {
    width: 100%; } }

@media (min-width: 61.5625em) {
  /* 61.5625em; // 985px 
	body { border: 5px solid orange; }*/ }

@media (min-width: 75em) {
  /* 75em;      // 1200px 
	body { border: 5px solid lightblue; }*/ }

@media (min-width: 100em) {
  /* 100em;   
	body { border: 5px solid yellow; }*/ }

/* ### --- END _temp.scss ==================================================================== */
/*
//@import "components/_popups.scss";

@import "colours";
@import "page";
@import "page-author";
@import "page_program";
@import "menus";
@import "shortcode-team";
@import "widget-author-news";
@import "widget-donation-bar";
@import "widget-homepage-resources";
@import "widget-homepage-sharing";
@import "widget-homepage-donate";
@import "widget-homepage-whatshappening";
@import "widget-homepage-supporters";
@import "widget-ip-supporters";
@import "widget-news-features";
@import "widget-related-news";
*/

/*# sourceMappingURL=../maps/app.css.map */
