.store-03-css .small-banner {
  padding: 10px;
  flex-shrink: 1;
  flex-grow: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 50%;
}
.store-03-css .small-banner a {
  flex: auto;
}
.store-03-css .small-banner img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100px;
  max-height: 145px;
  object-fit: cover;
  opacity: .8;
  transition: 0.15s;
}
.store-03-css .small-banner a:hover img {
  opacity: 1;
}
.store-03-css .large-banner {
  padding: 10px;
  flex: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-03-css .large-banner img {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
}
@media (min-width: 995px) {
  .store-03-css .small-banner {
    flex-basis: 33.333%;
  }
}
