.timeline-section {
    position: relative;
} .timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg/nepal-milestone.jpg') center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.05;
}
.timeline-section .design-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: Jost;
}

.timeline-section .design {
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-section .timeline {
  width: 80%;
  height: auto;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.timeline-section .timeline-content {
  padding: 20px;
  -webkit-box-shadow: 0 0 10px #1a1a1a;
  box-shadow: 0 0 10px #1a1a1a;
  border-radius: 5px;
  color: white;
  padding: 1.75rem;
  transition: 0.4s ease;
  overflow-wrap: break-word !important;
  margin: 1rem;
  margin-bottom: 20px;
  border-radius: 6px;
}

.timeline-section .timeline-component {
  margin: 0px 20px 20px 20px;
}

@media screen and (min-width: 768px) {
  .timeline-section .timeline {
    display: grid;
    grid-template-columns: 1fr 3px 1fr;
  }
  .timeline-section .timeline-middle {
    position: relative;
    background-image: linear-gradient(45deg, #f27121, #e94057, #8a2387);
    width: 3px;
    height: 100%;
  }
  .timeline-section .main-middle {
    opacity: 0;
  }
  .timeline-section .timeline-circle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-image: linear-gradient(45deg, #f27121, #e94057, #8a2387);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}