.md\:flex-row .w-full .lm-bg-sec::before{
     content: 'يمكنك كتابة عدد المنتجات رقما ';
color:red ;
    font-weight: 700;
}
body::before{
content:"";
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background: radial-gradient(circle, rgba(255,120,0,0.15) 2px, transparent 2px);
background-size:40px 40px;
animation: moveBackground 20s linear infinite;
z-index:-1;
}

@keyframes moveBackground{
from{
background-position:0 0;
}
to{
background-position:200px 200px;
}
}