window.featureFullHeightOn = function () {
				var newHeight = 0;
				if ($('.feature-area__slides')[0]) {
			        var offset = $('.feature-area__slides').offset();
			    	var newHeight = window.viewport().height - offset.top;
			    }

		    	
		    	$('.feature-slide-content-global, .feature-area__slides, .feature-area-wrap, .feature-slide, .feature-slide-overlay').css('height', newHeight+'px');
		    	$('.feature-slide-content-global').css('margin-top', '-'+newHeight+'px');
		    	window.featureVerticalCenter();
		    	window.onTextHeaderHeightChange();
		    };

		    window.featureFullHeightOff = function () {
		    	$('.feature-slide-content-global, .feature-area__slides, .feature-area-wrap, .feature-slide, .feature-slide-overlay').css('height', '');
		    	$('.feature-slide-content-global').css('margin-top', '');
		    	featureVerticalCenter();
		    };

			window.startFeatureResize = function () {
			    $(window).on('resize.featureResize', function() {
			        if (document.querySelector('.feature-area-wrap')?.dataset.fullHeight === '1' && !window.isResponsiveMobile()) { /* desktop full height enabled and browser is desktop size */
			            window.featureFullHeightOn();
			        }
			    });
			};

			window.endFeatureResize = function () {
				$(window).off('resize.featureResize');
			};