section.block.block-timeline {
  padding-top: var(--spacing-3-xl);
  padding-bottom: var(--spacing-3-xl);
}
section.block.block-timeline .container > .title {
  margin-bottom: var(--spacing-3-xl);
  text-align: center;
  max-width: var(--col-10);
  margin: auto;
}
section.block.block-timeline .container > .title h2 {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  section.block.block-timeline .container > .title {
    max-width: 100%;
  }
}
section.block.block-timeline .container .steps {
  position: relative;
  width: var(--col-10);
  margin: var(--spacing-3-xl) auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2-xl);
  padding-top: 100px;
  padding-bottom: 100px;
}
section.block.block-timeline .container .steps .timeline {
  display: block;
  background: linear-gradient(0deg, black 0%, var(--primary) 10%, var(--primary) 90%, black 100%);
  width: 2px;
  position: absolute;
  left: calc(50% - 1px);
  top: 0px;
  height: calc(100% + 78px);
}
@media screen and (max-width: 768px) {
  section.block.block-timeline .container .steps .timeline {
    left: 0px;
  }
}
section.block.block-timeline .container .steps .step {
  width: 100%;
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 768px) {
  section.block.block-timeline .container .steps .step {
    justify-content: start;
  }
}
section.block.block-timeline .container .steps .step:nth-child(even) {
  justify-content: start;
}
section.block.block-timeline .container .steps .step:nth-child(even) .step-content .separator:after {
  left: 0px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.4) 100%);
}
@media screen and (max-width: 768px) {
  section.block.block-timeline .container .steps .step:nth-child(even) .step-content .separator:after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 10%, rgba(255, 255, 255, 0.4) 100%);
    left: -60px;
    right: inherit;
  }
}
section.block.block-timeline .container .steps .step:nth-child(odd) .step-content .separator:before {
  left: inherit;
  right: calc(var(--container-width) / 12 * 5 - 10px);
}
@media screen and (max-width: 768px) {
  section.block.block-timeline .container .steps .step:nth-child(odd) .step-content .separator:before {
    right: inherit;
    left: -60px;
  }
}
section.block.block-timeline .container .steps .step .step-content {
  text-align: left;
  width: 360px;
  max-width: calc(50% - 20px);
}
@media screen and (max-width: 768px) {
  section.block.block-timeline .container .steps .step .step-content {
    padding-left: 50px;
    width: 100%;
    max-width: 100%;
  }
}
section.block.block-timeline .container .steps .step .step-content .date {
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
}
section.block.block-timeline .container .steps .step .step-content .separator {
  width: 100%;
  height: 1px;
  margin: var(--spacing-s) 0px;
  position: relative;
}
section.block.block-timeline .container .steps .step .step-content .separator:after {
  width: calc(var(--container-width) / 12 * 10);
  height: 1px;
  position: absolute;
  content: "";
  display: block;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.4) 100%);
  right: 0px;
}
@media screen and (max-width: 768px) {
  section.block.block-timeline .container .steps .step .step-content .separator:after {
    left: -60px;
    right: inherit;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 10%, rgba(255, 255, 255, 0.4) 100%) !important;
  }
}
section.block.block-timeline .container .steps .step .step-content .separator::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: var(--primary);
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: calc(var(--container-width) / 12 * 5 - 10px);
  filter: drop-shadow(0px 0px 13.2px var(--primary));
}
@media screen and (max-width: 768px) {
  section.block.block-timeline .container .steps .step .step-content .separator::before {
    left: -60px;
  }
}
section.block.block-timeline .container .steps .step .step-content .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: var(--spacing-s);
}
section.block.block-timeline .container .steps .step .step-content .title h4 {
  margin: 0px;
}