
      .image-containerg {
        position: relative;
        width: 100%;
        height: 400px; /* Ajustez la hauteur selon vos besoins */
        overflow: hidden;
      }

      .imgg {
        position: absolute;
        max-width: 50%;
      }

      .bottom-right {
        bottom: -50%;
        right: -50%;
      }

      .top-left {
        top: -50%;
        left: -50%;
      }

      .ppp img {
        animation-name: rotate;
        animation-duration: 50s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
      }
      @keyframes rotate {
        from {
          transform: rotate(0deg);
        }
        to {
          transform: rotate(360deg);
        }
      }
      .blog-post-txt p {
        text-transform: none;
      }
   