    .containerx {
    position: relative;
    width: 320px;
    margin: 100px auto 0 auto;
    perspective: 1000px;
    }

    .carousel {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d; 
    animation: rotate360 60s infinite forwards linear;
    }

    .carousel__face { 
    position: absolute;
    width: 280px;
    height: 170px;
    top: 20px;
    left: 10px;
    right: 10px;
    background-repeat: no-repeat;
    background-size: 280px 170px;
    display: flex;
    }

    .carousel__face:nth-child(1) {
    background-image: url("https://mimaropaventures.ph/uploads/dot-showcase/1.jpg");
    transform: rotateY(  0deg) translateZ(430px); }
    .carousel__face:nth-child(2) { 
    background-image: url("https://mimaropaventures.ph/uploads/dot-showcase/2.jpg");
    transform: rotateY( 36deg) translateZ(430px); }
    .carousel__face:nth-child(3) {
    background-image: url("https://mimaropaventures.ph/uploads/dot-showcase/3.jpg");
    transform: rotateY( 72deg) translateZ(430px); }
    .carousel__face:nth-child(4) {
    background-image: url("https://mimaropaventures.ph/uploads/dot-showcase/4.jpg");
    transform: rotateY(108deg) translateZ(430px); }
    .carousel__face:nth-child(5) { 
    background-image: url("https://mimaropaventures.ph/uploads/dot-showcase/5.jpg");
    transform: rotateY(144deg) translateZ(430px); }
    .carousel__face:nth-child(6) { 
    background-image: url("https://mimaropaventures.ph/uploads/dot-showcase/6.jpg");
    transform: rotateY(180deg) translateZ(430px); }
    .carousel__face:nth-child(7) { 
    background-image: url("https://mimaropaventures.ph/uploads/dot-showcase/7.jpg");
    transform: rotateY(216deg) translateZ(430px); }
    .carousel__face:nth-child(8) {
    background-image: url("https://mimaropaventures.ph/uploads/dot-showcase/8.jpg");
    transform: rotateY(252deg) translateZ(430px); }
    .carousel__face:nth-child(9) {
    background-image: url("https://mimaropaventures.ph/uploads/dot-showcase/9.jpg");
    transform: rotateY(288deg) translateZ(430px); }
    .carousel__face:nth-child(10) {
    background-image: url("https://mimaropaventures.ph/uploads/dot-showcase/10.jpg");
    transform: rotateY(324deg) translateZ(430px); }
    .carousel__face:nth-child(11) {
    background-image: url("https://mimaropaventures.ph/uploads/dot-showcase/11.jpg");
    transform: rotateY(360deg) translateZ(430px); }

    @keyframes rotate360 {
    from {
    transform: rotateY(0deg);
    }
    to {
    transform: rotateY(360deg);
    }
    }