.section-progress{
    margin: 20px 0;
    min-height: 20vh;
    position: relative;
}

.icon-road {
    display: inline-block;
    width: 50px;
    height: 50px;
    fill: none;
    transform: scale(2.25,2.25);
}

.hidden {
    display: none;
}

.progress-road {
    display: flex;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    margin: 0 0 0 10%;
}
.step-road {
    flex-grow: 1;
    position: relative;
}

.step-progress-road {
    width: 100%;
    height: 0.25em;
    background: rgba(163, 74, 221, 0);
}
.icon-wrapper-road {
    text-align: center;
    display: inline-block;
}

.step-road.done .step-progress-road:after {
    position: absolute;
    content: '';
    height: 0.25em;
    width: 0;
    background-color: #0087B3;
    animation: growLine 1s linear forwards;
}

.icon-checkmark-road {
    position: absolute;
    top: -0.55em;
    left: -0.125em;
    border: 1px solid #e97100;
    background: #ff7b00;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    padding: 0.125em;
    border-radius: 50%;
    transition: all 0.25s linear;
}
.step-road.done .icon-checkmark-road {
    background: #0087B3;
    border-color: #016888;
}

.icon-checkmark-road .path1 {
    stroke: rgb(170, 170, 170);
    stroke-width: 4;
    stroke-linecap: square;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    fill: empty;
}
.step-road.done .icon-checkmark-road .path1 {
    animation: dash 5s linear forwards;
    stroke: #ff7b00;
}

.step-text-road {
    width: 250px;
    top: 10px;
    position: relative;
    margin-left: -45%;
    letter-spacing: 1px;
    color: white;
    margin-top: 0;
    opacity: 0;
}
.step-road.done .step-text-road {
    color: white;
    animation: dropText 0.5s linear forwards;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes growLine {
    to {
        width: 100%;
    }
}

@keyframes dropText {
    to {
        padding-top: 1em;
        opacity: 1;
    }
}

@media screen and (max-width: 1024px) {
    .section-progress{
        min-height: 60vh;
    }
    .progress-road{
        flex-wrap: wrap;
        flex-direction: column;
        max-width: 80vw;
    }
    .step-road{
        height: 100px;
    }
    .step-text-road{
        text-align: left;
        margin-left: 40px;
    }
    .step-progress-road{
        transform: rotate(90deg);
        width: 104px;
        margin-left: -47px;
        margin-top: 48px;
    }

    .step-text-road{
        top: -80px;
    }

    .step-road:last-child .step-text-road{
        top: -35px;
    }
}