/*****--**--****-|SECTION 1 - Logos|-****--**--*****/
    #sectionlogo h1 {
        color: black;
    }

    #sectionlogo article {
        width: 80%;
        margin: auto;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12px;
        padding: 6px;
    }

    #sectionlogo article a {
        flex: 1 1 calc(25% - 12px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        box-sizing: border-box;
        position: relative;
        overflow: hidden;
        cursor: url('../images/curseurs/oeil.png')36 31, auto;
        display: flex;
        height: 45dvh;
    }

    #sectionlogo article a img {
        width: 100%;
        display: block;
        transition: transform 0.3s ease;
        height: 100%;
    }

    #sectionlogo article a span {
        display: block;
        width: 100%;
        position: absolute;
        bottom: -100%;
        left: 0;
        background-color: black;
        color: white;
        padding: 10px;
        text-align: center;
        font-family: Karrik;
        transition: bottom 0.3s ease;
    }

    #sectionlogo article a:hover span {
        bottom: 0;
    }

    #sectionlogo article a:hover img {
        transform: scale(1.05);
    }

    #sectionlogo .buttonencore{
        cursor: url('../images/curseurs/tada.png')36 31, auto;
    }

    /*****--**--****-|Responsive Tablette - Logos|-****--**--*****/
        @media screen and (max-width: 1200px) {
            #sectionlogo article a {
                flex: 1 1 calc(33.33% - 12px);
            }
        }

        @media screen and (max-width: 960px) {
            #sectionlogo article a {
                flex: 1 1 calc(50% - 12px);
            }
        }
    /*****--**--****-|Responsive Tablette - Logos|-****--**--*****/

    /*****--**--****-|Responsive Mobile - Logos|-****--**--*****/
        @media screen and (max-width: 576px) {
            #sectionlogo article a {
                flex: 1 1 100%;
            }
        }
    /*****--**--****-|Responsive Mobile - Logos|-****--**--*****/
/*****--**--****-|SECTION 1 - Logos|-****--**--*****/
