

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

    .proces-left, .proces-right {
        width: 40%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }

    .proces-right {
        transform: translateY(-30px);
    }
    
    .proces-middle {
        margin: auto;
    }

    .step {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    @media (max-width: 768px) {
        .step {
            flex-direction: column;
            margin-top: 0;
            margin-bottom: 0;
            width: 100%;
            p {
                margin-bottom: 1rem;
            }
        }
    }

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

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

    /* @media (max-width: 480px) {
        .proces-left, .proces-right {
            width: 40%;
        }
        
        .proces-middle {
            width: 40%;
        }
    
    } */


    .distance {
        height: 4rem;
    }
}

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