.hst-timeline {
  --hst-progress: 0px;
  --hst-line-top: 0px;
  --hst-line-height: 100%;
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 0;
  overflow: visible;
}

.hst-timeline::before,
.hst-timeline::after {
  content: "";
  position: absolute;
  top: var(--hst-line-top, 0px);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  z-index: 1;
}

.hst-timeline::before {
  height: var(--hst-line-height, 100%);
  background: #e5e5e5;
  width: 2px;
}

.hst-timeline::after {
  height: var(--hst-progress, 0px);
  background: #df2429;
  width: 2px;
  transition: height 0.12s linear;
}

.hst-item {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr);
  align-items: start;
  min-height: 155px;
}

.hst-side {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.hst-side-left {
  text-align: right;
  justify-content: flex-end;
  padding-right: 0;
}

.hst-side-right {
  text-align: left;
  justify-content: flex-start;
  padding-left: 0;
}

.hst-center {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 4;
}

.hst-icon {
  width: 42px;
  height: 42px;
  background: #df2429;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.hst-icon i {
  font-size: 16px;
}

.hst-icon svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

.hst-icon img {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
}

.hst-shape-square .hst-icon {
  border-radius: 0;
}

.hst-shape-rounded .hst-icon {
  border-radius: 10px;
}

.hst-shape-circle .hst-icon {
  border-radius: 50%;
}

.hst-number {
  display: inline-block;
  color: #b7b7b7;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  min-width: 30px;
}

.hst-number-opposite {
  margin-top: 8px;
}

.hst-side-left .hst-number-opposite {
  margin-right: 8px;
}

.hst-side-right .hst-number-opposite {
  margin-left: 8px;
}

.hst-title {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
}

.hst-description {
  font-size: 14px;
  line-height: 1.65;
  color: #111;
}

.hst-content {
padding-top: 5px;  
max-width: 420px;
  
}

.hst-hide-numbers .hst-number {
  display: none;
}

.hst-no-alternate .hst-item .hst-side-left {
  visibility: visible;
}

.hst-item:not(.hst-active) {
  opacity: 0.62;
}

.hst-active-enabled .hst-item {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hst-active-enabled .hst-item.hst-active {
  opacity: 1;
}

.hst-active-enabled .hst-item.hst-active .hst-icon {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(223, 36, 41, 0.22);
}

@media (max-width: 767px) {
  .hst-timeline {
    padding: 20px 0 20px 24px;
  }

  .hst-timeline::before,
  .hst-timeline::after {
    left: 21px;
  }

  .hst-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 18px;
    min-height: auto;
    padding-bottom: 44px;
  }

  .hst-center {
    grid-column: 1;
    grid-row: 1;
  }

  .hst-side-left,
  .hst-side-right {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    justify-content: flex-start;
    flex-direction: row !important;
    gap: 12px;
  }

  .hst-content-left .hst-side-right,
  .hst-content-right .hst-side-left {
    display: none;
  }

  .hst-content-left .hst-side-left,
  .hst-content-right .hst-side-right {
    display: flex;
  }

  .hst-title {
    font-size: 19px;
    margin-bottom: 10px;
  }

  .hst-description {
    font-size: 14px;
  }

  .hst-number-opposite {
    margin: 0 10px 0 0;
  }
}
