.solutionCards-container {
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.solutionCards-cardWrap {
  width: 570px;
  height: 500px;
  margin-bottom: 30px;
  background: #efeeed;
  position:relative;
}
.solutionCards-cardTop {
 /* display:flex; 
  height: 500px;
  align-items: center;
  justify-content: center;
  /*background: rgba(27, 24, 22, 0.35);*/
  
  text-align:center;

}
.solutionCards-cardTop h2 {
  padding: 30px;
  font-size: 30px;
  font-weight: 600;
  line-height: 40px; /* 133.333% */
  position: absolute;
  bottom: 10px;
  text-align:center;
  width: 100%;
}
.solutionsCards-image {
  /*max-width: 300px; */
  text-align:center;
  margin: 0 auto;
  height: 150px !important;
  width: 100%;
  position: absolute;
  top: 50px;
}
.solutionsCards-image img {
  height: 250px;
  width: auto;
}

.solutionCards-cardReveal {
  display:none;
  background: rgba(0, 0, 0, 0.80);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px; /* 137.5% */
  padding: 35px;
  height: 500px;
  position: absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
}
.solutionCards-cardReveal h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px; /* 133.333% */
}
.solutionCards-cardReveal li {
  padding-bottom: 10px; 
}
.cardReveal-button {
  background: #A62626;
  padding: 15px 30px;
  border-radius: 30px;
  text-align:center;
  font-weight: 700;
  font-size: 15px;
}
/* the flippiness */
.solutionCards-cardWrap:focus .solutionCards-cardTop, .solutionCards-cardWrap:hover .solutionCards-cardTop { 
  /*display:none;*/
}
.solutionCards-cardWrap:focus .solutionCards-cardReveal, .solutionCards-cardWrap:hover .solutionCards-cardReveal { 
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media(max-width:1180px){
  .solutionCards-cardWrap { width: 49%; min-height: 500px; }
  .solutionCards-cardTop { min-height: 500px; }
  .solutionCards-cardReveal { min-height: 500px; }
}
@media(max-width:1024px){
  .solutionCards-cardTop h2 { font-size: 28px; }
  .solutionCards-cardReveal h2 { font-size: 28px; }
}
@media(max-width:840px){
  .solutionCards-cardWrap { width: 100%; min-height: 500px; }
  .solutionCards-cardTop h2 { font-size: 33px; }
  .solutionCards-cardReveal h2 { font-size: 33px; }
}
@media(max-width:840px){
  .solutionCards-cardWrap { width: 100%; min-height: 600px; }
  .solutionCards-cardTop { min-height: 600px; }
  .solutionCards-cardReveal { min-height: 600px; }
}