.bloc--text {
    background-color: #791135;
    /* color: white; */
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
    padding: 1rem;
}

.bloc--text p {
    color: white !important;
}

.bloc1 .wizi-imgtxt.wizi-imgtxt--textRightTextLeft.wizi-imgtxt--reverse.wizi-imgtxt--half {
    background-color: #791135;
    color: white;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

.bloc4 .wizi-imgtxt.wizi-imgtxt--textSmallRightTextLeft.wizi-imgtxt--half {
  background-color: #791135;
  color: white;
  border-top-left-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

.bloc3 .wizi-imgtxt.wizi-imgtxt--TextSmallLeftTextRight.wizi-imgtxt--half {
    background-color: #F1D887;
    color: black;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
    border-bottom-right-radius: 20px;
}

.powered {
    background: var(--footer-background);
    margin: 0;
    padding: 17px 20px;
    width: 100%;
    border-top: solid 4px #791135;
}

.footer__wrapper:before {
    background-color: #791135;
    content: "";
    display: block;
    height: 3px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translate(-50%);
    width: 100%;
}

img.wizi-img__item {opacity: 0.8;transition: 0.8s ease-out  !important;border-radius: 20px;}

img.wizi-img__item:hover {opacity: 1;transition: 0.8s ease-out  !important;border-radius: 20px;}

.wizi-txt__background {
    border: solid 3px #F1D887;
}

@media (max-width: 2100px) and (min-width: 1200px) {

        .bloc1 {
        animation: slide1 linear;
        animation-timeline: view();
        animation-range-start: cover 0%;
        animation-range-end: contain 30%;
    }

        .bloc3 {
        animation: slide2 linear;
        animation-timeline: view();
        animation-range-start: cover 0%;
        animation-range-end: contain 30%;
    }
          .bloc4 {
        animation: slide1 linear;
        animation-timeline: view();
        animation-range-start: cover 0%;
        animation-range-end: contain 30%;
    }
}

@keyframes slide2 {
  from{
  transform: translateX(100%);
  opacity:0;
  }
  to {
  transform: translateX(0%);
  opacity:1;
  }
}

@keyframes slide1 {
  from{
  transform: translateX(-100%);
  opacity:0;
  }
  to {
  transform: translateX(0%);
  opacity:1;
  }
}