.animation-lift-up {
    box-shadow: 0 0 1px 0 #c0bebb, 0 6px 14px -6px rgba(24, 39, 75, 0.12), 0 10px 32px -4px rgba(24, 39, 75, 0.1);
    -webkit-transition: box-shadow 200ms ease, -webkit-transform 200ms ease;
    transition: box-shadow 200ms ease, -webkit-transform 200ms ease;
    transition: transform 200ms ease, box-shadow 200ms ease;
    transition: transform 200ms ease, box-shadow 200ms ease, -webkit-transform 200ms ease;
}

.animation-lift-up:hover {
    box-shadow: 0 0 1px 0 #c0bebb, 0 10px 8px -4px rgba(24, 39, 75, 0.12), 0 4px 36px -4px rgba(24, 39, 75, 0.1);
    -webkit-transform: translate(0px, -4px);
    -ms-transform: translate(0px, -4px);
    transform: translate(0px, -4px);
}


