.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
}
.timeline__event {
  background: #fff;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  margin: 20px 0;
  border-radius: 8px;
  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);
}
.timeline__event__title {
  font-size: 1.2rem;
  line-height: 1.4;
  text-transform: uppercase;
  padding-bottom: 10px;
  font-weight: 600;
  color: #5a51d6;
  letter-spacing: 1.5px;
}
.timeline__event__content {
  padding: 10px;
  overflow: hidden;
}
.timeline__event__content__img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
.timeline__event__date {
  color: rgba(243, 243, 243, 0.8078431373);
  font-size: 1.5rem;
  font-weight: 600;
  white-space: nowrap;
}
.timeline__event__icon {
  border-radius: 8px 0 0 8px;
  background: #5a51d6;
  position: absolute;
  left: -90px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 40%;
  font-size: 2rem;
  color: #b7b7b8;
  width: 4.2em;
  height: 3em;
}
.timeline__event__icon i {
  position: absolute;
  top: 50%;
  left: -65px;
  font-size: 2.5rem;
  transform: translateY(-50%);
}
.timeline__event__description {
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 1em;
}
.timeline__event__description .process-icon {
  background-color: transparent;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0px;
  text-align: center;
  margin: 0;
}
.timeline__event__description .process-icon img {
  width: 50%;
}
.timeline__event:after {
  content: "";
  display: block;
  width: 2px;
  height: 0;
  background: #bbbbbb;
  position: absolute;
  top: 52%;
  /* Start from the top */
  left: -4.5rem;
  z-index: -1;
  animation: fillTop 2s forwards 1.5s ease-in-out;
}
.timeline__event--type1::after {
  content: "";
  display: block;
  width: 2px;
  height: 0;
  background: #bbbbbb;
  position: absolute;
  top: 52%;
  /* Start from the top */
  left: -4.5rem;
  z-index: -1;
  animation: fillTop2 2s forwards 1.5s ease-in-out;
}
.timeline .last__event {
  background: #fff;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  margin: 20px 0;
  border-radius: 8px;
  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);
  min-height: 120px;
}
.timeline .last__event__title {
  font-size: 1.2rem;
  line-height: 1.4;
  text-transform: uppercase;
  padding-bottom: 10px;
  font-weight: 600;
  color: #9251ac;
  letter-spacing: 1.5px;
}
.timeline .last__event__content {
  padding: 10px;
  overflow: hidden;
}
.timeline .last__event__content__img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
.timeline .last__event__date {
  color: #f6a4ec;
  font-size: 1.5rem;
  font-weight: 600;
  white-space: nowrap;
  width: 4.3em;
}
.timeline .last__event__icon {
  border-radius: 8px 0 0 8px;
  background: #9251ac;
  position: absolute;
  left: -112px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 40%;
  font-size: 2rem;
  color: #9251ac;
  padding: 20px;
}
.timeline .last__event__icon i {
  position: absolute;
  top: 50%;
  left: -65px;
  font-size: 2.5rem;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .timeline__event, .last__event {
    flex-direction: column;
  }
  .timeline__event__title {
    font-size: 1.3rem;
  }
  .timeline__event__icon {
    border-radius: 4px 4px 0 0;
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: auto;
  }
  .timeline__event::after {
    display: none;
  }
  .events-area .row {
    display: flex;
    flex-direction: column;
    gap: 2em;
  }
}
@keyframes fillTop {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}
@keyframes fillTop2 {
  from {
    height: 0;
  }
  to {
    height: 125%;
  }
}/*# sourceMappingURL=timeline.css.map */