.hp-timeline-wrapper {
  position: relative;
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  margin: 32px 0;
  min-height: 1382px;
}
@media screen and (max-width: 768px) {
  .hp-timeline-wrapper {
    min-height: auto;
  }
}
.hp-timeline-wrapper > .timeline-bar-thing {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .hp-timeline-wrapper > .timeline-bar-thing {
    display: none;
  }
}
.hp-timeline-wrapper > .timeline-items {
  display: flex;
  flex-direction: column;
  gap: 128px;
}
@media screen and (max-width: 768px) {
  .hp-timeline-wrapper > .timeline-items {
    gap: 32px;
  }
}
.hp-timeline-wrapper > .timeline-items > .timeline-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1440px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hp-timeline-wrapper > .timeline-items > .timeline-item {
    flex-direction: column-reverse;
    align-items: center;
    gap: 32px;
  }
}
.hp-timeline-wrapper > .timeline-items > .timeline-item > .dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50px;
  height: 50px;
  z-index: 1;
  transition: transform 0.3s ease-in-out;
}
.hp-timeline-wrapper > .timeline-items > .timeline-item > .dot:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .hp-timeline-wrapper > .timeline-items > .timeline-item > .dot {
    display: none;
  }
}
.hp-timeline-wrapper > .timeline-items > .timeline-item:nth-child(1) > .dot {
  left: 51%;
}
.hp-timeline-wrapper > .timeline-items > .timeline-item:nth-child(2) > .dot {
  left: 46%;
}
.hp-timeline-wrapper > .timeline-items > .timeline-item:nth-child(3) > .dot {
  left: 49%;
}
.hp-timeline-wrapper > .timeline-items > .timeline-item > div {
  width: 100%;
  max-width: 40%;
}
@media screen and (max-width: 768px) {
  .hp-timeline-wrapper > .timeline-items > .timeline-item > div {
    max-width: 100%;
  }
}
.hp-timeline-wrapper > .timeline-items > .timeline-item > div > .item-image {
  width: 100%;
  aspect-ratio: 492/240;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  border-radius: 16px;
}
.hp-timeline-wrapper > .timeline-items > .timeline-item .item-content h3 {
  color: var(--Primary-White, #FFF);
  font-family: Palanquin;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: var(--Line-height-text-lg, 28px); /* 116.667% */
  margin: 16px 0 0 0;
}
.hp-timeline-wrapper > .timeline-items > .timeline-item .item-content p {
  color: var(--Primary-White, #FFF);
  font-family: Palanquin;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin: 16px 0 0 0;
}
.hp-timeline-wrapper > .timeline-items > .timeline-item .item-details {
  position: relative;
  background: #fff;
  display: flex;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.hp-timeline-wrapper > .timeline-items > .timeline-item .item-details.visible {
  opacity: 1;
  pointer-events: all;
}
@media screen and (max-width: 768px) {
  .hp-timeline-wrapper > .timeline-items > .timeline-item .item-details {
    opacity: 1;
    pointer-events: all;
  }
}
.hp-timeline-wrapper > .timeline-items > .timeline-item .item-details > .step-number {
  color: var(--Primary-White, #FFF);
  font-family: Cavet;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 100% */
  letter-spacing: 0.36px;
  position: absolute;
  top: -50px;
  left: 0px;
}
@media screen and (max-width: 768px) {
  .hp-timeline-wrapper > .timeline-items > .timeline-item .item-details > .step-number {
    display: none;
  }
}
.hp-timeline-wrapper > .timeline-items > .timeline-item .item-details > h4 {
  color: var(--colors-text-text-primary-900, #181D27);
  font-family: Palanquin;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: var(--Line-height-text-lg, 28px); /* 116.667% */
  margin: 0;
}
.hp-timeline-wrapper > .timeline-items > .timeline-item .item-details > p {
  color: var(--colors-text-text-tertiary-600, #535862);
  font-family: Palanquin;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--Line-height-text-md, 24px); /* 150% */
  margin: 0;
}
@media screen and (min-width: 768px) {
  .hp-timeline-wrapper > .timeline-items > .timeline-item.odd {
    flex-direction: row-reverse;
  }
}
