@charset "UTF-8";
/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.3.5 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2015, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
.featherlight {
  display: none;
  /* dimensions: spanning the background from edge to edge */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2147483647;
  /* z-index needs to be >= elements on the site. */
  /* position: centering content */
  text-align: center;
  /* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
  white-space: nowrap;
  /* styling */
  cursor: pointer;
  background: #333;
  /* IE8 "hack" for nested featherlights */
  background: rgba(0, 0, 0, 0); }

/* support for nested featherlights. Does not work in IE8 (use JS to fix) */
.featherlight:last-of-type {
  background: rgba(0, 0, 0, 0.8); }

.featherlight:before {
  /* position: trick to center content vertically */
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em; }

.featherlight .featherlight-content {
  /* make content container for positioned elements (close button) */
  position: relative;
  /* position: centering vertical and horizontal */
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  /* dimensions: cut off images */
  overflow: auto;
  padding: 25px 25px 0;
  border-bottom: 25px solid transparent;
  /* dimensions: handling large content */
  margin-left: 5%;
  margin-right: 5%;
  max-height: 95%;
  /* styling */
  background: #fff;
  cursor: auto;
  /* reset white-space wrapping */
  white-space: normal; }

/* contains the content */
.featherlight .featherlight-inner {
  /* make sure its visible */
  display: block; }

.featherlight .featherlight-close-icon {
  /* position: centering vertical and horizontal */
  position: absolute;
  z-index: 9999;
  top: 0;
  right: 0;
  /* dimensions: 25px x 25px */
  line-height: 25px;
  width: 25px;
  /* styling */
  cursor: pointer;
  text-align: center;
  font-family: Arial, sans-serif;
  background: #fff;
  /* Set the background in case it overlaps the content */
  background: rgba(255, 255, 255, 0.3);
  color: #000; }

.featherlight .featherlight-image {
  /* styling */
  width: 100%; }

.featherlight-iframe .featherlight-content {
  /* removed the border for image croping since iframe is edge to edge */
  border-bottom: 0;
  padding: 0; }

.featherlight iframe {
  /* styling */
  border: none; }

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
  .featherlight .featherlight-content {
    /* dimensions: maximize lightbox with for small screens */
    margin-left: 10px;
    margin-right: 10px;
    max-height: 98%;
    padding: 10px 10px 0;
    border-bottom: 10px solid transparent; } }
