.pourImage{
  display: flex;
  padding: 8px;
  flex-direction: row;
}

img:hover{
    transform: scale(1.1);
    transition: all 0.1s linear;
    
  }
  img:hover .slide{
      opacity: 1;
  }
  
  .slide{
    opacity: 0;
    transition: opacity 0.3s ease;
    display: rflex;
    align-items: center;
    padding-top: 16px;
  }

.duoImageText{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    height: auto;
    width: 62%;
    flex-direction: column;
    margin-top: 0;
    padding: 8px;
  }

  .duoImageText img{
  max-height: 90%;
  max-width: 90%;
  object-fit: cover;
  }

  .duoImageText:hover .slide{
    visibility: visible;
    opacity: 1;
    transition: all 0.1s linear;
  }

.col .duoImageText{
    gap: 10px;
}

img {
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;   /* garde les proportions */
}