.node-timeline {
  height: 700vh;
  font-family: Outfit, sans-serif;
}

.node-timeline-bg {
    opacity: .2;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.node-timeline-wrapper {
  position: sticky;
  top: 0px;
  max-height: 100vh;
  overflow-x: hidden;
  overflow-y: hidden;
}

.node-timeline-scrollwidth {
    width: 8000px;
    height: 100vh;
    overflow: hidden;
}

.node-timeline-scroll {
  position: relative;
  perspective: 1px;
}

.node-timeline-items {
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
}

.node-timeline-item {
    width: 400px;
    color: #fff;
    position: absolute;
    border-radius: 10px;
}

.layout-horizontal .node-timeline-item {
    bottom: 60%;
    top: auto;
}

.layout-horizontal .node-timeline-item:nth-child(2n) {
    bottom: auto;
    top: 60%;
}

.item-node {
    width: 20px;
    height: 20px;
    background: #00B2FE;
    border-radius: 50%;
    position: absolute;
    left: -30px;
    top: 0;
}

.layout-horizontal .item-node {
    left: 0;
    bottom: -30px;
    top: auto;
}

.layout-horizontal .node-timeline-item:nth-child(2n) .item-node {
    left: 0;
    bottom: auto;
    top: -30px;
}

.node-timeline-item p {
  margin: 0;
  font-size: 1.5em;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
}

.node-timeline-item .item-subhead {
    font-size: 1.25em;
    font-weight: 500;
    color: #00B2FE;
    display: block;
    line-height: 1.2;
}

.node-timeline-item .item-healine {
    font-size: 2.5em;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -.01em;
    margin: 0 0 10px;
}

@media all and (max-width: 768px) {
    .node-timeline-item {
        width: 280px;
    }

    .node-timeline-item p {
    font-size: 1em;
    line-height: 1.5;
    }

    .node-timeline-item .item-subhead {
        font-size: .875em;
        line-height: 1.2;
    }

    .node-timeline-item .item-healine {
        font-size: 1.75em;
        line-height: 1.1;
    }

}