.market_location{
   
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
    gap: 20px;
}
.location_head{
     margin-top: 20px;
    padding:  15px;
    width: 98%;
    margin: 20px auto;
}
.market_location .box{
    background-color: #232424;
    padding: 6px 0;
  transition: all .2s;
    color: white;
    text-align: center;
    border-radius: 10px;
}
.market_location .box:hover{
     background-color: #101111;
}