/* Image-based About Us journey timeline. Loaded after about.css. */
.about-timeline {
  min-height: 330px;
  align-items: start;
}

.about-timeline::before {
  z-index: 0;
  top: 110px;
  background: repeating-linear-gradient(90deg, rgba(95, 105, 101, .55) 0 5px, transparent 5px 9px);
  transform: rotate(-2.1deg);
}

.about-timeline article:nth-child(1) { transform: translateY(18px); }
.about-timeline article:nth-child(2) { transform: translateY(9px); }
.about-timeline article:nth-child(4) { transform: translateY(-9px); }
.about-timeline article:nth-child(5) { transform: translateY(-18px); }

.about-timeline__dot {
  width: 80px;
  height: 80px;
  padding: 13px;
  border: 2px solid #ffb77f;
  box-shadow: none;
}

.about-timeline article:nth-child(even) .about-timeline__dot {
  border-color: #efacd0;
}

.about-timeline__dot img,
.about-timeline__dot .swaaadle-e3-icon-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-timeline strong {
  color: #ff6b00;
  font-size: 1.08rem;
}

.about-timeline article:nth-child(even) strong {
  color: #d82d87;
}

@media (max-width: 900px) {
  .about-timeline {
    gap: 24px;
  }

  .about-timeline::before {
    left: 67px;
    top: 34px;
    background: repeating-linear-gradient(180deg, rgba(95, 105, 101, .55) 0 5px, transparent 5px 9px);
  }

  .about-timeline article,
  .about-timeline article:nth-child(n) {
    grid-template-columns: 80px 1fr;
    column-gap: 22px;
    transform: none;
  }

  .about-timeline__dot {
    width: 80px;
    height: 80px;
  }

  .about-timeline strong {
    align-self: end;
  }
}
