У вашего броузера проблема в совместимости с HTML5
How to create slide out boxes in Elementor with a little CSS Love.
CSS Required:
.db-hover-scale , .db-hover-slideout {
transition: all 0.35s ease-in-out !important;
}
.db-hover-box:hover .db-hover-scale {
transform: scale(1.02);
box-shadow: 0px 10px 10px 15px rgba(0,0,0,0.3);
}
.db-hover-box:not(:hover) .db-hover-slideout {
transform: translate(0,-100%);
}
Classes to apply:
Outer column: db-hover-box
Top inner section: db-hover-scale
Bottom inner section: db-hover-slideout
Note that you do not put a 'period' in front of the CSS Class names they are only in the CSS code itself.