.process_slider {
    overflow: hidden;
    width: 100%;
}

.process_track_right {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 1rem; 
    justify-content: center;
    padding: 1rem;
}

.process_wrapper {
    display: block;
    align-items: center;
    justify-content: center;
}

.process_stage {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00b9ad;
    padding: 0.2rem;
    border-radius: 0.75rem;
    color: white;
    width: 12rem;
}

.slider__title {
    width: 100%;
    text-align: center;
    color: whitesmoke;
    font-size: 1.15rem;
    font-weight: bold;
    margin-bottom: 0%;
    padding-bottom: 0%;
    cursor: pointer;
}

@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }
}