.cards-list {
    z-index: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .cards {
    margin: 30px auto;
    width: 200px;
    height: 200px;
    border-radius: 10px;
  box-shadow: 5px 5px 30px 7px rgba(0,0,0,0.25), -5px -5px 30px 7px rgba(0,0,0,0.22);
    cursor: pointer;
    transition: 0.4s;
  }
  
  .cards .card_image {
    width: inherit;
    height: inherit;
    border-radius: 20px;
  }
  
  .cards .card_image img {
    width: inherit;
    height: inherit;
    border-radius: 20px;
    object-fit: cover;
  }
  
  .cards .card_title {
    text-align: center;
    border-radius: 0px 0px 40px 40px;
    font-family: sans-serif;
    font-weight: bold;
    text-decoration:none;
    font-size: 22px;
    margin-top: -35px;
    height: 40px;
  }
  
  .cards:hover {
    transform: scale(0.9, 0.9);
    box-shadow: 5px 5px 30px 15px rgba(0,0,0,0.25), 
      -5px -5px 30px 15px rgba(0,0,0,0.22);
    text-decoration:none;
  }
  .cards a:hover{
    text-decoration: none !important;
  }
  .title-white {
    color: white;
  }
  
  .title-black {
    color: black;
  }
  

  .user-card {

    border-radius: 20px !important;
    box-shadow: 5px 5px 30px 7px rgba(0,0,0,0.25), -5px -5px 30px 7px rgba(0,0,0,0.22);

    transition: 0.4s;
  }
  .user-card:hover {
    box-shadow: 5px 5px 30px 15px rgba(0,0,0,0.25), 
      -5px -5px 30px 15px rgba(0,0,0,0.22);
    text-decoration:none;

  }
  .user-card a:hover{
    text-decoration: none !important;
  }
.user-card .details .number{
  font-size:25px !important;
}
.user-card .more{
  font-size:16px !important;
}