.flip-card {
  background-color: transparent;
  width: 250px;
  height: 250px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 14px 18px 0 rgba(0,0,0,0.8);
}

.flip-card:hover .flip-card-inner {
  transform: rotateX(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #C0C0C0;
  color: black;
}

.flip-card-back {
  /*background-color: #2980b9;*/
  color: white;
  transform: rotateX(180deg);
}

.flip-card-front img
{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover; /* Empêche l'image de se déformer */
}

.flip-card-back img {
  width: 80% !important;
  height: 80% !important;
  object-fit: cover; /* Empêche l'image de se déformer */
}