Hello,
Thanks for more information and providing us with screencasts.
The issue is certainly not with the codes but with not using Javascripts which emulates the default behavior of Click/Hover to Touch. We are using CSS to display the Overlay which makes the Performance much better in comparison with Javascripts. However, since was an issue for you, we have tested some codes and the following CSS Code works fine:
.device-touch .team-overlay .social-icon {
display: none !important;
}
.device-touch .team-overlay {
display: none;
}
.device-touch .team:hover .team-overlay {
display: block;
opacity: 1;
}
.device-touch .team-overlay:hover .social-icon {
display: inline-block !important;
}
.device-touch .team-overlay .team-social-icons {
pointer-events: none;
}
.device-touch .team-overlay:hover .team-social-icons {
pointer-events: auto;
}
Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.