.how_it_works_home{
    clear:both;
    width:88%;
    max-width:1110px;
    margin:30px auto 35px;
    direction:rtl;
    text-align:center;
}

.how_it_works_title h2{
    margin:0 0 24px;
    font-size:21px;
    font-weight:700;
    color:#333;
}

.how_it_works_steps{
    display:flex;
    gap:16px;
    justify-content:center;
    align-items:stretch;
}

.how_it_works_step{
    flex:1;
    position:relative;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:20px;
    padding:28px 20px 22px;
    box-sizing:border-box;
    box-shadow:0 5px 18px rgba(0,0,0,.05);
}

.how_it_works_number{
    display:flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    margin:0 auto 14px;
    border-radius:50%;
    background:#19b8af;
    color:#fff;
    font-size:18px;
    font-weight:700;
}

.how_it_works_step h3{
    margin:0 0 10px;
    color:#333;
    font-size:16px;
    font-weight:600;
}

.how_it_works_step p{
    margin:0;
    color:#666;
    font-size:13px;
    line-height:25px;
}

@media screen and (max-width:700px){
    .how_it_works_home{
        width:92%;
        margin:25px auto 30px;
    }

    .how_it_works_title h2{
        font-size:18px;
        margin-bottom:18px;
    }

    .how_it_works_steps{
        flex-direction:column;
        gap:12px;
    }

    .how_it_works_step{
        padding:22px 16px 20px;
    }
}