{"id":7,"date":"2024-03-17T21:16:59","date_gmt":"2024-03-17T21:16:59","guid":{"rendered":"https:\/\/ex.plo.re\/2808woceanfrontnewportbeach\/?page_id=7"},"modified":"2026-07-08T10:14:22","modified_gmt":"2026-07-08T17:14:22","slug":"test-page","status":"publish","type":"page","link":"https:\/\/ex.plo.re\/oceanfront1br\/","title":{"rendered":"Home"},"content":{"rendered":"<div id=\"cs-content\" class=\"cs-content\"><div class=\"x-section e7-e1 m7-0 m7-1 m7-2 m7-3 m7-4 m7-5 section1content\" style=\"--tco-dc7-1:#002347;\"><div class=\"x-row e7-e2 m7-k m7-l m7-m m7-n m7-o m7-p m7-q m7-r m7-s m7-18 m7-19\"><div class=\"x-row-inner\"><div class=\"x-col e7-e3 m7-20 m7-21 m7-22 m7-23\"><div class=\"x-div e7-e4 m7-2i m7-2j m7-2k m7-2l m7-2m m7-2n m7-2o\"><div class=\"x-row x-container max width e7-e5 m7-k m7-l m7-m m7-n m7-p m7-q m7-t m7-u m7-18 m7-1a\"><div class=\"x-row-inner\"><div class=\"x-col e7-e6 m7-21 m7-22 m7-23 m7-24 m7-25 m7-26 m7-27 glass fadeup1\" id=\"homeform\"><div id=\"welcome\" class=\"x-text x-text-headline e7-e11 m7-6n m7-6o m7-6p m7-6q m7-6r m7-6s m7-6t m7-6u m7-6v m7-6w m7-6x m7-6y headingfont\"><div class=\"x-text-content\"><div class=\"x-text-content-text\"><h1 class=\"x-text-content-text-primary\">Oceanfront One Bedroom Rental<\/h1>\n<\/div><\/div><\/div><div class=\"x-text x-content e7-e14 m7-8j m7-8k m7-8l m7-8m m7-8n m7-8o m7-8p m7-8q bodyfont\">Enjoy oceanfront comfort between the Balboa Peninsula, The Wedge, and Newport Beach Peninsula. Request your ideal stay for $500.night<\/div><div class=\"x-form-integration x-form-integration-gravity-forms e7-e17 m7-9o fadeup2\"><script>\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tthemeScriptsLoaded: false,\n\t\tisFormEditor: () => typeof InitializeEditor === 'function',\n\n\t\t\/**\n\t\t * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.\n\t\t * @remove-in 4.0 this function will not check for gform.isFormEditor().\n\t\t *\/\n\t\tcallIfLoaded: function ( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {\n\t\t\t\tif ( gform.isFormEditor() ) {\n\t\t\t\t\tconsole.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );\n\t\t\t\t}\n\t\t\t\tfn();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\n\t\t\/**\n\t\t * Call a function when all scripts are loaded\n\t\t *\n\t\t * @param function fn the callback function to call when all scripts are loaded\n\t\t *\n\t\t * @returns void\n\t\t *\/\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( ! gform.callIfLoaded( fn ) ) {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t}\n\t\t},\n\n\t\thooks: { action: {}, filter: {} },\n\t\taddAction: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'action', action, callable, priority, tag );\n\t\t},\n\t\taddFilter: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'filter', action, callable, priority, tag );\n\t\t},\n\t\tdoAction: function( action ) {\n\t\t\tgform.doHook( 'action', action, arguments );\n\t\t},\n\t\tapplyFilters: function( action ) {\n\t\t\treturn gform.doHook( 'filter', action, arguments );\n\t\t},\n\t\tremoveAction: function( action, tag ) {\n\t\t\tgform.removeHook( 'action', action, tag );\n\t\t},\n\t\tremoveFilter: function( action, priority, tag ) {\n\t\t\tgform.removeHook( 'filter', action, priority, tag );\n\t\t},\n\t\taddHook: function( hookType, action, callable, priority, tag ) {\n\t\t\tif ( undefined == gform.hooks[hookType][action] ) {\n\t\t\t\tgform.hooks[hookType][action] = [];\n\t\t\t}\n\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\tif ( undefined == tag ) {\n\t\t\t\ttag = action + '_' + hooks.length;\n\t\t\t}\n\t\t\tif( priority == undefined ){\n\t\t\t\tpriority = 10;\n\t\t\t}\n\n\t\t\tgform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );\n\t\t},\n\t\tdoHook: function( hookType, action, args ) {\n\n\t\t\t\/\/ splice args from object into array and remove first index which is the hook name\n\t\t\targs = Array.prototype.slice.call(args, 1);\n\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action], hook;\n\t\t\t\t\/\/sort by priority\n\t\t\t\thooks.sort(function(a,b){return a[\"priority\"]-b[\"priority\"]});\n\n\t\t\t\thooks.forEach( function( hookItem ) {\n\t\t\t\t\thook = hookItem.callable;\n\n\t\t\t\t\tif(typeof hook != 'function')\n\t\t\t\t\t\thook = window[hook];\n\t\t\t\t\tif ( 'action' == hookType ) {\n\t\t\t\t\t\thook.apply(null, args);\n\t\t\t\t\t} else {\n\t\t\t\t\t\targs[0] = hook.apply(null, args);\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( 'filter'==hookType ) {\n\t\t\t\treturn args[0];\n\t\t\t}\n\t\t},\n\t\tremoveHook: function( hookType, action, priority, tag ) {\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\t\thooks = hooks.filter( function(hook, index, arr) {\n\t\t\t\t\tvar removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);\n\t\t\t\t\treturn !removeHook;\n\t\t\t\t} );\n\t\t\t\tgform.hooks[hookType][action] = hooks;\n\t\t\t}\n\t\t}\n\t};\n}\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gform-theme gform-theme--foundation gform-theme--framework gform-theme--orbital' data-form-theme='orbital' data-form-index='0' id='gform_wrapper_2' ><style>#gform_wrapper_2[data-form-index=\"0\"].gform-theme,[data-parent-form=\"2_0\"]{--gf-color-primary: #204ce5;--gf-color-primary-rgb: 32, 76, 229;--gf-color-primary-contrast: #fff;--gf-color-primary-contrast-rgb: 255, 255, 255;--gf-color-primary-darker: #001AB3;--gf-color-primary-lighter: #527EFF;--gf-color-secondary: #fff;--gf-color-secondary-rgb: 255, 255, 255;--gf-color-secondary-contrast: #112337;--gf-color-secondary-contrast-rgb: 17, 35, 55;--gf-color-secondary-darker: #F5F5F5;--gf-color-secondary-lighter: #FFFFFF;--gf-color-out-ctrl-light: rgba(17, 35, 55, 0.1);--gf-color-out-ctrl-light-rgb: 17, 35, 55;--gf-color-out-ctrl-light-darker: rgba(104, 110, 119, 0.35);--gf-color-out-ctrl-light-lighter: #F5F5F5;--gf-color-out-ctrl-dark: #585e6a;--gf-color-out-ctrl-dark-rgb: 88, 94, 106;--gf-color-out-ctrl-dark-darker: #112337;--gf-color-out-ctrl-dark-lighter: rgba(17, 35, 55, 0.65);--gf-color-in-ctrl: #fff;--gf-color-in-ctrl-rgb: 255, 255, 255;--gf-color-in-ctrl-contrast: #112337;--gf-color-in-ctrl-contrast-rgb: 17, 35, 55;--gf-color-in-ctrl-darker: #F5F5F5;--gf-color-in-ctrl-lighter: #FFFFFF;--gf-color-in-ctrl-primary: #204ce5;--gf-color-in-ctrl-primary-rgb: 32, 76, 229;--gf-color-in-ctrl-primary-contrast: #fff;--gf-color-in-ctrl-primary-contrast-rgb: 255, 255, 255;--gf-color-in-ctrl-primary-darker: #001AB3;--gf-color-in-ctrl-primary-lighter: #527EFF;--gf-color-in-ctrl-light: rgba(17, 35, 55, 0.1);--gf-color-in-ctrl-light-rgb: 17, 35, 55;--gf-color-in-ctrl-light-darker: rgba(104, 110, 119, 0.35);--gf-color-in-ctrl-light-lighter: #F5F5F5;--gf-color-in-ctrl-dark: #585e6a;--gf-color-in-ctrl-dark-rgb: 88, 94, 106;--gf-color-in-ctrl-dark-darker: #112337;--gf-color-in-ctrl-dark-lighter: rgba(17, 35, 55, 0.65);--gf-radius: 3px;--gf-font-size-secondary: 14px;--gf-font-size-tertiary: 13px;--gf-icon-ctrl-number: url(\"data:image\/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 0C4.26522 5.96046e-08 4.51957 0.105357 4.70711 0.292893L7.70711 3.29289C8.09763 3.68342 8.09763 4.31658 7.70711 4.70711C7.31658 5.09763 6.68342 5.09763 6.29289 4.70711L4 2.41421L1.70711 4.70711C1.31658 5.09763 0.683417 5.09763 0.292893 4.70711C-0.0976311 4.31658 -0.097631 3.68342 0.292893 3.29289L3.29289 0.292893C3.48043 0.105357 3.73478 0 4 0ZM0.292893 9.29289C0.683417 8.90237 1.31658 8.90237 1.70711 9.29289L4 11.5858L6.29289 9.29289C6.68342 8.90237 7.31658 8.90237 7.70711 9.29289C8.09763 9.68342 8.09763 10.3166 7.70711 10.7071L4.70711 13.7071C4.31658 14.0976 3.68342 14.0976 3.29289 13.7071L0.292893 10.7071C-0.0976311 10.3166 -0.0976311 9.68342 0.292893 9.29289Z' fill='rgba(17, 35, 55, 0.65)'\/%3E%3C\/svg%3E\");--gf-icon-ctrl-select: url(\"data:image\/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.292893 0.292893C0.683417 -0.097631 1.31658 -0.097631 1.70711 0.292893L5 3.58579L8.29289 0.292893C8.68342 -0.0976311 9.31658 -0.0976311 9.70711 0.292893C10.0976 0.683417 10.0976 1.31658 9.70711 1.70711L5.70711 5.70711C5.31658 6.09763 4.68342 6.09763 4.29289 5.70711L0.292893 1.70711C-0.0976311 1.31658 -0.0976311 0.683418 0.292893 0.292893Z' fill='rgba(17, 35, 55, 0.65)'\/%3E%3C\/svg%3E\");--gf-icon-ctrl-search: url(\"data:image\/svg+xml,%3Csvg width='640' height='640' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath d='M256 128c-70.692 0-128 57.308-128 128 0 70.691 57.308 128 128 128 70.691 0 128-57.309 128-128 0-70.692-57.309-128-128-128zM64 256c0-106.039 85.961-192 192-192s192 85.961 192 192c0 41.466-13.146 79.863-35.498 111.248l154.125 154.125c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0L367.248 412.502C335.862 434.854 297.467 448 256 448c-106.039 0-192-85.962-192-192z' fill='rgba(17, 35, 55, 0.65)'\/%3E%3C\/svg%3E\");--gf-label-space-y-secondary: var(--gf-label-space-y-md-secondary);--gf-ctrl-border-color: #686e77;--gf-ctrl-size: var(--gf-ctrl-size-md);--gf-ctrl-label-color-primary: #112337;--gf-ctrl-label-color-secondary: #112337;--gf-ctrl-choice-size: var(--gf-ctrl-choice-size-md);--gf-ctrl-checkbox-check-size: var(--gf-ctrl-checkbox-check-size-md);--gf-ctrl-radio-check-size: var(--gf-ctrl-radio-check-size-md);--gf-ctrl-btn-font-size: var(--gf-ctrl-btn-font-size-md);--gf-ctrl-btn-padding-x: var(--gf-ctrl-btn-padding-x-md);--gf-ctrl-btn-size: var(--gf-ctrl-btn-size-md);--gf-ctrl-btn-border-color-secondary: #686e77;--gf-ctrl-file-btn-bg-color-hover: #EBEBEB;--gf-field-img-choice-size: var(--gf-field-img-choice-size-md);--gf-field-img-choice-card-space: var(--gf-field-img-choice-card-space-md);--gf-field-img-choice-check-ind-size: var(--gf-field-img-choice-check-ind-size-md);--gf-field-img-choice-check-ind-icon-size: var(--gf-field-img-choice-check-ind-icon-size-md);--gf-field-pg-steps-number-color: rgba(17, 35, 55, 0.8);}<\/style>\n                        <div class='gform_heading'>\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' target='gform_ajax_frame_2' id='gform_2'  action='\/oceanfront1br\/wp-json\/wp\/v2\/pages\/7' data-formid='2' novalidate>\n        <div id='gf_progressbar_wrapper_2' class='gf_progressbar_wrapper' data-start-at-zero=''>\n        \t<p class=\"gf_progressbar_title\">Step <span class='gf_step_current_page'>1<\/span> of <span class='gf_step_page_count'>2<\/span><span class='gf_step_page_name'><\/span>\n        \t<\/p>\n            <div class='gf_progressbar gf_progressbar_blue' aria-hidden='true'>\n                <div class='gf_progressbar_percentage percentbar_blue percentbar_50' style='width:50%;'><span>50%<\/span><\/div>\n            <\/div><\/div>\n                        <div class='gform-body gform_body'><div id='gform_page_2_1' class='gform_page ' data-js='page-field-id-0' >\n\t\t\t\t\t<div class='gform_page_fields'><div id='gform_fields_2' class='gform_fields top_label form_sublabel_above description_above validation_below'><div id=\"field_2_17\" class=\"gfield gfield--type-honeypot gform_validation_container field_sublabel_above gfield--has-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_2_17'>URL<\/label><div class='gfield_description' id='gfield_description_2_17'>This field is for validation purposes and should be left unchanged.<\/div><div class='ginput_container'><input name='input_17' id='input_2_17' type='text' value='' autocomplete='new-password'\/><\/div><\/div><div id=\"field_2_14\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_2_14'>Your Ideal Dates:<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_14' id='input_2_14' type='text' value='' class='large'   tabindex='585690'  aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                         <input type='button' id='gform_next_button_2_12' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' value='Next' tabindex='585691' \/> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_2_2' class='gform_page' data-js='page-field-id-12' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_2_2' class='gform_fields top_label form_sublabel_above description_above validation_below'><div id=\"field_2_5\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-third gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_2_5'>Your Name<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_5' id='input_2_5' type='text' value='' class='large'   tabindex='585692'  aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_2_6\" class=\"gfield gfield--type-phone gfield--input-type-phone gfield--width-third gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_2_6'>Callback Phone #<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_phone'><input name='input_6' id='input_2_6' type='tel' value='' class='large' tabindex='585693'  aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_2_16\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-third field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_2_16'>Email (Optional)<\/label><div class='ginput_container ginput_container_text'><input name='input_16' id='input_2_16' type='text' value='' class='large'   tabindex='585694'   aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_2_8\" class=\"gfield gfield--type-hidden gfield--input-type-hidden gfield--width-full gform_hidden field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><div class='ginput_container ginput_container_text'><input name='input_8' id='input_2_8' type='hidden' class='gform_hidden'  aria-invalid=\"false\" value='{{ global.home_url }}' \/><\/div><\/div><div id=\"field_2_15\" class=\"gfield gfield--type-hidden gfield--input-type-hidden gfield--width-full gform_hidden field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><div class='ginput_container ginput_container_text'><input name='input_15' id='input_2_15' type='hidden' class='gform_hidden'  aria-invalid=\"false\" value='' \/><\/div><\/div><div id=\"field_2_7\" class=\"gfield gfield--type-hidden gfield--input-type-hidden gfield--width-full gform_hidden field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><div class='ginput_container ginput_container_text'><input name='input_7' id='input_2_7' type='hidden' class='gform_hidden'  aria-invalid=\"false\" value='' \/><\/div><\/div><\/div><\/div>\n        <div class='gform-page-footer gform_page_footer top_label'><input type='submit' id='gform_previous_button_2' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' value='Previous' tabindex='585695' \/> <input type='submit' id='gform_submit_button_2' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Submit Your Request' tabindex='585696' \/> <input type='hidden' name='gform_ajax' value='form_id=2&amp;title=&amp;description=&amp;tabindex=585690&amp;theme=orbital&amp;styles=[]&amp;hash=cebc943849a0c823848b7a7ea0ecde54' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_2' value='iframe' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_2' id='gform_theme_2' value='orbital' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_2' id='gform_style_settings_2' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_2' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='2' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_2' value='WyJbXSIsIjIxY2IzMjA1YWE3NzY0ZmE5Y2NmMmY1MWNkOGU3NDFkIl0=' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_2' id='gform_target_page_number_2' value='2' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_2' id='gform_source_page_number_2' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n             <\/div><\/div>\n                        <\/form>\n                        <\/div>\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:\/\/ex.plo.re\/oceanfront1br\/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 *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_2').val();gformInitSpinner( 2, 'https:\/\/ex.plo.re\/oceanfront1br\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', false );jQuery(document).trigger('gform_page_loaded', [2, current_page]);window['gf_submitting_2'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_2').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [2]);window['gf_submitting_2'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_2').text());}else{jQuery('#gform_2').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"2\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_2\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_2\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_2\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 2, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} );\n<\/script>\n<\/div><\/div><\/div><\/div><\/div><div class=\"x-div e7-e24 m7-2i m7-2k m7-2l m7-2m m7-2n m7-2o m7-31 m7-34 m7-35 m7-36 m7-37 m7-38\" style=\"--tco-dc7-1h:url(https:\/\/ex.plo.re\/oceanfront1br\/wp-content\/uploads\/sites\/924\/2026\/07\/f0a3dd5b-d982-4dcd-b58e-0e6f3dc73b2e.avif);\"><div class=\"x-div e7-e25 m7-2i m7-2k m7-2l m7-2m m7-2n m7-2o m7-31 m7-36 m7-39 m7-3a semitransparentdiv\"><\/div><div class=\"x-div e7-e26 m7-2i m7-2k m7-2l m7-2m m7-2n m7-2o m7-37 m7-3b m7-3c m7-3d m7-3e m7-3f m7-3g\"><div class=\"x-div e7-e27 m7-2i m7-2k m7-2l m7-2m m7-2n m7-2o m7-31 m7-3b m7-3c m7-3e m7-3h\"><div class=\"x-slide-container-viewport is-loading e7-e28 m7-9p m7-9q\" data-x-slide-container=\"{&quot;keyboardNavigation&quot;:true,&quot;autoplayStartInView&quot;:true,&quot;snap&quot;:true,&quot;wrapAround&quot;:true,&quot;direction&quot;:&quot;forward&quot;,&quot;startingSlide&quot;:1,&quot;autoplay&quot;:&quot;interval&quot;}\"><div class=\"x-slide-container-content\"><div class=\"x-slide-container is-inline is-paged\"><div class=\"x-slide e7-e29 m7-9u m7-9v m7-9w\" data-x-slide=\"\" style=\"--tco-dc7-1i:url(https:\/\/ex.plo.re\/oceanfront1br\/wp-content\/uploads\/sites\/924\/2026\/07\/f0a3dd5b-d982-4dcd-b58e-0e6f3dc73b2e.avif);\"><div class=\"x-bg\" aria-hidden=\"true\"><div class=\"x-bg-layer-lower-image\"><\/div><\/div><\/div><div class=\"x-slide e7-e29 m7-9u m7-9v m7-9w\" data-x-slide=\"\" style=\"--tco-dc7-1i:url(https:\/\/ex.plo.re\/oceanfront1br\/wp-content\/uploads\/sites\/924\/2026\/07\/767b0433-8ba9-4011-9d18-9bb83adb6683.avif);\"><div class=\"x-bg\" aria-hidden=\"true\"><div class=\"x-bg-layer-lower-image\"><\/div><\/div><\/div><div class=\"x-slide e7-e29 m7-9u m7-9v m7-9w\" data-x-slide=\"\" style=\"--tco-dc7-1i:url(https:\/\/ex.plo.re\/oceanfront1br\/wp-content\/uploads\/sites\/924\/2026\/07\/6831ff38-9bcd-4ac8-a795-67aa08067f77.avif);\"><div class=\"x-bg\" aria-hidden=\"true\"><div class=\"x-bg-layer-lower-image\"><\/div><\/div><\/div><div class=\"x-slide e7-e29 m7-9u m7-9v m7-9w\" data-x-slide=\"\" style=\"--tco-dc7-1i:url(https:\/\/ex.plo.re\/oceanfront1br\/wp-content\/uploads\/sites\/924\/2026\/07\/5732e12a-e0db-4e9d-a184-e981b4bb883f.avif);\"><div class=\"x-bg\" aria-hidden=\"true\"><div class=\"x-bg-layer-lower-image\"><\/div><\/div><\/div><div class=\"x-slide e7-e29 m7-9u m7-9v m7-9w\" data-x-slide=\"\" style=\"--tco-dc7-1i:url(https:\/\/ex.plo.re\/oceanfront1br\/wp-content\/uploads\/sites\/924\/2026\/07\/0ba2fa96-12d5-4b22-8316-eef66d1840e1.avif);\"><div class=\"x-bg\" aria-hidden=\"true\"><div class=\"x-bg-layer-lower-image\"><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"x-section e7-e36 m7-1 m7-5 m7-6 aboutus gradienttop\" id=\"section2\"><span class=\"x-separator-top-angle-in\" style=\"top: 0px; height: 50px; color: rgb(255, 255, 255);\" aria-hidden=\"true\"><svg class=\"angle-top-in\" style=\"fill: currentColor;\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" version=\"1.1\" viewBox=\"0 0 100 100\" preserveAspectRatio=\"none\"><polygon points=\"0,100 100,100 0,0\"\/><polygon points=\"100,100 100,100 100,0\"\/><\/svg><\/span><div class=\"x-row x-container max width e7-e40 m7-k m7-l m7-m m7-w m7-x m7-y m7-z m7-10 m7-11 m7-1b m7-1d boxshadow fade-up\" id=\"about\"><div class=\"x-row-inner\"><div class=\"x-col e7-e41 m7-21 m7-22 m7-23 m7-24 m7-27 m7-28 m7-29 m7-2a m7-2b\"><span class=\"x-image e7-e44 m7-ak m7-al m7-am m7-an\"><img decoding=\"async\" src=\"https:\/\/ex.plo.re\/oceanfront1br\/wp-content\/uploads\/sites\/924\/2026\/07\/02ac51ea-7316-4eba-9ec1-a9f6df525ab1.avif\" alt=\"about yacht brokerage\"><\/span><\/div><div class=\"x-col e7-e45 m7-21 m7-22 m7-23 m7-28\"><div style=\"--tco-dc7-2c:#ededed;--tco-dc7-2e:#ededed;\" class=\"x-text x-text-headline e7-e51 m7-6n m7-6o m7-6s m7-6t m7-6w m7-6x m7-6y m7-6z m7-70 m7-71 m7-72 m7-73 headingfont\"><div class=\"x-text-content\"><div class=\"x-text-content-text\">\n<h2 class=\"x-text-content-text-primary\">1504 W Oceanfront, Newport Beach\n\n<\/h2><\/div><\/div><\/div><hr class=\"x-line e7-e52 m7-au m7-av\" style=\"--tco-dc7-2g:#002347;\"\/><div style=\"--tco-dc7-2m:#e2e2e2;--tco-dc7-2o:#e2e2e2;\" class=\"x-text x-content e7-e55 m7-8j m7-8k m7-8o m7-8p m7-8u m7-8v m7-8w m7-8x bodyfont\">Fully furnished 1 Bedroom on the sand in coveted Newport Beach. Short term rentals available beginning at $500.night <\/div><a class=\"x-anchor x-anchor-button has-graphic e7-e56 m7-52 m7-55 m7-57 m7-5a m7-5g m7-5j m7-5k m7-5m m7-5n m7-5o m7-5r m7-5x m7-5y m7-5z m7-60 m7-61 m7-f m7-g pulse bodyfont\" tabindex=\"0\" style=\"--tco-dc7-2r:#002347;--tco-dc7-2u:#c29b40;\" href=\"https:\/\/ex.plo.re\/oceanfront1br\/#contact\" data-x-effect=\"{&quot;durationBase&quot;:&quot;300ms&quot;}\"><div class=\"x-anchor-content\"><span class=\"x-graphic\" aria-hidden=\"true\"><span data-x-single-anim=\"x-flip-x\" class=\"x-icon x-graphic-child x-graphic-icon x-graphic-primary\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\"><!--! Font Awesome Pro 7.3.1 by @fontawesome - https:\/\/fontawesome.com License - https:\/\/fontawesome.com\/license (Commercial License) Copyright 2026 Fonticons, Inc. --><path fill=\"currentColor\" d=\"M507.3 267.3c6.2-6.2 6.2-16.4 0-22.6l-176-176c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L457.4 240 16 240c-8.8 0-16 7.2-16 16s7.2 16 16 16l441.4 0-148.7 148.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l176-176z\"\/><\/svg><\/span><\/span><div class=\"x-anchor-text\"><span class=\"x-anchor-text-primary\">Contact<\/span><\/div><\/div><\/a><\/div><\/div><\/div><div class=\"x-row e7-e74 m7-k m7-l m7-m m7-n m7-o m7-p m7-z m7-14 m7-1f fade-up\" id=\"tiles\"><div class=\"x-row-inner\"><div class=\"x-col e7-e75 m7-21 m7-23 m7-24 m7-27 m7-28 m7-29 m7-2a m7-2d m7-2e\"><a class=\"x-image e7-e78 m7-ak m7-al m7-ao m7-ap\" href=\"#contact\"><img decoding=\"async\" src=\"https:\/\/ex.plo.re\/oceanfront1br\/wp-content\/uploads\/sites\/924\/2026\/06\/IMG_1647.jpg\" width=\"1573\" height=\"1051\" alt=\"Image\"><\/a><div class=\"x-div e7-e79 m7-2i m7-2k m7-2l m7-2m m7-2o m7-31 m7-32 m7-37 m7-39 m7-3b m7-3c m7-3d m7-3i m7-3y m7-3z m7-40\" id=\"t\" style=\"--tco-dc7-3v:#002347;\"><div class=\"x-text x-text-headline e7-e80 m7-6o m7-6x m7-6y m7-6z m7-71 m7-77 m7-78 m7-79 m7-7a m7-7b m7-7c headingfont\"><div class=\"x-text-content\"><div class=\"x-text-content-text\"><h2 class=\"x-text-content-text-primary\">Oceanfront 1-Bedroom Rental<\/h2>\n<\/div><\/div><\/div><div id=\"b\" class=\"x-text x-content e7-e81 m7-8j m7-8k m7-8n m7-8o m7-8p m7-8t m7-8v m7-8w m7-8z m7-90 m7-91 bodyfont\">On the sand!<\/div><div class=\"x-div e7-e82 m7-2i m7-2k m7-2l m7-2m m7-2n m7-2o m7-31 m7-3b m7-3c m7-3d m7-3i\"><a class=\"x-anchor x-anchor-button has-graphic e7-e83 m7-52 m7-55 m7-57 m7-58 m7-5a m7-5g m7-5h m7-5j m7-5k m7-5m m7-5n m7-5r m7-5s m7-65 m7-f m7-g bodyfont\" tabindex=\"0\" style=\"--tco-dc7-3w:#c29b40;--tco-dc7-3z:#002347;--tco-dc7-41:#002347;--tco-dc7-44:#002347;--tco-dc7-46:#002347;--tco-dc7-47:#002347;--tco-dc7-49:#c29b40;--tco-dc7-4c:#002347;--tco-dc7-4e:#002347;--tco-dc7-4h:#002347;--tco-dc7-4j:#002347;--tco-dc7-4k:#002347;--tco-dc7-4m:#c29b40;--tco-dc7-4p:#002347;--tco-dc7-4r:#002347;--tco-dc7-4u:#002347;--tco-dc7-4w:#002347;--tco-dc7-4x:#002347;\" href=\"#contact\" data-x-effect=\"{&quot;durationBase&quot;:&quot;300ms&quot;}\"><div class=\"x-anchor-content\"><span class=\"x-graphic\" aria-hidden=\"true\"><span data-x-single-anim=\"x-scale-up\" class=\"x-icon x-graphic-child x-graphic-icon x-graphic-primary\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\"><!--! Font Awesome Pro 7.3.1 by @fontawesome - https:\/\/fontawesome.com License - https:\/\/fontawesome.com\/license (Commercial License) Copyright 2026 Fonticons, Inc. --><path fill=\"currentColor\" d=\"M507.3 267.3c6.2-6.2 6.2-16.4 0-22.6l-176-176c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L457.4 240 16 240c-8.8 0-16 7.2-16 16s7.2 16 16 16l441.4 0-148.7 148.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l176-176z\"\/><\/svg><\/span><\/span><div class=\"x-anchor-text\"><span class=\"x-anchor-text-primary\">Book Your Dates<\/span><\/div><\/div><\/a><\/div><\/div><\/div><div class=\"x-col e7-e75 m7-21 m7-23 m7-24 m7-27 m7-28 m7-29 m7-2a m7-2d m7-2e\"><a class=\"x-image e7-e78 m7-ak m7-al m7-ao m7-ap\" href=\"#contact\"><img decoding=\"async\" src=\"https:\/\/ex.plo.re\/oceanfront1br\/wp-content\/uploads\/sites\/924\/2026\/06\/IMG_1648.jpg\" width=\"1878\" height=\"1055\" alt=\"Image\"><\/a><div class=\"x-div e7-e79 m7-2i m7-2k m7-2l m7-2m m7-2o m7-31 m7-32 m7-37 m7-39 m7-3b m7-3c m7-3d m7-3i m7-3y m7-3z m7-40\" id=\"t\" style=\"--tco-dc7-3v:#002347;\"><div class=\"x-text x-text-headline e7-e80 m7-6o m7-6x m7-6y m7-6z m7-71 m7-77 m7-78 m7-79 m7-7a m7-7b m7-7c headingfont\"><div class=\"x-text-content\"><div class=\"x-text-content-text\"><h2 class=\"x-text-content-text-primary\">Easy Check-In<\/h2>\n<\/div><\/div><\/div><div id=\"b\" class=\"x-text x-content e7-e81 m7-8j m7-8k m7-8n m7-8o m7-8p m7-8t m7-8v m7-8w m7-8z m7-90 m7-91 bodyfont\">We make booking and planning smooth, so you can focus on enjoying the beach. <\/div><div class=\"x-div e7-e82 m7-2i m7-2k m7-2l m7-2m m7-2n m7-2o m7-31 m7-3b m7-3c m7-3d m7-3i\"><a class=\"x-anchor x-anchor-button has-graphic e7-e83 m7-52 m7-55 m7-57 m7-58 m7-5a m7-5g m7-5h m7-5j m7-5k m7-5m m7-5n m7-5r m7-5s m7-65 m7-f m7-g bodyfont\" tabindex=\"0\" style=\"--tco-dc7-3w:#c29b40;--tco-dc7-3z:#002347;--tco-dc7-41:#002347;--tco-dc7-44:#002347;--tco-dc7-46:#002347;--tco-dc7-47:#002347;--tco-dc7-49:#c29b40;--tco-dc7-4c:#002347;--tco-dc7-4e:#002347;--tco-dc7-4h:#002347;--tco-dc7-4j:#002347;--tco-dc7-4k:#002347;--tco-dc7-4m:#c29b40;--tco-dc7-4p:#002347;--tco-dc7-4r:#002347;--tco-dc7-4u:#002347;--tco-dc7-4w:#002347;--tco-dc7-4x:#002347;\" href=\"#contact\" data-x-effect=\"{&quot;durationBase&quot;:&quot;300ms&quot;}\"><div class=\"x-anchor-content\"><span class=\"x-graphic\" aria-hidden=\"true\"><span data-x-single-anim=\"x-scale-up\" class=\"x-icon x-graphic-child x-graphic-icon x-graphic-primary\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\"><!--! Font Awesome Pro 7.3.1 by @fontawesome - https:\/\/fontawesome.com License - https:\/\/fontawesome.com\/license (Commercial License) Copyright 2026 Fonticons, Inc. --><path fill=\"currentColor\" d=\"M507.3 267.3c6.2-6.2 6.2-16.4 0-22.6l-176-176c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L457.4 240 16 240c-8.8 0-16 7.2-16 16s7.2 16 16 16l441.4 0-148.7 148.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l176-176z\"\/><\/svg><\/span><\/span><div class=\"x-anchor-text\"><span class=\"x-anchor-text-primary\">Request Now<\/span><\/div><\/div><\/a><\/div><\/div><\/div><div class=\"x-col e7-e75 m7-21 m7-23 m7-24 m7-27 m7-28 m7-29 m7-2a m7-2d m7-2e\"><a class=\"x-image e7-e78 m7-ak m7-al m7-ao m7-ap\" href=\"#testimonials\"><img decoding=\"async\" src=\"https:\/\/ex.plo.re\/oceanfront1br\/wp-content\/uploads\/sites\/924\/2026\/06\/IMG_1646.jpg\" width=\"1578\" height=\"1043\" alt=\"Image\"><\/a><div class=\"x-div e7-e79 m7-2i m7-2k m7-2l m7-2m m7-2o m7-31 m7-32 m7-37 m7-39 m7-3b m7-3c m7-3d m7-3i m7-3y m7-3z m7-40\" id=\"t\" style=\"--tco-dc7-3v:#002347;\"><div class=\"x-text x-text-headline e7-e80 m7-6o m7-6x m7-6y m7-6z m7-71 m7-77 m7-78 m7-79 m7-7a m7-7b m7-7c headingfont\"><div class=\"x-text-content\"><div class=\"x-text-content-text\"><h2 class=\"x-text-content-text-primary\">Over 100+ 5 Star Reviews<\/h2>\n<\/div><\/div><\/div><div id=\"b\" class=\"x-text x-content e7-e81 m7-8j m7-8k m7-8n m7-8o m7-8p m7-8t m7-8v m7-8w m7-8z m7-90 m7-91 bodyfont\">Expect a smooth experience, thoughtful support, and a location built for unforgettable days.<\/div><div class=\"x-div e7-e82 m7-2i m7-2k m7-2l m7-2m m7-2n m7-2o m7-31 m7-3b m7-3c m7-3d m7-3i\"><a class=\"x-anchor x-anchor-button has-graphic e7-e83 m7-52 m7-55 m7-57 m7-58 m7-5a m7-5g m7-5h m7-5j m7-5k m7-5m m7-5n m7-5r m7-5s m7-65 m7-f m7-g bodyfont\" tabindex=\"0\" style=\"--tco-dc7-3w:#c29b40;--tco-dc7-3z:#002347;--tco-dc7-41:#002347;--tco-dc7-44:#002347;--tco-dc7-46:#002347;--tco-dc7-47:#002347;--tco-dc7-49:#c29b40;--tco-dc7-4c:#002347;--tco-dc7-4e:#002347;--tco-dc7-4h:#002347;--tco-dc7-4j:#002347;--tco-dc7-4k:#002347;--tco-dc7-4m:#c29b40;--tco-dc7-4p:#002347;--tco-dc7-4r:#002347;--tco-dc7-4u:#002347;--tco-dc7-4w:#002347;--tco-dc7-4x:#002347;\" href=\"#testimonials\" data-x-effect=\"{&quot;durationBase&quot;:&quot;300ms&quot;}\"><div class=\"x-anchor-content\"><span class=\"x-graphic\" aria-hidden=\"true\"><span data-x-single-anim=\"x-scale-up\" class=\"x-icon x-graphic-child x-graphic-icon x-graphic-primary\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\"><!--! Font Awesome Pro 7.3.1 by @fontawesome - https:\/\/fontawesome.com License - https:\/\/fontawesome.com\/license (Commercial License) Copyright 2026 Fonticons, Inc. --><path fill=\"currentColor\" d=\"M507.3 267.3c6.2-6.2 6.2-16.4 0-22.6l-176-176c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L457.4 240 16 240c-8.8 0-16 7.2-16 16s7.2 16 16 16l441.4 0-148.7 148.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l176-176z\"\/><\/svg><\/span><\/span><div class=\"x-anchor-text\"><span class=\"x-anchor-text-primary\">Read Our Reviews<\/span><\/div><\/div><\/a><\/div><\/div><\/div><div class=\"x-col e7-e75 m7-21 m7-23 m7-24 m7-27 m7-28 m7-29 m7-2a m7-2d m7-2e\"><a class=\"x-image e7-e78 m7-ak m7-al m7-ao m7-ap\" href=\"https:\/\/1504woceanfront.com\" target=\"_blank\" rel=\"noopener\"><img decoding=\"async\" src=\"https:\/\/ex.plo.re\/oceanfront1br\/wp-content\/uploads\/sites\/924\/2026\/06\/1504-w.jpg\" width=\"1085\" height=\"724\" alt=\"Image\"><\/a><div class=\"x-div e7-e79 m7-2i m7-2k m7-2l m7-2m m7-2o m7-31 m7-32 m7-37 m7-39 m7-3b m7-3c m7-3d m7-3i m7-3y m7-3z m7-40\" id=\"t\" style=\"--tco-dc7-3v:#002347;\"><div class=\"x-text x-text-headline e7-e80 m7-6o m7-6x m7-6y m7-6z m7-71 m7-77 m7-78 m7-79 m7-7a m7-7b m7-7c headingfont\"><div class=\"x-text-content\"><div class=\"x-text-content-text\"><h2 class=\"x-text-content-text-primary\">Available For Sale!<\/h2>\n<\/div><\/div><\/div><div id=\"b\" class=\"x-text x-content e7-e81 m7-8j m7-8k m7-8n m7-8o m7-8p m7-8t m7-8v m7-8w m7-8z m7-90 m7-91 bodyfont\">This 5 Property Compound includes 3 short term rentals, a cafe & retail. <\/div><div class=\"x-div e7-e82 m7-2i m7-2k m7-2l m7-2m m7-2n m7-2o m7-31 m7-3b m7-3c m7-3d m7-3i\"><a class=\"x-anchor x-anchor-button has-graphic e7-e83 m7-52 m7-55 m7-57 m7-58 m7-5a m7-5g m7-5h m7-5j m7-5k m7-5m m7-5n m7-5r m7-5s m7-65 m7-f m7-g bodyfont\" tabindex=\"0\" style=\"--tco-dc7-3w:#c29b40;--tco-dc7-3z:#002347;--tco-dc7-41:#002347;--tco-dc7-44:#002347;--tco-dc7-46:#002347;--tco-dc7-47:#002347;--tco-dc7-49:#c29b40;--tco-dc7-4c:#002347;--tco-dc7-4e:#002347;--tco-dc7-4h:#002347;--tco-dc7-4j:#002347;--tco-dc7-4k:#002347;--tco-dc7-4m:#c29b40;--tco-dc7-4p:#002347;--tco-dc7-4r:#002347;--tco-dc7-4u:#002347;--tco-dc7-4w:#002347;--tco-dc7-4x:#002347;\" href=\"https:\/\/1504woceanfront.com\" data-x-effect=\"{&quot;durationBase&quot;:&quot;300ms&quot;}\" target=\"_blank\" rel=\"noopener\"><div class=\"x-anchor-content\"><span class=\"x-graphic\" aria-hidden=\"true\"><span data-x-single-anim=\"x-scale-up\" class=\"x-icon x-graphic-child x-graphic-icon x-graphic-primary\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\"><!--! Font Awesome Pro 7.3.1 by @fontawesome - https:\/\/fontawesome.com License - https:\/\/fontawesome.com\/license (Commercial License) Copyright 2026 Fonticons, Inc. --><path fill=\"currentColor\" d=\"M507.3 267.3c6.2-6.2 6.2-16.4 0-22.6l-176-176c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L457.4 240 16 240c-8.8 0-16 7.2-16 16s7.2 16 16 16l441.4 0-148.7 148.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l176-176z\"\/><\/svg><\/span><\/span><div class=\"x-anchor-text\"><span class=\"x-anchor-text-primary\">View Details<\/span><\/div><\/div><\/a><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"x-section e7-e153 m7-0 m7-1 m7-2 m7-7 m7-8 m7-9\" id=\"feat\"><div class=\"x-bg\" aria-hidden=\"true\"><div class=\"x-bg-layer-upper-color\"><\/div><\/div><div class=\"x-row x-container max width e7-e154 m7-k m7-l m7-m m7-n m7-o m7-p m7-q m7-v m7-w m7-11 m7-15 m7-1b m7-1i\"><div class=\"x-row-inner\"><div class=\"x-col e7-e155 m7-21 m7-22 m7-23 m7-28\"><div style=\"--tco-dc7-7x:#ededed;--tco-dc7-7z:#ededed;--tco-dc7-81:#ededed;\" class=\"x-text x-text-headline e7-e156 m7-6n m7-6o m7-6p m7-6q m7-6t m7-6w m7-6y m7-70 m7-71 m7-72 m7-75 m7-7g m7-7m headingfont\"><div class=\"x-text-content\"><div class=\"x-text-content-text\">\n<div class=\"x-text-content-text-primary\">Property Highlights<\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"x-row e7-e159 m7-k m7-l m7-m m7-n m7-o m7-p m7-q m7-v m7-w m7-11 m7-15 m7-1b m7-1j\"><div class=\"x-row-inner\"><div class=\"x-col e7-e160 m7-21 m7-22 m7-23 m7-28\"><div class=\"x-div e7-e161 m7-2i m7-2l m7-2m m7-2n m7-2o m7-46 m7-4l\" data-x-slide-context=\"\"><div class=\"x-div e7-e162 m7-2i m7-2k m7-2l m7-2m m7-2n m7-2o\"><div class=\"x-slide-container-viewport is-loading e7-e163 m7-9q m7-9s m7-9t\" data-x-slide-container=\"{&quot;keyboardNavigation&quot;:true,&quot;snap&quot;:true,&quot;scrollBySlide&quot;:true,&quot;wrapAround&quot;:true,&quot;contain&quot;:true,&quot;int&quot;:&quot;drag off&quot;,&quot;direction&quot;:&quot;forward&quot;,&quot;startingSlide&quot;:1}\"><div class=\"x-slide-container-content x-container max width\"><div class=\"x-slide-container is-inline is-paged\"><div class=\"x-slide e7-e164 m7-9v m7-9w m7-9y m7-f m7-h boxshadow slide\" data-x-slide=\"\" data-x-effect=\"{&quot;durationBase&quot;:&quot;300ms&quot;}\"><div class=\"x-div e7-e165 m7-2i m7-2k m7-2l m7-2m m7-2n m7-2o m7-31\"><a class=\"x-image e7-e166 m7-ak m7-am m7-ap m7-aq m7-at boxshadow\" href=\"https:\/\/ex.plo.re\/oceanfront1br\/\"><img decoding=\"async\" src=\"https:\/\/ex.plo.re\/oceanfront1br\/wp-content\/uploads\/sites\/924\/2026\/07\/7d4c2456-75fb-4123-942f-8597e96b815a.avif\" width=\"1280\" height=\"719\" alt=\"Image\"><\/a><\/div><div class=\"x-div e7-e167 m7-2i m7-2k m7-2l m7-2m m7-2o m7-30 m7-31 m7-45 m7-48\"><a style=\"--tco-dc7-88:#ededed;--tco-dc7-8b:#ededed;--tco-dc7-8c:#ededed;--tco-dc7-8f:#ededed;\" href=\"#contact\" class=\"x-text x-text-headline e7-e168 m7-6o m7-6p m7-6y m7-71 m7-79 m7-7b m7-7c m7-7j m7-7n m7-7o headingfont pulse\"><div class=\"x-text-content\"><div class=\"x-text-content-text\"><h2 class=\"x-text-content-text-primary\">Book Now<\/h2>\n<\/div><\/div><\/a><\/div><\/div><div class=\"x-slide e7-e169 m7-9v m7-9w m7-9y m7-f m7-h boxshadow slide\" data-x-slide=\"\" data-x-effect=\"{&quot;durationBase&quot;:&quot;300ms&quot;}\"><div class=\"x-div e7-e170 m7-2i m7-2k m7-2l m7-2m m7-2n m7-2o m7-31\"><span class=\"x-image e7-e171 m7-ak m7-am m7-ap m7-aq m7-at boxshadow\"><img decoding=\"async\" src=\"https:\/\/ex.plo.re\/oceanfront1br\/wp-content\/uploads\/sites\/924\/2026\/07\/5732e12a-e0db-4e9d-a184-e981b4bb883f.avif\" width=\"1280\" height=\"854\" alt=\"Image\"><\/span><\/div><div class=\"x-div e7-e172 m7-2i m7-2k m7-2l m7-2m m7-2o m7-30 m7-31 m7-45 m7-48\"><a style=\"--tco-dc7-8g:#ededed;--tco-dc7-8j:#ededed;--tco-dc7-8k:#ededed;--tco-dc7-8n:#ededed;\" href=\"https:\/\/ex.plo.re\/oceanfront1br\/\" class=\"x-text x-text-headline e7-e173 m7-6o m7-6y m7-6z m7-71 m7-79 m7-7a m7-7b m7-7c m7-7j m7-7o m7-7p m7-7q headingfont\"><div class=\"x-text-content\"><div class=\"x-text-content-text\"><h2 class=\"x-text-content-text-primary\">On The Sand<\/h2>\n<\/div><\/div><\/a><\/div><\/div><div class=\"x-slide e7-e174 m7-9v m7-9w m7-9y m7-f m7-h boxshadow slide\" data-x-slide=\"\" data-x-effect=\"{&quot;durationBase&quot;:&quot;300ms&quot;}\"><div class=\"x-div e7-e175 m7-2i m7-2k m7-2l m7-2m m7-2n m7-2o m7-31\"><span class=\"x-image e7-e176 m7-ak m7-am m7-ap m7-aq m7-at boxshadow\"><img decoding=\"async\" src=\"https:\/\/ex.plo.re\/oceanfront1br\/wp-content\/uploads\/sites\/924\/2026\/07\/767b0433-8ba9-4011-9d18-9bb83adb6683.avif\" width=\"1280\" height=\"854\" alt=\"Image\"><\/span><\/div><div class=\"x-div e7-e177 m7-2i m7-2k m7-2l m7-2m m7-2o m7-30 m7-31 m7-45 m7-48\"><a style=\"--tco-dc7-8o:#ededed;--tco-dc7-8r:#ededed;--tco-dc7-8s:#ededed;--tco-dc7-8v:#ededed;\" href=\"https:\/\/ex.plo.re\/oceanfront1br\/\" class=\"x-text x-text-headline e7-e178 m7-6o m7-6y m7-6z m7-71 m7-79 m7-7a m7-7b m7-7c m7-7j m7-7o m7-7p m7-7r headingfont\"><div class=\"x-text-content\"><div class=\"x-text-content-text\"><h2 class=\"x-text-content-text-primary\">Sunset Views<\/h2>\n<\/div><\/div><\/a><\/div><\/div><div class=\"x-slide e7-e179 m7-9v m7-9w m7-9y m7-f m7-h boxshadow slide\" data-x-slide=\"\" data-x-effect=\"{&quot;durationBase&quot;:&quot;300ms&quot;}\"><div class=\"x-div e7-e180 m7-2i m7-2k m7-2l m7-2m m7-2n m7-2o m7-31\"><span class=\"x-image e7-e181 m7-ak m7-am m7-ap m7-aq m7-at boxshadow\"><img decoding=\"async\" src=\"https:\/\/ex.plo.re\/oceanfront1br\/wp-content\/uploads\/sites\/924\/2026\/06\/IMG_1639.jpg\" width=\"789\" height=\"522\" alt=\"Image\"><\/span><\/div><div class=\"x-div e7-e182 m7-2i m7-2k m7-2l m7-2m m7-2o m7-30 m7-31 m7-45 m7-48\"><a style=\"--tco-dc7-8w:#ededed;--tco-dc7-8z:#ededed;--tco-dc7-90:#ededed;--tco-dc7-93:#ededed;\" href=\"https:\/\/ex.plo.re\/oceanfront1br\/\" class=\"x-text x-text-headline e7-e183 m7-6o m7-6y m7-6z m7-71 m7-79 m7-7a m7-7b m7-7c m7-7j m7-7o m7-7p m7-7s headingfont\"><div class=\"x-text-content\"><div class=\"x-text-content-text\"><h2 class=\"x-text-content-text-primary\">Full Range & Island<\/h2>\n<\/div><\/div><\/a><\/div><\/div><div class=\"x-slide e7-e184 m7-9v m7-9w m7-9y m7-f m7-h boxshadow slide\" data-x-slide=\"\" data-x-effect=\"{&quot;durationBase&quot;:&quot;300ms&quot;}\"><div class=\"x-div e7-e185 m7-2i m7-2k m7-2l m7-2m m7-2n m7-2o m7-31\"><span class=\"x-image e7-e186 m7-ak m7-am m7-ap m7-aq m7-at boxshadow\"><img decoding=\"async\" src=\"https:\/\/ex.plo.re\/oceanfront1br\/wp-content\/uploads\/sites\/924\/2026\/06\/IMG_1646.jpg\" width=\"789\" height=\"521\" alt=\"Image\"><\/span><\/div><div class=\"x-div e7-e187 m7-2i m7-2k m7-2l m7-2m m7-2o m7-30 m7-31 m7-45 m7-48\"><a style=\"--tco-dc7-94:#ededed;--tco-dc7-97:#ededed;--tco-dc7-98:#ededed;--tco-dc7-9b:#ededed;\" href=\"https:\/\/ex.plo.re\/oceanfront1br\/\" class=\"x-text x-text-headline e7-e188 m7-6o m7-6y m7-6z m7-71 m7-79 m7-7a m7-7b m7-7c m7-7j m7-7o m7-7p m7-7t headingfont\"><div class=\"x-text-content\"><div class=\"x-text-content-text\"><h2 class=\"x-text-content-text-primary\">King Bed<\/h2>\n<\/div><\/div><\/a><\/div><\/div><div class=\"x-slide e7-e189 m7-9v m7-9w m7-9y m7-f m7-h boxshadow slide\" data-x-slide=\"\" data-x-effect=\"{&quot;durationBase&quot;:&quot;300ms&quot;}\"><div class=\"x-div e7-e190 m7-2i m7-2k m7-2l m7-2m m7-2n m7-2o m7-31\"><span class=\"x-image e7-e191 m7-ak m7-am m7-ap m7-aq m7-at boxshadow\"><img decoding=\"async\" src=\"https:\/\/ex.plo.re\/oceanfront1br\/wp-content\/uploads\/sites\/924\/2026\/07\/c7fed3ba-e9f3-4805-983a-321702bb9e91.avif\" width=\"1280\" height=\"854\" alt=\"Image\"><\/span><\/div><div class=\"x-div e7-e192 m7-2i m7-2k m7-2l m7-2m m7-2o m7-30 m7-31 m7-45 m7-48\"><a style=\"--tco-dc7-9c:#ededed;--tco-dc7-9f:#ededed;--tco-dc7-9g:#ededed;--tco-dc7-9j:#ededed;\" href=\"https:\/\/ex.plo.re\/oceanfront1br\/\" class=\"x-text x-text-headline e7-e193 m7-6o m7-6y m7-6z m7-71 m7-79 m7-7a m7-7b m7-7c m7-7j m7-7o m7-7p m7-7u headingfont\"><div class=\"x-text-content\"><div class=\"x-text-content-text\"><h2 class=\"x-text-content-text-primary\">Fully Furnished<\/h2>\n<\/div><\/div><\/a><\/div><\/div><div class=\"x-slide e7-e194 m7-9v m7-9w m7-9y m7-f m7-h boxshadow slide\" data-x-slide=\"\" data-x-effect=\"{&quot;durationBase&quot;:&quot;300ms&quot;}\"><div class=\"x-div e7-e195 m7-2i m7-2k m7-2l m7-2m m7-2n m7-2o m7-31\"><span class=\"x-image e7-e196 m7-ak m7-am m7-ap m7-aq m7-at boxshadow\"><img decoding=\"async\" src=\"https:\/\/ex.plo.re\/oceanfront1br\/wp-content\/uploads\/sites\/924\/2026\/06\/IMG_1644.jpg\" width=\"785\" height=\"522\" alt=\"Image\"><\/span><\/div><div class=\"x-div e7-e197 m7-2i m7-2k m7-2l m7-2m m7-2o m7-30 m7-31 m7-45 m7-48\"><a style=\"--tco-dc7-9k:#ededed;--tco-dc7-9n:#ededed;--tco-dc7-9o:#ededed;--tco-dc7-9r:#ededed;\" href=\"https:\/\/ex.plo.re\/oceanfront1br\/\" class=\"x-text x-text-headline e7-e198 m7-6o m7-6y m7-6z m7-71 m7-79 m7-7a m7-7b m7-7c m7-7j m7-7o m7-7p m7-7v headingfont\"><div class=\"x-text-content\"><div class=\"x-text-content-text\"><h2 class=\"x-text-content-text-primary\">Renovated Beachfront Rental<\/h2>\n<\/div><\/div><\/a><\/div><\/div><div class=\"x-slide e7-e199 m7-9v m7-9w m7-9y m7-f m7-h boxshadow slide\" data-x-slide=\"\" data-x-effect=\"{&quot;durationBase&quot;:&quot;300ms&quot;}\"><div class=\"x-div e7-e200 m7-2i m7-2k m7-2l m7-2m m7-2n m7-2o m7-31\"><span class=\"x-image e7-e201 m7-ak m7-am m7-ap m7-aq m7-at boxshadow\"><img decoding=\"async\" src=\"https:\/\/ex.plo.re\/oceanfront1br\/wp-content\/uploads\/sites\/924\/2026\/06\/IMG_1645.jpg\" width=\"349\" height=\"529\" alt=\"Image\"><\/span><\/div><div class=\"x-div e7-e202 m7-2i m7-2k m7-2l m7-2m m7-2o m7-30 m7-31 m7-45 m7-48\"><a style=\"--tco-dc7-9s:#ededed;--tco-dc7-9v:#ededed;--tco-dc7-9w:#ededed;--tco-dc7-9z:#ededed;\" href=\"https:\/\/ex.plo.re\/oceanfront1br\/\" class=\"x-text x-text-headline e7-e203 m7-6o m7-6y m7-6z m7-71 m7-79 m7-7a m7-7b m7-7c m7-7j m7-7o m7-7p m7-7w headingfont\"><div class=\"x-text-content\"><div class=\"x-text-content-text\"><h2 class=\"x-text-content-text-primary\">Laundry In Unit<\/h2>\n<\/div><\/div><\/a><\/div><\/div><div class=\"x-slide e7-e204 m7-9v m7-9w m7-9y m7-f m7-h boxshadow slide\" data-x-slide=\"\" data-x-effect=\"{&quot;durationBase&quot;:&quot;300ms&quot;}\"><div class=\"x-div e7-e205 m7-2i m7-2k m7-2l m7-2m m7-2n m7-2o m7-31\"><span class=\"x-image e7-e206 m7-ak m7-am m7-ap m7-aq m7-at boxshadow\"><img decoding=\"async\" src=\"https:\/\/ex.plo.re\/oceanfront1br\/wp-content\/uploads\/sites\/924\/2026\/06\/IMG_1642.jpg\" width=\"786\" height=\"527\" alt=\"Image\"><\/span><\/div><div class=\"x-div e7-e207 m7-2i m7-2k m7-2l m7-2m m7-2o m7-30 m7-31 m7-45 m7-48\"><a style=\"--tco-dc7-a0:#ededed;--tco-dc7-a3:#ededed;--tco-dc7-a4:#ededed;--tco-dc7-a7:#ededed;\" href=\"https:\/\/ex.plo.re\/oceanfront1br\/\" class=\"x-text x-text-headline e7-e208 m7-6o m7-6y m7-6z m7-71 m7-79 m7-7a m7-7b m7-7c m7-7j m7-7o m7-7p m7-7x headingfont\"><div class=\"x-text-content\"><div class=\"x-text-content-text\"><h2 class=\"x-text-content-text-primary\">Covered Patio<\/h2>\n<\/div><\/div><\/a><\/div><\/div><div class=\"x-slide e7-e209 m7-9v m7-9w m7-9y m7-f m7-h boxshadow slide\" data-x-slide=\"\" data-x-effect=\"{&quot;durationBase&quot;:&quot;300ms&quot;}\"><div class=\"x-div e7-e210 m7-2i m7-2k m7-2l m7-2m m7-2n m7-2o m7-31\"><span class=\"x-image e7-e211 m7-ak m7-am m7-ap m7-aq m7-at boxshadow\"><img decoding=\"async\" src=\"https:\/\/ex.plo.re\/oceanfront1br\/wp-content\/uploads\/sites\/924\/2026\/06\/IMG_1636.jpg\" width=\"785\" height=\"527\" alt=\"Image\"><\/span><\/div><div class=\"x-div e7-e212 m7-2i m7-2k m7-2l m7-2m m7-2o m7-30 m7-31 m7-45 m7-48\"><a style=\"--tco-dc7-a8:#ededed;--tco-dc7-ab:#ededed;--tco-dc7-ac:#ededed;--tco-dc7-af:#ededed;\" href=\"https:\/\/ex.plo.re\/oceanfront1br\/\" class=\"x-text x-text-headline e7-e213 m7-6o m7-6y m7-6z m7-71 m7-79 m7-7a m7-7b m7-7c m7-7j m7-7o m7-7p m7-7y headingfont\"><div class=\"x-text-content\"><div class=\"x-text-content-text\"><h2 class=\"x-text-content-text-primary\">Living Room<\/h2>\n<\/div><\/div><\/a><\/div><\/div><div class=\"x-slide e7-e214 m7-9v m7-9w m7-9y m7-f m7-h boxshadow slide\" data-x-slide=\"\" data-x-effect=\"{&quot;durationBase&quot;:&quot;300ms&quot;}\"><div class=\"x-div e7-e215 m7-2i m7-2k m7-2l m7-2m m7-2n m7-2o m7-31\"><span class=\"x-image e7-e216 m7-ak m7-am m7-ap m7-aq m7-at boxshadow\"><img decoding=\"async\" src=\"https:\/\/ex.plo.re\/oceanfront1br\/wp-content\/uploads\/sites\/924\/2026\/07\/0ba2fa96-12d5-4b22-8316-eef66d1840e1.avif\" width=\"1280\" height=\"720\" alt=\"Image\"><\/span><\/div><div class=\"x-div e7-e217 m7-2i m7-2k m7-2l m7-2m m7-2o m7-30 m7-31 m7-45 m7-48\"><a style=\"--tco-dc7-ag:#ededed;--tco-dc7-aj:#ededed;--tco-dc7-ak:#ededed;--tco-dc7-an:#ededed;\" href=\"https:\/\/ex.plo.re\/oceanfront1br\/\" class=\"x-text x-text-headline e7-e218 m7-6o m7-6y m7-6z m7-71 m7-79 m7-7a m7-7b m7-7c m7-7j m7-7o m7-7p m7-7z headingfont\"><div class=\"x-text-content\"><div class=\"x-text-content-text\"><h2 class=\"x-text-content-text-primary\">Private Balcony<\/h2>\n<\/div><\/div><\/a><\/div><\/div><\/div><\/div><\/div><div class=\"x-div x-hide-md x-hide-sm x-hide-xs e7-e219 m7-2i m7-2k m7-2l m7-2m m7-2o m7-2x m7-39 m7-3b m7-3c m7-3i m7-45 m7-49 m7-4a m7-j\"><a class=\"x-div e7-e220 m7-2i m7-2k m7-2n m7-2o m7-3b m7-3d m7-3i m7-41 m7-4b m7-4m m7-4n\" style=\"--tco-dc7-ap:#002347;\" href=\"#prev\" data-x-effect-provider=\"colors particles effects\" data-x-slide-prev=\"\"><span class=\"x-icon e7-e221 m7-a0 m7-aa m7-ab\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\"><!--! Font Awesome Pro 7.3.1 by @fontawesome - https:\/\/fontawesome.com License - https:\/\/fontawesome.com\/license (Commercial License) Copyright 2026 Fonticons, Inc. --><path fill=\"currentColor\" d=\"M7 239c-9.4 9.4-9.4 24.6 0 33.9L175 441c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L81.9 280 488 280c13.3 0 24-10.7 24-24s-10.7-24-24-24L81.9 232 209 105c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L7 239z\"\/><\/svg><\/span><\/a><a class=\"x-div e7-e222 m7-2i m7-2k m7-2n m7-2o m7-3b m7-3d m7-3i m7-41 m7-4b m7-4m m7-4o pulse\" style=\"--tco-dc7-as:#002347;\" href=\"#next\" data-x-effect-provider=\"colors particles effects\" data-x-slide-next=\"\"><span class=\"x-icon e7-e223 m7-a0 m7-aa m7-ab\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\"><!--! Font Awesome Pro 7.3.1 by @fontawesome - https:\/\/fontawesome.com License - https:\/\/fontawesome.com\/license (Commercial License) Copyright 2026 Fonticons, Inc. --><path fill=\"currentColor\" d=\"M505 273c9.4-9.4 9.4-24.6 0-33.9L337 71c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l127 127-406.1 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l406.1 0-127 127c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0L505 273z\"\/><\/svg><\/span><\/a><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"x-section e7-e333 m7-0 m7-1 m7-2 m7-5 m7-7 m7-c\" id=\"instagram\"><div class=\"x-row x-container max width e7-e337 m7-k m7-l m7-m m7-n m7-p m7-q m7-u m7-w m7-10 m7-11 m7-16 m7-1b m7-1r\"><div class=\"x-row-inner\"><div class=\"x-col e7-e338 m7-21 m7-22 m7-23 m7-28\"><div style=\"--tco-dc7-f4:#ededed;--tco-dc7-f6:#ededed;\" class=\"x-text x-text-headline e7-e339 m7-6n m7-6o m7-6s m7-6t m7-6w m7-6y m7-6z m7-70 m7-71 m7-72 m7-75 m7-8d headingfont\"><div class=\"x-text-content\"><div class=\"x-text-content-text\">\n<div class=\"x-text-content-text-primary\">Newport Beach Lifestyle<\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"x-row x-container max width e7-e340 m7-k m7-l m7-m m7-n m7-o m7-p m7-q m7-v m7-w m7-11 m7-15 m7-1b m7-1s\"><div class=\"x-row-inner\"><div class=\"x-col e7-e341 m7-21 m7-22 m7-23 m7-28\"><div class=\"x-text x-content e7-e344 m7-8j m7-8k m7-8l m7-8s m7-8z m7-9i\"><blockquote class=\"instagram-media\" data-instgrm-permalink=\"https:\/\/www.instagram.com\/visitnewportbeach\/?utm_source=ig_embed&amp;utm_campaign=loading\" data-instgrm-version=\"14\" style=\" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);\">\n    <div style=\"padding:16px;\">\n        <a href=\"https:\/\/www.instagram.com\/visitnewportbeach\/?utm_source=ig_embed&amp;utm_campaign=loading\" style=\" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;\" target=\"_blank\" rel=\"noopener\">\n            <div style=\" display: flex; flex-direction: row; align-items: center;\">\n                <div style=\"background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;\"><\/div>\n                <div style=\"display: flex; flex-direction: column; flex-grow: 1; justify-content: center;\">\n                    <div style=\" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;\"><\/div>\n                    <div style=\" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;\"><\/div>\n                <\/div>\n            <\/div>\n            <div style=\"padding: 19% 0;\"><\/div>\n            <div style=\"display:block; height:50px; margin:0 auto 12px; width:50px;\">\n                <svg width=\"50px\" height=\"50px\" viewBox=\"0 0 60 60\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"https:\/\/www.w3.org\/1999\/xlink\">\n                    <g stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\">\n                        <g transform=\"translate(-511.000000, -20.000000)\" fill=\"#000000\">\n                            <g>\n                                <path d=\"M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631\"><\/path>\n                            <\/g>\n                        <\/g>\n                    <\/g>\n                <\/svg>\n            <\/div>\n            <div style=\"padding-top: 8px;\">\n                <div style=\" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;\">View this profile on Instagram<\/div>\n            <\/div>\n            <div style=\"padding: 12.5% 0;\"><\/div>\n            <div style=\"display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;\">\n                <div>\n                    <div style=\"background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);\"><\/div>\n                    <div style=\"background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;\"><\/div>\n                    <div style=\"background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);\"><\/div>\n                <\/div>\n                <div style=\"margin-left: 8px;\">\n                    <div style=\" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;\"><\/div>\n                    <div style=\" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)\"><\/div>\n                <\/div>\n                <div style=\"margin-left: auto;\">\n                    <div style=\" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);\"><\/div>\n                    <div style=\" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);\"><\/div>\n                    <div style=\" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);\"><\/div>\n                <\/div>\n            <\/div>\n            <div style=\"display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;\">\n                <div style=\" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;\"><\/div>\n                <div style=\" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;\"><\/div>\n            <\/div>\n        <\/a>\n        <p style=\" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;\">\n            <a href=\"https:\/\/www.instagram.com\/visitnewportbeach\/?utm_source=ig_embed&amp;utm_campaign=loading\" style=\" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px;\" target=\"_blank\" rel=\"noopener\">Instagram Account<\/a> (@<a href=\"https:\/\/www.instagram.com\/visitnewportbeach\/?utm_source=ig_embed&amp;utm_campaign=loading\" style=\" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px;\" target=\"_blank\" rel=\"noopener\">visitnewportbeach<\/a>) \u2022 Instagram photos and videos\n        <\/p>\n    <\/div>\n<\/blockquote>\n<script async src=\"\/\/www.instagram.com\/embed.js\"><\/script>\n\n<\/div><\/div><\/div><\/div><\/div><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Oceanfront One Bedroom Rental Enjoy oceanfront comfort between the Balboa Peninsula, The Wedge, and Newport Beach Peninsula. Request your ideal stay for $500.night &quot;*&quot; indicates required fields Step 1 of 2 50% URLThis field is for validation purposes and should be left unchanged.Your Ideal Dates:* Your Name*Callback Phone #*Email (Optional) 1504 W Oceanfront, Newport Beach Fully furnished 1 Bedroom on &#8230; <\/p>\n<div><a href=\"https:\/\/ex.plo.re\/oceanfront1br\/\" class=\"more-link\">Read More<\/a><\/div>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"template-blank-4.php","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-7","page","type-page","status-publish","hentry","no-post-thumbnail"],"acf":[],"_links":{"self":[{"href":"https:\/\/ex.plo.re\/oceanfront1br\/wp-json\/wp\/v2\/pages\/7","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ex.plo.re\/oceanfront1br\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/ex.plo.re\/oceanfront1br\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/ex.plo.re\/oceanfront1br\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ex.plo.re\/oceanfront1br\/wp-json\/wp\/v2\/comments?post=7"}],"version-history":[{"count":217,"href":"https:\/\/ex.plo.re\/oceanfront1br\/wp-json\/wp\/v2\/pages\/7\/revisions"}],"predecessor-version":[{"id":2789,"href":"https:\/\/ex.plo.re\/oceanfront1br\/wp-json\/wp\/v2\/pages\/7\/revisions\/2789"}],"wp:attachment":[{"href":"https:\/\/ex.plo.re\/oceanfront1br\/wp-json\/wp\/v2\/media?parent=7"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}