.qrise-floating-cards {
    position: relative;
    bottom: 10%;
    margin-bottom: 250px;
    right: 0;
    width: 100%;
    height: 400px;
    pointer-events: none;
    z-index: 10;
}

.qrise-card {
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 20px;
    box-shadow: 40px 33px 35px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    will-change: transform;
    transform-style: preserve-3d;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(0);
}


.qrise-card:nth-child(1) {
    z-index: 5;
    right: 76%;
    top: 60%;
}

.qrise-card:nth-child(2) {
    z-index: 4;
    right: 59%;
    top: 50%;
}

.qrise-card:nth-child(3) {
    z-index: 3;
    right: 37%;
    top: 40%;
}

.qrise-card:nth-child(4) {
    z-index: 2;
    right: 25%;
    top: 30%;
}

.qrise-card:nth-child(5) {
    z-index: 1;
    right: 0%;
    top: 20%;
}

.qrise-card.animate-in {
    opacity: 1;
}

@media (max-width: 768px) {

    .qrise-floating-cards img {
        width: 100px;
        height: 100px;
    }
    .qrise-floating-cards {
        right: -40px;
        margin-top: 0px;
        margin-bottom: 0px;
    }


} 