.stage-image {
    margin: 0 auto 8px;
    display: flex;
    justify-content: center;
}

.stage-number {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stage-number img {
    margin-left: 8px;
}

body[dir="rtl"] .stage-number img {
    margin-right: 8px;
    margin-left: 0;
    transform: rotate(180deg);
}

.short_text {
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 50px;
}

.steps_bar {
    display: flex;
    justify-content: center;
    width: 100%;
}

.stage {
    display: flex;
    flex-direction: column;
    width: 25%;
    align-items: center;
    text-align: center;
}

.step_arrow {
    display: flex;
    justify-content: center;
}

.mobile-step {
    display: none;
}

@media (max-width: 768px) {
    .steps_bar {
        display: flex;
        flex-wrap: wrap;
    }

    .stage {
        margin: 0 auto 40px;
        width: 50%;
    }

    .step_arrow {
        display: none;
    }

    .mobile-step {
        display: inline-block;
        margin-right: 8px;
    }

    body[dir="rtl"] .mobile-step {
        margin-left: 8px;
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .stage {
        width: 100%;
    }
}