.item-row {
  display: flex;
  flex-wrap: wrap;
}
.item-column {
  display: flex;
  flex-flow: column wrap;
  flex: 1 0 25%;
  margin: 15px auto;
  padding: 15px;
  align-items: flex-start;
}

.item-text {
  margin: 0 auto;
  padding: 0;
}
.item-button {
	margin-top: auto;
  align-self: center;
  text-align:center;
}
.item-button.w100 {
  width:100%;
  min-height: 80px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.item-img {
	position: relative;
  width: 100%;
  height: 180px;;
  overflow: hidden;
}
.item-img:before {
    content: " ";
    display: block;
    padding-top: 250px;
    width: 100%;
  }
.item-img-src {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media only screen and (max-width:960px) {
.item-column {
  flex: 1 0 50%;
}
}
@media only screen and (max-width:480px) {
.item-column {
  flex: 1 0 100%;
}
