/* https://programandosolucoes.dev.br/2021/06/22/card-html-css/ */
.item-card {
    border-radius: 5px;
    box-shadow: 7px 7px 13px 0px rgba(50, 50, 50, 0.22);
    padding: 30px;
    margin: 20px;
    width: 100%;
    transition: all 0.3s ease-out;
  }
  .item-card:hover {
    transform: translateY(-5px);

  }
   
  .item-card p {
    color: #a3a5ae;
    font-size: 16px;
  }
  .item-card i {
    float: right;
  } 
  .image-card {
    float: right;
    max-width: 250px;
    max-height: 250px;
  }
  .blue {
    border-left: 3px solid #4895ff;
  }
   
  .green {
    border-left: 3px solid #3bb54a;
  }
   
  .red {
    border-left: 3px solid #b3404a;
  }