.steps {
    margin-top: 60px;
    margin-bottom: 100px;
}

.step {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.step_count {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 60px;
    border: 5px solid var(--bronze);
    background-color: var(--light-grey);
    transition: 0.1s all ease-in-out;
    z-index: 5;
}

.step_count h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background-color: var(--bronze);
    color: var(--white);
}

.step_details {
    width: calc(100% - 150px);
    margin-left: 50px;
}

.step_details h2 {
    margin-top: 23px;
    margin-bottom: 10px;
}

.step_details .step_description {
    margin-bottom: 60px;
}

.step:last-of-type .step_details .step_description {
    margin-bottom: 0;
}

.flow {
    position: absolute;
    height: 100%;
    left: 54px;
    z-index: 0;
    border-left: 2px solid var(--bronze);
}

.step:last-of-type .flow {
    display: none;
}

@media (max-width: 600px) {
    .step {
        flex-direction: column;
        align-items: center;
    }

    .step_details {
        width: 100%;
        text-align: center;
        margin-left: 0;
        z-index: 5;
    }

    .step_details {
        background-color: var(--light-grey);
    }

    .step_details .step_description {
        margin-bottom: 0;
    }

    .step_count {
        margin-top: 60px;
    }

    .step:first-of-type .step_count {
        margin-top: 0;
    }

    .flow {
        left: calc(50% - 2px);
    }

    .step:first-of-type .flow {
        display: none;
    }

    .step:last-of-type .flow {
        display: block;
    }
}