/* TEST 71 */


/* PAGE STRUCTURE --------------------------------------------------------------------------------------- */
* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Avenir Next LT Pro Regular', sans-serif;
    color: white;
    background-color: #333;
    /* FOR GUIDE PURPOSES ONLY */
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 1em;
    grid-row-gap: 0;
}

#pageGrid {
    max-width: 1366px;
    grid-column: 1 / 12;
    grid-row: 1 / 2;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-template-rows: repeat(10, auto);
    grid-column-gap: 1em;
    grid-row-gap: 0;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .5);
}

nav {
    grid-column: 1 / 12;
    grid-row: 1 / 2;
    z-index: 2;
}

header {
    grid-column: 1 / 12;
    grid-row: 1 / 3;
    background-color: #777;
}

#heroes {
    grid-column: 1 / 12;
    grid-row: 3 / 4;
    background-color: #f78e2e;
}

#pictures {
    grid-column: 1 / 12;
    grid-row: 4 / 5;
    background-color: #777;
}

#videoDocs {
    grid-column: 1 / 12;
    grid-row: 5 / 6;
    background-color: #212121;
}

#stats {
    grid-column: 1 / 12;
    grid-row: 6 / 7;
    background-color: #4498cc;
}

#join {
    grid-column: 1 / 12;
    grid-row: 7 / 8;
    background-color: #00458c;
}

#about {
    grid-column: 1 / 12;
    grid-row: 8 / 9;
    background-color: #96d3e8;
}

footer {
    grid-column: 1 / 12;
    grid-row: 9 / 10;
    background-color: #333;
}

#timeline {
    grid-column: 10 / 12;
    grid-row: 1 / 9;
    background-color: #333;
    padding: 1rem 0;
    display: none;
}







/* SECTION STYLES --------------------------------------------------------------------------------------- */

.sectionTitle h2 {
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.4rem;
    text-transform: uppercase;
    letter-spacing: .1rem;
}

.sectionTitle h3 {
    font-family: 'Avenir Next LT Pro Demi', sans-serif;
    color: #fff;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .1rem;
    margin-bottom: .5rem;
}

.sectionCopy p {
    font-size: 1rem;
    line-height: 1.35rem;
    color: #fff;
    margin-bottom: 1.2rem;
}

.sectionContent h5 {
    font-family: 'Avenir Next LT Pro Demi', sans-serif;
    font-size: 1rem;
    line-height: 1.1rem;
    margin-bottom: .5rem;
}

.sectionContent p {
    font-size: .9rem;
    line-height: 1.1rem;
}

button:nth-child(2) {
    transform: rotate(180deg);
    margin-left: 1rem;
}

.sectionFooter {
    grid-column: 1 / 12;
    grid-row: 6 / 7;
}



/* CAROUSEL STYLE -------------------------------------------------------------------------- */

.carousel {
    height: 100%;
    width: 100%;
}

.cellImage img {
    object-fit: cover;
    object-position: top;
    width: 100%;
    height: 100%;
}

.cellCopy h3 {
    font-family: 'Avenir Next LT Pro Demi', sans-serif;
    font-size: .9rem;
    line-height: 1rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: .2rem;
}

.cellCopy p {
    font-size: .8rem;
    line-height: 1.1rem;
}

.cellButton {
    grid-column: 1/2;
    grid-row: 3/4;
    z-index: 1;
}

.cellButton img {
    width: 8vw;
    min-width: 4rem;
    max-width: 8rem;
}

.cellLink p a {
    font-family: 'Avenir Next LT Pro Demi', sans-serif;
    font-size: .6rem;
    color: #555;
    letter-spacing: .1rem;
    text-transform: uppercase;
    text-decoration: none;
}

.cellLink p a:hover {
    color: white;
}

button {
    background-color: transparent;
    border: none;
    margin: 0;
    padding: 0;
    width: 3.2rem;
    height: 3.2rem;
}






/* HEADER STYLE & STRUCTURE ------------------------------------------------------------------------------ */

header {
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-template-rows: 1fr auto auto 1fr 1fr;
    grid-gap: 1em;
}

header video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    grid-column: 1 / 12;
    grid-row: 1 / 6;
    filter: brightness(50%);
}

header h1 {
    grid-column: 2 / 11;
    grid-row: 2 / 3;
    z-index: 1;
}

header #title {
    grid-column: 2 / 11;
    grid-row: 3 / 4;
    z-index: 1;
}

header #headerButton {
    grid-column: 2 / 4;
    grid-row: 4 / 5;
    z-index: 1;
}

header .sectionFooter {
    grid-column: 2 / 4;
    grid-row: 5 / 6;
    z-index: 1;
}

header h1 img {
    height: 6vw;
    min-height: 50px;
    max-width: 200px;
    margin: 1.5rem 0;
}

#title h2 {
    font-family: 'Avenir Next LT Pro Demi', sans-serif;
    font-size: 2rem;
    line-height: 1.75rem;
    color: #fff;
    letter-spacing: .1rem;
    text-transform: uppercase;
}

#title p {
    font-size: 1.1rem;
    line-height: 1.6rem;
    color: #fff;
    letter-spacing: .05rem;
    margin: 1.5rem 0;
    ;
}

#title h2 .orange {
    color: #f78e2e;
}

