.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.col-md-2 {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  min-height: 190px;
}

.card-img-top {
  width: 194px !important;
  height: 190px;
  object-fit: cover;
  margin: 0 10px 0 0;
  align-self: flex-start;
}

.card-body {
  flex-grow: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .col-md-2 {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }

  .card {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    width: 90%;
    min-height: 190px;
  }

  .card-img-top {
    width: 200px !important;
    height: 190px;
    object-fit: cover;
    margin: 0 10px 0 0;
    align-self: flex-start;
  }

  .card-body {
    flex-grow: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}