.gallery-content__body {
  border: 1px solid lightgray;
  padding: 2rem 5rem;
  line-height: 2;
}

.gallery-content__text {
  margin-bottom: 1rem;
}

.timeline-list {
  border-left: 3px #e5e5d1 solid;
  padding: 1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  row-gap: 5rem;
}

.timeline-item {
  height: 100%;
}

.timeline-item__title {
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
}

.timeline-item__title::before {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  background: #6fc173;
  position: absolute;
  left: -2.5rem;
  top: 1rem;
  border-radius: 100%;
}

.timeline-item__image {
  max-width: 35rem;
  margin: 2rem 0;
}

@media screen and (min-width: 501px) and (max-width: 768px) {
  .gallery-content__body {
    padding: 2rem 2rem;
  }
}
@media screen and (max-width: 500px) {
  .container {
    padding: 2rem 1rem;
  }
  .timeline-item__title::before {
    left: -1.5rem;
  }
  .gallery-content__body {
    padding: 2rem 1rem;
  }
  .timeline-list {
    padding: 1rem 0 1rem 1rem;
  }
}