#headerButton img {
    width: 8vw;
    min-width: 4rem;
    max-width: 8rem;
    transition: transform .5s ease;
    filter: invert(0.4) sepia(1) saturate(1.9) hue-rotate(175deg) brightness(1.2);
}

#headerButton img:hover {
    filter: invert(0) sepia(0) saturate(1) hue-rotate(183.6deg) brightness(1.2);
    transform: scale(1.125);
}





/* ABOUT STRUCTURE --------------------------------------------------------------------------------------- */


#about {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-template-rows: 3rem 1fr auto auto 3rem;
    grid-gap: 1em;
}

#about .sectionTop {
    grid-column: 1 / 12;
    grid-row: 1 / 2;
}

#about .sectionTitle {
    grid-column: 2 / 11;
    grid-row: 2 / 3;
}

#about .sectionCopy {
    grid-column: 2 / 11;
    grid-row: 3 / 4;
}

#about .sectionCopy h4 {
    font-family: 'Avenir Next LT Pro Demi', sans-serif;
    color: #fff;
    font-size: .9rem;
    margin: 2rem 0 .5rem 0;
}

#about .sectionCopy p {
    color: #555;
    font-size: .9rem;
    line-height: 1.2rem;
}

#about .sectionCopy a {
    color: #00458c;
    text-decoration: none;
}

#about .sectionCopy a:hover {
    color: #fff;
}

#about .sectionCopy p.boldface {
    font-family: 'Avenir Next LT Pro Demi', sans-serif;
}

#about .sectionCopy p.smallFace {
    font-size: .9rem;
    line-height: 1.4;
}


#about .sectionFooter {
    grid-column: 1 / 12;
    grid-row: 5 / 6;
}






/* HEROES STRUCTURE --------------------------------------------------------------------------------------- */

#heroes {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-template-rows: 3rem auto auto 5fr 1fr 3rem;
    grid-gap: 1em;
}

#heroes .sectionTop {
    grid-column: 1 / 12;
    grid-row: 1 / 2;
}

#heroes .sectionTitle {
    grid-column: 2 / 11;
    grid-row: 2 / 3;
}

#heroes .sectionCopy {
    grid-column: 2 / 11;
    grid-row: 3 / 4;
}

#heroes .sectionContent {
    grid-column: 1 / 12;
    grid-row: 4 / 5;
}

#heroes .sectionButton {
    grid-column: 2 / 11;
    grid-row: 5 / 6;
    text-align: right;
}

#heroes .sectionFooter {
    grid-column: 1 / 12;
    grid-row: 6 / 7;
}

/*cell structure*/
#heroes .cellFrame {
    background-color: #777;
    width: 81%;
    height: 100%;
    margin-right: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 55% auto 1.8rem;
    grid-gap: 0;
}

#heroes .cellImage {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    overflow: hidden;
}

#heroes .cellImage a img {
    transition: transform .5s ease;
}

#heroes .cellImage a img:hover {
    transform: scale(1.125);
}

#heroes .cellCopy {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    padding: 1rem;
}

#heroes .cellFooter {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    padding: 0 1rem;
}

#heroes .cellCopy h3 {
    color: #999;
}

#heroes .cellCopy p {
    color: #333;
}


#heroes .carousel-cell.is-selected {
    background-color: #96D3E8;
}

#heroes .carousel-cell.is-selected h3 {
    color: #fff;
}

#heroes .carousel-cell.is-selected p {
    color: #555;
}

#heroes button img {
    transition: transform .25s ease;
}

#heroes button img:hover {
    filter: invert(0.4) sepia(1) saturate(1.9) hue-rotate(175deg) brightness(1.2);
    transform: scale(1.25);
}








/* PICTURES STYLE --------------------------------------------------------------------------------------- */

#pictures {
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-template-rows: 3rem auto auto 3rem;
    grid-gap: 1em;
}

#pictures .picsBG {
    grid-column: 1 / 12;
    grid-row: 1 / 5;
}

/* Pictures BG */
#pictures .picsBG img {
    height: 100%;
    min-height: 20rem;
    width: 100%;
    object-fit: cover;
    filter: brightness(30%);
    position: absolute;
    animation-name: multiple-image-crossfade;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-duration: 18s;
}

#pictures .picsBG img:nth-of-type(1) {
    animation-delay: 15s;
}

#pictures .picsBG img:nth-of-type(2) {
    animation-delay: 12s;
}

#pictures .picsBG img:nth-of-type(3) {
    animation-delay: 9s;
}

#pictures .picsBG img:nth-of-type(4) {
    animation-delay: 6s;
}

#pictures .picsBG img:nth-of-type(5) {
    animation-delay: 3s;
}

#pictures .picsBG img:nth-of-type(6) {
    animation-delay: 0;
}

@keyframes multiple-image-crossfade {
    0% {
        opacity: 1;
    }

    17% {
        opacity: 1;
    }

    25% {
        opacity: 0;
    }

    92% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#pictures .sectionTop,
#pictures .sectionTitle,
#pictures .sectionCopy,
#pictures .sectionContent,
#pictures .sectionButton,
#pictures .sectionFooter {
    z-index: 1;
}

#pictures .sectionTop {
    grid-column: 1 / 12;
    grid-row: 1/2;
}

