/*!
 * fullPage 2.7.9
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 */
html.fp-enabled,
.fp-enabled body {
    margin: 0;
    padding: 0;
    overflow:hidden;

    /*Avoid flicker on slides transitions for mobile phones #336 */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
@font-face {
  font-family: 'TiemposHeadline';
  src:  url('fonts/TiemposHeadlineWeb-Medium.woff2') format('woff2'),
        url('fonts/TiemposHeadlineWeb-Medium.eot')  format('embedded-opentype'),
        url('fonts/TiemposHeadlineWeb-Medium.woff') format('woff');
}
@font-face {
  font-family: 'FoundersGrotesk';
  src:  url('fonts/FoundersGroteskWeb-Light.woff2') format('woff2'),
        url('fonts/FoundersGroteskWeb-Light.eot')  format('embedded-opentype'),
        url('fonts/FoundersGroteskWeb-Light.woff') format('woff');
}
@font-face {
  font-family: 'Geogrotesque';
  src:  url('fonts/GeogrotesqueSemibold.woff2') format('woff2'),
        url('fonts/GeogrotesqueSemibold.eot')  format('embedded-opentype'),
        url('fonts/GeogrotesqueSemibold.woff') format('woff');
}
h1 {}
h2 {
    font-family: 'TiemposHeadline', Georgia, Times, serif;
    font-size: 1.1em;
    font-weight: normal;
}
p {
    font-family: 'FoundersGrotesk', helvetica, arial, sans-serif;
    font-size: 1em;
    line-height: 1.8em;
}
a {
  color: #ffffff;
  text-decoration:none;
  font-family: 'FoundersGrotesk', helvetica, arial, sans-serif;
  font-size: 1em;
}
a.button {
    border: 1px solid #000;
    padding: 13px 30px;
    margin: 30px auto 0;
    display: block;
    background-color: #ffffff;
    color: #000;
    width: 100px;
    -webkit-transition: .3s ease-out;
    -moz-transition: .3s ease-out;
    -o-transition: .3s ease-out;
    transition: .3s ease-out;
}
a.button:hover {
  background-color:#3c2415;
  color: #ffffff;
}
a.twitter {
  width: 30px;
  height: 30px;
  position: fixed;
  right: 2%;
  top: 3%;
}
#superContainer {
    height: 100%;
    position: relative;

    /* Touch detection for Windows 8 */
    -ms-touch-action: none;

    /* IE 11 on Windows Phone 8.1*/
    touch-action: none;
}
.fp-section {
    position: relative;
    -webkit-box-sizing: border-box; /* Safari<=5 Android<=3 */
    -moz-box-sizing: border-box; /* <=28 */
    box-sizing: border-box;
}
.fp-slide {
    float: left;
}
.fp-slide, .fp-slidesContainer {
    height: 100%;
    display: block;
}
.fp-slides {
    z-index:1;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-out; /* Safari<=6 Android<=4.3 */
    transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}
