/* Start custom CSS for column, class: .elementor-element-a6a5b59 */.rotate-3d-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.rotate-3d-card {
  position: relative;
    width: 720px;
    height: 1020px;
    background: #fff;
    transform-style: preserve-3d;
    transform: perspective(2000px);
    transition: 1s;
    box-shadow: inset 30px 0 50px rgba(0, 0, 0, .5);
}

.rotate-3d-card:hover{
    z-index: 1000;
    transform: perspective(2000px) rotate(-10deg);
    box-shadow: inset 20px 0 50px rgba(0, 0, 0, .5);
}

.rotate-3d-card .imgBox{
    position: relative;
    width: 100%;
    height: 100%;
    border: 1px solid #000;
    box-sizing: border-box;
    transform-origin: left;
    z-index: 1;
    transition: 1s;
}

.rotate-3d-card:hover .imgBox{
    transform: rotateY(-135deg);
}

.rotate-3d-card .imgBox img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rotate-3d-card .details{
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 720px;
    height: 1020px;
}

.rotate-3d-card .details img{
    height: 100%;
    width: 100%;
}

@media (max-width:400px){
    .rotate-3d-card {
        width: 240px;
        height: 340px;
    }
    
    .rotate-3d-card .details{
        width: 240px;
        height: 340px;
    }
}/* End custom CSS */