
.process-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
}

.process-step {
   /* background-color: #f1f1f1;*/
    padding: 20px;
    /*border-radius: 100px;*/
    text-align: center;
    margin: 10px;
   
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
}
.pro_tx_align{
    /*padding-left: 75px;*/
    font-weight:600;
    text-align: center;
    font-size: 20px;
}
.step-number {
    background-color: #108F8A;
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 10px;
    margin-left: 180px;
}

.step-content {
    font-size: 16px;
    color: #333;
}

.arrow {
    font-size: 24px;
    color: #007bff;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .pro_tx_align{
        /*padding-left: 75px;*/
        font-weight:600;
        text-align: center;
        font-size: 14px;
    }
    .process-container {
        flex-direction: column;
    }
    .arrow {
        display: none;
    }
}