#pictures .sectionTitle {
    grid-column: 2 / 11;
    grid-row: 2 / 3;
}

#pictures .sectionContent {
    grid-column: 2 / 9;
    grid-row: 3 / 4;
}

#pictures .sectionFooter {
    grid-column: 1 / 12;
    grid-row: 4 / 5;
}

/*cell structure*/
#pictures .cellCopy {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}

#pictures .cellCopy h3 {
    font-size: 1rem;
    line-height: 1.3rem;
    color: #f78e2e;
}

#pictures .cellCopy p {
    color: #96d3e8;
    font-size: .9rem;
    line-height: 1.35rem;
}

#pictures .cellButton {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
}

#pictures .cellButton img {
    margin-top: 1rem;
    transition: transform .5s ease;
}

#pictures .cellButton img:hover {
    filter: invert(0.4) sepia(1) saturate(1.9) hue-rotate(175deg) brightness(1.2);
    transform: scale(1.125);
}





/* STATS STYLE --------------------------------------------------------------------------------------- */

#stats {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-template-rows: 3rem auto auto 5fr 1fr 3rem;
    grid-gap: 1em;
}

#stats .sectionTop {
    grid-column: 1 / 12;
    grid-row: 1 / 2;
}

#stats .sectionTitle {
    grid-column: 2 / 11;
    grid-row: 2 / 3;
}

#stats .sectionCopy {
    grid-column: 2 / 11;
    grid-row: 3 / 4;
}

#stats .sectionContent {
    grid-column: 1 / 12;
    grid-row: 4 / 5;
}

#stats .sectionButton {
    grid-column: 2 / 11;
    grid-row: 5 / 6;
    text-align: right;
    z-index: 1;
}

#stats .sectionFooter {
    grid-column: 1 / 12;
    grid-row: 6 / 7;
}

#stats .sectionCopy p.disclaimer {
    font-size: .85rem;
    line-height: .9rem;
}

/*cell structure*/
#stats .cellFrame {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-template-rows: 1fr auto;
    grid-gap: 1rem;
}

#stats .cellImage {
    grid-column: 1 / 12;
    grid-row: 1 / 2;
    min-width: 0;
    min-height: 0;
}

#stats .cellImage img {
    object-fit: contain;
    object-position: top center;
    width: 100%;
}

#stats .cellImage.patientsGraphic {
    background-image: url(../img/data_patientsBG.svg);
}

#stats .cellImage.icuBedGraphic {
    background-image: url(../img/data_icuBedBG.svg);
}

#stats .cellImage.nurseGraphic {
    background-image: url(../img/data_nurseBG.svg);
}

#stats .cellImage.maskGraphic {
    background-image: url(../img/data_maskBG.svg);
}

#stats .cellImage.hotlineGraphic {
    background-image: url(../img/data_hotlineBG.svg);
}

#stats .cellImage.heartGraphic {
    background-image: url(../img/data_heartBG.svg);
}

#stats .cellImage.hotelGraphic {
    background-image: url(../img/data_hotelBG.svg);
}

#stats .cellImage.foodGraphic {
    background-image: url(../img/data_foodBG.svg);
}

#stats .cellImage.taxiGraphic {
    background-image: url(../img/data_taxiBG.svg);
}

#stats .cellImage.productGraphic {
    background-image: url(../img/data_productBG.svg);
}

#stats .cellImage.childGraphic {
    background-image: url(../img/data_childBG.svg);
}

#stats .cellImage.roomGraphic {
    background-image: url(../img/data_roomBG.svg);
}

#stats .cellImage.restGraphic {
    background-image: url(../img/data_restBG.svg);
}

#stats .cellImage.supportGraphic {
    background-image: url(../img/data_supportBG.svg);
}

#stats .cellCopy {
    grid-column: 2 / 11;
    grid-row: 2/3;
}

#stats .cellCopy p {
    color: #00458c;
    font-size: .9rem;
    line-height: 1.2rem;
}

#stats .cellCopy h3 {
    color: #00458c;
    margin-bottom: .5rem;
}

#stats .statWhite {
    color: #fff;
    font-family: 'Avenir Next LT Pro Demi', sans-serif;
}

#stats .sectionFooter {}


#stats button img {
    transition: transform .25s ease;
}

#stats button img:hover {
    filter: invert(0.4) sepia(0) saturate(1) hue-rotate(0deg) brightness(0.5);
    transform: scale(1.125);
}





/* VIDEODOCS STYLE --------------------------------------------------------------------------------------- */

#videoDocs {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-template-rows: 3rem auto auto 5fr 1fr 3rem;
    grid-gap: 1em;
}

#videoDocs .carousel:after {
    content: 'flickity';
    display: none;
}

#videoDocs .sectionTop {
    grid-column: 1 / 12;
    grid-row: 1 / 2;
}

#videoDocs .sectionTitle {
    grid-column: 2 / 11;
    grid-row: 2 / 3;
}

#videoDocs .sectionCopy {
    grid-column: 2 /11;
    grid-row: 3 / 4;
}

#videoDocs .sectionContent {
    grid-column: 1 / 12;
    grid-row: 4 / 5;
}

#videoDocs .sectionButton {
    grid-column: 6 / 11;
    grid-row: 5 / 6;
    text-align: right;
}

