{"id":5098,"date":"2019-07-17T22:53:23","date_gmt":"2019-07-17T22:53:23","guid":{"rendered":"https:\/\/www.portedegarageandre.com\/residential\/"},"modified":"2024-04-03T13:58:44","modified_gmt":"2024-04-03T13:58:44","slug":"residential-garage-doors","status":"publish","type":"page","link":"https:\/\/www.portedegarageandre.com\/en\/residential-garage-doors\/","title":{"rendered":"Residential"},"content":{"rendered":"<p><\/p>\n<h1>Residential garage doors<\/h1>\n<p><\/p>\n<h3>Residential garage door, commercial &amp; high quality door opener<\/h3>\n<p><\/p>\n<p>Designed and built for cold climates, <strong>les portes de garage Les industries Andr\u00e9 Inc.<\/strong> garage doors adequately protect against extreme weather conditions. Their resistance and their tightness are due to the materials used during their manufacture. Injected with polyurethane foam, they have superior insulation.<\/p>\n<p><\/p>\n<h5>Get in touch<\/h5>\n<p><\/p>\n<script>\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tthemeScriptsLoaded: false,\n\t\tisFormEditor: () => typeof InitializeEditor === 'function',\n\n\t\t\/**\n\t\t * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.\n\t\t * @remove-in 4.0 this function will not check for gform.isFormEditor().\n\t\t *\/\n\t\tcallIfLoaded: function ( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {\n\t\t\t\tif ( gform.isFormEditor() ) {\n\t\t\t\t\tconsole.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );\n\t\t\t\t}\n\t\t\t\tfn();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\n\t\t\/**\n\t\t * Call a function when all scripts are loaded\n\t\t *\n\t\t * @param function fn the callback function to call when all scripts are loaded\n\t\t *\n\t\t * @returns void\n\t\t *\/\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( ! gform.callIfLoaded( fn ) ) {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t}\n\t\t},\n\n\t\thooks: { action: {}, filter: {} },\n\t\taddAction: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'action', action, callable, priority, tag );\n\t\t},\n\t\taddFilter: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'filter', action, callable, priority, tag );\n\t\t},\n\t\tdoAction: function( action ) {\n\t\t\tgform.doHook( 'action', action, arguments );\n\t\t},\n\t\tapplyFilters: function( action ) {\n\t\t\treturn gform.doHook( 'filter', action, arguments );\n\t\t},\n\t\tremoveAction: function( action, tag ) {\n\t\t\tgform.removeHook( 'action', action, tag );\n\t\t},\n\t\tremoveFilter: function( action, priority, tag ) {\n\t\t\tgform.removeHook( 'filter', action, priority, tag );\n\t\t},\n\t\taddHook: function( hookType, action, callable, priority, tag ) {\n\t\t\tif ( undefined == gform.hooks[hookType][action] ) {\n\t\t\t\tgform.hooks[hookType][action] = [];\n\t\t\t}\n\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\tif ( undefined == tag ) {\n\t\t\t\ttag = action + '_' + hooks.length;\n\t\t\t}\n\t\t\tif( priority == undefined ){\n\t\t\t\tpriority = 10;\n\t\t\t}\n\n\t\t\tgform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );\n\t\t},\n\t\tdoHook: function( hookType, action, args ) {\n\n\t\t\t\/\/ splice args from object into array and remove first index which is the hook name\n\t\t\targs = Array.prototype.slice.call(args, 1);\n\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action], hook;\n\t\t\t\t\/\/sort by priority\n\t\t\t\thooks.sort(function(a,b){return a[\"priority\"]-b[\"priority\"]});\n\n\t\t\t\thooks.forEach( function( hookItem ) {\n\t\t\t\t\thook = hookItem.callable;\n\n\t\t\t\t\tif(typeof hook != 'function')\n\t\t\t\t\t\thook = window[hook];\n\t\t\t\t\tif ( 'action' == hookType ) {\n\t\t\t\t\t\thook.apply(null, args);\n\t\t\t\t\t} else {\n\t\t\t\t\t\targs[0] = hook.apply(null, args);\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( 'filter'==hookType ) {\n\t\t\t\treturn args[0];\n\t\t\t}\n\t\t},\n\t\tremoveHook: function( hookType, action, priority, tag ) {\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\t\thooks = hooks.filter( function(hook, index, arr) {\n\t\t\t\t\tvar removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);\n\t\t\t\t\treturn !removeHook;\n\t\t\t\t} );\n\t\t\t\tgform.hooks[hookType][action] = hooks;\n\t\t\t}\n\t\t}\n\t};\n}\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gform_legacy_markup_wrapper gform-theme--no-framework' data-form-theme='legacy' data-form-index='0' id='gform_wrapper_3' style='display:none'><form method='post' enctype='multipart\/form-data'  id='gform_3'  action='\/en\/wp-json\/wp\/v2\/pages\/5098' data-formid='3' novalidate>\n                        <div class='gform-body gform_body'><ul id='gform_fields_3' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_3_1\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield_contains_required field_sublabel_below gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' >How can we help you?<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_3_1'>\n\t\t\t<li class='gchoice gchoice_3_1_0'>\n\t\t\t\t<input name='input_1' type='radio' value='Quote Request'  id='choice_3_1_0'    \/>\n\t\t\t\t<label for='choice_3_1_0' id='label_3_1_0' class='gform-field-label gform-field-label--type-inline'>Quote Request<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_3_1_1'>\n\t\t\t\t<input name='input_1' type='radio' value='Service call'  id='choice_3_1_1'    \/>\n\t\t\t\t<label for='choice_3_1_1' id='label_3_1_1' class='gform-field-label gform-field-label--type-inline'>Service call<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_3_1_2'>\n\t\t\t\t<input name='input_1' type='radio' value='General Information'  id='choice_3_1_2'    \/>\n\t\t\t\t<label for='choice_3_1_2' id='label_3_1_2' class='gform-field-label gform-field-label--type-inline'>General Information<\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_3_18\" class=\"gfield gfield--type-textarea gfield--input-type-textarea gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_3_18'>Please enter your questions and a representative will contact you.<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_18' id='input_3_18' class='textarea large'     aria-required=\"true\" aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/li><li id=\"field_3_14\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gf_list_inline gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' >Is it urgent?<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_3_14'>\n\t\t\t<li class='gchoice gchoice_3_14_0'>\n\t\t\t\t<input name='input_14' type='radio' value='Yes'  id='choice_3_14_0'    \/>\n\t\t\t\t<label for='choice_3_14_0' id='label_3_14_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_3_14_1'>\n\t\t\t\t<input name='input_14' type='radio' value='No'  id='choice_3_14_1'    \/>\n\t\t\t\t<label for='choice_3_14_1' id='label_3_14_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_3_15\" class=\"gfield gfield--type-html gfield--input-type-html gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  >We invite you to contact us by phone so that we can assist you as quickly as possible at 1-866-455-3585.<\/li><li id=\"field_3_2\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gf_list_inline gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' >This request is for:<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_3_2'>\n\t\t\t<li class='gchoice gchoice_3_2_0'>\n\t\t\t\t<input name='input_2' type='radio' value='Garage Door'  id='choice_3_2_0'    \/>\n\t\t\t\t<label for='choice_3_2_0' id='label_3_2_0' class='gform-field-label gform-field-label--type-inline'>Garage Door<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_3_2_1'>\n\t\t\t\t<input name='input_2' type='radio' value='Electric operator (motor)'  id='choice_3_2_1'    \/>\n\t\t\t\t<label for='choice_3_2_1' id='label_3_2_1' class='gform-field-label gform-field-label--type-inline'>Electric operator (motor)<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_3_2_2'>\n\t\t\t\t<input name='input_2' type='radio' value='Others'  id='choice_3_2_2'    \/>\n\t\t\t\t<label for='choice_3_2_2' id='label_3_2_2' class='gform-field-label gform-field-label--type-inline'>Others<\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_3_4\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gf_list_inline gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' >Do you know what you are looking for? <span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_3_4'>\n\t\t\t<li class='gchoice gchoice_3_4_0'>\n\t\t\t\t<input name='input_4' type='radio' value='Yes'  id='choice_3_4_0'    \/>\n\t\t\t\t<label for='choice_3_4_0' id='label_3_4_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_3_4_1'>\n\t\t\t\t<input name='input_4' type='radio' value='No'  id='choice_3_4_1'    \/>\n\t\t\t\t<label for='choice_3_4_1' id='label_3_4_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_3_3\" class=\"gfield gfield--type-html gfield--input-type-html gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  >Please wait while you are being redirected...\n<script>\ndocument.addEventListener('DOMContentLoaded', function() {\ndocument.querySelector('#choice_3_4_0').addEventListener('click', function() {\n    location.href= \"https:\/\/indandre.garaga.com\/ca\/designcentre\/selection\";\n});\n});\n<\/script>\n<\/li><li id=\"field_3_17\" class=\"gfield gfield--type-textarea gfield--input-type-textarea gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_3_17'>Please describe your problem and we will contact you to schedule an appointment with one of our technicians. <span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_17' id='input_3_17' class='textarea medium'     aria-required=\"true\" aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/li><li id=\"field_3_8\" class=\"gfield gfield--type-html gfield--input-type-html gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  >Please enter your information and a representative will contact you.<\/li><li id=\"field_3_9\" class=\"gfield gfield--type-html gfield--input-type-html gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  >Please enter your information and a representative will get in touch to inform you about our products.<\/li><li id=\"field_3_10\" class=\"gfield gfield--type-html gfield--input-type-html gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  >Please enter your information and a representative will contact you to help you find the product(s) you are looking for. <\/li><li id=\"field_3_5\" class=\"gfield gfield--type-text gfield--input-type-text gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_3_5'>Full Name<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_5' id='input_3_5' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_3_6\" class=\"gfield gfield--type-phone gfield--input-type-phone gf_left_half gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_3_6'>Phone<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_phone'><input name='input_6' id='input_3_6' type='tel' value='' class='large'   aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_3_7\" class=\"gfield gfield--type-email gfield--input-type-email gf_right_half gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_3_7'>Email<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_7' id='input_3_7' type='email' value='' class='large'    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/li><li id=\"field_3_20\" class=\"gfield gfield--type-hidden gfield--input-type-hidden gfield--width-full gform_hidden field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class='ginput_container ginput_container_text'><input name='input_20' id='input_3_20' type='hidden' class='gform_hidden'  aria-invalid=\"false\" value='' \/><\/div><\/li><li id=\"field_3_11\" class=\"gfield gfield--type-checkbox gfield--type-choice gfield--input-type-checkbox gf_list_inline gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label gfield_label_before_complex' >Best way to reach you?<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_checkbox'><ul class='gfield_checkbox' id='input_3_11'><li class='gchoice gchoice_3_11_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_11.1' type='checkbox'  value='Phone'  id='choice_3_11_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_11_1' id='label_3_11_1' class='gform-field-label gform-field-label--type-inline'>Phone<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_11_2'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_11.2' type='checkbox'  value='Email'  id='choice_3_11_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_11_2' id='label_3_11_2' class='gform-field-label gform-field-label--type-inline'>Email<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_11_3'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_11.3' type='checkbox'  value='Any time'  id='choice_3_11_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_11_3' id='label_3_11_3' class='gform-field-label gform-field-label--type-inline'>Any time<\/label>\n\t\t\t\t\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_3_12\" class=\"gfield gfield--type-checkbox gfield--type-choice gfield--input-type-checkbox gf_list_inline gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label gfield_label_before_complex' >Best time to reach you? <span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_checkbox'><ul class='gfield_checkbox' id='input_3_12'><li class='gchoice gchoice_3_12_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_12.1' type='checkbox'  value='AM'  id='choice_3_12_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_12_1' id='label_3_12_1' class='gform-field-label gform-field-label--type-inline'>AM<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_12_2'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_12.2' type='checkbox'  value='PM'  id='choice_3_12_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_12_2' id='label_3_12_2' class='gform-field-label gform-field-label--type-inline'>PM<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_12_3'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_12.3' type='checkbox'  value='Select a time range'  id='choice_3_12_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_12_3' id='label_3_12_3' class='gform-field-label gform-field-label--type-inline'>Select a time range<\/label>\n\t\t\t\t\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_3_13\" class=\"gfield gfield--type-checkbox gfield--type-choice gfield--input-type-checkbox gf_list_inline gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label gfield_label_before_complex' >Check one or more boxes<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_checkbox'><ul class='gfield_checkbox' id='input_3_13'><li class='gchoice gchoice_3_13_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_13.1' type='checkbox'  value='7AM - 8AM'  id='choice_3_13_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_13_1' id='label_3_13_1' class='gform-field-label gform-field-label--type-inline'>7AM - 8AM<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_13_2'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_13.2' type='checkbox'  value='8AM - 9AM'  id='choice_3_13_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_13_2' id='label_3_13_2' class='gform-field-label gform-field-label--type-inline'>8AM - 9AM<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_13_3'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_13.3' type='checkbox'  value='9AM - 10AM'  id='choice_3_13_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_13_3' id='label_3_13_3' class='gform-field-label gform-field-label--type-inline'>9AM - 10AM<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_13_4'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_13.4' type='checkbox'  value='10AM - 11AM'  id='choice_3_13_4'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_13_4' id='label_3_13_4' class='gform-field-label gform-field-label--type-inline'>10AM - 11AM<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_13_5'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_13.5' type='checkbox'  value='11AM - 12AM'  id='choice_3_13_5'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_13_5' id='label_3_13_5' class='gform-field-label gform-field-label--type-inline'>11AM - 12AM<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_13_6'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_13.6' type='checkbox'  value='12AM-1PM'  id='choice_3_13_6'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_13_6' id='label_3_13_6' class='gform-field-label gform-field-label--type-inline'>12AM-1PM<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_13_7'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_13.7' type='checkbox'  value='1PM - 2PM'  id='choice_3_13_7'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_13_7' id='label_3_13_7' class='gform-field-label gform-field-label--type-inline'>1PM - 2PM<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_13_8'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_13.8' type='checkbox'  value='2PM - 3PM'  id='choice_3_13_8'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_13_8' id='label_3_13_8' class='gform-field-label gform-field-label--type-inline'>2PM - 3PM<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_13_9'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_13.9' type='checkbox'  value='3PM - 4PM'  id='choice_3_13_9'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_13_9' id='label_3_13_9' class='gform-field-label gform-field-label--type-inline'>3PM - 4PM<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_13_11'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_13.11' type='checkbox'  value='4PM - 5PM'  id='choice_3_13_11'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_13_11' id='label_3_13_11' class='gform-field-label gform-field-label--type-inline'>4PM - 5PM<\/label>\n\t\t\t\t\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_3_19\" class=\"gfield gfield--type-captcha gfield--input-type-captcha field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label screen-reader-text' for='input_3_19'><\/label><div id='input_3_19' class='ginput_container ginput_recaptcha' data-sitekey='6LdcFdwZAAAAADj5qS78FrLvpaI_AZTKsC86Lf1-'  data-theme='light' data-tabindex='-1' data-size='invisible' data-badge='bottomright'><\/div><\/li><\/ul><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_3' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Send'  \/> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_3' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_3' id='gform_theme_3' value='legacy' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_3' id='gform_style_settings_3' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_3' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='3' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='CAD' value='1eAnTOerzHayoIWFicP4PSLRpfRo2TAd0dwcgGtx3p5WvbUK\/XVMoakUVYZvMoGKsp+HFUDAcSEfvU0VcHjSItCghkV65rUFtj2AQpEhazqYyrc=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_3' value='WyJbXSIsIjVjZDI5YjRkMTdiNGQyYjk0ZmQ0OGVkYTc3YmNmYzJjIl0=' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_3' id='gform_target_page_number_3' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_3' id='gform_source_page_number_3' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div><script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 3, 'https:\/\/www.portedegarageandre.com\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_3').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_3');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_3').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){form_content.find('form').css('opacity', 0);jQuery('#gform_wrapper_3').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_3').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_3').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_3').val();gformInitSpinner( 3, 'https:\/\/www.portedegarageandre.com\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [3, current_page]);window['gf_submitting_3'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_3').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [3]);window['gf_submitting_3'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_3').text());}else{jQuery('#gform_3').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"3\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_3\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_3\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_3\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 3, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} );\n<\/script>\n\n<p><\/p>\n<h5>Get in touch<\/h5>\n<p><\/p>\n<p><strong>Areas served<\/strong> : Vaudreuil-Dorion &amp; surrounding, Soulanges, Montreal West, Montreal, Alexandria, Limoges, Cornwall, Eastern Ontario, Hawkesbury etc\u2026<\/p>\n<p>facebooktwitteryoutube<\/p>\n\n                <div class='gf_browser_gecko gform_wrapper gform_legacy_markup_wrapper gform-theme--no-framework' data-form-theme='legacy' data-form-index='0' id='gform_wrapper_3' style='display:none'><form method='post' enctype='multipart\/form-data'  id='gform_3'  action='\/en\/wp-json\/wp\/v2\/pages\/5098' data-formid='3' novalidate>\n                        <div class='gform-body gform_body'><ul id='gform_fields_3' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_3_1\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield_contains_required field_sublabel_below gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' >How can we help you?<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_3_1'>\n\t\t\t<li class='gchoice gchoice_3_1_0'>\n\t\t\t\t<input name='input_1' type='radio' value='Quote Request'  id='choice_3_1_0'    \/>\n\t\t\t\t<label for='choice_3_1_0' id='label_3_1_0' class='gform-field-label gform-field-label--type-inline'>Quote Request<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_3_1_1'>\n\t\t\t\t<input name='input_1' type='radio' value='Service call'  id='choice_3_1_1'    \/>\n\t\t\t\t<label for='choice_3_1_1' id='label_3_1_1' class='gform-field-label gform-field-label--type-inline'>Service call<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_3_1_2'>\n\t\t\t\t<input name='input_1' type='radio' value='General Information'  id='choice_3_1_2'    \/>\n\t\t\t\t<label for='choice_3_1_2' id='label_3_1_2' class='gform-field-label gform-field-label--type-inline'>General Information<\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_3_18\" class=\"gfield gfield--type-textarea gfield--input-type-textarea gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_3_18'>Please enter your questions and a representative will contact you.<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_18' id='input_3_18' class='textarea large'     aria-required=\"true\" aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/li><li id=\"field_3_14\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gf_list_inline gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' >Is it urgent?<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_3_14'>\n\t\t\t<li class='gchoice gchoice_3_14_0'>\n\t\t\t\t<input name='input_14' type='radio' value='Yes'  id='choice_3_14_0'    \/>\n\t\t\t\t<label for='choice_3_14_0' id='label_3_14_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_3_14_1'>\n\t\t\t\t<input name='input_14' type='radio' value='No'  id='choice_3_14_1'    \/>\n\t\t\t\t<label for='choice_3_14_1' id='label_3_14_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_3_15\" class=\"gfield gfield--type-html gfield--input-type-html gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  >We invite you to contact us by phone so that we can assist you as quickly as possible at 1-866-455-3585.<\/li><li id=\"field_3_2\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gf_list_inline gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' >This request is for:<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_3_2'>\n\t\t\t<li class='gchoice gchoice_3_2_0'>\n\t\t\t\t<input name='input_2' type='radio' value='Garage Door'  id='choice_3_2_0'    \/>\n\t\t\t\t<label for='choice_3_2_0' id='label_3_2_0' class='gform-field-label gform-field-label--type-inline'>Garage Door<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_3_2_1'>\n\t\t\t\t<input name='input_2' type='radio' value='Electric operator (motor)'  id='choice_3_2_1'    \/>\n\t\t\t\t<label for='choice_3_2_1' id='label_3_2_1' class='gform-field-label gform-field-label--type-inline'>Electric operator (motor)<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_3_2_2'>\n\t\t\t\t<input name='input_2' type='radio' value='Others'  id='choice_3_2_2'    \/>\n\t\t\t\t<label for='choice_3_2_2' id='label_3_2_2' class='gform-field-label gform-field-label--type-inline'>Others<\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_3_4\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gf_list_inline gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' >Do you know what you are looking for? <span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_3_4'>\n\t\t\t<li class='gchoice gchoice_3_4_0'>\n\t\t\t\t<input name='input_4' type='radio' value='Yes'  id='choice_3_4_0'    \/>\n\t\t\t\t<label for='choice_3_4_0' id='label_3_4_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_3_4_1'>\n\t\t\t\t<input name='input_4' type='radio' value='No'  id='choice_3_4_1'    \/>\n\t\t\t\t<label for='choice_3_4_1' id='label_3_4_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_3_3\" class=\"gfield gfield--type-html gfield--input-type-html gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  >Please wait while you are being redirected...\n<script>\ndocument.addEventListener('DOMContentLoaded', function() {\ndocument.querySelector('#choice_3_4_0').addEventListener('click', function() {\n    location.href= \"https:\/\/indandre.garaga.com\/ca\/designcentre\/selection\";\n});\n});\n<\/script>\n<\/li><li id=\"field_3_17\" class=\"gfield gfield--type-textarea gfield--input-type-textarea gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_3_17'>Please describe your problem and we will contact you to schedule an appointment with one of our technicians. <span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_17' id='input_3_17' class='textarea medium'     aria-required=\"true\" aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/li><li id=\"field_3_8\" class=\"gfield gfield--type-html gfield--input-type-html gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  >Please enter your information and a representative will contact you.<\/li><li id=\"field_3_9\" class=\"gfield gfield--type-html gfield--input-type-html gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  >Please enter your information and a representative will get in touch to inform you about our products.<\/li><li id=\"field_3_10\" class=\"gfield gfield--type-html gfield--input-type-html gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  >Please enter your information and a representative will contact you to help you find the product(s) you are looking for. <\/li><li id=\"field_3_5\" class=\"gfield gfield--type-text gfield--input-type-text gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_3_5'>Full Name<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_5' id='input_3_5' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_3_6\" class=\"gfield gfield--type-phone gfield--input-type-phone gf_left_half gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_3_6'>Phone<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_phone'><input name='input_6' id='input_3_6' type='tel' value='' class='large'   aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_3_7\" class=\"gfield gfield--type-email gfield--input-type-email gf_right_half gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_3_7'>Email<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_7' id='input_3_7' type='email' value='' class='large'    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/li><li id=\"field_3_20\" class=\"gfield gfield--type-hidden gfield--input-type-hidden gfield--width-full gform_hidden field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class='ginput_container ginput_container_text'><input name='input_20' id='input_3_20' type='hidden' class='gform_hidden'  aria-invalid=\"false\" value='' \/><\/div><\/li><li id=\"field_3_11\" class=\"gfield gfield--type-checkbox gfield--type-choice gfield--input-type-checkbox gf_list_inline gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label gfield_label_before_complex' >Best way to reach you?<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_checkbox'><ul class='gfield_checkbox' id='input_3_11'><li class='gchoice gchoice_3_11_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_11.1' type='checkbox'  value='Phone'  id='choice_3_11_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_11_1' id='label_3_11_1' class='gform-field-label gform-field-label--type-inline'>Phone<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_11_2'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_11.2' type='checkbox'  value='Email'  id='choice_3_11_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_11_2' id='label_3_11_2' class='gform-field-label gform-field-label--type-inline'>Email<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_11_3'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_11.3' type='checkbox'  value='Any time'  id='choice_3_11_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_11_3' id='label_3_11_3' class='gform-field-label gform-field-label--type-inline'>Any time<\/label>\n\t\t\t\t\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_3_12\" class=\"gfield gfield--type-checkbox gfield--type-choice gfield--input-type-checkbox gf_list_inline gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label gfield_label_before_complex' >Best time to reach you? <span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_checkbox'><ul class='gfield_checkbox' id='input_3_12'><li class='gchoice gchoice_3_12_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_12.1' type='checkbox'  value='AM'  id='choice_3_12_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_12_1' id='label_3_12_1' class='gform-field-label gform-field-label--type-inline'>AM<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_12_2'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_12.2' type='checkbox'  value='PM'  id='choice_3_12_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_12_2' id='label_3_12_2' class='gform-field-label gform-field-label--type-inline'>PM<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_12_3'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_12.3' type='checkbox'  value='Select a time range'  id='choice_3_12_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_12_3' id='label_3_12_3' class='gform-field-label gform-field-label--type-inline'>Select a time range<\/label>\n\t\t\t\t\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_3_13\" class=\"gfield gfield--type-checkbox gfield--type-choice gfield--input-type-checkbox gf_list_inline gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label gfield_label_before_complex' >Check one or more boxes<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_checkbox'><ul class='gfield_checkbox' id='input_3_13'><li class='gchoice gchoice_3_13_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_13.1' type='checkbox'  value='7AM - 8AM'  id='choice_3_13_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_13_1' id='label_3_13_1' class='gform-field-label gform-field-label--type-inline'>7AM - 8AM<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_13_2'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_13.2' type='checkbox'  value='8AM - 9AM'  id='choice_3_13_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_13_2' id='label_3_13_2' class='gform-field-label gform-field-label--type-inline'>8AM - 9AM<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_13_3'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_13.3' type='checkbox'  value='9AM - 10AM'  id='choice_3_13_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_13_3' id='label_3_13_3' class='gform-field-label gform-field-label--type-inline'>9AM - 10AM<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_13_4'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_13.4' type='checkbox'  value='10AM - 11AM'  id='choice_3_13_4'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_13_4' id='label_3_13_4' class='gform-field-label gform-field-label--type-inline'>10AM - 11AM<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_13_5'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_13.5' type='checkbox'  value='11AM - 12AM'  id='choice_3_13_5'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_13_5' id='label_3_13_5' class='gform-field-label gform-field-label--type-inline'>11AM - 12AM<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_13_6'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_13.6' type='checkbox'  value='12AM-1PM'  id='choice_3_13_6'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_13_6' id='label_3_13_6' class='gform-field-label gform-field-label--type-inline'>12AM-1PM<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_13_7'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_13.7' type='checkbox'  value='1PM - 2PM'  id='choice_3_13_7'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_13_7' id='label_3_13_7' class='gform-field-label gform-field-label--type-inline'>1PM - 2PM<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_13_8'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_13.8' type='checkbox'  value='2PM - 3PM'  id='choice_3_13_8'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_13_8' id='label_3_13_8' class='gform-field-label gform-field-label--type-inline'>2PM - 3PM<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_13_9'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_13.9' type='checkbox'  value='3PM - 4PM'  id='choice_3_13_9'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_13_9' id='label_3_13_9' class='gform-field-label gform-field-label--type-inline'>3PM - 4PM<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_13_11'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_13.11' type='checkbox'  value='4PM - 5PM'  id='choice_3_13_11'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_13_11' id='label_3_13_11' class='gform-field-label gform-field-label--type-inline'>4PM - 5PM<\/label>\n\t\t\t\t\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_3_19\" class=\"gfield gfield--type-captcha gfield--input-type-captcha field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label screen-reader-text' for='input_3_19'><\/label><div id='input_3_19' class='ginput_container ginput_recaptcha' data-sitekey='6LdcFdwZAAAAADj5qS78FrLvpaI_AZTKsC86Lf1-'  data-theme='light' data-tabindex='-1' data-size='invisible' data-badge='bottomright'><\/div><\/li><\/ul><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_3' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Send'  \/> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_3' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_3' id='gform_theme_3' value='legacy' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_3' id='gform_style_settings_3' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_3' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='3' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='CAD' value='XStvV5NVOna+Sm+9RXKYM2ZrHemh3InXvMywoDe9\/0UJaHPh35JWYe+4VdtcaEWi0EQ01V0Cqw\/\/6od1PAC0zoQOl2+V4vgeMw41KBplZXfpNZQ=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_3' value='WyJbXSIsIjVjZDI5YjRkMTdiNGQyYjk0ZmQ0OGVkYTc3YmNmYzJjIl0=' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_3' id='gform_target_page_number_3' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_3' id='gform_source_page_number_3' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div><script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 3, 'https:\/\/www.portedegarageandre.com\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_3').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_3');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_3').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){form_content.find('form').css('opacity', 0);jQuery('#gform_wrapper_3').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_3').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_3').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_3').val();gformInitSpinner( 3, 'https:\/\/www.portedegarageandre.com\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [3, current_page]);window['gf_submitting_3'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_3').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [3]);window['gf_submitting_3'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_3').text());}else{jQuery('#gform_3').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"3\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_3\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_3\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_3\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 3, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} );\n<\/script>\n\n<p><\/p>\n<p><iframe style=\"border: 0;\" src=\"https:\/\/www.google.com\/maps\/embed?pb=!1m18!1m12!1m3!1d2802.7382179869146!2d-74.04926448444556!3d45.37427737909997!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x4cc94835db04ee43%3A0x6e17f8ea02d2641d!2sLes+Industries+Andr%C3%A9+inc.!5e0!3m2!1sen!2sca!4v1556307717160!5m2!1sen!2sca\" width=\"100%\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><\/iframe><\/p>\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Residential garage doors Residential garage door, commercial &amp; high quality door opener Designed and built for cold climates, les portes de garage [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"inline_featured_image":false,"footnotes":""},"class_list":["post-5098","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/www.portedegarageandre.com\/en\/wp-json\/wp\/v2\/pages\/5098","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.portedegarageandre.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.portedegarageandre.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.portedegarageandre.com\/en\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.portedegarageandre.com\/en\/wp-json\/wp\/v2\/comments?post=5098"}],"version-history":[{"count":22,"href":"https:\/\/www.portedegarageandre.com\/en\/wp-json\/wp\/v2\/pages\/5098\/revisions"}],"predecessor-version":[{"id":6836,"href":"https:\/\/www.portedegarageandre.com\/en\/wp-json\/wp\/v2\/pages\/5098\/revisions\/6836"}],"wp:attachment":[{"href":"https:\/\/www.portedegarageandre.com\/en\/wp-json\/wp\/v2\/media?parent=5098"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}