:root {
  --color-1: #121212;
  --color-2: #caf291;
  --color-3: rgb(168, 50, 121);
  --background-f7f88f: #f7f8ff;
  --background-caf291: rgba(202, 242, 145, 0.7);
  --background-8e8e8e: #8e8e8e;
}

.timeline {
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  min-height: 93.8%;
  background-color: var(--background-caf291);
}
.timeline .timeline-event {
  position: relative;
}
.timeline .timeline-event:hover .timeline-event-icon {
  transform: translateX(-50%) rotate(-45deg);
  background-color: var(--color-2);
}
.timeline .timeline-event:hover .timeline-event-thumbnail {
  box-shadow: inset 40em 0 0 0 var(--color-1);
}
.timeline .timeline-event .timeline-event-icon {
  transition: transform 0.2s ease-in;
  position: absolute;
  top: 0;
  left: 50%;
  width: 1em;
  height: 1em;
  outline: clamp(1px, 0.5vw, 5px) solid var(--color-1);
  transform: translateX(-50%) rotate(45deg);
}
.timeline .timeline-event .timeline-event-thumbnail {
  transition: box-shadow 0.5s ease-in 0.1s;
  color: white;
  font-weight: 700;
  font-size: clamp(1px, 3vw, 16px);
  background-color: black;
  box-shadow: inset 0 0 0 0em var(--color-2);
  display: inline-block;
  margin-bottom: 1.2em;
  padding: 0.25em 1em 0.2em 1em;
}
.timeline .timeline-event .timeline-event-copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: clamp(16px, 3vw, 32px);
  border-radius: 8px;
  gap: 20px;
}
.timeline .timeline-event:nth-child(odd) .timeline-event-copy {
  flex-direction: row;
  margin-left: 0;
  margin-right: 53%;
}
.timeline .timeline-event:nth-child(even) .timeline-event-copy {
  flex-direction: row-reverse;
  margin-left: 53%;
  margin-right: 0;
  text-align: right;
}
.timeline .timeline-event .timeline-event-content {
  flex: 1;
}
.timeline .timeline-event .timeline-event-image img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .timeline::before {
    display: none;
  }
  .timeline .timeline-event .timeline-event-icon {
    display: none;
  }
  .timeline .timeline-event:nth-child(odd) .timeline-event-copy, .timeline .timeline-event:nth-child(even) .timeline-event-copy {
    margin-left: 0;
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .timeline .timeline-event .timeline-event-image img {
    width: 100px;
    height: 100px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px;
  }
}
@media (max-width: 300px) {
  .timeline-event-image img {
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 301px) and (max-width: 480px) {
  .timeline-event-image img {
    width: 75px;
    height: 75px;
  }
}/*# sourceMappingURL=eduactioaan.css.map */