@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Fira+Sans:200,400,500);
* {
  border: 0;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  height: inherit;
}


div.container {
  display: flex;
  flex: auto;
  flex-direction: column;
  max-height: 100%;
}


div.item {
  display: flex;
  flex: auto;
  overflow-y: auto;
}

#timeline {
  position: relative;
  display: table;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
    margin-top: 5rem;

}
#timeline div:after {
  content: '';
  width: 2px;
  position: absolute;
  top: .5rem;
  bottom: 0rem;
  left: 60px;
  z-index: 1;
  background: black;
}
#timeline h3 {
  position: -webkit-sticky;
  position: sticky;
  top: 5rem;
  margin: 0;
  font-weight: 400;
}
@media (min-width: 62em) {
  #timeline h3 {
    font-size: 20px;
  }
}
#timeline section.year {
  position: relative;
}

#timeline section.year section {
  position: relative;
  padding-bottom: 1.2em;
  margin-bottom: 2em;
}
#timeline section.year section h4 {
  position: absolute;
  bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2em;
  margin: 0;
  padding: 0 0 0 80px;
  color: black;
}
@media (min-width: 62em) {
  #timeline section.year section h4 {
    font-size: 20px;
  }
}
#timeline section.year section ul {
  list-style-type: none;
  padding: 0 0 0 75px;
  margin: -1.5rem 0 4em;
  max-width: 32rem;
  font-size: 20px;
}
@media (min-width: 62em) {
  #timeline section.year section ul {
    font-size: 20px;
    padding: 0 0 0 81px;
  }
}
#timeline section.year section ul:last-child {
  margin-bottom: 0;
}
#timeline section.year section ul:first-of-type:after {    /* dot */

  content: '';
  width: 10px;
  height: 10px;
  background: black;
  border: 1px solid black;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  left: 55px;
  top: 5px;
  z-index: 5;
}
