Hi Arie,
It’s an issue with Elementor, as you can see in the video, there’s a padding-bottom and negative margin-bottom set for mobile.
https://www.screencast.com/t/gHAdPHkv0
If I remove that padding/margin, the links work fine.
Check if you can adjust those settings, if not, reach out to Elementor’s support.
Meanwhile, you can add this CSS to override it for now:
@media(max-width:768px){
.elementor-41638 .elementor-element.elementor-element-6b8dce0b {
margin-bottom: 0 !important;
padding: 0 !important;
}
}