.test {
  float: left;
  width: 25%;
  box-sizing: border-box;
  padding: 10px;
  min-width: 150px;
  color: black;
  font-size: 14px;
  border: 2px solid #FFF;
}
.container {
  width: 100%;
}
@media (max-width:768px) {
  .test {
    float: none;
    width: 49%!important;
    box-sizing: border-box;
    display: inline-block;
    padding: 10px;
    border: 2px solid #FFF;
    min-width: auto;
    font-size: 12px;
    line-height: 24px;
  }
  .test img{
    max-width: 60%!important;
  }
}
@media (max-width:500px) {
  .test img{
    max-width: 70%!important;
  }
}
