#proces.mobile {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
    width: 100%;

    .proces-left {
        height: 100%;
        width: 40%;
        justify-content: space-evenly;
    }
    
    .proces-right {
        height: 100%;
        width: 60%;
    }

    .step {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        align-items: center;
        p {
            margin-top: 0;
            margin-bottom: 0;
        }
    }

    /* @media (max-width: 768px) {
        .step {
            margin-top: 0;
            margin-bottom: 0;
        }
    } */

    .step-number {
        font-size: 3em;
        font-weight: 700;
        font-family: 'Sorts Mill Goudy';
        margin-right: 2rem;
        color: #282299;
    }

    .step-text {
        text-align: left;
    }

    .distance {
        height: 4rem;
    }
}

@media (min-width: 480px) {
    #proces.mobile {
        display: none;
    }
}