
.recomd_food ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0px;
  }
  .recomd_food ul li {
    text-align: center;
    width: 25%;
    height: 100%;
    padding: 10px;
  }
  
  .recomd_food ul li .thumb{
    width:100%;
    height:0;
    border-radius: 50%;
    padding-bottom:100%;
    overflow: hidden;
    position:relative;
    margin-bottom:10px;
  }
  
  .recomd_food ul li .thumb img {
    width: 100%;
    border-radius: 50%;
    height: 100%;
    position:absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    margin-bottom: 15px;
  }
  .recomd_food ul li p {
    font-size: 15px;
    color: #555;
    font-weight: 500;
  }
  
@media (width <= 550px){
  .recomd_food ul li p {
    font-size: 14px;
    font-weight: 400;
  }
}

  
@media (width <= 400px) {
  .recomd_food ul li p {
    font-size: 13px;
    font-weight: 400;
  }
}

  
  