.section-timeline {
  width: 100%;
  padding-top: 72px;
}

.item-timeline-col1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  margin-bottom: 32px;
}

.item-timeline-col2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  margin-bottom: 32px;
}

.info-timeline-col1 {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.info-timeline-col2 {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.text-timeline {
  width: 70%;
}

.text-timeline h2 {
  margin: 0;
  margin-bottom: 22px;
  font-size: 32px;
  font-weight: 600;
  color: #0058B8;
}

.text-timeline p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: #1E1E1E;
  text-align: justify;
}

.img-timeline-col1 {
  display: flex;
}

.img-timeline-col2 {
  display: flex;
  justify-content: flex-end;
}

.img-timeline-col1 img,
.img-timeline-col2 img {
  width: 70%;
  height: auto;
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .img-timeline-col1 img,
  .img-timeline-col2 img {
    width: auto;
    height: 360px;
  }
}

@media (max-width: 768px) {
  .item-timeline-col1 {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 64px;
  }

  .info-timeline-col1 {
    justify-content: center;
  }

  .img-timeline-col1 {
    justify-content: center;
  }

  .item-timeline-col2 {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column-reverse;
  }

  .info-timeline-col2 {
    justify-content: center;
  }

  .img-timeline-col2 {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .text-timeline h2 {
    font-size: 22px;
  }

  .text-timeline p {
    font-size: 16px;
  }

  .text-timeline {
    width: 80%;
  }

  .img-timeline-col1 img,
  .img-timeline-col2 img {
    width: 80%;
    height: auto;
  }
}
