.cards {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    
  }
  
  .cards_item {
    display: flex;
    padding: 1rem;
  }
  

  
  @media (min-width: 56rem) {
    .cards_item {
      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;
  }
  
  .card_content {
    padding: 4px;
    /*background: linear-gradient(to bottom left, #EF8D9C 40%, #FFC39E 100%);*/
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13pt;
    color: black;
    min-height: 50px;
    /*background-color: rgba(0, 187, 213, 0.1);*/
    border-bottom: 5px solid #00bbd5;
    text-transform: uppercase;
  }

  .card_content div{
    display: flex;
    
    width: 70%;
    justify-content: center;
  }
  
  .card_title {
    /* color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin: 0px; */
    
  }
  
  .card_text {
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;    
    font-weight: 400;
  }