.card-module{
  margin:20px 0px;
}

.heading-group {
  margin: 2em 0;
  text-align: center;
}

.cards{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-gap: 50px;
}

.cards a{
    text-decoration: none;
}

.cards a:hover{
    text-decoration: none;
    color: #333333;
}

.card {
    padding: 15px 15px 45px 15px;
    background-color: #f4f4f4;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.sub-head{
  font-family: 'DIN-2014',sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.53;
  letter-spacing: 1.9px;
  text-align: center;
  color: #6d7c81;
  margin:20px 0px;
}

.card-image{
  height:200px;
  display: flex;
  justify-content: center; /* align horizontal */
  align-items: center; 
}

.card-image img{
  max-height: 200px;
}

.heading{
  font-family: 'DIN-2014',sans-serif;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.33;
    letter-spacing: 2.9px;
    text-transform: uppercase;
  color:black;
  margin-top: 30px;
  margin-bottom: 25px;
}

.supporting-text{
      font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: normal;
    word-spacing: -.07em;
    color: black;
    margin: 0px 40px;
    flex-grow: 1;
}


.cta{
  border: 2px solid black;
  font-family: 'DIN-2014',sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: 2.8px;
  text-align: center;
  text-transform: uppercase;
  color: black !important;
  text-transform: uppercase;
  padding: 1em 1.2em;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease 0s;
  margin: 20px 60px 0px 60px;
}


.card:hover .cta {
  background-color:black;
  color: white !important;
  text-decoration: none;
}

.cards a:focus{
  text-decoration:none;
}



@media only screen and (min-width: 1px) {
 .cards{
    grid-template-columns: 1fr;
  }
}

@media only screen and (min-width: 850px) {
 .cards{
    grid-template-columns: 1fr 1fr;
  }  
}

@media only screen and (min-width: 1050px) {
 .cards{
    grid-template-columns: 1fr 1fr;
  }  
}

@media only screen and (min-width: 1250px) {
 .cards{
    grid-template-columns: 1fr 1fr 1fr;
  }  
}

@media only screen and (min-width: 1450px) {
 .cards{
    grid-template-columns: 1fr 1fr 1fr;
  }  
}