
provider_div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.provider_link {
  display: inline-block;
  margin-bottom: 8px;
  width: 100%;
  margin-right: 0;
  text-decoration: none;
  color: black;
}

.provider_link:nth-of-type(2n) {
  margin-right: 0;
}

@media screen and (min-width: 35em) {
  .provider_link {
    width: 210px;
	margin-right: 8px;
  }
  
 .provider_link:nth-of-type(2n) {
    margin-right: 8px;
  }
  
 .provider_link:nth-of-type(4n) {
    margin-right: 8px;
  }
}

figure {
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid #e2e2e2;
}

figcaption {
margin-bottom: 25px;
    text-align: center;
    font-size: 9px;
    font-weight: bold;
    padding: 0 0px;
    line-height: 14px;
}

.provider_image:hover {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.provider_image {  	
  max-width: 70%;
  padding: 20px;
  margin: auto;
  height: auto;
  display: block;
  -webkit-transition: -webkit-transform .2s ease-in-out;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
}

