<!DOCTYPE html><html lang="en-US"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="https://gmpg.org/xfn/11"> <title>Gun Industry Marketplace – The Firearms Industry Unsuppressed</title><meta name='robots' content='max-image-preview:large' /> <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style> <link rel='dns-prefetch' href='//www.googletagmanager.com' /><link rel='dns-prefetch' href='//fonts.googleapis.com' /><link rel='dns-prefetch' href='//cdnjs.cloudflare.com' /><script type="text/javascript">/* <![CDATA[ */window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/16.0.1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/16.0.1\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/gunindustrymarketplace.com\/wp-includes\/js\/wp-emoji.js?ver=6.8.3","twemoji":"https:\/\/gunindustrymarketplace.com\/wp-includes\/js\/twemoji.js?ver=6.8.3"}};/** * @output wp-includes/js/wp-emoji-loader.js */ /** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback */ /** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji */ /** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise === 'undefined' ) { return; } var sessionStorageKey = 'wpEmojiSettingsSupports'; var tests = [ 'flag', 'emoji' ]; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker !== 'undefined' && typeof OffscreenCanvas !== 'undefined' && typeof URL !== 'undefined' && URL.createObjectURL && typeof Blob !== 'undefined' ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item = JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item === 'object' && typeof item.timestamp === 'number' && new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests === 'object' ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item = { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This is used to determine if the browser is rendering an emoji with multiple data points * correctly. set1 is the emoji in the correct form, using a zero-width joiner. set2 is the emoji * in the incorrect form, using a zero-width space. If the two sets render the same, then the browser * does not support the emoji correctly. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data === rendered2[ index ]; } ); } /** * Checks if the center point of a single emoji is empty. * * This is used to determine if the browser is rendering an emoji with a single data point * correctly. The center point of an incorrectly rendered emoji will be empty. A correctly * rendered emoji will have a non-zero value at the center point. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.8.2 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} emoji Emoji to test. * * @return {boolean} True if the center point is empty. */ function emojiRendersEmptyCenterPoint( context, emoji ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( emoji, 0, 0 ); // Test if the center point (16, 16) is empty (0,0,0,0). var centerPoint = context.getImageData(16, 16, 1, 1); for ( var i = 0; i < centerPoint.data.length; i++ ) { if ( centerPoint.data[ i ] !== 0 ) { // Stop checking the moment it's known not to be empty. return false; } } return true; } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of "flag" or "emoji". * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * @param {Function} emojiRendersEmptyCenterPoint Reference to emojiRendersEmptyCenterPoint function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint ) { var isIdentical; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence '\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for Sark flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([C] + [Q]). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDDE8\uD83C\uDDF6', // as the sequence of two code points '\uD83C\uDDE8\u200B\uD83C\uDDF6' // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( context, // as the flag sequence '\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F', // with each code point separated by a zero-width space '\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F' ); return ! isIdentical; case 'emoji': /* * Does Emoji 16.0 cause the browser to go splat? * * To test for Emoji 16.0 support, try to render a new emoji: Splatter. * * The splatter emoji is a single code point emoji. Testing for browser support * required testing the center point of the emoji to see if it is empty. * * 0xD83E 0xDEDF (\uD83E\uDEDF) == π« Splatter. * * When updating this test, please ensure that the emoji is either a single code point * or switch to using the emojiSetsRenderIdentically function and testing with a zero-width * joiner vs a zero-width space. */ var notSupported = emojiRendersEmptyCenterPoint( context, '\uD83E\uDEDF' ); return ! notSupported; } return false; } /** * Checks emoji support tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.3.0 * * @private * * @param {string[]} tests Tests. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * @param {Function} emojiRendersEmptyCenterPoint Reference to emojiRendersEmptyCenterPoint function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint ) { var canvas; if ( typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope ) { canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas = document.createElement( 'canvas' ); } var context = canvas.getContext( '2d', { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; var supports = {}; tests.forEach( function ( test ) { supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = true; document.head.appendChild( script ); } settings.supports = { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise = new Promise( function ( resolve ) { document.addEventListener( 'DOMContentLoaded', resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests = getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript = 'postMessage(' + testEmojiSupports.toString() + '(' + [ JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString(), emojiRendersEmptyCenterPoint.toString() ].join( ',' ) + '));'; var blob = new Blob( [ workerScript ], { type: 'text/javascript' } ); var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } ); worker.onmessage = function ( event ) { supportTests = event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports[ test ] = supportTests[ test ]; settings.supports.everything = settings.supports.everything && settings.supports[ test ]; if ( 'flag' !== test ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ test ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function () { settings.DOMReady = true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } );} )( window, document, window._wpemojiSettings ); /* ]]> */</script><link rel='stylesheet' id='adsanity-default-css-css' href='https://gunindustrymarketplace.com/wp-content/plugins/adsanity/dist/css/widget-default.css?ver=1.9.5' type='text/css' media='screen' /><style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; }</style><link rel='stylesheet' id='wp-block-library-css' href='https://gunindustrymarketplace.com/wp-includes/css/dist/block-library/style.css?ver=6.8.3' type='text/css' media='all' /><style id='classic-theme-styles-inline-css' type='text/css'>/** * These rules are needed for backwards compatibility. * They should match the button element rules in the base theme.json file. */.wp-block-button__link { color: #ffffff; background-color: #32373c; border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */ /* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */ box-shadow: none; text-decoration: none; /* The extra 2px are added to size solids the same as the outline versions.*/ padding: calc(0.667em + 2px) calc(1.333em + 2px); font-size: 1.125em;} .wp-block-file__button { background: #32373c; color: #ffffff; text-decoration: none;} </style><style id='bp-login-form-style-inline-css' type='text/css'>.widget_bp_core_login_widget .bp-login-widget-user-avatar{float:left}.widget_bp_core_login_widget .bp-login-widget-user-links{margin-left:70px}#bp-login-widget-form label{display:block;font-weight:600;margin:15px 0 5px;width:auto}#bp-login-widget-form input[type=password],#bp-login-widget-form input[type=text]{background-color:#fafafa;border:1px solid #d6d6d6;border-radius:0;font:inherit;font-size:100%;padding:.5em;width:100%}#bp-login-widget-form .bp-login-widget-register-link,#bp-login-widget-form .login-submit{display:inline;width:-moz-fit-content;width:fit-content}#bp-login-widget-form .bp-login-widget-register-link{margin-left:1em}#bp-login-widget-form .bp-login-widget-register-link a{filter:invert(1)}#bp-login-widget-form .bp-login-widget-pwd-link{font-size:80%} </style><style id='bp-primary-nav-style-inline-css' type='text/css'>.buddypress_object_nav .bp-navs{background:#0000;clear:both;overflow:hidden}.buddypress_object_nav .bp-navs ul{margin:0;padding:0}.buddypress_object_nav .bp-navs ul li{list-style:none;margin:0}.buddypress_object_nav .bp-navs ul li a,.buddypress_object_nav .bp-navs ul li span{border:0;display:block;padding:5px 10px;text-decoration:none}.buddypress_object_nav .bp-navs ul li .count{background:#eaeaea;border:1px solid #ccc;border-radius:50%;color:#555;display:inline-block;font-size:12px;margin-left:2px;padding:3px 6px;text-align:center;vertical-align:middle}.buddypress_object_nav .bp-navs ul li a .count:empty{display:none}.buddypress_object_nav .bp-navs ul li.last select{max-width:185px}.buddypress_object_nav .bp-navs ul li.current a,.buddypress_object_nav .bp-navs ul li.selected a{color:#333;opacity:1}.buddypress_object_nav .bp-navs ul li.current a .count,.buddypress_object_nav .bp-navs ul li.selected a .count{background-color:#fff}.buddypress_object_nav .bp-navs ul li.dynamic a .count,.buddypress_object_nav .bp-navs ul li.dynamic.current a .count,.buddypress_object_nav .bp-navs ul li.dynamic.selected a .count{background-color:#5087e5;border:0;color:#fafafa}.buddypress_object_nav .bp-navs ul li.dynamic a:hover .count{background-color:#5087e5;border:0;color:#fff}.buddypress_object_nav .main-navs.dir-navs{margin-bottom:20px}.buddypress_object_nav .bp-navs.group-create-links ul li.current a{text-align:center}.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current),.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current) a{color:#767676}.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current) a:focus,.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current) a:hover{background:none;color:#555}.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current) a[disabled]:focus,.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current) a[disabled]:hover{color:#767676} </style><style id='bp-member-style-inline-css' type='text/css'>[data-type="bp/member"] input.components-placeholder__input{border:1px solid #757575;border-radius:2px;flex:1 1 auto;padding:6px 8px}.bp-block-member{position:relative}.bp-block-member .member-content{display:flex}.bp-block-member .user-nicename{display:block}.bp-block-member .user-nicename a{border:none;color:currentColor;text-decoration:none}.bp-block-member .bp-profile-button{width:100%}.bp-block-member .bp-profile-button a.button{bottom:10px;display:inline-block;margin:18px 0 0;position:absolute;right:0}.bp-block-member.has-cover .item-header-avatar,.bp-block-member.has-cover .member-content,.bp-block-member.has-cover .member-description{z-index:2}.bp-block-member.has-cover .member-content,.bp-block-member.has-cover .member-description{padding-top:75px}.bp-block-member.has-cover .bp-member-cover-image{background-color:#c5c5c5;background-position:top;background-repeat:no-repeat;background-size:cover;border:0;display:block;height:150px;left:0;margin:0;padding:0;position:absolute;top:0;width:100%;z-index:1}.bp-block-member img.avatar{height:auto;width:auto}.bp-block-member.avatar-none .item-header-avatar{display:none}.bp-block-member.avatar-none.has-cover{min-height:200px}.bp-block-member.avatar-full{min-height:150px}.bp-block-member.avatar-full .item-header-avatar{width:180px}.bp-block-member.avatar-thumb .member-content{align-items:center;min-height:50px}.bp-block-member.avatar-thumb .item-header-avatar{width:70px}.bp-block-member.avatar-full.has-cover{min-height:300px}.bp-block-member.avatar-full.has-cover .item-header-avatar{width:200px}.bp-block-member.avatar-full.has-cover img.avatar{background:#fffc;border:2px solid #fff;margin-left:20px}.bp-block-member.avatar-thumb.has-cover .item-header-avatar{padding-top:75px}.entry .entry-content .bp-block-member .user-nicename a{border:none;color:currentColor;text-decoration:none} </style><link rel='stylesheet' id='bp-members-style-css' href='https://gunindustrymarketplace.com/wp-content/plugins/buddypress/bp-members/blocks/members/index.css?ver=1759798077' type='text/css' media='all' /><style id='bp-dynamic-members-style-inline-css' type='text/css'>.bp-dynamic-block-container .item-options{font-size:.5em;margin:0 0 1em;padding:1em 0}.bp-dynamic-block-container .item-options a.selected{font-weight:600}.bp-dynamic-block-container ul.item-list{list-style:none;margin:1em 0;padding-left:0}.bp-dynamic-block-container ul.item-list li{margin-bottom:1em}.bp-dynamic-block-container ul.item-list li:after,.bp-dynamic-block-container ul.item-list li:before{content:" ";display:table}.bp-dynamic-block-container ul.item-list li:after{clear:both}.bp-dynamic-block-container ul.item-list li .item-avatar{float:left;width:60px}.bp-dynamic-block-container ul.item-list li .item{margin-left:70px} </style><style id='bp-online-members-style-inline-css' type='text/css'>.widget_bp_core_whos_online_widget .avatar-block,[data-type="bp/online-members"] .avatar-block{display:flex;flex-flow:row wrap}.widget_bp_core_whos_online_widget .avatar-block img,[data-type="bp/online-members"] .avatar-block img{margin:.5em} </style><style id='bp-active-members-style-inline-css' type='text/css'>.widget_bp_core_recently_active_widget .avatar-block,[data-type="bp/active-members"] .avatar-block{display:flex;flex-flow:row wrap}.widget_bp_core_recently_active_widget .avatar-block img,[data-type="bp/active-members"] .avatar-block img{margin:.5em} </style><style id='bp-latest-activities-style-inline-css' type='text/css'>.bp-latest-activities .components-flex.components-select-control select[multiple]{height:auto;padding:0 8px}.bp-latest-activities .components-flex.components-select-control select[multiple]+.components-input-control__suffix svg{display:none}.bp-latest-activities-block a,.entry .entry-content .bp-latest-activities-block a{border:none;text-decoration:none}.bp-latest-activities-block .activity-list.item-list blockquote{border:none;padding:0}.bp-latest-activities-block .activity-list.item-list blockquote .activity-item:not(.mini){box-shadow:1px 0 4px #00000026;padding:0 1em;position:relative}.bp-latest-activities-block .activity-list.item-list blockquote .activity-item:not(.mini):after,.bp-latest-activities-block .activity-list.item-list blockquote .activity-item:not(.mini):before{border-color:#0000;border-style:solid;content:"";display:block;height:0;left:15px;position:absolute;width:0}.bp-latest-activities-block .activity-list.item-list blockquote .activity-item:not(.mini):before{border-top-color:#00000026;border-width:9px;bottom:-18px;left:14px}.bp-latest-activities-block .activity-list.item-list blockquote .activity-item:not(.mini):after{border-top-color:#fff;border-width:8px;bottom:-16px}.bp-latest-activities-block .activity-list.item-list blockquote .activity-item.mini .avatar{display:inline-block;height:20px;margin-right:2px;vertical-align:middle;width:20px}.bp-latest-activities-block .activity-list.item-list footer{align-items:center;display:flex}.bp-latest-activities-block .activity-list.item-list footer img.avatar{border:none;display:inline-block;margin-right:.5em}.bp-latest-activities-block .activity-list.item-list footer .activity-time-since{font-size:90%}.bp-latest-activities-block .widget-error{border-left:4px solid #0b80a4;box-shadow:1px 0 4px #00000026}.bp-latest-activities-block .widget-error p{padding:0 1em} </style><style id='bp-friends-style-inline-css' type='text/css'>.bp-dynamic-block-container .item-options{font-size:.5em;margin:0 0 1em;padding:1em 0}.bp-dynamic-block-container .item-options a.selected{font-weight:600}.bp-dynamic-block-container ul.item-list{list-style:none;margin:1em 0;padding-left:0}.bp-dynamic-block-container ul.item-list li{margin-bottom:1em}.bp-dynamic-block-container ul.item-list li:after,.bp-dynamic-block-container ul.item-list li:before{content:" ";display:table}.bp-dynamic-block-container ul.item-list li:after{clear:both}.bp-dynamic-block-container ul.item-list li .item-avatar{float:left;width:60px}.bp-dynamic-block-container ul.item-list li .item{margin-left:70px} </style><style id='bp-group-style-inline-css' type='text/css'>[data-type="bp/group"] input.components-placeholder__input{border:1px solid #757575;border-radius:2px;flex:1 1 auto;padding:6px 8px}.bp-block-group{position:relative}.bp-block-group .group-content{display:flex}.bp-block-group .group-description{width:100%}.bp-block-group .group-description-content{margin-bottom:18px;width:100%}.bp-block-group .bp-profile-button{overflow:hidden;width:100%}.bp-block-group .bp-profile-button a.button{margin:18px 0 0}.bp-block-group.has-cover .group-content,.bp-block-group.has-cover .group-description,.bp-block-group.has-cover .item-header-avatar{z-index:2}.bp-block-group.has-cover .group-content,.bp-block-group.has-cover .group-description{padding-top:75px}.bp-block-group.has-cover .bp-group-cover-image{background-color:#c5c5c5;background-position:top;background-repeat:no-repeat;background-size:cover;border:0;display:block;height:150px;left:0;margin:0;padding:0;position:absolute;top:0;width:100%;z-index:1}.bp-block-group img.avatar{height:auto;width:auto}.bp-block-group.avatar-none .item-header-avatar{display:none}.bp-block-group.avatar-full{min-height:150px}.bp-block-group.avatar-full .item-header-avatar{width:180px}.bp-block-group.avatar-full .group-description{padding-left:35px}.bp-block-group.avatar-thumb .item-header-avatar{width:70px}.bp-block-group.avatar-thumb .item-header-avatar img.avatar{margin-top:15px}.bp-block-group.avatar-none.has-cover{min-height:200px}.bp-block-group.avatar-none.has-cover .item-header-avatar{padding-top:75px}.bp-block-group.avatar-full.has-cover{min-height:300px}.bp-block-group.avatar-full.has-cover .item-header-avatar{width:200px}.bp-block-group.avatar-full.has-cover img.avatar{background:#fffc;border:2px solid #fff;margin-left:20px}.bp-block-group.avatar-thumb:not(.has-description) .group-content{align-items:center;min-height:50px}.bp-block-group.avatar-thumb.has-cover .item-header-avatar{padding-top:75px}.bp-block-group.has-description .bp-profile-button a.button{display:block;float:right} </style><style id='bp-groups-style-inline-css' type='text/css'>[data-type="bp/groups"] .components-placeholder.is-appender{min-height:0}[data-type="bp/groups"] .components-placeholder.is-appender .components-placeholder__label:empty{display:none}[data-type="bp/groups"] .components-placeholder input.components-placeholder__input{border:1px solid #757575;border-radius:2px;flex:1 1 auto;padding:6px 8px}[data-type="bp/groups"].avatar-none .group-description{width:calc(100% - 44px)}[data-type="bp/groups"].avatar-full .group-description{width:calc(100% - 224px)}[data-type="bp/groups"].avatar-thumb .group-description{width:calc(100% - 114px)}[data-type="bp/groups"] .group-content{position:relative}[data-type="bp/groups"] .group-content .is-right{position:absolute;right:2px;top:2px}[data-type="bp/groups"] .columns-2 .group-content .group-description,[data-type="bp/groups"] .columns-3 .group-content .group-description,[data-type="bp/groups"] .columns-4 .group-content .group-description{padding-left:44px;width:calc(100% - 44px)}[data-type="bp/groups"] .columns-3 .is-right{right:-10px}[data-type="bp/groups"] .columns-4 .is-right{right:-50px}.bp-block-groups.is-grid{display:flex;flex-wrap:wrap;padding:0}.bp-block-groups.is-grid .group-content{margin:0 1.25em 1.25em 0;width:100%}@media(min-width:600px){.bp-block-groups.columns-2 .group-content{width:calc(50% - .625em)}.bp-block-groups.columns-2 .group-content:nth-child(2n){margin-right:0}.bp-block-groups.columns-3 .group-content{width:calc(33.33333% - .83333em)}.bp-block-groups.columns-3 .group-content:nth-child(3n){margin-right:0}.bp-block-groups.columns-4 .group-content{width:calc(25% - .9375em)}.bp-block-groups.columns-4 .group-content:nth-child(4n){margin-right:0}}.bp-block-groups .group-content{display:flex;flex-direction:column;padding-bottom:1em;text-align:center}.bp-block-groups .group-content .group-description,.bp-block-groups .group-content .item-header-avatar{width:100%}.bp-block-groups .group-content .item-header-avatar{margin:0 auto}.bp-block-groups .group-content .item-header-avatar img.avatar{display:inline-block}@media(min-width:600px){.bp-block-groups .group-content{flex-direction:row;text-align:left}.bp-block-groups .group-content .group-description,.bp-block-groups .group-content .item-header-avatar{width:auto}.bp-block-groups .group-content .item-header-avatar{margin:0}}.bp-block-groups .group-content time{color:#767676;display:block;font-size:80%}.bp-block-groups.avatar-none .item-header-avatar{display:none}.bp-block-groups.avatar-full{min-height:190px}.bp-block-groups.avatar-full .item-header-avatar{width:180px}.bp-block-groups.avatar-thumb .group-content{min-height:80px}.bp-block-groups.avatar-thumb .item-header-avatar{width:70px}.bp-block-groups.columns-2 .group-content,.bp-block-groups.columns-3 .group-content,.bp-block-groups.columns-4 .group-content{display:block;text-align:center}.bp-block-groups.columns-2 .group-content .item-header-avatar,.bp-block-groups.columns-3 .group-content .item-header-avatar,.bp-block-groups.columns-4 .group-content .item-header-avatar{margin:0 auto}.bp-block-groups img.avatar{height:auto;max-width:-moz-fit-content;max-width:fit-content;width:auto}.bp-block-groups .member-content.has-description{align-items:center}.bp-block-groups .member-content.has-description .item-header-avatar{padding-right:1em}.bp-block-groups .member-content.has-description .group-description-content{margin-bottom:0;text-align:left} </style><style id='bp-dynamic-groups-style-inline-css' type='text/css'>.bp-dynamic-block-container .item-options{font-size:.5em;margin:0 0 1em;padding:1em 0}.bp-dynamic-block-container .item-options a.selected{font-weight:600}.bp-dynamic-block-container ul.item-list{list-style:none;margin:1em 0;padding-left:0}.bp-dynamic-block-container ul.item-list li{margin-bottom:1em}.bp-dynamic-block-container ul.item-list li:after,.bp-dynamic-block-container ul.item-list li:before{content:" ";display:table}.bp-dynamic-block-container ul.item-list li:after{clear:both}.bp-dynamic-block-container ul.item-list li .item-avatar{float:left;width:60px}.bp-dynamic-block-container ul.item-list li .item{margin-left:70px} </style><style id='bp-sitewide-notices-style-inline-css' type='text/css'>.bp-sitewide-notice-block .bp-screen-reader-text,[data-type="bp/sitewide-notices"] .bp-screen-reader-text{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.bp-sitewide-notice-block [data-bp-tooltip]:after,[data-type="bp/sitewide-notices"] [data-bp-tooltip]:after{background-color:#fff;border:1px solid #737373;border-radius:1px;box-shadow:4px 4px 8px #0003;color:#333;content:attr(data-bp-tooltip);display:none;font-family:Helvetica Neue,Helvetica,Arial,san-serif;font-size:12px;font-weight:400;letter-spacing:normal;line-height:1.25;max-width:200px;opacity:0;padding:5px 8px;pointer-events:none;position:absolute;text-shadow:none;text-transform:none;transform:translateZ(0);transition:all 1.5s ease;visibility:hidden;white-space:nowrap;word-wrap:break-word;z-index:100000}.bp-sitewide-notice-block .bp-tooltip:after,[data-type="bp/sitewide-notices"] .bp-tooltip:after{left:50%;margin-top:7px;top:110%;transform:translate(-50%)}.bp-sitewide-notice-block{border-left:4px solid #ff853c;padding-left:1em;position:relative}.bp-sitewide-notice-block h2:before{background:none;border:none}.bp-sitewide-notice-block .dismiss-notice{background-color:#0000;border:1px solid #ff853c;color:#ff853c;display:block;padding:.2em .5em;position:absolute;right:.5em;top:.5em;width:-moz-fit-content;width:fit-content}.bp-sitewide-notice-block .dismiss-notice:hover{background-color:#ff853c;color:#fff} </style><style id='global-styles-inline-css' type='text/css'>:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}</style><link rel='stylesheet' id='adsanity-cas-css' href='https://gunindustrymarketplace.com/cas-custom-sizes/?ver=1.6' type='text/css' media='all' /><link rel='stylesheet' id='contact-form-7-css' href='https://gunindustrymarketplace.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.1.2' type='text/css' media='all' /><link rel='stylesheet' id='parent-style-css' href='https://gunindustrymarketplace.com/wp-content/themes/GIM-PROD/style.css?ver=6.8.3' type='text/css' media='all' /><link rel='stylesheet' id='custom-viral-theme-style-css' href='https://gunindustrymarketplace.com/wp-content/themes/GIM-CHILD/style.css?ver=1.0.0' type='text/css' media='all' /><link rel='stylesheet' id='google-fonts-css' href='https://fonts.googleapis.com/css2?family=Spartan:wght@300;400;500;600;700&display=swap' type='text/css' media='all' /><link rel='stylesheet' id='custom-viral-theme-fonts-css' href='https://gunindustrymarketplace.com/wp-content/themes/GIM-PROD/assets/css/custom-fonts.css?ver=1.0.0' type='text/css' media='all' /><link rel='stylesheet' id='gim-variables-css' href='https://gunindustrymarketplace.com/wp-content/themes/GIM-PROD/assets/css/variables.css?ver=1.0.0' type='text/css' media='all' /><link rel='stylesheet' id='gim-main-css' href='https://gunindustrymarketplace.com/wp-content/themes/GIM-PROD/assets/css/main.css?ver=1.0.0' type='text/css' media='all' /><link rel='stylesheet' id='gim-components-css' href='https://gunindustrymarketplace.com/wp-content/themes/GIM-PROD/assets/css/components.css?ver=1.0.0' type='text/css' media='all' /><link rel='stylesheet' id='gim-posts-css' href='https://gunindustrymarketplace.com/wp-content/themes/GIM-PROD/assets/css/posts.css?ver=1.0.0' type='text/css' media='all' /><link rel='stylesheet' id='gim-media-css' href='https://gunindustrymarketplace.com/wp-content/themes/GIM-PROD/assets/css/media.css?ver=1.0.0' type='text/css' media='all' /><link rel='stylesheet' id='gim-submissions-css' href='https://gunindustrymarketplace.com/wp-content/themes/GIM-PROD/assets/css/submissions.css?ver=1.0.0' type='text/css' media='all' /><link rel='stylesheet' id='gim-responsive-css' href='https://gunindustrymarketplace.com/wp-content/themes/GIM-PROD/assets/css/responsive.css?ver=1.0.0' type='text/css' media='all' /><link rel='stylesheet' id='gim-account-css' href='https://gunindustrymarketplace.com/wp-content/themes/GIM-PROD/assets/css/account-page.css?ver=1.0.0' type='text/css' media='all' /><link rel='stylesheet' id='gim-dark-theme-style-css' href='https://gunindustrymarketplace.com/wp-content/themes/GIM-PROD/assets/css/dark-theme.css?ver=1.0.0' type='text/css' media='all' /><link rel='stylesheet' id='viral-messaging-style-css' href='https://gunindustrymarketplace.com/wp-content/themes/GIM-PROD/assets/css/messaging.css?ver=1.0.0' type='text/css' media='all' /><link rel='stylesheet' id='font-awesome-css' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css?ver=6.4.0' type='text/css' media='all' /><link rel='stylesheet' id='viral-groups-style-css' href='https://gunindustrymarketplace.com/wp-content/themes/GIM-PROD/assets/css/groups.css?ver=1.0.0' type='text/css' media='all' /><link rel='stylesheet' id='viral-dark-theme-toggle-css' href='https://gunindustrymarketplace.com/wp-content/themes/GIM-PROD/assets/css/dark-theme.css?ver=1.0.0' type='text/css' media='all' /><script type="text/javascript" src="https://gunindustrymarketplace.com/wp-includes/js/jquery/jquery.js?ver=3.7.1" id="jquery-core-js"></script><script type="text/javascript" src="https://gunindustrymarketplace.com/wp-includes/js/jquery/jquery-migrate.js?ver=3.4.1" id="jquery-migrate-js"></script> <!-- Google tag (gtag.js) snippet added by Site Kit --><!-- Google Analytics snippet added by Site Kit --><script type="text/javascript" src="https://www.googletagmanager.com/gtag/js?id=GT-WKTMW4S" id="google_gtagjs-js" async></script><script type="text/javascript" id="google_gtagjs-js-after">/* <![CDATA[ */window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}gtag("set","linker",{"domains":["gunindustrymarketplace.com"]});gtag("js", new Date());gtag("set", "developer_id.dZTNiMT", true);gtag("config", "GT-WKTMW4S"); window._googlesitekit = window._googlesitekit || {}; window._googlesitekit.throttledEvents = []; window._googlesitekit.gtagEvent = (name, data) => { var key = JSON.stringify( { name, data } ); if ( !! window._googlesitekit.throttledEvents[ key ] ) { return; } window._googlesitekit.throttledEvents[ key ] = true; setTimeout( () => { delete window._googlesitekit.throttledEvents[ key ]; }, 5 ); gtag( "event", name, { ...data, event_source: "site-kit" } ); }; /* ]]> */</script><script></script><link rel="https://api.w.org/" href="https://gunindustrymarketplace.com/wp-json/" /> <script type="text/javascript">var ajaxurl = 'https://gunindustrymarketplace.com/wp-admin/admin-ajax.php';</script> <meta name="generator" content="Site Kit by Google 1.163.0" /><script>window.userLoggedIn = false;</script> <style type="text/css"> :root { --primary-color: #dd3333; --secondary-color: #3498db; --accent-color: #27ae60; } body { font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; } h1 { font-family: 'Spartan', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; } h2, h3, h4, h5, h6 { font-family: 'Spartan', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; } a { font-family: 'Spartan', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; } .site-logo, .post-title a:hover, .main-navigation a:hover { color: var(--primary-color); } </style> <style type="text/css"> .site-logo img, .custom-logo-link img { max-width: 200px; } @media (max-width: 768px) { .site-logo img, .custom-logo-link img { max-width: 200px; } } </style> <style> .site-logo img { max-width: 200px; height: auto; } </style> <meta name="color-scheme" content="light dark"><meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)"><meta name="theme-color" content="#1a1a1a" media="(prefers-color-scheme: dark)"><meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/><link rel="icon" href="https://gunindustrymarketplace.com/wp-content/uploads/2024/05/cropped-Gun-Industry-Marketplace-Favicon-32x32.png" sizes="32x32" /><link rel="icon" href="https://gunindustrymarketplace.com/wp-content/uploads/2024/05/cropped-Gun-Industry-Marketplace-Favicon-192x192.png" sizes="192x192" /><link rel="apple-touch-icon" href="https://gunindustrymarketplace.com/wp-content/uploads/2024/05/cropped-Gun-Industry-Marketplace-Favicon-180x180.png" /><meta name="msapplication-TileImage" content="https://gunindustrymarketplace.com/wp-content/uploads/2024/05/cropped-Gun-Industry-Marketplace-Favicon-270x270.png" /><noscript><style> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript> <script id="mcjs">!function(c,h,i,m,p){m=c.createElement(h),p=c.getElementsByTagName(h)[0],m.async=1,m.src=i,p.parentNode.insertBefore(m,p)}(document,"script","https://chimpstatic.com/mcjs-connected/js/users/71b66c25ce376fe2ff0f10c67/66f1809d82c34f557b375d099.js");</script></head> <body class="home-page bp-nouveau home blog wp-custom-logo wp-embed-responsive wp-theme-GIM-PROD wp-child-theme-GIM-CHILD logged-out hfeed no-sidebar layout-boxed posts-per-row-2 has-theme-toggle wpb-js-composer js-comp-ver-7.0 vc_responsive"> <div id="page" class="site"> <header id="masthead" class="site-header"> <div class="container"> <div class="header-content"> <div class="site-branding"> <div class="logo-tagline-container"> <div class="site-logo"> <a href="https://gunindustrymarketplace.com/"> <!-- Light theme logo --> <img src="https://gunindustrymarketplace.com/wp-content/uploads/2024/02/Gun-Industry-Marketplace.png" alt="Gun Industry Marketplace" class="light-logo"> <!-- Dark theme logo (if available) --> <img src="https://gunindustrymarketplace.com/wp-content/uploads/2024/05/Gun-Industry-Marketplace-Inverted.png" alt="Gun Industry Marketplace" class="dark-logo"> </a> </div> <p class="site-description">The Firearms Industry Unsuppressed</p> </div> </div> <nav id="site-navigation" class="main-navigation"> <ul id="primary-menu" class="menu"><li id="menu-item-33141" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-33141"><a href="https://gunindustrymarketplace.com/" aria-current="page">Home</a></li><li id="menu-item-33139" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-33139"><a href="https://gunindustrymarketplace.com/groups/news/">News</a></li><li id="menu-item-33131" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-33131"><a href="https://gunindustrymarketplace.com/groups/business/">Business</a></li><li id="menu-item-33140" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-33140"><a href="https://gunindustrymarketplace.com/groups/videos/">Videos</a></li><li id="menu-item-33137" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-33137"><a href="https://gunindustrymarketplace.com/groups/jobs/">Jobs</a></li><li id="menu-item-33134" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-33134"><a href="https://gunindustrymarketplace.com/groups/funny/">Funny</a></li><li id="menu-item-33132" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-33132"><a href="https://gunindustrymarketplace.com/groups/">Groups</a></li></ul> </nav> <div class="header-actions"> <a href="#" class="login-btn" id="login-modal-trigger"> Login </a> <a href="https://gunindustrymarketplace.com/register/" class="register-btn"> Register </a> <button class="theme-toggle" aria-label="Toggle dark theme" title="Toggle dark/light theme"><span class="theme-toggle-icon light-icon"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"> <circle cx="12" cy="12" r="5"/> <line x1="12" y1="1" x2="12" y2="3"/> <line x1="12" y1="21" x2="12" y2="23"/> <line x1="4.22" y1="4.22" x2="5.64" y2="5.64"/> <line x1="18.36" y1="18.36" x2="19.78" y2="19.78"/> <line x1="1" y1="12" x2="3" y2="12"/> <line x1="21" y1="12" x2="23" y2="12"/> <line x1="4.22" y1="19.78" x2="5.64" y2="18.36"/> <line x1="18.36" y1="5.64" x2="19.78" y2="4.22"/> </svg></span><span class="theme-toggle-icon dark-icon"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"> <path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/> </svg></span></button> <!-- Social Media Icons --> <div class="social-media-icons"> <a href="https://linkedin.com/company/gun-industry-marketplace" target="_blank" rel="noopener noreferrer" class="social-icon linkedin-icon" aria-label="Follow us on LinkedIn" title="Follow us on LinkedIn"> <i class="fab fa-linkedin-in"></i> </a> <a href="https://x.com/GunIndustryGIM" target="_blank" rel="noopener noreferrer" class="social-icon x-icon" aria-label="Follow us on X" title="Follow us on X"> <i class="fa-brands fa-twitter"></i> </a> </div> </div> </div> </div> </header> <!-- Login Modal --> <div id="login-modal" class="login-modal" style="display: none;"> <div class="login-modal-overlay"></div> <div class="login-modal-content"> <button class="login-modal-close" type="button">×</button> <div class="login-modal-header"> <h2>Log In</h2> </div> <form id="login-modal-form" class="login-form"> <input type="hidden" id="login_nonce" name="login_nonce" value="0cacfc1553" /><input type="hidden" name="_wp_http_referer" value="/" /> <div class="login-field"> <input type="text" id="login-username" name="username" placeholder="Username or Email Address" required> </div> <div class="login-field"> <input type="password" id="login-password" name="password" placeholder="Password" required> </div> <div class="login-forgot"> <a href="https://gunindustrymarketplace.com/wp-login.php?action=lostpassword" class="forgot-password-link"> Forgot password? </a> </div> <div class="login-remember"> <label class="remember-label"> <input type="checkbox" name="remember" value="1"> <span class="checkmark"></span> Remember Me </label> </div> <div class="login-submit"> <button type="submit" class="login-btn-submit"> LOG IN </button> </div> <div class="login-register-link"> Don't have an account? <a href="https://gunindustrymarketplace.com/register/" class="register-link"> Register </a> </div> <div class="login-error" id="login-error" style="display: none;"></div> <div class="login-success" id="login-success" style="display: none;"></div> </form> </div> </div> <div id="content" class="site-content"></code><div class="content-with-sidebar"> <main class="main-content"> <!-- Pre-Feed Widget Area --> <div class="pre-feed-widget-area"> <div class="container"> <section id="adsanity-group-6" class="widget widget adsanity-group"><div class="ad-aligncenter"><div class="ad-row"><div id="ad-32930" class="ad-848x106 adsanity-848x106 aligncenter adsanity-aligncenter"><div class="adsanity-inner"> <a rel="nofollow" href="https://gunindustrymarketplace.com/ads/bravo-1-6-2025/" target="_blank"><img width="2560" height="317" src="https://gunindustrymarketplace.com/wp-content/uploads/2025/06/Ad-Bravo_All-in-one-02-scaled.jpg" class="no-lazy-load wp-post-image" alt="" decoding="async" fetchpriority="high" srcset="https://gunindustrymarketplace.com/wp-content/uploads/2025/06/Ad-Bravo_All-in-one-02-scaled.jpg 2560w, https://gunindustrymarketplace.com/wp-content/uploads/2025/06/Ad-Bravo_All-in-one-02-300x37.jpg 300w, https://gunindustrymarketplace.com/wp-content/uploads/2025/06/Ad-Bravo_All-in-one-02-1024x127.jpg 1024w, https://gunindustrymarketplace.com/wp-content/uploads/2025/06/Ad-Bravo_All-in-one-02-768x95.jpg 768w, https://gunindustrymarketplace.com/wp-content/uploads/2025/06/Ad-Bravo_All-in-one-02-1536x190.jpg 1536w, https://gunindustrymarketplace.com/wp-content/uploads/2025/06/Ad-Bravo_All-in-one-02-2048x254.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" /></a></div></div> </div></div></section> </div> </div> <!-- Top Navigation Tabs --> <div class="top-navigation"> <div class="container"> <!-- For non-logged-in users, start with NEW tab --> <a href="#" class="top-nav-item active" data-filter="new">NEW</a> <a href="#" class="top-nav-item" data-filter="trending">TRENDING</a> <a href="#" class="top-nav-item" data-filter="discussions">DISCUSSIONS</a> </div> </div> <!-- Content Area - Now just a container for AJAX-loaded content --> <div class="content-area"> <div class="posts-grid" id="posts-container"> <!-- Initial loading message - content will be loaded via AJAX --> <div class="loading-posts">Loading posts...</div> </div> </div> </main> <!-- Sidebar --> <aside class="content-sidebar"> <section id="block-2" class="widget widget_block"><div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex"><div class="wp-block-button has-custom-width wp-block-button__width-100 snax-action-btn"><a class="wp-block-button__link has-background wp-element-button" href="https://gunindustrymarketplace.com/submit-link/" style="border-radius:0px;background-color:#dd3333">ADD NEW LINK</a></div> <div class="wp-block-button has-custom-width wp-block-button__width-100 snax-action-btn"><a class="wp-block-button__link has-background wp-element-button" href="https://gunindustrymarketplace.com/submit-story/" style="border-radius:0px;background-color:#dd3333">ADD NEW TEXT POST</a></div> <div class="wp-block-button has-custom-width wp-block-button__width-100 snax-action-btn"><a class="wp-block-button__link has-background wp-element-button" href="https://gunindustrymarketplace.com/submit-media/" style="border-radius:0px;background-color:#dd3333">ADD NEW IMAGE/VIDEO POST</a></div></div></section><section id="block-6" class="widget widget_block"><hr class="wp-block-separator has-alpha-channel-opacity"/></section><section id="block-15" class="widget widget_block widget_search"><form role="search" method="get" action="https://gunindustrymarketplace.com/" class="wp-block-search__button-outside wp-block-search__text-button wp-block-search" ><label class="wp-block-search__label" for="wp-block-search__input-1" >Search</label><div class="wp-block-search__inside-wrapper " ><input class="wp-block-search__input" id="wp-block-search__input-1" placeholder="" value="" type="search" name="s" required /><button aria-label="Search" class="wp-block-search__button wp-element-button" type="submit" >Search</button></div></form></section><section id="text-4" class="widget widget_text"><h3 class="widget-title">WELCOME TO THE NEW GIM VERSION 2!</h3> <div class="textwidget"><p>We’re live, baby! Lots of updates coming. Please report any issues or bugs here:</p><p><center><strong><a href="https://gunindustrymarketplace.com/contact/">Report bugs & feedback</a></strong></center></p></div> </section><section id="block-9" class="widget widget_block"><hr class="wp-block-separator has-alpha-channel-opacity"/></section><section id="block-10" class="widget widget_block"><hr class="wp-block-separator has-alpha-channel-opacity"/></section><section id="text-5" class="widget widget_text"><h3 class="widget-title">Donβt miss out on new posts</h3> <div class="textwidget"><h3 class="null" style="text-align: center;"><span style="font-size: 25px;"><span>Get the best of the gun biz straight into your inbox</span></span></h3><p style="text-align: center;"><strong><span style="font-size: 25px;"><a href="https://gunindustrymarketplace.com/sign-up-for-updates/">Subscribe Here</a></span></strong></p></div> </section><section id="block-11" class="widget widget_block"><hr class="wp-block-separator has-alpha-channel-opacity"/></section><section id="block-17" class="widget widget_block"></section><section id="nav_menu-6" class="widget widget_nav_menu"><h3 class="widget-title">Help & FAQs</h3><div class="menu-help-container"><ul id="menu-help" class="menu"><li id="menu-item-30547" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-30547"><a href="https://gunindustrymarketplace.com/content-guidelines/">User Content Guidelines</a></li><li id="menu-item-30712" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-30712"><a href="https://gunindustrymarketplace.com/faqs/">FAQs</a></li><li id="menu-item-30806" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-30806"><a href="https://gunindustrymarketplace.com/make-sure-you-receive-our-emails/">Make sure you receive our emails!</a></li></ul></div></section><section id="nav_menu-3" class="widget widget_nav_menu"><h3 class="widget-title">Company</h3><div class="menu-company-container"><ul id="menu-company" class="menu"><li id="menu-item-31175" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-31175"><a href="https://gunindustrymarketplace.com/" aria-current="page">Home</a></li><li id="menu-item-33151" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-33151"><a href="https://gunindustrymarketplace.com/gim-services/">GIM Services</a><ul class="sub-menu"> <li id="menu-item-33152" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-33152"><a href="https://gunindustrymarketplace.com/gim-services/business-listings/">Business Listings</a></li> <li id="menu-item-33153" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-33153"><a href="https://gunindustrymarketplace.com/gim-services/firearms-friendly-banner-ads/">Firearms-Friendly Banner Ads</a></li> <li id="menu-item-33154" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-33154"><a href="https://gunindustrymarketplace.com/gim-services/blast-email-marketing/">BLAST Email Marketing</a></li> <li id="menu-item-33155" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-33155"><a href="https://gunindustrymarketplace.com/gim-services/gun-seo/">Gun SEO</a></li></ul></li><li id="menu-item-29552" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29552"><a href="https://gunindustrymarketplace.com/about/">About</a></li><li id="menu-item-29553" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29553"><a href="https://gunindustrymarketplace.com/successes/">Successes</a></li><li id="menu-item-30613" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-30613"><a href="https://gunindustrymarketplace.com/contact/">Contact Us</a></li></ul></div></section><div class="mobile-snax-container"><button class="mobile-snax-fab" id="mobile-snax-fab" aria-label="Add Content"><span class="fab-icon">+</span></button><div class="mobile-snax-overlay" id="mobile-snax-overlay"></div><div class="mobile-snax-menu" id="mobile-snax-menu"><a href="#" class="snax-action-btn snax-link-btn login-required" data-action="link"><span class="snax-icon">π</span><span class="snax-text">ADD NEW LINK</span></a><a href="#" class="snax-action-btn snax-text-btn login-required" data-action="story"><span class="snax-icon">π</span><span class="snax-text">ADD NEW TEXT POST</span></a><a href="#" class="snax-action-btn snax-media-btn login-required" data-action="media"><span class="snax-icon">π·</span><span class="snax-text">ADD NEW IMAGE/VIDEO POST</span></a></div></div> </aside></div> <script>// Initialize the default tab content when page loadsdocument.addEventListener('DOMContentLoaded', function() { // Get the active tab const activeTab = document.querySelector('.top-nav-item.active'); if (activeTab) { const filter = activeTab.getAttribute('data-filter'); // Load the initial content loadTabContent(filter); }});</script> </div><!-- #content --> <footer id="colophon" class="site-footer"> <div class="container"> <div class="footer-bottom"> <div class="footer-info"> <p>© 2025 Gun Industry Marketplace. All rights reserved.</p> </div> <nav class="footer-navigation"> <ul id="footer-menu" class="menu"><li id="menu-item-29720" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-privacy-policy menu-item-29720"><a rel="privacy-policy" href="https://gunindustrymarketplace.com/website-terms-of-use-privacy-agreement/">Website Terms of Use & Privacy Agreement</a></li></ul> </nav> </div> </div> </footer></div><!-- #page --> <script type="speculationrules">{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/GIM-CHILD\/*","\/wp-content\/themes\/GIM-PROD\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}</script> <script> document.addEventListener('themeChanged', function(e) { // Google Analytics 4 if (typeof gtag !== 'undefined') { gtag('event', 'theme_toggle', { 'theme_mode': e.detail.theme, 'event_category': 'user_interface', 'event_label': 'Theme Toggle' }); } // Google Analytics Universal if (typeof ga !== 'undefined') { ga('send', 'event', 'Theme Toggle', 'toggle', e.detail.theme); } // Custom analytics if (typeof viralAnalytics !== 'undefined') { viralAnalytics.track('theme_toggle', { theme: e.detail.theme, timestamp: new Date().toISOString() }); } }); </script> <script> document.addEventListener('DOMContentLoaded', function() { // Add keyboard navigation support document.addEventListener('keydown', function(e) { if (e.ctrlKey && e.shiftKey && e.key === 'T') { e.preventDefault(); const toggleButton = document.querySelector('.theme-toggle'); if (toggleButton) { toggleButton.click(); toggleButton.focus(); } } }); // Add screen reader announcements document.addEventListener('themeChanged', function(e) { const announcement = document.createElement('div'); announcement.setAttribute('aria-live', 'polite'); announcement.setAttribute('aria-atomic', 'true'); announcement.className = 'sr-only'; announcement.textContent = 'Theme changed to ' + e.detail.theme + ' mode'; document.body.appendChild(announcement); setTimeout(function() { document.body.removeChild(announcement); }, 1000); }); }); </script> <style id='core-block-supports-inline-css' type='text/css'>/** * Core styles: block-supports */ </style><script type="text/javascript" id="adsanity_raw-js-extra">/* <![CDATA[ */var adsanity_raw = {"rest_url":"https:\/\/gunindustrymarketplace.com\/wp-json\/wp\/v2\/ads\/","home_url":"https:\/\/gunindustrymarketplace.com\/"};/* ]]> */</script><script type="text/javascript" src="https://gunindustrymarketplace.com/wp-content/plugins/adsanity-rotating-ad-widget/public/dist/js/adsanity-raw-public.js?ver=1.6.5" id="adsanity_raw-js"></script><script type="text/javascript" src="https://gunindustrymarketplace.com/wp-includes/js/dist/hooks.js?ver=be67dc331e61e06d52fa" id="wp-hooks-js"></script><script type="text/javascript" src="https://gunindustrymarketplace.com/wp-includes/js/dist/i18n.js?ver=5edc734adb78e0d7d00e" id="wp-i18n-js"></script><script type="text/javascript" id="wp-i18n-js-after">/* <![CDATA[ */wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );/* ]]> */</script><script type="text/javascript" src="https://gunindustrymarketplace.com/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.1.2" id="swv-js"></script><script type="text/javascript" id="contact-form-7-js-before">/* <![CDATA[ */var wpcf7 = { "api": { "root": "https:\/\/gunindustrymarketplace.com\/wp-json\/", "namespace": "contact-form-7\/v1" }};/* ]]> */</script><script type="text/javascript" src="https://gunindustrymarketplace.com/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.1.2" id="contact-form-7-js"></script><script type="text/javascript" id="custom-viral-theme-main-js-extra">/* <![CDATA[ */var viral_ajax = {"ajax_url":"https:\/\/gunindustrymarketplace.com\/wp-admin\/admin-ajax.php","nonce":"c1d7f58de8","login_nonce":"0cacfc1553","home_url":"https:\/\/gunindustrymarketplace.com","current_user":"","current_user_id":"0","current_user_slug":""};/* ]]> */</script><script defer type="text/javascript" src="https://gunindustrymarketplace.com/wp-content/themes/GIM-PROD/assets/js/main.js?ver=1.0.1" id="custom-viral-theme-main-js"></script><script type="text/javascript" src="https://gunindustrymarketplace.com/wp-content/themes/GIM-PROD/assets/js/tabs.js?ver=1.0.1" id="custom-viral-theme-tabs-js"></script><script type="text/javascript" src="https://gunindustrymarketplace.com/wp-content/themes/GIM-PROD/assets/js/dark-theme-toggle.js?ver=1.0.0" id="gim-dark-theme-js-js"></script><script type="text/javascript" id="viral-messaging-js-js-extra">/* <![CDATA[ */var viral_messaging_ajax = {"ajax_url":"https:\/\/gunindustrymarketplace.com\/wp-admin\/admin-ajax.php","nonce":"11bfec5c52","strings":{"send_message":"Send Message","sending":"Sending...","message_sent":"Message sent successfully!","error_sending":"Error sending message. Please try again.","empty_message":"Please enter a message.","empty_subject":"Please enter a subject."}};/* ]]> */</script><script type="text/javascript" src="https://gunindustrymarketplace.com/wp-content/themes/GIM-PROD/assets/js/messaging.js?ver=1.0.0" id="viral-messaging-js-js"></script><script type="text/javascript" src="https://gunindustrymarketplace.com/wp-content/themes/GIM-PROD/assets/js/responsive.js?ver=1.0.0" id="gim-responsive-js-js"></script><script type="text/javascript" src="https://gunindustrymarketplace.com/wp-content/themes/GIM-PROD/assets/js/buddypress.js?ver=1.0.0" id="viral-buddypress-js-js"></script><script type="text/javascript" id="viral-dark-theme-toggle-js-before">/* <![CDATA[ */ (function() { // Get saved theme preference const savedTheme = localStorage.getItem('viral-theme-preference'); // Get system preference const prefersDark = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches; // Determine theme to apply let theme; if (savedTheme && ['light', 'dark'].includes(savedTheme)) { theme = savedTheme; } else { theme = prefersDark ? 'dark' : 'light'; } // Apply theme immediately document.documentElement.setAttribute('data-theme', theme); document.body.classList.add('theme-' + theme); // Update meta theme-color const themeColorMeta = document.querySelector('meta[name="theme-color"]'); if (themeColorMeta) { themeColorMeta.content = theme === 'dark' ? '#1a1a1a' : '#ffffff'; } console.log('Initial theme applied:', theme); })(); /* ]]> */</script><script type="text/javascript" src="https://gunindustrymarketplace.com/wp-content/themes/GIM-PROD/assets/js/dark-theme-toggle.js?ver=1.0.0" id="viral-dark-theme-toggle-js"></script><script type="text/javascript" src="https://gunindustrymarketplace.com/wp-content/plugins/google-site-kit/dist/assets/js/googlesitekit-events-provider-contact-form-7-4ce15f19b39e8d338e84.js" id="googlesitekit-events-provider-contact-form-7-js" defer></script><script type="text/javascript" defer src="https://gunindustrymarketplace.com/wp-content/plugins/mailchimp-for-wp/assets/js/forms.js?ver=4.10.7" id="mc4wp-forms-api-js"></script><script type="text/javascript" src="https://gunindustrymarketplace.com/wp-content/plugins/google-site-kit/dist/assets/js/googlesitekit-events-provider-mailchimp-6c323aa9d38a48a4958a.js" id="googlesitekit-events-provider-mailchimp-js" defer></script><script type="text/javascript" src="https://gunindustrymarketplace.com/wp-content/plugins/google-site-kit/dist/assets/js/googlesitekit-events-provider-wpforms-3a5081f8ff3f186e8aa8.js" id="googlesitekit-events-provider-wpforms-js" defer></script><script></script></body></html>