.profiles_card {
    margin-top: 2rem;
}

.card_profile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* STYLE  */
.wrapper {
    background-color: #6b63ffc4;
    /* background-color: rgba(255, 255, 255, 0.7); */
    border-radius: 15px;
    /* overflow: hidden; */
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset,
      rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
      rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  }
  
  .grey {
    color: #fff;
  }
  
  .profile-top {
    height: 250px;
    width: 500px;
    background-image: url("/images/city.jpg");
    background-position: center;
    background-size: cover;
    position: relative;
  }
  
  .profile-image {
    background-image: url("/images/user.jpg");
    background-position: center;
    background-size: cover;
    position: relative;
    width: 300px;
    height: 300px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid white;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
  }
  
  .profile-bottom {
    margin-top: 150px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .main-infos {
    display: flex;
    align-items: center;
    font-size: 28px;
    margin-bottom: 5px;
  }
  
  .name {
    font-weight: 700;
    margin-right: 15px;
  }
  
  .email {
    font-size: 14px;
    margin-bottom: 25px;
  }
  
  .ville {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .ville ion-icon {
    margin-right: 5px;
    color: #388eff;
  }
  
  .profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
  
  .stat-item:not(:last-child) {
    border-right: 1px solid #6c63ff;
  }
  
  .stat {
    font-size: 20px;
    font-weight: 700;
  }
  