* {
  box-sizing: border-box;
}

html {
  font-size: 15px;
}

body {
  background: #f6f9fc;
  font-family: "Open Sans", sans-serif;
  color: #fff;
	
}

p {
  color: #DDDDDD;
  font-size: 1.0rem;  
}

p1 {
  color: #DDDDDD;
  font-size: 1.0rem; 
  text-align: justify;
}

h9 {
  margin: 5%;
  text-align: center;
  font-size: 2rem;
  font-weight: 300;
}

.timeline {
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  position: static;
}
.timeline__event {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  margin: 20px 0;
  border-radius: 6px;
  align-self: center;
  width: 75%; 
}
.timeline__event:nth-child(2n+1) {
  flex-direction: row-reverse;
}
.timeline__event:nth-child(2n+1) .timeline__event__date {
  border-radius: 0 6px 6px 0;
}
.timeline__event:nth-child(2n+1) .timeline__event__content {
  border-radius: 6px 0 0 6px;
}
.timeline__event:nth-child(2n+1) .timeline__event__icon:before {
  content: "";
  width: 2px;
  height: 250%;
  background: #5e00e3;
  position: absolute;
  top: 0%;
  left: 50%;
  right: auto;
  z-index: -1;
  transform: translateX(-50%);
  -webkit-animation: fillTop 1s forwards 2s ease-in-out;
          animation: fillTop 1s forwards 2s ease-in-out;
}
.timeline__event:nth-child(2n+1) .timeline__event__icon:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #5E00E3;
  position: absolute;
  right: 0;
  z-index: -1;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
  -webkit-animation: fillLeft 1s forwards 2s ease-in-out;
          animation: fillLeft 1s forwards 2s ease-in-out;
}
.timeline__event__title {
  font-size: 28px;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 750;
  color: #5E00E3;
  letter-spacing: 1.2px;
	padding-top: 20px;
	padding-bottom: 16px;
	padding-left: 10px;
	padding-right: 10px;
	text-align: left;
}
.timeline__event__title-right {
  font-size: 28px;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 750;
  color: #5E00E3;
  letter-spacing: 1.2px;
	padding-top: 20px;
	padding-bottom: 16px;
	padding-left: 10px;
	padding-right: 10px;
	text-align: right;
}
.timeline__event__content {
  padding: 20px;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  background: #01040D; 
  border-radius: 0 6px 6px 0;
	align: center;
	text-align: justify;
	width: 100%;
}
.timeline__event__date {
  color: #FFFFFF;
  font-size: 2.8rem;
  font-weight: 800;
  background: #3C028E;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 10px 40px;
  border-radius: 6px 0 0 6px;
}
.timeline__event__icon {
  font-size: 32px;
  font-weight: 680;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff; 
  align-self: center;
  margin: 0 20px;
  background: #5E00E3;
  border-radius: 100%;
  width: 40px;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  padding: 50px;
  height: 40px;
  position: relative;
}
.timeline__event__icon i {
  font-size: 34px;
}
.timeline__event__icon:before {
  content: "";
  width: 2px;
  height: 150%;
  background: #f6a4ec;
  position: absolute;
  top: 0%;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  -webkit-animation: fillTop 1s forwards 2s ease-in-out;
          animation: fillTop 1s forwards 2s ease-in-out;
}
.timeline__event__icon:after {
  content: " ";
  width: 100%;
  height: 2px;
  background: #f6a4ec;
  position: absolute;
  left: 0%;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  -webkit-animation: fillLeftOdd 1s forwards 2s ease-in-out;
          animation: fillLeftOdd 1s forwards 2s ease-in-out;
}
.timeline__event__description {
  width: 95%;
	padding-left: 10px;
	padding-bottom: 20px;
}
.timeline__event--type2:after {
  background: #002FE3;
}
.timeline__event--type2 .timeline__event__date {
  color: #fff ;
  background: #001A5E;
}
.timeline__event--type2:nth-child(2n+1) .timeline__event__icon:before, .timeline__event--type2:nth-child(2n+1) .timeline__event__icon:after {
  background: #3587F7; 
}
.timeline__event--type2 .timeline__event__icon {
  background: #002FE3;
  color: #fff;
}
.timeline__event--type2 .timeline__event__icon:before, .timeline__event--type2 .timeline__event__icon:after {
  background: #87bbfe;
}
.timeline__event--type2 .timeline__event__title {
  color: #185BF7;
}


.timeline__event--type3:after {
  background: #A7003A;
}
.timeline__event--type3 .timeline__event__date {
  color: #fff;
  background-color: #600022;
}
.timeline__event--type3:nth-child(2n+1) .timeline__event__icon:before, .timeline__event--type3:nth-child(2n+1) .timeline__event__icon:after {
  background: #E2AFF1;
}
.timeline__event--type3 .timeline__event__icon {
  background: #EF0455;
  color: #fff;
}
.timeline__event--type3 .timeline__event__icon:before, .timeline__event--type3 .timeline__event__icon:after {
  background: #C31A34;
}
.timeline__event--type3 .timeline__event__title {
  color: #EF0455;
}






.timeline__event--type1a:after {
  background: #A7003A;
}
.timeline__event--type1a .timeline__event__date {
  color: #fff;
  background-color: #600022;
}
.timeline__event--type1a:nth-child(2n+1) .timeline__event__icon:before, .timeline__event--type1a:nth-child(2n+1) .timeline__event__icon:after {
  background: #E2AFF1;
}
.timeline__event--type1a .timeline__event__icon {
  background: #DE47F9;
  color: #fff;
}
.timeline__event--type1a .timeline__event__icon:before, .timeline__event--type1a .timeline__event__icon:after {
  background: #C31A34;
}
.timeline__event--type1a .timeline__event__title {
  color: #EF0455;
}

.timeline__event:last-child .timeline__event__icon:before {
  content: none;
}

@media (max-width: 786px) {
  .timeline__event {
    flex-direction: column;
    align-self: center;
  }
  .timeline__event__content {
    width: 100%;
  }
  .timeline__event__icon {
    border-radius: 6px 6px 0 0;
    width: 100%;
    margin: 0;
    box-shadow: none;
  }
  .timeline__event__icon:before, .timeline__event__icon:after {
    display: none;
  }
  .timeline__event__date {
    border-radius: 0;
    padding: 20px;
  }
  .timeline__event:nth-child(2n+1) {
    flex-direction: column;
    align-self: center;
  }
  .timeline__event:nth-child(2n+1) .timeline__event__date {
    border-radius: 0;
    padding: 20px;
  }
  .timeline__event:nth-child(2n+1) .timeline__event__icon {
    border-radius: 6px 6px 0 0;
    margin: 0;
  }
}
@-webkit-keyframes fillLeft {
  100% {
    right: 100%;
  }
}
@keyframes fillLeft {
  100% {
    right: 100%;
  }
}
@-webkit-keyframes fillTop {
  100% {
    top: 100%;
  }
}
@keyframes fillTop {
  100% {
    top: 100%;
  }
}
@-webkit-keyframes fillLeftOdd {
  100% {
    left: 100%;
  }
}
@keyframes fillLeftOdd {
  100% {
    left: 100%;
  }
}