
.sectionGamme{
    background-color: var(--primary);
    padding-block: 80px 170px;
    border-radius: 40px 40px 0px 0px;
}

.sectionGamme .container{
    display: flex;
    align-items: center;
    gap: 110px;
}

.sectionGamme .left,
.sectionGamme .right{
    width: 50%;
}

.sectionGamme .left > .surTitre{
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 16px;
    color: #fff;
}

.sectionGamme .left > .titre{
    font-size: 43px;
    line-height: 50px;
    margin-bottom: 16px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.sectionGamme .left > .paragraphe *{
    color: #fff;
}

.sectionGamme .left .liste{
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sectionGamme .left .liste li{
    background-color: #fff;
    border-radius: 8px;
    width: 100%;
}

.sectionGamme .left .liste li a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 30px;
}

.sectionGamme .left .liste li a::after{
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: block;
    height: 20px;
    width: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30.35' height='20.116' viewBox='0 0 30.35 20.116'%3E%3Cg id='Groupe_7' data-name='Groupe 7' transform='translate(-78 -194)'%3E%3Cpath id='Tracé_63' data-name='Tracé 63' d='M104.4,203.311l-26.353-.088L78,205.244l25.957.044-7.247,7.247,1.581,1.581L108.35,204.1v-.044l-1.581-1.581L98.292,194l-1.581,1.625Z' fill='%2323346a' fill-rule='evenodd'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.sectionGamme .left .liste li .titre{
    font-size: 24px;
    line-height: 28px;
    color: var(--primary);
    font-weight: normal;
}

.sectionGamme .images,
.sectionGamme .images li,
.sectionGamme .images li img{
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 535/680 !important;
    border-radius: 15px !important;
}

@media (max-width: 992px) {
    .sectionGamme{
        padding-block: 70px 110px;
        border-radius: 20px 20px 0px 0px;
    }
    .sectionGamme .left{
        width: 100%;
    }
    .sectionGamme .right{
        display: none;
    }
    .sectionGamme .left .liste li .titre{
        font-size: 20px;
        line-height: 24px;
    }
    .sectionGamme .left > .titre{
        font-size: 30px;
        line-height: 35px;
    }
}

/* ========== Animation ========== */

.sectionGamme .images {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .sectionGamme .images li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;                   /* valeur par défaut */
    transition: transform 0.4s ease-out;
  }
  
  .sectionGamme .images li img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  @keyframes shuffle-card {
    0% {
      transform: translate(0, 0) rotate(0deg);
    }
    50% {
      transform: translate(100px, 10px) rotate(5deg);
    }
    100% {
      transform: translate(0, 0) rotate(0deg);
    }
  }
  
  .sectionGamme .images li.animate {
    animation: shuffle-card 0.6s forwards;
  }