#videoDocs .sectionFooter {
    grid-column: 1 / 12;
    grid-row: 6 / 7;
}


/*cell structure*/
#videoDocs .cellFrame {
    background-color: #333;
    width: 81%;
    height: 100%;
    margin-right: 5rem;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto auto .8fr;
    grid-gap: 0;
}

#videoDocs .cellImage {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    overflow: hidden;
}

#videoDocs .cellImage a img {
    transition: transform .5s ease;
}

#videoDocs .cellImage a img:hover {
    transform: scale(1.125);
}

#videoDocs .cellCopy {
    grid-column: 1 / 2;
    grid-row: 3 / 5;
    padding: 2rem 1rem 1.5rem 1rem;
}

#videoDocs .cellCopy h3 {
    color: #fff;
    margin-bottom: .5rem;
}

#videoDocs .cellCopy p {
    color: #96d3e8;
}

#videoDocs .cellButton {
    grid-column: 1 / 2;
    grid-row: 2/ 4;
}

#videoDocs .cellButton img {
    width: 8vw;
    min-width: 4rem;
    max-width: 5rem;
    float: right;
    margin-right: 1rem;
    transition: transform .25s ease;
    filter: invert(0.4) sepia(1) saturate(20) hue-rotate(349.2deg) brightness(0.97);
}

#videoDocs .cellButton img:hover {
    filter: invert(0.4) sepia(1) saturate(1.9) hue-rotate(175deg) brightness(1.2);
    transform: scale(1.125);
}


#videoDocs button img {
    filter: invert(0.4) sepia(1) saturate(1.9) hue-rotate(175deg) brightness(1.2);
    transition: transform .25s ease;
}

#videoDocs button img:hover {
    filter: invert(0) sepia(0) saturate(1) hue-rotate(0deg) brightness(1);
    transform: scale(1.25);
}


/* JOIN STRUCTURE & STYLE ------------------------------------------------------------------------------- */

#join {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-template-rows: 3rem auto auto auto 10rem;
    grid-gap: 1em;
}

#join .sectionTop {
    grid-column: 1/ 12;
    grid-row: 1 / 2;
}

#join .sectionTitle {
    grid-column: 2/ 11;
    grid-row: 2 / 3;
}

#join .sectionCopy {
    grid-column: 2/ 11;
    grid-row: 3 / 4;
}

#join .sectionContent {
    grid-column: 2 / 11;
    grid-row: 4 / 5;
}

#join .sectionFooter {
    grid-column: 1 / 12;
    grid-row: 5 / 6;
}


/*content structure*/
#join .sectionContent {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
}

#join .sayThanks {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

#join .socialHash {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    margin-top: 3rem;
}

#join .helpUs {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    margin-top: 3rem;
}


/*style*/
#join .sectionContent h5 {
    font-size: 1rem;
    line-height: 1.2rem;
    color: #96d3e8;
}

#join .sectionContent p {
    font-size: .9rem;
    line-height: 1.1rem;
}

#join .sayThanks img {
    width: 2rem;
    margin: 1rem 0 .5rem 0;
}

#join .message {
    margin-bottom: 2rem;
}

#join .messageBox {
    width: 100%;
    height: 100px;
    border: none;
}

#join .messageViewsBox {
    width: 100%;
    height: 300px;
    border: none;
    background-color: #96d3e8;
}

#join input {
    width: 80px;
    height: 80px;
    margin: .5rem 0;
    background-color: transparent;
    background-image: url(../img/button_joinSend.svg);
    background-repeat: no-repeat;
    border: none;
    font-size: .6rem;
    color: #00458c;
    text-transform: uppercase;
    transition: transform .2s ease;
}

#join input:hover {
    filter: invert(0.4) sepia(1) saturate(1.9) hue-rotate(175deg) brightness(1.2);
    transform: scale(1.125);
}

#join .white {
    color: #fff;
}

#join ul {
    list-style-type: none;
}

#join li {
    width: 25px;
    height: 25px;
    margin-right: .5rem;
    float: left;
}

/*
#join li img {
    filter: invert(0) sepia(0) saturate(1) hue-rotate(183.6deg) brightness(1.2);
}
*/

#join li img:hover {
    filter: invert(0.4) sepia(1) saturate(1.9) hue-rotate(175deg) brightness(1.2);
}

#join .twitterFeed {
    width: 100%;
    /* height: 400px; */
	min-height:400px;
    height: auto;
    background-color: #555;
    border: none;
    margin: 1rem 0;
    padding: 1rem;
}

div.twitterFeed{
    display:inline-grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 1rem;
}

div.socialPost{
    padding: 1rem;
    background-color: white;
}


/*div.twitterFeed{
    background-color: red;
    display: inline-block;
}

div.socialPost{
    position: relative;
    float: left;
    width: 20%;
    margin:1rem;
    padding: .5rem;
    background-color: white;
}*/

div.socialPost p, div.socialPost img{
    margin-bottom:1rem; 
    color: #333;
}

div.socialPost a{
    text-decoration:none;
    color:#333;
}

div.socialPost img{
    width:100%;
    height:auto;
}

img.platformIcon{
	max-width:25px;
	max-height:25px;
    /*
	filter: invert(0) sepia(0) saturate(1) hue-rotate(183.6deg) brightness(1.2);
	float:right;
	*/
	background-color:#b3d4fc;
	margin-bottom:0px !important;
	text-shadow:none;
}