:root {
  box-sizing: border-box;
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-y: scroll;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  background-color: #fff; }

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }
  a:active, a:hover {
    outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

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

td,
th {
  padding: 0; }

[hidden] {
  display: none !important; }

[unselectable] {
  user-select: none; }

::selection {
  background: #b3d4fc;
  text-shadow: none; }

body {
  font-size: 0.83em;
  line-height: 1.5;
  margin: 0;
  font-family: "Raleway", sans-serif; }
  @media (min-width: 62.5em) {
    body {
      font-size: 0.93375em; } }

a {
  color: #31434d; }
  a:focus {
    outline: thin dotted; }
  a:active, a:hover {
    outline: 0; }

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  line-height: 1.25;
  margin: 0 0 0.75em; }

h1 {
  font-size: 1.9505em;
  font-weight: normal;
  margin: 0.67em 0; }

h2 {
  font-size: 1.66em;
  margin: 0.83em 0; }

h3 {
  font-size: 1.4525em;
  margin: 1em 0; }

h4 {
  font-size: 1.245em;
  margin: 1.33em 0; }

h5 {
  font-size: 1.0375em;
  margin: 1.67em 0; }

h6 {
  font-size: 0.83em;
  margin: 2.33em 0; }

p {
  margin: 0 0 0.75em; }

ul,
ol {
  margin: 0 0 0.75em;
  padding: 0 0 0 3em; }

dl {
  margin: 0 0 0.75em; }

dt {
  font-weight: bold;
  margin-top: 0.75em; }

table {
  margin: 0 0 0.75em;
  width: 100%;
  table-layout: fixed; }

tr,
td,
th {
  vertical-align: middle; }

th,
td {
  padding: 0.75em 0; }

th {
  font-weight: bold;
  text-align: left; }

fieldset {
  margin: 0 0 0.75em; }

blockquote {
  margin: 1.5em 0; }

hr {
  margin: 1.5em 0;
  border-width: 0;
  border-bottom: 1px solid #bfbfbf; }

figure {
  margin: 0 0 0.75em; }

img {
  max-width: 100%;
  max-height: 100%; }

body {
  overflow: hidden; }

.root--open {
  overflow: hidden;
  height: 100vh; }

.navigation {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  width: 250px;
  transform: translateX(250px);
  transition: transform 0.3s; }
  .root--open .navigation {
    transform: translateX(0); }

.page {
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
  transform: translateX(0);
  background-color: #f5f5f5; }
  .root--open .page {
    transform: translateX(-250px); }

.header {
  line-height: 40px; }
  .header ul {
    list-style: none;
    padding: 0;
    margin: 0; }
  .header .si-branding {
    padding: 0.3em 1em;
    background-color: black;
    overflow: hidden;
    position: relative;
    z-index: 3; }
  .header .si-logo {
    display: block;
    float: left; }
    .header .si-logo img {
      width: 150px;
      max-width: 100%;
      display: block; }
  .header .medal {
    text-align: center;
    z-index: 2;
    overflow: hidden;
    line-height: 100%; }
    .header .medal:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 110%;
      height: 70px;
      margin-top: -35px;
      margin-left: -5%;
      margin-right: -5%;
      background-color: rgba(0, 0, 0, 0.1);
      border-radius: 100%;
      z-index: 0; }
    .header .medal img {
      max-width: 250px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      width: 140px; }
      @media (min-width: 500px) {
        .header .medal img {
          width: 300px; } }
  .header .toggle-menu {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    width: 50px;
    height: 50px;
    outline: 0;
    font-size: 1.5em;
    display: inline-block;
    text-align: center;
    color: white;
    text-decoration: none;
    font-weight: normal;
    line-height: 50px;
    background: transparent no-repeat center;
    background-image: url("../images/menu.svg");
    background-size: 25px 25px; }
    .root--open .header .toggle-menu {
      background-image: url("../images/cross.svg");
      background-size: 20px 20px; }

.footer {
  background-color: #2D2D2D;
  padding: 20px;
  color: #999;
  text-align: center;
  font-size: 0.9em; }
  .footer ul {
    list-style: none;
    padding: 0;
    margin: 0; }
  .footer li {
    display: inline-block; }
  .footer a {
    color: #999; }
  .footer > section {
    padding: 10px 0;
    margin: 10px 0; }
  .footer .details, .footer .copyright, .footer .links {
    max-width: 600px;
    margin: 10px auto;
    font-size: 0.8em; }
  .footer .logos li {
    display: block; }
  @media (min-width: 62.5em) {
    .footer .logos li {
      padding: 5px 10px;
      display: inline-block;
      vertical-align: middle; } }
  .footer .links li {
    margin-right: 10px; }
    .footer .links li:last-child {
      margin-right: 0; }
  .footer img.logo--sapac {
    width: 250px; }
  .footer img.logo--nvn {
    width: 180px; }
  .footer img.logo--nmah {
    width: 240px; }
  .footer .si-social {
    margin-right: 50px;
    text-align: center;
    color: white;
    padding: 10px 0;
    margin: -20px -20px 0 -20px;
    background-color: rgba(0, 0, 0, 0.2); }
    .footer .si-social li {
      display: inline;
      vertical-align: middle;
      margin-right: 10px; }
    .footer .si-social a {
      display: inline-block;
      vertical-align: middle; }
    .footer .si-social img {
      width: 30px;
      height: 30px; }

.navigation {
  background-color: #222;
  padding: 20px;
  color: white; }
  .navigation section {
    margin-bottom: 20px; }
    .navigation section h1 {
      font-weight: bold;
      border-bottom: 1px solid black;
      padding: 0 0 10px 0;
      margin: 0 0 10px 0;
      font-size: 1em; }
    .navigation section ul {
      list-style: none;
      padding: 0; }
    .navigation section li {
      margin: 0 0 0.5em 0;
      line-height: 125%; }
  .navigation a {
    color: white;
    text-decoration: none; }

.story > h1 {
  text-align: center; }
.story a {
  color: #fff; }
.story .text--dark a {
  color: inherit; }
.story .ender {
  color: white;
  padding: 1em;
  overflow: hidden; }
  @media (min-width: 47.5em) {
    .story .ender {
      padding: 3em; }
      .story .ender > div {
        float: left;
        padding: 0 1em; }
      .story .ender .ender__resources {
        width: 40%; }
      .story .ender .ender__credits {
        width: 60%; } }
  .story .ender h3 {
    margin-bottom: 0;
    font-family: "Arvo", serif;
    color: white; }
  .story .ender a {
    color: white; }
  .story .ender .ender__credits p {
    font-size: 0.9em; }
  .story .ender--tint-blue {
    background-color: #646D7C; }
  .story .ender--tint-red {
    background-color: #7c2430; }
  .story .ender--tint-white {
    background-color: #a4a5a9; }

.chapter {
  position: relative;
  padding: 10% 5%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 1.6em;
  line-height: 140%; }
  .chapter hr {
    width: 33.3333%;
    margin: 40px auto; }
  .chapter .chapter__video {
    width: 100%; }
    .chapter .chapter__video div {
      padding: 0; }
    .chapter .chapter__video p {
      position: relative;
      margin: 0 -5%; }
      .chapter .chapter__video p:before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 56.25%; }
      .chapter .chapter__video p > :first-child {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important; }
  @media (min-width: 47.5em) {
    .chapter {
      flex-direction: row;
      padding: 20px 50px;
      min-height: 100vh; }
      .chapter .chapter__block {
        min-width: 0;
        flex: 1; }
      .chapter--vertical {
        flex-direction: column;
        justify-content: center; }
        .chapter--vertical .chapter__block {
          flex: 0 1 auto;
          width: 100%; } }
  [data-ua*="iPad"][data-ua*="OS 7_"] .chapter {
    min-height: 768px; }
  [data-ua*="iPhone"][data-ua*="OS 7_"] .chapter {
    min-height: 500px; }
  .chapter a[href*="/glossary"] {
    color: inherit;
    border-bottom: 2px dotted rgba(128, 128, 128, 0.8);
    text-decoration: none; }
  .chapter__images--across {
    display: flex;
    align-items: center; }
    .chapter__images--across .image {
      padding: 5px; }
  .chapter__text {
    padding: 5% 10%;
    color: #ddd; }
    @media (min-width: 47.5em) {
      .chapter__text {
        padding: 0 50px; } }
    .chapter__text img {
      display: block;
      margin: 0 auto 10px auto; }
    .chapter__text.text--dark {
      color: #222; }
      .chapter__text.text--dark blockquote {
        color: #222; }
    .chapter__text .highlight {
      background-color: #fee546;
      color: black; }
    .chapter__text blockquote {
      color: #cda535;
      position: relative;
      padding: 0 0 0 35px;
      font-weight: bold;
      text-align: left; }
      .chapter__text blockquote:before {
        content: '“';
        position: absolute;
        left: 0;
        top: 15px;
        font-size: 5em;
        font-weight: normal; }
      .chapter__text blockquote:after {
        content: '”'; }
      .chapter__text blockquote.blockquote--manual {
        padding: 0;
        font-size: 0.75em;
        font-weight: normal;
        margin-top: 0; }
        .chapter__text blockquote.blockquote--manual:before {
          content: '';
          position: static; }
        .chapter__text blockquote.blockquote--manual:after {
          content: ''; }
        .chapter__text blockquote.blockquote--manual + .byline-container {
          font-size: 0.75em; }
      @media (min-width: 62.5em) {
        .chapter__text blockquote {
          padding: 0 50px 0 75px; }
          .chapter__text blockquote:before {
            left: 20px; }
          .chapter__text blockquote.blockquote--large {
            font-size: 1.15em; } }
    .chapter__text .cite {
      text-align: center; }
    .chapter__text .byline-container {
      text-align: right;
      margin-bottom: 1.5em; }
      @media (min-width: 47.5em) {
        .chapter__text .byline-container {
          margin-top: -20px; } }
    .chapter__text .byline {
      display: inline-block;
      min-width: 50%;
      text-align: left;
      margin-left: 25px; }
      .chapter__text .byline::before {
        content: '–';
        position: absolute;
        left: -20px; }
      .chapter__text .byline .line1 {
        font-size: 1em; }
      .chapter__text .byline .line2 {
        font-size: 0.85em; }
  .chapter__img {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8); }
  .chapter--introduction {
    background-color: #e7e2d7;
    border: 10px solid #776848;
    border-width: 10px 0;
    min-height: 0; }
    .chapter--introduction .chapter__text {
      text-align: right; }
    .chapter--introduction h1, .chapter--introduction p {
      margin: 0; }
    .chapter--introduction .introduction__name {
      font-family: "Arvo", serif;
      font-size: 1.33em; }
    .chapter--introduction .introduction__position {
      text-transform: uppercase;
      font-size: 0.7em; }
    .chapter--introduction .introduction__company {
      font-size: 1em; }
    .chapter--introduction .introduction__dates {
      color: #cda535;
      font-size: 1.33em; }
    .chapter--introduction .introduction__themes {
      list-style: none;
      margin: 5px 0 0 0; }
      @media (min-width: 47.5em) {
        .chapter--introduction .introduction__themes {
          margin: 30px 0 0 0; } }
    .chapter--introduction .chapter__text {
      color: #31434d; }
    .chapter--introduction .chapter__image:before {
      position: absolute;
      top: 5%;
      right: -100%;
      content: '';
      height: 75%;
      width: 200%;
      background-color: #cda535; }
    .chapter--introduction .image__img {
      max-height: 400px; }
    .chapter--introduction p:last-child {
      margin-top: 1em; }
  .chapter h1 {
    font-size: 1.33em;
    font-weight: bold; }
  .chapter strong {
    font-weight: normal;
    color: #fee546; }
  .chapter .details {
    font-size: 0.75em;
    line-height: 120%; }
  .chapter__next {
    position: absolute;
    cursor: pointer;
    bottom: 0;
    margin-bottom: 5px;
    left: 50%;
    margin-left: -50px;
    border-radius: 50%;
    background: transparent url("../images/arrow.svg") no-repeat center;
    height: 100px;
    width: 100px;
    z-index: 5;
    transition: opacity 0.5s;
    opacity: 0;
    display: none; }
    .chapter--in-view .chapter__next {
      opacity: 1; }
    .chapter--hide-next .chapter__next {
      pointer-events: none;
      opacity: 0; }
    @media (min-width: 47.5em) {
      .chapter__next {
        display: block; } }

.chapter-selection {
  position: fixed;
  top: 15%;
  bottom: 15%;
  left: 95vw;
  z-index: 1;
  width: 5vw;
  display: none;
  margin-top: 10vh;
  height: 90vh;
  flex-direction: column;
  align-items: center; }
  .chapter-selection__jump {
    flex: 1;
    background-color: transparent;
    border-width: 0; }
  .chapter-selection__dot {
    width: 20px;
    height: 20px;
    margin: 5px 0;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); }

.neighbors {
  padding: 1.5em 1em;
  background-color: #3b4c60;
  overflow: hidden; }
  .neighbors a {
    color: white;
    text-decoration: none; }
  .neighbors__direction {
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase; }
  .neighbors__item {
    width: 50%;
    padding: 0 0.75em; }
  .neighbors__title {
    margin: 0.2em 0;
    text-decoration: underline; }
    .neighbors__title:hover {
      text-decoration: underline;
      color: #04A2DF; }
  .neighbors__img {
    width: 100%;
    display: block; }
  .neighbors__img-container {
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 1em; }
    @media (min-width: 62.5em) {
      .neighbors__img-container {
        margin-bottom: 0;
        margin-left: 10px;
        margin-right: 10px; } }
  .neighbors__item--previous {
    float: left;
    text-align: right; }
    .neighbors__item--previous .neighbors__direction::before {
      content: '‹';
      font-size: 1.2em;
      margin-right: 5px;
      position: relative;
      top: -1px; }
    @media (min-width: 62.5em) {
      .neighbors__item--previous .neighbors__img-container {
        float: right; } }
  .neighbors__item--next {
    float: right; }
    @media (min-width: 47.5em) {
      .neighbors__item--next {
        border-left: 1px solid rgba(255, 255, 255, 0.3); } }
    .neighbors__item--next .neighbors__direction::after {
      content: '›';
      font-size: 1.2em;
      margin-left: 5px;
      position: relative;
      top: -1px; }
    @media (min-width: 62.5em) {
      .neighbors__item--next .neighbors__img-container {
        float: left; } }

.image {
  position: relative;
  margin: 0;
  text-align: center;
  width: 100%; }
  .image__information {
    padding: 1.5em;
    text-transform: uppercase;
    border: 2px solid rgba(128, 128, 128, 0.5);
    line-height: 110%;
    font-size: 0.55em;
    color: #fee546;
    text-align: left;
    display: inline-block; }
    .image__information p {
      margin: 0; }
      .image__information p:first-child::before, .image__information p:first-child::after {
        position: relative;
        top: -1px;
        font-size: 1.1em; }
    .image__information strong {
      font-weight: bold; }
    .image__information em {
      font-style: italic; }
    .image__information--in-image-block {
      display: block;
      text-align: center; }
      @media (min-width: 47.5em) {
        .image__information--in-image-block {
          display: none; } }
      .chapter--vertical .image__information--in-image-block {
        display: inline-block !important;
        margin-bottom: 1em;
        max-width: 75%; }
    .image__information--in-text-block {
      display: none;
      max-width: 70%; }
      @media (min-width: 47.5em) {
        .image__information--in-text-block {
          display: block; } }
    .image__information--dark {
      color: black; }
    .image__information--right {
      float: right;
      border-right-width: 0; }
      .image__information--right p:first-child::after {
        content: ' >'; }
    .image__information--left {
      float: left;
      border-left-width: 0; }
      .image__information--left p:first-child {
        text-indent: -9px; }
      .image__information--left p:first-child::before {
        content: '< '; }
  .image__credit {
    color: #000; }
  .image__img {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8); }
    @media (min-width: 47.5em) {
      .image__img {
        max-height: 600px; } }
    .image__img.disable-box-shadow {
      box-shadow: none; }
    @media (min-width: 47.5em) {
      .chapter--vertical .image__img.max-height--50 {
        max-height: 50vh; }
      .chapter--vertical .image__img.max-height--40 {
        max-height: 40vh; }
      .chapter--vertical .image__img.max-height--30 {
        max-height: 30vh; }
      .chapter--vertical .image__img.max-height--25 {
        max-height: 25vh; } }

.background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none; }
  .background--hide-on-mobile {
    display: none; }
    @media (min-width: 47.5em) {
      .background--hide-on-mobile {
        display: block; } }
  .background--fixed {
    background-attachment: fixed; }
    [data-ua*="Firefox/47"] .background--fixed {
      background-attachment: scroll; }
  .background--cover {
    background-size: cover; }
  .background--position--center {
    background-position: center; }
  .background--position--top {
    background-position: top; }
  .background--position--top-right {
    background-position: top right; }
  .background--position--right {
    background-position: right; }
  .background--position--bottom-right {
    background-position: bottom right; }
  .background--position--bottom {
    background-position: bottom; }
  .background--position--bottom-left {
    background-position: bottom left; }
  .background--position--left {
    background-position: left; }
  .background--position--top-left {
    background-position: top left; }

[data-ua*="Mobile"] .background--fixed.background--cover {
  background-attachment: scroll; }

.transition--type--slide-from-left {
  transition-property: transform;
  transform: translateX(-200%); }
  .chapter--in-view .transition--type--slide-from-left {
    transform: translateX(0); }
.transition--type--slide-from-right {
  transition-property: transform;
  transform: translateX(200%); }
  .chapter--in-view .transition--type--slide-from-right {
    transform: translateX(0); }
.transition--type--fade {
  transition-property: opacity;
  opacity: 0; }
  .chapter--in-view .transition--type--fade {
    opacity: 1; }
.transition--type--highlight {
  transition-property: background-color, color;
  font-weight: normal; }
.transition--duration--fast {
  transition-duration: 0.5s; }
.transition--duration--medum {
  transition-duration: 1s; }
.transition--duration--slow {
  transition-duration: 1.5s; }
.transition--delay--first {
  transition-delay: 0s; }
.transition--delay--second {
  transition-delay: 0.5s; }
.transition--delay--third {
  transition-delay: 1s; }
.transition--delay--fourth {
  transition-delay: 1.5s; }
.transition--delay--fifth {
  transition-delay: 2s; }
.transition--delay--sixth {
  transition-delay: 2.5s; }
.transition--delay--seventh {
  transition-delay: 3s; }
.transition--delay--eigth {
  transition-delay: 3.5s; }

.tint {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }
  @media (min-width: 47.5em) {
    .tint {
      top: 10%;
      bottom: 10%; } }
  .tint--fill {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  .tint--white--light {
    background-color: rgba(255, 255, 255, 0.65); }
  .tint--white--medium {
    background-color: rgba(255, 255, 255, 0.85); }
  .tint--white--heavy {
    background-color: rgba(255, 255, 255, 0.95); }
  .tint--blue {
    background-color: transparent; }
    .tint--blue--light {
      background-image: linear-gradient(to right, rgba(59, 76, 96, 0.65), rgba(2, 26, 45, 0.65)); }
    .tint--blue--medium {
      background-image: linear-gradient(to right, rgba(59, 76, 96, 0.85), rgba(2, 26, 45, 0.85)); }
    .tint--blue--heavy {
      background-image: linear-gradient(to right, rgba(59, 76, 96, 0.95), rgba(2, 26, 45, 0.95)); }
  .tint--red--light {
    background-color: rgba(85, 16, 16, 0.65); }
  .tint--red--medium {
    background-color: rgba(85, 16, 16, 0.85); }
  .tint--red--heavy {
    background-color: rgba(85, 16, 16, 0.95); }

.veteran a {
  text-decoration: none;
  color: white; }
  .veteran a:hover {
    text-decoration: none !important; }
.veteran__title {
  margin: 0.25em 0;
  font-size: 1.2em;
  font-weight: 700;
  color: white; }
.veteran__position {
  text-transform: uppercase;
  margin: 0;
  font-size: 0.8em;
  font-weight: 400;
  color: #bfbfbf; }
.veteran__photo {
  display: block;
  width: 100%;
  margin-bottom: 0.5em; }
.veteran__summary {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  background-color: white;
  color: black;
  overflow: hidden;
  font-style: italic;
  padding: 0.5em 1em;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2; }
  .veteran__summary p {
    margin: 0; }
.veteran__unit-and-company {
  font-size: 0.9em;
  margin: 0;
  color: white; }

.featherlight .featherlight-close-icon {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 20;
  margin: 0 0 20px 20px;
  float: right;
  text-indent: -9999px;
  overflow: hidden;
  width: 50px;
  height: 50px;
  background: transparent url("../images/cross.svg") no-repeat center;
  background-size: 20px; }
.featherlight .featherlight-content {
  padding: 0;
  min-width: 300px;
  border-bottom-width: 0;
  background-color: transparent; }

.image-popup {
  overflow: hidden;
  text-align: center; }
  .image-popup img {
    max-height: 95vh;
    display: block;
    margin: 0 auto; }
  .image-popup .info {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    transition: opacity 0.5s;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 10px 15px;
    font-size: 0.85em;
    opacity: 1; }
    .image-popup .info p {
      margin: 0; }
    .image-popup .info .credits {
      font-size: 0.9em;
      color: rgba(255, 255, 255, 0.5); }
  .image-popup.hide-info .info {
    opacity: 0; }

.glossary-definition {
  background-color: #fff;
  padding: 20px; }
  .glossary-definition h1 {
    margin: 0 0 0.2em 0; }

.home .main {
  font-family: "Arvo", serif; }
  .home .main a {
    color: black;
    text-decoration: none; }
    .home .main a:hover {
      color: #01aaeb;
      text-decoration: underline; }
  .home .main .section {
    text-align: center;
    padding: 50px 0; }
    @media (min-width: 47.5em) {
      .home .main .section {
        padding: 75px 0; } }
    .home .main .section--introduction {
      padding: 0 0 50px; }
    .home .main .section--topics {
      text-align: left;
      overflow: hidden;
      position: relative;
      background-color: #551010;
      background-image: url("../images/leather.jpg"); }
      .home .main .section--topics::before {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 0;
        content: '';
        background-image: radial-gradient(rgba(85, 16, 16, 0.8), #551010); }
    .home .main .section--veterans {
      color: white;
      position: relative;
      background-color: #4d5b6a;
      background-image: url("../images/leather.jpg"); }
      .home .main .section--veterans::after {
        content: '';
        display: table;
        clear: both; }
      .home .main .section--veterans::before {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 0;
        content: '';
        background-image: radial-gradient(rgba(77, 91, 106, 0.8), #4d5b6a); }
    .home .main .section--honors {
      background-color: white;
      padding: 40px 0; }
    .home .main .section--video {
      background-color: black;
      padding: 0;
      margin: 30px 0 50px 0; }
    .home .main .section--resources {
      background: linear-gradient(0deg, rgba(59, 76, 96, 0.85) 0%, rgba(59, 76, 96, 0.85) 100%), url(../images/for_educators_classroom.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      color: #fff; }
      .home .main .section--resources .button {
        padding: 10px 0;
        width: 150px;
        background-color: #3f7ba5;
        text-align: center;
        display: block;
        color: white;
        font-family: "Arvo", serif;
        text-transform: uppercase; }
    .home .main .section__header {
      width: 80%;
      max-width: 800px;
      margin: 0 auto; }
      .home .main .section__header img {
        width: 125px; }
      .home .main .section__header h1 {
        font-size: 1.7em;
        font-weight: 700;
        margin: 0.2em 0; }
      .home .main .section__header p {
        font-family: "Raleway", sans-serif; }
  .home .main .next {
    position: absolute;
    cursor: pointer;
    bottom: 0;
    margin-bottom: -50px;
    left: 50%;
    margin-left: -50px;
    border-radius: 50%;
    background: transparent url("../images/arrow.svg") no-repeat center;
    height: 100px;
    width: 100px;
    z-index: 5;
    transition: opacity 0.5s;
    opacity: 1;
    outline: 0;
    display: none; }
    @media (min-width: 47.5em) {
      .home .main .next {
        display: block; } }
  .home .main .video {
    position: relative;
    margin: 0 auto;
    max-width: 1100px; }
    .home .main .video .ratio {
      display: block;
      width: 100%;
      height: auto;
      max-height: none;
      max-width: none; }
    .home .main .video .iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  .home .main #welcome {
    padding: 15px 0; }
    .home .main #welcome h1 {
      font-family: "Arvo", serif;
      text-transform: uppercase;
      color: #f0bd64;
      text-shadow: 0 0 7px rgba(242, 197, 119, 0.9);
      font-weight: 700;
      margin: 0 0 0.35em;
      font-size: 2em; }
      @media (min-width: 47.5em) {
        .home .main #welcome h1 {
          letter-spacing: 0.1em;
          font-size: 2.25em; } }
      .home .main #welcome h1 span {
        font-size: 0.52em;
        display: block;
        color: black;
        font-weight: 300;
        letter-spacing: 0;
        text-shadow: none; }
      .home .main #welcome h1:after {
        display: block;
        max-width: 330px;
        margin: 0.35em auto 0;
        content: "";
        height: 1px;
        background-color: #551010; }
    .home .main #welcome p {
      font-family: "Raleway", sans-serif;
      max-width: 400px;
      color: #4d4d4d;
      margin: 10px auto 0;
      padding: 0 10px; }
  .home .main #introduction h1 {
    color: #551010; }
  .home .main .topics {
    max-width: 1200px;
    margin: 0 auto; }
    .home .main .topics a {
      color: white; }
    .home .main .topics img {
      width: 100%; }
    .home .main .topics .topic {
      padding: 0 5%;
      margin-bottom: 30px; }
      @media (min-width: 47.5em) {
        .home .main .topics .topic {
          float: left;
          width: 33.3333%;
          margin-bottom: 0; } }
      .home .main .topics .topic__title {
        font-size: 1.1em;
        font-weight: 400; }
        .home .main .topics .topic__title a {
          text-decoration: underline; }
        .home .main .topics .topic__title a:hover {
          color: #01aaeb;
          text-decoration: none; }
      .home .main .topics .topic__summary {
        font-family: "Raleway", sans-serif;
        font-size: 0.9em;
        color: white; }
      .home .main .topics .topic__more a:hover {
        text-decoration: underline;
        color: #01aaeb; }
    .home .main .topics img {
      max-width: 100%; }
  .home .main .honors {
    margin: 0 auto 20px auto;
    overflow: hidden; }
    .home .main .honors .honor {
      margin: 0 auto 50px auto;
      max-width: 1200px;
      padding: 10px 10%; }
      @media (min-width: 47.5em) {
        .home .main .honors .honor {
          margin: 0 auto;
          display: flex;
          align-items: center; } }
      .home .main .honors .honor__title {
        margin: 0 0 0.3em 0;
        font-size: 1.3em;
        font-weight: 700; }
      .home .main .honors .honor__img {
        position: relative;
        z-index: 2; }
      .home .main .honors .honor__info, .home .main .honors .honor__image {
        padding: 0 10px; }
      .home .main .honors .honor__info {
        flex: 1; }
      .home .main .honors .honor:nth-child(2) .honor__image {
        order: 2; }
  .home .main #veterans > h1 {
    margin-bottom: 0.2em;
    font-size: 1.8em; }
  .home .main #veterans > p {
    font-family: "Raleway", sans-serif; }
  .home .main #veterans > .section__header {
    margin-bottom: 3em; }
  .home .main .veterans {
    padding: 0 2%; }
    .home .main .veterans .veteran {
      font-size: 0.9em;
      margin-bottom: 20px; }
      @media (min-width: 34.375em) {
        .home .main .veterans .veteran {
          float: left;
          width: 50%;
          padding: 1.25%; }
          .home .main .veterans .veteran:nth-child(2n + 1) {
            clear: left; } }
      @media (min-width: 47.5em) {
        .home .main .veterans .veteran {
          float: left;
          width: 33.3333%;
          padding: 1.25%; }
          .home .main .veterans .veteran:nth-child(2n + 1) {
            clear: none; }
          .home .main .veterans .veteran:nth-child(3n + 1) {
            clear: left; } }
      @media (min-width: 62.5em) {
        .home .main .veterans .veteran {
          float: left;
          width: 25%;
          padding: 1.25%; }
          .home .main .veterans .veteran:nth-child(2n + 1), .home .main .veterans .veteran:nth-child(3n + 1) {
            clear: none; }
          .home .main .veterans .veteran:nth-child(4n + 1) {
            clear: left; } }
  .home .main .resources {
    margin: 0 auto;
    max-width: 900px;
    padding: 180px 0; }
    .home .main .resources a {
      color: white; }
      .home .main .resources a:hover {
        color: #01aaeb;
        text-decoration: underline; }
    .home .main .resources p {
      margin: 0.5em 0 1.5em;
      font-family: "Arvo", serif; }

.story--topics > :first-child,
.story--honors > :first-child,
.story--stories > :first-child {
  margin-top: 10px;
  min-height: calc(100vh - 220px); }
  .story--topics > :first-child .image__img,
  .story--honors > :first-child .image__img,
  .story--stories > :first-child .image__img {
    max-height: 450px; }

[class*="document--sponsors-and-credits"] .main {
  background-color: #fff;
  padding: 20px; }
  [class*="document--sponsors-and-credits"] .main > div {
    max-width: 800px;
    margin: 0 auto; }
  [class*="document--sponsors-and-credits"] .main ul {
    list-style: none;
    padding-left: 0; }
[class*="document--sponsors-and-credits"] h2 {
  font-size: 1.5em;
  border-left: 5px solid #000;
  padding-left: 10px; }
[class*="document--sponsors-and-credits"] h3 {
  font-style: italic;
  font-size: 1.2em;
  margin: 25px 0 5px 0; }
[class*="document--sponsors-and-credits"] .sponsors li {
  margin: 50px 0; }

.educators h1,
.educators h2 {
  font-size: 2em;
  font-weight: 700;
  margin: 0.5em 0; }
.educators section {
  padding: 10% 5%;
  position: relative;
  line-height: 140%;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important; }
  @media (min-width: 47.5em) {
    .educators section {
      min-height: 100vh;
      padding: 50px; } }
  .educators section.heading {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.85) 100%), url(../images/for_educators_attention.jpg);
    background-position: top !important;
    text-align: center; }
    @media (min-width: 47.5em) {
      .educators section.heading .video {
        margin: 0 10%; } }
  .educators section.videoSection {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff; }
    @media (min-width: 47.5em) {
      .educators section.videoSection {
        flex-direction: row; } }
  .educators section.elementary {
    background: linear-gradient(0deg, rgba(59, 76, 96, 0.85) 0%, rgba(59, 76, 96, 0.85) 100%), url(../images/for_educators_volleyball.jpg); }
  .educators section.middlehigh {
    background: linear-gradient(0deg, rgba(85, 16, 16, 0.85) 0%, rgba(85, 16, 16, 0.85) 100%), url(../images/for_educators_enlistment.jpg); }
.educators .lede {
  font-size: 1.5em;
  line-height: 140%;
  margin: 30px 0; }
.educators .image__img {
  max-height: none !important; }
.educators .sectionBlock {
  flex: 1;
  width: 100%; }
.educators .textBlock {
  padding: 5% 10%; }
  @media (min-width: 47.5em) {
    .educators .textBlock {
      padding: 0 50px; } }
.educators .video {
  position: relative;
  margin: 0 -2.5%; }
  .educators .video:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 56.25%; }
  .educators .video > :first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important; }
.educators a {
  color: white;
  font-weight: 700; }
  .educators a:hover {
    color: #01aaeb; }

.no-scroll {
  overflow-y: none; }

.align--left {
  margin-right: auto; }
.align--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center; }
.align--right {
  margin-left: auto; }

@media (min-width: 47.5em) {
  .width--3-4 {
    width: 75%; }
  .width--2-3 {
    width: 66.6666%; }
  .width--1-2 {
    width: 50%; }
  .width--1-3 {
    width: 33.3333%; }
  .width--1-4 {
    width: 25%; } }

.document--404 .main {
  max-width: 90%;
  margin: 0 auto 2em auto; }

/*# sourceMappingURL=main.css.map */
