.passaggi {
    margin-top: 20px;
}
.passaggio {
    width: 100%;
}
.passaggio-inner {
    display: grid;
    grid-template-columns: 84px auto;
    position: relative;
    overflow-y: hidden;
}
.passaggio .right {
    text-align: justify;
    padding: 0 30px;
    padding-bottom: 45px;
}
.passaggio .left {
    font-size: 70px;
    font-weight: 700;
    display: table;
    border: 2px solid white;
    border-radius: 50%;
    width: 84px;
    height: 84px;
    line-height: 1;
}
.passaggio .left p {
    margin: 0;
    margin-top: -15px;
}
.passaggio .left .linea {
    position: absolute;
    bottom: 0;
    width: 2px;
    height: 100%;
    background: white;
    left: 42px;
    top: 84px;
    margin-top: -2px;
}
.passaggio:last-child .left .linea {
    display: none;
}
.passaggio:last-child .right {
    padding-bottom: 0;
}

@media screen and (max-width: 567px){/*sm*/
    .passaggio .left {
        width: 42px;
        height: 42px;
        font-size: 35px;
    }
    .passaggio-inner {
        grid-template-columns: 42px auto;
    }
    .passaggio .left .linea {
        left: 21px;
        top: 42px;
    }
    .passaggio .left p {
        margin-top: -6px;
    }
    .passaggio .right {
        padding-right: 0;
    }
}