*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
}


.timeline {
  white-space: nowrap;
  overflow-x: hidden;
  background:#fff;
}

.timeline ol {
  font-size: 0;
  width: 100vw;
  padding: 490px 0 0 0;
  transition: all 1s;
}

.timeline ol li {
  position: relative;
  display: inline-block;
  list-style-type: none;
  width: 300px;
  height: 3px;
  background: #888;
}

.timeline ol li:last-child {
  width: 340px;
}

.timeline ol li:not(:first-child) {
  margin-left: 14px;
}

.timeline ol li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(100% + 1px);
  bottom: 0;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #888;
}

.timeline ol li div {
  position: absolute;
  left: calc(100% + 0px);
  width: 280px;
  padding: 10px 0px 5px 0px;
  font-size: 14px;
  line-height:20px;
  white-space: normal;
  color: #444;
  background: #f2f2f2;
  text-align:center;
  border-radius:15px;
  box-shadow:2px 2px 2px #ccc;

}

.timeline ol li img {

  border-top-left-radius:15px;
  border-top-right-radius:15px;


}
.timeline ol li div p{

 padding: 10px;
min-height:100px;
color:#111;
margin-top:10px;
font-weight:500;
font-size:16px;
text-align:left;
  font-family: "Open Sans", sans-serif;
}

.timeline ol li div::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline ol li:nth-child(odd) div {
  top: -26px;
  transform: translateY(-100%);
}

.timeline ol li:nth-child(odd) div::before {
  top: 95%;
  border-width: 34px 34px 0 0;
  border-color: #f2f2f2 transparent transparent transparent;
}

.timeline ol li:nth-child(even) div {
   transform: translateY(-100%);
     top: -26px;
}

.timeline ol li:nth-child(even) div::before {
  top: 97%;
  border-width: 28px 28px 0 0;
  border-color: #f2f2f2 transparent transparent transparent;
}

.timeline time {
  display: block;
  font-size: 20px;
  line-height:30px;
  font-weight: bold;
  margin-top: -40px;
  color:#90C641;
  text-align:left;
  text-transform:uppercase;
  font-family: "Open Sans", sans-serif;
}


/* TIMELINE ARROWS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.timeline .arrows {
  position:absolute;
  margin-top: -2.5%;
}

.timeline .arrows .arrow__prev {
  margin-right: 60px;
}

.timeline .disabled {
  opacity: .5;
}

.timeline .arrows img {
  width: 45px;
  height: 45px;
}


/* GENERAL MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 767px) {
  .timeline ol,
  .timeline ol li {
    width: auto; 
  }
  
  .timeline ol {
    padding: 0;
    transform: none !important;
  }
  
  .timeline ol li {
    display: block;
    height: auto;
    background: transparent;
  }
  
  .timeline ol li:first-child {
    margin-top: 25px;
  }
  
  .timeline ol li:not(:first-child) {
    margin-left: auto;
  }
  
  .timeline ol li div {
  padding:10px;
    width: 94%;
    height: auto !important;
    margin: 0 auto 25px;
  }
  .timeline ol li div p{


color:#073050;
min-height:30px;
}
.timeline ol li img {

  border-top-left-radius:0px;
  border-top-right-radius:0px;


}
  .timeline ol li div {
    position: static;
  }
  
  .timeline ol li:nth-child(odd) div {
    transform: none;
  }
  
  .timeline ol li:nth-child(odd) div::before,
  .timeline ol li:nth-child(even) div::before {
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border: none;
    border-left: 3px solid #ccc;
    height: 25px;
	
  }
    .timeline ol li:nth-child(even) div {

    transform: translateY(0%);
}
  .timeline ol li:last-child,
  .timeline ol li:nth-last-child(2) div::before,
  .timeline ol li:not(:last-child)::after,
  .timeline .arrows {
    display: none;
  }
  .timeline time {
  margin-top: 0px;

}
}