.fp-section.fp-table, .fp-slide.fp-table {
    display: table;
    table-layout:fixed;
    width: 100%;
}
.fp-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}
.fp-slidesContainer {
    float: left;
    position: relative;
}
.fp-controlArrow {
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
    position: absolute;
    z-index: 4;
    top: 50%;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -38px;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.fp-controlArrow.fp-prev {
    left: 15px;
    width: 0;
    border-width: 38.5px 34px 38.5px 0;
    border-color: transparent #fff transparent transparent;
}
.fp-controlArrow.fp-next {
    right: 15px;
    border-width: 38.5px 0 38.5px 34px;
    border-color: transparent transparent transparent #fff;
}
.fp-scrollable {
    overflow: scroll;
}
.fp-notransition {
    -webkit-transition: none !important;
    transition: none !important;
}
#fp-nav {
    position: fixed;
    height: 100vh;
    z-index: 100;
    /* margin-top: -32px; */
    top: 0;
    padding: 1% 0;
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
}
#fp-nav.left {
    left: 3%;
}
.fp-slidesNav{
    position: absolute;
    z-index: 4;
    left: 50%;
    opacity: 1;
}
.fp-slidesNav.bottom {
    bottom: 17px;
}
.fp-slidesNav.top {
    top: 17px;
}
#fp-nav ul,
.fp-slidesNav ul {
    margin: 0;
    padding: 0;
    height: 100%;
    margin-left: -1px;
}
#fp-nav ul li,
.fp-slidesNav ul li {
    display: block;
    width: 30px;
    height: 5.26%;
    position:relative;
}
.fp-slidesNav ul li {
    display: inline-block;
}
#fp-nav ul li a,
.fp-slidesNav ul li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}
#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span{
    height: 30px;
    width: 1px;
    border-radius: 0;
 }
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    border-radius: 0;
    position: absolute;
    z-index: 1;
    height: 4px;
    width: 1px;
    border: 0;
    background: #333;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span{
    width: 1px;
    height: 12px;
    margin: -4px;
}
#fp-nav ul li .fp-tooltip {
    position: absolute;
    top: -2px;
    color: #fff;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    display: block;
    opacity: 0;
    width: 0;
    cursor: pointer;
}
#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip {
    -webkit-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
    width: auto;
    opacity: 1;
}
#fp-nav ul li .fp-tooltip.right {
    right: 20px;
}
#fp-nav ul li .fp-tooltip.left {
    left: 20px;
}
.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell{
    height: auto !important;
}
/* Demos Menu
 * --------------------------------------- */
 #demosMenu{
    position:fixed;
    bottom: 10px;
    right:10px;
    z-index: 999;
 }

 #fullpage {
    width: 50%;
 }
 #right-content {
    background-color:#f9f9f9;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width:50%;
    right:0;
    top:0;
    height:100vh;
    position:fixed;
    -webkit-transition: background 500ms ease-out;
    -moz-transition: background 500ms ease-out;
    -o-transition: background 500ms ease-out;
    transition: background 500ms ease-out;
 }
 #right-content .info {
  text-align: right;
  position: fixed;
  bottom: 2%;
  right: 3%;
  width: 25%;
  opacity:0;
  -webkit-transition: all .5s cubic-bezier(0, 0, 0.11, 0.99);
  -moz-transition: all .5s cubic-bezier(0, 0, 0.11, 0.99);
  -o-transition: all .5s cubic-bezier(0, 0, 0.11, 0.99);
  transition: all .5s cubic-bezier(0, 0, 0.11, 0.99);
 }
 #right-content .info.active {
  text-align:right;
  position: fixed;
  bottom: 2%;
  right: 2%;
  margin-left: 0;
  opacity: 1;
 }
#right-content .info a,
#right-content .info p {
  margin: 0;
  color: #ffffff;
  margin-right: -20px;
  display:none;
}
#right-content .info p {
  transition-delay: .6s;
  font-size: .8em;
}
#right-content .info a {
  transition-delay: .5s;
}
#right-content .info.active p,
#right-content .info.active a {
  margin-right: 0;
  display: block;
}

/*---- Timeline 
.timeline {
    height: 100vh;
    width:1px;
    position: fixed;
    left: 3%;
    top:0;
}
-------*/
.year {
    position:fixed;
    left:4%;
    width: 11px;
    padding-top: 1%;
}

.year.first {
    top:5.26%;
}
.year.second {
    top:10.52%;
}
.year.third {
    top:15.78%;
}
.year.fourth {
    top:21.04%;
}
.year.fifth {
    top:26.3%;
}
.year.sixth {
    top:31.56%;
}
.year.seventh {
    top:36.82%;
}
.year.eighth {
    top:42.08%;
}
.year.ninth {
    top:47.34%;
}
.year.tenth {
    top:52.6%;
}
.year.eleventh {
    top:57.86%;
}
.year.twelfth {
    top:63.12%;
}
.year.thirteenth {
    top:68.38%;
}
.year.fourteenth {
    top:73.64%;
}
.year.fifteenth {
    top:78.9%;
}
.year.sixteenth {
    top:84.16%;
}
.year.seventeenth {
    top:89.42%;
}
.year.eighteenth {
    top:94.68%;
}

