.timeline-line {
    position: absolute;
    top: 65%;
    left: 12.5%;
    width: 75%;
    border-top: 2px dashed var(--primary-teal);
    z-index: 0;
}

.timeline-dot-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.timeline-dot {
    width: 32px;
    height: 32px;
    background-color: #fff;
    border: 2px solid var(--logo-orange);
    border-radius: 50%;
    position: relative;
}

.timeline-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background-color: var(--logo-orange);
    border-radius: 50%;
}

#request-a-demo {
    scroll-margin-top: 10rem;
}

@media (max-width: 991px) {
    .timeline-line {
        display: none;
    }
}