/*

    ___    _      ____
   /   |  (_)____/ __/________ _____ ___  ___
  / /| | / / ___/ /_/ ___/ __ `/ __ `__ \/ _ \
 / ___ |/ / /  / __/ /  / /_/ / / / / / /  __/
/_/  |_/_/_/  /_/ /_/   \__,_/_/ /_/ /_/\___/

Bootstrap kit v1.1 - August 14 2016

*/

/* import any vendor files */

/* ------------------------------------  */

/* START OF UGLY BROWSER-SPECIFIC HACKS */

/* ----------------------------------  */

/* OPERA - Pre-Blink nix the custom arrow, go with a native select button to keep it simple. Targeted via this hack http://browserhacks.com/#hack-a3f166304aafed524566bc6814e1d5c7 */

x:-o-prefocus, .form--select::after {
  display:none;
}

/* IE 10/11+ - This hides native dropdown button arrow so it will have the custom appearance, IE 9 and earlier get a native select - targeting media query hack via http://browserhacks.com/#hack-28f493d247a12ab654f6c3637f6978d5 - looking for better ways to achieve this targeting */

/* The second rule removes the odd blue bg color behind the text in the select button in IE 10/11 and sets the text color to match the focus style's - fix via http://stackoverflow.com/questions/17553300/change-ie-background-color-on-unopened-focused-select-box */

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .form--select select::-ms-expand {
    display: none;
  }
  .form--select select:focus::-ms-value {
    background: transparent;
    color: #222;
  }
}

/* Firefox focus has odd artifacts around the text, this kills that. See https://developer.mozilla.org/en-US/docs/Web/CSS/:-moz-focusring */

.form--select select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

/* ------------------------------------  */

/*  END OF UGLY BROWSER-SPECIFIC HACKS  */

/* ------------------------------------  */

@font-face {
    font-family: WorkSans;
    src:
        url(fonts/worksans-black.ttf) format('ttf'),
        url(fonts/worksans-black.woff2) format('woff2'),
        url(fonts/worksans-black.woff) format('woff');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: WorkSans;
    src:
        url(fonts/worksans-extrabold.ttf) format('ttf'),
        url(fonts/worksans-extrabold.woff2) format('woff2'),
        url(fonts/worksans-extrabold.woff) format('woff');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: WorkSans;
    src:
        url(fonts/worksans-bold.ttf) format('ttf'),
        url(fonts/worksans-bold.woff2) format('woff2'),
        url(fonts/worksans-bold.woff) format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: WorkSans;
    src:
        url(fonts/worksans-semibold.ttf) format('ttf'),
        url(fonts/worksans-semibold.woff2) format('woff2'),
        url(fonts/worksans-semibold.woff) format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: WorkSans;
    src:
        url(fonts/worksans-medium.ttf) format('ttf'),
        url(fonts/worksans-medium.woff2) format('woff2'),
        url(fonts/worksans-medium.woff) format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: WorkSans;
    src:
        url(fonts/worksans-regular.ttf) format('ttf'),
        url(fonts/worksans-regular.woff2) format('woff2'),
        url(fonts/worksans-regular.woff) format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: WorkSans;
    src:
        url(fonts/worksans-thin.ttf) format('ttf'),
        url(fonts/worksans-thin.woff2) format('woff2'),
        url(fonts/worksans-thin.woff) format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: WorkSans;
    src:
        url(fonts/worksans-light.ttf) format('ttf'),
        url(fonts/worksans-light.woff2) format('woff2'),
        url(fonts/worksans-light.woff) format('woff');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: WorkSans;
    src:
        url(fonts/worksans-extralight.ttf) format('ttf'),
        url(fonts/worksans-extralight.woff2) format('woff2'),
        url(fonts/worksans-extralight.woff) format('woff');
    font-weight: 100;
    font-style: normal;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

.hamburger {
  display: block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }

.hamburger:hover {
    opacity: 0.7; }

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: 5px; }

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 32px;
    width: 2rem;
    height: 2px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.15s;
            transition-duration: 0.15s;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease; }

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }

.hamburger-inner::before {
    top: -10px; }

.hamburger-inner::after {
    bottom: -10px; }

/*
   * Spin
   */