#join .donateButton {
    width: 80px;
    float: left;
    text-align: center;
}

#join .donateButton img {
    transition: transform .25s ease;
    filter: invert(0.4) sepia(1) saturate(20) hue-rotate(349.2deg) brightness(0.97);
}

#join .donateButton img:hover {
    filter: invert(0.4) sepia(1) saturate(1.9) hue-rotate(175deg) brightness(1.2);
    transform: scale(1.125);
}

#join .helpUs img {
    width: 80px;
    margin: 1rem 0 .3rem 0;
}

#join .sectionContent .donateButton p {
    font-size: .75rem;
}






/* TIMELINE STRUCTURE & STYLE ---------------------------------------------------------------------------- */

#timeline {
    background-image: url(../img/bg_timeline.svg);
    background-repeat: repeat-y;
}

#timeline li {
    font-size: .8rem;
    line-height: 1rem;
    color: #fff;
    margin: .25rem 0;
}

#timeline .timelineEntry {
    display: grid;
    grid-template-columns: .2fr 1fr;
    grid-template-rows: 1fr;
}

#timeline .timelineRule {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    border-top: 1px solid #f78e2e;
    width: 100%;
    margin-top: 1rem;
}

#timeline .timelineBox {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    background-color: #555;
    padding: 1rem;
}

#timeline .timelineBox img {
    width: 15px;
    height: 15px;
    margin-bottom: .5rem;
}

#timeline h2 {
    font-size: .75rem;
    letter-spacing: .1rem;
    color: #f78e2e;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

#timeline h3 {
    font-family: 'Avenir Next LT Pro Demi', sans-serif;
    font-size: .7rem;
    letter-spacing: .1rem;
    color: #fff;
    text-transform: uppercase;
    margin: 1rem 0;
}

#timeline h4 {
    font-size: .7rem;
    letter-spacing: .1rem;
    color: #fff;
    text-transform: uppercase;
}

#timeline p {
    font-size: .8rem;
    line-height: 1rem;
    color: #96d3e8;
}

#timeline .hideDate {
    color: transparent;
    margin: .1rem 0;
}



















/* MEDIA QUERIES ------------------------------------------------------------------------------------------- */


@media only screen and (min-width:375px) {

    #heroes .cellFrame {
        grid-template-rows: 60% auto 1.8rem;
    }

    #stats {
        grid-template-rows: 3rem auto auto 6fr 1fr 3rem;
    }

    #videoDocs {
        grid-template-rows: 3rem auto auto 7fr 1fr 3rem;
    }

    #videoDocs .cellCopy p {
        font-size: .9rem;
        line-height: 1.2rem;
    }



}

@media only screen and (min-width:480px) {
    #join .sectionContent p {
        font-size: 1rem;
        line-height: 1.25rem;
    }
}

@media only screen and (min-width:768px) {

    header #title h2 {
        font-size: 2.5rem;
        line-height: 2.5rem;
    }

    header #title p {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    #about .sectionCopy h4 {
        font-size: 1rem;
        line-height: 1.4rem;
    }

    #about .sectionCopy p {
        font-size: 1rem;
        line-height: 1.4rem;
    }

    #heroes {
        grid-template-rows: 3rem 1fr 3fr 1fr 3rem;
        grid-gap: 1em;
    }

    #heroes .sectionTitle {
        grid-column: 2 / 6;
    }

    #heroes .sectionCopy {
        grid-column: 6 / 11;
        grid-row: 2 / 3;
    }

    #heroes .sectionContent {
        grid-row: 3 / 4;
    }

    #heroes .sectionButton {
        grid-row: 4 / 5;
    }

    #heroes .sectionFooter {
        grid-row: 5 / 6;
    }

    #heroes .cellFrame {
        width: 44%;
        margin-right: 1em;
        grid-template-rows: 70% auto 1.8rem;
    }

    #pictures .sectionContent {
        grid-column: 2 / 7;
    }

    #pictures .cellCopy p {
        font-size: 1.1rem;
        line-height: 1.6rem;
    }

    #stats {
        grid-template-rows: 3rem 1fr 4fr 1fr 3rem;
        grid-gap: 1em;
    }

    #stats .sectionTop {
        grid-column: 1 / 12;
        grid-row: 1 / 2;
    }

    #stats .sectionTitle {
        grid-column: 2 / 6;
        grid-row: 2 / 3;
    }

    #stats .sectionCopy {
        grid-column: 6 / 11;
        grid-row: 2 / 3;
    }

    #stats .sectionContent {
        grid-column: 1 / 12;
        grid-row: 3 / 5;
    }

    #stats .sectionButton {
        grid-column: 8 / 11;
        grid-row: 4 / 5;
    }

    #stats .sectionFooter {
        grid-column: 1 / 12;
        grid-row: 5 / 6;
    }

    #stats .cellFrame {
        grid-template-columns: repeat(11, 1fr);
        grid-template-rows: 1fr .2fr;
    }

    #stats .cellImage {
        grid-column: 1 / 12;
        grid-row: 1 / 2;
    }

    #stats .cellCopy {
        grid-column: 2 / 7;
        grid-row: 2/3;
    }

    #stats .cellCopy p {
        font-size: 1.1rem;
    }

    #videoDocs {
        grid-template-rows: 3rem auto 8fr 1fr 3rem;
    }

    #videoDocs .sectionTop {
        grid-row: 1 / 2;
    }

    #videoDocs .sectionTitle {
        grid-column: 2 / 6;
        grid-row: 2 / 3;
    }

    #videoDocs .sectionCopy {
        grid-column: 6 /11;
        grid-row: 2 / 3;
    }

    #videoDocs .sectionContent {
        grid-row: 3 / 4;
    }

    #videoDocs .sectionButton {
        grid-row: 4 / 5;
    }

    #videoDocs .sectionFooter {
        grid-row: 5 / 6;
    }

    #videoDocs .cellFrame {
        grid-template-rows: 1fr auto auto .35fr;
    }

    #videoDocs .cellCopy {
        padding: 2.5rem;
    }

    #videoDocs .cellCopy h3 {
        font-size: 1rem;
        line-height: 1.4rem;
    }

    #videoDocs .cellCopy p {
        font-size: .85rem;
        line-height: 1.25rem;
    }

    #videoDocs .cellButton img {
        margin-right: 3rem;
    }

}



