/*****--**--****-|SECTION 3 - Web|-****--**--*****/
    #sectionweb {
        background-color: white;
    }

    #sectionweb h1 {
        color: black;
    }

    #sectionweb article {
        width: 90%;
        margin: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 6px;
        gap: 12px;
    }

    #sectionweb article a {
        flex: 1 1 calc(50% - 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;
    }

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

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

    #loadMoreWebsites{
        color: black!important;
        cursor: url('../images/curseurs/tada.png')36 31, auto;
    }
    /*****--**--****-|Responsive Tablette - Web|-****--**--*****/
        @media screen and (max-width: 960px) {
            #sectionweb article a {
                flex: 1 1 calc(100% - 12px);
            }

            #sectionweb article a img {
                height: 33vw;
            }
        }
    /*****--**--****-|Responsive Tablette - Web|-****--**--*****/

    /*****--**--****-|Responsive Mobile - Web|-****--**--*****/
        @media screen and (max-width: 576px) {
            #sectionweb article {
                width: 90%;
            }

            #sectionweb article a img {
                height: auto;
            }
        }
    /*****--**--****-|Responsive Mobile - Web|-****--**--*****/
/*****--**--****-|SECTION 3 - Web|-****--**--*****/
