/* *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

.gallery-section{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    /* background: #dbd3d3; */
    overflow-x: hidden;
}

.gallery{
    position: relative;
    width: 300px;
    height: 200px;
    transform-style: preserve-3d;
    animation: animate 15s linear  infinite;
    animation-play-state: running;
}

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

.gallery:hover{
    animation-play-state: paused;
}

.sp1{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transform-style: preserve-3d;
    transform: rotateY(calc(var(--i) * 60deg)) translateZ(300px);
    -webkit-box-reflect: below 0px linear-gradient(transparent,transparent,#0004);
}

.sp1 img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
}

@media(max-width:768px){
    .gallery{
        width: 200px;
    }
    .sp1{
        transform: rotateY(calc(var(--i) * 60deg)) translateZ(200px);
    }
}