/*
Theme Name: Tecnologia Child
Author: VamTam
Author URI: https://vamtam.com
Template: tecnologia
*/



/*

put your child theme styles here
svg {
    fill: inherit !important; /* Ya specific color, jaise fill: #FF0000; */
    color: inherit !important;
}

you don't need any @import rules

*/

function disable_mega_menu_auto_focus() {
    ?>
    <script>
        jQuery(document).ready(function($) {
            $('.mega-menu-item a').on('focus', function(e) {
                $(this).blur(); // Focus hata do
            });
        });
    </script>
    <?php
}
add_action('wp_footer', 'disable_mega_menu_auto_focus');