#pluginAppObj_6_63{
    width: 100%;
    //overflow: hidden;
}

#pluginAppObj_6_63 .icmKG_container{
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* padding-top: calc(170px*0.0666);
    padding-bottom: calc(170px*0.0666); */
}

#pluginAppObj_6_63 .icmKG_box {
    position: relative;
    width: 255px;
    height: 170px;
    transform-style: preserve-3d;
    animation: animate 20s linear infinite;
}

@keyframes animate {
    0%{
        transform: perspective(1000px) rotateY(0deg);
        /* transform: perspective(none) rotateY(0deg); */
    }
    100% {
        transform: perspective(1000px) rotateY(360deg);
        /* transform: perspective(none) rotateY(360deg); */
    }
}

#pluginAppObj_6_63 .icmKG_box span{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transform-style: preserve-3d;
    transform: rotateY(calc(var(--i) * 90deg)) translateZ(200px);
        
}

#pluginAppObj_6_63 icmKG_box span a img:hover{
    -webkit-filter: drop-shadow(0px 0px 10px rgba(250, 250, 250, 0.5));
    filter: drop-shadow(0px 0px 10px rgba(250, 250, 250, 0.5));
}

#pluginAppObj_6_63 .icmKG_box span img{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit: cover;
}