/* intro animation */

.stroke {
    -webkit-transition: .1s ease-out;
    -moz-transition: .1s ease-out;
    -o-transition: .1s ease-out;
    transition: .1s ease-out;
}
.year .stroke {
  fill: #A06628;
  transform: translate(-20px, 0px);
}
.year.first .stroke {
  clip-path: url(#1872);
}
.year.second .stroke {
  clip-path: url(#1890);
}
.year.third .stroke {
  clip-path: url(#1903);
}
.year.fourth .stroke {
  clip-path: url(#1906);
}
.year.fifth .stroke {
  clip-path: url(#1916);
}
.year.sixth .stroke {
  clip-path: url(#1919);
}
.year.seventh .stroke {
  clip-path: url(#1933);
}
.year.eighth .stroke {
  clip-path: url(#1934);
}
.year.ninth .stroke {
  clip-path: url(#1935);
}
.year.tenth .stroke {
  clip-path: url(#1938);
}
.year.eleventh .stroke {
  clip-path: url(#1956);
}
.year.twelfth .stroke {
  clip-path: url(#1956);
}
.year.thirteenth .stroke {
  clip-path: url(#1965);
}
.year.fourteenth .stroke {
  clip-path: url(#1968);
}
.year.fifteenth .stroke {
  clip-path: url(#1969);
}
.year.sixteenth .stroke {
  clip-path: url(#1971);
}
.year.seventeenth .stroke {
  clip-path: url(#1980);
}
.year.eighteenth .stroke {
  clip-path: url(#2016);
}
.year.active .stroke {
   transform: translate(0px, 0px);
}

/*--------- Section Styling -----------*/
.section {
    text-align:center;
    padding: 0 16%;
}
.section .intro {
    background-color: #ffffff;
    float: left;
    display:block;
}
.section .intro.event {
    width: 80%;
    padding: 0 10%;
}
hr.divider {
    width:10%;
    margin-top: 40px;
}
.section .intro.event.first p {
  margin: 30px 0;
}
.section .intro.event.first .st0,
.section .st0 {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation-iteration-count: 1;
  -webkit-transition: stroke-dashoffset 2.5s cubic-bezier(0, 0, 0.11, 0.99);
  -moz-transition: stroke-dashoffset 2.5s cubic-bezier(0, 0, 0.11, 0.99);
  -o-transition: stroke-dashoffset 2.5s cubic-bezier(0, 0, 0.11, 0.99);
  transition: stroke-dashoffset 2.5s cubic-bezier(0, 0, 0.11, 0.99);
}
.section .intro.event.first.active .st0,
.section.active .st0 {
    stroke-dashoffset: 0;
    stroke-dasharray: 600;
}
.section .intro.event.first .st1,
.section .st1 {
  opacity:0;
  -webkit-transition: opacity .5s ease-in-out;
  -moz-transition: opacity .5s ease-in-out;
  -o-transition: opacity .5s ease-in-out;
  transition: opacity .5s ease-in-out;
  transition-delay: .5s;
}
.section .intro.event.first.active .st1,
.section.active .st1 {
    opacity:1;
}
span.dropcap {
  font-size: 4em;
    float: left;
    line-height: .8em;
    padding-right: 10px;
    font-family: 'TiemposHeadline', georgia, serif;
}

.section .svg-container .line {
    position: absolute;
    top: 0;
    z-index: -1;
    height: 100%;
    left: 50%;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation-iteration-count: 1;
    -webkit-transition: stroke-dashoffset 1.5s ease-in;
    -moz-transition: stroke-dashoffset 1.5s ease-in;
    -o-transition: stroke-dashoffset 1.5s ease-in;
    transition: stroke-dashoffset 1.5s ease-in;
}
.section.first .svg-container .line {
    top: 50%;
    height: 50%;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
}
.section .svg-container.active .line {
    stroke-dashoffset: 0;
    stroke-dasharray: 1000;
}
h1 {
    font-family: 'TiemposHeadline', georgia, serif;
    color:#3c2415;
    font-size: 3.5em;
    line-height: 1em;
    font-weight:normal;
    margin: .3em 0;
}
#sectionintro h1 {
  font-size: 2.5em;
  line-height: 1.1em;
}
.intro.event.last h1 {
  font-size: 2.5em;
  line-height: 1.1em;
}
.section .intro.first h1, .section .intro.first .stars, .section .intro.first p, .section .intro.first .item {
    opacity:0;
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}
.section .intro.first.active h1, .section .intro.first.active .stars, .section .intro.first.active p, .section.intro.first.active .item {
    opacity:1;
}
.section .intro.first .stars {
    -webkit-transition-delay: .2s; /* Safari */
    transition-delay: .2s;
}
.section .intro.first p {
    -webkit-transition-delay: .4s; /* Safari */
    transition-delay: .4s;
}
.section .intro h1, .section .intro .stars, .section .intro p {
    opacity:0;
    -webkit-transition: opacity .8s ease-in-out;
    -moz-transition: opacity .8s ease-in-out;
    -o-transition: opacity .8s ease-in-out;
    transition: opacity .8s ease-in-out;
}
.section .intro .item {
    opacity:0;
    -webkit-transition: opacity .8s cubic-bezier(0, 0, 0.11, 0.99);
    -moz-transition: opacity .8s cubic-bezier(0, 0, 0.11, 0.99);
    -o-transition: opacity .8s cubic-bezier(0, 0, 0.11, 0.99);
    transition: opacity .8s cubic-bezier(0, 0, 0.11, 0.99);
}
.section.active h1, .section.active .stars, .section.active p, .section.active .item {
    opacity:1;
}
.section .stars {
    -webkit-transition-delay: 1.2s; /* Safari */
    transition-delay: 1.2s;
}
.section p {
    -webkit-transition-delay: 1.4s; /* Safari */
    transition-delay: 1.4s;
}
.section .date {
    width: 76px;
    height: 76px;
    display:block;
    margin: 0 auto;
    vertical-align: middle;
    font-family: 'Geogrotesque', helvetica, arial, sans-serif;
    font-weight:normal;
    color: #A06628;
    letter-spacing: .5px;
    position: relative;
}
.section .date .diamond {
    position: absolute;
    z-index:-1;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation-iteration-count: 1;
    -webkit-transition: stroke-dashoffset 1.5s cubic-bezier(0.11, 0.67, 0.58, 1);
    -moz-transition: stroke-dashoffset 1.5s cubic-bezier(0.11, 0.67, 0.58, 1);
    -o-transition: stroke-dashoffset 1.5s cubic-bezier(0.11, 0.67, 0.58, 1);
    transition: stroke-dashoffset 1.5s cubic-bezier(0.11, 0.67, 0.58, 1);
    transition-delay: .4s;
}
.section .date.active .diamond {
    stroke-dashoffset: 0;
    stroke-dasharray: 400;
}
.section .date svg {
    display:block;
    position: absolute;
}
.section .date span {
    padding-top: 30px;
    display: block;
}
.section .stars {
    width: 60px;
    height: 20px;
    display: block;
    margin: 0 auto;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}
.section p {
    text-align: left;
    margin-left: 0;
}
.section .list {
    width:100%;
    position:relative;
}
.section .list .item {
    margin: 1em 0;
    display: block;
    float: left;
    width: 100%;
    background-size: 60px 60px;
}
.section .list .item.one {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
    -moz-transition-delay: .2s;
    -o-transition-delay: .2s;
}
.section .list .item.two {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    -moz-transition-delay: .3s;
    -o-transition-delay: .3s;
}
.section .list .item.thr {
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
    -moz-transition-delay: .4s;
    -o-transition-delay: .4s;
}
.section .list .item.fou {
    -webkit-transition-delay: .5s;
    transition-delay: .5s;
    -moz-transition-delay: .5s;
    -o-transition-delay: .5s;
}
.section .list .item.fiv {
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
    -moz-transition-delay: .6s;
    -o-transition-delay: .6s;
}
.section .list .item.six {
    -webkit-transition-delay: .7s;
    transition-delay: .7s;
    -moz-transition-delay: .7s;
    -o-transition-delay: .7s;
}
.section .list .item.sev {
    -webkit-transition-delay: .8s;
    transition-delay: .8s;
    -moz-transition-delay: .8s;
    -o-transition-delay: .8s;
}
.section .list .item.eig {
    -webkit-transition-delay: .9s;
    transition-delay: .9s;
    -moz-transition-delay: .9s;
    -o-transition-delay: .9s;
}
.section .list .item.nin {
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
    -moz-transition-delay: 1s;
    -o-transition-delay: 1s;
}
.section .list .item.ten {
    -webkit-transition-delay: 1.1s;
    transition-delay: 1.1s;
    -moz-transition-delay: 1.1s;
    -o-transition-delay: 1.1s;
}
.section .list .item.ele {
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
    -moz-transition-delay: 1.2s;
    -o-transition-delay: 1.2s;
}
.section .list .item.twe {
    -webkit-transition-delay: 1.3s;
    transition-delay: 1.3s;
    -moz-transition-delay: 1.3s;
    -o-transition-delay: .1.3s;
}
.section .list .item.thi {
    -webkit-transition-delay: 1.4s;
    transition-delay: .1.4s;
    -moz-transition-delay: 1.4s;
    -o-transition-delay: 1.4s;
}
.section .list .item {
  background-color: transparent;
  background-position: top left;
  background-size: 50px 60px;
  background-repeat: no-repeat;
  background-image: url(chess.png)
}
.section .list .item.california {
  background-image: url(svg/california.svg);
}
.section .list .item.montana {
  background-image: url(svg/montana.svg);
}
.section .list .item.washington {
  background-image: url(svg/washington.svg);
}
.section .list .item.oregon {
  background-image: url(svg/oregon.svg);
}
.section .list .item.colorado {
  background-image: url(svg/colorado.svg);
}
.section .list .item.hawaii {
  background-image: url(svg/hawaii.svg);
}
.section .list .item.alaska {
  background-image: url(svg/alaska.svg);
}
.section .list .item.arizona {
  background-image: url(svg/arizona.svg);
}
.section .list .item.utah {
  background-image: url(svg/utah.svg);
}
.section .list .item.maine {
  background-image: url(svg/maine.svg);
}
.section .list .item.arkansas {
  background-image: url(svg/arkansas.svg);
}
.section .list .item.virginia {
  background-image: url(svg/virginia.svg);
}
.section .list .item.wyoming {
  background-image: url(svg/wyoming.svg);
}
.section .list .item.newmexico {
  background-image: url(svg/newmexico.svg);
}
.section .list .item.florida {
  background-image: url(svg/florida.svg);
}
.section .list .item.tennessee {
  background-image: url(svg/tennessee.svg);
}
.section .list .item.michigan {
  background-image: url(svg/michigan.svg);
}
.section .list .item.kentucky {
  background-image: url(svg/kentucky.svg);
}
.section .list .item.texas {
  background-image: url(svg/texas.svg);
}
.section .list .item.virginislands {
  background-image: url(svg/virginislands.svg);
}
.section .list .item.southdakota {
  background-image: url(svg/southdakota.svg);
}

.section .list .item .item-year {
    display: block;
    width: 10%;
    text-transform: uppercase;
    float:left;
    text-align: right;
    line-height: 3.4em;
    font-family: 'Geogrotesque', helvetica, arial, sans-serif;
    font-weight:normal;
    color: #A06628;
    letter-spacing: .5px;
}
.section .list .item .info {
    display: block;
    padding-left: 5%;
    width: 70%;
    float:left;
    text-align: left;
}
.section .list .item .info .name {
    display:block;
    width: 100%;
    font-family:  'TiemposHeadline', georgia, serif;
    font-size: 1.6em;
    line-height: 1.5em;
}
.section .list .item .info .name h2 {
    margin: 0;
    margin-left: -20px;
    -webkit-transition: margin .5s cubic-bezier(0, 0, 0.11, 0.99);
    -moz-transition: margin .5s cubic-bezier(0, 0, 0.11, 0.99);
    -o-transition: margin .5s cubic-bezier(0, 0, 0.11, 0.99);
    transition: margin .5s cubic-bezier(0, 0, 0.11, 0.99);
}
.section .list .item.one .info .name h2,
.section .list .item.one .info p {
    transition-delay: .1s;
}
.section .list .item.two .info .name h2,
.section .list .item.two .info p {
    transition-delay: .2s;
}
.section .list .item.thr .info .name h2,
.section .list .item.thr .info p {
    transition-delay: .3s;
}
.section .list .item.fou .info .name h2,
.section .list .item.fou .info p {
    transition-delay: .4s;
}
.section .list .item.fiv .info .name h2,
.section .list .item.fiv .info p {
    transition-delay: .5s;
}
.section .list .item.six .info .name h2,
.section .list .item.six .info p {
    transition-delay: .6s;
}
.section .list .item.sev .info .name h2,
.section .list .item.sev .info p {
    transition-delay: .7s;
}
.section.active .list .item .info .name h2,
.section.active .list .item .info p {
    margin-left: 0;
}
.section .list .item .info .state p {
    display:block;
    width: 100%;
    margin: 0;
    font-size: 1em;
}

.section .list.small .item .item-year {
    line-height: 1.5em;
    letter-spacing: .5px;
    font-size: 0.8em;
}
.section .list.small .item .info {
    font-size: 0.8em;
}
.section .list.small .item .info .name {
    font-size: 0.8em;
    line-height: 1.5em;
}
.section .list.small .item .info .name h2 {
    font-size:2em;
}
.section .list.small .item .info .state p {
    font-size: 1.2em;
}

/* Arrow Scrollers */

.section .arrows {
    width: 30px;
    height: 30px;
    display: block;
    margin: 0 auto;
}
.section .arrows .first,
.section .arrows .second {
    fill:#ffffff;
    stroke: #3C2415;
}
.arrows svg polygon.first {
  animation: scrollanim 1.2s ease-in-out infinite;
  animation-delay: 0.3s;
}
.arrows svg polygon.second {
  animation: scrollanim2 1.2s ease-in-out infinite;
}

@-webkit-keyframes scrollanim {
  0% {
    -webkit-transform: translate(0, -40px);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  99% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
}
@-moz-keyframes scrollanim {
  0% {
    -moz-transform: translate(0, -40px);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  99% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
}
@keyframes scrollanim {
  0% {
    -webkit-transform: translate(0, -40px);
    -moz-transform: translate(0, -40px);
    -ms-transform: translate(0, -40px);
    -o-transform: translate(0, -40px);
    transform: translate(0, -40px);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  99% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
}
@-webkit-keyframes scrollanim2 {
  0% {
    -webkit-transform: translate(0, -40px);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  99% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
}
@-moz-keyframes scrollanim2 {
  0% {
    -moz-transform: translate(0, -40px);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  99% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
}
@keyframes scrollanim2 {
  0% {
    -webkit-transform: translate(0, -40px);
    -moz-transform: translate(0, -40px);
    -ms-transform: translate(0, -40px);
    -o-transform: translate(0, -40px);
    transform: translate(0, -40px);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  99% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
}


/* Mobile Styling */

@media only screen and (max-width: 768px) {
  #fullpage {
    width: 100%;
  }
  #right-content {
    display:none;
  }
  .section {
    padding: 0 8%;
  }
  h1 {
    font-size: 2.5em;
  }
  .section .list .item .item-year {
    width: 12%;
  }
  h2 {
    font-size: 0.8em;
    line-height: 1em;
  }
  .section .date span {
    padding-top: 22px;
    display: block;
    font-size: .7em;
  }
  .section .date {
    width: 56px;
    height: 56px;
  }
  .section .list .item {
    margin: .2em 0;
  }
  p {
    line-height: 1.6em;
  }
  .section .list .item {
    background-size: 40px 60px;
  }
}

@-moz-document url-prefix() { 
  .timeline {
     display:none;
  }
}
