/* --- Common --- */

/* Reset */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Fonts */
@font-face {
    font-family: 'GT-America-Standard';
    font-weight: 300;
    font-style: normal;
    src:
        url('../fonts/GT-America-Standard-Light.woff') format('woff'),
        url('../fonts/GT-America-Standard-Light.woff2') format('woff2'),
        url('../fonts/GT-America-Standard-Light.eot') format('eot');
}

@font-face {
    font-family: 'GT-America-Standard';
    font-weight: 300;
    font-style: italic;
    src:
        url('../fonts/GT-America-Standard-Light-Italic.woff') format('woff'),
        url('../fonts/GT-America-Standard-Light-Italic.woff2') format('woff2'),
        url('../fonts/GT-America-Standard-Light-Italic.eot') format('eot');
}

@font-face {
    font-family: 'GT-America-Standard';
    font-weight: 400;
    font-style: normal;
    src:
        url('../fonts/GT-America-Standard-Regular.woff') format('woff'),
        url('../fonts/GT-America-Standard-Regular.woff2') format('woff2'),
        url('../fonts/GT-America-Standard-Regular.eot') format('eot');
}

@font-face {
    font-family: 'GT-America-Standard';
    font-weight: 400;
    font-style: italic;
    src:
        url('../fonts/GT-America-Standard-Regular-Italic.woff') format('woff'),
        url('../fonts/GT-America-Standard-Regular-Italic.woff2') format('woff2'),
        url('../fonts/GT-America-Standard-Regular-Italic.eot') format('eot');
}

@font-face {
    font-family: 'GT-America-Standard';
    font-weight: 700;
    font-style: normal;
    src:
        url('../fonts/GT-America-Standard-Bold.woff') format('woff'),
        url('../fonts/GT-America-Standard-Bold.woff2') format('woff2'),
        url('../fonts/GT-America-Standard-Bold.eot') format('eot');
}

@font-face {
    font-family: 'GT-America-Standard';
    font-weight: 700;
    font-style: italic;
    src:
        url('../fonts/GT-America-Standard-Bold-Italic.woff') format('woff'),
        url('../fonts/GT-America-Standard-Bold-Italic.woff2') format('woff2'),
        url('../fonts/GT-America-Standard-Bold-Italic.eot') format('eot');
}

/* Global */
.document {
    font-family: 'GT-America-Standard', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.5;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.5;
    padding: 1.5rem;
}

.document__main {
    max-width: 80rem;
    margin: 0 auto;
}

@media screen and (min-width: 800px) {
    .document {
        padding: 1.5rem 5rem;
    }
}

/* UI */
a {
    color:rgb(32, 62, 210);
}

.embed {
    padding-bottom: 56.25%;
    position: relative;
}

iframe {
    border: 2px solid #f3f3f3;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

img {
    width: 100%;
}

/* Typography */
p {
    margin-top: 1rem;
    max-width: 50rem;
}

h1, h2 {
    font-family: 'GT-America-Standard', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 2.75rem;
    line-height: 1.25;
}

h3 {
    font-family: 'GT-America-Standard', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 2rem;
}

h4 {
    font-family: 'GT-America-Standard', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
}

figcaption {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Header */

.header__link {
    display: inline-block;
}

.header__logo {
    width: 110px;
}

/* Footer */

.footer {
    font-size: 0.9rem;
}

.footer__legal {
    margin-top: 1rem;
}

@media screen and (min-width: 800px) {
    .footer {
        align-items: flex-end;
        display: flex;
        justify-content: space-between;
    }

    .footer__acknowledgements {
        margin-right: 1rem;
    }

    .footer__legal {
        margin-top: 0;
    }
}

/* --- Home --- */

/* Hero */
.home__hero {
    margin: 20vh 0;
}

.home__hero-message {}

.home__hero-message-link {
    background-color: rgb(32, 62, 210);
    border-radius: 100px;
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1rem;
    display: inline-block;
    margin-top: 1.5rem;
}

.home__hero-animation {}

@media screen and (min-width: 800px) {
    .home__hero {
        align-items: center;
        display: flex;
    }

    .home__hero-message {
        width: 50%;
    }

    .home__hero-graphic {
        width: 50%;
        margin-left: 4rem;
    }
}

/* Resources */

.home__resources {
    margin: 20vh 0;
}

.home__resources-intro {
    margin-bottom: 3rem;
}

.home__resources-collection-item {
    border-top-width: 2px;
    border-top-style: solid;
    margin-bottom: 2rem;
}

.home__resources-collection-item--assets {
    border-top-color: rgb(255, 194, 0);
    margin-right: 2rem;
}

.home__resources-collection-item--editorial {
    border-top-color: rgb(28, 169, 232);
    margin-right: 2rem;
}

.home__resources-collection-item--videos {
    border-top-color: rgb(115, 70, 217);
    margin-right: 2rem;
}

.home__resources-collection-item--images {
    border-top-color: rgb(250, 100, 35);
}

.home__resources-collection-item-header {
    margin-top: 1rem;
}

@media screen and (min-width: 800px) {
    .home__resources-collection {
        display: flex;
    }

    .home__resources-collection-item {
        width: 25%;
        margin-bottom: 0;
    }
}

/* Acknowledgements */

.home__acknowledgements {
    margin: 20vh 0;
}

.home__acknowledgements-message {}

.home__acknowledgements-animation {}

@media screen and (min-width: 800px) {
    .home__acknowledgements {
        align-items: center;
        display: flex;
    }

    .home__acknowledgements-message {
        width: 50%;
    }
    
    .home__acknowledgements-graphic {
        width: 50%;
        margin-left: 4rem;
    }
}

/* --- History --- */

/* Highlights */
.history__intro {
    margin: 20vh 0;
}

.history__intro-video {
    margin: 2rem 0;
}

.history__highlight {
    margin: 10vh 0;
}

.history__highlight-header {
    margin-bottom: 4rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgb(32, 62, 210);
}

.history__highlight-images {
    margin-bottom: 4rem;
}

.history__highlight-image {
    margin-bottom: 2rem;
}

.history__highlight-stat {
    margin-bottom: 2rem;
}

.history__highlight-stat-number {
    font-family: 'GT-America-Standard', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    display: block;
}

@media screen and (min-width: 800px) {
    .history__highlight-stats {
        display: flex;
        flex-wrap: wrap;
    }

    .history__highlight-stat {
        width: 15rem;
        margin-right: 1rem;
    }

    .history__highlight-stat:last-of-type {
        margin-right: 0;
    }

    .history__highlight-images {
        display: flex;
    }

    .history__highlight-image {
        width: 50%;
        margin-right: 1rem;
        margin-bottom: 0;
    }

    .history__highlight-image:last-of-type {
        margin-right: 0;
    }
}

/* --- Credits --- */
.credits__intro {
    margin: 20vh 0;
}

.credits__sections {
    margin: 10vh 0;
}

.credits__sections-header {
    margin-bottom: 4rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgb(32, 62, 210);
}

.credits__section {
    margin-bottom: 2rem;
}

.credits__section-header {
    margin-bottom: 1rem;
}

.credits__section-names {
    max-width: 50rem;
}
