.blochomme {
    background-color: #5ba73b;
}
.blochomme .wiziBtn {
    background-color: #FCFCFC !important;
    color: #000000 !important;
    border: none !important;
}
.blochomme .wiziBtn:hover {
    background-color: #eaeaea !important;
    color: #000000 !important;
}

@media (max-width: 2100px) and (min-width: 1200px) {
      .imagedroite .wizi-imgtxt__right {
        animation: imagedroite linear;
        animation-timeline: view();
        animation-range-start: cover 0%;
        animation-range-end: contain 30%;
    }
}
@keyframes imagedroite {
  from{
  transform: translateX(100%);
  opacity:0;
  }
  to {
  transform: translateX(0%);
  opacity:1;
  }
}

@media (max-width: 2100px) and (min-width: 1200px) {
      .imagegauche .wizi-imgtxt__left {
        animation: imagegauche linear;
        animation-timeline: view();
        animation-range-start: cover 0%;
        animation-range-end: contain 30%;
    }
}
@keyframes imagegauche {
  from{
  transform: translateX(-100%);
  opacity:0;
  }
  to {
  transform: translateX(0%);
  opacity:1;
  }
}