.card_image {
    flex:1;
    text-align: center;
    background-color: #eecec1;
}
img.cardimage {
    height: auto;
    max-width: 80%;
    vertical-align: middle;
    border-radius:50%;
    margin: 1rem;
  }
  
  .btn {
    color: #eeeeee;
    padding: 0.8rem;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 4px;
    font-weight: 400;
    display: block;
    width: 100%;
    cursor: pointer;
    border: 1px solid #eeeeee;
    background: transparent;
  }
  
  .btn:hover {
    background-color: rgba(255, 255, 255, 0.12);
  }
  
  .cards {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .cards_item {
padding: 1rem;
display: flex;
  }
  
  @media (min-width: 40rem) {
    .cards_item {
      width: 50%;
    }
  }
  
  @media (min-width: 56rem) {
    .cards_item {
      width: 25%;
    }
    .cards_item_three {
      width: 33.3%;
    }
  }
  
  .cards_itemrt {
    display: flex;
    padding: 1rem;
  }
  
  @media (min-width: 40rem) {
    .cards_itemrt {
      width: 100%;
    }
  }
  
  @media (min-width: 56rem) {
    .cards_itemrt {
      width: 100%;
    }
  }
  
  .card {
    background-color: white;
    border-radius: 0.25rem;
    box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-top-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }


  
  .card_content {
    padding: 1rem;
    background-color: #326453;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .card_title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0px;
    text-align: center;
  }
  .card_title a, .card_title a:visited, .card_title a:active, .card_title a:hover {
    color: #ffffff;
    text-decoration: none;
  }
  
  .card_text {
    color: #111111;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;    
    font-weight: 400;
    flex-grow: 1;
  }