@media only screen and (min-width:1024px) {

    .sectionTitle h2 {
        font-size: 1.8rem;
        line-height: 2.2rem;
    }

    .sectionContent h5 {
        font-size: .9rem;
        line-height: 1.1rem;
    }

    .sectionCopy p {
        font-size: 1.2rem;
        line-height: 1.5rem;
    }

    .cellCopy h3 {
        font-size: .8rem;
        line-height: 1.1rem;
    }

    .cellCopy p {
        font-size: .8rem;
        line-height: 1rem;
    }

    nav {
        grid-column: 1 / 10;
    }

    header {
        grid-column: 1 / 10;
        grid-template-columns: repeat(9, 1fr);
        min-height: 768px;
    }

    header video {
        grid-column: 1 / 10;
    }

    header nav {
        grid-column: 1 /10;
    }

    header h1 {
        grid-column: 2 / 9;
    }

    header #title {
        grid-column: 2 / 9;
    }

    header #title h2 {
        font-size: 2.1rem;
        line-height: 2.3rem;
        color: #fff;
    }

    header #title p {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    #about {
        grid-column: 1 / 10;
        grid-template-columns: repeat(9, 1fr);
        grid-template-rows: 5rem 1fr auto 5rem;
    }

    #about .sectionTop {
        grid-column: 1 / 10;
    }

    #about .sectionTitle {
        grid-column: 2 / 8;
    }

    #about .sectionCopy {
        grid-column: 2 / 8;
    }

    #about .sectionCopy h4 {
        font-size: 1.1rem;
        line-height: 1.6rem;
    }

    #about .sectionCopy p {
        font-size: 1.1rem;
        line-height: 1.6rem;
    }

    #about .sectionFooter {
        grid-column: 1 / 10;
    }

    #heroes {
        grid-column: 1 / 10;
        grid-template-columns: repeat(9, 1fr);
        grid-template-rows: 6rem 1fr 2.5fr 1fr 6rem;
        min-height: 768px;
    }

    #heroes .sectionTop {
        grid-column: 1 / 10;
    }

    #heroes .sectionTitle {
        grid-column: 2 / 5;
    }

    #heroes .sectionCopy {
        grid-column: 5/9;
    }

    #heroes .sectionContent {
        grid-column: 1 / 10;
        margin-top: 2rem;
    }

    #heroes .sectionButton {
        grid-column: 2 / 9;
    }

    #heroes .sectionFooter {
        grid-column: 1 / 10;
    }

    #heroes .cellFrame {
        width: 33%;
        grid-template-rows: 63% auto 1.8rem;
    }

    #pictures {
        height: auto;
        min-height: 768px;
        grid-column: 1 / 10;
        grid-template-columns: repeat(9, 1fr);
        grid-template-rows: 15rem auto auto 15rem;
    }

    #pictures .picsBG {
        grid-column: 1 / 10;
        position: relative;
    }

    #pictures .sectionTop {
        grid-column: 1 / 10;
    }

    #pictures .sectionTitle {
        grid-column: 2 / 6;
    }

    #pictures .sectionContent {
        grid-column: 2 / 6;
    }

    #pictures .sectionFooter {
        grid-column: 1 / 10;
    }

    #pictures .cellCopy h3 {
        font-size: 1rem;
        line-height: 1.2rem;
    }

    #stats {
        height: auto;
        min-height: 768px;
        grid-column: 1 / 10;
        grid-template-columns: repeat(9, 1fr);
        grid-template-rows: 6rem 1fr 2.3fr 1fr 6rem;
    }

    #stats .sectionTop {
        grid-column: 1 / 10;
    }

    #stats .sectionTitle {
        grid-column: 2 / 5;
    }

    #stats .sectionCopy {
        grid-column: 5 / 9;
    }

    #stats .sectionContent {
        grid-column: 1 / 10;
    }

    #stats .sectionButton {
        grid-column: 6 / 9;
    }

    #stats .sectionFooter {
        grid-column: 1/10;
    }
    
    #stats .cellFrame {
    grid-template-columns: repeat(9, 1fr);
    }
    
    #stats .cellImage {
    grid-column: 1 / 10;
    }

    #stats .cellCopy h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    #stats .cellCopy p {
        font-size: 1.5rem;
        line-height: 1.7rem;
    }

    #videoDocs {
        height: auto;
        min-height: 768px;
        grid-column: 1 / 10;
        grid-template-columns: repeat(9, 1fr);
        grid-template-rows: 6rem auto 8fr 1fr 6rem;
    }

    #videoDocs .sectionTop {
        grid-column: 1 / 10;
    }

    #videoDocs .sectionTitle {
        grid-column: 2/5;
    }

    #videoDocs .sectionCopy {
        grid-column: 5/9;
    }

    #videoDocs .sectionContent {
        grid-column: 2 / 9;
        margin-top: 2rem;
    }

    /* disable Flickity for large devices */
    #videoDocs .carousel:after {
        content: '';
    }

    #videoDocs .carousel_videoDocs {
        display: grid;
        grid-gap: 1em;
    }

    #videoDocs .cellFrame {
        grid-template-columns: 1fr auto auto .5fr;
        grid-template-rows: 1fr;
        width: 100%;
        height: 285px;
        overflow: hidden;
    }

    #videoDocs .cellImage {
        grid-column: 1 / 3;
        grid-row: 1/3;
    }

    #videoDocs .cellImage img {
        object-fit: cover;
        object-position: 100% 20%;
        min-width: 100%;
    }

    #videoDocs .cellCopy {
        grid-column: 3/5;
        grid-row: 1/2;
        padding: 2rem 2rem 2rem 3.25rem;
    }

    #videoDocs .cellButton {
        grid-column: 2/4;
        grid-row: 1/2;
    }

    #videoDocs .cellButton img {
        margin: 1rem 0;
    }

    #videoDocs .sectionButton {
        display: none;
        grid-column: 6 / 9;
    }

    #videoDocs .sectionFooter {
        grid-column: 1 / 10;
    }

    #join {
        grid-column: 1 / 10;
        grid-template-columns: repeat(9, 1fr);
        grid-template-rows: 6rem auto auto auto 10rem;
    }

    #join .sectionTop {
        grid-column: 1/ 10;
    }

    #join .sectionTitle {
        grid-column: 2/ 6;
    }

    #join .sectionCopy {
        grid-column: 6/ 9;
        grid-row: 2 / 3;
    }

    #join .sectionContent {
        grid-column: 2 / 9;
    }

    #join .sectionFooter {
        grid-column: 1 / 10;
    }

    #timeline {
        display: inline;
    }

}


