@import url("https://fonts.googleapis.com/css2?family=Jost:wght@200;300;400&display=swap");
.design-section {
  align-items: center;
  justify-content: center;
  background-color: black;
  min-height: 100vh;
  padding: 75px 0;
  font-family: Jost;
}
.home-header-section-1 {

}
.design {
  align-items: center;
  justify-content: center;
}

.timeline {
  width: 80%;
  height: auto;
  margin: 0 auto;
}

.timeline-content {
  padding: 20px;
  background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.7)), url("https://imageio.forbes.com/specials-images/imageserve/6183ec5f0b9be8e6d34a1e5f/Technology-Security-Concept-/0x0.jpg?format=jpg&crop=6197,3487,x1,y0,safe&width=1440");
  -webkit-box-shadow: 5px -8px 42px #1b1b4e;
  background-size: cover;
  box-shadow: 5px -8px 42px #1b1b4e;
  border: 1px solid #3c69a4;
  border-radius: 19px;
  color: lightgray;
  padding: 1.75rem;
  transition: 0.4s ease;
  overflow-wrap: break-word !important;
  width: 100%;
}

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

.cardWrapper {
  display: flex;
}
.cardLeftImage {
  display: flex;
  justify-content: center;
}
.cardLeftImage img {
  border: 1px solid;
  border-radius: 20px;
}

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

@media only screen and (max-width: 968px) {
  .cardLeftImage {
    display: none;
  }
}

.timeline-content h3 {
  margin-bottom: 20px;
}

.timeline-content p {
  padding-left: 20px;
}

.timeline-content:hover {
  transform: scale(1.2);
}