.step {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.step__image-container {
    position: relative;
    width: 35px;
    height: 35px;
    z-index: 2;
}

.circle-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.step__image-container__count {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-family: 'effra-heavy-italic';
    font-size: 20px;
}

.step__text {
    margin-bottom: 0;
    margin-left: 10px;
    font-weight: 700;
    font-size: 20px;
}

.dotted-lines {
    position: absolute;
    left: 16px;
    top: 30px;
    z-index: 1;
}

.dotted-lines__line {
    background-color: #7DB72B;
    border-radius: 2px;
    width: 2px;
    height: 8px;
    margin-bottom: 5px;
}

@media screen and (max-width: 600px) {

    .volgorde-verticaal {
        display: flex;
        gap: 40px;
        align-items: center;
        overflow-x: scroll;
    }

    .step {
        flex-wrap: wrap;
        align-items: flex-start;
        min-width: max-content;
    }

    .step__image-container {
        margin-bottom: 10px;
    }

    .step__text {
        font-size: 18px;
    }

    .dotted-lines {
        display: none;
    }
    
}