Apologies about the Inconveniences!
We have checked this out and the issue appears to be with the Resize Event for the Tabs and the Address Bar of the iPhone/iPad resizing on Scroll Up/Down.
To fix this, find the following code in the js/plugins.tabs.js File:
[ch_pre type="js"]$(window).on( 'resize', function() {
clearTimeout(resizeTimer);
resizeTimer = setTimeout(function() {
SEMICOLON_tabsResponsiveResizeInit( element );
}, 250);
});[/ch_pre]
and replace it with:
[ch_pre type="js"]$window.on( 'resize', function() {
let thisWindow = $(this);
clearTimeout(resizeTimer);
resizeTimer = setTimeout(function() {
if ( thisWindow.width() !== windowWidth ) {
SEMICOLON_tabsResponsiveResizeInit( element );
}
}, 250);
});[/ch_pre]
If you are using the js/plugins.js or the js/plugins.min.js File, you will need to Update these codes in this File as well.
This should definitely fix the issue. Hope this Helps!