@import url("https://fonts.googleapis.com/css?family=Open+Sans");
h2 {
  color: #343434;
  font-size: 32px;
  margin: 0 0 10px 0;
 
}

h3 {
  color: #d81e05;
  font-size: 16px;
  margin: 0 0 10px 0;
}

p {
  color: #343434;
  font-size: 18px;
  margin: 0 0 10px 0;
}

body, html {
  background-color: #f4f4f4;
}
.fa-angle-right:before {
    font-family: FontAwesome;
}

*, *:before, *:after {
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  padding: 0;
  margin: 0;
}

.timeline {
  display: flex;
  overflow-x: hidden;
  margin: 30px 0px;
  text-align:left;
  padding-top:30px;
}



.timeline:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin-top: 299px;
  height: 2px;
  border: 2px solid #dedede;
}

.timeline-container {
  display: flex;
  transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-card {
  flex: 0 0 auto;
  position: relative;
  padding: 20px;
  width: 400px;
  height: 250px;
  background: #fff;
  border: 1px solid #dedede;
}
.timeline-card h5 {
font-weight: normal;
font-style: italic;
}

.timeline-card h2 {
 padding-bottom: 8px;
}


.timeline-card:not(:first-child) {
  margin-left: -170px;
}

.timeline-card:nth-of-type(even) {
  margin-top: 350px;
}

.timeline-card-svg path {
  fill: #dedede;
}

.timeline-card-svg:nth-of-type(odd),
.timeline-card-svg:nth-of-type(even) {
  position: absolute;
  width: 13px;
  height: 49px;
  left: 50%;
  bottom: -63px;
  transform: translate(-50%);
}

.timeline-card:nth-of-type(even) .timeline-card-svg {
  top: -12px;
  margin-top: -49px;
  transform: scaleY(-1) translate(-50%);
}

.timeline-nav {
  position: absolute;
  margin-top: 300px;
  z-index: 10;
  width: 100%;
}

.timeline-nav-button {
  position: absolute;
  width: 48px;
  height: 48px;
  cursor: pointer;
  opacity: .75;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  background: #fff;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.timeline-nav-button:hover {
  width: 60px;
  height: 60px;
}

.timeline-nav-button:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 10px;
  background: #d81e05;
}

.timeline-nav-button:before {
  content: "";
  position: absolute;
  margin-left: -1px;
  height: 8px;
  width: 8px;
  border-style: solid;
  border-color: #d81e05;
  border-width: 0px 2px 2px 0px;
  transform: rotate(135deg);
}