@media only screen and (min-width:1112px) {}

@media only screen and (min-width:1200px) {
    .cellCopy p {
        font-size: .9rem;
        line-height: 1.05rem;
    }
}




@media only screen and (orientation: landscape) and (max-width:1024) {

    #heroes {
        grid-template-rows: 7% auto 10fr 1fr 7%;
        min-height: 768px;
    }

}

@media only screen and (orientation: landscape) and (max-width:812px) {

    header {
        grid-template-rows: .75fr auto auto 1fr .2fr;
    }

    header h1 img {
        height: 4vw;
        min-height: 50px;
        max-width: 120px;
        margin: .7rem 0;
    }

    header #title h2 {
        font-size: 2rem;
    }

    header #title p {
        font-size: 1.15rem;
        line-height: 1.4rem;
        margin: .7rem 0;
    }

    #about .sectionCopy {
        grid-column: 2 / 9;
    }

    #about .sectionResources {
        grid-column: 2 / 9;
    }

    #heroes {
        grid-template-rows: 2rem auto 4.75fr 1fr 2rem;
        grid-row-gap: .5rem;
    }

    #heroes .sectionCopy {
        grid-column: 6 / 11;
        grid-row: 2 / 3;
    }

    #heroes .cellFrame {
        width: 44%;
        margin-right: 1rem;
        grid-template-columns: 1fr .7fr;
        grid-template-rows: 3fr auto 1.8rem;
    }

    #heroes .cellImage {
        grid-column: 1 / 2;
        grid-row: 1 / 4;
    }

    #heroes .cellCopy {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
    }

    #heroes .cellFooter {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    #pictures {
        grid-row-gap: .5rem;
    }

    #pictures .cellCopy h3 {
        font-size: .9rem;
        line-height: 1rem;
    }

    #pictures .cellCopy p {
        font-size: .9rem;
        line-height: 1.3rem;
    }

    #stats {
        grid-template-rows: 2rem auto 3fr 1fr 2rem;
        grid-row-gap: .5rem;
    }

    #stats .sectionCopy {
        grid-column: 6 / 11;
    }

    #videoDocs {
        grid-template-rows: 2rem auto 4fr 1fr 2rem;
        grid-row-gap: .5rem;
    }

    #videoDocs .sectionTitle {
        grid-column: 2 / 6;
    }

    #videoDocs .sectionCopy {
        grid-column: 6 / 11;
        grid-row: 2 / 3;
    }

    #videoDocs .sectionContent {
        grid-row: 3 / 4;
    }

    #videoDocs .sectionButton {
        grid-column: 8 / 11;
        grid-row: 4 / 5;
    }

    #videoDocs .sectionFooter {
        grid-row: 5 / 6;
    }

    #videoDocs .cellFrame {
        grid-template-columns: 1fr auto auto .7fr;
        grid-template-rows: 1fr;
        grid-gap: 0em;
    }

    #videoDocs .cellImage {
        grid-column: 1 / 3;
        grid-row: 1/2;
    }

    #videoDocs .cellCopy {
        grid-column: 3 / 5;
        grid-row: 1/2;
        padding: 2rem 1.75rem 1rem 3rem;
    }

    #videoDocs .cellCopy p {
        font-size: 1rem;
        line-height: 1.3rem;
    }

    #videoDocs .cellButton {
        grid-column: 2 / 4;
        grid-row: 1/2;
    }

    #videoDocs .cellButton img {
        margin: 1rem 0;
        float: none;
    }

    #stats .cellFrame {
        grid-template-columns: repeat(11, 1fr);
        grid-template-rows: 1fr 1fr;
    }

    #stats .cellImage {
        grid-column: 1 / 8;
        grid-row: 1 / 3;
    }

    #stats .cellCopy {
        grid-column: 8 / 11;
        grid-row: 1 / 3
    }


    #join {
        grid-row-gap: .5rem;
        grid-template-rows: 2rem auto auto auto 7rem;
    }

}


