.banqueImagesAvecTexte{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
}

.imageAvecTexte{
  max-width: 47%;
  margin-bottom: 25px;
}

.imageAvecTexte .titreImage{
  font-weight: bold;
  font-size: 1.35rem;
  margin-bottom: 25px;
}

.overlayDiv{
  position: relative;
  overflow: hidden;
}

.imageAvecTexte img{
  max-width: 100%;
}

.texteImage{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 10px;
  color: white;
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
}

.texteImage::before {
  content: attr(data-content);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 5px;
  font-size: 0.9rem;
  border-radius: 5px;
  text-align: center;
  transform: translateY(-100%)
}

@media(max-width: 992px){
  
  .imageAvecTexte{
    max-width: 90%;
  }

}

@media(max-width: 1200px) {
  .texteImage{
    font-size: 0.90rem;
  }
}