How to How to Add a Hover Effect to a Column / Section in Elementor
VS.
Just use the below code in the CSS for either the section or the collumn of an elementor page:
selector:hover {
transition: all .2s ease-in-out;
transform: scale(1.05);
cursor: pointer;
z-index: 1;
}