/**
 * Carousel 
 */

 #myCarousel {
        --f-arrow-pos: 10px;
        --f-arrow-width: 38px;
        --f-arrow-height: 38px;
        --f-arrow-svg-width: 16px;
        --f-arrow-svg-height: 16px;
        --f-arrow-svg-stroke-width: 2.5;
        --f-arrow-color: #475569;
        --f-arrow-shadow: 0 6px 12px -2px rgb(50 50 93 / 25%), 0 3px 7px -3px rgb(0 0 0 / 30%);
        --f-arrow-border-radius: 50%;
        --f-arrow-bg: #fff;
        --f-arrow-hover-bg: #f9f9f9;
 }

#myCarousel .f-carousel__slide {
    max-height:750px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
      }

      #myCarousel .f-carousel__slide img {
        max-width: 100%;
        height: auto;
      }

      .actualites {
        max-width: 300px;
        padding: 1rem;
        position: absolute;
        background-color: var(--white);
        left: 6rem;
        bottom: 0;
        will-change: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
      }



/* Responsive */
@media (max-width: 768px) {
  .f-carousel__slide {
    min-width: 250px;
    padding: 15px;
  }

  .actualites {
        position: relative;
        
      }
}

@media (max-width: 576px) {
  .f-carousel__slide {
    min-width: 200px;
    padding: 12px;
  }

}