/*1*/
.d1 {
            display: flex;
            justify-content: center;
            height: 800px;
            align-items: center;
            perspective: 1500px;
        }
       .container11 {
            width: 300px;
            height: 428px;
            position: relative;
            transform-style: preserve-3d;
            animation: action 30s linear infinite;
            animation-play-state: running;
            -webkit-animation-play-state:running;
        }
        .container11 .item {
            width: 100%;
            height: 100%;
            position: absolute;
            -webkit-box-reflect: below 15px linear-gradient(transparent 90%, rgba(0, 0, 0, 0.3))
        }
        .container11 .item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .container11 .item:nth-child(1) {
            transform: translateZ(500px);
        }
        .container11 .item:nth-child(2) {
            transform: rotateY(40deg) translateZ(500px);
        }
        .container11 .item:nth-child(3) {
            transform: rotateY(80deg) translateZ(500px);
        }
        .container11 .item:nth-child(4) {
            transform: rotateY(120deg) translateZ(500px);
        }
        .container11 .item:nth-child(5) {
            transform: rotateY(160deg) translateZ(500px);
        }
        .container11 .item:nth-child(6) {
            transform: rotateY(200deg) translateZ(500px);
        }
        .container11 .item:nth-child(7) {
            transform: rotateY(240deg) translateZ(500px);
        }
        .container11 .item:nth-child(8) {
            transform: rotateY(280deg) translateZ(500px);
        }
        .container11 .item:nth-child(9) {
            transform: rotateY(320deg) translateZ(500px);
        }
        @keyframes action {
            from {
                transform: rotateY(0deg);
/*                animation-play-state: running;*/
            }
            to {
                transform: rotateY(360deg);
/*                animation-play-state: running;*/
            }
        }
        .container11:hover {
            animation-play-state: paused ;
        }



/*2*/

 .cda::before {
    width:100px;
    position:absolute;
    top:30px;
    right:30px;
    bottom:30px;
    left:30px;
    content:'';
    opacity:0;
    z-index:1;
    border-top:1px solid #fff;
    border-bottom:1px solid #fff;
    transform:translate(50%,0);
    transition:all 0.5s linear;
}
.cda::after {
    height:100px;
    position:absolute;
    top:30px;
    right:30px;
    bottom:30px;
    left:30px;
    content:'';
    opacity:0;
    z-index:1;
    border-left:1px solid #fff;
    border-right:1px solid #fff;
    transition:all 0.5s linear;
    transform:translate(0,50%);
}
.cda-img {
    transition:all 0.2s linear;
}
.cda:hover .cda-img {
    transform:scale(1.2);
}
.cda:hover .cdd {
    opacity:1 !important;
}
.cda:hover::before {
    width:calc(100% - 60px);
    opacity:1 !important;
    /* transform:scale(1);
    */
            transform:scale(1)   !important;
}
.cda:hover::after {
    height:calc(100% - 60px);
    opacity:1 !important;
    transform:scale(1)  !important;
}
.cda:hover .cdd-p {
    opacity:1 !important;
}