.rotate-3d-wrapper ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    transform-style: preserve-3d;
    width: 1340px;
}
.rotate-3d-wrapper ul .card{
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}
.rotate-3d-wrapper ul .card .box{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: 1s ease;
}
.rotate-3d-wrapper ul .card:hover .box{
    transform: rotateY(180deg);
}
ul .card .box .imgBx{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.rotate-3d-wrapper ul .card .box .imgBx img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rotate-3d-wrapper ul .card .box .contentBx{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #546881;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    transform: rotateY(180deg);
}
.rotate-3d-wrapper ul .card .box .contentBx div{
    transform-style: preserve-3d;
    padding: 20px;
    background: linear-gradient(45deg,#fe0061,#ffeb3b);
    transform: translateZ(100px);
}
.rotate-3d-wrapper ul .card .box .contentBx div h2{
    color: #fff;
    font-size: 20px;
    letter-spacing: 1px;
}
.rotate-3d-wrapper ul .card .box .contentBx div p{
    color: #fff;
    font-size: 16px;
}

.content-safe-a {
    width: 12.0802248rem;
    height: 100%;
    position: relative;
}

.m-auto {
    margin: auto !important;
}