.disko-component-images-liens {
    padding: 4vw 4.173vw;
    position: relative;
}


.disko-component-images-liens .images-liens-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.disko-component-images-liens h2 {
    font-size: 52px;
    line-height: 52px;
    text-align: center;
}

.disko-component-images-liens p {
    text-align:center;
    max-width: 800px;
    margin-bottom: 4vw;
}

.disko-component-images-liens .images-liens-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    /* display: -ms-grid;
    display: grid; */
    /* grid-template-columns: repeat(3, 1fr); */
    width:100%;
    /* grid-gap: 30px; */
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap:30px;
}

.disko-component-images-liens .images-liens-item {
    position: relative;
    height: 21.596vw;
    width: calc((100% - 60px)/3);
}

.disko-component-images-liens a {
    position: absolute;
    top: auto;
    left: auto;
    height: 100%;
    width: 100%;
}

.disko-component-images-liens .images-liens-logo {
    position: relative;
    height: 100%;
}

.disko-component-images-liens .images-liens-logo img {
    position: absolute;
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;    
    max-height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: scale(1.5) translate(-50%, -50%);
        -ms-transform: scale(1.5) translate(-50%, -50%);
            transform: scale(1.5) translate(-50%, -50%);
        -webkit-transform-origin: left top;
        -ms-transform-origin: left top;
            transform-origin: left top;
}

.disko-component-images-liens .images-liens-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.disko-component-images-liens .images-liens-img img {
    opacity: 0;
    -webkit-transition: all 450ms ease;
    -o-transition: all 450ms ease;
    transition: all 450ms ease;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;

}

.disko-component-images-liens .images-liens-logo img:last-child {
    opacity: 0;
    z-index: 2;
    transition: opacity 450ms ease;
    -webkit-transition: opacity 450ms ease;
    -o-transition: opacity 450ms ease;
}

.images-liens-img-overlay {
    background-color: rgba(0,0,0,0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
        -webkit-transition: opacity 450ms ease;
    -o-transition: opacity 450ms ease;
    transition: opacity 450ms ease;
}

@media (min-width:1025px) {
    .disko-component-images-liens .images-liens-link:hover .images-liens-img img,
    .disko-component-images-liens .images-liens-link:hover .images-liens-img-overlay{
        opacity: 1;
    }
    
    .disko-component-images-liens .images-liens-link:hover .images-liens-logo img:last-child {
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    .disko-component-images-liens .images-liens-logo img {
        -webkit-transform: scale(1) translate(-50%, -50%);
            -ms-transform: scale(1) translate(-50%, -50%);
                transform: scale(1) translate(-50%, -50%);
    }
}

@media (max-width: 991px) {
    .disko-component-images-liens p {
        max-width: 600px;
    }
}

@media(max-width:767px) {
    .disko-component-images-liens .images-liens-list .images-liens-item {
        width: calc((100% - 30px)/2);
    }
    
    .disko-component-images-liens .images-liens-list {
        margin-top: 10vw;
        gap:30px;
    }
    
    .disko-component-images-liens {
        padding: 5vw 7vw;
    }

    .disko-component-images-liens .images-liens-logo img {
        -webkit-transform: scale(0.8) translate(-50%, -50%);
            -ms-transform: scale(0.8) translate(-50%, -50%);
                transform: scale(0.8) translate(-50%, -50%);
    }
}

