{"id":2774,"date":"2026-05-20T14:06:30","date_gmt":"2026-05-20T19:06:30","guid":{"rendered":"https:\/\/solusoft.com\/?page_id=2774"},"modified":"2026-05-22T16:11:52","modified_gmt":"2026-05-22T21:11:52","slug":"get-a-quote","status":"publish","type":"page","link":"https:\/\/solusoft.com\/en\/get-a-quote\/","title":{"rendered":"Get a Quote"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"2774\" class=\"elementor elementor-2774\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-bb2414a e-flex e-con-boxed e-con e-parent\" data-id=\"bb2414a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-caac1a2 e-con-full e-flex e-con e-child\" data-id=\"caac1a2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-461fc70 elementor-widget elementor-widget-heading\" data-id=\"461fc70\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Tell us what your company needs. <br>We'll handle the rest.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-60e3310 elementor-widget elementor-widget-heading\" data-id=\"60e3310\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Fill out the form below to get a proposal built for your business.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6148f94 e-con-full e-flex e-con e-child\" data-id=\"6148f94\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b4cdd70 elementor-widget elementor-widget-shortcode\" data-id=\"b4cdd70\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><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-theme gform-theme--foundation gform-theme--framework gform-theme--orbital' data-form-theme='orbital' data-form-index='0' id='gform_wrapper_2' style='display:none'><style>#gform_wrapper_2[data-form-index=\"0\"].gform-theme,[data-parent-form=\"2_0\"]{--gf-color-primary: #204ce5;--gf-color-primary-rgb: 32, 76, 229;--gf-color-primary-contrast: #fff;--gf-color-primary-contrast-rgb: 255, 255, 255;--gf-color-primary-darker: #001AB3;--gf-color-primary-lighter: #527EFF;--gf-color-secondary: #fff;--gf-color-secondary-rgb: 255, 255, 255;--gf-color-secondary-contrast: #112337;--gf-color-secondary-contrast-rgb: 17, 35, 55;--gf-color-secondary-darker: #F5F5F5;--gf-color-secondary-lighter: #FFFFFF;--gf-color-out-ctrl-light: rgba(17, 35, 55, 0.1);--gf-color-out-ctrl-light-rgb: 17, 35, 55;--gf-color-out-ctrl-light-darker: rgba(104, 110, 119, 0.35);--gf-color-out-ctrl-light-lighter: #F5F5F5;--gf-color-out-ctrl-dark: #585e6a;--gf-color-out-ctrl-dark-rgb: 88, 94, 106;--gf-color-out-ctrl-dark-darker: #112337;--gf-color-out-ctrl-dark-lighter: rgba(17, 35, 55, 0.65);--gf-color-in-ctrl: #fff;--gf-color-in-ctrl-rgb: 255, 255, 255;--gf-color-in-ctrl-contrast: #112337;--gf-color-in-ctrl-contrast-rgb: 17, 35, 55;--gf-color-in-ctrl-darker: #F5F5F5;--gf-color-in-ctrl-lighter: #FFFFFF;--gf-color-in-ctrl-primary: #204ce5;--gf-color-in-ctrl-primary-rgb: 32, 76, 229;--gf-color-in-ctrl-primary-contrast: #fff;--gf-color-in-ctrl-primary-contrast-rgb: 255, 255, 255;--gf-color-in-ctrl-primary-darker: #001AB3;--gf-color-in-ctrl-primary-lighter: #527EFF;--gf-color-in-ctrl-light: rgba(17, 35, 55, 0.1);--gf-color-in-ctrl-light-rgb: 17, 35, 55;--gf-color-in-ctrl-light-darker: rgba(104, 110, 119, 0.35);--gf-color-in-ctrl-light-lighter: #F5F5F5;--gf-color-in-ctrl-dark: #585e6a;--gf-color-in-ctrl-dark-rgb: 88, 94, 106;--gf-color-in-ctrl-dark-darker: #112337;--gf-color-in-ctrl-dark-lighter: rgba(17, 35, 55, 0.65);--gf-radius: 3px;--gf-font-size-secondary: 14px;--gf-font-size-tertiary: 13px;--gf-icon-ctrl-number: url(\"data:image\/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 0C4.26522 5.96046e-08 4.51957 0.105357 4.70711 0.292893L7.70711 3.29289C8.09763 3.68342 8.09763 4.31658 7.70711 4.70711C7.31658 5.09763 6.68342 5.09763 6.29289 4.70711L4 2.41421L1.70711 4.70711C1.31658 5.09763 0.683417 5.09763 0.292893 4.70711C-0.0976311 4.31658 -0.097631 3.68342 0.292893 3.29289L3.29289 0.292893C3.48043 0.105357 3.73478 0 4 0ZM0.292893 9.29289C0.683417 8.90237 1.31658 8.90237 1.70711 9.29289L4 11.5858L6.29289 9.29289C6.68342 8.90237 7.31658 8.90237 7.70711 9.29289C8.09763 9.68342 8.09763 10.3166 7.70711 10.7071L4.70711 13.7071C4.31658 14.0976 3.68342 14.0976 3.29289 13.7071L0.292893 10.7071C-0.0976311 10.3166 -0.0976311 9.68342 0.292893 9.29289Z' fill='rgba(17, 35, 55, 0.65)'\/%3E%3C\/svg%3E\");--gf-icon-ctrl-select: url(\"data:image\/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.292893 0.292893C0.683417 -0.097631 1.31658 -0.097631 1.70711 0.292893L5 3.58579L8.29289 0.292893C8.68342 -0.0976311 9.31658 -0.0976311 9.70711 0.292893C10.0976 0.683417 10.0976 1.31658 9.70711 1.70711L5.70711 5.70711C5.31658 6.09763 4.68342 6.09763 4.29289 5.70711L0.292893 1.70711C-0.0976311 1.31658 -0.0976311 0.683418 0.292893 0.292893Z' fill='rgba(17, 35, 55, 0.65)'\/%3E%3C\/svg%3E\");--gf-icon-ctrl-search: url(\"data:image\/svg+xml,%3Csvg width='640' height='640' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath d='M256 128c-70.692 0-128 57.308-128 128 0 70.691 57.308 128 128 128 70.691 0 128-57.309 128-128 0-70.692-57.309-128-128-128zM64 256c0-106.039 85.961-192 192-192s192 85.961 192 192c0 41.466-13.146 79.863-35.498 111.248l154.125 154.125c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0L367.248 412.502C335.862 434.854 297.467 448 256 448c-106.039 0-192-85.962-192-192z' fill='rgba(17, 35, 55, 0.65)'\/%3E%3C\/svg%3E\");--gf-label-space-y-secondary: var(--gf-label-space-y-md-secondary);--gf-ctrl-border-color: #686e77;--gf-ctrl-size: var(--gf-ctrl-size-md);--gf-ctrl-label-color-primary: #112337;--gf-ctrl-label-color-secondary: #112337;--gf-ctrl-choice-size: var(--gf-ctrl-choice-size-md);--gf-ctrl-checkbox-check-size: var(--gf-ctrl-checkbox-check-size-md);--gf-ctrl-radio-check-size: var(--gf-ctrl-radio-check-size-md);--gf-ctrl-btn-font-size: var(--gf-ctrl-btn-font-size-md);--gf-ctrl-btn-padding-x: var(--gf-ctrl-btn-padding-x-md);--gf-ctrl-btn-size: var(--gf-ctrl-btn-size-md);--gf-ctrl-btn-border-color-secondary: #686e77;--gf-ctrl-file-btn-bg-color-hover: #EBEBEB;--gf-field-img-choice-size: var(--gf-field-img-choice-size-md);--gf-field-img-choice-card-space: var(--gf-field-img-choice-card-space-md);--gf-field-img-choice-check-ind-size: var(--gf-field-img-choice-check-ind-size-md);--gf-field-img-choice-check-ind-icon-size: var(--gf-field-img-choice-check-ind-icon-size-md);--gf-field-pg-steps-number-color: rgba(17, 35, 55, 0.8);}<\/style><div id='gf_2' class='gform_anchor' tabindex='-1'><\/div>\n                        <div class='gform_heading'>\n                            <p class='gform_description'><\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data'  id='gform_2'  action='\/en\/wp-json\/wp\/v2\/pages\/2774#gf_2' data-formid='2' novalidate>\n                        <div class='gform-body gform_body'><div id='gform_page_2_1' class='gform_page ' data-js='page-field-id-0' >\n\t\t\t\t\t<div class='gform_page_fields'><div id='gform_fields_2' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_2_38\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><h3 style=\"text-align:center;\">Step 1:<\/h3>\n<p style=\"text-align:center;\">Company profile and contact<\/p><\/div><fieldset id=\"field_2_1\" class=\"gfield gfield--type-name gfield--input-type-name field_sublabel_hidden_label gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Name<\/legend><div class='ginput_complex ginput_container ginput_container--name no_prefix has_first_name no_middle_name has_last_name no_suffix gf_name_has_2 ginput_container_name gform-grid-row' id='input_2_1'>\n                            \n                            <span id='input_2_1_3_container' class='name_first gform-grid-col gform-grid-col--size-auto' >\n                                                    <input type='text' name='input_1.3' id='input_2_1_3' value=''   aria-required='false'   placeholder='John'  \/>\n                                                    <label for='input_2_1_3' class='gform-field-label gform-field-label--type-sub hidden_sub_label screen-reader-text'>First<\/label>\n                                                <\/span>\n                            \n                            <span id='input_2_1_6_container' class='name_last gform-grid-col gform-grid-col--size-auto' >\n                                                    <input type='text' name='input_1.6' id='input_2_1_6' value=''   aria-required='false'   placeholder='Doe'  \/>\n                                                    <label for='input_2_1_6' class='gform-field-label gform-field-label--type-sub hidden_sub_label screen-reader-text'>Last<\/label>\n                                                <\/span>\n                            \n                        <\/div><\/fieldset><div id=\"field_2_3\" class=\"gfield gfield--type-website gfield--input-type-website gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_2_3'>Website<\/label><div class='ginput_container ginput_container_website'>\n                    <input name='input_3' id='input_2_3' type='url' value='' class='large'    placeholder='https:\/\/'  aria-invalid=\"false\" \/>\n                <\/div><\/div><div id=\"field_2_46\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_2_46'>Company<\/label><div class='ginput_container ginput_container_text'><input name='input_46' id='input_2_46' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_2_4\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_2_4'>Country<\/label><div class='ginput_container ginput_container_text'><input name='input_4' id='input_2_4' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_2_45\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_2_45'>Industry<\/label><div class='ginput_container ginput_container_select'><select name='input_45' id='input_2_45' class='large gfield_select'     aria-invalid=\"false\" ><option value='Airlines' >Airlines<\/option><option value='Architecture' >Architecture<\/option><option value='Automotive' >Automotive<\/option><option value='Banking' >Banking<\/option><option value='Call Centers' >Call Centers<\/option><option value='Casinos' >Casinos<\/option><option value='Communications' >Communications<\/option><option value='Construction' >Construction<\/option><option value='Cooperatives' >Cooperatives<\/option><option value='Distributors' >Distributors<\/option><option value='Education' >Education<\/option><option value='Energy' >Energy<\/option><option value='Financial Institutions' >Financial Institutions<\/option><option value='Foundations' >Foundations<\/option><option value='Gas' >Gas<\/option><option value='Government' >Government<\/option><option value='Hospitality \/ Clinics' >Hospitality \/ Clinics<\/option><option value='Hospitality' >Hospitality<\/option><option value='Industrial' >Industrial<\/option><option value='Insurance Companies' >Insurance Companies<\/option><option value='Lawyers' >Lawyers<\/option><option value='Manufacturing' >Manufacturing<\/option><option value='Maritime Transport' >Maritime Transport<\/option><option value='Medical' >Medical<\/option><option value='NGOs' >NGOs<\/option><option value='Pharmaceuticals' >Pharmaceuticals<\/option><option value='Religious Organizations' >Religious Organizations<\/option><option value='Real Estate' >Real Estate<\/option><option value='Restaurants' >Restaurants<\/option><option value='Retail' >Retail<\/option><option value='Supermarkets' >Supermarkets<\/option><option value='Technology' >Technology<\/option><option value='Telcom\/Telco' >Telcom\/Telco<\/option><\/select><\/div><\/div><div id=\"field_2_6\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_2_6'>Company Size<\/label><div class='ginput_container ginput_container_select'><select name='input_6' id='input_2_6' class='large gfield_select'     aria-invalid=\"false\" ><option value='' selected='selected'>Select option<\/option><option value='1-10' >1-10<\/option><option value='11-50' >11-50<\/option><option value='51-200' >51-200<\/option><option value='201-500' >201-500<\/option><option value='501-1,000' >501-1,000<\/option><option value='1,001-5,000' >1,001-5,000<\/option><option value='5,000+ \/ 10,000+' >5,000+ \/ 10,000+<\/option><\/select><\/div><\/div><div id=\"field_2_7\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_2_7'>Position<\/label><div class='ginput_container ginput_container_select'><select name='input_7' id='input_2_7' class='large gfield_select'     aria-invalid=\"false\" ><option value='' >Select Option<\/option><option value='CTO' >CTO<\/option><option value='DBA' >DBA<\/option><option value='CIO' >CIO<\/option><option value='CFO' >CFO<\/option><option value='CEO' >CEO<\/option><option value='Other' >Other<\/option><\/select><\/div><\/div><div id=\"field_2_8\" class=\"gfield gfield--type-email gfield--input-type-email gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_2_8'>Corporate Email<\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_8' id='input_2_8' type='email' value='' class='large'     aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_2_9\" class=\"gfield gfield--type-phone gfield--input-type-phone gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_2_9'>Phone<\/label><div class='ginput_container ginput_container_phone'><input name='input_9' id='input_2_9' type='tel' value='' class='large'    aria-invalid=\"false\"   \/><\/div><\/div><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                         <input type='button' id='gform_next_button_2_10' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' value='Continue'  \/> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_2_2' class='gform_page' data-js='page-field-id-10' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_2_2' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_2_39\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><h3 style=\"text-align:center;\">Step 2:<\/h3>\n<p style=\"text-align:center;\">Priorities and interests<\/p><\/div><div id=\"field_2_13\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><p style=\"text-align:center;font-weight:bold;margin-bottom: 0;\">Which area is most critical for your\ncompany right now?<\/p>\n<p style=\"text-align:center;margin-bottom: 0;\">(select all that apply)<\/p> <\/div><fieldset id=\"field_2_11\" class=\"gfield gfield--type-multi_choice gfield--type-choice gfield--input-type-checkbox gfield--width-full field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Which area is most critical<\/legend><div class='ginput_container ginput_container_checkbox'><div class='gfield_checkbox ' id='input_2_11'><div class='gchoice gchoice_2_11_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_11.1' type='checkbox'  value='IT infrasestructure monitoring and management'  id='choice_2_11_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_2_11_1' id='label_2_11_1' class='gform-field-label gform-field-label--type-inline'>IT infrasestructure monitoring and management<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_2_11_2'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_11.2' type='checkbox'  value='Data security and regulatory compliance'  id='choice_2_11_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_2_11_2' id='label_2_11_2' class='gform-field-label gform-field-label--type-inline'>Data security and regulatory compliance<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_2_11_3'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_11.3' type='checkbox'  value='Cloud migration and management'  id='choice_2_11_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_2_11_3' id='label_2_11_3' class='gform-field-label gform-field-label--type-inline'>Cloud migration and management<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_2_11_4'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_11.4' type='checkbox'  value='Process automation'  id='choice_2_11_4'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_2_11_4' id='label_2_11_4' class='gform-field-label gform-field-label--type-inline'>Process automation<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_2_11_5'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_11.5' type='checkbox'  value='Advance analytics \/ data visualization'  id='choice_2_11_5'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_2_11_5' id='label_2_11_5' class='gform-field-label gform-field-label--type-inline'>Advance analytics \/ data visualization<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_2_11_6'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_11.6' type='checkbox'  value='Other'  id='choice_2_11_6'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_2_11_6' id='label_2_11_6' class='gform-field-label gform-field-label--type-inline'>Other<\/label>\n\t\t\t\t\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_2_14\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><p style=\"text-align:center;font-weight:bold;margin-bottom: 0;\">What is the main challenge they face today?<\/p> <\/div><fieldset id=\"field_2_15\" class=\"gfield gfield--type-multi_choice gfield--type-choice gfield--input-type-radio gfield--width-full field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Main challenge<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_2_15'>\n\t\t\t<div class='gchoice gchoice_2_15_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_15' type='radio' value='Downtime'  id='choice_2_15_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_15_0' id='label_2_15_0' class='gform-field-label gform-field-label--type-inline'>Downtime<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_2_15_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_15' type='radio' value='Compliance risks'  id='choice_2_15_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_15_1' id='label_2_15_1' class='gform-field-label gform-field-label--type-inline'>Compliance risks<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_2_15_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_15' type='radio' value='Lack of visibility or control'  id='choice_2_15_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_15_2' id='label_2_15_2' class='gform-field-label gform-field-label--type-inline'>Lack of visibility or control<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_2_15_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_15' type='radio' value='High costs (infrastructure \/ licenses)'  id='choice_2_15_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_15_3' id='label_2_15_3' class='gform-field-label gform-field-label--type-inline'>High costs (infrastructure \/ licenses)<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_2_15_4'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_15' type='radio' value='Slow response to incidents'  id='choice_2_15_4' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_15_4' id='label_2_15_4' class='gform-field-label gform-field-label--type-inline'>Slow response to incidents<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_2_15_5'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_15' type='radio' value='Lack of specialized personnel'  id='choice_2_15_5' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_15_5' id='label_2_15_5' class='gform-field-label gform-field-label--type-inline'>Lack of specialized personnel<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_2_15_6'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_15' type='radio' value='Other'  id='choice_2_15_6' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_15_6' id='label_2_15_6' class='gform-field-label gform-field-label--type-inline'>Other<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_2_42\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_2_42'>Main challenge (Other)<\/label><div class='ginput_container ginput_container_text'><input name='input_42' id='input_2_42' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_2_36\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><p style=\"text-align:center;font-weight:bold;margin-bottom: 0;\">Solusoft services of interest<\/p>\n<p style=\"text-align:center;margin-bottom: 0;\">(you can choose several)<\/p> <\/div><fieldset id=\"field_2_37\" class=\"gfield gfield--type-multi_choice gfield--type-choice gfield--input-type-checkbox gfield--width-full field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Which area is most critical<\/legend><div class='ginput_container ginput_container_checkbox'><div class='gfield_checkbox ' id='input_2_37'><div class='gchoice gchoice_2_37_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_37.1' type='checkbox'  value='MAINTENANCE (Infrastructure monitoring and management)'  id='choice_2_37_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_2_37_1' id='label_2_37_1' class='gform-field-label gform-field-label--type-inline'>MAINTENANCE (Infrastructure monitoring and management)<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_2_37_2'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_37.2' type='checkbox'  value='CONTINUITY (Contigencies, DRP,\u00a0and High Availability)'  id='choice_2_37_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_2_37_2' id='label_2_37_2' class='gform-field-label gform-field-label--type-inline'>CONTINUITY (Contigencies, DRP,\u00a0and High Availability)<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_2_37_3'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_37.3' type='checkbox'  value='MODERNIZATION(upgrades, go to cloud, fin-ops, automation)'  id='choice_2_37_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_2_37_3' id='label_2_37_3' class='gform-field-label gform-field-label--type-inline'>MODERNIZATION(upgrades, go to cloud, fin-ops, automation)<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_2_37_4'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_37.4' type='checkbox'  value='SECURITY (Governance, Encryption and Remediation)'  id='choice_2_37_4'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_2_37_4' id='label_2_37_4' class='gform-field-label gform-field-label--type-inline'>SECURITY (Governance, Encryption and Remediation)<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_2_37_5'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_37.5' type='checkbox'  value='VISIBILITY (Observability, AI and Analytics'  id='choice_2_37_5'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_2_37_5' id='label_2_37_5' class='gform-field-label gform-field-label--type-inline'>VISIBILITY (Observability, AI and Analytics<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_2_37_6'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_37.6' type='checkbox'  value='Personalized consultation or diagnosis'  id='choice_2_37_6'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_2_37_6' id='label_2_37_6' class='gform-field-label gform-field-label--type-inline'>Personalized consultation or diagnosis<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_2_37_7'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_37.7' type='checkbox'  value='I&#039;m not sure \/ I want general information'  id='choice_2_37_7'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_2_37_7' id='label_2_37_7' class='gform-field-label gform-field-label--type-inline'>I'm not sure \/ I want general information<\/label>\n\t\t\t\t\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_2_34\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><p style=\"text-align:center;font-weight:bold;margin-bottom: 0;\">Implementation horizon<\/p> <\/div><fieldset id=\"field_2_35\" class=\"gfield gfield--type-multi_choice gfield--type-choice gfield--input-type-radio gfield--width-full field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Implementation horizon<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_2_35'>\n\t\t\t<div class='gchoice gchoice_2_35_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_35' type='radio' value='Less than 3 months'  id='choice_2_35_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_35_0' id='label_2_35_0' class='gform-field-label gform-field-label--type-inline'>Less than 3 months<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_2_35_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_35' type='radio' value='3\u20136 months'  id='choice_2_35_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_35_1' id='label_2_35_1' class='gform-field-label gform-field-label--type-inline'>3\u20136 months<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_2_35_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_35' type='radio' value='More than 6 months'  id='choice_2_35_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_35_2' id='label_2_35_2' class='gform-field-label gform-field-label--type-inline'>More than 6 months<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_2_35_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_35' type='radio' value='Exploration only'  id='choice_2_35_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_35_3' id='label_2_35_3' class='gform-field-label gform-field-label--type-inline'>Exploration only<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <input type='button' id='gform_previous_button_2_33' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' value='Back'  \/> <input type='button' id='gform_next_button_2_33' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' value='Continue'  \/> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_2_3' class='gform_page' data-js='page-field-id-33' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_2_3' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_2_40\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><h3 style=\"text-align:center;\">Step 3:<\/h3>\n<p style=\"text-align:center;\">Technological environment and decision<\/p><\/div><div id=\"field_2_29\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><p style=\"text-align:center;font-weight:bold;margin-bottom: 0;\">Where do your critical systems reside?<\/p>\n<p style=\"text-align:center;margin-bottom: 0;\">(select all that apply)<\/p> <\/div><fieldset id=\"field_2_30\" class=\"gfield gfield--type-multi_choice gfield--type-choice gfield--input-type-checkbox gfield--width-full field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Critical systems<\/legend><div class='ginput_container ginput_container_checkbox'><div class='gfield_checkbox ' id='input_2_30'><div class='gchoice gchoice_2_30_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_30.1' type='checkbox'  value='On-premise'  id='choice_2_30_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_2_30_1' id='label_2_30_1' class='gform-field-label gform-field-label--type-inline'>On-premise<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_2_30_2'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_30.2' type='checkbox'  value='Public cloud (AWS, Azure, Oracle, etc.)'  id='choice_2_30_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_2_30_2' id='label_2_30_2' class='gform-field-label gform-field-label--type-inline'>Public cloud (AWS, Azure, Oracle, etc.)<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_2_30_3'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_30.3' type='checkbox'  value='Private cloud'  id='choice_2_30_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_2_30_3' id='label_2_30_3' class='gform-field-label gform-field-label--type-inline'>Private cloud<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_2_30_4'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_30.4' type='checkbox'  value='Hybrid or multicloud'  id='choice_2_30_4'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_2_30_4' id='label_2_30_4' class='gform-field-label gform-field-label--type-inline'>Hybrid or multicloud<\/label>\n\t\t\t\t\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_2_31\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><p style=\"text-align:center;font-weight:bold;margin-bottom: 0;\">Technologies and platforms that these\nsystems primarily use<\/p> <\/div><fieldset id=\"field_2_32\" class=\"gfield gfield--type-multi_choice gfield--type-choice gfield--input-type-radio gfield--width-full field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Technologies and platforms<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_2_32'>\n\t\t\t<div class='gchoice gchoice_2_32_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_32' type='radio' value='SQL Server'  id='choice_2_32_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_32_0' id='label_2_32_0' class='gform-field-label gform-field-label--type-inline'>SQL Server<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_2_32_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_32' type='radio' value='Oracle'  id='choice_2_32_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_32_1' id='label_2_32_1' class='gform-field-label gform-field-label--type-inline'>Oracle<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_2_32_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_32' type='radio' value='MongoDB'  id='choice_2_32_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_32_2' id='label_2_32_2' class='gform-field-label gform-field-label--type-inline'>MongoDB<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_2_32_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_32' type='radio' value='MySQL\/MariaDB'  id='choice_2_32_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_32_3' id='label_2_32_3' class='gform-field-label gform-field-label--type-inline'>MySQL\/MariaDB<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_2_32_4'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_32' type='radio' value='AWS'  id='choice_2_32_4' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_32_4' id='label_2_32_4' class='gform-field-label gform-field-label--type-inline'>AWS<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_2_32_5'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_32' type='radio' value='Azure'  id='choice_2_32_5' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_32_5' id='label_2_32_5' class='gform-field-label gform-field-label--type-inline'>Azure<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_2_32_6'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_32' type='radio' value='Oracle Cloud'  id='choice_2_32_6' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_32_6' id='label_2_32_6' class='gform-field-label gform-field-label--type-inline'>Oracle Cloud<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_2_32_7'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_32' type='radio' value='Other'  id='choice_2_32_7' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_32_7' id='label_2_32_7' class='gform-field-label gform-field-label--type-inline'>Other<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_2_16\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><p style=\"text-align:center;font-weight:bold;margin-bottom: 0;\">What level of managed services do they offer?<\/p> <\/div><fieldset id=\"field_2_17\" class=\"gfield gfield--type-multi_choice gfield--type-choice gfield--input-type-radio gfield--width-full field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Level of managed services<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_2_17'>\n\t\t\t<div class='gchoice gchoice_2_17_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_17' type='radio' value='Fully external'  id='choice_2_17_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_17_0' id='label_2_17_0' class='gform-field-label gform-field-label--type-inline'>Fully external<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_2_17_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_17' type='radio' value='Partially external'  id='choice_2_17_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_17_1' id='label_2_17_1' class='gform-field-label gform-field-label--type-inline'>Partially external<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_2_17_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_17' type='radio' value='100% internal'  id='choice_2_17_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_17_2' id='label_2_17_2' class='gform-field-label gform-field-label--type-inline'>100% internal<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_2_18\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><p style=\"text-align:center;font-weight:bold;margin-bottom: 0;\">Do these technologies have centralized\nreal-time monitoring\/alerts?<\/p> <\/div><fieldset id=\"field_2_19\" class=\"gfield gfield--type-multi_choice gfield--type-choice gfield--input-type-radio gfield--width-full field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Centralized real-time monitoring\/alerts<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_2_19'>\n\t\t\t<div class='gchoice gchoice_2_19_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_19' type='radio' value='Yes'  id='choice_2_19_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_19_0' id='label_2_19_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_2_19_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_19' type='radio' value='Partially'  id='choice_2_19_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_19_1' id='label_2_19_1' class='gform-field-label gform-field-label--type-inline'>Partially<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_2_19_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_19' type='radio' value='No'  id='choice_2_19_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_19_2' id='label_2_19_2' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_2_20\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><p style=\"text-align:center;font-weight:bold;margin-bottom: 0;\">Are regular security audits and\npatches performed regularly?<\/p> <\/div><fieldset id=\"field_2_21\" class=\"gfield gfield--type-multi_choice gfield--type-choice gfield--input-type-radio gfield--width-full field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Security audits and patches<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_2_21'>\n\t\t\t<div class='gchoice gchoice_2_21_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_21' type='radio' value='Yes'  id='choice_2_21_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_21_0' id='label_2_21_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_2_21_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_21' type='radio' value='No'  id='choice_2_21_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_21_1' id='label_2_21_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <input type='button' id='gform_previous_button_2_24' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' value='Back'  \/> <input type='button' id='gform_next_button_2_24' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' value='Continue'  \/> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_2_4' class='gform_page' data-js='page-field-id-24' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_2_4' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_2_41\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><h3 style=\"text-align:center;\">Step 4:<\/h3>\n<p style=\"text-align:center;\">Preferences and next step<\/p><\/div><div id=\"field_2_25\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><p style=\"text-align:center;font-weight:bold;margin-bottom: 0;\">How would you like to move forward?<\/p> <\/div><fieldset id=\"field_2_26\" class=\"gfield gfield--type-multi_choice gfield--type-choice gfield--input-type-radio gfield--width-full field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Security audits and patches<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_2_26'>\n\t\t\t<div class='gchoice gchoice_2_26_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_26' type='radio' value='Schedule a consultation call with a specialist'  id='choice_2_26_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_26_0' id='label_2_26_0' class='gform-field-label gform-field-label--type-inline'>Schedule a consultation call with a specialist<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_2_26_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_26' type='radio' value='I prefer to be contacted via email'  id='choice_2_26_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_2_26_1' id='label_2_26_1' class='gform-field-label gform-field-label--type-inline'>I prefer to be contacted via email<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_2_27\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><p style=\"text-align:center;font-weight:bold;margin-bottom: 0;\">Comments, urgent needs,\nor additional requirements<\/p> <\/div><div id=\"field_2_28\" class=\"gfield gfield--type-textarea gfield--input-type-textarea gfield--width-full field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_2_28'>Comments<\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_28' id='input_2_28' class='textarea large'      aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/div><\/div><\/div>\n        <div class='gform-page-footer gform_page_footer top_label'><input type='submit' id='gform_previous_button_2' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' value='Previous'  \/> <input type='submit' id='gform_submit_button_2' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Finish'  \/> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_2' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_2' id='gform_theme_2' value='orbital' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_2' id='gform_style_settings_2' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_2' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='2' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='USD' value='BVA1CeN5dd0j29GotZjsW\/zQDfH55s7gOpryMPIew5cN81JJ7rcIbLI473sG+jKL2Q+hj7OPXt+VS0ILoXnG+MeT0dOZeZiBFu1a5xSyDy6yCFU=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_2' value='WyJ7XCI0NVwiOltcIjg4OTllNjRmYTQxNzU4YjhkYWY2YTNjNDYzMjQwMGQ1XCIsXCI3ODJiNzZhYjVhNDA1MjU4OWFlM2UxNjI0ZjlhZTVmM1wiLFwiN2U0OWE2NjJiMzllY2IzODI2YWJiNGRmMGMzNjkwOWVcIixcImQ1ZTk5ZDdiMzQ3MWJjMTJmZTk0YWI5OGE0YzM5MDFmXCIsXCIyODkxOGEwNmUzMTg5MmI2ZmE1ZGViOWJhMzM4MDM4N1wiLFwiZDE5MThiOTE4MWM2YWNkNzFjYzVlZGJkZDRhMTVlNDlcIixcIjAyMjljZjdhZTE1MWY3MTg1YTFjYWYzZjAzODk5NjI5XCIsXCIxNGJjYWUwODAzNDNjZGM2MDkwYjQ0NjBiNTk0ZWNiNlwiLFwiNjg4M2U4NzI3ZGVkNjcwNTlkMjUwODQ3ZGNmNTU3ZTNcIixcIjYwZWU4NWFmNDkxMzMzZGNhZTA1OGFjZWVjMWEzMGNiXCIsXCI1ZDAyNTg4OTVhM2NmMmEyY2U4MzE4ZWFjYTRhYjhiN1wiLFwiNmI2YzM1MzljYjJmZDBmMzMzMTdiMDcwMmNhOWMxM2FcIixcImQ2YTZiNmZlMDM2OGIwNDE1N2FlNmRkYTNmNzFmMjg4XCIsXCI3NTUyYjAxZjhhOWFkZDhjNDA2NDQ3MWMzMTJiMTIwZFwiLFwiNTVkNDcyN2FlYmE2Mzk3ZWM3ODM3M2NhY2Y1NmM2YTVcIixcImM5MDAyODM5ZTMyYjZjYzY2MmNiYTFiM2FmNzQ0ZjViXCIsXCIzOTI2NTVlNzQxNTJhYTE3OGQyOTFjMjgxMTA4NzVkNVwiLFwiODRjYmQxODc1YTMxMzhhOWY2NTY2MzdjMjQwNmZhNDFcIixcImFkNGZlNDQzODkyNGQxMGVlMTAzZTY0NWY3OGFkOTgwXCIsXCI2NzlkZDJjNjg4OTc3MzYyYWQ5OTIyOGU2YmVjNWM5YlwiLFwiNGJjZTk2MDNiYjc3ZTdkYTM5NjNlNThlYTcyYWVlNjZcIixcImIwMTkzMTI3MjM3ZjliMGZlOTZhNGU3ZDI5NGUyNmFiXCIsXCJlMzE4OWY2OTNiOTYxZTQxNTlkYTYzNmU2N2M3OTVkZVwiLFwiM2YzOWEzNTlhMTQ0Y2Q1NTdhODFkOGYxMjI0MGQ3YzRcIixcIjc0NGUzNWUzODViYTY1Zjg3ZjRiMTU3ODI1OWE3ZDQ5XCIsXCIyOTZkNDU1ZmQwNTdlYjRmYzkxYTIyMjAwZWIxYjMyNFwiLFwiOTcwYTMwMzY1NjE0ZWQ3MGQ5MTkxMzMyZDc2NmI4ZjVcIixcIjEzMDhhZTQzODdlMTRlY2Y3ZWQ0YTg4NmM5MDE5YmRlXCIsXCJlNDM0MjhkMWE4ZTM5YmJiY2M2NTkxMjdkZDY5MDkwYlwiLFwiZTMyM2RhZWE0NWY0OGZkMjJjMTU4OWRhYzdkYWMyMGJcIixcIjI2NmJmNzQ1MjkzNmY5MTBmMmY4ZWI3ZWQ1MzRiNzkwXCIsXCI5NzU4ODgzOWY2OWY0ZTA1YTNkYWU3M2RhYmVlMjkzZFwiLFwiZWQ3ZGJhZGNiMzZjZmQwN2Q2MmVkYTM2NmMwMDVhYjJcIl0sXCI2XCI6W1wiMzQ3NmQzZTMzN2Y3NzY1NWJjNzAxMTEzNjgxNTVmMDRcIixcImZkNWZkN2NjNmYxZWM2MWRhYjFlZWYxZThjYTcyMTIxXCIsXCI1ZGRjZjFhOTNjMjlkM2U0YTM1NzllMDVlYzI3NjAxNlwiLFwiZDA0MWFkZTJjODA3YTZlMWFhMDYzZmQwMWQ4M2EyMjhcIixcIjFhMGIxZTc1ZTE5NzA2ZjU0YmI2NDQ2YmM5NzRhYzlmXCIsXCIwNTQ5MmMyNzE3NGNmZjZhYWE1OGY0MDc5MzI3MTFiZVwiLFwiZDBjNzlmYzNjNWFmMTdmMDY4Y2FhMGUxNTdhYmRjNzNcIixcImEwOTYyZThiMjQ0OTBlNjk3MDc5YmEyYWY4MGRhMWVjXCJdLFwiN1wiOltcIjM0NzZkM2UzMzdmNzc2NTViYzcwMTExMzY4MTU1ZjA0XCIsXCI4ODBmYjAzY2FhMGQzM2M5MTcxNjUyYmIyZWZhMzU1NlwiLFwiY2I2MDUzYWI5ZTQxYjQ2MmRkZjE0NWE4ODk4NTU2OTJcIixcImE2NzVjYTk1ZDA1YzJmNmI0ZGE3NjY0NGJmNDkxYTg5XCIsXCIxZmM0NTg2MDIzN2ZiZWIxMTE3MmNiYjljMDhjOTcxM1wiLFwiMGUyYWIxM2M0MGY4ZDI3ODk3MjY4NmM3MDBjOGFiMDVcIixcIjliNTI3MGI4MjhjYjM0YTBjMzNkZmU3MmZmN2Y3ZThkXCJdLFwiMTEuMVwiOlwiOWUwNTk0NGVjYTM1NDdlYjVmMGNlMzhjMWZlZmQ0ZGNcIixcIjExLjJcIjpcIjQ3YjA0ODJmNzI1YTg1ZTU0NGFhZTA5NzdlZjAxYzAxXCIsXCIxMS4zXCI6XCIzN2E0ZTI5ZTdhYTA0MjEzMzA0ZWUyNTAzZmFmMjdmOFwiLFwiMTEuNFwiOlwiZGI5OGM0MmUyMjMyYWViYjE1NDI2ZTZkMmJjMzY5YzdcIixcIjExLjVcIjpcIjQ4ZDU4NzNhZmZjODYwODhmNDdjNjQ4NmIwYjZmOTAyXCIsXCIxMS42XCI6XCI5YjUyNzBiODI4Y2IzNGEwYzMzZGZlNzJmZjdmN2U4ZFwiLFwiMTVcIjpbXCIzYmEwZmIyOGE3ZGNkMjM4NjEyNzYyYzJmZGUxNjVmN1wiLFwiNmNkMDM3ZDUzZTJiZWEyNjE2ZjQ5N2FhMThlMzMxYWFcIixcIjkyMTljNjk4NjYzYzg5YWY3ODk0ODJiOGUwY2U4YjA4XCIsXCI5OWJhYmJmNzZjNjUyMjlkM2EyZGE0MzFiNDBmMzdjZVwiLFwiMDI5NmNiYzY0MWI0YmJjOWRhYTJhNDc3YmE5ZTdmZmJcIixcIjE5YTFmYjg5MzljMTY5YTRmOWQ1ZDQ5NTYzZmNiZmJlXCIsXCI5YjUyNzBiODI4Y2IzNGEwYzMzZGZlNzJmZjdmN2U4ZFwiXSxcIjM3LjFcIjpcIjhhZDQ3YjM4MWJmYmViZWI4Y2IzODcyYTU3NjgyNWNiXCIsXCIzNy4yXCI6XCI3NTZlYzQyNDFiNmFkZTZhMTMwOGJjYjJhMGRmNDQ1NFwiLFwiMzcuM1wiOlwiYTJiNmU0ZmJlNjE1ODNmY2ExYzI2NzQzYmZmNjI0NDBcIixcIjM3LjRcIjpcIjQxNDE5MTUxOWRiOTk3M2ExMmUxMGE0MDM2MzRiYzIyXCIsXCIzNy41XCI6XCJhZDNiMzY3NmJkNzZmN2FjZDczZjMxYjkwMmM0NWYxMFwiLFwiMzcuNlwiOlwiNWY3NzdkMTU0MDNmZTdiOGJiYjY2NmVkNzE0Y2U3MmVcIixcIjM3LjdcIjpcIjFkOGZjMDgyNTA4OGQ5M2YwMzI1ODFkMzc5ZDk2YTM3XCIsXCIzNVwiOltcIjI4MWU4M2IwOTU1MTJhYjg1ZjcxMmQ0NmVlOWIzMzUwXCIsXCIxZmI2NmY2NmRhMjkzNWJhY2Q5MjA0N2M1MDJmYmU4YlwiLFwiY2I0OWI1NWY2YmQ5ZmVkMmZhN2ZiOTYzYjVlNDU4NDlcIixcIjMwMzM4NDU4ZGQ2NzdjZjRhM2U5ZjA3MTI1OWY4NDQ4XCJdLFwiMzAuMVwiOlwiMmNhOWM3YzY1NzUzN2M2ZjRhNWVlNTU4NjUyNmQxMWZcIixcIjMwLjJcIjpcImY4OWQyNDM0OTcwMTMxMTEzN2JlODg0YWIyMDRhMWZjXCIsXCIzMC4zXCI6XCIwMGY4Yzc2MmM1MjU3YTk3MjY4NmJkMDk4NzU4YWU1ZVwiLFwiMzAuNFwiOlwiY2U4OGQzYjMyNjg2MmNlMWU5MjNiODQ4ZmU2MjNiYWZcIixcIjMyXCI6W1wiNTJkNTQ2ZTgzZDgwYzgxZGZkYzdhMzJmOTdjMWYwY2RcIixcIjc5NjU0YThjMzI1NzMzOTQ4ZmQ4YWM5YmM2ZGU1ZTdkXCIsXCJkYWE1ZjFmYzZmN2UxNzRlZTE5NDk0YzIwZWU0Mzk1NFwiLFwiOWE2ZWNjOGFkODZjZmIxNTMxMTFjYTUyZDlhZjE4ZTVcIixcIjk0YjgwYmYyMmVlNGUxMTQ1OWJjNTQ2MGZkOWNhMzA4XCIsXCJiNjJlNzdkYWJlZjA4NzJiZWE3MmQ5NDczNTk5MzA0ZVwiLFwiOTRjYTA2MzA1NzBlYjMzMTI1OWFiNTMzOGRiZWM1ZmZcIixcIjliNTI3MGI4MjhjYjM0YTBjMzNkZmU3MmZmN2Y3ZThkXCJdLFwiMTdcIjpbXCJlNDJhYmE4ODQyOWIyNDhlNTBhMGRhYTZlYWI5NTI5NFwiLFwiYzcxMDkzNTQ0ZGM1OGFhNzM1MTZjMzhmMDVhODRmNThcIixcImZlYmViMTdiNmI5OWZjMzJiMjg2ZTBlYTIzYjI5MmZkXCJdLFwiMTlcIjpbXCI3YWVjMzg1ZDJhODk3N2E0YWEzMDU5ODY3NzYxNmQyYVwiLFwiZTk4ZjQ2MGQ2MTk2NzliZDU4ZTY2NzA1NzY2ZTBmYmJcIixcImJhYzQ3NGM1N2Y5YzJkYzY4MmY2NGUzZGQ2OTExNGM3XCJdLFwiMjFcIjpbXCI3YWVjMzg1ZDJhODk3N2E0YWEzMDU5ODY3NzYxNmQyYVwiLFwiYmFjNDc0YzU3ZjljMmRjNjgyZjY0ZTNkZDY5MTE0YzdcIl0sXCIyNlwiOltcIjRiODEwY2E3NDNhYTU2YTJkYjc4OGMwZmRhMGI3NTMwXCIsXCJjYzQ5MjY2YmRiOTFmNDcwYTc4YmRkOTNhMjc0YTc4MlwiXX0iLCI2ZGNmZWYyZjJlNzlkYWM5OWUzYjhhNDk0N2UxNzNmNSJd' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_2' id='gform_target_page_number_2' value='2' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_2' id='gform_source_page_number_2' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n             <\/div><\/div>\n                        <\/form>\n                        <\/div><script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 2, 'https:\/\/solusoft.com\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', false );jQuery('#gform_ajax_frame_2').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_2');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_2').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_2').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_2').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_2').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/ jQuery(document).scrollTop(jQuery('#gform_wrapper_2').offset().top - mt); }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_2').val();gformInitSpinner( 2, 'https:\/\/solusoft.com\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', false );jQuery(document).trigger('gform_page_loaded', [2, current_page]);window['gf_submitting_2'] = 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_2').replaceWith(confirmation_content);jQuery(document).scrollTop(jQuery('#gf_2').offset().top - mt);jQuery(document).trigger('gform_confirmation_loaded', [2]);window['gf_submitting_2'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_2').text());}else{jQuery('#gform_2').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"2\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_2\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_2\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_2\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 2, 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<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Tell us what your company needs. We&#8217;ll handle the rest. Fill out the form below to get a proposal built for your business.<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-2774","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Get a Quote - Solusoft | Soluciones Tecnol\u00f3gicas, Seguridad y Gesti\u00f3n de Datos<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/solusoft.com\/en\/get-a-quote\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Get a Quote - Solusoft | Soluciones Tecnol\u00f3gicas, Seguridad y Gesti\u00f3n de Datos\" \/>\n<meta property=\"og:description\" content=\"Tell us what your company needs. We&#8217;ll handle the rest. Fill out the form below to get a proposal built for your business.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/solusoft.com\/en\/get-a-quote\/\" \/>\n<meta property=\"og:site_name\" content=\"Solusoft | Soluciones Tecnol\u00f3gicas, Seguridad y Gesti\u00f3n de Datos\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-22T21:11:52+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/solusoft.com\\\/en\\\/get-a-quote\\\/\",\"url\":\"https:\\\/\\\/solusoft.com\\\/en\\\/get-a-quote\\\/\",\"name\":\"Get a Quote - Solusoft | Soluciones Tecnol\u00f3gicas, Seguridad y Gesti\u00f3n de Datos\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/solusoft.com\\\/en\\\/#website\"},\"datePublished\":\"2026-05-20T19:06:30+00:00\",\"dateModified\":\"2026-05-22T21:11:52+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/solusoft.com\\\/en\\\/get-a-quote\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/solusoft.com\\\/en\\\/get-a-quote\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/solusoft.com\\\/en\\\/get-a-quote\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/solusoft.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Get a Quote\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/solusoft.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/solusoft.com\\\/en\\\/\",\"name\":\"Solusoft\",\"description\":\"Optimiza tu infraestructura de TI con Solusoft. Expertos en gesti\u00f3n de datos, seguridad, cloud y automatizaci\u00f3n. M\u00e1s de 30 a\u00f1os brindando soluciones innovadoras para empresas. \u00a1Cont\u00e1ctanos!\",\"publisher\":{\"@id\":\"https:\\\/\\\/solusoft.com\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/solusoft.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/solusoft.com\\\/en\\\/#organization\",\"name\":\"Solusoft\",\"url\":\"https:\\\/\\\/solusoft.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/solusoft.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/solusoft.com\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/logo-solusoft.png\",\"contentUrl\":\"https:\\\/\\\/solusoft.com\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/logo-solusoft.png\",\"width\":350,\"height\":38,\"caption\":\"Solusoft\"},\"image\":{\"@id\":\"https:\\\/\\\/solusoft.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/instagram.com\\\/solusoftlatam\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/solusoft\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Get a Quote - Solusoft | Soluciones Tecnol\u00f3gicas, Seguridad y Gesti\u00f3n de Datos","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/solusoft.com\/en\/get-a-quote\/","og_locale":"en_US","og_type":"article","og_title":"Get a Quote - Solusoft | Soluciones Tecnol\u00f3gicas, Seguridad y Gesti\u00f3n de Datos","og_description":"Tell us what your company needs. We&#8217;ll handle the rest. Fill out the form below to get a proposal built for your business.","og_url":"https:\/\/solusoft.com\/en\/get-a-quote\/","og_site_name":"Solusoft | Soluciones Tecnol\u00f3gicas, Seguridad y Gesti\u00f3n de Datos","article_modified_time":"2026-05-22T21:11:52+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/solusoft.com\/en\/get-a-quote\/","url":"https:\/\/solusoft.com\/en\/get-a-quote\/","name":"Get a Quote - Solusoft | Soluciones Tecnol\u00f3gicas, Seguridad y Gesti\u00f3n de Datos","isPartOf":{"@id":"https:\/\/solusoft.com\/en\/#website"},"datePublished":"2026-05-20T19:06:30+00:00","dateModified":"2026-05-22T21:11:52+00:00","breadcrumb":{"@id":"https:\/\/solusoft.com\/en\/get-a-quote\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/solusoft.com\/en\/get-a-quote\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/solusoft.com\/en\/get-a-quote\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/solusoft.com\/en\/"},{"@type":"ListItem","position":2,"name":"Get a Quote"}]},{"@type":"WebSite","@id":"https:\/\/solusoft.com\/en\/#website","url":"https:\/\/solusoft.com\/en\/","name":"Solusoft","description":"Optimiza tu infraestructura de TI con Solusoft. Expertos en gesti\u00f3n de datos, seguridad, cloud y automatizaci\u00f3n. M\u00e1s de 30 a\u00f1os brindando soluciones innovadoras para empresas. \u00a1Cont\u00e1ctanos!","publisher":{"@id":"https:\/\/solusoft.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/solusoft.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/solusoft.com\/en\/#organization","name":"Solusoft","url":"https:\/\/solusoft.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/solusoft.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/solusoft.com\/wp-content\/uploads\/2026\/03\/logo-solusoft.png","contentUrl":"https:\/\/solusoft.com\/wp-content\/uploads\/2026\/03\/logo-solusoft.png","width":350,"height":38,"caption":"Solusoft"},"image":{"@id":"https:\/\/solusoft.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/instagram.com\/solusoftlatam","https:\/\/www.linkedin.com\/company\/solusoft"]}]}},"_links":{"self":[{"href":"https:\/\/solusoft.com\/en\/wp-json\/wp\/v2\/pages\/2774","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/solusoft.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/solusoft.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/solusoft.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/solusoft.com\/en\/wp-json\/wp\/v2\/comments?post=2774"}],"version-history":[{"count":28,"href":"https:\/\/solusoft.com\/en\/wp-json\/wp\/v2\/pages\/2774\/revisions"}],"predecessor-version":[{"id":3034,"href":"https:\/\/solusoft.com\/en\/wp-json\/wp\/v2\/pages\/2774\/revisions\/3034"}],"wp:attachment":[{"href":"https:\/\/solusoft.com\/en\/wp-json\/wp\/v2\/media?parent=2774"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}