/* 1er */
.molecule_tickets img:first-child {
    transform: translateY(-20px);
    transition: transform .4s;
}

    /* Hover */
    .molecule_tickets:hover img:first-child {
        transform: translateY(-20px) rotate(154deg);
    }

/* 2e */
.molecule_tickets img:last-child {
    transform: rotate(-45deg);
    transition: transform .4s;
}

    /* Hover */
    .molecule_tickets:hover img:last-child {
        transform: rotate(15deg);
    }

