.cards {
    position: relative;
    min-height: 380px;
}

.cards .card {
    width: 200px;
    border-radius: 10px;
    background: white;
    padding: 8px 8px 43px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .5);
    position: absolute;
    top: 50px;
    left: auto;
    right: 0px;
    z-index: 1;
    cursor: pointer;
}

@media (max-width: 992px)  {
    .cards .card {
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

.cards .card img {
    border-radius: 6px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.cards .card:nth-child(1) {
    transform: rotate(-15deg);
}

.cards .card:nth-child(2) {
    transform: rotate(5deg);
}

.cards .card:nth-child(2) {
    transform: rotate(20deg);
}

.cards .card:hover {
    z-index: 2;
}
