How to beaver builder accordion position icon not showing?

Hi
Using According options in my website (https://forexmoneyman.com/) FAQ section. Website accordion positions in right but not showing . plz how to solve this issue.

A lot going on here.

So Beaver builder is loading the CSS version of Font Awesome Free 5.15.4 as it should because modules on the page are using icons.

Next your child theme is loading the CSS version of Font Awesome Free 6.0.0-beta3 so there is your first issue.

Next something else is loading a super old CSS version 4.6.3 of Font Awesome, thats your second issue.

Then the main issue is the plugin advanced-faq-manager is loading the javascript version of font awesome on every single page, and thats what is breaking the webfont version.

Use this code in your child theme functions.php to dequeue the JS version of the icons

add_action( 'wp_enqueue_scripts', function() {
  wp_dequeue_script( 'font-icon-picker-js' );
}, 11 );