{"id":121914,"date":"2026-03-04T09:48:57","date_gmt":"2026-03-04T08:48:57","guid":{"rendered":"https:\/\/www.ginesta.ch\/sales-process\/real-estate-sales\/personal-sales-advice\/"},"modified":"2026-04-22T10:29:11","modified_gmt":"2026-04-22T08:29:11","slug":"personal-sales-advice","status":"publish","type":"page","link":"https:\/\/www.ginesta.ch\/en\/sales-process\/real-estate-sales\/personal-sales-advice\/","title":{"rendered":"Personal sales advice"},"content":{"rendered":"\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:20%\"><\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:75%\">\n<h2 class=\"wp-block-heading\">Personal sales advice<\/h2>\n\n\n\n<p>You would like to have your property professionally valued or consider a sale. Let us know your concerns. We will take time for your project and advise you personally, free of charge and without obligation.  <\/p>\n\n\n<div class=\"dhsv-cta-block align with-bg has-gray-10-background-color icon x-small\">\n    <div class=\"inner has-background text-left\">\n        <div class=\"content\">\n            \n<script>\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tthemeScriptsLoaded: false,\n\t\tisFormEditor: () => typeof InitializeEditor === 'function',\n\n\t\t\/**\n\t\t * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.\n\t\t * @remove-in 4.0 this function will not check for gform.isFormEditor().\n\t\t *\/\n\t\tcallIfLoaded: function ( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {\n\t\t\t\tif ( gform.isFormEditor() ) {\n\t\t\t\t\tconsole.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );\n\t\t\t\t}\n\t\t\t\tfn();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\n\t\t\/**\n\t\t * Call a function when all scripts are loaded\n\t\t *\n\t\t * @param function fn the callback function to call when all scripts are loaded\n\t\t *\n\t\t * @returns void\n\t\t *\/\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( ! gform.callIfLoaded( fn ) ) {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t}\n\t\t},\n\n\t\thooks: { action: {}, filter: {} },\n\t\taddAction: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'action', action, callable, priority, tag );\n\t\t},\n\t\taddFilter: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'filter', action, callable, priority, tag );\n\t\t},\n\t\tdoAction: function( action ) {\n\t\t\tgform.doHook( 'action', action, arguments );\n\t\t},\n\t\tapplyFilters: function( action ) {\n\t\t\treturn gform.doHook( 'filter', action, arguments );\n\t\t},\n\t\tremoveAction: function( action, tag ) {\n\t\t\tgform.removeHook( 'action', action, tag );\n\t\t},\n\t\tremoveFilter: function( action, priority, tag ) {\n\t\t\tgform.removeHook( 'filter', action, priority, tag );\n\t\t},\n\t\taddHook: function( hookType, action, callable, priority, tag ) {\n\t\t\tif ( undefined == gform.hooks[hookType][action] ) {\n\t\t\t\tgform.hooks[hookType][action] = [];\n\t\t\t}\n\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\tif ( undefined == tag ) {\n\t\t\t\ttag = action + '_' + hooks.length;\n\t\t\t}\n\t\t\tif( priority == undefined ){\n\t\t\t\tpriority = 10;\n\t\t\t}\n\n\t\t\tgform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );\n\t\t},\n\t\tdoHook: function( hookType, action, args ) {\n\n\t\t\t\/\/ splice args from object into array and remove first index which is the hook name\n\t\t\targs = Array.prototype.slice.call(args, 1);\n\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action], hook;\n\t\t\t\t\/\/sort by priority\n\t\t\t\thooks.sort(function(a,b){return a[\"priority\"]-b[\"priority\"]});\n\n\t\t\t\thooks.forEach( function( hookItem ) {\n\t\t\t\t\thook = hookItem.callable;\n\n\t\t\t\t\tif(typeof hook != 'function')\n\t\t\t\t\t\thook = window[hook];\n\t\t\t\t\tif ( 'action' == hookType ) {\n\t\t\t\t\t\thook.apply(null, args);\n\t\t\t\t\t} else {\n\t\t\t\t\t\targs[0] = hook.apply(null, args);\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( 'filter'==hookType ) {\n\t\t\t\treturn args[0];\n\t\t\t}\n\t\t},\n\t\tremoveHook: function( hookType, action, priority, tag ) {\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\t\thooks = hooks.filter( function(hook, index, arr) {\n\t\t\t\t\tvar removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);\n\t\t\t\t\treturn !removeHook;\n\t\t\t\t} );\n\t\t\t\tgform.hooks[hookType][action] = hooks;\n\t\t\t}\n\t\t}\n\t};\n}\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gravity-theme gform-theme--no-framework half_wrapper' data-form-theme='gravity-theme' data-form-index='0' id='gform_wrapper_13' >\n                        <div class='gform_heading'>\n                            <h2 class=\"gform_title\">contact_form_sell<\/h2>\n                            <p class='gform_description'>Contact form for sales<\/p>\n\t\t\t\t\t\t\t<p class='gform_required_legend'>&quot;<span class=\"gfield_required gfield_required_asterisk\">*<\/span>&quot; indicates required fields<\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data'  id='gform_13' class='half' action='\/en\/wp-json\/wp\/v2\/pages\/121914' data-formid='13' novalidate>\n                        <div class='gform-body gform_body'><div id='gform_fields_13' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_13_29\" class=\"gfield gfield--type-honeypot gform_validation_container field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_13_29'>Comments<\/label><div class='ginput_container'><input name='input_29' id='input_13_29' type='text' value='' autocomplete='new-password'\/><\/div><div class='gfield_description' id='gfield_description_13_29'>This field is for validation purposes and should be left unchanged.<\/div><\/div><div id=\"field_13_11\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-half gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_13_11'>First name<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><span class=\"gform_field_icon name\"><svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<path d=\"M11 11.3242V9.82422C11 9.02857 10.7366 8.26551 10.2678 7.7029C9.79893 7.14029 9.16304 6.82422 8.5 6.82422H3.5C2.83696 6.82422 2.20107 7.14029 1.73223 7.7029C1.26339 8.26551 1 9.02857 1 9.82422V11.3242\" stroke=\"var(--icon-base)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n<path d=\"M6 5.32422C7.24264 5.32422 8.25 4.31686 8.25 3.07422C8.25 1.83158 7.24264 0.824219 6 0.824219C4.75736 0.824219 3.75 1.83158 3.75 3.07422C3.75 4.31686 4.75736 5.32422 6 5.32422Z\" stroke=\"var(--icon-base)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n<\/svg>\n<\/span><input name='input_11' id='input_13_11' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_13_12\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-half gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_13_12'>Surname<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><span class=\"gform_field_icon name\"><svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<path d=\"M11 11.3242V9.82422C11 9.02857 10.7366 8.26551 10.2678 7.7029C9.79893 7.14029 9.16304 6.82422 8.5 6.82422H3.5C2.83696 6.82422 2.20107 7.14029 1.73223 7.7029C1.26339 8.26551 1 9.02857 1 9.82422V11.3242\" stroke=\"var(--icon-base)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n<path d=\"M6 5.32422C7.24264 5.32422 8.25 4.31686 8.25 3.07422C8.25 1.83158 7.24264 0.824219 6 0.824219C4.75736 0.824219 3.75 1.83158 3.75 3.07422C3.75 4.31686 4.75736 5.32422 6 5.32422Z\" stroke=\"var(--icon-base)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n<\/svg>\n<\/span><input name='input_12' id='input_13_12' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_13_24\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_13_24'>Location of the property<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_24' id='input_13_24' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_13_27\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-half field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_13_27'>Street, No.<\/label><div class='ginput_container ginput_container_text'><input name='input_27' id='input_13_27' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_13_28\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-half field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_13_28'>ZIP CODE<\/label><div class='ginput_container ginput_container_text'><input name='input_28' id='input_13_28' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_13_25\" class=\"gfield gfield--type-email gfield--input-type-email gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_13_25'>e-mail<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_25' id='input_13_25' type='email' value='' class='large'   placeholder='e-mail' aria-required=\"true\" aria-invalid=\"false\"  autocomplete=\"email\"\/>\n                        <\/div><\/div><div id=\"field_13_26\" class=\"gfield gfield--type-phone gfield--input-type-phone gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_13_26'>Telephone<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_phone'><input name='input_26' id='input_13_26' type='tel' value='' class='large'   aria-required=\"true\" aria-invalid=\"false\"  autocomplete=\"tel\" \/><\/div><\/div><fieldset id=\"field_13_18\" class=\"gfield gfield--type-consent gfield--type-choice gfield--input-type-consent gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Data protection<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/legend><div class='ginput_container ginput_container_consent'><input name='input_18.1' id='input_13_18_1' type='checkbox' value='1'   aria-required=\"true\" aria-invalid=\"false\"   \/> <label class=\"gform-field-label gform-field-label--type-inline gfield_consent_label\" for='input_13_18_1' >I have read the <a href=\"https:\/\/www.ginesta.ch\/en\/data-protection\/\">privacy policy<\/a> and agree to the processing of my data*.<span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/label><input type='hidden' name='input_18.2' value='I have read the &lt;a href=&quot;https:\/\/www.ginesta.ch\/en\/data-protection\/&quot;&gt;privacy policy&lt;\/a&gt; and agree to the processing of my data*.' class='gform_hidden' \/><input type='hidden' name='input_18.3' value='6' class='gform_hidden' \/><\/div><\/fieldset><\/div><\/div>\n        <div class='gform-footer gform_footer top_label'> <div class=\"gform-button-container\"><input type='submit' id='gform_submit_button_13' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Send'  \/><svg width=\"15\" height=\"16\" viewBox=\"0 0 15 16\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<path d=\"M0.5 7.57422H14.5M14.5 7.57422L7.5 0.574219M14.5 7.57422L7.5 14.5742\" stroke=\"var(--icon-base)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n<\/svg>\n<\/div> <input type='hidden' class='gform_hidden' name='gform_submission_speeds' value='{&quot;pages&quot;:[]}' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_13' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_13' id='gform_theme_13' value='gravity-theme' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_13' id='gform_style_settings_13' value='{&quot;inputPrimaryColor&quot;:&quot;#204ce5&quot;}' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_13' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='13' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='EUR' value='8e4malauucQO9VVeRTNp4oBAyS2B3PJdUXhMLOJk5NG2KT7rLuXLff1n69BOLs5SQR1c9\/T\/bHYroHYJFgiNJFqBlUCboTuq\/lXHarud9dG9H0g=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_13' value='WyJ7XCIxOC4xXCI6XCIyZDkwMDY4ZDE1ZDY4MWJiMzJmMzllMzI1OWUwZjYzYVwiLFwiMTguMlwiOlwiNjcxNDBmYTQ0NTFjZWYyYjNjMGNlZGZjZDI0YWVhYTdcIixcIjE4LjNcIjpcIjI0NjBhZDhiMzA3MGE3NzBjMTEyZjJlZTgyZDYxNDYwXCJ9IiwiOTQ4YmVkNDllZGFkMDA2NmY3NzlhMzE2YmU5NTRiNmEiXQ==' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_13' id='gform_target_page_number_13' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_13' id='gform_source_page_number_13' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div><script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 13, 'https:\/\/www.ginesta.ch\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_13').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_13');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_13').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_13').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_13').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_13').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_13').val();gformInitSpinner( 13, 'https:\/\/www.ginesta.ch\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [13, current_page]);window['gf_submitting_13'] = 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_13').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [13]);window['gf_submitting_13'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_13').text());}else{jQuery('#gform_13').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"13\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_13\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_13\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_13\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 13, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} );\n<\/script>\n\n\n        <\/div>\n                    <\/div>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:20%\"><\/div>\n<\/div>\n\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading\">Your direct contact for a well-founded property valuation and sale<\/h2>\n\n\n\n<p><br\/>Our experts will be happy to provide you with an initial consultation and a professional valuation.<\/p>\n\n\n<div class=\"alignnone contact-persons-block\">\n    <div data-component=\"ContactPersons\" data-props=\"{\n    &quot;isManually&quot;: true,\n    &quot;manuallyData&quot;: [\n        5027,\n        4944,\n        122389,\n        112425,\n        5217,\n        5191,\n        4973,\n        5003,\n        5161,\n        5055,\n        5141,\n        4999\n    ],\n    &quot;abteilungen&quot;: [\n        330,\n        303\n    ],\n    &quot;align&quot;: &quot;none&quot;,\n    &quot;type&quot;: &quot;grid&quot;,\n    &quot;teaserType&quot;: &quot;default&quot;,\n    &quot;buttonText&quot;: &quot;Zum Kontaktformular&quot;,\n    &quot;enableContactForm&quot;: false,\n    &quot;enableProfileModal&quot;: false,\n    &quot;profileButtonText&quot;: &quot;Zum Profil&quot;,\n    &quot;gridCount&quot;: 3,\n    &quot;exclude&quot;: [],\n    &quot;standort&quot;: [],\n    &quot;compactMobileCard&quot;: false,\n    &quot;manualAlignment&quot;: &quot;start&quot;,\n    &quot;persons&quot;: [\n        {\n            &quot;id&quot;: 5249,\n            &quot;title&quot;: &quot;Stefanie Bigler&quot;,\n            &quot;text&quot;: &quot;A real estate expert through and through and therefore the ideal candidate for the management of our Zurich North branch, which she herself helped to set up: Stefanie Bigler has been proving since fall 2020 that she is in exactly the right place here. Stefanie Bigler has a degree as a federally certified accountant. dipl. &amp;hellip; Read more&quot;,\n            &quot;category&quot;: &quot;&quot;,\n            &quot;tag&quot;: &quot;&quot;,\n            &quot;date&quot;: &quot;11.11.2021&quot;,\n            &quot;link&quot;: {\n                &quot;url&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/en\\\/team\\\/brokerage\\\/stefanie-bigler\\\/&quot;\n            },\n            &quot;acf&quot;: {\n                &quot;vorname&quot;: &quot;Stefanie&quot;,\n                &quot;nachname&quot;: &quot;Bigler&quot;,\n                &quot;phone_number&quot;: &quot;044 914 10 61&quot;,\n                &quot;email_address&quot;: &quot;bigler@ginesta.ch&quot;,\n                &quot;e-mail_team&quot;: &quot;verkauf@ginesta.ch&quot;,\n                &quot;phone_number_international&quot;: &quot;+41 44 914 10 61&quot;,\n                &quot;socials&quot;: false,\n                &quot;enable_single_page&quot;: true,\n                &quot;gewichtung&quot;: &quot;0&quot;,\n                &quot;move_to_front&quot;: true,\n                &quot;graduation&quot;: &quot;&quot;,\n                &quot;languages&quot;: &quot;&quot;,\n                &quot;job_title&quot;: &quot;\\u003Cp\\u003EHead of Marketing Zurich North\\u003C\\\/p\\u003E\\n&quot;,\n                &quot;location&quot;: [\n                    14579\n                ],\n                &quot;ausbildung&quot;: &quot;Eidg. dipl.  Real estate trustee&quot;,\n                &quot;quote&quot;: &quot;I know that anyone who has a strong brand like Ginesta behind them and, like me, is allowed to develop a booming region like Zurich North almost independently, has drawn the perfect job lot. Thank you for your trust. &quot;\n            },\n            &quot;posttype&quot;: &quot;kontaktpersonen&quot;,\n            &quot;image&quot;: {\n                &quot;id&quot;: 130176,\n                &quot;title&quot;: &quot;Portrait_Stefanie_medium&quot;,\n                &quot;url&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Stefanie_medium.jpg&quot;,\n                &quot;width&quot;: 2600,\n                &quot;height&quot;: 1733,\n                &quot;srcset&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Stefanie_medium-768x512.jpg 768w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Stefanie_medium-1536x1024.jpg 1536w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Stefanie_medium-1600x1066.jpg 1600w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Stefanie_medium-2048x1365.jpg 2048w&quot;,\n                &quot;sizes&quot;: &quot;(max-width:768px) 768px, (max-width:1536px) 1536px, (max-width:1600px) 1600px, (max-width:2048px) 2048px&quot;,\n                &quot;type&quot;: &quot;image\\\/jpeg&quot;\n            }\n        },\n        {\n            &quot;id&quot;: 5229,\n            &quot;title&quot;: &quot;Sascha Ginesta&quot;,\n            &quot;text&quot;: &quot;Sascha Ginesta has been working for the renowned family business Ginesta Immobilien in various functions in K\\u00fcsnacht, Horgen, Chur and St. Moritz since February 2009. He has been responsible for our clients in Graub\\u00fcnden since October 2012. In addition to managing the team of employees in Chur and St. Moritz, his current responsibilities as Head &amp;hellip; Read more&quot;,\n            &quot;category&quot;: &quot;&quot;,\n            &quot;tag&quot;: &quot;&quot;,\n            &quot;date&quot;: &quot;05.02.2024&quot;,\n            &quot;link&quot;: {\n                &quot;url&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/en\\\/team\\\/administrative-board\\\/sascha-ginesta\\\/&quot;\n            },\n            &quot;acf&quot;: {\n                &quot;vorname&quot;: &quot;Sascha&quot;,\n                &quot;nachname&quot;: &quot;Ginesta&quot;,\n                &quot;phone_number&quot;: &quot;081 254 37 73&quot;,\n                &quot;email_address&quot;: &quot;sascha@ginesta.ch&quot;,\n                &quot;phone_number_international&quot;: &quot;+41 81 254 37 73&quot;,\n                &quot;socials&quot;: false,\n                &quot;enable_single_page&quot;: true,\n                &quot;gewichtung&quot;: &quot;2&quot;,\n                &quot;move_to_front&quot;: false,\n                &quot;graduation&quot;: &quot;&quot;,\n                &quot;languages&quot;: &quot;&quot;,\n                &quot;job_title&quot;: &quot;\\u003Cp\\u003EHead of Marketing Graub\\u00fcnden, Partner\\u003C\\\/p\\u003E\\n&quot;,\n                &quot;location&quot;: [\n                    14573,\n                    14684,\n                    14686\n                ],\n                &quot;ausbildung&quot;: &quot;Certified business economist HF, real estate appraiser with a federal certificate.  FA&quot;,\n                &quot;quote&quot;: &quot;The people of Graub\\u00fcnden simply tick a little differently to the people of the lowlands who want to buy something here. Our quality is to combine these two worlds with ease. &quot;,\n                &quot;e-mail_team&quot;: &quot;verkauf@ginesta.ch&quot;\n            },\n            &quot;posttype&quot;: &quot;kontaktpersonen&quot;,\n            &quot;image&quot;: {\n                &quot;id&quot;: 130156,\n                &quot;title&quot;: &quot;Portrait_Sascha_medium&quot;,\n                &quot;url&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Sascha_medium.jpg&quot;,\n                &quot;width&quot;: 2600,\n                &quot;height&quot;: 1733,\n                &quot;srcset&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Sascha_medium-768x512.jpg 768w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Sascha_medium-1536x1024.jpg 1536w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Sascha_medium-1600x1066.jpg 1600w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Sascha_medium-2048x1365.jpg 2048w&quot;,\n                &quot;sizes&quot;: &quot;(max-width:768px) 768px, (max-width:1536px) 1536px, (max-width:1600px) 1600px, (max-width:2048px) 2048px&quot;,\n                &quot;type&quot;: &quot;image\\\/jpeg&quot;\n            }\n        },\n        {\n            &quot;id&quot;: 5240,\n            &quot;title&quot;: &quot;Natasa Subaric&quot;,\n            &quot;text&quot;: &quot;&quot;,\n            &quot;category&quot;: &quot;&quot;,\n            &quot;tag&quot;: &quot;&quot;,\n            &quot;date&quot;: &quot;09.04.2024&quot;,\n            &quot;link&quot;: {\n                &quot;url&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/en\\\/team\\\/brokerage\\\/natasa-subaric\\\/&quot;\n            },\n            &quot;acf&quot;: {\n                &quot;vorname&quot;: &quot;Natasa&quot;,\n                &quot;nachname&quot;: &quot;Subaric&quot;,\n                &quot;phone_number&quot;: &quot;081 254 37 72&quot;,\n                &quot;email_address&quot;: &quot;subaric@ginesta.ch&quot;,\n                &quot;enable_single_page&quot;: false,\n                &quot;phone_number_international&quot;: &quot;+41 81 254 37 72&quot;,\n                &quot;quote&quot;: &quot;&quot;,\n                &quot;socials&quot;: false,\n                &quot;gewichtung&quot;: &quot;0&quot;,\n                &quot;move_to_front&quot;: false,\n                &quot;graduation&quot;: &quot;&quot;,\n                &quot;languages&quot;: &quot;&quot;,\n                &quot;job_title&quot;: &quot;\\u003Cdiv class=\\&quot;function\\&quot;\\u003EReal estate consultant and acquisition Graub\\u00fcnden\\u003C\\\/div\\u003E\\n&quot;,\n                &quot;location&quot;: [\n                    14573,\n                    14686\n                ],\n                &quot;ausbildung&quot;: &quot;Real estate marketer with a federal license. FA, real estate appraiser CAS&quot;,\n                &quot;e-mail_team&quot;: &quot;verkauf@ginesta.ch&quot;\n            },\n            &quot;posttype&quot;: &quot;kontaktpersonen&quot;,\n            &quot;image&quot;: {\n                &quot;id&quot;: 130114,\n                &quot;title&quot;: &quot;Portrait_Natasa_medium&quot;,\n                &quot;url&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Natasa_medium.jpg&quot;,\n                &quot;width&quot;: 2600,\n                &quot;height&quot;: 1733,\n                &quot;srcset&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Natasa_medium-768x512.jpg 768w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Natasa_medium-1536x1024.jpg 1536w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Natasa_medium-1600x1066.jpg 1600w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Natasa_medium-2048x1365.jpg 2048w&quot;,\n                &quot;sizes&quot;: &quot;(max-width:768px) 768px, (max-width:1536px) 1536px, (max-width:1600px) 1600px, (max-width:2048px) 2048px&quot;,\n                &quot;type&quot;: &quot;image\\\/jpeg&quot;\n            }\n        },\n        {\n            &quot;id&quot;: 5248,\n            &quot;title&quot;: &quot;Franco Giovanoli&quot;,\n            &quot;text&quot;: &quot;For the management of the St. Moritz office, we have the best man for the job on site, because as a native of St. Moritz, he not only has unbeatable local knowledge, but also the necessary local color and a broad regional, national and international network. His arrival back in the real estate world closes &amp;hellip; Read more&quot;,\n            &quot;category&quot;: &quot;&quot;,\n            &quot;tag&quot;: &quot;&quot;,\n            &quot;date&quot;: &quot;28.03.2024&quot;,\n            &quot;link&quot;: {\n                &quot;url&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/en\\\/team\\\/brokerage\\\/franco-giovanoli\\\/&quot;\n            },\n            &quot;acf&quot;: {\n                &quot;vorname&quot;: &quot;Franco&quot;,\n                &quot;nachname&quot;: &quot;Giovanoli&quot;,\n                &quot;ausbildung&quot;: &quot;&quot;,\n                &quot;phone_number&quot;: &quot;081 836 73 33&quot;,\n                &quot;email_address&quot;: &quot;giovanoli@ginesta.ch&quot;,\n                &quot;phone_number_international&quot;: &quot;+41 81 836 73 33&quot;,\n                &quot;quote&quot;: &quot;&quot;,\n                &quot;socials&quot;: false,\n                &quot;enable_single_page&quot;: true,\n                &quot;move_to_front&quot;: false,\n                &quot;gewichtung&quot;: &quot;0&quot;,\n                &quot;graduation&quot;: &quot;&quot;,\n                &quot;languages&quot;: &quot;&quot;,\n                &quot;job_title&quot;: &quot;\\u003Cp\\u003EHead of Marketing St. Moritz\\u003C\\\/p\\u003E\\n&quot;,\n                &quot;location&quot;: [\n                    14684\n                ],\n                &quot;e-mail_team&quot;: &quot;verkauf@ginesta.ch&quot;\n            },\n            &quot;posttype&quot;: &quot;kontaktpersonen&quot;,\n            &quot;image&quot;: {\n                &quot;id&quot;: 5001,\n                &quot;title&quot;: &quot;webseite-franco&quot;,\n                &quot;url&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/webseite-franco.png&quot;,\n                &quot;width&quot;: 1619,\n                &quot;height&quot;: 1076,\n                &quot;srcset&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/webseite-franco-768x510.png 768w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/webseite-franco-1536x1021.png 1536w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/webseite-franco-1600x1063.png 1600w&quot;,\n                &quot;sizes&quot;: &quot;(max-width:768px) 768px, (max-width:1536px) 1536px, (max-width:1600px) 1600px&quot;,\n                &quot;type&quot;: &quot;image\\\/png&quot;\n            }\n        },\n        {\n            &quot;id&quot;: 5255,\n            &quot;title&quot;: &quot;Stefan Schmid&quot;,\n            &quot;text&quot;: &quot;Stefan Schmid is Head of Acquisition for sales mandates and the internal point of contact and advice for our marketers on all issues relating to the sale of existing and new-build properties that require an expert assessment. As a jack-of-all-trades with 35 years of experience in the real estate sector, he has everything he needs &amp;hellip; Read more&quot;,\n            &quot;category&quot;: &quot;&quot;,\n            &quot;tag&quot;: &quot;&quot;,\n            &quot;date&quot;: &quot;10.10.2024&quot;,\n            &quot;link&quot;: {\n                &quot;url&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/en\\\/team\\\/akquisition-en\\\/stefan-schmid\\\/&quot;\n            },\n            &quot;acf&quot;: {\n                &quot;vorname&quot;: &quot;Stefan&quot;,\n                &quot;nachname&quot;: &quot;Schmid&quot;,\n                &quot;ausbildung&quot;: &quot;Education Notary at the University of Zurich&quot;,\n                &quot;email_address&quot;: &quot;schmid@ginesta.ch&quot;,\n                &quot;e-mail_team&quot;: &quot;verkauf@ginesta.ch&quot;,\n                &quot;phone_number_international&quot;: &quot;+41 44 910 77 33&quot;,\n                &quot;quote&quot;: &quot;&quot;,\n                &quot;socials&quot;: false,\n                &quot;phone_number&quot;: &quot; 044 910 77 33 \\\/ 081 836 73 35&quot;,\n                &quot;enable_single_page&quot;: true,\n                &quot;gewichtung&quot;: &quot;2&quot;,\n                &quot;move_to_front&quot;: false,\n                &quot;graduation&quot;: &quot;&quot;,\n                &quot;languages&quot;: &quot;&quot;,\n                &quot;job_title&quot;: &quot;\\u003Cp\\u003EHead of Acquisition\\u003C\\\/p\\u003E\\n&quot;,\n                &quot;location&quot;: [\n                    14571,\n                    14684\n                ]\n            },\n            &quot;posttype&quot;: &quot;kontaktpersonen&quot;,\n            &quot;image&quot;: {\n                &quot;id&quot;: 130172,\n                &quot;title&quot;: &quot;Portrait_Stefan_medium&quot;,\n                &quot;url&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Stefan_medium.jpg&quot;,\n                &quot;width&quot;: 2600,\n                &quot;height&quot;: 1733,\n                &quot;srcset&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Stefan_medium-768x512.jpg 768w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Stefan_medium-1536x1024.jpg 1536w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Stefan_medium-1600x1066.jpg 1600w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Stefan_medium-2048x1365.jpg 2048w&quot;,\n                &quot;sizes&quot;: &quot;(max-width:768px) 768px, (max-width:1536px) 1536px, (max-width:1600px) 1600px, (max-width:2048px) 2048px&quot;,\n                &quot;type&quot;: &quot;image\\\/jpeg&quot;\n            }\n        },\n        {\n            &quot;id&quot;: 5262,\n            &quot;title&quot;: &quot;Christine Zeder&quot;,\n            &quot;text&quot;: &quot;Since July 2023, the goal-oriented real estate specialist Christine Zeder has been managing the Ginesta office in Pf\\u00e4ffikon SZ with her many years of experience in the region. A stroke of luck for us, as she knows the extensive and diverse area from the left bank of Lake Zurich to March and Einsiedeln like the &amp;hellip; Read more&quot;,\n            &quot;category&quot;: &quot;&quot;,\n            &quot;tag&quot;: &quot;&quot;,\n            &quot;date&quot;: &quot;21.03.2024&quot;,\n            &quot;link&quot;: {\n                &quot;url&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/en\\\/team\\\/brokerage\\\/christine-zeder\\\/&quot;\n            },\n            &quot;acf&quot;: {\n                &quot;vorname&quot;: &quot;Christine&quot;,\n                &quot;nachname&quot;: &quot;Zeder&quot;,\n                &quot;phone_number&quot;: &quot;044 728 82 08&quot;,\n                &quot;email_address&quot;: &quot;zeder@ginesta.ch&quot;,\n                &quot;e-mail_team&quot;: &quot;verkauf@ginesta.ch&quot;,\n                &quot;phone_number_international&quot;: &quot;+41 44 728 82 08&quot;,\n                &quot;quote&quot;: &quot;&quot;,\n                &quot;socials&quot;: false,\n                &quot;enable_single_page&quot;: true,\n                &quot;move_to_front&quot;: false,\n                &quot;gewichtung&quot;: &quot;0&quot;,\n                &quot;graduation&quot;: &quot;&quot;,\n                &quot;languages&quot;: &quot;&quot;,\n                &quot;job_title&quot;: &quot;\\u003Cp\\u003EHead of Marketing Pf\\u00e4ffikon SZ\\u003C\\\/p\\u003E\\n&quot;,\n                &quot;location&quot;: [\n                    14569\n                ],\n                &quot;ausbildung&quot;: &quot;Real estate manager with a federal certificate. FA &quot;\n            },\n            &quot;posttype&quot;: &quot;kontaktpersonen&quot;,\n            &quot;image&quot;: {\n                &quot;id&quot;: 129990,\n                &quot;title&quot;: &quot;Portrait_Christine_medium&quot;,\n                &quot;url&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Christine_medium.jpg&quot;,\n                &quot;width&quot;: 2600,\n                &quot;height&quot;: 1733,\n                &quot;srcset&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Christine_medium-768x512.jpg 768w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Christine_medium-1536x1024.jpg 1536w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Christine_medium-1600x1066.jpg 1600w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Christine_medium-2048x1365.jpg 2048w&quot;,\n                &quot;sizes&quot;: &quot;(max-width:768px) 768px, (max-width:1536px) 1536px, (max-width:1600px) 1600px, (max-width:2048px) 2048px&quot;,\n                &quot;type&quot;: &quot;image\\\/jpeg&quot;\n            }\n        },\n        {\n            &quot;id&quot;: 5285,\n            &quot;title&quot;: &quot;Alex Niedermann&quot;,\n            &quot;text&quot;: &quot;Alex Niedermann is our Head of Brokerage Horgen &amp;amp; Head of Initial\\\/Reletting. Together with his team, he makes this expertise available to all Ginesta offices on an interdisciplinary basis and the team also takes on complete mandates throughout German-speaking Switzerland, particularly in the greater Zurich area. In his role, he advises clients and developers at &amp;hellip; Read more&quot;,\n            &quot;category&quot;: &quot;&quot;,\n            &quot;tag&quot;: &quot;&quot;,\n            &quot;date&quot;: &quot;17.09.2024&quot;,\n            &quot;link&quot;: {\n                &quot;url&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/en\\\/team\\\/brokerage\\\/alex-niedermann\\\/&quot;\n            },\n            &quot;acf&quot;: {\n                &quot;vorname&quot;: &quot;Alex&quot;,\n                &quot;nachname&quot;: &quot;Niedermann&quot;,\n                &quot;phone_number&quot;: &quot;044 991 13 24&quot;,\n                &quot;email_address&quot;: &quot;niedermann@ginesta.ch&quot;,\n                &quot;e-mail_team&quot;: &quot;verkauf@ginesta.ch&quot;,\n                &quot;phone_number_international&quot;: &quot;+41 44 991 13 24&quot;,\n                &quot;quote&quot;: &quot;&quot;,\n                &quot;socials&quot;: false,\n                &quot;enable_single_page&quot;: true,\n                &quot;gewichtung&quot;: &quot;0&quot;,\n                &quot;move_to_front&quot;: false,\n                &quot;graduation&quot;: &quot;&quot;,\n                &quot;languages&quot;: &quot;&quot;,\n                &quot;job_title&quot;: &quot;\\u003Cdiv class=\\&quot;function\\&quot;\\u003EHead of Marketing Horgen &amp;amp; Head of First\\\/Reletting\\u003C\\\/div\\u003E\\n&quot;,\n                &quot;location&quot;: [\n                    14575\n                ],\n                &quot;ausbildung&quot;: &quot;Real estate manager with a federal license FA &quot;\n            },\n            &quot;posttype&quot;: &quot;kontaktpersonen&quot;,\n            &quot;image&quot;: {\n                &quot;id&quot;: 129949,\n                &quot;title&quot;: &quot;Portrait_Alex_medium&quot;,\n                &quot;url&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Alex_medium.jpg&quot;,\n                &quot;width&quot;: 2600,\n                &quot;height&quot;: 1733,\n                &quot;srcset&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Alex_medium-768x512.jpg 768w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Alex_medium-1536x1024.jpg 1536w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Alex_medium-1600x1066.jpg 1600w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Alex_medium-2048x1365.jpg 2048w&quot;,\n                &quot;sizes&quot;: &quot;(max-width:768px) 768px, (max-width:1536px) 1536px, (max-width:1600px) 1600px, (max-width:2048px) 2048px&quot;,\n                &quot;type&quot;: &quot;image\\\/jpeg&quot;\n            }\n        },\n        {\n            &quot;id&quot;: 5290,\n            &quot;title&quot;: &quot;Katerina van der Laan&quot;,\n            &quot;text&quot;: &quot;Katerina van der Laan is a highly qualified and experienced employee in the Swiss real estate industry. As an expert in luxury real estate, she has extensive specialist knowledge and many years of experience. Her expertise in marketing and communication enables her to understand the real estate market precisely and to react appropriately to its &amp;hellip; Read more&quot;,\n            &quot;category&quot;: &quot;&quot;,\n            &quot;tag&quot;: &quot;&quot;,\n            &quot;date&quot;: &quot;18.06.2024&quot;,\n            &quot;link&quot;: {\n                &quot;url&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/en\\\/team\\\/brokerage\\\/katerina-van-der-laan\\\/&quot;\n            },\n            &quot;acf&quot;: {\n                &quot;vorname&quot;: &quot;Katerina&quot;,\n                &quot;nachname&quot;: &quot;van der Laan&quot;,\n                &quot;ausbildung&quot;: &quot;&quot;,\n                &quot;phone_number&quot;: &quot;044 914 17 13&quot;,\n                &quot;email_address&quot;: &quot;vanderlaan@ginesta.ch&quot;,\n                &quot;phone_number_international&quot;: &quot;+41 44 914 17 13&quot;,\n                &quot;quote&quot;: &quot;&quot;,\n                &quot;socials&quot;: false,\n                &quot;enable_single_page&quot;: true,\n                &quot;gewichtung&quot;: &quot;0&quot;,\n                &quot;move_to_front&quot;: false,\n                &quot;graduation&quot;: &quot;&quot;,\n                &quot;languages&quot;: &quot;&quot;,\n                &quot;e-mail_team&quot;: &quot;collection@ginesta.ch&quot;,\n                &quot;job_title&quot;: &quot;\\u003Cp\\u003EHead of Ginesta Collection\\u003C\\\/p\\u003E\\n&quot;,\n                &quot;location&quot;: [\n                    14577\n                ]\n            },\n            &quot;posttype&quot;: &quot;kontaktpersonen&quot;,\n            &quot;image&quot;: {\n                &quot;id&quot;: 130060,\n                &quot;title&quot;: &quot;Portrait_Katerina_medium&quot;,\n                &quot;url&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Katerina_medium.jpg&quot;,\n                &quot;width&quot;: 2600,\n                &quot;height&quot;: 1733,\n                &quot;srcset&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Katerina_medium-768x512.jpg 768w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Katerina_medium-1536x1024.jpg 1536w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Katerina_medium-1600x1066.jpg 1600w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Katerina_medium-2048x1365.jpg 2048w&quot;,\n                &quot;sizes&quot;: &quot;(max-width:768px) 768px, (max-width:1536px) 1536px, (max-width:1600px) 1600px, (max-width:2048px) 2048px&quot;,\n                &quot;type&quot;: &quot;image\\\/jpeg&quot;\n            }\n        },\n        {\n            &quot;id&quot;: 5299,\n            &quot;title&quot;: &quot;Laura Garcia Navarro&quot;,\n            &quot;text&quot;: &quot;&quot;,\n            &quot;category&quot;: &quot;&quot;,\n            &quot;tag&quot;: &quot;&quot;,\n            &quot;date&quot;: &quot;12.08.2024&quot;,\n            &quot;link&quot;: {\n                &quot;url&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/en\\\/team\\\/brokerage\\\/laura-garcia-navarro\\\/&quot;\n            },\n            &quot;acf&quot;: {\n                &quot;vorname&quot;: &quot;Laura&quot;,\n                &quot;nachname&quot;: &quot;Garcia Navarro&quot;,\n                &quot;phone_number&quot;: &quot;052 544 40 24&quot;,\n                &quot;email_address&quot;: &quot;garcia@ginesta.ch&quot;,\n                &quot;e-mail_team&quot;: &quot;verkauf@ginesta.ch&quot;,\n                &quot;enable_single_page&quot;: false,\n                &quot;phone_number_international&quot;: &quot;+41 52 544 40 24&quot;,\n                &quot;quote&quot;: &quot;&quot;,\n                &quot;socials&quot;: false,\n                &quot;gewichtung&quot;: &quot;0&quot;,\n                &quot;move_to_front&quot;: false,\n                &quot;graduation&quot;: &quot;&quot;,\n                &quot;languages&quot;: &quot;&quot;,\n                &quot;job_title&quot;: &quot;\\u003Cdiv class=\\&quot;function\\&quot;\\u003EHead of Marketing Winterthur\\u003C\\\/div\\u003E\\n&quot;,\n                &quot;location&quot;: [\n                    14567\n                ],\n                &quot;ausbildung&quot;: &quot;Real estate marketer with a federal license. FA &quot;\n            },\n            &quot;posttype&quot;: &quot;kontaktpersonen&quot;,\n            &quot;image&quot;: {\n                &quot;id&quot;: 130073,\n                &quot;title&quot;: &quot;Portrait_Laura_medium&quot;,\n                &quot;url&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Laura_medium.jpg&quot;,\n                &quot;width&quot;: 2600,\n                &quot;height&quot;: 1733,\n                &quot;srcset&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Laura_medium-768x512.jpg 768w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Laura_medium-1536x1024.jpg 1536w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Laura_medium-1600x1066.jpg 1600w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Laura_medium-2048x1365.jpg 2048w&quot;,\n                &quot;sizes&quot;: &quot;(max-width:768px) 768px, (max-width:1536px) 1536px, (max-width:1600px) 1600px, (max-width:2048px) 2048px&quot;,\n                &quot;type&quot;: &quot;image\\\/jpeg&quot;\n            }\n        },\n        {\n            &quot;id&quot;: 5307,\n            &quot;title&quot;: &quot;Martin Br\\u00fcngger&quot;,\n            &quot;text&quot;: &quot;&quot;,\n            &quot;category&quot;: &quot;&quot;,\n            &quot;tag&quot;: &quot;&quot;,\n            &quot;date&quot;: &quot;22.10.2024&quot;,\n            &quot;link&quot;: {\n                &quot;url&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/en\\\/team\\\/investment-property\\\/martin-bruengger\\\/&quot;\n            },\n            &quot;acf&quot;: {\n                &quot;vorname&quot;: &quot;Martin&quot;,\n                &quot;nachname&quot;: &quot;Br\\u00fcngger&quot;,\n                &quot;ausbildung&quot;: &quot;&quot;,\n                &quot;phone_number&quot;: &quot;044 914 10 63&quot;,\n                &quot;email_address&quot;: &quot;bruengger@ginesta.ch&quot;,\n                &quot;e-mail_team&quot;: &quot;verkauf@ginesta.ch&quot;,\n                &quot;enable_single_page&quot;: false,\n                &quot;phone_number_international&quot;: &quot;+41 44 914 10 63&quot;,\n                &quot;quote&quot;: &quot;&quot;,\n                &quot;socials&quot;: false,\n                &quot;gewichtung&quot;: &quot;0&quot;,\n                &quot;move_to_front&quot;: false,\n                &quot;graduation&quot;: &quot;&quot;,\n                &quot;languages&quot;: &quot;&quot;,\n                &quot;job_title&quot;: &quot;\\u003Cp\\u003EHead of Investment Real Estate\\u003C\\\/p\\u003E\\n&quot;,\n                &quot;location&quot;: [\n                    14577\n                ]\n            },\n            &quot;posttype&quot;: &quot;kontaktpersonen&quot;,\n            &quot;image&quot;: {\n                &quot;id&quot;: 130097,\n                &quot;title&quot;: &quot;Portrait_Martin_medium&quot;,\n                &quot;url&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Martin_medium.jpg&quot;,\n                &quot;width&quot;: 2600,\n                &quot;height&quot;: 1733,\n                &quot;srcset&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Martin_medium-768x512.jpg 768w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Martin_medium-1536x1024.jpg 1536w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Martin_medium-1600x1066.jpg 1600w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Martin_medium-2048x1365.jpg 2048w&quot;,\n                &quot;sizes&quot;: &quot;(max-width:768px) 768px, (max-width:1536px) 1536px, (max-width:1600px) 1600px, (max-width:2048px) 2048px&quot;,\n                &quot;type&quot;: &quot;image\\\/jpeg&quot;\n            }\n        },\n        {\n            &quot;id&quot;: 127577,\n            &quot;title&quot;: &quot;Martin Klement&quot;,\n            &quot;text&quot;: &quot;&quot;,\n            &quot;category&quot;: &quot;&quot;,\n            &quot;tag&quot;: &quot;&quot;,\n            &quot;date&quot;: &quot;15.01.2026&quot;,\n            &quot;link&quot;: {\n                &quot;url&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/en\\\/team\\\/akquisition-en\\\/martin-klement\\\/&quot;\n            },\n            &quot;acf&quot;: {\n                &quot;email_address&quot;: &quot;klement@ginesta.ch&quot;,\n                &quot;nachname&quot;: &quot;Klement&quot;,\n                &quot;socials&quot;: false,\n                &quot;vorname&quot;: &quot;Martin&quot;,\n                &quot;e-mail_team&quot;: &quot;verkauf@ginesta.ch&quot;,\n                &quot;job_title&quot;: &quot;\\u003Cp\\u003EReal Estate Consultant Acquisition &amp;amp; Marketing\\u003C\\\/p\\u003E\\n&quot;,\n                &quot;location&quot;: [\n                    14567\n                ],\n                &quot;move_to_front&quot;: false,\n                &quot;enable_single_page&quot;: false,\n                &quot;gewichtung&quot;: &quot;0&quot;,\n                &quot;ausbildung&quot;: &quot;&quot;,\n                &quot;phone_number&quot;: &quot;&quot;,\n                &quot;phone_number_international&quot;: &quot;&quot;,\n                &quot;quote&quot;: &quot;&quot;,\n                &quot;graduation&quot;: &quot;&quot;,\n                &quot;languages&quot;: &quot;&quot;\n            },\n            &quot;posttype&quot;: &quot;kontaktpersonen&quot;,\n            &quot;image&quot;: {\n                &quot;id&quot;: 130101,\n                &quot;title&quot;: &quot;Portrait_Martin_medium&quot;,\n                &quot;url&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Martin_medium-1.jpg&quot;,\n                &quot;width&quot;: 2600,\n                &quot;height&quot;: 1733,\n                &quot;srcset&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Martin_medium-1-768x512.jpg 768w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Martin_medium-1-1536x1024.jpg 1536w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Martin_medium-1-1600x1066.jpg 1600w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Martin_medium-1-2048x1365.jpg 2048w&quot;,\n                &quot;sizes&quot;: &quot;(max-width:768px) 768px, (max-width:1536px) 1536px, (max-width:1600px) 1600px, (max-width:2048px) 2048px&quot;,\n                &quot;type&quot;: &quot;image\\\/jpeg&quot;\n            }\n        },\n        {\n            &quot;id&quot;: 127579,\n            &quot;title&quot;: &quot;Karin Kl\\u00e4ui&quot;,\n            &quot;text&quot;: &quot;&quot;,\n            &quot;category&quot;: &quot;&quot;,\n            &quot;tag&quot;: &quot;&quot;,\n            &quot;date&quot;: &quot;12.03.2026&quot;,\n            &quot;link&quot;: {\n                &quot;url&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/en\\\/team\\\/brokerage\\\/karin-klaui\\\/&quot;\n            },\n            &quot;acf&quot;: {\n                &quot;email_address&quot;: &quot;klaeui@ginesta.ch&quot;,\n                &quot;nachname&quot;: &quot;Kl\\u00e4ui&quot;,\n                &quot;socials&quot;: false,\n                &quot;vorname&quot;: &quot;Karin&quot;,\n                &quot;e-mail_team&quot;: &quot;verkauf@ginesta.ch&quot;,\n                &quot;job_title&quot;: &quot;\\u003Cp\\u003EHead of Marketing K\\u00fcsnacht\\u003C\\\/p\\u003E\\n&quot;,\n                &quot;location&quot;: [\n                    14571\n                ],\n                &quot;ausbildung&quot;: &quot;Real estate marketer with a federal license. FA &quot;,\n                &quot;move_to_front&quot;: false,\n                &quot;enable_single_page&quot;: false,\n                &quot;gewichtung&quot;: &quot;0&quot;,\n                &quot;phone_number&quot;: &quot;&quot;,\n                &quot;phone_number_international&quot;: &quot;&quot;,\n                &quot;quote&quot;: &quot;&quot;,\n                &quot;graduation&quot;: &quot;&quot;,\n                &quot;languages&quot;: &quot;&quot;\n            },\n            &quot;posttype&quot;: &quot;kontaktpersonen&quot;,\n            &quot;image&quot;: {\n                &quot;id&quot;: 130056,\n                &quot;title&quot;: &quot;Portrait_Karin_medium&quot;,\n                &quot;url&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Karin_medium.jpg&quot;,\n                &quot;width&quot;: 2600,\n                &quot;height&quot;: 1733,\n                &quot;srcset&quot;: &quot;https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Karin_medium-768x512.jpg 768w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Karin_medium-1536x1024.jpg 1536w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Karin_medium-1600x1066.jpg 1600w, https:\\\/\\\/www.ginesta.ch\\\/wp-content\\\/uploads\\\/Portrait_Karin_medium-2048x1365.jpg 2048w&quot;,\n                &quot;sizes&quot;: &quot;(max-width:768px) 768px, (max-width:1536px) 1536px, (max-width:1600px) 1600px, (max-width:2048px) 2048px&quot;,\n                &quot;type&quot;: &quot;image\\\/jpeg&quot;\n            }\n        }\n    ],\n    &quot;modalId&quot;: [],\n    &quot;modalButtonText&quot;: &quot;Zum Kontaktformular&quot;,\n    &quot;showProfileModal&quot;: false,\n    &quot;isKnightFrankTemplate&quot;: false\n}\"><\/div>\n<\/div>\n<\/div>\n\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Personal sales advice You would like to have your property professionally valued or consider a sale. Let us know your concerns. We will take time for your project and advise you personally, free of charge and without obligation. Your direct contact for a well-founded property valuation and sale Our experts will be happy to provide &hellip; <a href=\"https:\/\/www.ginesta.ch\/en\/sales-process\/real-estate-sales\/personal-sales-advice\/\">Read more<\/a><\/p>\n","protected":false},"author":22,"featured_media":0,"parent":120110,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-121914","page","type-page","status-publish","hentry"],"acf":[],"featured_image_data":null,"featured_image_url":false,"_links":{"self":[{"href":"https:\/\/www.ginesta.ch\/en\/wp-json\/wp\/v2\/pages\/121914","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ginesta.ch\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.ginesta.ch\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.ginesta.ch\/en\/wp-json\/wp\/v2\/users\/22"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ginesta.ch\/en\/wp-json\/wp\/v2\/comments?post=121914"}],"version-history":[{"count":5,"href":"https:\/\/www.ginesta.ch\/en\/wp-json\/wp\/v2\/pages\/121914\/revisions"}],"predecessor-version":[{"id":129386,"href":"https:\/\/www.ginesta.ch\/en\/wp-json\/wp\/v2\/pages\/121914\/revisions\/129386"}],"up":[{"embeddable":true,"href":"https:\/\/www.ginesta.ch\/en\/wp-json\/wp\/v2\/pages\/120110"}],"wp:attachment":[{"href":"https:\/\/www.ginesta.ch\/en\/wp-json\/wp\/v2\/media?parent=121914"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}