@media only screen and (orientation: landscape) and (max-width:736px) {

    header {
        grid-gap: .5em;
        grid-template-rows: .75fr auto auto 1fr .2fr;
        min-height: 414px;
    }

    header h1 img {
        margin: 1rem 0;
    }

    header .sectionCopy p {
        font-size: .9rem;
        line-height: 1.1rem;
    }

    header .cellCopy h3 {
        margin-bottom: .5rem;
    }

    header .cellButton img {
        width: 8vw;
        min-width: 4rem;
        max-width: 8rem;
    }

    header #title h2 {
        font-size: 2rem;
        line-height: 2rem;
    }

    header #title p {
        margin: 1rem 0;
    }

    .sectionCopy p {
        font-size: .925rem;
        line-height: 1.4rem;
    }

    #heroes {
        grid-template-rows: 2rem auto 4.25fr 1fr 2rem;
        min-height: 414px;
    }

    #heroes .sectionTitle {
        grid-column: 2 / 6;
    }

    #heroes .sectionContent {
        grid-row: 3 / 4;
    }

    #heroes .sectionButton {
        grid-row: 4 / 5;
    }

    #heroes .sectionFooter {
        grid-row: 5 / 6;
    }

    #pictures {
        min-height: 414px;
        grid-template-rows: 2rem auto auto 2rem;
    }

    #pictures .sectionContent {
        grid-column: 2 / 8;
    }


    #pictures .cellCopy {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }

    #pictures .cellButton {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
    }

    #stats {
        min-height: 414px;
    }

    #stats .sectionTop {
        grid-column: 1 / 12;
        grid-row: 1 / 2;
    }

    #stats .sectionTitle {
        grid-column: 2 / 6;
        grid-row: 2 / 3;
    }

    #stats .sectionCopy {
        grid-column: 6 / 11;
        grid-row: 2 / 3;
    }

    #stats .sectionContent {
        grid-column: 1 / 12;
        grid-row: 3 / 5;
    }

    #stats .sectionButton {
        grid-column: 8 / 11;
        grid-row: 4 / 5;
    }

    #stats .sectionFooter {
        grid-column: 1 / 12;
        grid-row: 5 / 6;
    }


    #videoDocs {
        min-height: 414px;
    }

}


@media only screen and (orientation: landscape) and (max-width:667px) {

    header {
        min-height: 375px;
    }

    #about .sectionCopy {
        grid-column: 2 / 10;
    }

    #about .sectionResources {
        grid-column: 2 / 10;
    }

    #heroes {
        min-height: 375px;
    }

    #heroes .cellFrame {
        grid-template-columns: 1fr 1fr;
    }

    #pictures {
        min-height: 375px;
    }

    #stats {
        min-height: 375px;
    }

    #videoDocs {
        min-height: 375px;
    }

}

@media only screen and (orientation: landscape) and (max-width:568px) {

    .cellCopy h3 {
        font-size: .8rem;
        line-height: 1rem;
        margin-bottom: .2rem;
    }

    header {
        min-height: 320px;
    }

    header h1 img {
        max-width: 75px;
        margin: .5rem 0;
    }

    header #title h2 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    header #title p {
        font-size: 1rem;
        line-height: 1.2rem;
        margin: .5rem 0;
    }

    #heroes {
        min-height: 320px;
    }

    #heroes .sectionCopy {
        grid-column: 6 / 11;
    }

    #heroes .cellFrame {
        width: 62%;
        grid-template-columns: 1fr .8fr;
    }

    #pictures {
        min-height: 320px;
    }

    #pictures .sectionContent {
        grid-column: 2 / 11;
    }

    #pictures .cellCopy p {
        font-size: .85rem;
        line-height: 1rem;
    }

    #stats {
        min-height: 320px;
    }

    #videoDocs {
        min-height: 320px;
    }

    #videoDocs .cellCopy {
        padding: 1rem 1rem 1rem 3rem;
    }

    #videoDocs .cellCopy p {
        font-size: .8rem;
        line-height: 1.1rem;
    }

}
