.feature-inline-list > h3 {
  text-align: center;
  background-color: #efefef;
  margin:0;
  padding: 1em 0;
  font-size:26px;
}
.feature-inline-list .section {
  padding-top: 0;
}
.features.inline-list-overlay {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.features.inline-list-overlay img {
  display: block;
  width: 100%;
  height: 100%;
  opacity:0;
}
.features.inline-list-overlay .item {
  position: relative;
  flex-grow: 1;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width:600px){ 
  .features.inline-list-overlay .item {
    width: 100%;
  }
}
@media only screen and (min-width:601px) and (max-width:992px){ 
  .features.inline-list-overlay .item {
    max-width: calc(1/2*100%);
  }
}

@media only screen and (min-width:993px) { 
  .features.inline-list-overlay .item {
    max-width: calc(1/var(--columns)*100%);
  }
}
.features.inline-list-overlay .item h3{
  position:absolute;
  bottom:3rem;
  font-weight: bold;
  font-size: 20px;
  line-height: 2em;
  color:#fff;
  text-align:center;
  width:100%;
  background-color: rgba(0,0,0,0.5);
}