.cards-2 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}

.cards__label {
  text-align: center;
}

.alternate_card {
  align-items: center;
  border-radius: 15px;
  border: 1px solid #999999;
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  margin: 12px 12px;
  padding: 2rem 2rem;
  transform: scale(1);
  transition: box-shadow 0.3s;
  transition: scale 0.3s ease-in-out;
  width: 45%;
  background: #ffffff;
  text-align: center;
}

.alternate_card:hover {
  box-shadow: 0 2px 25px 0 rgba(0, 0, 0, 0.15);
  transform: scale(1.02);
  transition: box-shadow 0.3s;
  transition: scale 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .alternate_card {
    width: 100%;
  }
  
  .card {
    margin: 1rem 0;
    width: auto;
  }


.card__title {
  text-align: center;
}

.card__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
  color: #000000;
}

.card__image img {
  height: auto;
  max-width: 100%;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.card__button {
  font-size: 14px;
  margin-top: 1rem;
}
  
.cards-2 .container .mobile-col {
  width: 805;
  }

/* Fixes for internet explorer */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card {
    align-items: stretch;
    text-align: center;
  }
  
