/*****--**--****-|SECTION 2 - Affiches|-****--**--*****/
    #sectionaffiches{
        background-color: black;
        padding: 0 0 0 0;
    }
    #sectionaffiches h1{
        color: white;
        padding: 12px 0 6px 12px;
    }

    #sectionaffiches article{
        display: flex;
        flex-wrap: wrap;
    }

    #sectionaffiches article img {
        width: 20%;
        display: block;
        transform: scale(1.01);
        transition: transform 0.6s ease, opacity 0.6s ease;
        transform-style: preserve-3d;
        backface-visibility: hidden;
        cursor: url('../images/curseurs/tada.png')36 31, auto;
    }

    #sectionaffiches article img.flipping {
        transform: rotateY(180deg);
        opacity: 0;
    }
    /*****--**--****-|Responsive Tablette - Affiches|-****--**--*****/
        @media screen and (max-width: 960px){
            #sectionaffiches article img{
                width: calc(100% / 3);
            }
        }
    /*****--**--****-|Responsive Tablette - Affiches|-****--**--*****/

    /*****--**--****-|Responsive Mobile - Affiches|-****--**--*****/
        @media screen and (max-width: 576px){
            #sectionaffiches h1{
                padding-bottom: 12px;
            }
            #sectionaffiches article img{
                width: calc(100% / 2);
            }
        }
    /*****--**--****-|Responsive Mobile - Affiches|-****--**--*****/
/*****--**--****-|SECTION 2 - Affiches|-****--**--*****/

