document.addEventListener('DOMContentLoaded', function () {
jQuery(document).on('wpcf7submit', function () {
setTimeout(function () {
var msg = document.querySelector('.wpcf7-response-output');
if (msg) {
msg.style.display = 'block';
}
}, 800);
});
});