    .icc-wrapper .icc-carousel {
        max-width: 680px;
        display: flex;
        margin: auto;
        position: relative;
    }
    .icc-carousel .icc-single-card {
        width: 80px;
        text-align: center;
        margin: auto;
        transition: 300ms linear;
        margin-left: 5px;
        margin-right: 5px;
    }

    .icc-carousel .icc-single-card:hover {
        transform: translateY(-10px);
    }

    .icc-single-card img {
        width: 65px;
        min-width: 65px;
        max-width:65px; 
        margin: auto;
    }

    

    .icc-single-card h6 {
        margin-top: 5px;
        font-size: 14px;
        text-align: center;
        font-family: Oswald, sans-serif!important; 
    }

    .icc-single-card h6 a {
        font-weight: 400;
        text-decoration: none!important;
        color: #363636!important;
    }
    .owl-dots {
        display: none;
    }

    @media screen and (max-width:600px) {

        .icc-wrapper .icc-carousel {
            max-width:100%; 
            width:100%;
            display: flex;
            flex-direction: row;
        }

        .icc-carousel .icc-single-card {
            width: 80x;
            min-width: 80px;            
        }

        .icc-single-card img {
            width:70px;
        }

        .icc-wrapper {
            overflow: hidden; /* Nasconde il contenuto oltre il wrapper */
            position: relative; /* Posizione relativa per gli elementi figlio */
        }

    }

    @media screen and (min-width:768px) and (max-width:992px) {

        .icc-carousel .icc-single-card {
            width: 140px;
            min-width: 140px;
            
        }

        .icc-single-card img {
            width: 120px;
        }
        
    }

    @media screen and (min-width:600px) and (max-width:768px) {

        .icc-carousel .icc-single-card {
            width: 80px;
            min-width: 80px;
        }

        .icc-single-card img {
            width: 100px!important;
        }

        .icc-single-card h6 {
            font-size: 95%;
            text-align: center;
        }
        
    }
   
        
