But if you thought about Food Menu from addon Classic Menu - as I remember you have to turn off animation in addon code OR disble using custom CSS.
Details:
Animation was added inside this addon code as extra styles inside this file:
templates\shaper_cuisine\sppagebuilder\addons\classic_menu\site.php
Line 70 - where animation classes & styles are added.
OR
Just use below custom CSS only on your restaurnat menu page
.sppb-classic-menu-inner.sppb-animated {
-webkit-animation-duration: 0s;
animation-duration: 0s;
-webkit-animation-fill-mode: none;
animation-fill-mode: none;
}