*,
*::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:#f9f9f9;

}

.timeline ol {
  font-size: 0;
  width: 100vw;
  padding: 400px 0 0px 0;
  transition: all 1s;
}

.timeline ol li {
  position: relative;
  display: inline-block;
  list-style-type: none;
  width:400px;
  height: 3px;
  background: #888;
}

.timeline ol li:last-child {
  width: 0px;
}

.timeline ol li:not(:first-child) {
  margin-left: 0px;
}

.timeline ol li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(100% -400px);
  bottom: 0;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #888;
}

.timeline ol li div {
  position: absolute;
  left: calc(100% - 400px);
  width: 380px;
  padding: 5px 5px 5px 5px;
  font-size: 16px;
  line-height:20px;
  white-space: normal;
  color: #444;
  background: #fff;
  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{
  font-family: "Roboto", sans-serif;
 padding: 10px;
min-height:100px;
color:#333;
margin-top:10px;
font-size:16px;
line-height:26px;
font-weight:400;

}
.timeline ol li div p b{
  font-family: "Roboto", sans-serif;
 padding: 10px;
min-height:100px;
color:#444;
margin-top:10px;
font-size:16px;
line-height:26px;
font-weight:500;

}
.timeline ol li div p span{
color:#444;
margin-top:25px;
font-size:14px;
line-height:20px !important;
font-weight:300;

}
.timeline ol li div p span b{
color:#444;
margin-top:10px;
font-size:14px;
font-weight:500;

}
.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: #fff 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: #fff transparent transparent transparent;
}

.timeline time {
  display: block;
  font-size: 30px;
  line-height:30px;
  font-weight: 600;
  margin-top: -20px;
  color:#073050;
  text-align:left
}


/* TIMELINE ARROWS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.timeline .arrows {
  position:absolute;
  margin-top: 0;
}

.timeline .arrows .arrow__prev {
  margin-right: 10px;
}

.timeline .disabled {
  opacity: .5;
}

.timeline .arrows img {
  width: 45px;
  height: 45px;
}


/* GENERAL MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 991.98px) {
  .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;

}
}