/* CSS Document */
/* Variables */
/*to be changed*/
/* Global */
body {
  font-family: "karla", sans-serif;
  overflow-y: hidden; }

p {
  line-height: 1.5;
  font-size: .8rem;
  padding-bottom: .75em; }

/* HEADER */
/* logo */
.site-logo {
  display: flex; }

.logomark {
  background-color: #FF2400;
  width: 3em;
  height: 3em;
  border-style: none solid none none;
  border-color: white;
  border-width: 2px; }

.site-title-link {
  color: white;
  text-decoration: none;
  font-family: "inconsolata", monospace;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .12em; }

.site-title {
  padding: .8em 1em; }

/* nav */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: black;
  z-index: 9999; }

.primary-nav {
  border-style: none;
  border-color: white;
  border-width: 1.5px;
  background-color: black;
  display: none; }
  @media (min-width: 45rem) {
    .primary-nav {
      display: inline-block;
      position: absolute;
      top: .6em;
      right: 0;
      font-size: .8em;
      border-left: solid white 1.5px; } }
  .primary-nav a {
    font-family: "karla", sans-serif;
    letter-spacing: .1em;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1em;
    padding: 1em 2em;
    background-color: rgba(255, 255, 255, 0);
    color: white; }
    @media (min-width: 45rem) {
      .primary-nav a a {
        margin-right: 1px;
        border: none; } }
  .primary-nav a:hover {
    color: #FF2400; }
  .primary-nav a:active {
    color: #FF2400; }
  @media (min-width: 45rem) {
    .primary-nav ul {
      display: flex;
      text-decoration: none; }
    .primary-nav li:last-child a {
      margin-right: 0; } }

#timelineNav {
  display: none; }

.timeline-nav {
  background-color: #FF2400;
  animation: fadeIn ease .5s;
  -webkit-animation: fadeIn ease .5s;
  -moz-animation: fadeIn ease .5s;
  -o-animation: fadeIn ease .5s;
  -ms-animation: fadeIn ease .5s; }
  @media (min-width: 45rem) {
    .timeline-nav {
      position: absolute;
      top: 3.3em;
      width: 100vw;
      right: 0;
      align-content: right;
      padding: 0 3em 0 3em; } }
  @media (min-width: 55rem) {
    .timeline-nav {
      padding: 0 10em 0 10em; } }
  @media (min-width: 65rem) {
    .timeline-nav {
      padding: 0 15em 0 15em; } }
  @media (min-width: 75rem) {
    .timeline-nav {
      padding: 0 20em 0 20em; } }
  @media (min-width: 85rem) {
    .timeline-nav {
      padding: 0 25em 0 25em; } }
  @media (min-width: 45rem) {
    .timeline-nav__links {
      display: flex;
      justify-content: space-between;
      text-align: center; } }
  .timeline-nav a:hover {
    color: black; }
  .timeline-nav a:active {
    color: #FF2400; }

.down {
  border: solid white;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  right: 5%;
  position: absolute; }
  @media (min-width: 45rem) {
    .down {
      position: relative;
      right: 0;
      border-width: 0 1px 1px 0;
      top: -.25em; } }

.container {
  cursor: pointer;
  position: absolute;
  right: 1em;
  top: .5em; }

.bar1, .bar2, .bar3 {
  width: 30px;
  height: 2px;
  background-color: white;
  margin: 6px 0;
  transition: 0.4s; }
  @media (min-width: 45rem) {
    .bar1, .bar2, .bar3 {
      display: none; } }

.menu-icon {
  font-size: .9em;
  padding: .5em;
  position: absolute;
  top: .25em;
  right: 1em;
  color: white; }
  @media (min-width: 45rem) {
    .menu-icon .menu-icon {
      display: none; } }

.show-menu .primary-nav {
  display: block; }

.nav-underline {
  background-color: white;
  height: 1.5px; }

/* CSS TRICKS HORIZONTAL SCROLL & SCROLL SNAP */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

.slider {
  scroll-snap-type: x proximity;
  display: flex;
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll;
  scroll-behavior: smooth; }

.slider.active {
  cursor: grabbing;
  cursor: -webkit-grabbing; }

section {
  border-right: 1px solid #FF2400;
  height: 100vh;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden; }

/* Title Sections */
.section-title {
  background-color: black;
  z-index: -1000;
  min-width: 100vw;
  height: calc(100vh - 3em); }

.section-title-text {
  padding: 0em 12vw;
  position: absolute;
  top: 40%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }
  @media only screen and (min-width: 40rem) {
    .section-title-text {
      padding: 0em 20vw; } }
  @media only screen and (min-width: 70rem) {
    .section-title-text {
      padding: 0em 25vw; } }
  @media only screen and (min-width: 100rem) {
    .section-title-text {
      padding: 0em 30vw; } }

.intro-text {
  font-family: "spectral", serif;
  color: white;
  font-size: 1.3em;
  font-weight: 300;
  text-align: center;
  z-index: 999;
  padding-bottom: .3em; }
  @media only screen and (min-width: 40rem) {
    .intro-text {
      font-size: 1.6em; } }
  @media only screen and (min-width: 60rem) {
    .intro-text {
      font-size: 2em; } }
  @media only screen and (min-width: 80rem) {
    .intro-text {
      font-size: 2.4em; } }
  @media only screen and (min-width: 100rem) {
    .intro-text {
      font-size: 2.8em; } }

.fade-in {
  animation: fadeIn ease 3s;
  -webkit-animation: fadeIn ease 3s;
  -moz-animation: fadeIn ease 3s;
  -o-animation: fadeIn ease 3s;
  -ms-animation: fadeIn ease 3s; }
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-moz-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-o-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-ms-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.v1 {
  border-left: 1px solid #830002;
  height: 100vh;
  position: absolute;
  left: 50%;
  margin-left: -40%;
  top: 0;
  z-index: -10; }
  @media only screen and (min-width: 40rem) {
    .v1 {
      margin-left: -35%; } }
  @media only screen and (min-width: 70rem) {
    .v1 {
      margin-left: -30%; } }
  @media only screen and (min-width: 100rem) {
    .v1 {
      margin-left: -25%; } }

.v2 {
  border-left: 1px solid #830002;
  height: 100vh;
  position: absolute;
  left: 50%;
  margin-left: -3px;
  top: 0;
  z-index: -10; }

.v3 {
  border-left: 1px solid #830002;
  height: 100vh;
  position: absolute;
  left: 50%;
  margin-left: 40%;
  top: 0;
  z-index: -10; }
  @media only screen and (min-width: 40rem) {
    .v3 {
      margin-left: 35%; } }
  @media only screen and (min-width: 70rem) {
    .v3 {
      margin-left: 30%; } }
  @media only screen and (min-width: 100rem) {
    .v3 {
      margin-left: 25%; } }

.intro__nav {
  background-color: black;
  position: absolute;
  top: 45%;
  right: 1%;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  color: black;
  border: 1px solid #830002;
  text-align: center;
  display: flex;
  margin: auto; }
  @media only screen and (min-width: 28rem) {
    .intro__nav {
      right: 2%; } }
  @media only screen and (min-width: 40rem) {
    .intro__nav {
      right: 5%;
      width: 2em;
      height: 2em; } }
  @media only screen and (min-width: 60rem) {
    .intro__nav {
      width: 3em;
      height: 3em; } }
  @media only screen and (min-width: 100rem) {
    .intro__nav {
      right: 15%;
      width: 3.5em;
      height: 3.5em;
      border: 2px solid #830002; } }
.intro__arrow {
  cursor: default;
  margin: auto;
  color: white; }

/* Captions */
.photo-caption {
  background-color: white;
  padding: .5em .5em 0em;
  border: solid 1px;
  min-width: 100%;
  cursor: default;
  z-index: 10000000;
  -webkit-transform: translateZ(0); }

.caption {
  font-family: "spectral", serif;
  font-size: .7em;
  text-align: left; }
  @media only screen and (min-width: 60rem) {
    .caption {
      font-size: .8em; } }
  .caption .protagonist {
    text-decoration: none; }
    .caption .protagonist:hover, .caption .protagonist.hovered {
      /* :hover happens via mouse, .hovered via javascript */
      cursor: default;
      text-decoration: underline; }
      .caption .protagonist:hover[data-protagonist=jessica], .caption .protagonist.hovered[data-protagonist=jessica] {
        color: #FFB800; }
      .caption .protagonist:hover[data-protagonist=jacqueline], .caption .protagonist.hovered[data-protagonist=jacqueline] {
        color: #BD00FF; }
      .caption .protagonist:hover[data-protagonist=mom], .caption .protagonist.hovered[data-protagonist=mom] {
        color: #FF0000; }
      .caption .protagonist:hover[data-protagonist=dad], .caption .protagonist.hovered[data-protagonist=dad] {
        color: #0066FF; }
      .caption .protagonist:hover[data-protagonist=mgma], .caption .protagonist.hovered[data-protagonist=mgma] {
        color: #DBFF00; }
      .caption .protagonist:hover[data-protagonist=mgpa], .caption .protagonist.hovered[data-protagonist=mgpa] {
        color: #FF5C00; }
      .caption .protagonist:hover[data-protagonist=pgma], .caption .protagonist.hovered[data-protagonist=pgma] {
        color: #000; }
      .caption .protagonist:hover[data-protagonist=pgpa], .caption .protagonist.hovered[data-protagonist=pgpa] {
        color: #1A427D; }
      .caption .protagonist:hover[data-protagonist=jiujiu], .caption .protagonist.hovered[data-protagonist=jiujiu] {
        color: #4B00C6; }
      .caption .protagonist:hover[data-protagonist=gandie], .caption .protagonist.hovered[data-protagonist=gandie] {
        color: #006937; }
      .caption .protagonist:hover[data-protagonist=ganma], .caption .protagonist.hovered[data-protagonist=ganma] {
        color: #FF6FDF; }
      .caption .protagonist:hover[data-protagonist=emily], .caption .protagonist.hovered[data-protagonist=emily] {
        color: #AEECFF; }

/* Highlighted Photo Section */
.highlight__section {
  min-width: 100vw;
  background-color: #FEE5b4;
  height: calc(100vh - 3em);
  display: flex;
  align-items: center;
  justify-content: center; }
.highlight__background {
  position: absolute; }
  .highlight__background__video {
    min-height: 100vh; }
.highlight__container {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 3em);
  align-items: center;
  justify-content: center;
  padding: 1em;
  margin-bottom: .5em;
  max-height: 100vh;
  width: 100vw;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
.highlight__photo {
  padding: 0;
  max-width: 18em; }
  @media only screen and (min-width: 40rem) {
    .highlight__photo {
      max-width: 24em; } }
  @media only screen and (min-width: 60rem) {
    .highlight__photo {
      max-width: 32em; } }
  @media only screen and (min-width: 80rem) {
    .highlight__photo {
      max-width: 36em; } }
  .highlight__photo .image {
    position: relative; }
    .highlight__photo .image .photo {
      max-width: 100%; }
    .highlight__photo .image .overlay {
      position: absolute;
      top: 0;
      left: 0;
      max-width: 100%;
      height: auto; }
    .highlight__photo .image .overlay {
      mix-blend-mode: soft-light; }
    .highlight__photo .image .protagonist {
      /* applied to <path> */
      opacity: 0; }
      .highlight__photo .image .protagonist[data-protagonist=jessica] {
        color: #FFB800; }
      .highlight__photo .image .protagonist[data-protagonist=jacqueline] {
        color: #BD00FF; }
      .highlight__photo .image .protagonist[data-protagonist=mom] {
        color: #FF0000; }
      .highlight__photo .image .protagonist[data-protagonist=dad] {
        color: #0066FF; }
      .highlight__photo .image .protagonist[data-protagonist=mgma] {
        color: #DBFF00; }
      .highlight__photo .image .protagonist[data-protagonist=mgpa] {
        color: #FF5C00; }
      .highlight__photo .image .protagonist[data-protagonist=pgma] {
        color: #000; }
      .highlight__photo .image .protagonist[data-protagonist=pgpa] {
        color: #1A427D; }
      .highlight__photo .image .protagonist[data-protagonist=jiujiu] {
        color: #4B00C6; }
      .highlight__photo .image .protagonist[data-protagonist=gandie] {
        color: #006937; }
      .highlight__photo .image .protagonist[data-protagonist=ganma] {
        color: #FF6FDF; }
      .highlight__photo .image .protagonist[data-protagonist=emily] {
        color: #AEECFF; }
      .highlight__photo .image .protagonist:hover, .highlight__photo .image .protagonist.hovered {
        /* :hover happens via mouse, .hovered via javascript */
        opacity: 1; }
.highlight__vert {
  padding: 0;
  max-width: 14em; }
  @media only screen and (min-width: 40rem) {
    .highlight__vert {
      max-width: 18em; } }
  @media only screen and (min-width: 60rem) {
    .highlight__vert {
      max-width: 20em; } }
  @media only screen and (min-width: 80rem) {
    .highlight__vert {
      max-width: 19em; } }
  .highlight__vert .image {
    position: relative; }
    .highlight__vert .image .photo {
      max-width: 100%; }
    .highlight__vert .image .overlay {
      position: absolute;
      top: 0;
      left: 0;
      max-width: 100%;
      height: auto; }
    .highlight__vert .image .overlay {
      mix-blend-mode: soft-light; }
    .highlight__vert .image .protagonist {
      /* applied to <path> */
      opacity: 0; }
      .highlight__vert .image .protagonist[data-protagonist=jessica] {
        color: #FFB800; }
      .highlight__vert .image .protagonist[data-protagonist=jacqueline] {
        color: #BD00FF; }
      .highlight__vert .image .protagonist[data-protagonist=mom] {
        color: #FF0000; }
      .highlight__vert .image .protagonist[data-protagonist=dad] {
        color: #0066FF; }
      .highlight__vert .image .protagonist[data-protagonist=mgma] {
        color: #DBFF00; }
      .highlight__vert .image .protagonist[data-protagonist=mgpa] {
        color: #FF5C00; }
      .highlight__vert .image .protagonist[data-protagonist=pgma] {
        color: #000; }
      .highlight__vert .image .protagonist[data-protagonist=pgpa] {
        color: #1A427D; }
      .highlight__vert .image .protagonist[data-protagonist=jiujiu] {
        color: #4B00C6; }
      .highlight__vert .image .protagonist[data-protagonist=gandie] {
        color: #006937; }
      .highlight__vert .image .protagonist[data-protagonist=ganma] {
        color: #FF6FDF; }
      .highlight__vert .image .protagonist[data-protagonist=emily] {
        color: #AEECFF; }
      .highlight__vert .image .protagonist:hover, .highlight__vert .image .protagonist.hovered {
        /* :hover happens via mouse, .hovered via javascript */
        opacity: 1; }

/* Timeline */
.timeline {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 4.5em;
  /*background-color: cyan;*/ }
  .timeline__container {
    display: flex;
    margin: auto;
    /*background-color: purple;*/
    align-content: flex-start;
    width: 14rem; }
  .timeline__circle {
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    color: black;
    border: 1px solid black;
    text-align: center;
    display: flex;
    margin: auto; }
  .timeline__circlewhite {
    width: 2.75em;
    height: 2.75em;
    border-radius: 50%;
    background-color: rbga(105, 105, 105, 0.5);
    border: 1px solid #FF2400;
    text-align: center;
    display: flex;
    margin: auto; }
  .timeline__text {
    color: black;
    line-height: 0;
    padding-top: .7em;
    margin: auto;
    font-size: .7em; }
  .timeline__textwhite {
    color: white;
    line-height: 0;
    padding-top: .7em;
    margin: auto;
    font-size: .7em; }
  .timeline button {
    -webkit-appearance: none;
    background: transparent;
    border: 0;
    outline: 0;
    /*width: 100%;*/
    /*background-color: yellow;*/ }
  .timeline svg {
    padding: 0;
    /*background-color: green;*/ }
  .timeline__arrow {
    cursor: default;
    margin: auto;
    width: 2em;
    height: 4em;
    color: black; }
  .timeline__timeline__white p {
    color: white; }

.left:hover polyline,
.left:focus polyline {
  stroke-width: 3; }

.left:active polyline {
  stroke-width: 6;
  transition: all 100ms ease-in-out; }

.right:hover polyline,
.right:focus polyline {
  stroke-width: 3; }

.right:active polyline {
  stroke-width: 6;
  transition: all 100ms ease-in-out; }

polyline {
  transition: all 250ms ease-in-out; }

/* Historical Section */
.historical__section {
  min-width: 100vw;
  height: calc(100vh - 3em); }
.historical__background {
  max-height: 100vh;
  width: 100vw;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
.historical__photo-grid {
  display: flex;
  flex-direction: row;
  height: calc(100vh - 3em);
  align-items: center;
  justify-content: center;
  padding: 1em; }
.historical__photo-highlight {
  padding: .5em;
  max-height: 50vh;
  margin: auto;
  max-width: 9em; }
  @media only screen and (min-width: 40rem) {
    .historical__photo-highlight {
      max-width: 12em; } }
  @media only screen and (min-width: 60rem) {
    .historical__photo-highlight {
      max-width: 16em; } }
  @media only screen and (min-width: 80rem) {
    .historical__photo-highlight {
      max-width: 18em; } }

/* Type Section */
.type-section {
  background-color: white;
  min-width: 22rem;
  /*responsive get smaller as screen gets bigger*/
  overflow-y: scroll;
  height: calc(100vh - 3em); }

.type-section-text {
  padding: 1.5em; }
  .type-section-text__header {
    font-family: "karla", sans-serif;
    font-weight: 800;
    font-size: .9rem;
    padding-bottom: 1em; }
  .type-section-text__body {
    font-family: "karla", sans-serif;
    font-size: .9rem;
    padding-bottom: 1em;
    line-height: 125%; }

/* Portrait-Grid Section */
.portrait-grid-section {
  background-color: black;
  display: block;
  align-content: center;
  margin: 0 auto;
  position: relative;
  min-width: 100vw;
  height: calc(100vh - 3em); }

.portrait-grid-group {
  height: calc(100vh - 3em);
  display: flex;
  justify-content: center;
  padding: 1em; }
  .portrait-grid-group__photo {
    padding: .5em;
    max-width: 8.5em; }
    @media only screen and (min-width: 25rem) {
      .portrait-grid-group__photo {
        max-width: 10em; } }
    @media only screen and (min-width: 35rem) {
      .portrait-grid-group__photo {
        max-width: 12em;
        padding: .75em; } }
    .portrait-grid-group__photo .image {
      position: relative; }
      .portrait-grid-group__photo .image .photo {
        max-width: 100%; }
      .portrait-grid-group__photo .image .overlay {
        position: absolute;
        top: 0;
        left: 0;
        max-width: 100%;
        height: auto; }
      .portrait-grid-group__photo .image .overlay {
        mix-blend-mode: soft-light; }
      .portrait-grid-group__photo .image .protagonist {
        /* applied to <path> */
        opacity: 0; }
        .portrait-grid-group__photo .image .protagonist[data-protagonist=jessica] {
          color: #FFB800; }
        .portrait-grid-group__photo .image .protagonist[data-protagonist=jacqueline] {
          color: #BD00FF; }
        .portrait-grid-group__photo .image .protagonist[data-protagonist=mom] {
          color: #FF0000; }
        .portrait-grid-group__photo .image .protagonist[data-protagonist=dad] {
          color: #0066FF; }
        .portrait-grid-group__photo .image .protagonist[data-protagonist=mgma] {
          color: #DBFF00; }
        .portrait-grid-group__photo .image .protagonist[data-protagonist=mgpa] {
          color: #FF5C00; }
        .portrait-grid-group__photo .image .protagonist[data-protagonist=pgma] {
          color: #000; }
        .portrait-grid-group__photo .image .protagonist[data-protagonist=pgpa] {
          color: #1A427D; }
        .portrait-grid-group__photo .image .protagonist[data-protagonist=jiujiu] {
          color: #4B00C6; }
        .portrait-grid-group__photo .image .protagonist[data-protagonist=gandie] {
          color: #006937; }
        .portrait-grid-group__photo .image .protagonist[data-protagonist=ganma] {
          color: #FF6FDF; }
        .portrait-grid-group__photo .image .protagonist[data-protagonist=emily] {
          color: #AEECFF; }
        .portrait-grid-group__photo .image .protagonist:hover, .portrait-grid-group__photo .image .protagonist.hovered {
          /* :hover happens via mouse, .hovered via javascript */
          opacity: 1; }

.portrait-grid-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
  padding: 1em; }
  @media only screen and (min-width: 30rem) {
    .portrait-grid-container {
      max-width: 30em; } }

/* Story-Photo Section */
.story__section {
  background-color: black;
  display: block;
  align-content: center;
  margin: 0 auto;
  position: relative;
  min-width: 300vw;
  height: calc(100vh - 3em); }
  @media only screen and (min-width: 30rem) {
    .story__section {
      min-width: 200vw; } }
  @media only screen and (min-width: 40rem) {
    .story__section {
      min-width: 150vw; } }
  @media only screen and (min-width: 60rem) {
    .story__section {
      min-width: 100vw; } }
.story__container {
  display: flex;
  padding: 2em 1em;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 3em);
  /*width: 100vw;*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 10000000;
  -webkit-transform: translateZ(0); }
.story__background {
  max-height: 100vh;
  width: 100vw;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 255, 0.5); }
.story__photo {
  max-width: 20em;
  padding: 1.5em; }
  @media only screen and (min-width: 40rem) {
    .story__photo {
      max-width: 24em; } }
.story__feature {
  max-width: 28em;
  padding: 1.5em; }
  @media only screen and (min-width: 40rem) {
    .story__feature {
      max-width: 30em; } }
.story__headline {
  font-family: "spectral", serif;
  color: white;
  font-size: 1.3em;
  line-height: 1.5;
  font-weight: 300;
  text-align: left;
  z-index: 999;
  padding-bottom: 1.5em;
  /*text-shadow: 1px 1px 1px #808080;*/ }
  @media only screen and (min-width: 40rem) {
    .story__headline {
      font-size: 1.4em; } }
  @media only screen and (min-width: 60rem) {
    .story__headline {
      font-size: 1.5em; } }
  @media only screen and (min-width: 80rem) {
    .story__headline {
      font-size: 1.6em; } }
  .story__headline__black {
    font-family: "spectral", serif;
    color: black;
    font-size: 1.3em;
    font-weight: 300;
    text-align: left;
    z-index: 999;
    padding-bottom: 1.5em;
    /*text-shadow: 1px 1px 1px #808080;*/ }
    @media only screen and (min-width: 40rem) {
      .story__headline__black {
        font-size: 1.4em; } }
    @media only screen and (min-width: 60rem) {
      .story__headline__black {
        font-size: 1.5em; } }
    @media only screen and (min-width: 80rem) {
      .story__headline__black {
        font-size: 1.6em; } }
.story__text {
  font-family: "spectral", serif;
  color: white;
  font-size: 1em;
  weight: 100; }
  .story__text__black {
    font-family: "spectral", serif;
    color: black;
    font-size: 1em;
    weight: 100; }
.story__spacer {
  position: relative;
  width: 50vw;
  height: 24rem; }
.story__thanks {
  max-width: 18em;
  padding: 1.5em; }
  .story__thanks p {
    font-size: .8em; }
  @media only screen and (min-width: 40rem) {
    .story__thanks {
      max-width: 20em;
      font-size: .9em; } }

/* Multi-Photo Section */
.multi-photo-section {
  background-color: black;
  display: block;
  align-content: center;
  justify-content: center;
  position: relative;
  min-width: 250vw;
  overflow: visible;
  height: calc(100vh - 3em); }
  @media only screen and (min-width: 30rem) {
    .multi-photo-section {
      min-width: 200vw; } }
  @media only screen and (min-width: 40rem) {
    .multi-photo-section {
      min-width: 175vw; } }
  @media only screen and (min-width: 50rem) {
    .multi-photo-section {
      min-width: 150vw; } }
  @media only screen and (min-width: 80rem) {
    .multi-photo-section {
      min-width: 125vw; } }

.multi-photo-container {
  display: flex;
  height: 90vh;
  align-content: center;
  justify-content: center;
  width: 100%;
  position: relative; }
  @media only screen and (min-height: 40rem) {
    .multi-photo-container {
      height: 85vh; } }
  @media only screen and (min-height: 50rem) {
    .multi-photo-container {
      height: 82vh; } }
  @media only screen and (min-height: 60rem) {
    .multi-photo-container {
      height: 70vh; } }

.multi-photo-group {
  height: 100%;
  /* 3em is approx height of header ? */
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  width: 100%;
  position: relative; }
  .multi-photo-group__photo {
    padding: 1em;
    max-width: 13rem;
    position: relative;
    max-height: 65%; }
    @media only screen and (min-width: 40rem) {
      .multi-photo-group__photo {
        max-width: 14rem;
        padding: 1.25em; } }
    @media only screen and (min-width: 60rem) {
      .multi-photo-group__photo {
        max-width: 15rem; } }
    @media only screen and (min-width: 80rem) {
      .multi-photo-group__photo {
        max-width: 15rem; } }
    @media only screen and (min-width: 100rem) {
      .multi-photo-group__photo {
        max-width: 16rem; } }
  .multi-photo-group__column {
    padding: 1em;
    max-width: 20rem;
    position: relative;
    max-height: 100%; }
    @media only screen and (min-width: 40rem) {
      .multi-photo-group__column {
        max-width: 22rem;
        padding: 1em; } }
    @media only screen and (min-width: 60rem) {
      .multi-photo-group__column {
        max-width: 23rem; } }
    @media only screen and (min-width: 80rem) {
      .multi-photo-group__column {
        max-width: 24rem; } }

/* Video Section */
.video-section {
  background-color: black;
  min-width: 100vw;
  height: calc(100vh - 3em);
  display: flex;
  align-items: center;
  justify-content: center; }

.video {
  padding: 2em;
  max-width: 60rem; }
