/********************** scale **********************/
.animation-zoom {
    animation: animation-zoom 0.5s;
}
@keyframes animation-zoom {
    0% {transform: scale(1);}
    50% {transform: scale(1.3);}
    100% {transform: scale(1);}
}

.animation-zoom-out {
    animation: animation-zoom-out 0.5s;
}
@keyframes animation-zoom-out {
    0% {transform: scale(1);}
    50% {transform: scale(0.9);}
    100% {transform: scale(1);}
}


