// source --> https://nubity.com/wp-content/plugins/industrium-plugin/js/elementor-scripts.js?ver=7.0 
jQuery(window).on('elementor/frontend/init', function () {
    elementorFrontend.hooks.addAction( 'frontend/element_ready/global', function( $scope ) {
    	if( jQuery('body').hasClass('elementor-editor-active') ) {
    		if($scope.hasClass('elementor-section') && !$scope.children('.elementor-container').children('.elementor-row').length) {
	    		$scope.children('.elementor-container').wrapInner('<div class="elementor-row ui-sortable"></div>');
	    	} else if($scope.hasClass('elementor-column') && !$scope.parent('.elementor-row').length) {
	    		$scope.siblings('.elementor-row').children().unwrap();
	    		$scope.parent('.elementor-container').wrapInner('<div class="elementor-row ui-sortable"></div>');
	    	}
    	}    	
    } );
    elementorFrontend.hooks.addAction( 'frontend/element_ready/section', function( $scope ) {
    	if( !jQuery('body').hasClass('elementor-editor-active') ) {
    		if(!$scope.children('.elementor-container').children('.elementor-row').length) {
	            $scope.children('.elementor-container').wrapInner('<div class="elementor-row"></div>');
	        }
    	}
    });
});
// source --> https://nubity.com/wp-content/plugins/wp-contact-form-7-spam-blocker/frontend/js/spam-protect-for-contact-form7.js?ver=1.0.0 
(function( $ ) {
	'use strict';

	/**
	 * All of the code for your public-facing JavaScript source
	 * should reside in this file.
	 *
	 * Note: It has been assumed you will write jQuery code here, so the
	 * $ function reference has been prepared for usage within the scope
	 * of this function.
	 *
	 * This enables you to define handlers, for when the DOM is ready:
	 *
	 * $(function() {
	 *
	 * });
	 *
	 * When the window is loaded:
	 *
	 * $( window ).load(function() {
	 *
	 * });
	 *
	 * ...and/or other possibilities.
	 *
	 * Ideally, it is not considered best practise to attach more than a
	 * single DOM-ready or window-load handler for a particular page.
	 * Although scripts in the WordPress core, Plugins and Themes may be
	 * practising this, we should strive to set a better example in our own work.
	 */

})( jQuery );