.elementor-1125 .elementor-element.elementor-element-b6f0e11{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1125 .elementor-element.elementor-element-b6f0e11:not(.elementor-motion-effects-element-type-background), .elementor-1125 .elementor-element.elementor-element-b6f0e11 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, #B6B6B6 0%, #FFFFFF 100%);}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-d197284 */<script>
// Wait until the document is ready
document.addEventListener('DOMContentLoaded', function () {
    // Get the 'Next' button for the form
    const nextButton = document.querySelector('.hs-form-next');

    // Function to check if required fields are filled out
    function checkRequiredFields() {
        const requiredFields = document.querySelectorAll('.hs-form .hs-input[required]');
        let isValid = true;

        // Loop through each required field and check if it's filled
        requiredFields.forEach(function (field) {
            if (!field.value.trim()) {
                isValid = false; // Set isValid to false if a field is empty
            }
        });

        // Enable or disable the 'Next' button based on the field validation
        if (isValid) {
            nextButton.disabled = false; // Enable Next button if all required fields are filled
        } else {
            nextButton.disabled = true; // Disable Next button if fields are not filled
        }
    }

    // Add event listeners to the required fields to check for changes
    const requiredFields = document.querySelectorAll('.hs-form .hs-input[required]');
    requiredFields.forEach(function (field) {
        field.addEventListener('input', checkRequiredFields); // Check fields when input changes
    });

    // Initial validation to check if fields are filled when the page loads
    checkRequiredFields();
});
</script>/* End custom CSS */