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

.process_track_left {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 1rem;
    overflow: hidden;
    /* animation: scroll-left 280s linear infinite; */
    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: aliceblue;
    height: 7rem;
    width: 15rem;
}

.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-left {
    0% {
        transform: translateX(0);
    }

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