/*--------------------*/
/* TIMELINE Activities */
/*--------------------*/

#activities {
  display: block;
  float: left;
  position: relative;
  width: 100%;
  padding: 30px 0;
  /* background-image: url("assets/images/dark-stripes.png");
  background-color: #200035; */

  /* background: rgba(0, 84, 59, 1);
  background: -moz-linear-gradient(-45deg, rgba(0, 84, 59, 1) 0%, rgba(0, 84, 59, 1) 0%, rgba(117, 189, 55, 1) 100%);
  background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(0, 84, 59, 1)), color-stop(0%, rgba(0, 84, 59, 1)), color-stop(100%, rgba(117, 189, 55, 1)));
  background: -webkit-linear-gradient(-45deg, rgba(0, 84, 59, 1) 0%, rgba(0, 84, 59, 1) 0%, rgba(117, 189, 55, 1) 100%);
  background: -o-linear-gradient(-45deg, rgba(0, 84, 59, 1) 0%, rgba(0, 84, 59, 1) 0%, rgba(117, 189, 55, 1) 100%);
  background: -ms-linear-gradient(-45deg, rgba(0, 84, 59, 1) 0%, rgba(0, 84, 59, 1) 0%, rgba(117, 189, 55, 1) 100%);
  background: linear-gradient(135deg, rgba(0, 84, 59, 1) 0%, rgba(0, 84, 59, 1) 0%, rgba(117, 189, 55, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00543b', endColorstr='#75bd37', GradientType=1); */

  /* background: rgb(253, 253, 255); */
  /* background: linear-gradient(167deg, rgba(253, 253, 255, 1) 0%, rgba(246, 246, 254, 1) 17%, rgba(0, 212, 255, 1) 100%); */

    background: linear-gradient(151deg, rgb(198 255 233) 0%, rgb(56 193 125 / 22%) 17%, rgb(0 0 0) 100%);


}

/* .timeline-overlay {
	background-color: rgba(0, 0, 0, 0.8);
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
} */

.timeline-title {
  display: block;
  float: left;
  padding: 0px;
  text-align: center;
  width: 100%;
}

.timeline-title h2 {
  color: #00d999;
  /* font-size: 45px; */
}


/* ----------------------------------------- */


.timeline {
  --uiTimelineMainColor: var(--timelineMainColor, #222);
  --uiTimelineSecondaryColor: var(--timelineSecondaryColor, #fff);

  position: relative;
  padding-top: 8rem;
  padding-bottom: 3rem;

}

.timeline:before {
  content: "";
  width: 4px;
  height: 85%;
  top: 90px;
  background-color: var(--uiTimelineMainColor);
  position: absolute;
}

.timeline__group {
  position: relative;
}

.timeline__group:not(:first-of-type) {
  margin-top: 2rem;
}

.timeline__year {
  padding: .5rem 1.5rem;
  color: var(--uiTimelineSecondaryColor);
  /* background-color: var(--uiTimelineMainColor); */
  background-color: #222;
  border-radius: 45px 0px 45px 0px;
  -moz-border-radius: 45px 0px 45px 0px;
  -webkit-border-radius: 45px 0px 45px 0px;

  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}

.timeline__box {
  position: relative;
}

.timeline__box:not(:last-of-type) {
  margin-bottom: 20px;
}

.timeline__box:before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--uiTimelineMainColor);

  position: absolute;
  left: 0;
  z-index: -1;
}

.timeline__date {
  min-width: 70px;
  position: absolute;
  left: 0;
  box-sizing: border-box;
  padding: .5rem 1.5rem;
  /* text-align: center; */
  background-color: var(--uiTimelineMainColor);
  color: var(--uiTimelineSecondaryColor);
}

.timeline__day {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
}

.timeline__month {
  display: block;
  font-size: .8em;
  text-transform: uppercase;
}

.timeline__post {
  padding: 1rem 1.5rem;
  border-radius: 3px;
  border-left: 3px solid var(--uiTimelineMainColor);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .12), 0 1px 2px 0 rgba(0, 0, 0, .24);
  background-color: var(--uiTimelineSecondaryColor);
  margin-left: 10px;
}

.event-wrapper{
  position: relative;
  display: flex;
  justify-content:left;
  width: 100%;
  min-height: 50px;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 12%), 0 1px 2px 0 rgb(0 0 0 / 24%);
  background-color: var(--uiTimelineSecondaryColor);
  margin-bottom: 10px;

}

.event-date{
  position: relative;
  display: inline-block;
  width: 70px;
  padding-left: 15px;
  color: #fff;
  background-color: var(--uiTimelineMainColor);
  padding-top: 5px;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 12%), 0 1px 2px 0 rgb(0 0 0 / 24%);
}

.event-post{
  max-width: 200px;
  position: relative;
  display:inline-block;
  /* background-color: aquamarine; */
  padding-left: 5px;
  padding-top: 5px;
}


@media screen and (min-width: 641px) {

  .timeline:before {
    left: 20px;
  }

  .timeline__group {
    padding-top: 45px;
  }

  .timeline__box {
    padding-left: 80px;
  }

  .timeline__box:before {
    top: 50%;
    transform: translateY(-50%);
  }

  .timeline__date {
    top: 50%;
    margin-top: -27px;
  }

  .event-post{
    max-width: 100%;
  }
}

@media screen and (max-width: 640px) {

  .timeline:before {
    left: 10px;
    height: 90%;
  }

  .timeline__group {
    padding-top: 45px;
  }

  .timeline__box {
    padding-left: 20px;
    padding-top: 70px;
  }

  .timeline__box:before {
    top: 90px;
  }

  .timeline__date {
    top: 0;
  }
}

.timeline {
  /* --timelineMainColor: #00d999; */
  --timelineMainColor: #0c523d;
  font-size: 14px;
  width: 95%;
}

@media screen and (min-width: 768px) {

  .timeline {
    width: 90%;
    margin: 0 auto;
  }

  .event-wrapper{
    /* left:-80px; */
  }

}

@media screen and (max-width: 767px) {

  /* html{
      font-size: 55%;
    } */
}