<br />
<b>Notice</b>:  Function _load_textdomain_just_in_time was called <strong>incorrectly</strong>. Translation loading for the <code>acf</code> domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the <code>init</code> action or later. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.7.0.) in <b>/home/fandemo/marispark.ro/wp-includes/functions.php</b> on line <b>6170</b><br />
{"id":298,"date":"2023-10-04T08:31:40","date_gmt":"2023-10-04T08:31:40","guid":{"rendered":"https:\/\/maris.zoozmo.com\/contact\/"},"modified":"2023-12-08T09:20:07","modified_gmt":"2023-12-08T09:20:07","slug":"contact","status":"publish","type":"page","link":"https:\/\/marispark.ro\/en\/contact\/","title":{"rendered":"Contact"},"content":{"rendered":"\r\n<section \r\n\tid=\"temp-1299696711\"\r\n\tclass=\"block-contact-form-section block-caramella contact-form-section mb-5 pb-5\"\r\n>\r\n    <div class=\"row gy-5 gx-0 gy-sm-0 py-5 px-3 px-md-5 bg-primary\">\r\n        <div class=\"col-12 col-md-6\">\r\n            <div class=\"card shadow-lg position-relative\">\r\n                <div class=\"card-body py-5 px-3 px-md-5\">\r\n                <div class=\"col-12 col-sm-auto d-flex align-items-center gap-4 mb-5\">\r\n                    <img decoding=\"async\" src=\"https:\/\/marispark.ro\/wp-content\/uploads\/2023\/10\/Layer_1-7.svg\" class=\"object-fit-cover title-image\" alt=\"\" \/>                    <h2 class=\"display-6 fw-bold text-secondary\">Contact<\/h2>\r\n                <\/div>\r\n                    \n<script type=\"text\/javascript\">\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded ) {\n\t\t\t\tfn();\n\t\t\t} else if( ! gform.domLoaded && gform.scriptsLoaded ) {\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', fn );\n\t\t\t} else {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', fn );\n\t\t\t}\n\t\t},\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                <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>#gform_wrapper_2[data-form-index=\"0\"].gform-theme,[data-parent-form=\"2_0\"]{--gform-theme-color-primary: #e2ba41;--gform-theme-color-primary-rgb: 226, 186, 65;--gform-theme-color-primary-contrast: #fff;--gform-theme-color-primary-contrast-rgb: 255, 255, 255;--gform-theme-color-primary-darker: #B0880F;--gform-theme-color-primary-lighter: #FFEC73;--gform-theme-color-secondary: #fff;--gform-theme-color-secondary-rgb: 255, 255, 255;--gform-theme-color-secondary-contrast: #06604e;--gform-theme-color-secondary-contrast-rgb: 6, 96, 78;--gform-theme-color-secondary-darker: #F5F5F5;--gform-theme-color-secondary-lighter: #FFFFFF;--gform-theme-color-outside-control-light: rgba(17, 35, 55, 0.1);--gform-theme-color-outside-control-light-rgb: 17, 35, 55;--gform-theme-color-outside-control-light-darker: rgba(6, 96, 78, 0.35);--gform-theme-color-outside-control-light-lighter: #F5F5F5;--gform-theme-color-outside-control-dark: #585e6a;--gform-theme-color-outside-control-dark-rgb: 88, 94, 106;--gform-theme-color-outside-control-dark-darker: #06604e;--gform-theme-color-outside-control-dark-lighter: rgba(6, 96, 78, 0.65);--gform-theme-color-inside-control: #fff;--gform-theme-color-inside-control-rgb: 255, 255, 255;--gform-theme-color-inside-control-contrast: #06604e;--gform-theme-color-inside-control-contrast-rgb: 6, 96, 78;--gform-theme-color-inside-control-darker: #F5F5F5;--gform-theme-color-inside-control-lighter: #FFFFFF;--gform-theme-color-inside-control-primary: #e2ba41;--gform-theme-color-inside-control-primary-rgb: 226, 186, 65;--gform-theme-color-inside-control-primary-contrast: #112337;--gform-theme-color-inside-control-primary-contrast-rgb: 17, 35, 55;--gform-theme-color-inside-control-primary-darker: #B0880F;--gform-theme-color-inside-control-primary-lighter: #FFEC73;--gform-theme-color-inside-control-light: rgba(17, 35, 55, 0.1);--gform-theme-color-inside-control-light-rgb: 17, 35, 55;--gform-theme-color-inside-control-light-darker: rgba(6, 96, 78, 0.35);--gform-theme-color-inside-control-light-lighter: #F5F5F5;--gform-theme-color-inside-control-dark: #585e6a;--gform-theme-color-inside-control-dark-rgb: 88, 94, 106;--gform-theme-color-inside-control-dark-darker: #06604e;--gform-theme-color-inside-control-dark-lighter: rgba(6, 96, 78, 0.65);--gform-theme-border-radius: 0px;--gform-theme-font-size-secondary: 14px;--gform-theme-font-size-tertiary: 13px;--gform-theme-icon-control-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(6, 96, 78, 0.65)'\/%3E%3C\/svg%3E\");--gform-theme-icon-control-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(6, 96, 78, 0.65)'\/%3E%3C\/svg%3E\");--gform-theme-icon-control-search: url(\"data:image\/svg+xml,%3Csvg version='1.1' xmlns='http:\/\/www.w3.org\/2000\/svg' width='640' height='640'%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(6, 96, 78, 0.65)'\/%3E%3C\/svg%3E\");--gform-theme-control-border-color: #06604e;--gform-theme-control-size: var(--gform-theme-control-size-md);--gform-theme-control-label-color-primary: #112337;--gform-theme-control-label-color-secondary: #112337;--gform-theme-control-choice-size: var(--gform-theme-control-choice-size-md);--gform-theme-control-checkbox-check-size: var(--gform-theme-control-checkbox-check-size-md);--gform-theme-control-radio-check-size: var(--gform-theme-control-radio-check-size-md);--gform-theme-control-button-font-size: var(--gform-theme-control-button-font-size-md);--gform-theme-control-button-padding-inline: var(--gform-theme-control-button-padding-inline-md);--gform-theme-control-button-size: var(--gform-theme-control-button-size-md);--gform-theme-control-button-border-color-secondary: #06604e;--gform-theme-control-file-button-background-color-hover: #EBEBEB;--gform-theme-field-page-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' target='gform_ajax_frame_2' id='gform_2'  action='\/en\/wp-json\/wp\/v2\/pages\/298#gf_2' data-formid='2' >\n                        <div class='gform-body gform_body'><div id='gform_fields_2' class='gform_fields top_label form_sublabel_below description_below'><div id=\"field_2_1\"  class=\"gfield gfield--type-text border-bottom-only gfield_contains_required field_sublabel_below gfield--no-description field_description_below hidden_label gfield_visibility_visible\"  data-js-reload=\"field_2_1\"><label class='gfield_label gform-field-label' for='input_2_1' >Name<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_1' id='input_2_1' type='text' value='' class='large'    placeholder='name' aria-required=\"true\" aria-invalid=\"false\"   \/> <\/div><\/div><div id=\"field_2_3\"  class=\"gfield gfield--type-email gfield--width-full border-bottom-only gfield_contains_required field_sublabel_below gfield--no-description field_description_below hidden_label gfield_visibility_visible\"  data-js-reload=\"field_2_3\"><label class='gfield_label gform-field-label' for='input_2_3' >Email<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_3' id='input_2_3' type='text' value='' class='large'   placeholder='email' aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_2_5\"  class=\"gfield gfield--type-text gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below hidden_label gfield_visibility_visible\"  data-js-reload=\"field_2_5\"><label class='gfield_label gform-field-label' for='input_2_5' >your company name<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_5' id='input_2_5' type='text' value='' class='large'    placeholder='your company name' aria-required=\"true\" aria-invalid=\"false\"   \/> <\/div><\/div><div id=\"field_2_4\"  class=\"gfield gfield--type-textarea gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below hidden_label gfield_visibility_visible\"  data-js-reload=\"field_2_4\"><label class='gfield_label gform-field-label' for='input_2_4' >Message<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_4' id='input_2_4' class='textarea small'    placeholder='message' aria-required=\"true\" aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/div><\/div><\/div>\n        <div class='gform_footer before'> <input type='submit' id='gform_submit_button_2' class='gform_button button gform-button--width-full' value='submit'  onclick='if(window[\"gf_submitting_2\"]){return false;}  window[\"gf_submitting_2\"]=true;  ' onkeypress='if( event.keyCode == 13 ){ if(window[\"gf_submitting_2\"]){return false;} window[\"gf_submitting_2\"]=true;  jQuery(\"#gform_2\").trigger(\"submit\",[true]); }' \/> <input type='hidden' name='gform_ajax' value='form_id=2&amp;title=&amp;description=1&amp;tabindex=0&amp;theme=data-form-theme=&#039;orbital&#039;' \/>\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_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_2' value='WyJbXSIsIjZmYzI2ZGI2NDEyNTEwYjU2NjViOTQ4M2IyNDQ3NGJmIl0=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_target_page_number_2' id='gform_target_page_number_2' value='0' \/>\n            <input type='hidden' 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                        <\/form>\n                        <\/div>\n\t\t                <iframe style='display:none;width:0px;height:0px;' src='about:blank' name='gform_ajax_frame_2' id='gform_ajax_frame_2' title='This iframe contains the logic required to handle Ajax powered Gravity Forms.'><\/iframe>\n\t\t                <script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 2, 'https:\/\/marispark.ro\/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){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:\/\/marispark.ro\/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;}setTimeout(function(){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());}, 50);}else{jQuery('#gform_2').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger('gform_post_render', [2, current_page]);gform.utils.trigger({ event: 'gform\/postRender', native: false, data: { formId: 2, currentPage: current_page } });} );} );\n<\/script>\n\n\r\n                <\/div>\r\n            <\/div>\r\n        <\/div>\r\n        <div class=\"col-12 offset-md-1 col-md-5 d-flex flex-column gap-4 justify-content-center\">\r\n                                    <div class=\"row text-white\">\r\n                            <div class=\"col-auto d-flex align-items-center\">\r\n                                <img decoding=\"async\" src=\"https:\/\/marispark.ro\/wp-content\/uploads\/2023\/10\/Layer_1-9.svg\" class=\"img-fluid\" alt=\"\" \/>                            <\/div>\r\n                            <div class=\"col text-start\">\r\n                                <p class=\"fw-bold mb-1\">Call us:<\/p>\r\n                                <p class=\"mb-0\"> +40 735 011 454<\/p>\r\n                            <\/div>\r\n                        <\/div>\r\n                                                <div class=\"row text-white\">\r\n                            <div class=\"col-auto d-flex align-items-center\">\r\n                                <img decoding=\"async\" src=\"https:\/\/marispark.ro\/wp-content\/uploads\/2023\/10\/Layer_1-10.svg\" class=\"img-fluid\" alt=\"\" \/>                            <\/div>\r\n                            <div class=\"col text-start\">\r\n                                <p class=\"fw-bold mb-1\">Contact us via email:<\/p>\r\n                                <p class=\"mb-0\">office@ntlproperty.ro<\/p>\r\n                            <\/div>\r\n                        <\/div>\r\n                                                <div class=\"row text-white\">\r\n                            <div class=\"col-auto d-flex align-items-center\">\r\n                                <img decoding=\"async\" src=\"https:\/\/marispark.ro\/wp-content\/uploads\/2023\/12\/Layer_1-2.svg\" class=\"img-fluid\" alt=\"\" \/>                            <\/div>\r\n                            <div class=\"col text-start\">\r\n                                <p class=\"fw-bold mb-1\">Data:<\/p>\r\n                                <p class=\"mb-0\">Registration number: 26\/2150\/2017 VAT number: RO38615038<\/p>\r\n                            <\/div>\r\n                        <\/div>\r\n                                <\/div>\r\n    <\/div>\r\n\r\n<\/section>\r\n\n\n\r\n<section \r\n\tid=\"temp-547176311\"\r\n\tclass=\"block-compact-location block-caramella compact-location-section py-5\"\r\n>\r\n\t<div class=\"container\">\r\n\t\t<div class=\"row gy-2 gy-md-0\">\r\n\t\t\t<div class=\"col-12 col-md-6 order-last order-md-first\">\r\n\t\t\t\t\t\t\t\t\t<div class=\"google-map px-4 border-5 border-start border-end border-muted\">\r\n\t\t\t\t\t\t<iframe src=\"https:\/\/www.google.com\/maps\/embed?pb=!1m18!1m12!1m3!1d87815.27152275802!2d24.470196336681916!3d46.54319154184922!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x474bb64a553e9177%3A0xb1573a839869d90d!2zVMOicmd1IE11cmXImQ!5e0!3m2!1sen!2sro!4v1701101830764!5m2!1sen!2sro\" width=\"420\" height=\"280\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"><\/iframe>\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>\r\n\t\t\t<div class=\"col-12 col-md-6\">\r\n\t\t\t\t\n\r\n<section \r\n\tid=\"temp-367591067\"\r\n\tclass=\"block-custom-title block-caramella custom-title container mb-5\"\r\n>\r\n    \r\n    <div class=\"row gx-sm-5\">\r\n        <div class=\"col-12 col-sm-auto d-flex align-items-center gap-4\">\r\n            <img decoding=\"async\" src=\"https:\/\/marispark.ro\/wp-content\/uploads\/2023\/10\/Layer_1-7.svg\" class=\"object-fit-cover title-image\" alt=\"\" \/>            <h2 class=\"display-6 fw-bold text-secondary\">Location<\/h2>\r\n        <\/div>\r\n            <\/div>\r\n    <div class=\"mt-4 text-secondary\"><p><strong>Maris Tech &amp; Business Park:<\/strong><br \/>\nStr. Morii, nr. 575 A<br \/>\n547185 Criste\u0219ti,<br \/>\nRom\u00e2nia<\/p>\n<p><strong>NTL Property SRL:<\/strong><br \/>\nStr. Gloriei nr. 16\/A, ap.47<br \/>\n540453 T\u00e2rgu Mure\u0219,<br \/>\nRomania<\/p>\n<\/div>\r\n\r\n    \r\n<\/section>\n\r\n\t\t\t<\/div>\r\n\t\t<\/div>\r\n\t<\/div>\r\n<\/section>\r\n\r\n\n\n\r\n<section \r\n\tid=\"temp-1574405935\"\r\n\tclass=\"block-contact-section block-caramella contact-section mb-sm-5 pb-sm-5\"\r\n>\r\n    <div class=\"row gx-0 gy-0\">\r\n        <div class=\"col-12 col-sm-3\">\r\n            <img loading=\"lazy\" decoding=\"async\" width=\"356\" height=\"340\" src=\"https:\/\/marispark.ro\/wp-content\/uploads\/2023\/10\/7-1.png\" class=\"w-100 h-100 object-fit-cover\" alt=\"\" srcset=\"https:\/\/marispark.ro\/wp-content\/uploads\/2023\/10\/7-1.png 356w, https:\/\/marispark.ro\/wp-content\/uploads\/2023\/10\/7-1-300x287.png 300w, https:\/\/marispark.ro\/wp-content\/uploads\/2023\/10\/7-1-50x48.png 50w\" sizes=\"auto, (max-width: 356px) 100vw, 356px\" \/>        <\/div>\r\n        <div class=\"col-12 col-sm-6 my-sm-4 py-4 py-lg-0 d-flex flex-column align-items-center justify-content-center text-white bg-secondary\">\r\n            <div class=\"container\">\r\n                <div class=\"text-center mb-4\">\r\n                    <h2 class=\"fw-bold\">Newsletter subscription<\/h2>\r\n                    <p>We notify you about the latest opportunities!<\/p>\r\n                <\/div>\r\n                <div class=\"newsletter-form-wrapper\">\r\n                    \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_1' ><style>#gform_wrapper_1[data-form-index=\"0\"].gform-theme,[data-parent-form=\"1_0\"]{--gform-theme-color-primary: #5d760d;--gform-theme-color-primary-rgb: 93, 118, 13;--gform-theme-color-primary-contrast: #fff;--gform-theme-color-primary-contrast-rgb: 255, 255, 255;--gform-theme-color-primary-darker: #2B4400;--gform-theme-color-primary-lighter: #8FA83F;--gform-theme-color-secondary: #2d5164;--gform-theme-color-secondary-rgb: 45, 81, 100;--gform-theme-color-secondary-contrast: #ffffff;--gform-theme-color-secondary-contrast-rgb: 255, 255, 255;--gform-theme-color-secondary-darker: #23475A;--gform-theme-color-secondary-lighter: #375B6E;--gform-theme-color-outside-control-light: rgba(17, 35, 55, 0.1);--gform-theme-color-outside-control-light-rgb: 17, 35, 55;--gform-theme-color-outside-control-light-darker: rgba(45, 81, 100, 0.35);--gform-theme-color-outside-control-light-lighter: #23475A;--gform-theme-color-outside-control-dark: #585e6a;--gform-theme-color-outside-control-dark-rgb: 88, 94, 106;--gform-theme-color-outside-control-dark-darker: #ffffff;--gform-theme-color-outside-control-dark-lighter: rgba(255, 255, 255, 0.65);--gform-theme-color-inside-control: #2d5164;--gform-theme-color-inside-control-rgb: 45, 81, 100;--gform-theme-color-inside-control-contrast: #ffffff;--gform-theme-color-inside-control-contrast-rgb: 255, 255, 255;--gform-theme-color-inside-control-darker: #23475A;--gform-theme-color-inside-control-lighter: #375B6E;--gform-theme-color-inside-control-primary: #204ce5;--gform-theme-color-inside-control-primary-rgb: 32, 76, 229;--gform-theme-color-inside-control-primary-contrast: #fff;--gform-theme-color-inside-control-primary-contrast-rgb: 255, 255, 255;--gform-theme-color-inside-control-primary-darker: #001AB3;--gform-theme-color-inside-control-primary-lighter: #527EFF;--gform-theme-color-inside-control-light: rgba(17, 35, 55, 0.1);--gform-theme-color-inside-control-light-rgb: 17, 35, 55;--gform-theme-color-inside-control-light-darker: rgba(45, 81, 100, 0.35);--gform-theme-color-inside-control-light-lighter: #23475A;--gform-theme-color-inside-control-dark: #585e6a;--gform-theme-color-inside-control-dark-rgb: 88, 94, 106;--gform-theme-color-inside-control-dark-darker: #ffffff;--gform-theme-color-inside-control-dark-lighter: rgba(255, 255, 255, 0.65);--gform-theme-border-radius: 0px;--gform-theme-font-size-secondary: 14px;--gform-theme-font-size-tertiary: 13px;--gform-theme-icon-control-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(255, 255, 255, 0.65)'\/%3E%3C\/svg%3E\");--gform-theme-icon-control-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(255, 255, 255, 0.65)'\/%3E%3C\/svg%3E\");--gform-theme-icon-control-search: url(\"data:image\/svg+xml,%3Csvg version='1.1' xmlns='http:\/\/www.w3.org\/2000\/svg' width='640' height='640'%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(255, 255, 255, 0.65)'\/%3E%3C\/svg%3E\");--gform-theme-control-border-color: #2d5164;--gform-theme-control-size: var(--gform-theme-control-size-sm);--gform-theme-control-label-color-primary: #112337;--gform-theme-control-label-color-secondary: #112337;--gform-theme-control-choice-size: var(--gform-theme-control-choice-size-sm);--gform-theme-control-checkbox-check-size: var(--gform-theme-control-checkbox-check-size-sm);--gform-theme-control-radio-check-size: var(--gform-theme-control-radio-check-size-sm);--gform-theme-control-button-font-size: var(--gform-theme-control-button-font-size-sm);--gform-theme-control-button-padding-inline: var(--gform-theme-control-button-padding-inline-sm);--gform-theme-control-button-size: var(--gform-theme-control-button-size-sm);--gform-theme-control-button-border-color-secondary: #2d5164;--gform-theme-control-file-button-background-color-hover: #193D50;--gform-theme-field-page-steps-number-color: rgba(17, 35, 55, 0.8);}<\/style><div id='gf_1' 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' target='gform_ajax_frame_1' id='gform_1'  action='\/en\/wp-json\/wp\/v2\/pages\/298#gf_1' data-formid='1' >\n                        <div class='gform-body gform_body'><div id='gform_fields_1' class='gform_fields top_label form_sublabel_below description_below'><div id=\"field_1_1\"  class=\"gfield gfield--type-text gfield--width-third svg-person position-relative gfield_contains_required field_sublabel_below gfield--no-description field_description_below hidden_label gfield_visibility_visible\"  data-js-reload=\"field_1_1\"><label class='gfield_label gform-field-label' for='input_1_1' >Name<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_1' id='input_1_1' type='text' value='' class='large'    placeholder='your name' aria-required=\"true\" aria-invalid=\"false\"   \/> <\/div><\/div><div id=\"field_1_3\"  class=\"gfield gfield--type-email gfield--width-third svg-email position-relative field_sublabel_below gfield--no-description field_description_below hidden_label gfield_visibility_visible\"  data-js-reload=\"field_1_3\"><label class='gfield_label gform-field-label' for='input_1_3' >Email<\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_3' id='input_1_3' type='text' value='' class='large'   placeholder='email'  aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_submit\"  class=\"gfield gfield--type-submit gfield--width-one-sixth field_sublabel_below gfield--no-description field_description_below gfield_visibility_visible\"  data-field-class=\"gform_editor_submit_container\" data-field-position=\"inline\" data-js-reload=\"true\"><input type='submit' id='gform_submit_button_1' class='gform-button gform-button--white  button' value='Submit'  onclick='if(window[\"gf_submitting_1\"]){return false;}  window[\"gf_submitting_1\"]=true;  ' onkeypress='if( event.keyCode == 13 ){ if(window[\"gf_submitting_1\"]){return false;} window[\"gf_submitting_1\"]=true;  jQuery(\"#gform_1\").trigger(\"submit\",[true]); }' \/><\/div><\/div><\/div>\n        <div class='gform_footer before'>  <input type='hidden' name='gform_ajax' value='form_id=1&amp;title=&amp;description=1&amp;tabindex=0&amp;theme=data-form-theme=&#039;orbital&#039;' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_1' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='1' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_1' value='WyJbXSIsIjZmYzI2ZGI2NDEyNTEwYjU2NjViOTQ4M2IyNDQ3NGJmIl0=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_target_page_number_1' id='gform_target_page_number_1' value='0' \/>\n            <input type='hidden' class='gform_hidden' name='gform_source_page_number_1' id='gform_source_page_number_1' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div>\n\t\t                <iframe style='display:none;width:0px;height:0px;' src='about:blank' name='gform_ajax_frame_1' id='gform_ajax_frame_1' title='This iframe contains the logic required to handle Ajax powered Gravity Forms.'><\/iframe>\n\t\t                <script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 1, 'https:\/\/marispark.ro\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', false );jQuery('#gform_ajax_frame_1').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_1');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_1').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){jQuery('#gform_wrapper_1').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_1').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_1').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/ jQuery(document).scrollTop(jQuery('#gform_wrapper_1').offset().top - mt); }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_1').val();gformInitSpinner( 1, 'https:\/\/marispark.ro\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', false );jQuery(document).trigger('gform_page_loaded', [1, current_page]);window['gf_submitting_1'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}setTimeout(function(){jQuery('#gform_wrapper_1').replaceWith(confirmation_content);jQuery(document).scrollTop(jQuery('#gf_1').offset().top - mt);jQuery(document).trigger('gform_confirmation_loaded', [1]);window['gf_submitting_1'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_1').text());}, 50);}else{jQuery('#gform_1').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger('gform_post_render', [1, current_page]);gform.utils.trigger({ event: 'gform\/postRender', native: false, data: { formId: 1, currentPage: current_page } });} );} );\n<\/script>\n\n\r\n                <\/div>\r\n            <\/div>\r\n        <\/div>\r\n        <div class=\"col-12 col-sm-3\">\r\n            <img loading=\"lazy\" decoding=\"async\" width=\"357\" height=\"340\" src=\"https:\/\/marispark.ro\/wp-content\/uploads\/2023\/10\/8-1.png\" class=\"w-100 h-100 object-fit-cover\" alt=\"\" srcset=\"https:\/\/marispark.ro\/wp-content\/uploads\/2023\/10\/8-1.png 357w, https:\/\/marispark.ro\/wp-content\/uploads\/2023\/10\/8-1-300x286.png 300w, https:\/\/marispark.ro\/wp-content\/uploads\/2023\/10\/8-1-50x48.png 50w\" sizes=\"auto, (max-width: 357px) 100vw, 357px\" \/>        <\/div>\r\n    <\/div>\r\n\r\n<\/section>\r\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-298","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/marispark.ro\/en\/wp-json\/wp\/v2\/pages\/298","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/marispark.ro\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/marispark.ro\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/marispark.ro\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/marispark.ro\/en\/wp-json\/wp\/v2\/comments?post=298"}],"version-history":[{"count":7,"href":"https:\/\/marispark.ro\/en\/wp-json\/wp\/v2\/pages\/298\/revisions"}],"predecessor-version":[{"id":325,"href":"https:\/\/marispark.ro\/en\/wp-json\/wp\/v2\/pages\/298\/revisions\/325"}],"wp:attachment":[{"href":"https:\/\/marispark.ro\/en\/wp-json\/wp\/v2\/media?parent=298"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}