*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
section.timeline {
	background: #fff;
  /*    background: linear-gradient(54deg, #9164ff, #8bfff4);*/
  padding: 40px 0 80px;
}
.timeline ul li {
  list-style-type: none;
  position: relative;
  width: 6px;
  margin: 0 auto;
  padding-top: 50px;
  background: #e5e5e5;
  border-radius: 6px;
}
.timeline ul li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) rotate(45deg);
  width: 20px;
  height: 20px;
  z-index: 2;
  background: #e5e5e5;
}
.timeline ul li div {
  position: relative;
  bottom: 0;
  width: 500px;
  padding: 20px;
  background: #f2f2f2;  
  border-radius: 5px;
  display: flex;
  align-items: center;
}
.timeline ul li div time {
  position: absolute;
  background: #e3000f;
  width: 80px;
  height: 30px;
  top: -15px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.5px;
  color: #fff;
  font-size: 18px;
	font-weight: 500;
}
.timeline ul li div div {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.timeline ul li div div p {
  font-size: initial;
  line-height: 22px;
}
.timeline ul li:nth-of-type(odd) > div {
  left: 45px;
}
.timeline ul li:nth-of-type(even) > div {
  left: -539px;
}
.timeline ul li div {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.timeline ul li:nth-of-type(odd) div {
  transform: translate3d(100px, -10px, 0) rotate(10deg);
}
.timeline ul li:nth-of-type(even) div {
  transform: translate3d(-100px, -10px, 0) rotate(10deg);
}
.timeline ul li.in-view div {
  transform: none;
  visibility: visible;
  opacity: 1;
}
.discovery {
    background: #ffffff !important;
}
@media screen and (max-width: 1099px) {
.timeline ul li div div p {
    font-size: 15px;
}
}
@media screen and (min-width: 901px) and (max-width: 1099px){	
	.timeline ul li div {
    width: 420px;    
  }
	.timeline ul li:nth-of-type(even) > div {
    left: -460px;
  }	
}
@media screen and (max-width: 900px) {
  .timeline ul li div {
    width: 300px;
    flex-direction: column;
  }
  .timeline ul li div div {
    width: 100%;
    margin: 0px;
  }
  .timeline ul li:nth-of-type(even) > div {
    left: -340px;
  }
.timeline ul li div {
    padding: 15px;   
}
}
@media screen and (max-width: 600px) {
  .timeline ul li {
    margin-left: 20px;
  }
  .timeline ul li div {
    width: calc(100vw - 45px);
  }
  .timeline ul li:nth-of-type(even) > div, .timeline ul li:nth-of-type(odd) > div {
    left: 20px;
  }	
	.timeline ul li div{
		padding: 15px;		
	}
	.timeline ul li div div p {
    font-size: 15px;
}
	
}