.hamburger--spin .hamburger-inner {
  -webkit-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin .hamburger-inner::before {
    -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }

.hamburger--spin .hamburger-inner::after {
    -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }

.hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/* project-wide styles - styles single elements */

html {
    -webkit-text-size-adjust: 100%;
       -moz-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
            text-size-adjust: 100%;
}

body {
    margin: 0;
    font: 16px/1 sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
p,
blockquote,
figure {
    margin-top: 0;
    padding: 0;
}

ol,
ul {
    margin-top: 0;
}

main,
li {
    display: block;
}

strong {
    font-weight: 700;
}

a,
button {
    color: inherit;
}

a {
    text-decoration: none;
}

button {
    overflow: visible;
    border: 0;
    font: inherit;
    -webkit-font-smoothing: inherit;
    letter-spacing: inherit;
    background: none;
    cursor: pointer;
}

[type='radio'],
[type='checkbox'] {
    margin: 0;
}

::-moz-focus-inner {
    padding: 0;
    border: 0;
}

:focus {
    outline: 0;
}

img {
    max-width: 100%;
    height: auto;
    border: 0;
}

table {
    table-layout: fixed;
    border-collapse: collapse;
}

:root {
    /* black and white */

    /* gray */

    /* colors */

    /* variants: gray */

    /* primary */

    /* gradients: gray */
}

:root {
    /* base configuration */

    /* modular scale configuration */

    /* font families */

    /* font weights */

    /* font sizes - normal scale */
}

/* global type baselines */

body,
html {
    line-height: 1.6;
    font-family: 'WorkSans',
        -apple-system,
        blinkmacsystemfont,
        'Segoe UI',
        'Roboto',
        'Oxygen',
        'Ubuntu',
        'Cantarell',
        'Fira Sans',
        'Droid Sans',
        'Helvetica Neue',
        arial,
        sans-serif;
    color: hsl(0, 0%, 13%);
    -webkit-font-feature-settings: 'kern', "kern";
            font-feature-settings: 'kern', "kern";
    -webkit-font-kerning: normal;
            font-kerning: normal;
}

em {
    font-style: italic;
}

strong {
    font-weight: 600;
}

/* headers */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 16px;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-family: 'WorkSans',
        -apple-system,
        blinkmacsystemfont,
        'Segoe UI',
        'Roboto',
        'Oxygen',
        'Ubuntu',
        'Cantarell',
        'Fira Sans',
        'Droid Sans',
        'Helvetica Neue',
        arial,
        sans-serif;
    font-weight: 600;
}

h1 {
    font-size: calc(3rem - 16px + 1vw);
    font-weight: 400;
}

h2 {
    font-size: calc(2rem - 16px + 1vw);
}

h4 {
    text-transform: uppercase;
}

p {
    margin-bottom: 16px;
    margin-bottom: 1rem;
}

/* quotes */

blockquote {
    margin: 16px 0;
    margin: 1rem 0;
    padding-left: 16px;
    padding-left: 1rem;
    color: hsl(0, 0%, 56%);
    border-left: 2px solid hsl(0, 0%, 90%);
}

/* lists */

ul,
ol {
    margin-bottom: 16px;
    margin-bottom: 1rem
}

ul li, ol li {
  display: list-item;
}

ul ul,
    ul ol,
    ol ul,
    ol ol {
  margin-bottom: 0;
}

/* code */

pre,
code {
    font-family: menlo,
        monaco,
        consolas,
        'Liberation Mono',
        'Courier New',
        monospace;
    font-size: 90%;
    white-space: pre-wrap;
}

/* links */

a {
    color: hsl(169, 63%, 55%)
}

a:focus,
    a:hover {
  text-decoration: underline;
}

.t--list-unstyled { list-style: none; }

.t--list-inline li { display: inline-block; }

/* AGS - Airframe grid system
 * v0.2 */

:root {
    /* Grid configuration */

    /* Border radius */

    /* Z indexes */

    /* Spacing definitions */

    /* Media queries */
}

/* Grid utility classes */

/* Groupings */

.l--container { width: 100%; margin: 0 auto; max-width: 1120px; max-width: 70rem; }

.l--row { display: -webkit-box; display: -ms-flexbox; display: flex; padding: 0 40.96px; padding: 0 2.56rem; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row; flex-flow: row; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }

@media (max-width: 1024px) {

  .l--row {
    padding: 0 1.56rem;
  }
}

@media (max-width: 768px) {

  .l--row {
    padding: 0 0.56rem;
  }
}

/* Columns */

.l--col-auto { margin: 0 1%; -webkit-box-flex: 1; -ms-flex: 1; flex: 1; }

.l--col-1 { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 6.33333%; flex: 0 0 6.33333%; }

.l--col-2 { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 14.66667%; flex: 0 0 14.66667%; }

.l--col-3 { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; }

.l--col-4 { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 31.33333%; flex: 0 0 31.33333%; }

.l--col-5 { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 39.66667%; flex: 0 0 39.66667%; }

.l--col-6 { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 48%; flex: 0 0 48%; }

.l--col-7 { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 56.33333%; flex: 0 0 56.33333%; }

.l--col-8 { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 64.66667%; flex: 0 0 64.66667%; }

.l--col-9 { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 73%; flex: 0 0 73%; }

.l--col-10 { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 81.33333%; flex: 0 0 81.33333%; }

.l--col-11 { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 89.66667%; flex: 0 0 89.66667%; }

.l--col-12 { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 98%; flex: 0 0 98%; }

@media (min-width: 1025px) {
    .l--col-auto-at-l { margin: 0 1%; -webkit-box-flex: 1; -ms-flex: 1; flex: 1; }
    .l--col-1-at-l { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 6.33333%; flex: 0 0 6.33333%; }
    .l--col-2-at-l { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 14.66667%; flex: 0 0 14.66667%; }
    .l--col-3-at-l { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; }
    .l--col-4-at-l { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 31.33333%; flex: 0 0 31.33333%; }
    .l--col-5-at-l { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 39.66667%; flex: 0 0 39.66667%; }
    .l--col-6-at-l { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 48%; flex: 0 0 48%; }
    .l--col-7-at-l { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 56.33333%; flex: 0 0 56.33333%; }
    .l--col-8-at-l { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 64.66667%; flex: 0 0 64.66667%; }
    .l--col-9-at-l { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 73%; flex: 0 0 73%; }
    .l--col-10-at-l { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 81.33333%; flex: 0 0 81.33333%; }
    .l--col-11-at-l { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 89.66667%; flex: 0 0 89.66667%; }
    .l--col-12-at-l { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 98%; flex: 0 0 98%; }
    .l--hidden-at-l { display: none; }
}

@media (max-width: 1024px) {
    .l--col-auto-at-m { margin: 0 1%; -webkit-box-flex: 1; -ms-flex: 1; flex: 1; }
    .l--col-1-at-m { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 6.33333%; flex: 0 0 6.33333%; }
    .l--col-2-at-m { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 14.66667%; flex: 0 0 14.66667%; }
    .l--col-3-at-m { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; }
    .l--col-4-at-m { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 31.33333%; flex: 0 0 31.33333%; }
    .l--col-5-at-m { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 39.66667%; flex: 0 0 39.66667%; }
    .l--col-6-at-m { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 48%; flex: 0 0 48%; }
    .l--col-7-at-m { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 56.33333%; flex: 0 0 56.33333%; }
    .l--col-8-at-m { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 64.66667%; flex: 0 0 64.66667%; }
    .l--col-9-at-m { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 73%; flex: 0 0 73%; }
    .l--col-10-at-m { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 81.33333%; flex: 0 0 81.33333%; }
    .l--col-11-at-m { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 89.66667%; flex: 0 0 89.66667%; }
    .l--col-12-at-m { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 98%; flex: 0 0 98%; }
    .l--hidden-at-m { display: none; }
}

/* Media Query columns */

@media (max-width: 768px) {
    .l--col-auto-at-s { margin: 0 1%; -webkit-box-flex: 1; -ms-flex: 1; flex: 1; }
    .l--col-1-at-s { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 6.33333%; flex: 0 0 6.33333%; }
    .l--col-2-at-s { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 14.66667%; flex: 0 0 14.66667%; }
    .l--col-3-at-s { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; }
    .l--col-4-at-s { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 31.33333%; flex: 0 0 31.33333%; }
    .l--col-5-at-s { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 39.66667%; flex: 0 0 39.66667%; }
    .l--col-6-at-s { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 48%; flex: 0 0 48%; }
    .l--col-7-at-s { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 56.33333%; flex: 0 0 56.33333%; }
    .l--col-8-at-s { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 64.66667%; flex: 0 0 64.66667%; }
    .l--col-9-at-s { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 73%; flex: 0 0 73%; }
    .l--col-10-at-s { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 81.33333%; flex: 0 0 81.33333%; }
    .l--col-11-at-s { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 89.66667%; flex: 0 0 89.66667%; }
    .l--col-12-at-s { margin: 0 1%; -webkit-box-flex: 0; -ms-flex: 0 0 98%; flex: 0 0 98%; }
    .l--hidden-at-s { display: none; }
}

/* Accessibility Classes */

.l--acc-hidden {
    position: absolute;
    top: auto;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Change display of columns to flex */

.l--col-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/* component styles - styles groups of elements */

/* Global styles
   ------------- */

/* Normalize font size, set block defaults */

input,
textarea,
label,
select {
    display: block;
    margin: 0.5em 0 1em;
    padding: 0.25em 0.5em;
    font-family: 'WorkSans',
        -apple-system,
        blinkmacsystemfont,
        'Segoe UI',
        'Roboto',
        'Oxygen',
        'Ubuntu',
        'Cantarell',
        'Fira Sans',
        'Droid Sans',
        'Helvetica Neue',
        arial,
        sans-serif;
    font-size: inherit;
    line-height: inherit;
}

legend,
fieldset {
    margin: 0 0 1em;
    padding: 0;
}

fieldset {
    border: 0;
}

legend {
    font-weight: 600;
}

/* Individual element styles
  ------------------------- */

label {
    margin-bottom: 0.5em;
}

[type='text'],
[type='tel'],
[type='email'],
[type='password'],
[type='search'],
[type='number'],
[type='date'],
textarea {
    width: 100%;
    padding: 0.55em 0.5em;
    line-height: 16px;
    line-height: 1rem;
    background: hsl(0, 0%, 100%);
    border: 1px solid hsl(0, 0%, 90%);
    border-radius: 4px
}

[type='text']:-moz-read-only, [type='tel']:-moz-read-only, [type='email']:-moz-read-only, [type='password']:-moz-read-only, [type='search']:-moz-read-only, [type='number']:-moz-read-only, [type='date']:-moz-read-only, textarea:-moz-read-only {
  color: hsl(0, 0%, 90%);
  border-color: hsl(0, 0%, 90%);
}

[type='text']:read-only, [type='tel']:read-only, [type='email']:read-only, [type='password']:read-only, [type='search']:read-only, [type='number']:read-only, [type='date']:read-only, textarea:read-only {
  color: hsl(0, 0%, 90%);
  border-color: hsl(0, 0%, 90%);
}

[type='text']:-moz-read-only:hover, [type='tel']:-moz-read-only:hover, [type='email']:-moz-read-only:hover, [type='password']:-moz-read-only:hover, [type='search']:-moz-read-only:hover, [type='number']:-moz-read-only:hover, [type='date']:-moz-read-only:hover, textarea:-moz-read-only:hover {
  border-color: hsl(0, 0%, 90%);
}

[type='text']:read-only:hover, [type='tel']:read-only:hover, [type='email']:read-only:hover, [type='password']:read-only:hover, [type='search']:read-only:hover, [type='number']:read-only:hover, [type='date']:read-only:hover, textarea:read-only:hover {
  border-color: hsl(0, 0%, 90%);
}

[type='text']:-moz-read-only:focus, [type='tel']:-moz-read-only:focus, [type='email']:-moz-read-only:focus, [type='password']:-moz-read-only:focus, [type='search']:-moz-read-only:focus, [type='number']:-moz-read-only:focus, [type='date']:-moz-read-only:focus, textarea:-moz-read-only:focus {
  border-color: hsl(0, 0%, 90%);
}

[type='text']:read-only:focus, [type='tel']:read-only:focus, [type='email']:read-only:focus, [type='password']:read-only:focus, [type='search']:read-only:focus, [type='number']:read-only:focus, [type='date']:read-only:focus, textarea:read-only:focus {
  border-color: hsl(0, 0%, 90%);
}

[type='text']:disabled, [type='tel']:disabled, [type='email']:disabled, [type='password']:disabled, [type='search']:disabled, [type='number']:disabled, [type='date']:disabled, textarea:disabled {
  background: hsl(0, 0%, 90%);
  color: hsl(0, 0%, 90%);
  border: hsl(0, 0%, 90%);
}

[type='text']:disabled:hover, [type='tel']:disabled:hover, [type='email']:disabled:hover, [type='password']:disabled:hover, [type='search']:disabled:hover, [type='number']:disabled:hover, [type='date']:disabled:hover, textarea:disabled:hover {
  cursor: not-allowed;
}

[type='text']:hover, [type='tel']:hover, [type='email']:hover, [type='password']:hover, [type='search']:hover, [type='number']:hover, [type='date']:hover, textarea:hover {
  border-color: hsl(0, 0%, 90%);
}

[type='text']:focus, [type='tel']:focus, [type='email']:focus, [type='password']:focus, [type='search']:focus, [type='number']:focus, [type='date']:focus, textarea:focus {
  outline: none;
  border-color: hsl(0, 0%, 90%);
}

[type='search'] {
    position: relative;
    border-radius: 1em
}

[type='search']::before {
  content: '';
  display: block;
  top: 50%;
  left: 0.25em;
  width: 0.25em;
  height: 0.25em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

[type='checkbox'],
[type='radio'] {
    display: inline-block;
    margin-right: 0.25em
}

[type='checkbox']:hover, [type='radio']:hover {
  border-color: hsl(0, 0%, 90%);
}

[type='checkbox']:focus, [type='radio']:focus {
  outline: none;
  border-color: $aqua;
}

[type='checkbox']:focus + span::after, [type='radio']:focus + span::after {
  content: '\2190';
  display: inline-block;
  margin-left: 0.5em;
  color: hsl(169, 63%, 55%);
}

.form--radio label, .form--checkbox label {
  font-weight: 400;
  line-height: 1;
}

.form--radio label:hover, .form--checkbox label:hover {
  cursor: pointer;
}

.form--radio.is-disabled, .form--checkbox.is-disabled {
  color: hsl(0, 0%, 90%);
}

.form--radio.is-disabled:hover, .form--checkbox.is-disabled:hover {
  cursor: not-allowed;
}

.form--radio + .form--radio,
.form--checkbox + .form--checkbox {
    /* group similar elements */
    margin-top: -0.5em;
}

/* Cross-browser custom select boxes thanks to https://github.com/filamentgroup/select-css. */

.form--select {
    display: block;
    position: relative
}

.form--select select {
  width: 100%;
  padding: 0.45em 0.5em;
  line-height: 1;
  background: none;
  border: 1px solid hsl(0, 0%, 90%);
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form--select select:disabled {
  background: hsl(0, 0%, 90%);
  color: hsl(0, 0%, 90%);
  border: hsl(0, 0%, 90%);
}

.form--select select:disabled:hover {
  cursor: not-allowed;
}

.form--select select:hover {
  border-color: hsl(0, 0%, 90%);
}

.form--select select:focus {
  outline: none;
  border-color: hsl(169, 63%, 55%);
}

.form--select option {
  font-weight: 400;
}

.form--select::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0;
  height: 0;
  margin-top: -0.25em;
  z-index: 10;
  border-width: 0.5em 0.33em 0;
  border-color: hsl(0, 0%, 56%) transparent transparent;
  border-style: solid;
  pointer-events: none;
}

.button {
    display: inline-block;
    padding: 12px 40px;
    padding: 0.75rem 2.5rem;
    line-height: 16px;
    line-height: 1rem;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    color: hsl(0, 0%, 13%);
    background: hsl(0, 0%, 90%);
    border-radius: 4px;
    font-weight: 600;
    -webkit-transition: background-color 150ms ease, color 150ms ease;
    transition: background-color 150ms ease, color 150ms ease
}

.button:hover,
    .button:focus {
  cursor: pointer;
  background: rgb(237, 237, 237);
  text-decoration: none;
}

.button + .button {
  margin-left: 1em;
}

.button--primary {
    color: hsl(0, 0%, 13%);
    background: hsl(169, 63%, 55%)
}

.button--primary:hover {
  background: rgb(42, 187, 161);
}

.button--secondary {
    color: hsl(0, 0%, 13%);
    background: rgb(42, 187, 161)
}

.button--secondary:hover {
  background: rgb(33, 145, 125);
}

.button--black {
    color: hsl(0, 0%, 100%);
    background: hsl(0, 0%, 13%)
}

.button--black:hover {
  background: rgb(41, 41, 41);
}

.button--outline {
    color: hsl(0, 0%, 13%);
    background: transparent;
    border: 2px solid hsl(0, 0%, 13%)
}

.button--outline:hover {
  background: hsl(0, 0%, 13%);
  color: hsl(169, 63%, 55%);
}

table {
    width: 100%;
    -webkit-font-feature-settings: 'tnum';
            font-feature-settings: 'tnum';
}

thead {
    font-weight: 600;
    text-align: left;
}

td,
th {
    padding: 4px;
    padding: 0.25rem;
}

td {
    border-top: 1px solid hsl(0, 0%, 90%);
}

th {
    border-bottom: 2px solid hsl(0, 0%, 90%);
}

header {
    position: relative;
    padding: 40.96px 0;
    padding: 2.56rem 0;
    z-index: 9999;
    background-color: hsl(0, 0%, 100%);
}

@media (max-width: 1024px) {

  header {
    height: 75px;
    padding: 1rem 0;
    background-color: hsl(169, 63%, 55%);
  }
}

@media (max-width: 1024px) {

  header .l--row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 1025px) {

  header .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 1024px) {

  header .isMenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

header a {
  display: block;
}

header svg:not(.icon--menu) {
  width: 112px;
  width: 7rem;
  height: 112px;
  height: 7rem;
}

@media (max-width: 1024px) {

  header svg:not(.icon--menu) {
    width: 2rem;
    height: 2rem;
  }
}

header .logo--primary {
  display: block;
}

@media (max-width: 1024px) {

  header .logo--primary {
    display: none;
  }
}

header .logo--secondary {
  display: none;
}

@media (max-width: 1024px) {

  header .logo--secondary {
    display: block;
  }
}

footer {
    position: relative;
    padding: 36px 0 28px;
    padding: 2.25rem 0 1.75rem;
    z-index: 300;
    background-color: hsl(0, 0%, 13%);
}

@media (max-width: 768px) {

  footer {
    padding: 1.25rem 0 3rem;
  }
}

footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

footer ul:first-of-type {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

footer li {
  display: inline-block;
  margin-right: 32px;
  margin-right: 2rem;
  color: hsl(0, 0%, 56%);
}

@media (max-width: 768px) {

  footer li {
    display: block;
  }
}

footer a {
  color: hsl(0, 0%, 56%);
}

footer a:hover {
  text-decoration: none;
  color: hsl(0, 0%, 90%);
}

.subscribe--link {
    display: block;
    text-align: right;
    color: hsl(0, 0%, 100%);
}

@media (max-width: 768px) {

  .subscribe--link {
    text-align: left;
  }
}

@media (max-width: 768px) {

  .secondary {
    display: none;
  }
}

.hiddenSecondary {
    display: none
}

.hiddenSecondary li {
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {

  .hiddenSecondary {
    display: block;
    margin: 1rem 0 0;
    font-size: 0.75rem;
  }
}

.sidebar {
    position: relative;
    padding: 40.96px;
    padding: 2.56rem;
    z-index: 9999;
}

@media (max-width: 1024px) {

  .sidebar {
    padding: 1rem;
    overflow: scroll;
  }
}

.sidebar .logo--secondary {
  margin-bottom: 76px;
  margin-bottom: 4.75rem;
}

@media (max-width: 1024px) {

  .sidebar .logo--secondary {
    display: none;
  }
}

.navigation--main {
    margin: 32px 0 0;
    padding: 0;
    list-style: none
}

.navigation--main li {
  margin: 0 0 16px;
  margin: 0 0 1rem;
  padding: 0;
}

.navigation--main a {
  display: block;
  position: relative;
  color: hsl(0, 0%, 13%);
  font-weight: 600;
  text-transform: uppercase;
}

.navigation--main a::after {
  content: '';
  position: absolute;
  right: -40.96px;
  right: -2.56rem;
  width: 3px;
  height: 40px;
  margin-top: -9px;
  background-color: transparent;
  -webkit-transition: background-color 150ms ease;
  transition: background-color 150ms ease;
}

.navigation--main a:hover,
    .navigation--main a:focus {
  text-decoration: none;
}

.navigation--main a:hover::after, .navigation--main a:focus::after {
  background-color: hsl(0, 0%, 13%);
}

.navigation--main li.current-menu-item a {
  color: hsl(0, 0%, 13%);
}

.navigation--main li.current-menu-item a::after {
  background-color: hsl(0, 0%, 13%);
}

@media (max-width: 1024px) {

  li a::after {
    display: none;
  }
}

.navigation--secondary {
    position: absolute;
    right: 40.96px;
    right: 2.56rem;
    bottom: 40.96px;
    bottom: 2.56rem;
    left: 40.96px;
    left: 2.56rem;
}

@media (max-width: 1024px) {

  .navigation--secondary {
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 2rem 0 1rem;
  }
}

.navigation--secondary ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navigation--secondary li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.navigation--secondary a:not(.button) {
  display: block;
  text-align: center;
  color: hsl(0, 0%, 13%);
}

.navigation--secondary {/*

    stylelint-disable

*/
}

.navigation--secondary a:not(.button):hover svg,
    .navigation--secondary a:not(.button):hover .bg {
  fill: hsl(0, 0%, 13%);
}

.navigation--secondary {/*

    stylelint-enable

*/
}

.navigation--secondary .button {
  width: 100%;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.navigation--secondary svg {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  fill: hsl(0, 0%, 13%);
}

.homeIntro {
    position: relative;
}

@media (max-width: 1024px) {

  .homeIntro {
    z-index: 10;
  }
}

.features {
    position: relative;
    margin: 48px 0 64px;
    margin: 3rem 0 4rem;
}

@media (max-width: 768px) {

  .features {
    margin: -4rem 0 0;
    z-index: 0;
  }
}

.features-video {
    position: relative;
    margin: 48px 0 64px;
    margin: 3rem 0 4rem;
}

@media (max-width: 768px) {

  .features-video {
    margin: 2rem 0 0;
    z-index: 0;
  }
}

.feature--image {
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 117%;
    max-height: 400px;
    background-size: 200%;
    background-position: 0 0;
    background-repeat: no-repeat;
    -webkit-transition: -webkit-transform 175ms ease;
    transition: -webkit-transform 175ms ease;
    transition: transform 175ms ease;
    transition: transform 175ms ease, -webkit-transform 175ms ease;
}

@media (max-width: 768px) {

  .feature--image {
    margin: 0 auto;
    padding-bottom: 76%;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
    background-position: 100% 0;
    max-width: 65%;
  }
}

@media (max-width: 468px) {

  .feature--image {
    margin: 0 auto;
    padding-bottom: 117%;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
    background-position: 100% 0;
    max-width: 100%;
  }
}

.feature--more {
    display: block;
    margin-top: 16px;
    margin-top: 1rem;
}

.feature:hover .feature--image {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  background-position: 100% 0;
}

.feature img,
    .feature svg {
  max-width: 160px;
  max-width: 10rem;
  max-height: 160px;
  max-height: 10rem;
}

.feature p {
  margin: 16px auto;
  margin: 1rem auto;
  max-width: 320px;
  max-width: 20rem;
  line-height: 18.08px;
  line-height: 1.13rem;
  min-height: 100px;
}

@media (max-width: 1024px) {

  .feature p {
    min-height: auto;
  }
}

.feature a {
  display: block;
  margin: 16px 0;
  margin: 1rem 0;
  text-transform: uppercase;
  font-weight: 600;
}

.feature a:hover,
        .feature a:focus {
  text-decoration: none;
  color: hsl(0, 0%, 13%);
}

.latest--chip {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

@media (max-width: 1024px) {

  .latest--chip {
    margin-top: 1rem;
  }
}

.latest--chip-image {
    display: block;
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: hsl(169, 63%, 55%)
}

.latest--chip-image a {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}

.latest--chip-image a:hover {
  text-decoration: none;
}

.latest--chip-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 16px;
    padding: 1rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border: 2px solid hsl(0, 0%, 90%);
    border-top: 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px
}

.latest--chip-content h3 {
  margin: 0 0 8px;
  margin: 0 0 0.5rem;
}

.latest--chip-content p {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.latest--chip-content .button {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.events {
    margin: 48px 0 0;
    margin: 3rem 0 0;
}

@media (max-width: 1024px) {

  .events {
    margin: 2rem 0 0;
  }

  .events h3 {
    margin-bottom: 0;
  }
}

.event--featured {
    display: block;
    padding: 16px;
    padding: 1rem;
    border: 2px solid hsl(0, 0%, 90%);
    border-radius: 4px
}

.event--featured + .event--featured {
  margin-top: 16px;
  margin-top: 1rem;
}

.event--featured .date {
  float: right;
  color: hsl(0, 0%, 56%);
}

.event--featured h3 {
  margin: 0 0 4px;
  margin: 0 0 0.25rem;
}

.event--chip {
    display: block;
    padding: 16px;
    padding: 1rem;
    border: 2px solid hsl(0, 0%, 90%);
    border-radius: 4px;
}

@media (max-width: 1024px) {

  .event--chip {
    margin-top: 1rem;
  }
}

.event--chip + .event--chip {
  margin-top: 16px;
  margin-top: 1rem;
}

.event--chip .date {
  color: hsl(0, 0%, 56%);
}

.event--chip p,
    .event--chip h4 {
  margin: 0 0 4px;
  margin: 0 0 0.25rem;
}

.event--chip p:last-child {
  margin-bottom: 0;
}

a.event--chip {
    color: hsl(0, 0%, 13%);
    -webkit-transition: -webkit-transform 200ms ease;
    transition: -webkit-transform 200ms ease;
    transition: transform 200ms ease;
    transition: transform 200ms ease, -webkit-transform 200ms ease
}

a.event--chip:hover {
  text-decoration: none;
  -webkit-transform: translate(0, -2px);
          transform: translate(0, -2px);
}

.team {
    margin: 48px 0 0;
    margin: 3rem 0 0;
}

.team--advisors {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap
}

.team--advisors .team--member {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.team--member {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin: 16px 0;
    margin: 1rem 0
}

.team--member.is-inline {
  display: block;
}

.team--member-image {
    margin: 0 16px 0 0;
    margin: 0 1rem 0 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 17%;
            flex: 0 0 17%
}

.team--member-image img {
  border-radius: 4px;
  filter:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0 0 0 1 0" /></filter></svg>#filter');
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.team--member-content {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto
}

.team--member-content h4 {
  margin: 0;
}

.team--member-content .title {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.team--member-bio {
    position: relative;
}

.team--member-bio-content {
    display: none
}

.team--member-bio-content.isOpen {
  display: block;
}

.team--member-bio-content-trimmed.isHidden {
  display: none;
}

.team--member-social {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    text-align: right
}

.team--member-social svg {
  width: 20px;
  height: 20px;
  fill: hsl(0, 0%, 56%);
  -webkit-transition: -webkit-transform 200ms ease;
  transition: -webkit-transform 200ms ease;
  transition: transform 200ms ease;
  transition: transform 200ms ease, -webkit-transform 200ms ease;
}

.team--member-social a {
  display: inline-block;
  margin: 0 8px;
  margin: 0 0.5rem;
}

.team--member-social a:hover {
  text-decoration: none;
}

.team--member-social a:hover svg {
  -webkit-transform: translate(0, -2px);
          transform: translate(0, -2px);
}

.team--member-social.no-float {
  position: relative;
  text-align: left;
}

.viewAllSigs {
    position: -webkit-sticky;
    position: sticky;
    bottom: 5px;
    width: 100%;
}

.signatories--form.isHidden {
  display: none;
}

.signatories--form-success {
    display: none
}

.signatories--form-success.isActive {
  display: block;
}

.signatories--small-list {
    margin: 48px 0 32px;
    margin: 3rem 0 2rem
}

.signatories--small-list p {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.signatories--list {
    margin: 32px 0;
    margin: 2rem 0;
}

.signatories {
    -webkit-column-count: 3;
            column-count: 3;
    -webkit-column-gap: 0;
            column-gap: 0;
}

@media (max-width: 768px) {

  .signatories {
    -webkit-column-count: 1;
            column-count: 1;
  }
}

.signatories--chip {
    margin: 16px 0;
    margin: 1rem 0;
    -webkit-column-break-inside: avoid;
            break-inside: avoid
}

.signatories--chip:first-of-type {
  margin-top: 0;
}

.signatories--chip p {
  margin: 0;
  padding-right: 32px;
  padding-right: 2rem;
}

.signatories--sign-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10;
    background-color: hsl(0, 0%, 13%)
}

.signatories--sign-mobile a {
  display: block;
  padding: 8px 0;
  padding: 0.5rem 0;
  text-align: center;
  color: hsl(0, 0%, 100%);
  text-transform: uppercase;
  font-weight: 600;
}

.signatories--sign-mobile a:focus,
        .signatories--sign-mobile a:hover {
  text-decoration: none;
}

@media (max-width: 768px) {

  .signatories--sign-mobile {
    display: block;
  }
}

.signatories--sign {
    position: -webkit-sticky;
    position: sticky;
    right: 0;
    bottom: -1px;
    left: 0; /* clear the sidebar */
    padding: 32px 0;
    padding: 2rem 0;
    z-index: 9999;
    background-color: hsl(0, 0%, 13%)
}

.signatories--sign.isHidden {
  display: none;
}

.signatories--sign h3 {
  margin: 0 0 8px;
  margin: 0 0 0.5rem;
  color: hsl(0, 0%, 100%);
}

.signatories--sign label {
  margin: 0;
  padding: 0;
  color: hsl(0, 0%, 56%);
}

.signatories--sign button {
  display: block;
  width: 100%;
}

.signatories--sign input {
  margin: 0 0 8px;
  margin: 0 0 0.5rem;
  border: 0;
}

.hero {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 560px;
    height: 35rem;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.featured--post {
    margin-bottom: 16px;
    margin-bottom: 1rem;
    border-radius: 4px;
    overflow: hidden;
}

.post--chip {
    display: block;
    margin: 16px 0;
    margin: 1rem 0;
    padding: 32px;
    padding: 2rem;
    background-color: hsl(0, 0%, 100%);
    border: 2px solid hsl(0, 0%, 90%);
    border-radius: 4px;
    overflow: hidden;
}

@media (max-width: 768px) {

  .post--chip {
    padding: 1rem;
  }
}

.post--chip.isFeature {
  margin: -11px 0 0;
  border-top: 0;
}

.post--chip h2 {
  margin: 0 0 4px;
  margin: 0 0 0.25rem;
}

.post--chip h3 {
  margin: 0;
}

.post--chip .post--meta {
  color: hsl(0, 0%, 56%);
}

a.post--chip {
    color: hsl(0, 0%, 13%);
    -webkit-transition: -webkit-transform 200ms ease;
    transition: -webkit-transform 200ms ease;
    transition: transform 200ms ease;
    transition: transform 200ms ease, -webkit-transform 200ms ease
}

a.post--chip:hover {
  text-decoration: none;
  -webkit-transform: translate(0, -2px);
          transform: translate(0, -2px);
}

a.post--chip p {
  margin: 0 0 -8px;
  margin: 0 0 -0.5rem;
}

.reading--list {
    padding: 0 0 0 32px;
    padding: 0 0 0 2rem;
}

@media (max-width: 1024px) {

  .reading--list {
    padding: 2rem 0 0;
  }
}

.list--chip {
    display: block;
    margin: 0 -16px;
    margin: 0 -1rem;
    padding: 16px;
    padding: 1rem;
    color: hsl(0, 0%, 13%);
    background-color: transparent;
    border-radius: 4px;
    -webkit-transition: background-color 150ms ease;
    transition: background-color 150ms ease
}

.list--chip:hover {
  text-decoration: none;
  background-color: hsl(0, 0%, 90%);
}

.list--chip h3 {
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}

.list--chip p {
  margin: 0;
}

.list--chip p.source {
  margin-bottom: -8px;
  margin-bottom: -0.5rem;
  color: hsl(0, 0%, 56%);
}

.grantees {
    margin: 32px 0 48px;
    margin: 2rem 0 3rem;
}

.grantee--chip {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 16px 0;
    margin: 1rem 0;
    padding: 16px 16px 8px;
    padding: 1rem 1rem 0.5rem;
    border: 2px solid hsl(0, 0%, 90%);
    border-radius: 4px;
}

@media (max-width: 768px) {

  .grantee--chip {
    display: block;
  }
}

.grantee--image {
    margin-right: 16px;
    margin-right: 1rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 15%;
            flex: 0 0 15%;
}

@media (max-width: 768px) {

  .grantee--image {
    margin: 0 0 1rem;
  }
}

.grantee--image img {
  border-radius: 4px;
  max-width: 100px;
}

.grantee--image svg {
  width: 100px;
  height: 100px;
}

.grantee--content {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto
}

.grantee--content a {
  display: block;
  margin: 16px 0 0;
  margin: 1rem 0 0;
  color: hsl(0, 0%, 13%);
}

.grantee--content p {
  margin: 0;
}

.subscribe {
    position: relative;
    width: 100%;
    z-index: 99;
    max-height: 0;
    background-color: hsl(0, 0%, 13%);
    overflow: hidden;
    -webkit-transition: max-height 300ms ease;
    transition: max-height 300ms ease
}

.subscribe .l--container {
  padding: 24px 0;
  padding: 1.5rem 0;
  opacity: 0;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}

.subscribe.isOpen {
  position: -webkit-sticky;
  position: sticky;
  bottom: -1px;
  width: 100%;
  max-height: 100%;
}

.subscribe.isOpen .l--container {
  opacity: 1;
}

@media screen and (min-width: 768px) and (max-width: 1210px) {

  .subscribe .l--col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23%;
            flex: 0 0 23%;
  }

  .subscribe .l--col-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 98%;
            flex: 0 0 98%;
  }
}

.subscribe h3 {
  margin: 0 0 8px;
  margin: 0 0 0.5rem;
  color: hsl(0, 0%, 100%);
}

@media (max-width: 768px) {

  .subscribe h3 {
    max-width: 80%;
  }
}

.subscribe label {
  margin: 0;
  padding: 0;
  color: hsl(0, 0%, 56%);
}

.subscribe button {
  display: block;
  width: 100%;
}

.subscribe input {
  margin: 0 0 8px;
  margin: 0 0 0.5rem;
  border: 0;
}

.subscribe--close {
    position: absolute;
    top: 24px;
    top: 1.5rem;
    right: 40.96px;
    right: 2.56rem;
}

@media (max-width: 768px) {

  .subscribe--close {
    right: 1.5rem;
  }
}

.subscribe--close svg {
  width: 20px;
  height: 20px;
  fill: hsl(0, 0%, 90%);
}

.donate.isHidden {
  display: none;
}

.donate--success,
.donate--error {
    display: none
}

.donate--success.isActive, .donate--error.isActive {
  display: block;
}

.donate--success p:last-child, .donate--error p:last-child {
  margin-bottom: 0;
}

.donate--content {
    position: relative;
    z-index: 0;
    opacity: 1;
    -webkit-transition: opacity 200ms ease, max-height 200ms ease;
    transition: opacity 200ms ease, max-height 200ms ease;
}

@media (max-width: 768px) {

  .donate--content {
    margin: 0;
    max-height: 210px;
    overflow: hidden;
  }
}

@media (min-width: 1025px) {

  .donate--content.isHidden {
    opacity: 0.1;
  }
}

@media (max-width: 768px) {

  .donate--content.isOpen {
    max-height: 100rem;
  }
}

.donate--content-more {
    display: none;
    position: relative;
    padding: 8px 0 16px;
    padding: 0.5rem 0 1rem;
    z-index: 10;
    text-transform: uppercase;
    font-weight: 600;
    -webkit-box-shadow: -22px -30px 37px 0 hsl(0, 0%, 100%);
            box-shadow: -22px -30px 37px 0 hsl(0, 0%, 100%);
}

@media (max-width: 768px) {

  .donate--content-more {
    display: block;
  }
}

.donate--form {
    display: block;
    padding: 16px;
    padding: 1rem;
    border: 2px solid hsl(0, 0%, 90%);
    border-radius: 4px
}

.donate--form .l--row {
  padding: 0;
}

.donate--form [type='radio']:checked,
    .donate--form [type='radio']:not(:checked) {
  position: absolute;
  left: -9999px;
}

.donate--form [type='radio']:not(:checked) + label {
  display: block;
  position: relative;
  margin: 0 0 4px;
  margin: 0 0 0.25rem;
  padding: 0.55em 0.5em;
  cursor: pointer;
  text-align: center;
  background-color: hsl(0, 0%, 90%);
  color: hsl(0, 0%, 56%);
  border-radius: 4px;
  -webkit-transition: background-color 150ms ease, color 150ms ease;
  transition: background-color 150ms ease, color 150ms ease;
}

.donate--form [type='radio']:checked + label {
  display: block;
  position: relative;
  margin: 0 0 4px;
  margin: 0 0 0.25rem;
  padding: 0.55em 0.5em;
  cursor: pointer;
  text-align: center;
  background-color: hsl(169, 63%, 55%);
  color: hsl(0, 0%, 13%);
  font-weight: 600;
  border-radius: 4px;
}

.donate--form input[type='text'],
    .donate--form input[type='tel'],
    .donate--form input[type='email'],
    .donate--form input[type='number'] {
  border-width: 2px;
}

.donate--form .amount {
  margin: 0 0 16px;
  margin: 0 0 1rem;
}

.donate--form .details {
  margin: 0 0 8px;
  margin: 0 0 0.5rem;
}

.donate--form button {
  display: block;
  width: 100%;
}

.subscribeCheckbox {
    position: relative;
    margin: 8px 0;
    margin: 0.5rem 0;
    line-height: 19.2px;
    line-height: 1.2rem;
    font-size: 12px;
    font-size: 0.75rem
}

.subscribeCheckbox.isHidden {
  display: none;
  pointer-events: none;
}

.squaredOne {
    position: relative
}

.squaredOne label {
  cursor: pointer;
}

.squaredOne label span {
  display: block;
  position: absolute;
  top: 5px;
  left: 34px;
  line-height: 16px;
  line-height: 1rem;
}

.squaredOne label::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 16px;
  height: 16px;
  background: hsl(0, 0%, 13%);
  border-radius: 4px;
  opacity: 0;
}

.squaredOne label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  background: hsl(0, 0%, 100%);
  border: 2px solid hsl(0, 0%, 90%);
  border-radius: 4px;
}

.squaredOne label:hover::after {
  opacity: 0.3;
}

.squaredOne input[type=checkbox] {
  visibility: hidden;
}

.squaredOne input[type=checkbox]:checked + label::after {
  opacity: 1;
}

.StripeElement {
    padding: 0.55em 0.5em;
    border: 2px solid hsl(0, 0%, 90%);
    border-radius: 4px;
    font-size: 16px;
    font-size: 1rem;
}

.StripeElement > * {
    font-size: 16px;
    font-size: 1rem;
    font-family: 'WorkSans',
        -apple-system,
        blinkmacsystemfont,
        'Segoe UI',
        'Roboto',
        'Oxygen',
        'Ubuntu',
        'Cantarell',
        'Fira Sans',
        'Droid Sans',
        'Helvetica Neue',
        arial,
        sans-serif;
    color: hsl(0, 0%, 13%);
}

.form--errors {
    display: block;
    margin: 8px 0;
    margin: 0.5rem 0;
    text-align: center;
    color: hsl(0, 0%, 56%);
    font-size: 12px;
    font-size: 0.75rem;
}

.sticky--sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 32px;
    top: 2rem;
}

.media {
    margin-top: 32px;
    margin-top: 2rem
}

.media + .media {
  margin-top: 48px;
  margin-top: 3rem;
}

.media a {
  font-weight: 600;
}

.m-b-3rem {
    margin-bottom: 48px;
    margin-bottom: 3rem;
}

.m-t-3rem {
    margin-top: 48px;
    margin-top: 3rem;
}

.blog-post .title,
    .blog-post .excerpt {
  height: 46px;
  overflow: hidden;
}

.media-chip.resources {
  width: 100%;
  margin: 0 0 32px;
  margin: 0 0 2rem;
  float: left;
}

.media-chip .image {
  width: 120px;
  margin: 0;
  float: left;
}

.media-chip .image + .align {
  margin: 0 0 0 150px;
}

.play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    z-index: 99;
    background: hsl(169, 63%, 55%);
    pointer-events: none;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    border-radius: 100%
}

.play::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  margin: -19px 0 0 -10px;
  border-style: solid;
  border-width: 19.5px 0 19.5px 26px;
  border-color: transparent transparent transparent #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.video {
    background-color: #000
}

.video:hover .play::before {
  border-color: transparent transparent transparent #212121;
}

@media (max-width: 760px) {
    .latest--chip-image.video .play {
        width: 90px;
        height: 90px;
    }
}

.icon-text-rows {
    padding: 64px 0 0;
}

.icon-text-row {
    padding: 64px 0;
    background: #fff;
    font-size: 0
}

.icon-text-row .icon {
  display: inline-block;
  width: 240px;
  height: 240px;
  vertical-align: top;
  line-height: 240px;
  background: #f5fdfb;
  text-align: center;
  border-radius: 100%;
}

.icon-text-row .icon img {
  width: auto;
  height: auto;
  max-width: 50%;
  max-height: 50%;
  vertical-align: middle;
}

.icon-text-row .align {
  font-size: 16px;
}

.icon-text-row .align + .align {
  display: inline-block;
  width: calc(100% - 320px);
  margin: 0 0 0 40px;
  vertical-align: top;
}

.icon-text-row .more {
  margin: 30px 0 0;
}

.icon-text-row:nth-child(2n+1) {
  background: #f5fdfb;
}

.icon-text-row:nth-child(2n+1) .icon {
  background: #fff;
}

.icon-text-row-inner {
    width: 100%;
    margin: 0 auto;
    max-width: 1120px;
    max-width: 70rem;
}

@media (max-width: 599px) {
    .icon-text-row .icon {
        width: 120px;
        height: 120px;
        line-height: 120px
    }
    .icon-text-row .icon + .align {
    width: calc(100% - 180px);
    margin: 0 0 0 30px;
  }
}

@media (max-width: 374px) {
    .icon-text-row .icon {
        margin: 0 auto
    }
    .icon-text-row .icon + .align {
    width: 100%;
    margin: 30px 0 0;
    text-align: center;
  }
}

.l--row.coverage {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.post-coverage {
    display: block;
    width: calc(25% - 45px);
    margin: 0 60px 60px 0;
    float: left;
    text-align: center
}

.post-coverage:hover {
  text-decoration: none;
  color: rgb(33, 33, 33);
}

.post-coverage:nth-child(4n) {
  margin-right: 0;
}

.post-coverage:nth-child(4n + 1) {
  clear: both;
}

.post-coverage .post-image {
  display: block;
  height: 180px;
  line-height: 180px;
  font-size: 0;
  -webkit-box-shadow: 0 3px 81px 0 rgba(0, 0, 0, .08);
          box-shadow: 0 3px 81px 0 rgba(0, 0, 0, .08);
}

.post-coverage .post-image img {
  width: auto;
  max-width: 70%;
  max-height: 50%;
  vertical-align: middle;
}

.post-coverage .post-content {
  display: block;
  padding: 20px 20px 0;
}

.post-coverage .post-title {
  display: block;
  margin: 0 0 10px;
  line-height: 120%;
}

.post-coverage .post-meta {
  display: block;
  color: rgb(33, 33, 33);
  line-height: 120%;
  font-size: 14.08px;
  font-size: 0.88rem;
}

@media (max-width: 1500px) {
    .post-coverage {
        width: calc(25% - 22.5px);
        margin: 0 30px 60px 0
    }
    .post-coverage .post-content {
    padding: 20px 0 0;
  }
}

@media (max-width: 760px) {
    .post-coverage {
        width: calc(50% - 15px);
        margin: 0 30px 40px 0
    }
    .post-coverage:nth-child(4n) {
    margin-right: 60px;
  }
    .post-coverage:nth-child(4n + 1) {
    clear: none;
  }
    .post-coverage:nth-child(2n) {
    margin-right: 0;
  }
    .post-coverage:nth-child(2n + 1) {
    clear: both;
  }
}

@media (max-width: 374px) {
    .post-coverage .post-image {
        height: 120px;
        line-height: 120px;
    }
}

.videoWrapper {
    position: relative;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 */
    border: 0
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.features-video {
    position: relative;
    margin-bottom: 80px;
    margin-bottom: 5rem;
    z-index: 5;
}

@media (max-width: 768px) {

  .features-video {
    margin-bottom: 1rem;
  }
}

.features-video .play-video {
  display: block;
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 99;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  cursor: pointer;
}

.features-video .play-video:hover {
  cursor: pointer;
}

.features-video .play-video.hidden {
  display: none;
}

@media (max-width: 768px) {

  .features-video .play-video {
    display: none;
  }
}

.features-video .icon {
  display: inline-block;
  position: relative;
  width: 60px;
  height: 60px;
  vertical-align: middle;
  background: hsl(169, 63%, 55%);
  border-radius: 100%;
}

.features-video .icon::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  margin: -10px 0 0 -4px;
  border-style: solid;
  border-width: 10px 0 10px 13px;
  border-color: transparent transparent transparent hsl(0, 0%, 100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.features-video .title {
  display: inline-block;
  margin: 0 0 0 10px;
  color: hsl(0, 0%, 100%);
  vertical-align: middle;
  font-size: 1.25em;
  font-weight: 500;
}

.to-top {
    display: none;
    position: fixed;
    right: 16px;
    right: 1rem;
    bottom: 56px;
    bottom: 3.5rem;
}

@media (max-width: 768px) {

  .to-top {
    display: block;
  }
}

.to-top a {
  display: block;
  width: 25px;
  height: 25px;
  background-color: hsl(169, 63%, 55%);
  border-radius: 3px;
  text-align: center;
  line-height: 2;
}

.to-top svg {
  width: 15px;
  height: 15px;
  fill: #fff;
}

/* page layouts - styles groups of components */

/* apply a natural box layout model to all elements, but allowing components to change */

html {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

body {
    background-color: hsl(0, 0%, 13%);
}

@media (max-width: 1024px) {

  body.menuOpen {
    overflow: hidden;
  }

  body.menuOpen .sidebar {
    left: 0;
  }

  body.menuOpen .icon--menu-open {
    display: none;
  }

  body.menuOpen .icon--menu-close {
    display: block;
  }
}

*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
            box-sizing: inherit;
}

/* Site Wrapper */

.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100vh;
}

@media (max-width: 1024px) {

  .wrapper {
    display: block;
    position: relative;
  }
}

.sidebar {
    position: relative;
    width: 360px;
    background-color: hsl(169, 63%, 55%);
    -webkit-transition: left 200ms ease;
    transition: left 200ms ease;
}

@media (max-width: 1024px) {

  .sidebar {
    position: fixed;
    top: 75px;
    bottom: 0;
    left: -100%;
    width: 100%;
    z-index: 9999;
  }
}

.content {
    position: relative;
    z-index: 100;
    -webkit-box-flex: 5;
        -ms-flex-positive: 5;
            flex-grow: 5;
    overflow: auto;
    -webkit-transition: -webkit-transform 150ms ease;
    transition: -webkit-transform 150ms ease;
    transition: transform 150ms ease;
    transition: transform 150ms ease, -webkit-transform 150ms ease;
}

.content--wrap {
    padding-bottom: 40.96px;
    padding-bottom: 2.56rem;
    background-color: hsl(0, 0%, 100%);
}

@media (max-width: 1024px) {

  .content--wrap {
    padding-top: 1.56rem;
  }
}

.what-we-think {
    position: relative;
    margin-top: calc(35rem - 202px); /* hero height minus header height */
    padding: 40.96px 0;
    padding: 2.56rem 0;
    z-index: 10;
    background-color: hsl(0, 0%, 100%);
    min-height: 30vh;
}
