Let's try this,
Open up /wp-content/themes/awake/lib/scripts/sliders.js and around line 118 - 122 you should find this,
onBeforeClick : function(event,index) {
var CurrentTab = this.getCurrentPane();
CurrentTab.next().find('.slider_content').css('display', 'none');
CurrentTab.find('.slider_content').css('display', 'none');
},
Try changing it like this,
onBeforeClick : function(event,index) {
var CurrentTab = this.getCurrentPane();
CurrentTab.next().find('.slider_content').css('display', 'none');
CurrentTab.find('.slider_content').css('display', 'none');
var video = CurrentTab.find('.positioning');
videoCont = video.find('.vvqbox');
videoCont.detach();
video.append(videoCont);
},
If you see anything out of the ordinary then go ahead and revert the changes back.