.banner, .bannerFond {
    position: relative;
}

.bannerSimple .banner {
    z-index: 3;
    position: relative;
    display: flex;
    width: 90%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    max-width: 1366px;
    margin: 0 auto;
}

.bannerSimple .imgcropCtn {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bannerSimple::before {
    content: "";
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(27, 46, 40, 0.50) 0%, rgba(27, 46, 40, 0.50) 100%);
}

.bannerSimple .banner .container-content {
    display: block;
    width: 100%;
    max-width: 826px;
    margin: 0 auto;
}

.bannerSimple .banner .container-content .titre {
    margin: 0 auto 24px auto;
}

.bannerSimple .banner .container-content p {
    color: var(--White, #FEFEFE);
    text-align: center;
    font-family: "Public Sans";
    font-size: 4.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2; /* 116.667% */
    text-align: center;
}

.bannerSimple .btn {
    text-align: center;
    margin: 0 auto;
}

.bannerPresentation .banner {
    z-index: 3;
    position: relative;
    display: flex;
    width: 90%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    max-width: 1366px;
    margin: 0 auto;
}

.bannerPresentation {
    background: var(--Green-2, #243E36);
}

.bannerPresentation .banner .container-content {
    display: block;
    width: 100%;
    max-width: 826px;
    margin: 0 auto;
}

.bannerPresentation .banner .container-content .titre {
    margin: 0 auto 24px auto;
}

.bannerPresentation .banner .container-content p {
    color: var(--White, #FEFEFE);
    text-align: center;
    font-family: "Public Sans";
    font-size: 4.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2; /* 116.667% */
    text-align: center;
}

.bannerPresentation::before {
   display: none;
}

.bannerPresentation .btn {
    margin: 0 auto;
}

.bannerPresentation {
    overflow: hidden;
    cursor: pointer;
    user-select: none;
    position: relative;
  }

  .container-galerie {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* derrière le contenu */
  }

  .galeriePhotos {
    width: 100%;
    height: 100%;
  }
  
  .galeriePhotos .item {
    position: absolute;
    width: 280px;
    height: 280px;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1.2s ease, transform 1.2s ease;
    will-change: transform, opacity;
    pointer-events: none;
    border-radius: 12px;
  }
  
  .galeriePhotos .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @media (max-width: 992px) {
    .bannerSimple .banner .container-content p {
        font-size: 3.2rem;
    }

    .bannerPresentation .banner .container-content p {
        font-size: 2.4rem;
    }
}