.stepbystep {
    display: block;
    max-width: 600px;
    margin: 0rem auto 2rem;
    position: relative;
    padding: 0;
    margin: 4rem auto;
}

.stepbystep>p:first-child {
    margin: 0;
}

.stepbystep>p {
    display: none;
}

.stepbystep ol {
    position: relative;
    list-style: none;
    counter-reset: stepbystep-counter;
    margin: 0;
    padding: 2rem 0;
}

.stepbystep ol li {
    position: relative;
    counter-increment: stepbystep-counter;
    color: var(--text-color-dark);
    padding-bottom: 3rem;
    padding-left: 5rem;
}

.stepbystep ol li:last-child {
    padding-bottom: 0;
}

.stepbystep ol li::before {
    content: counter(stepbystep-counter) "";
    font-weight: 900;
    font-size: 2.75rem;
    display: inline-block;
    line-height: 0.4;
    position: absolute;
    left: 0;
    top: 0;
}

.stepbystep>ol>li a {
    color: var(--text-color-dark);
    text-decoration: underline;
}

.stepbystep>ol>li a.button {
    text-decoration: none;
}

/* dots */
.stepbystep:before {
    content: "";
    width: 1.3rem;
    height: 1.3rem;
    background: var(--color-cta);
    border-radius: 50%;
    position: absolute;
    top: -1.3rem;
    left: 2.45rem;
}

.stepbystep:after {
    content: "";
    width: 1.3rem;
    height: 1.3rem;
    background: var(--color-cta);
    border-radius: 50%;
    position: absolute;
    bottom: -1.3rem;
    left: 2.45rem;
}

.stepbystep ol:before {
    content: "";
    position: absolute;
    top: 0;
    left: 2.45rem;
    width: 1.3rem;
    height: 100%;
    background: radial-gradient(ellipse at center, var(--color-cta) 0%, var(--color-cta) 30%, transparent 30%);
    /* background-image: radial-gradient(circle at 0.5rem 0.3rem, var(--color-cta) 0.2rem, transparent 0); */
    background-size: 0.5rem 0.5rem;
    background-repeat: repeat-y;
    background-position: center center;
}

.stepbystep ol li::after {
    content: "";
    position: absolute;
    left: 2.65rem;
    top: 0.3rem;
    bottom: auto;
    width: 0.9rem;
    height: 0.9rem;
    background: var(--color-cta);
    border-radius: 50%;
}

/* dots end */