

div.carroussel {
    margin-top: 50px;
    padding: 0 4vh;
}
/* ORDI */
@media screen and (min-width:768px) {
    div.carroussel div.box_explorer {
        margin: 0 10px;
        display: grid;
        grid-gap: 20px;
        grid-template-columns: repeat(4, minmax(100px, 1fr));
    }
    div.carroussel div.box_6 {
        margin: 0 10px;
        display: grid;
        grid-gap: 20px;
        grid-template-columns: repeat(6, minmax(100px, 1fr));
        text-align: center;
    }
    
}
/* TEL */
@media screen and (max-width:768px) {
    div.carroussel div.box_explorer {
        margin: 0 10px;
        display: grid;
        grid-gap: 20px;
        grid-template-columns: repeat(2, minmax(100px, 1fr));
    }
    div.carroussel div.box_6 {
        margin: 0 10px;
        display: grid;
        grid-gap: 20px;
        grid-template-columns: repeat(3, minmax(100px, 1fr));
    }
}

div.box_explorer a {
    transition: transform .3s;
}
div.box_explorer a:hover, div.box_6 a:hover {
    transition: transform .3s;
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);  
    transform: scale(1.1);
}
div.box_explorer img, div.box_6 img {
    border-radius: 8px;
    height: auto;
    width: 100%;
}
div.box_6 p {
    font-size: 18px;
}