/* Add custom CSS styles below */ 
.s-product-card-entry  {
  border-width: 0 !important; /* إلغاء سمك الإطار */
}

.rounded-full {
  border-radius: 0; /* إلغاء التدوير لجعل الإطار مستطيلًا بدلاً من دائري */
}
 
 
.about-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  width: 80%;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 40px;
}




@media only screen and (max-width: 767px) {
  .about-us {
    grid-template-columns: 1fr;
  }
  
}