<!DOCTYPE html>
    <html lang="en">

    <head><meta name="description" content="Search for real estate in Arizona with Ryan Melville. Buy or sell homes, see your home value, and view listings in the Phoenix area as well as Northern Arizona.">

        <meta charset="utf-8">        
        <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Ryan Melville | Keller Williams Realty East Valley</title>
        <!-- meta data -->
        <!-- rich snippet -->
        <script type="application/ld+json">{"@context":"https:\/\/schema.org","@type":"LocalBusiness","name":"SoldPHX - Ryan Melville at Keller Williams Realty Phoenix","url":"https:\/\/www.soldphx.com","image":"https:\/\/cdn1.brivityidx.com\/assets\/images\/agent-photos\/1\/3\/8\/13852515\/13366_96938f0e19897652.png","telephone":"14804470937","address":{"@type":"PostalAddress","streetAddress":"2077 E. Warner Rd.","addressLocality":"Tempe","addressRegion":"AZ","postalCode":"85284","addressCountry":"US"}}</script>

        <link rel="preconnect" href="https://www.google.com">
        <link rel="preconnect" href="https://www.gstatic.com" crossorigin>
        <link rel="preconnect" href="https://maps.googleapis.com" crossorigin>
        <link rel="preconnect" href="https://maps.gstatic.com" crossorigin>
        <link rel="preconnect" href="https://cdn1.brivityidx.com" crossorigin>
        <link rel="dns-prefetch" href="https://cdn1.brivityidx.com">

        <!-- Loading Bootstrap -->

        <!-- we need to hold this for further font removal investigation, but this broke recaptcha as is -->
        <!-- <script>
            var head = document.getElementsByTagName('head')[0]
            var insertBefore = head.insertBefore;
            head.insertBefore = function (newElement, referenceElement) {
                // intercept font download
                if (newElement.src
                    && newElement.src.indexOf('https://www.gstatic.com/recaptcha') === 0) {
                    return;
                }
                // intercept style elements for IEs
                if (newElement.tagName.toLowerCase() === 'style'
                    && newElement.styleSheet
                    && newElement.styleSheet.cssText
                    && newElement.styleSheet.cssText.replace('\r\n', '').indexOf('.gm-style') === 0) {
                    return;
                }
                // intercept style elements for other browsers
                if (newElement.tagName.toLowerCase() === 'style'
                    && newElement.innerHTML
                    && newElement.innerHTML.replace('\r\n', '').indexOf('.gm-style') === 0) {
                    return;
                }
                insertBefore.call(head, newElement, referenceElement);
            }; 
        </script> -->
        <!-- <link rel="preload" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
        <noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css"></noscript> -->

        <!-- <link rel="preload" href="/css/property-details/property-details.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
        <noscript><link rel="stylesheet" href="/css/property-details/property-details.min.css"></noscript> -->


        <!-- meta location -->
        <!-- set favicon -->
        <link rel="shortcut icon" href="https://cdn1.brivityidx.com/assets/images/uploads/10629/favicon-32x32.png" type="image/x-icon">

        <link href="https://cdn1.brivityidx.com/assets/css/build-site.min.css?ck=" rel="stylesheet">

        <link href="https://cdn1.brivityidx.com/assets/css/build-chatbot-v1.min.css?ck=" rel="stylesheet" media="print" onload="this.media='all'"><noscript><link href="https://cdn1.brivityidx.com/assets/css/build-chatbot-v1.min.css?ck=" rel="stylesheet"></noscript>

        <link rel="canonical" href="https://www.soldphx.com">

        <!--headerIncludes-->

        <script>
            function deferScriptOnLoad(url, sleep = 0) {
                window.addEventListener('load', function () {
                    deferScript(url, sleep);
                });
            }
            function deferScript(url, sleep = 0) {
                if (sleep > 0) {
                    setTimeout(() => {
                        deferScript(url);
                    }, sleep);
                    return;
                }
                let s = document.createElement('script');
                s.type = 'text/javascript';
                s.async = true;
                s.src = url;
                let x = document.getElementsByTagName('head')[0];
                x.appendChild(s);
            }
            function shouldLoadChatbotImmediately() {
                const settingsEl = document.getElementById('hchatbot_settings');
                if (!settingsEl) return false;

                const version = Number(settingsEl.dataset.chatbotVersion);
                let isInitialized = false;

                try {
                    const session = JSON.parse(sessionStorage.getItem('cbSession') || '{}');
                    isInitialized = session.chatbotInitialized === true;
                } catch (e) {}

                return version > 1 && isInitialized;
            }

            const googleApiKey = 'AIzaSyAjpuNg6WGCMV5rzoJcIP2QmMTVto6hYmc'

            // keep this here while I find a solution to the non chrome browsers not accepting the script
            // function loadScriptIfDomainMatches(keywords, scriptUrl) {
            //     document.addEventListener("DOMContentLoaded", () => {
            //         let windowKeys = Object.keys(window).filter(key => key.includes("HomeValue"));
            //         const page = document.getElementById("page");
            //         const searchAddress = page.querySelector('input[id="search_address"]');

            //         if (windowKeys.length > 1 || searchAddress !== null) {
            //             if (window.google && google.maps) {
            //                 return;
            //             } else {
            //                 const script = document.createElement('script');

            //                 script.src = "https://maps.googleapis.com/maps/api/js?libraries=geometry,places,drawing&key=&loading=async";
            //                 script.type = 'text/javascript';
            //                 document.body.appendChild(script);

            //                 if (searchAddress) {
            //                     let selectorId = searchAddress.id;
                         
            //                     setTimeout(() => {
            //                         initAutocomplete(`#${selectorId}`, true);
            //                     }, 1000);
            //                 }
            //             }
            //         }
            //     });

            //     if (keywords.some(keyword => window.location.pathname.includes(keyword))) {
            //         const matchingKeyword = keywords.find(keyword => window.location.pathname.includes(keyword));
            //         const script = document.createElement('script');

            //         scriptUrl = matchingKeyword === "search" ? scriptUrl : `${scriptUrl}&loading=async`;

            //         script.src = scriptUrl;
            //         script.type = 'text/javascript';

            //         document.head.appendChild(script);
            //     }
            // }

            // const keyword = ["search", "homes-for-sale", "sell", "homevalue"]; // Replace with the keyword you want to check
            // const scriptUrl = "https://maps.googleapis.com/maps/api/js?libraries=geometry,places,drawing&key=" // Replace with the URL of your script
            // loadScriptIfDomainMatches(keyword, scriptUrl);
        </script>
    <link href="https://cdn1.brivityidx.com/assets/css/style-headers.min.css" rel="stylesheet"><link href="https://cdn1.brivityidx.com/assets/css/style-premium.min.css" rel="stylesheet"><link href="https://cdn1.brivityidx.com/assets/css/library-dd.css" rel="stylesheet"><link href="https://cdn1.brivityidx.com/assets/css/style-content.css" rel="stylesheet"><link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900&display=swap" rel="stylesheet"><link href="https://cdn1.brivityidx.com/assets/../../../../elements/css/build.css" rel="stylesheet"><link href="https://cdn1.brivityidx.com/assets/../../../../elements/css/build.css/home-value-image.css" rel="stylesheet"><link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap" rel="stylesheet"><link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"><link href="https://fonts.googleapis.com/css?family=Montserrat:400,700%7CLato:300,400,700%7CHind+Madurai:300,400,500,600,700%7CPT+Serif:400,400i,700,700i%7CPoppins:300,400,500,600%7CPlayfair+Display:400,700i%7CJosefin+Sans:300,400,600" rel="stylesheet"><link href="https://cdn1.brivityidx.com/idx-sites/1/3/3/13366/site_custom.css?v=1781030162" rel="stylesheet"><script type="text/javascript" src="https://cdn1.brivityidx.com/idx-sites/1/3/3/13366/global_js_variables.js?v=1781030162"></script>

<meta name="facebook-domain-verification" content="iyby3sysba9623z493x767767ydxf3" />
<!-- begin Widget Tracker Code -->
<script>
(function(w,i,d,g,e,t){w["WidgetTrackerObject"]=g;(w[g]=w[g]||function()
{(w[g].q=w[g].q||[]).push(arguments);}),(w[g].ds=1*new Date());(e="script"),
(t=d.createElement(e)),(e=d.getElementsByTagName(e)[0]);t.async=1;t.src=i;
e.parentNode.insertBefore(t,e);})
(window,"https://widgetbe.com/agent",document,"widgetTracker");
window.widgetTracker("create", "WT-HJFKHZQP");
window.widgetTracker("send", "pageview");
</script>
<!-- end Widget Tracker Code --><!---
<style>
header#premium-navigation {
    position: absolute;
    width: 100%;
    background-color: transparent !important;
    border-bottom: none;
}
#premium-navigation .collapse.navbar-collapse.render-menu {
    background-color: transparent !important;
}
/* Exposed Nav Colors */
#premium-navigation a.sec-nav-link-color {
    color: white !important;
}
#premium-navigation .nav-link-color:hover,
#premium-navigation .nav-link-color:focus,
#premium-navigation .sec-nav-link-color:hover,
#premium-navigation .sec-nav-link-color:focus {
    color: #bfbfbf !important;
}
/* Menu Toggle */
#premium-navigation .menu-toggle.nav-link-color {
    color: #fff !important;
}
  
#premium-1 .header-content {
    height: calc(100vh - 0px);
}
</style>
--->


<style>
  .cta-tb {
   display:none; 
  }
</style><meta name="google-site-verification" content="_XFZh9IKbI4rYW3RrL6MOX_7j7PDvFQOfdIlZZI3djQ" /><meta name="google-site-verification" content="8_IocgIL3xW1scatjaMpdk1tTTiO32Q5hmufFfHtkb8" /><!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-88TNH5L1WK"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'G-88TNH5L1WK');
</script><!-- Facebook Pixel Events in case code is loaded with GTM -->
<script>
/* [[CUSTOM_FBQ_EVENTS]] */
</script>
<!-- End Facebook Pixel Code --><!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-TG4KF7Z');</script>
<!-- End Google Tag Manager --><meta property="og:url" content="https://www.soldphx.com/">
<meta property="og:image" content="http://images.brivityidx.com/assets/images/uploads/10629/KellerWilliams-Realty-east-valley.png?size=1200x630">
<meta property="og:image:secure_url" content="https://images.brivityidx.com/assets/images/uploads/10629/KellerWilliams-Realty-east-valley.png?size=1200x630">
<meta property="og:description" content="Search for real estate in Arizona with Ryan Melville. Buy or sell homes, see your home value, and view listings in the Phoenix area as well as Northern Arizona.">
<meta property="og:title" content="Ryan Melville | Keller Williams Realty East Valley">
</head>

    <body><!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TG4KF7Z"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
                <script>
                  window.fbAsyncInit = function() {
                    FB.init({
                      appId      : '1',
                      cookie     : true,
                      xfbml      : true,
                      version    : 'v17.0'
                    });
                    FB.AppEvents.logPageView();
                  };

                  setTimeout(() => {(function(d, s, id){
                     var js, fjs = d.getElementsByTagName(s)[0];
                     if (d.getElementById(id)) {return;}
                     js = d.createElement(s); js.id = id;
                     js.defer = true;
                     js.xfbml = false;
                     js.src = "//connect.facebook.net/en_US/sdk.js";
                     fjs.parentNode.insertBefore(js, fjs);
                   }(document, 'script', 'facebook-jssdk'))}, 5000);
                </script><meta property="fb:app_id" content="1"><meta name="google-signin-client_id" content="1"><meta name="apple-signin-flag" content="1"><meta name="main_sitebuilder_domain" content="https://sitebuilder.brivity.com">
        <!-- site registration bar -->
        <div id="site-registration-bar" class="collapse">
          <input type="hidden" id="huser_id" value="">

          <div class="row" style="width: 100%; margin: 0;">
            <div class="col-md-12" style="display: none;" id="logged-in">
              <div class="topBar flex aiCenter jcBetween">
                <div class="topBarLeft flex aiCenter">
                    <span><topbar_show_agent_name/></span>
                </div>
                <div class="topBarRight flex aiCenter">
                  <a class="topLink flex aiCenter thin favoritesTop" href="/myportal/collections">
                    <svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
                        <g clip-path="url(#clip0_16761_179132)">
                        <path d="M14.2659 3.57333C13.9254 3.23267 13.5211 2.96243 13.0761 2.77806C12.6312 2.59368 12.1542 2.49878 11.6726 2.49878C11.1909 2.49878 10.714 2.59368 10.269 2.77806C9.82401 2.96243 9.41973 3.23267 9.07922 3.57333L8.37256 4.28L7.66589 3.57333C6.97809 2.88554 6.04524 2.49914 5.07256 2.49914C4.09987 2.49914 3.16702 2.88554 2.47922 3.57333C1.79143 4.26113 1.40503 5.19398 1.40503 6.16667C1.40503 7.13936 1.79143 8.07221 2.47922 8.76L3.18589 9.46667L8.37256 14.6533L13.5592 9.46667L14.2659 8.76C14.6066 8.4195 14.8768 8.01521 15.0612 7.57024C15.2455 7.12526 15.3404 6.64832 15.3404 6.16667C15.3404 5.68501 15.2455 5.20807 15.0612 4.7631C14.8768 4.31812 14.6066 3.91384 14.2659 3.57333V3.57333Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                        </g>
                        <defs>
                        <clipPath id="clip0_16761_179132">
                        <rect width="16" height="16" fill="white" transform="translate(0.372559 0.5)"/>
                        </clipPath>
                        </defs>
                    </svg>
                    <span class="ml6 topLabel">Collections&nbsp;</span>
                    <!--<span style="margin-left: 6px" class="hidden-par">(</span>
                    <span class="count favoritesCount">0</span>
                    <span class="hidden-par">)</span>-->
                  </a>
                  <a class="topLink flex aiCenter thin saveSearchTop" href="/myportal/searches">
                    <svg width="16" height="16" viewBox="0 4 20 17" fill="none" xmlns="http://www.w3.org/2000/svg">
                        <path d="M19 21L12 16L5 21V5C5 4.46957 5.21071 3.96086 5.58579 3.58579C5.96086 3.21071 6.46957 3 7 3H17C17.5304 3 18.0391 3.21071 18.4142 3.58579C18.7893 3.96086 19 4.46957 19 5V21Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"  />
                    </svg>

                    <span class="ml6 topLabel">Saved Searches&nbsp;</span>
                    <!--<span style="margin-left: 6px" class="hidden-par">(</span>
                    <span class="count savedSearchesCount">0</span>
                    <span class="hidden-par">)</span>-->

                  </a>
                  <a class="topLink flex aiCenter thin market-report-top" style="display:none" href="/myportal/reports">
                    <svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
                        <path d="M7.70589 13.1667C10.6514 13.1667 13.0392 10.7789 13.0392 7.83333C13.0392 4.88781 10.6514 2.5 7.70589 2.5C4.76037 2.5 2.37256 4.88781 2.37256 7.83333C2.37256 10.7789 4.76037 13.1667 7.70589 13.1667Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                        <path d="M14.3725 14.5L11.4725 11.6" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                    </svg>

                    <span class="ml6 topLabel">My Reports&nbsp;</span>
                    <!--<span style="margin-left: 6px" class="hidden-par">(</span>
                    <span class="count MarketReportsCount">0</span>
                    <span class="hidden-par">)</span>-->
                  </a>
                  <a class="aiCenter flex topBarProfile thin" href="/myportal/profile">
                        <span class="profileName"></span>
                    </a>
                    <a style="padding-right: 0px" class="aiCenter flex thin" id="topBarLogout" href="javascript:void()">
                    <svg width="23" height="23" viewBox="0 0 23 23" fill="none" xmlns="http://www.w3.org/2000/svg">
                        <g clip-path="url(#clip0_16761_179186)">
                            <path d="M16.4003 16.214C19.0038 13.6106 19.0038 9.38945 16.4003 6.78595C13.7968 4.18246 9.57572 4.18246 6.97222 6.78595C4.36873 9.38945 4.36873 13.6105 6.97222 16.214C9.57572 18.8175 13.7968 18.8175 16.4003 16.214Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                            <path d="M9.80066 9.61438L13.5719 13.3856" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                            <path d="M9.80066 13.3856L13.5719 9.61438" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                        </g>
                        <defs>
                        <clipPath id="clip0_16761_179186">
                            <rect width="16" height="16" fill="white" transform="translate(0.372559 11.5) rotate(-45)"/>
                        </clipPath>
                        </defs>
                    </svg>

                        <span class="ml6">Log Out</span>
                    </a>
                </div>
              </div>
            </div>
            <div id="not-logged-in">
              <topbar_agent_info_not_logged_in/>
              <ul class="list-unstyled list-inline no-margin">
                <li class="topBarSignin"><a href="#" onclick="showGoogleOneTap(true);"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-plus-circle mr10"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="16"></line><line x1="8" y1="12" x2="16" y2="12"></line></svg> Sign In</a></li>
              </ul>
            </div>
        </div>
        <!-- end site registration bar -->

    </div>
    <input type="hidden" id="huser_email" value="">
    <input type="hidden" id="huser_first_name" value="">
    <input type="hidden" id="huser_last_name" value="">
    <input type="hidden" id="huser_phone" value="">
    <input type="hidden" id="huser_uuid" value="">

    <div id="page" class="page"><header id="premium-navigation" data-selector="#premium-navigation" style="outline: none; cursor: inherit;">
    <div class="main-nav">
        <div class="container">
            <div class="navbar-header">
                <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse" style="outline: none; cursor: inherit;" data-selector="a.btn, button.btn, button">
                    <span class="sr-only">Toggle navigation</span>
                    <span class="icon-bar"></span>
                    <span class="icon-bar"></span>
                    <span class="icon-bar"></span>
                </button>
                <a class="navbar-brand" href="/" style="outline: none; cursor: inherit;">
                    <img class="img-responsive site_custom_logo" src="https://cdn1.brivityidx.com/assets/images/agent-photos/1/3/8/13852515/13366_96938f0e19897652.png" alt="Realvolution" style="outline: none; cursor: inherit;" data-selector="img"></a>
            </div>
            <div class="collapse navbar-collapse">
                <ul class="nav navbar-nav navbar-right" style="outline: none; cursor: inherit;">

                    
                    <li class="nav-item dropdown" data-selector="li" style="outline: none; cursor: inherit;"><a class="dropdown-toggle sec-nav-link-color" data-toggle="dropdown" data-hover="dropdown" data-delay="0" data-close-others="false" href="/search" aria-expanded="false" style="outline: none; cursor: inherit;">SEARCH<i class="fa fa-angle-down" data-selector=".fa" style="outline: none; cursor: inherit;"></i></a>
                        <ul class="dropdown-menu" style="outline: none; cursor: inherit;">
                            <li class="sec-nav-drop-color" data-selector="li" style="outline: none; cursor: inherit;"><a class="sec-nav-drop-link-color" href="/search" style="outline: none; cursor: inherit;">SEARCH LISTINGS</a></li>
                            <li class="sec-nav-drop-color" data-selector="li" style="outline: none; cursor: inherit;"><a class="sec-nav-drop-link-color" href="/office_listings" style="outline: none; cursor: inherit;">OFFICE LISTINGS</a></li>

                        </ul>
                    </li>
                    <li class="nav-item" data-selector="li" style="outline: none; cursor: inherit;"><a class="sec-nav-link-color" href="/buying">BUYING</a></li>
                    <li class="nav-item" data-selector="li" style="outline: none; cursor: inherit;"><a class="sec-nav-link-color" href="/selling">SELLING</a></li>
                    <li class="nav-item" data-selector="li" style="outline: none; cursor: inherit;"><a class="sec-nav-link-color" href="/home_value">HOME VALUE</a></li>
                    <li class="nav-item" data-selector="li" style="outline: none; cursor: inherit;"><a class="sec-nav-link-color" href="/financing">FINANCING</a></li>
                    <li data-selector="li" style="outline: none; cursor: inherit;">
                        <a class="menu-toggle nav-link-color" style="outline: none; cursor: inherit;">
                            <span>MENU</span>
                            <svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-menu">
                                <line x1="3" y1="12" x2="21" y2="12"></line>
                                <line x1="3" y1="6" x2="21" y2="6"></line>
                                <line x1="3" y1="18" x2="21" y2="18"></line>
                            </svg></a>
                    </li>
                    <li class="nav-item" data-selector="li" style="outline: none; cursor: inherit;">
                        <a href="/connect" id="top-nav-marketing-plan" class="btn-primary" style="outline: none; cursor: inherit;">Let's Talk</a>
                    </li>
                </ul>
            </div>
        </div>
    </div>
</header>
<div id="slide-out">
    <div class="container-fluid">
        <div class="row">
            <div class="col-md-12">
                <div class="header-flex">
                    <a class="navbar-brand" href="/" style="outline: none; cursor: inherit;">
                        <img class="img-responsive site_custom_logo" alt="Logo" src="https://cdn1.brivityidx.com/assets/images/agent-photos/1/3/8/13852515/13366_96938f0e19897652.png" data-selector="img" style="outline: none; cursor: inherit;"></a>
                    <div class="menu-toggle">
                        <svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-menu">
                            <line x1="3" y1="12" x2="21" y2="12"></line>
                            <line x1="3" y1="6" x2="21" y2="6"></line>
                            <line x1="3" y1="18" x2="21" y2="18"></line>
                        </svg>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>
<div id="slide-out-nav" class="">
    <div class="close-nav">
        <svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-x-circle">
            <circle cx="12" cy="12" r="10"></circle>
            <line x1="15" y1="9" x2="9" y2="15"></line>
            <line x1="9" y1="9" x2="15" y2="15"></line>
        </svg>
    </div>
    <div class="render-menu"><ul class="nav navbar-nav navbar-right"><li class="nav-item dropdown"><a class="dropdown-toggle sec-nav-link-color" data-toggle="dropdown" data-hover="dropdown" data-delay="0" data-close-others="false" href="/buying">BUYING<i class="fa fa-angle-down"></i></a><ul class="dropdown-menu"><li class="sec-nav-drop-color"><a class="sec-nav-drop-link-color" href="/financing">FINANCING</a></li><li class="sec-nav-drop-color"><a class="sec-nav-drop-link-color" href="/app">Our App</a></li></ul><li class="nav-item"><a class="sec-nav-link-color" href="/search">SEARCH LISTINGS</a></li><li class="nav-item dropdown"><a class="dropdown-toggle sec-nav-link-color" data-toggle="dropdown" data-hover="dropdown" data-delay="0" data-close-others="false" href="/top_areas">Top Areas<i class="fa fa-angle-down"></i></a><ul class="dropdown-menu"><li class="sec-nav-drop-color"><a class="sec-nav-drop-link-color" href="/search?multi_search=Chandler,%20AZ&amp;multi_cat=CityState&amp;propertyType=Condo/Townhome|Multi-Family|Residential&amp;status=1|3&amp;q_limit=36&amp;mlsId=21|248&amp;price=100000:&amp;q_sort=createdAt-&amp;q_offset=0">Chandler</a></li><li class="sec-nav-drop-color"><a class="sec-nav-drop-link-color" href="/search?multi_search=Gilbert,%20AZ&amp;multi_cat=CityState&amp;propertyType=Condo/Townhome|Multi-Family|Residential&amp;status=1|3&amp;q_limit=36&amp;mlsId=21|248&amp;price=100000:&amp;q_sort=createdAt-&amp;q_offset=0">Gilbert</a></li><li class="sec-nav-drop-color"><a class="sec-nav-drop-link-color" href="/search?multi_search=Phoenix,%20AZ&amp;multi_cat=CityState&amp;propertyType=Condo/Townhome|Multi-Family|Residential&amp;status=1|3&amp;q_limit=36&amp;mlsId=21|248&amp;price=100000:&amp;q_sort=createdAt-&amp;q_offset=0">Phoenix</a></li><li class="sec-nav-drop-color"><a class="sec-nav-drop-link-color" href="/search?multi_search=Scottsdale,%20AZ&amp;multi_cat=CityState&amp;propertyType=Condo/Townhome|Multi-Family|Residential&amp;status=1|3&amp;q_limit=36&amp;mlsId=21|248&amp;price=100000:&amp;q_sort=createdAt-&amp;q_offset=0">Scottsdale</a></li><li class="sec-nav-drop-color"><a class="sec-nav-drop-link-color" href="/search?multi_search=Tempe,%20AZ&amp;multi_cat=CityState&amp;propertyType=Condo/Townhome|Multi-Family|Residential&amp;status=1|3&amp;q_limit=36&amp;mlsId=21|248&amp;price=100000:&amp;q_sort=createdAt-&amp;q_offset=0">Tempe</a></li></ul><li class="nav-item dropdown"><a class="dropdown-toggle sec-nav-link-color" data-toggle="dropdown" data-hover="dropdown" data-delay="0" data-close-others="false" href="/selling">SELLING<i class="fa fa-angle-down"></i></a><ul class="dropdown-menu"><li class="sec-nav-drop-color"><a class="sec-nav-drop-link-color" href="/arizona-short-sale-info">Short Sale Info</a></li></ul><li class="nav-item"><a class="sec-nav-link-color" href="/home_value">HOME VALUE</a></li><li class="nav-item dropdown"><a class="dropdown-toggle sec-nav-link-color" data-toggle="dropdown" data-hover="dropdown" data-delay="0" data-close-others="false" href="/realestateagent/search">WHO WE ARE<i class="fa fa-angle-down"></i></a><ul class="dropdown-menu"><li class="sec-nav-drop-color"><a class="sec-nav-drop-link-color" href="/join-our-team">Join Our Team</a></li><li class="sec-nav-drop-color"><a class="sec-nav-drop-link-color" href="/connect">LET'S TALK</a></li></ul><li class="nav-item"><a class="sec-nav-link-color" href="/blog">blog</a></li></ul></div>
    <ul class="social" style="outline: none; cursor: inherit;">
        <li data-selector="li" style="outline: none; cursor: inherit;" class="agent_facebook_dynamic dynamic_loading"><a class="btn btn-block agent_facebook_dynamic dynamic_loading" href="https://www.facebook.com/thegarymercerteam" target="blank" data-selector="a.btn, button.btn, button" style="outline: none; cursor: inherit;padding: 12px 10px;"><i class="fa fa-2x fa-facebook fa-adjust prmry-color" data-selector=".fa" style="outline: none; cursor: inherit;"></i></a></li>
        <li data-selector="li" style="outline: none; cursor: inherit;" class="agent_twitter_dynamic dynamic_loading"><a class="btn btn-block agent_twitter_dynamic dynamic_loading" href="https://twitter.com/akhomefinder" target="blank" data-selector="a.btn, button.btn, button" style="outline: none; cursor: inherit;padding: 12px 10px;"><i class="fa fa-2x fa-twitter fa-adjust prmry-color" data-selector=".fa" style="outline: none; cursor: inherit;"></i></a></li>
        <li data-selector="li" style="outline: none; cursor: inherit;" class="agent_instagram_dynamic dynamic_loading"><a class="btn btn-block agent_instagram_dynamic dynamic_loading" href="https://www.instagram.com/thegarymercerteam/" target="blank" data-selector="a.btn, button.btn, button" style="outline: none; cursor: inherit;padding: 12px 10px;"><i class="fa fa-2x fa-instagram fa-adjust prmry-color" data-selector=".fa" style="outline: none; cursor: inherit;"></i></a></li>
        <li data-selector="li" style="outline: none; cursor: inherit;" class="agent_pinterest_dynamic dynamic_loading"><a class="btn btn-block agent_pinterest_dynamic dynamic_loading" href="https://www.pinterest.com/youralaskarealestate/" target="blank" data-selector="a.btn, button.btn, button" style="outline: none; cursor: inherit;padding: 12px 10px;"><i class="fa fa-2x fa-pinterest fa-adjust prmry-color" data-selector=".fa" style="outline: none; cursor: inherit;"></i></a></li>
        <li data-selector="li" style="outline: none; cursor: inherit;" class="agent_youtube_dynamic dynamic_loading"><a class="btn btn-block agent_youtube_dynamic dynamic_loading" href="https://www.youtube.com/channel/UCWnQa_cJHFx72yPRWu_8C5w" target="blank" data-selector="a.btn, button.btn, button" style="outline: none; cursor: inherit;padding: 12px 10px;"><i class="fa fa-2x fa-youtube fa-adjust prmry-color" data-selector=".fa" style="outline: none; cursor: inherit;"></i></a></li>

        <li data-selector="li" style="outline: none; cursor: inherit;" class="agent_linkedin_dynamic dynamic_loading"><a class="btn btn-block agent_linkedin_dynamic dynamic_loading" href="" target="blank" data-selector="a.btn, button.btn, button" style="outline: none; cursor: inherit;padding: 12px 10px;"><i class="fa fa-2x fa-linkedin fa-adjust prmry-color" data-selector=".fa" style="outline: none; cursor: inherit;"></i></a></li>

    </ul>
</div>
<div class="slide-out-nav-overlay"></div>
<section id="premium-1" data-selector="section, .section" style="outline-offset: -3px;"><div class="container header-content">
        <div class="row hero-row" style="margin-bottom: 50px;">
            <div style="width: 100% !important;">
                <div class="col-lg-8 col-lg-offset-2 col-md-8 col-md-offset-2 col-md-12 text-center animated wow fadeInUp animated animated animated animated animated animated animated animated cta-tb" style="visibility: visible; animation-name: fadeInUp;">
                    <h1 class="white" data-selector="h1, h2, h3, h4, h5, h6">Let's Find Your Home</h1>
                    <ul class="nav nav-tabs" style=""><li class="active" id="first-tab" data-selector="li"><a data-toggle="tab" href="#buy-home" id="find-button" aria-expanded="true">Buy <span class="hidden-xs">a Home</span></a></li>
                        <li class="" id="second-tab" data-selector="li"><a data-toggle="tab" href="#sell-home" id="sell-button" aria-expanded="false">Sell<span class="hidden-xs"> a Home</span></a></li>
                        <li class="" id="third-tab" data-selector="li"><a data-toggle="tab" href="#home-estimate" id="finance-button" aria-expanded="false" style=""><span class="hidden-xs">Home Value</span><span class="visible-xs">Estimate</span></a></li>
                    </ul><div class="tab-content">
                        
                        <div id="buy-home" class="tab-pane fade active in">
                            <div class="container-fluid">
                                <div class="row">
                                    <input id="haction" value="" type="hidden"><input id="mls_list" value="101" type="hidden"><input id="mls_prefix" value="nwmls" type="hidden"><input id="mls_states" value="WA" type="hidden"><input id="new_autocomplete" value="no" type="hidden"><input id="q_limit" value="" type="hidden"><input id="perPage" value="9" type="hidden"><input id="offset" value="" type="hidden"><input id="hlat" value="" type="hidden"><input id="hlng" value="" type="hidden"><input id="hradius" value="" type="hidden"><input id="s_sqFeet" value="" type="hidden"><input id="s_price" value="" type="hidden"><input id="location" value="" type="hidden"><form class="form-inline quick-search-form">
                                        <div id="custom-search-1">
                                            <div class="input-group col-xs-12">
                                                <input id="multi_cat" value="no_cat" type="hidden"><input id="multi_search" autocomplete="off" class="form-control input-lg ui-autocomplete-input" placeholder="Search by city, county, or zip" type="text"><span class="input-group-btn">
                                                    <button id="doSearch" class="btn btn-info btn-lg" type="button" data-selector="a.btn, button.btn, button" style="">
                                                        <i class="fa fa-search visible-xs visible-sm" data-selector=".fa"></i>
                                                        <span class="hidden-xs hidden-sm">Search</span>
                                                    </button>
                                                </span>
                                            </div>
                                        </div>
                                        <div id="honeypot-div">
                                            <input name="age_required" id="age_required" value="" type="text" style="display: none;"></div>
                                    </form>
                                </div>
                            </div>
                        </div>

                        <div id="sell-home" class="tab-pane fade">
                            <div class="container-fluid">
                                <div class="row">

                                    <form class="form-inline quick-search-form">
                                        <div id="custom-search-1">

                                            <div class="input-group col-xs-12">
                                                <p class="hidden-sm hidden-xs" id="save-thousands" data-selector="p">Ready to sell? We're ready to help!</p>

                                                <span class="input-group-btn" id="new-loan-btn" style="padding-right: 10px;width: 45%;left: unset;">
                                                    <button class="btn btn-info btn-lg" id="actual-sell-modal-button" type="button" style="width: 100%; margin: 0px; padding: 0px;" data-selector="a.btn, button.btn, button" data-toggle="modal" data-target="#selling-modal-second">
                                                        <span>Start The Process</span>
                                                    </button>
                                                </span>




                                                <input type="hidden" name="lead_type" value="buyer"><input type="hidden" name="tags" value="Finance Lead"></div>
                                        </div>
                                    </form>

                                </div>

                            </div>
                        </div>

                        <div id="home-estimate" class="tab-pane fade">
                            <div class="container-fluid">
                                <div class="row">

                                    <form class="form-inline quick-search-form">
                                        <div id="custom-search-1">

                                            <div class="input-group col-xs-12">
                                                <p class="hidden-sm hidden-xs" id="save-thousands" data-selector="p">Get an instant valuation of your home today!</p>

                                                <span class="input-group-btn" id="new-loan-btn" style="padding-right: 10px;width: 35%;left: unset;">
                                                    <button class="btn btn-info btn-lg" onclick="location.href='/home_value';" id="actual-sell-modal-button" type="button" style="width: 100%; margin: 0px; padding: 0px;" data-selector="a.btn, button.btn, button">
                                                        <span>Get Home Value</span>
                                                    </button>
                                                </span>




                                                <input type="hidden" name="lead_type" value="buyer"><input type="hidden" name="tags" value="Finance Lead"></div>
                                        </div>
                                    </form>

                                </div>

                            </div>
                        </div>



                    </div>
                    <div class="row footing">
                        <p data-selector="p">Buy and sell real estate, search neighborhoods, and get home estimates.</p>
                    </div>
                </div>
            </div>
        </div>
        <a class="anchor-scroll" href="#scroll-stop"><i class="fa fa-angle-down" data-selector=".fa"></i></a>
    </div>

    <div class="img-overlay" style='background-image: url("https://images.brivityidx.com/assets/images/uploads/10629/HeroImg.jpg"); opacity: 0.6; background-position: 50% 50%; background-size: cover;' data-selector=".img-overlay" src="https://images.brivityidx.com/assets/images/uploads/5001/GettyImages-1127575408_(1)1.jpg"></div>
   <!--- Hero Video 
    <div class="video-background hidden-sm hidden-xs">
        <div class="video-foreground">
            <iframe src="https://player.vimeo.com/video/517294946?autoplay=1&amp;loop=1&amp;title=0&amp;byline=0&amp;portrait=0&amp;background=1" webkitallowfullscreen="" mozallowfullscreen="" allowfullscreen="" frameborder="0"></iframe>
        </div>
    </div>
  --->
</section><script>
    var HOME_SEARCH_CONFIG = {};
    HOME_SEARCH_CONFIG.email = '<email-agent>';
    HOME_SEARCH_CONFIG.host = '<bluecma-host>';

</script><!-- Refinancing Modal --><div class="modal fade magic-modal" id="refinancing-modal" tabindex="-1" role="dialog" aria-labelledby="refinancing-modal" style="display: none;" aria-hidden="true">
    <div class="modal-dialog" role="document">
        <div class="modal-content">
            <div class="modal-body">
                <button type="button" class="close" data-dismiss="modal" aria-label="Close" data-selector="a.btn, button.btn, button"><span aria-hidden="true">×</span></button>
                <h4 class="prmry-color" data-selector="h1, h2, h3, h4, h5, h6">Looking to Refinance?</h4>
                <p data-selector="p" style="max-width: 700px; margin: 0px auto 35px; text-align: center;">We've got you covered. Fill out the form below and we'll be happy to find a solution tailored to your needs.</p>
                <form class="form-contact" id="form-contact2">
                    <input type="hidden" name="tags" value="Refinance Lead"><div class="row">
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact2_fname" id="contact2_fname" placeholder="First Name" class="form-control" required="" type="text"></div>
                        </div>
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact2_lname" id="contact2_lname" placeholder="Last Name" class="form-control" required="" type="text"></div>
                        </div>
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact2_email" id="contact2_email" placeholder="Email Address" class="form-control" required="" type="email"></div>
                        </div>
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact2_phone" id="contact2_phone" placeholder="Phone Number" class="form-control" required="" type="tel"></div>
                        </div>
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact2_address" id="contact2_address" placeholder="Address" class="form-control" required="" type="text"></div>
                        </div>
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact2_city" id="contact2_city" placeholder="City" class="form-control" required="" type="text"></div>
                        </div>
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact2_state" id="contact2_state" placeholder="State" class="form-control" required="" type="text"></div>
                        </div>
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact2_zip" id="contact2_zip" placeholder="ZIP" class="form-control" required="" type="text"></div>
                        </div>
                    </div>
                    <button class="btn btn-primary" type="submit" id="cf-submit" name="submit" data-selector="a.btn, button.btn, button">Send</button>
                </form>
            </div>
        </div>
    </div>
</div>


<!-- Financing Modal -->
<div class="modal fade magic-modal" id="actual-sell-modal" tabindex="-1" role="dialog" aria-labelledby="actual-sell-modal">
    <div class="modal-dialog" role="document">
        <div class="modal-content">
            <div class="modal-body">
                <button type="button" class="close" data-dismiss="modal" aria-label="Close" data-selector="a.btn, button.btn, button"><span aria-hidden="true">×</span></button>
                <h4 class="prmry-color" data-selector="h1, h2, h3, h4, h5, h6">Finance a Home</h4>
                <p data-selector="p" style="max-width: 700px; margin: 0px auto 35px; text-align: center;">We've got you covered. Fill out the form below and we'll be happy to find a solution tailored to your needs.</p>
                <form class="form-contact" id="form-contact3">
                    <input type="hidden" name="tags" value="Finance Lead"><div class="row">
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact3_fname" id="contact3_fname" placeholder="First Name" class="form-control" required="" type="text"></div>
                        </div>
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact3_lname" id="contact3_lname" placeholder="Last Name" class="form-control" required="" type="text"></div>
                        </div>
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact3_email" id="contact3_email" placeholder="Email Address" class="form-control" required="" type="email"></div>
                        </div>
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact3_phone" id="contact3_phone" placeholder="Phone Number" class="form-control" required="" type="tel"></div>
                        </div>
                    </div>
                    <button class="btn btn-primary" type="submit" id="cf-submit" name="submit" data-selector="a.btn, button.btn, button">Send</button>
                </form>
            </div>
        </div>
    </div>
</div>

<!-- Selling Modal -->
<div class="modal fade magic-modal" id="selling-modal-second" tabindex="-1" role="dialog" aria-labelledby="selling-modal-second">
    <div class="modal-dialog" role="document">
        <div class="modal-content">
            <div class="modal-body">
                <button type="button" class="close" data-dismiss="modal" aria-label="Close" data-selector="a.btn, button.btn, button"><span aria-hidden="true">×</span></button>
                <h4 class="prmry-color" data-selector="h1, h2, h3, h4, h5, h6" style="text-transform: capitalize;">Let us help you sell your home.</h4>
                <p data-selector="p" style="max-width: 700px; margin: 0px auto 35px; text-align: center;">You’re one step away from getting a free marketing plan that shows how we’ll sell your home for the most amount of money in the least amount of time - hassle free.</p>
                <form class="form-contact" id="form-contact5">
                    <input type="hidden" name="lead_type" value="seller"><input type="hidden" name="tags" value="Marketing_Plan_Requested"><div class="row">
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact5_fname" id="contact5_fname" placeholder="First Name" class="form-control" required="" type="text"></div>
                        </div>
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact5_lname" id="contact5_lname" placeholder="Last Name" class="form-control" required="" type="text"></div>
                        </div>
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact5_email" id="contact5_email" placeholder="Email Address" class="form-control" required="" type="email"></div>
                        </div>
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact5_phone" id="contact5_phone" placeholder="Phone Number" class="form-control" required="" type="tel"></div>
                        </div>
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact5_address" id="contact5_address" placeholder="Address" class="form-control" required="" type="text"></div>
                        </div>
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact5_city" id="contact5_city" placeholder="City" class="form-control" required="" type="text"></div>
                        </div>
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact5_state" id="contact5_state" placeholder="State" class="form-control" required="" type="text"></div>
                        </div>
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact5_zip" id="contact5_zip" placeholder="ZIP" class="form-control" required="" type="text"></div>
                        </div>
                        <div class="col-sm-12">
                            <div class="form-group">
                                <select name="contact5_whenareyouselling" id="contact5_whenareyouselling" class="form-control" placeholder="When are you planning to sell?"><option value="" disabled selected>When are you planning to sell?</option><option value="1">Now</option><option value="2">0-6 months</option><option value="3">6+ months</option></select></div>
                        </div>
                    </div>
                    <button class="btn btn-primary" type="submit" id="cf-submit" name="submit" data-selector="a.btn, button.btn, button">Send</button>
                </form>
            </div>
        </div>
    </div>
</div>

        <section id="scroll-stop" class="content-1n" style="padding: 80px 0px 20px;" data-selector="section, .section"><div class="container">
                <div class="col-sm-12 col-md-10 col-md-offset-1">
                    <div class="editContent" data-selector=".editContent">
                        <h2 class="prmry-color margin-bottom-20 font-w700" data-selector="h1, h2, h3, h4, h5, h6">Featured Listings</h2>
                        <hr style="border-color: rgb(128, 128, 128); border-width: 1px;" data-selector="hr"></div>
                </div>
            </div>
        </section>
      <!--Start React Block Publishing Flag-->
      <section class="featuredproperties-1R" reactblock="true" mode="featuredproperties" builder-tool-flag="source-code" which-hook="#featuredproperties-1-settings-hook" data-settings='{"solid":{"active":true,"color":"#fff"},"siteColors":true,"rows":2,"columns":4,"columnOptions":[1,2,3,4],"firstPanel":false,"buttons":true,"fullscreen":true,"textOnImage":true,"onHoverZoom":true,"beds":true,"baths":true,"squareFt":true,"paginationControls":{"active":true,"color":"#333333"},"mlsData":{"mls_ids":[{"id":"21","description":"ARMLS-Greater Phoenix Area"},{"id":"248","description":"Flagstaff MLS"}],"mls_agent_ids":["rm515","cr028"],"mls_office_ids":["KWEVT01"],"property_type":["Residential"],"status":["1"],"user_priority":"office","city":[],"multi_cat":[],"min_price":"100000","max_price":"1000000","beds":"","baths":"","garage":"","sqft":"","lot":"","year":"","agent_office_listings_only":0,"new_listings":0,"extraMlsInfo":[]},"firstTile":{"styles":{"background":"#F6F6F6","fontFamily":"Roboto"}},"header":{"content":"Featured Properties","styles":{"color":"#000000","fontFamily":"Roboto","fontWeight":"700","fontSize":"40px"}},"description":{"content":"View the best properties on the market!","styles":{"color":"#000000","fontFamily":"Roboto","fontSize":"20px","fontWeight":"500"}},"description2":{"content":"Schedule a showing today!","styles":{"color":"#000000","fontFamily":"Roboto","fontSize":"20px","fontWeight":"500"}},"buttonBackground":{"link":"/search","blank":false,"styles":{"backgroundColor":"#333333","borderColor":"transparent","borderRadius":"0px","borderWidth":"0px","borderStyle":"none"}},"buttonText":{"content":"View All","styles":{"color":"#fff","fontFamily":"Roboto","fontSize":"18px","fontWeight":"500"}}}' data-selector="section, .section" style="background-image: none !important; background-size: auto !important; background-color: rgba(0, 0, 0, 0) !important; padding: 0px !important; background-position: 0% 0% !important; background-repeat: repeat !important;" id="featuredproperties-1R"><!--End React Block Publishing Flag-->
        <div class="FeaturedProperties-1R" id="FeaturedProperties-1R"></div>
      </section>
    

        <section class="content-1n" style="padding: 10px 0px 120px;" data-selector="section, .section"><div class="container">
                <div class="col-sm-12">
                    <div class="editContent" data-selector=".editContent">
                        <a class="btn btn-primary" href="/search" data-selector="a.btn, button.btn, button">More Listings  <i class="fa fa-chevron-right" data-selector=".fa"></i></a>
                    </div>
                </div>
            </div>
        </section>
        <!--Start React Block Publishing Flag-->
        <section class="home-value-MyPortal home-value-react-block" mode="home-value-my-portal" builder-tool-flag="source-code" which-hook="#home-value-MyPortal-settings-hook" reactblock="true" data-settings="{&quot;carousel&quot;:{&quot;active&quot;:false,&quot;arrows&quot;:{&quot;active&quot;:true,&quot;color&quot;:&quot;#fff&quot;},&quot;dots&quot;:{&quot;active&quot;:true,&quot;color&quot;:&quot;#fff&quot;},&quot;overlay&quot;:{&quot;active&quot;:true,&quot;color&quot;:&quot;#000&quot;,&quot;opacity&quot;:&quot;0.5&quot;},&quot;autoscroll&quot;:true,&quot;scroll&quot;:false,&quot;fade&quot;:true,&quot;images&quot;:[&quot;https://images.brivityidx.com/assets/images/GettyImages-856794608.jpg&quot;,&quot;https://images.brivityidx.com/assets/images/GettyImages-1182454657.jpg&quot;,&quot;https://images.brivityidx.com/assets/images/GettyImages-1203161974.jpg&quot;,&quot;https://images.brivityidx.com/assets/images/GettyImages-1066000164.jpg&quot;],&quot;imagesAreArrayOfObjects&quot;:&quot;true&quot;},&quot;video&quot;:{&quot;active&quot;:false,&quot;videoID&quot;:&quot;414013186&quot;,&quot;overlay&quot;:{&quot;active&quot;:true,&quot;color&quot;:&quot;#000&quot;,&quot;opacity&quot;:&quot;0.5&quot;}},&quot;image&quot;:{&quot;active&quot;:true,&quot;imageURL&quot;:&quot;https://images.brivityidx.com/assets/images/uploads/10629/Homevalue.jpg&quot;,&quot;overlay&quot;:{&quot;active&quot;:true,&quot;color&quot;:&quot;#000&quot;,&quot;opacity&quot;:&quot;0.5&quot;},&quot;alt&quot;:&quot;A cabin with a lawn&quot;},&quot;solid&quot;:{&quot;active&quot;:false,&quot;color&quot;:&quot;#333333&quot;},&quot;mlsIds&quot;:&quot;21|248&quot;,&quot;mlsIdsComma&quot;:&quot;21,248&quot;,&quot;alignment&quot;:&quot;center&quot;,&quot;position&quot;:&quot;center&quot;,&quot;centerAlign&quot;:true,&quot;siteColors&quot;:true,&quot;layout&quot;:&quot;hero-image&quot;,&quot;header&quot;:{&quot;content&quot;:&quot;How Much Is Your Home Really Worth?&quot;,&quot;styles&quot;:{&quot;color&quot;:&quot;rgb(255, 255, 255)&quot;,&quot;fontSize&quot;:&quot;64px&quot;,&quot;fontWeight&quot;:&quot;700&quot;,&quot;fontFamily&quot;:&quot;Lato&quot;,&quot;textAlign&quot;:&quot;center&quot;,&quot;backgroundColor&quot;:&quot;rgba(0, 0, 0, 0)&quot;,&quot;letterSpacing&quot;:&quot;-0.99968px&quot;,&quot;lineHeight&quot;:&quot;74.688px&quot;,&quot;textTransform&quot;:&quot;none&quot;}},&quot;description&quot;:{&quot;content&quot;:&quot;Join over 300,000 homeowners in finding your home's value&quot;,&quot;styles&quot;:{&quot;color&quot;:&quot;rgb(255, 255, 255)&quot;,&quot;fontWeight&quot;:&quot;400&quot;,&quot;fontFamily&quot;:&quot;Lato&quot;,&quot;backgroundColor&quot;:&quot;rgba(0, 0, 0, 0)&quot;,&quot;fontSize&quot;:&quot;21.25px&quot;,&quot;letterSpacing&quot;:&quot;0.156188px&quot;,&quot;lineHeight&quot;:&quot;26.2437px&quot;,&quot;textTransform&quot;:&quot;none&quot;,&quot;textAlign&quot;:&quot;center&quot;}},&quot;buttonBackground&quot;:{&quot;link&quot;:&quot;/search&quot;,&quot;blank&quot;:false,&quot;styles&quot;:{&quot;background&quot;:&quot;#333333&quot;,&quot;borderColor&quot;:&quot;transparent&quot;,&quot;borderRadius&quot;:&quot;3px&quot;}},&quot;buttonText&quot;:{&quot;content&quot;:&quot;Find Out&quot;,&quot;styles&quot;:{&quot;color&quot;:&quot;rgb(255, 255, 255)&quot;,&quot;fontSize&quot;:&quot;14px&quot;,&quot;fontWeight&quot;:&quot;700&quot;,&quot;fontFamily&quot;:&quot;default&quot;,&quot;textTransform&quot;:&quot;uppercase&quot;,&quot;padding&quot;:&quot;0px 15px&quot;}},&quot;homeValueData&quot;:{&quot;reportType&quot;:&quot;full_report&quot;,&quot;report_headline&quot;:&quot;Your response is on the way&quot;,&quot;report_sub_headline&quot;:&quot;We'll email your report in the next 24 hours&quot;,&quot;agent_message&quot;:&quot;I'm putting your full report together now! You can contact me now if you need anything.&quot;},&quot;tagsData&quot;:[&quot;homevalue&quot;],&quot;showLocatingYourHome&quot;:false,&quot;showFoundYourHome&quot;:false,&quot;showEnterYourInformation&quot;:false,&quot;showOneMoreStep&quot;:false,&quot;showEnterYourAddressToGetStarted&quot;:false,&quot;showTellUsMore&quot;:false,&quot;showLoadingStatus&quot;:false,&quot;loadingStep1&quot;:&quot;notStarted&quot;,&quot;loadingStep2&quot;:&quot;notStarted&quot;,&quot;loadingStep3&quot;:&quot;notStarted&quot;,&quot;showPopupLoggedIn&quot;:false,&quot;showPopupReportError&quot;:false,&quot;showPopupGeneralError&quot;:false,&quot;showPopupHomeValueError&quot;:false}" data-selector="section, .section" id="home-value-MyPortal">
            <!--End React Block Publishing Flag-->
            <div style="display:flex" class="HomeValue-MyPortal" id="HomeValue-MyPortal"></div>
        </section>
    

        <section class="content-1n" style="padding: 80px 0px 20px;" data-selector="section, .section"><div class="container">
                <div class="col-sm-12 col-md-10 col-md-offset-1">
                    <div class="editContent" data-selector=".editContent">
                        <h2 class="prmry-color margin-bottom-20 font-w700" data-selector="h1, h2, h3, h4, h5, h6">New Listings</h2>
                        <hr style="border-color: rgb(128, 128, 128); border-width: 1px;" data-selector="hr"></div>
                </div>
            </div>
        </section>
      <!--Start React Block Publishing Flag-->
      <section class="featuredproperties-1R" reactblock="true" mode="featuredproperties" builder-tool-flag="source-code" which-hook="#featuredproperties-1-settings-hook" data-settings='{"solid":{"active":true,"color":"#fff"},"siteColors":true,"rows":2,"columns":4,"columnOptions":[1,2,3,4],"firstPanel":false,"buttons":true,"fullscreen":true,"textOnImage":true,"onHoverZoom":true,"beds":true,"baths":true,"squareFt":true,"paginationControls":{"active":true,"color":"#333333"},"mlsData":{"mls_ids":[{"id":"21","description":"ARMLS-Greater Phoenix Area"},{"id":"248","description":"Flagstaff MLS"}],"mls_agent_ids":[],"mls_office_ids":[],"property_type":["Residential"],"status":["1"],"user_priority":"","city":[],"multi_cat":[],"min_price":"100000","max_price":"1000000","beds":"","baths":"","garage":"","sqft":"","lot":"","year":"","agent_office_listings_only":0,"new_listings":1,"extraMlsInfo":[]},"firstTile":{"styles":{"background":"#F6F6F6","fontFamily":"Roboto"}},"header":{"content":"Featured Properties","styles":{"color":"#000000","fontFamily":"Roboto","fontWeight":"700","fontSize":"40px"}},"description":{"content":"View the best properties on the market!","styles":{"color":"#000000","fontFamily":"Roboto","fontSize":"20px","fontWeight":"500"}},"description2":{"content":"Schedule a showing today!","styles":{"color":"#000000","fontFamily":"Roboto","fontSize":"20px","fontWeight":"500"}},"buttonBackground":{"link":"/search","blank":false,"styles":{"backgroundColor":"#333333","borderColor":"transparent","borderRadius":"0px","borderWidth":"0px","borderStyle":"none"}},"buttonText":{"content":"View All","styles":{"color":"#fff","fontFamily":"Roboto","fontSize":"18px","fontWeight":"500"}}}' style="background-image: none !important; background-position: 0% 0% !important; background-size: auto !important; background-repeat: repeat !important; background-color: rgba(0, 0, 0, 0) !important; padding: 0px !important;" data-selector="section, .section" id="featuredproperties-1R"><!--End React Block Publishing Flag-->
        <div class="FeaturedProperties-1R" id="FeaturedProperties-1R"></div>
      </section>
    

        <section class="content-1n" style="padding: 20px 0px 80px;" data-selector="section, .section"><div class="container">
                <div class="col-sm-12">
                    <div class="editContent" data-selector=".editContent">
                        <a class="btn btn-primary" href="/search" data-selector="a.btn, button.btn, button">More Listings  <i class="fa fa-chevron-right" data-selector=".fa"></i></a>
                    </div>
                </div>
            </div>
        </section><footer data-selector="footer" id="footer-9n" style=""><div class="container">
        <div class="row">
            <div class="col-md-2">
                <div class="render-menu hot-nav">
                    <ul class=""><li class="nav-item" data-selector="li">
                            <a href="/index">Home</a>
                        </li>
                        <li class="nav-item" data-selector="li">
                            <a href="/search">Listings</a>
                        </li>
                        <li class="nav-item" data-selector="li">
                            <a href="/buying">Buying</a>
                        </li>
                        <li class="nav-item" data-selector="li">
                            <a class="white" href="/selling">Selling</a>
                        </li>
                        <!--
                        <li class="nav-item" data-selector="li" style="outline: none; cursor: inherit;">
                            <a href="/sitemap/city">Cities</a>
                        </li>
                        -->
                        <li class="nav-item" data-selector="li">
                            <a href="/financing">Financing</a>
                        </li>
                        <li class="nav-item" data-selector="li">
                            <a href="/home_value">Home Value</a>
                        </li>
                        <li class="nav-item" data-selector="li">
                            <a href="/realestateagent/search">Who We Are</a>
                        </li>
                        <li class="nav-item" data-selector="li">
                            <a href="/connect">Connect</a>
                        </li>
                    </ul></div>
            </div>

            <div class="col-md-7 col-md-offset-1">
                <form id="form-contact1" action="" class="form-contact">
                    <div class="row margin-bottom-0">
                        <div class="col-sm-6" style="margin-bottom: 20px;">
                            <div class="form-group">
                                <input name="contact1_fname" id="contact1_fname" placeholder="First Name" class="form-control contact_fname" type="text" required="" style='background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABHklEQVQ4EaVTO26DQBD1ohQWaS2lg9JybZ+AK7hNwx2oIoVf4UPQ0Lj1FdKktevIpel8AKNUkDcWMxpgSaIEaTVv3sx7uztiTdu2s/98DywOw3Dued4Who/M2aIx5lZV1aEsy0+qiwHELyi+Ytl0PQ69SxAxkWIA4RMRTdNsKE59juMcuZd6xIAFeZ6fGCdJ8kY4y7KAuTRNGd7jyEBXsdOPE3a0QGPsniOnnYMO67LgSQN9T41F2QGrQRRFCwyzoIF2qyBuKKbcOgPXdVeY9rMWgNsjf9ccYesJhk3f5dYT1HX9gR0LLQR30TnjkUEcx2uIuS4RnI+aj6sJR0AM8AaumPaM/rRehyWhXqbFAA9kh3/8/NvHxAYGAsZ/il8IalkCLBfNVAAAAABJRU5ErkJggg=="); background-repeat: no-repeat; background-attachment: scroll; background-size: 16px 18px; background-position: 98% 50%; cursor: auto;'></div>
                        </div>
                        <div class="col-sm-6" style="margin-bottom: 20px;">
                            <div class="form-group">
                                <input name="contact1_lname" id="contact1_lname" placeholder="Last Name" class="form-control contact_lname" type="text" required=""></div>
                        </div>
                    </div>
                    <div class="row margin-bottom-0">
                        <div class="col-sm-6" style="margin-bottom: 20px;">
                            <div class="form-group">
                                <input name="contact1_email" id="contact1_email" placeholder="Email Address" class="form-control contact_email" type="email" required=""></div>
                        </div>
                        <div class="col-sm-6" style="margin-bottom: 20px;">
                            <div class="form-group">
                                <input name="contact1_phone" id="contact1_phone" placeholder="Phone Number" class="form-control contact_phone" type="tel" required=""></div>
                        </div>
                    </div>
                    <div class="row margin-bottom-0">
                        <div class="col-sm-12" style="margin-bottom: 20px;">
                            <i class="fa fa-caret-down" style="position: absolute; top: 13px; right: 30px; font-size: 14px;" data-selector=".fa"></i>
                            <select name="lead_type" style="width: 100%; height: 40px; padding-left: 12px; font-size: 14px; border-radius: 5px !important; -webkit-appearance: none; -webkit-border-radius: 0px;"><option value="buyer">I'm interested in buying a home</option><option value="seller">I'm interested in selling a home</option><option value="seller/buyer">I'm interested in buying and selling</option><option value="tenant">I'm interested in finding a home to rent</option><option value="recruit">I'm interested in a real estate career</option><option value="n/a">Other reason to contact an agent</option></select></div>
                    </div>
                    <div class="row margin-bottom-0">
                        <div class="col-sm-12" style="margin-bottom: 20px;">
                            <textarea name="contact1_message" id="contact1_message" class="form-control contact_message" rows="3" placeholder="Your Message"></textarea></div>
                    </div>
                    <div class="text-right">
                        <input type="text" id="contact1_robot_field" name="contact1_robot_field" style="display: none;"><button type="submit" class="btn btn-primary squared" data-selector="a.btn, button.btn, button">Send Us A Message</button>
                    </div>
                    <div id="honeypot-div">
                        <input name="age_required" id="age_required" value="" type="text" style="display: none;"></div>
                </form>
            </div>

            <div class="col-md-2 col-md-offset-1">
                <img class="ftr-logo" src="https://images.brivityidx.com/assets/images/uploads/10629/Brokerlogoblack.png" alt="Buy and Sell Homes Real Estate" data-selector="img" style="border-radius: 0px !important;border-color: rgb(128, 128, 128) !important;border-style: none !important;border-width: 0px !important;height: 25px !important;width: 133px !important;"><h3 class="text-left margin-top-40" data-selector="h1, h2, h3, h4, h5, h6">Reach Out</h3>
                <div class="text-left" style="outline: medium none; cursor: inherit;">
                    <ul style="list-style-type: none;"><li data-selector="li">
                            <span class="agent_address_dynamic dynamic_loading"></span>
                            <br><span class="agent_city_dynamic dynamic_loading"></span>, <span class="agent_state_dynamic dynamic_loading"></span> <span class="agent_zip_dynamic dynamic_loading"></span>
                        </li>
                        <li data-selector="li">
                            <a class="agent_phone_dynamic dynamic_loading" href="tel:14804470937" src="tel:"></a>
                        </li>
                    </ul></div>
            </div>
        </div>

        <div class="row ftr-anchor">
            <div class="col-sm-6 anchor-col no-padding editContent" data-selector=".editContent">
                <p class="no-margin" data-selector="p"><span class="get_this_year">2026</span> © <strong>Ryan Melville | Keller Williams Realty Phoenix</strong></p>
                <p style="margin: 10px 0px;" data-selector="p">
                    <img src="https://images.brivityidx.com/assets/images/uploads/1428/Equal-Housing-Realtor_gray50.png" alt="Equal Housing | Realtor" style="width: 50px;" data-selector="img">
                     
                    Each office is independently owned and operated.
                </p>
            </div>
            <div class="col-sm-6 anchor-col no-padding">
                <ul class="social" style=""><li data-selector="li" class="agent_facebook_dynamic dynamic_loading" href="https://www.facebook.com/"><a class="btn btn-block agent_facebook_dynamic dynamic_loading" href="https://www.facebook.com/" target="blank" data-selector="a.btn, button.btn, button"><i class="fa fa-2x fa-facebook fa-adjust prmry-color" data-selector=".fa"></i></a></li>
                   
                    <li data-selector="li" class="agent_twitter_dynamic dynamic_loading" href="https://twitter.com/"><a class="btn btn-block agent_twitter_dynamic dynamic_loading" href="https://twitter.com/" target="blank" data-selector="a.btn, button.btn, button"><i class="fa fa-2x fa-twitter fa-adjust prmry-color" data-selector=".fa"></i></a></li>
                    
                    <li data-selector="li" class="agent_instagram_dynamic dynamic_loading" href="https://www.instagram.com/"><a class="btn btn-block agent_instagram_dynamic dynamic_loading" href="https://www.instagram.com/" target="blank" data-selector="a.btn, button.btn, button"><i class="fa fa-2x fa-instagram fa-adjust prmry-color" data-selector=".fa"></i></a></li>
                    
                    <li data-selector="li" class="agent_pinterest_dynamic dynamic_loading" href="https://www.pinterest.com/"><a class="btn btn-block agent_pinterest_dynamic dynamic_loading" href="https://www.pinterest.com/" target="blank" data-selector="a.btn, button.btn, button"><i class="fa fa-2x fa-pinterest fa-adjust prmry-color" data-selector=".fa"></i></a></li>
                    
                    <li data-selector="li" class="agent_youtube_dynamic dynamic_loading" href="https://www.youtube.com/"><a class="btn btn-block agent_youtube_dynamic dynamic_loading" href="https://www.youtube.com/" target="blank" data-selector="a.btn, button.btn, button"><i class="fa fa-2x fa-youtube fa-adjust prmry-color" data-selector=".fa"></i></a></li>
                    
                    <li data-selector="li" class="agent_linkedin_dynamic dynamic_loading" href="https://www.linkedin.com/"><a class="btn btn-block agent_linkedin_dynamic dynamic_loading" href="https://www.linkedin.com/" target="blank" data-selector="a.btn, button.btn, button"><i class="fa fa-2x fa-linkedin fa-adjust prmry-color" data-selector=".fa"></i></a></li>

         </ul></div></div></div></footer>
    </div>
    <!-- /#page -->

    <!-- SEO Footer Anchor -->
    <section id="seo-anchor">
        <div class="container">
            <ul class="powered-by">
                <li>Powered by <a class="pb-vendor" href="https://www.brivity.com/"> Brivity</a></li>
                <li class="pb-admin-login"><a href="https://login.brivityidx.com/login"><span class='pb-admin-login-text'>Admin Log In</span></a></li>
            </ul>

            <ul class="seo-anchor-links">
                <li><a href="/privacy_policy">Privacy Policy</a></li>
                <li><a href="/tos">DMCA &amp; Terms of Service</a></li>
                <li><a id='sitemapUrl' href='/sitemap' style='display: inline;'>Sitemap</a></li>
            </ul>

        </div>
    </section>
    <!-- end SEO Footer Anchor -->

    <input type="hidden" id="hchatbot_settings" value="{&quot;chat_position&quot;:&quot;right&quot;,&quot;call_to_action_text&quot;:&quot;Hi there! Please let us know if you have any questions and an agent will reach out to you as soon as possible.&quot;,&quot;initial_message&quot;:&quot;Enter your question below and an agent will be in touch with you.&quot;,&quot;tags&quot;:&quot;IDX Chat&quot;,&quot;version&quot;:&quot;1&quot;}">
<!-- chatbot v1 -->
<!-- Chatbot drawer container -->
<div class="chatbot-drawer-container loading">
    <div class="chatbot-content-wrapper">
        <div class="chatbot-outside-content">
            <div class="chatbot-bubble-message-container cb-hide">
                <img src="" class="chatbot-agent-img agent_pic_dynamic"/>
                <div id="call-to-action" class="bubble-message"></div>
                <button type="button" class="chatbox-bubble-close" data-dismiss="modal" aria-label="Close">
                    <span aria-hidden="true">&times;</span>
                </button>
            </div>
            <button id="chatbot-open-btn" class="chatbot-open-btn bg-prmry">
                <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
                    <path d="M20.8 6.35501V16C20.8 17.765 19.365 19.195 17.6 19.195L11.2 19.2L5.755 22.28C5.645 22.365 5.52 22.4 5.4 22.4C5.09 22.4 4.8 22.155 4.8 21.8V19.2H3.2C1.4375 19.2 0 17.765 0 16V6.35501C0 4.63751 1.4375 3.20001 3.2 3.20001H17.6C19.365 3.20001 20.8 4.63751 20.8 6.35501ZM7.2 18.705L10.57 16.8H17.6C18.035 16.8 18.4 16.44 18.4 16V6.40001C18.4 5.96251 18.035 5.60001 17.6 5.60001H3.2C2.7625 5.60001 2.4 5.96251 2.4 6.40001V16C2.4 16.44 2.7625 16.8 3.2 16.8H7.2V18.705ZM12.8 22.4V20.8H15.2V22.4C15.2 22.835 15.56 23.2 16 23.2H21.43L24.8 25.105V23.2H28.8C29.235 23.2 29.6 22.835 29.6 22.4V12.8C29.6 12.365 29.235 12 28.8 12H22.4V9.60001H28.8C30.565 9.60001 32 11.035 32 12.755V22.4C32 24.165 30.565 25.6 28.8 25.6H27.2V28.2C27.2 28.555 26.91 28.8 26.6 28.8C26.48 28.8 26.355 28.765 26.245 28.68L20.8 25.6L16 25.595C14.24 25.595 12.8 24.165 12.8 22.4Z" fill="white"/>
                </svg>
            </button>
        </div>
        <div class="chatbot-drawer">
            <div class="chatbot-header bg-prmry">
                <div class="chatbot-agent-info">
                    <img class="chatbot-agent-img agent_pic_dynamic"/>
                    <div class="chatbot-agent">
                        <h3 class="agent_name_dynamic"></h3>
                        <h4><span class="agent_title_dynamic"></span> | <span class="agent_company_name_dynamic"></span></h4>
                    </div>
                    <a id="chatbot-agent-phone" style="display: none;" class="agent_phone_dynamic"></a>
                </div>
                <button id="close-chatbot-drawer" type="button" class="chatbox-modal-close" data-dismiss="modal" aria-label="Close">
                    <span aria-hidden="true">&times;</span>
                </button>
            </div>
            <div class="chatbot-body">
                <div class="chatbot-message-container">
                    <img class="chatbot-agent-img agent_pic_dynamic"/>
                    <h4 id="initial_message" class="chatbot-chat-messages not-loaded"></h4>
                    <div class="chatbot-chat-messages loading">
                        <span class="typing-indicator">
                            <span></span>
                            <span></span>
                            <span></span>
                        </span>
                    </div>
                </div>
                <form id="chatbotForm" class="chatbot-form">
                    <input type="name" id="chatbot_fullname" class="chatbox-form-control no-native-focus" placeholder="Name *"
                        pattern="^[A-Za-z'\- ]+ [A-Za-z'\- ]+$"
                        required />
                    <input type="tel" id="chatbot_phone" class="chatbox-form-control no-native-focus" placeholder="Phone *" required />
                    <input type="email" id="chatbot_email" class="chatbox-form-control no-native-focus" placeholder="Email *"
                        pattern="^[^@\s]+@[^@\s]+\.[^@\s]+$"
                        required />
                    <textarea id="chatbot_message" class="chatbox-form-control chatbot-message" rows="5" name="notes" placeholder="Any Comments or Questions"></textarea>
                    <div class="chatbot-consent-container">
                        <p>
                            I agree to receive automated marketing calls and texts (SMS/MMS) from <span class="agent_company_name_dynamic"></span>, its affiliates and their agents. Msg & data rates may apply. 
                            Msg frequency varies. Reply STOP to cancel. Consent is not required for purchase. I also agree to the <a href="/tos">Terms of Use</a> and <a href="/privacy_policy">Privacy Policy</a>.
                        </p>
                    </div>
                    <input type="hidden" id="chatbot_tags">
                </form>
            </div>
            <div class="chatbot-footer">
                <button type="submit" form="chatbotForm" class="chatbot-send bg-prmry chatbot-btn-disabled" data-dismiss="modal" aria-label="Close" disabled>
                    Send 
                    <span aria-hidden="true"> 
                        <svg class="chatbot-btn-icon" width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
                            <g clip-path="url(#clip0_2435_997)">
                                <path d="M14.6667 1.33331L7.33337 8.66665" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                                <path d="M14.6667 1.33331L10 14.6666L7.33337 8.66665L1.33337 5.99998L14.6667 1.33331Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                            </g>
                            <defs>
                                <clipPath id="clip0_2435_997">
                                    <rect width="16" height="16" fill="white"/>
                                </clipPath>
                            </defs>
                        </svg>
                    </span>
                </button>
            </div>
        </div>
    </div>
</div>    
    <!--    ask for change password modal form-->
    <div class="modal fade" id="asking-password-modal" tabindex="-1" role="dialog">
        <div class="modal-dialog modal-lg" role="document">
            <div class="modal-content">
                <div class="modal-body">
                    <h2 class="margin-bottom-20" style="color: black">Forgot Password?</h2>
                    <p>Don't worry! It happens. Please enter the email address associated with your account.</p>
                    <div id="get-token-success-msg" class="alert alert-success hide">
                        <strong>Success!</strong> <span>Email sent.</span>
                    </div>
                    <div class="alert alert-danger hide">
                        <strong>Error!</strong> <span>Error sending email.</span>
                    </div>
                    <div class="row margin-bottom-0">
                        <div class="col-md-12 col-md-offset-2" style="margin-left: 0">
                            <div class="form-group">
                                <label for="asking_password">Email</label>
                                <input type="email" id="asking_password" class="form-control" placeholder="Enter email">
                            </div>
                        </div>
                    </div>
                    <div class="flex jc-center">
                        <button id="get-email-token" class="btn btn-primary" style="width: 100%; justify-content: center; display: flex">
                            <div class="flex ai-center">
                                <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
                                     fill="none" stroke="currentColor" stroke-width="2"
                                     stroke-linecap="round" stroke-linejoin="round"
                                     class="feather feather-mail">
                                    <path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path>
                                    <polyline points="22,6 12,13 2,6"></polyline>
                                </svg>
                                &nbsp;Send me an email
                            </div>
                        </button>
                    </div>
                    <div class="flex jc-center">
                        <a id="cancel-ask-token" style="width: 100%; justify-content: center; display: flex" data-dismiss="modal" data-bs-dismiss="modal" class="btn btn-default">
                            <div class="flex ai-center">
                                <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
                                     fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
                                     stroke-linejoin="round" class="feather feather-x">
                                    <line x1="18" y1="6" x2="6" y2="18"></line>
                                    <line x1="6" y1="6" x2="18" y2="18"></line>
                                </svg>
                                &nbsp;Go Back
                            </div>
                        </a>
                    </div>

                    <div class="flex jc-center">
                        <a id="back-to-sign-up"><h5>Don't have an account? <span style="color:#5386e4">Sign Up</span></h5></a>
                    </div>

                </div>
            </div>
        </div>
    </div>
    <!--    end ask for change password modal form-->

    <!--    change password modal form-->
    <div class="modal fade" id="change-password-modal" tabindex="-1" role="dialog">
        <div class="modal-dialog modal-lg" role="document">
            <div class="modal-content">
                <div class="modal-body">
                    <h2 class="margin-bottom-20" style="color: black">Reset Password</h2>

                    <div id="pwchange-success" class="alert alert-success hide">
                        <strong>Success!</strong> <span>Password changed.</span>
                    </div>

                    <div id="pwchange-error" class="alert alert-danger hide">
                        <strong>Error!</strong> <span>Error on changing password.</span>
                    </div>

                    <div class="row margin-bottom-0">
                        <div class="col-md-12 col-md-offset-2" style="margin-left: 0;">
                            <div class="form-group">
                                <label>New password</label>
                                <input type="password" id="user_npassword" class="form-control" placeholder="******">
                            </div>
                        </div>
                        <div class="col-md-12 col-md-offset-2" style="margin-left: 0;">
                            <div class="form-group">
                                <label>Confirm New Password</label>
                                <input type="password" id="user_npassword_c" class="form-control" placeholder="******">
                            </div>
                        </div>
                    </div>
                    <div class="flex jc-center">
                        <button id="changePassword" class="btn btn-primary" style="width: 100%; margin-left: 0; justify-content: center; display: flex">
                            <div class="flex ai-center">
                                <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
                                     stroke="currentColor" stroke-width="2" stroke-linecap="round"
                                     stroke-linejoin="round" class="feather feather-mail">
                                    <path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path>
                                    <polyline points="22,6 12,13 2,6"></polyline>
                                </svg>&nbsp;
                                Change Password
                                <div>
                        </button>
                    </div>
                    <div class="flex jc-center">
                        <button data-dismiss="modal" data-bs-dismiss="modal" class="btn btn-default" style="width: 100%; margin-left: 0; justify-content: center; display: flex; background: none; border: none;">
                            <div class="flex ai-center">
                                <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
                                     stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
                                     class="feather feather-x"><line x1="18" y1="6" x2="6" y2="18"></line>
                                    <line x1="6" y1="6" x2="18" y2="18"
                                    ></line>
                                </svg>&nbsp;
                                Cancel
                            </div>
                        </button>
                    </div>
                    <div class="flex jc-center">
                        <a href="#" id="go-to-login">
                            <h5>Back to login</h5>
                        </a>
                    </div>
                </div>
            </div>
        </div>
    </div>
    <!--    end password modal form-->

    <!-- facebook login modal -->
    <div class="modal fade" id="facebook-login-modal" tabindex="-1" role="dialog">
        <div class="modal-dialog modal-lg" role="document">
            <div class="modal-content">
                <div class="modal-body text-center">
                    <h2 class="margin-bottom-20">Confirm Your Account</h2>
                    <div class="row margin-bottom-0">
                        <div class="col-md-8 col-md-offset-2">
                            <p>Search and view Exclusive Property Listings.</p>
                        </div>
                    </div>
                    <div class="flex jc-center">
                        <button class=" btn frc-btn-facebook" onclick="fbLogin()" scope="public_profile,email" onlogin="checkLoginState();">
                            <div class="flex ai-center">
                                <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
                                    <path d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"/>
                                </svg>
                                <span>Continue with Facebook</span>
                            </div>
                        </button>
                    </div>
                    <div class="flex jc-center">
                        <p>We'll never post to your social networks</p>
                    </div>

                </div>
            </div>
        </div>
    </div>
    <!--  end facebook login modal -->

    <!-- Sign Up Modal -->
    <div class="modal fade" id="sign-up-modal" tabindex="-1" role="dialog">
        <div class="modal-dialog new-modal-dialog" role="document">
            <div class="modal-content new-sign-up-modal-content">
                <div class="modal-body new-sign-up-modal">
                    <div class="tab-content">
                        <!-- // login start step 1 -->
                        <div role="tabpanel" class="tab-pane fade in active" id="create_step_1">
                            <div class="close-sign-container">
                                <h2 style="text-align: center" class="signup-modal-title">Sign Up for Free</h2>
                                <button id="close-signup-modal-button"  type="button" class="new-close" data-dismiss="modal" data-bs-dismiss="modal" aria-label="Close">
                                    <span  aria-hidden="true">&times;</span>
                                </button>
                            </div>
                            <p class="new-sign-up-p">Create an account to save properties, receive alerts about new listings,
                                view comparables, and obtain monthly market reports.
                            </p>

                            <!-- // google button -->
                            <div class="flex jc-center ai-center sign-in-btn-wrappers">
                                <button class="btn frc-btn-google google-signin-btn new-google-signin new-signup-btn" onlogin="checkLoginState();" style="width:100%; justify-content: center;" id="customGoogleBtn">
                                    <div class="flex ai-center new-signup-btn-cont">
                                        <div class="icon-wrapper">
                                            <svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg">
                                                <path fill-rule="evenodd" clip-rule="evenodd" d="M20.1 10.7272C20.1 10.0181 20.0364 9.33631 19.9182 8.68176H10.5V12.5499H15.8818C15.65 13.7999 14.9455 14.859 13.8864 15.5681V18.0772H17.1182C19.0091 16.3363 20.1 13.7727 20.1 10.7272Z" fill="#4285F4"/>
                                                <path fill-rule="evenodd" clip-rule="evenodd" d="M10.4989 20.4999C13.1989 20.4999 15.4625 19.6044 17.117 18.0772L13.8852 15.5681C12.9898 16.1681 11.8443 16.5226 10.4989 16.5226C7.89432 16.5226 5.68977 14.7635 4.90341 12.3999H1.5625V14.9908C3.20795 18.259 6.58977 20.4999 10.4989 20.4999Z" fill="#34A853"/>
                                                <path fill-rule="evenodd" clip-rule="evenodd" d="M4.90455 12.4001C4.70455 11.8001 4.59091 11.1592 4.59091 10.5001C4.59091 9.84103 4.70455 9.20013 4.90455 8.60013V6.00922H1.56364C0.886364 7.35922 0.5 8.88649 0.5 10.5001C0.5 12.1138 0.886364 13.641 1.56364 14.991L4.90455 12.4001Z" fill="#FBBC05"/>
                                                <path fill-rule="evenodd" clip-rule="evenodd" d="M10.4989 4.47727C11.967 4.47727 13.2852 4.98182 14.3216 5.97273L17.1898 3.10455C15.458 1.49091 13.1943 0.5 10.4989 0.5C6.58977 0.5 3.20795 2.74091 1.5625 6.00909L4.90341 8.6C5.68977 6.23636 7.89432 4.47727 10.4989 4.47727Z" fill="#EA4335"/>
                                            </svg>
                                        </div>
                                        <span class="new-signup-btn-text">
                                            Continue with Google
                                        </span>
                                    </div>
                                </button>
                            </div>                                                     
                            <!-- // facebook button -->
                            <div class="flex jc-center ai-center sign-in-btn-wrappers">
                                <button class=" btn frc-btn-facebook new-facebook-signin new-signup-btn" onclick="fbLogin()" scope="public_profile,email" onlogin="checkLoginState();" style="width:100%; justify-content: center;">
                                    <div class="flex ai-center new-signup-btn-cont">
                                        <div class="icon-wrapper">
                                            <svg xmlns="http://www.w3.org/2000/svg" width="31" height="31" viewBox="0 0 31 31" fill="none">
                                                <circle cx="15.5" cy="15.5" r="13.5" fill="#0866ff"/>
                                                <path d="M20.5866 19.6512L21.1792 15.871H17.4045V13.4124C17.4045 12.3793 17.9248 11.3712 19.5807 11.3712H21.2693V8.2025C21.2693 8.2025 19.7177 7.94727 18.2348 7.94727C15.1694 7.94727 13.145 9.77055 13.145 13.0508V15.871H9.67188V19.6512H13.145V29.0221C13.8377 29.1275 14.5455 29.1802 15.2635 29.1802C15.9815 29.1802 16.6892 29.1275 17.382 29.0221V19.6512H20.5866Z" fill="white"/>
                                            </svg>
                                        </div>
                                        <span class="new-signup-btn-text">Continue with Facebook</span>
                                    </div>
                                </button>
                            </div>
                            <!-- // apple button -->
                            <div class="flex jc-center ai-center sign-in-btn-wrappers">
                                <button class="btn frc-btn-apple apple-signin-btn new-signup-btn new-apple-signin" onclick="appleLogin()" scope="public_profile,email" onlogin="checkLoginState();" style="width:100%; justify-content: center;padding:5px;">
                                    <div class="flex ai-center new-signup-btn-cont">
                                        <div class="icon-wrapper">
                                            <svg class="apple-social-svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512" width="15" height="20" aria-hidden="true" focusable="false" preserveAspectRatio="xMidYMid meet">
                                                <path fill="#000000" d="M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.9 14.7 80.5c14.5 41.1 54.5 94.5 97.5 94.5 18.2 0 50.4-19.2 82.5-19.2 31.2 0 63.5 18.6 86 18.6 37 0 67.9-36.4 93.5-73.1-73.6-35.7-87-157.1-4.9-212.9zM255.7 48c1.2-39.8 36.5-73 76-74.8-1.2 46.9-38.7 84.7-76 74.8z"/>
                                            </svg>
                                        </div>
                                        <span class="new-signup-btn-text">Continue with Apple</span>
                                    </div>
                                </button>
                            </div>
                            <div class="row loginSeparator new-separator" style="display: none;">
                                <div class="separator-lines">
                                    <hr class="solid">
                                </div>
                                <div class="text-center separator-or">
                                    OR
                                </div>
                                <div class="separator-lines">
                                    <hr class="solid">
                                </div>
                            </div>

                            <div>
                                <div class="signup-email-title">Email</div>
                                <div class="row margin-bottom-0">
                                    <div class="col-md-8 col-md-offset-2" style="width: 100%; margin-left: 0;">
                                        <div class="form-group new-email-container">
                                            <input type="email" id="signup_email" class="form-control new-signup-input" placeholder="Enter email">
                                        </div>
                                    </div>
                                </div>
                                <div class="flex jc-center sign-in-btn-wrappers">
                                    <span id="signupErrorMessage" class="alert alert-warning" style="display: none;"></span>
                                </div>
                                <div class="flex jc-center sign-in-btn-wrappers">
                                    <button id="SignUpContinueBtn" class="btn btn-primary new-signup-btn" style="width: 100%; justify-content: center;">
                                        <div class="flex ai-center new-signup-btn-text">
                                            Continue with Email
                                        </div>
                                    </button>
                                </div>
                            </div>

                            <div class="row">
                                <div class="col-sm-12 text-center">
                                    <a href="#signin" aria-controls="signin" role="tab" data-toggle="tab">
                                        <h5>Already have an account? <span style="color:#5386e4">Sign In</span></h5>
                                    </a>
                                </div>
                            </div>
                            <div class="opt-out text-center">By continuing you agree to the terms of service and conditions.</div>
                            <div class="opt-out-href text-center">
                                <a href="/privacy_policy">Privacy Policy</a>
                                |
                                <a href="/tos">Terms & Conditions</a>
                            </div>
                        </div>

                        <!-- // sign up step 2 almost there -->
                        <div role="tabpanel" class="tab-pane fade" id="create_step_2">
                            <div class="close-sign-container">
                                <h2 style="text-align: center" class="signup-modal-title">Almost there...</h2>
                                <button id="close-signup-modal-button-2" type="button" class="new-close" data-dismiss="modal" data-bs-dismiss="modal" aria-label="Close">
                                    <span aria-hidden="true">&times;</span>
                                </button>
                            </div>
                            <p class="new-sign-up-p">Your profile is almost complete! Just a few more details from you.</p>
                            <div class="row margin-bottom-0">
                                <div class="col-md-8 col-md-offset-2" style="width: 100%; margin-left: 0;">
                                    <div class="form-group step-2-new-email-container">
                                        <label for="signup_fullname" class="signup-step-2-input-title">Full Name</label>
                                        <input type="email" id="signup_fullname" class="form-control new-signup-input" placeholder="Jane Smith"
                                               required pattern="\b\w+\b(?:.*?\b\w+\b){1}"
                                               oninvalid="setCustomValidity('Please enter First and Last Name')"
                                               onchange="try{setCustomValidity('')}catch(e){}">
                                    </div>
                                    <div class="form-group new-email-container">
                                        <label for="signup_phone" class="signup-step-2-input-title">Mobile Number <span>(Used as Password)</span></label>
                                        <input type="tel" id="signup_phone" class="form-control new-signup-input" placeholder="+1(000)000-0000">
                                        <input type="hidden" id="signup_tags">
                                    </div>
                                </div>
                            </div>

                             <style>
                                .signup-consent-checkbox-section {
                                    display: none;
                                    flex-direction:column;
                                    align-items:flex-start;
                                }

                                .signup-consent-checkbox-section .checkbox {
                                    display:flex; 
                                    align-items:flex-start; 
                                    justify-content:center; 
                                    gap:8px; 
                                    padding:0 !important;
                                }

                                .signup-consent-checkbox-section .checkbox input {
                                    position:unset;
                                    margin:2px 0 0 0 !important;
                                }

                                .signup-consent-checkbox-section .checkbox span {
                                    color: #8C8C8C;
                                    font-size:10px;
                                    font-weight:600;
                                    line-height:16px;
                                }

                                .signup-verbage {
                                    display:flex;
                                    flex-direction: column;
                                    gap:24px;
                                    text-align:center;
                                    font-size:10px;
                                    line-height:16px;
                                }

                                .signup-verbage span {
                                   color: #8C8C8C; 
                                   font-weight:600; 
                                }

                                .signup-verbage a {
                                    color:#5386E4 !important;
                                    font-weight:400;
                                }

                                .signup-verbage .twilio-enabled-verbage {
                                    display:none;
                                }

                                
                                
                            </style>

                            <div  class="signup-consent-checkbox-section">
                                <label class="checkbox" >
                                    <input id="signup_sms_consent_checkbox" style="margin:0;" type="checkbox"></input>
                                   <span>I consent to receive text marketing communications via SMS/MMS from <span class="agent_name_dynamic"></span>.</span> 
                                </label>
                            </div>

                            <div class="flex jc-center sign-in-btn-wrappers">
                                <button type="submit" id="signupBtn" class="btn btn-primary new-signup-btn" style="width: 100%; justify-content: center;">
                                    <div class="flex ai-center new-signup-btn-text">
                                        Sign Up
                                    </div>
                                </button>
                            </div>
                            <div class="flex jc-center sign-in-btn-wrappers sign-in-go-back-wrapper">
                                <button id="signupGoBackBtn" class="btn btn-primary step-2-new-signup-btn" style="justify-content: center;">
                                    <div class="flex ai-center new-signup-btn-text">
                                        Go Back
                                    </div>
                                </button>
                            </div>

                            <div class="signup-verbage">
                                <span>By digitally signing this form you are providing <span class="agent_name_dynamic"></span> with your express written consent to send you marketing communications via email<span class="sms-disclaimer-text"> and by SMS</span>, calls or prerecorded messages dialed by a natural person or by an automatic or automated telephone dialing system. This express written consent applies to each such email address or telephone number that you provide to us now or in the future and permits such communication regardless of their purpose.</span>

                                <span><span class="twilio-enabled-verbage">By checking the box, you consent to receive marketing text messages. If checked, you consent to receiving texts including marketing and promotional communications, from <span class="agent_name_dynamic"></span>. </span>Messages and data rates may apply. Message frequency varies. To opt out of text messages, reply STOP. Your consent is not required as a condition of any purchase. By continuing, you also agree to our <a class="opt-out-href" href="/tos">Terms & Conditions</a> and <a class="opt-out-href" href="/privacy_policy">Privacy Policy</a></span>
                            </div>

                           
                           
                        </div>

                        <!-- // login step sign in -->
                        <div role="tabpanel" class="tab-pane fade" id="signin">
                            <div class="close-sign-container">
                                <h2 style="text-align: center" class="signup-modal-title">Welcome back!</h2>
                                <button id="close-signup-modal-button-3" type="button" class="new-close" data-dismiss="modal" data-bs-dismiss="modal" aria-label="Close">
                                    <span aria-hidden="true">&times;</span>
                                </button>
                            </div>
                            <p class="new-sign-up-p">We've missed you! Please enter your details.</p>

                            <!-- // Login google -->
                            <div class="flex jc-center ai-center sign-in-btn-wrappers">
                                <button class="btn frc-btn-google google-signin-btn new-google-signin new-signup-btn" onlogin="checkLoginState();" style="width:100%; justify-content: center;">
                                    <div class="flex ai-center new-signup-btn-cont">
                                        <div class="icon-wrapper">
                                            <svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg">
                                                <path fill-rule="evenodd" clip-rule="evenodd" d="M20.1 10.7272C20.1 10.0181 20.0364 9.33631 19.9182 8.68176H10.5V12.5499H15.8818C15.65 13.7999 14.9455 14.859 13.8864 15.5681V18.0772H17.1182C19.0091 16.3363 20.1 13.7727 20.1 10.7272Z" fill="#4285F4"/>
                                                <path fill-rule="evenodd" clip-rule="evenodd" d="M10.4989 20.4999C13.1989 20.4999 15.4625 19.6044 17.117 18.0772L13.8852 15.5681C12.9898 16.1681 11.8443 16.5226 10.4989 16.5226C7.89432 16.5226 5.68977 14.7635 4.90341 12.3999H1.5625V14.9908C3.20795 18.259 6.58977 20.4999 10.4989 20.4999Z" fill="#34A853"/>
                                                <path fill-rule="evenodd" clip-rule="evenodd" d="M4.90455 12.4001C4.70455 11.8001 4.59091 11.1592 4.59091 10.5001C4.59091 9.84103 4.70455 9.20013 4.90455 8.60013V6.00922H1.56364C0.886364 7.35922 0.5 8.88649 0.5 10.5001C0.5 12.1138 0.886364 13.641 1.56364 14.991L4.90455 12.4001Z" fill="#FBBC05"/>
                                                <path fill-rule="evenodd" clip-rule="evenodd" d="M10.4989 4.47727C11.967 4.47727 13.2852 4.98182 14.3216 5.97273L17.1898 3.10455C15.458 1.49091 13.1943 0.5 10.4989 0.5C6.58977 0.5 3.20795 2.74091 1.5625 6.00909L4.90341 8.6C5.68977 6.23636 7.89432 4.47727 10.4989 4.47727Z" fill="#EA4335"/>
                                            </svg>
                                        </div>
                                        <span class="flex ai-center new-signup-btn-text">
                                            Continue with Google
                                        </span>
                                    </div>
                                </button>
                            </div>

                            <!-- // Login facebook -->
                            <div class="flex jc-center ai-center sign-in-btn-wrappers">
                                <button class=" btn frc-btn-facebook new-facebook-signin new-signup-btn" onclick="fbLogin()" scope="public_profile,email" onlogin="checkLoginState();" style="width:100%; justify-content: center;">
                                    <div class="flex ai-center new-signup-btn-cont">
                                        <div class="icon-wrapper">
                                            <svg xmlns="http://www.w3.org/2000/svg" width="31" height="31" viewBox="0 0 31 31" fill="none">
                                                <circle cx="15.5" cy="15.5" r="13.5" fill="#0866ff"/>
                                                <path d="M20.5866 19.6512L21.1792 15.871H17.4045V13.4124C17.4045 12.3793 17.9248 11.3712 19.5807 11.3712H21.2693V8.2025C21.2693 8.2025 19.7177 7.94727 18.2348 7.94727C15.1694 7.94727 13.145 9.77055 13.145 13.0508V15.871H9.67188V19.6512H13.145V29.0221C13.8377 29.1275 14.5455 29.1802 15.2635 29.1802C15.9815 29.1802 16.6892 29.1275 17.382 29.0221V19.6512H20.5866Z" fill="white"/>
                                            </svg>
                                        </div>
                                        <span class="new-signup-btn-text">Continue with Facebook</span>
                                    </div>
                                </button>
                            </div>
                            <!-- // Login apple -->
                            <div class="flex jc-center ai-center sign-in-btn-wrappers">
                                <button class="btn frc-btn-apple apple-signin-btn new-signup-btn new-apple-signin" onclick="appleLogin()" scope="public_profile,email" onlogin="checkLoginState();" style="width:100%; justify-content: center;">
                                    <div class="flex ai-center new-signup-btn-cont">
                                        <div class="icon-wrapper">
                                            <svg class="apple-social-svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512" width="15" height="20" aria-hidden="true" focusable="false" preserveAspectRatio="xMidYMid meet">
                                                <path fill="#000000" d="M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.9 14.7 80.5c14.5 41.1 54.5 94.5 97.5 94.5 18.2 0 50.4-19.2 82.5-19.2 31.2 0 63.5 18.6 86 18.6 37 0 67.9-36.4 93.5-73.1-73.6-35.7-87-157.1-4.9-212.9zM255.7 48c1.2-39.8 36.5-73 76-74.8-1.2 46.9-38.7 84.7-76 74.8z"/>
                                            </svg>
                                        </div>
                                        <span class="new-signup-btn-text">Continue with Apple</span>
                                    </div>
                                </button>
                            </div>

                            <div class="row loginSeparator new-separator" style="display: none;">
                                <div class="separator-lines">
                                    <hr class="solid">
                                </div>
                                <div class="text-center separator-or">
                                    OR
                                </div>
                                <div class="separator-lines">
                                    <hr class="solid">
                                </div>
                            </div>

                            <div class="row margin-bottom-0">
                                <div class="col-md-12 col-md-offset-2" style="margin-left: 0;">
                                    <div class="form-group new-email-container">
                                        <label class="signup-step-2-input-title" for="signin_email">Email</label>
                                        <input type="email" id="signin_email" class="form-control new-signup-input" placeholder="Enter email">
                                    </div>
                                </div>
                            </div>
                            <div class="row margin-bottom-0">
                                <div class="col-md-12 col-md-offset-2" style=" margin-left: 0;">
                                    <div class="form-group new-email-container">
                                        <label class="signup-step-2-input-title" for="signin_password">Password</label>
                                        <input type="password" id="signin_password" class="form-control new-signup-input" required="" placeholder="**********">
                                    </div>
                                </div>
                            </div>
                            <div class="row margin-bottom-0">
                                <div class="col-md-12 col-md-offset-2" style=" margin-left: 0;">
                                    <a href="#" id="open-forgot-pass">
                                        <h5 class="sign-forgot-pass" style="color: #5386e4">Forgot your password?</h5>
                                    </a>
                                </div>
                            </div>
                            <div class="flex jc-center sign-in-btn-wrappers">
                                <span id="loginErrorMessage" class="alert alert-warning" style="display: none;"></span>
                            </div>
                            <div class="flex jc-center sign-in-btn-wrappers">
                                <button id="loginBtn" class="btn btn-primary new-signup-btn" style="width: 100%; justify-content: center;">
                                    <div class="flex ai-center new-signup-btn-text">
                                        Sign In
                                    </div>
                                </button>
                            </div>
                            <div class="row">
                                <div class="col-sm-12 text-center">
                                    <a href="#create_step_1" aria-controls="create_step_1" role="tab" data-toggle="tab">
                                        <h5>Don't have an account? <span style="color:#5386e4">Sign Up</span></h5>
                                    </a>
                                </div>
                            </div>

                            <div class="opt-out text-center"> By digitally signing this form you are providing <span class="agent_name_dynamic"></span> with your express written consent to send you business and marketing communications via email and by calls or prerecorded messages dialed by a natural person or by an automatic or automated telephone dialing system. This express written consent applies to each such email address or telephone number that you provide to us now or in the future and permits such communication regardless of their purpose.</div>
                            <br />
                            <div class="opt-out text-center">If checked, you consent to receiving texts including marketing and promotional communications, from <span class="agent_name_dynamic"></span>. Messages and data rates may apply. Message frequency varies. To opt out of text messages, reply STOP. Your consent is not required as a condition of any purchase. By continuing, you also agree to our <a class="opt-out-href" href="/tos">Terms & Conditions</a> and <a class="opt-out-href" href="/privacy_policy">Privacy Policy</a></div>
                            
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>

    <!-- sign up questions -->
    <div class="popupOverlay"></div>
    <div class="popupCTA">
        <div class="closeCTA">
            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-x"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg>
        </div>
        <div class="popupBody">
            <iframe id="signup-question-iframe" style="display:none" src="" frameborder="0"></iframe>
            <div class="followUp message">
                <img class="messageIcon" loading="lazy" fetchpriority="low" src="https://cdn1.brivityidx.com/assets/images/house1.png" width="65" height="65" alt="home">
                <h3 class="popupHeadline">Are you buying or selling a home?</h3>
                <div class="circleBtns">
                    <div class="circleBtnWrapper followUpBtns">
                        <div class="circleBtn" onclick="signupQuestionNext('buy','Buying')" id="buying">
                            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check"><polyline points="20 6 9 17 4 12"></polyline></svg>
                        </div>
                        <span class="circleBtnLabel">Buying</span>
                    </div>

                    <div class="circleBtnWrapper followUpBtns">
                        <div class="circleBtn" onclick="signupQuestionNext('sell','Selling')" id="selling">
                            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check"><polyline points="20 6 9 17 4 12"></polyline></svg>
                        </div>
                        <span class="circleBtnLabel">Selling</span>
                    </div>

                    <div class="circleBtnWrapper followUpBtns">
                        <div class="circleBtn" onclick="signupQuestionNext('both','Both')" id="both">
                            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check"><polyline points="20 6 9 17 4 12"></polyline></svg>
                        </div>
                        <span class="circleBtnLabel">Both</span>
                    </div>
                </div>
            </div>
            <!-- BUYING ROUTE -->
            <!-- Timeline Q1 -->
            <div class="buyTimeline message">
                <img class="messageIcon" loading="lazy" fetchpriority="low" src="https://cdn1.brivityidx.com/assets/images/search.png" width="65" height="65" alt="home">
                <h3 class="popupHeadline">When are you planning on buying a new home?</h3>
                <div class="circleBtns">
                    <div class="circleBtnWrapper followUpBtns">
                        <div class="circleBtn" onclick="signupQuestionNext('','1-3 months')" id="threeMoBuy">
                            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check"><polyline points="20 6 9 17 4 12"></polyline></svg>
                        </div>
                        <span class="circleBtnLabel">1-3 Mo</span>
                    </div>

                    <div class="circleBtnWrapper followUpBtns">
                        <div class="circleBtn" onclick="signupQuestionNext('','3-6 months')" id="sixMoBuy">
                            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check"><polyline points="20 6 9 17 4 12"></polyline></svg>
                        </div>
                        <span class="circleBtnLabel">3-6 Mo</span>
                    </div>

                    <div class="circleBtnWrapper followUpBtns">
                        <div class="circleBtn" onclick="signupQuestionNext('','6+ months')" id="overSixMoBuy">
                            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check"><polyline points="20 6 9 17 4 12"></polyline></svg>
                        </div>
                        <span class="circleBtnLabel">6+ Mo</span>
                    </div>
                </div> <!-- .circleBtns / -->
                <button onclick="signupQuestionBack()" class="backBtn">Back</button>
            </div>

            <!-- Mortgage Q2 -->
            <div class="mortgage message">
                <img class="messageIcon" loading="lazy" fetchpriority="low" src="https://cdn1.brivityidx.com/assets/images/contract.png" width="65" height="65" alt="home">
                <h3 class="popupHeadline">Are you pre-approved for a mortgage?</h3>
                <div class="circleBtns">
                    <div class="circleBtnWrapper followUpBtns">
                        <div class="circleBtn" onclick="signupQuestionNext('','Yes')" id="mortgageYes">
                            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check"><polyline points="20 6 9 17 4 12"></polyline></svg>
                        </div>
                        <span class="circleBtnLabel">Yes</span>
                    </div>

                    <div class="circleBtnWrapper followUpBtns">
                        <div class="circleBtn" onclick="signupQuestionNext('','No')" id="mortgageNo">
                            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-x"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg>
                        </div>
                        <span class="circleBtnLabel">No</span>
                    </div>

                    <div class="circleBtnWrapper followUpBtns">
                        <div class="circleBtn" onclick="signupQuestionNext('','Using Cash')" id="cash">
                            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-dollar-sign"><line x1="12" y1="1" x2="12" y2="23"></line><path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"></path></svg>
                        </div>
                        <span class="circleBtnLabel">Using Cash</span>
                    </div>
                </div> <!-- .circleBtns / -->
                <button onclick="signupQuestionBack()" class="backBtn">Back</button>
            </div>

            <!-- Consult Q3 -->
            <div class="consult message" id="consult">
                <img class="messageIcon" loading="lazy" fetchpriority="low" src="https://cdn1.brivityidx.com/assets/images/house3.png" width="65" height="65" alt="home">
                <h3 class="popupHeadline">Would you like to schedule a consultation now?</h3>
                <div class="circleBtns">
                    <div class="circleBtnWrapper followUpBtns">
                        <div class="circleBtn" onclick="signupQuestionNext('','Yes')" id="consultYes">
                            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check"><polyline points="20 6 9 17 4 12"></polyline></svg>
                        </div>
                        <span class="circleBtnLabel">Yes</span>
                    </div>

                    <div class="circleBtnWrapper followUpBtns">
                        <div class="circleBtn" onclick="signupQuestionsSet('No')" id="consultNo">
                            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-x"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg>
                        </div>
                        <span class="circleBtnLabel">No</span>
                    </div>
                </div> <!-- .circleBtns / -->
                <button onclick="signupQuestionBack()" class="backBtn">Back</button>
            </div>

            <!-- Schedule Consult Q4 -->
            <div class="scheduleConsult message">
                <h3 class="popupHeadline">When would you like us to call?</h3>
                <textarea id="signupQuestionConsultTimes" placeholder="What times work for you?"></textarea>
                <div class="followUpBtns">
                    <button id="consultYesBtn">Submit</button>
                </div>
            </div>

            <!-- Confirm Q5 -->
            <div class="confirmConsult message">
                <h3 class="popupHeadline">Thanks! We’ll give you a call as soon as possible.</h3>
                <div class="followUpBtns">
                    <button id="finishCTA">Done</button>
                </div>
            </div>

            <!-- SELLING ROUTE -->
            <!-- Sell Timeline Q1 -->
            <div class="sellTimeline message" id="sellTimeline">
                <img class="messageIcon" loading="lazy" fetchpriority="low" src="https://cdn1.brivityidx.com/assets/images/search.png" width="65" height="65" alt="home">
                <h3 class="popupHeadline">When are you planning on selling your home?</h3>
                <div class="circleBtns">
                    <div class="circleBtnWrapper followUpBtns">
                        <div class="circleBtn" onclick="signupQuestionNext('','1-3 months')" id="threeMoSell">
                            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check"><polyline points="20 6 9 17 4 12"></polyline></svg>
                        </div>
                        <span class="circleBtnLabel">1-3 Mo</span>
                    </div>

                    <div class="circleBtnWrapper followUpBtns">
                        <div class="circleBtn" onclick="signupQuestionNext('','3-6 months')" id="sixMoSell">
                            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check"><polyline points="20 6 9 17 4 12"></polyline></svg>
                        </div>
                        <span class="circleBtnLabel">3-6 Mo</span>
                    </div>

                    <div class="circleBtnWrapper followUpBtns">
                        <div class="circleBtn" onclick="signupQuestionNext('','6+ months')" id="overSixMoSell">
                            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check"><polyline points="20 6 9 17 4 12"></polyline></svg>
                        </div>
                        <span class="circleBtnLabel">6+ Mo</span>
                    </div>
                </div> <!-- .circleBtns / -->
                <button onclick="signupQuestionBack()" class="backBtn">Back</button>
            </div>

            <!-- Sell Timeline Q2 -->
            <div class="consultOrValue message">
                <h3 class="popupHeadline">Would you like to schedule a consultation or see your home value?</h3>
                <div class="circleBtns">
                    <div class="circleBtnWrapper followUpBtns">
                        <div class="circleBtn" onclick="signupQuestionNext('','Yes')" id="sellConsultYes">
                            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check"><polyline points="20 6 9 17 4 12"></polyline></svg>
                        </div>
                        <span class="circleBtnLabel">Schedule Consultation</span>
                    </div>

                    <div class="circleBtnWrapper followUpBtns">
                        <div class="circleBtn" onclick="signupQuestionHomeValue()" id="seeHomeValue">
                            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-home"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><polyline points="9 22 9 12 15 12 15 22"></polyline></svg>
                        </div>
                        <span class="circleBtnLabel">My Home Value</span>
                    </div>
                </div> <!-- .circleBtns / -->
                <button onclick="signupQuestionBack()" class="backBtn">Back</button>
            </div>
        </div> <!-- /.popupBody -->
    </div>
    <!-- end signup questions -->

    <!-- home value modal -->
    <div class="modal fade" id="modal_subject_home" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
        <div class="modal-dialog">
            <div class="modal-content">
              <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal" data-bs-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
                <h4 class="modal-title" id="myModalLabel">Please confirm your property details:</h4>
              </div>
              <div class="modal-body">
                <div class="row">
                  <div class="col-sm-9">
                    <h2 id="home_address"></h2>
                  </div>
                </div>
                  <form id="subjectHomeForm" class="form-horizontal" data-toggle="validator" onsubmit="return false;">
                    <input type="hidden" name="latitude"  value="" id="CmaLatitude" />
                    <input type="hidden" name="longitude" value="" id="CmaLongitude" />
                    <input type="hidden" name="street" value="" id="street">
                    <input type="hidden" name="address"   value=""  id="address" />
                    <input type="hidden" name="address_auto" value="" id="address_auto" />
                    <input type="hidden" name="state"     value="" id="state" />
                    <input type="hidden" name="zipcode"   value="" id="zipcode" />
                    <input type="hidden" name="city"      value="" id="city" />
                    <input type="hidden" name="county"      value="" id="county" />
                    <div class="form-group">
                      <div class="col-sm-12 col-md-12 hv_search_address_container">
                        <label for="year">Address:</label>
                        <input type="text" id="search_address_modal" name="search_address_modal" autocomplete="off" value="" placeholder="Address, City and Zip Code" class="form-control">
                      </div>
                      <div class="col-md-6">
                          <label for="property_type">Property Type:</label>
                          <select id="property_type" name="property_type" class="form-control">
                            <option value="2">Residential</option>
                            <option value="1">Commercial</option>
                            <option value="3">Vacant</option>
                          </select>
                      </div>
                      <div class="col-md-6">
                        <label for="search_area">Search Area:</label>
                        <select id="search_area" name="search_area" class="form-control">
                            <option value="0.5">0.5 m</option>
                            <option value="1">1 m</option>
                            <option value="1.5">1.5 m</option>
                            <option value="2">2 m</option>
                        </select>
                      </div>
                    </div>
                    <div class="form-group">
                      <div class="col-sm-3">
                        <label for="year">Year:</label>
                        <input type="text" id="year" name="year" value="" placeholder="Year Built" class="form-control">
                      </div>
                      <div class=" col-sm-3" id="acreage_sec">
                        <label for="acreage">Acreage:</label>
                        <input type="text" id="acreage" name="acreage" value="" placeholder="Acreage" class="form-control">
                      </div>
                      <div class=" col-sm-3">
                        <label for="sq_feet">SQFT:</label>
                        <input type="text" id="sq_feet" name="sq_feet" value="" placeholder="Sq Feet" class="form-control">
                      </div>
                    </div>
                    <div class="form-group">
                      <div class=" col-sm-3">
                        <label for="beds">Beds:</label>
                        <input type="text" id="beds" name="beds" value="" placeholder="Beds" class="form-control">
                      </div>
                      <div class=" col-sm-3">
                        <label for="bath_full">Bathrooms:</label>
                        <input type="text" id="bath_full" name="bath_full" value="" placeholder="Baths" class="form-control">
                      </div>
                      <div class=" col-sm-3">
                        <label for="garage_cap">Garage:</label>
                        <input type="text" id="garage_cap" name="garage_cap" value="" placeholder="Garage" class="form-control">
                      </div>
                    </div>
                    <div class="form-group">
                      <div class="col-sm-12">
                        <button type="submit" id="submit_homeform" class="btn btn-primary btn-lg btn-block">Find out home value</button>
                      </div>
                    </div>
                  </form>
              </div>
              <div class="modal-footer">
              </div>
             </div>
          </div>
        </div>

        <!-- end home value modal -->

        <!-- Phone Confirm Modal -->
        <div class="modal fade" id="phone-confirm-modal" tabindex="-1" role="dialog">
            <div class="modal-dialog modal-lg" role="document">
                <div class="modal-content">
                    <div class="modal-body text-center">
                        <div class="tab-content">
                            <div role="tabpanel" class="tab-pane fade in active" id="phoneConfirm">
                                <form id="phoneConfirmForm" action="" onsubmit="return false;">
                                    <h2 class="margin-bottom-20">Confirm Password</h2>
                                    <p>Confirm your password by entering your phone number.</p>
                                    <div class="row margin-bottom-0">
                                        <div class="col-md-8 col-md-offset-2">
                                            <div class="form-group">
                                                <input type="tel" id="confirm_phone" class="form-control confirm-phone-contact" required="" placeholder="Your Phone Number (Used as password)">
                                            </div>
                                        </div>
                                    </div>
                                    <div class="flex jc-center">
                                        <button id="confirmPhoneBtn" class="btn btn-primary">
                                            <div class="flex ai-center">
                                              <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
                                                <path d="M14 22h5a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2h-5" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
                                                <polyline points="11 16 15 12 11 8" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
                                                <line x1="15" y1="12" x2="3" y2="12" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
                                              </svg> <span>Confirm Phone</span>
                                            </div>
                                        </button>
                                    </div>
                                </form>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        <!-- End Phone Confirm Modal -->

        <!-- Quick Search's results not found modal -->
        <div class="modal fade" id="not-found-modal" tabindex="-1" role="dialog">
          <div class="modal-dialog modal-lg" role="document">
            <div class="modal-content">
              <div class="modal-header">Sorry, we couldn’t find '<span id="search_value"></span>' <button type="button" class="close" data-dismiss="modal" data-bs-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button></div>
              <div class="modal-body">
                <p>Please check the spelling, try clearing the search box, or try reformatting to match these examples:</p>
                <p>
                  <b>Address:</b> '123 Main St, Anytown'<br>
                  <b>Neighborhood:</b> 'Downtown'<br>
                  <b>Zip:</b> '98115'<br>
                  <b>City:</b> 'Anytown' or 'Anytown, State/Province'<br>
                  <b>MLS number:</b> 'MLS# 38065544'<br>
                </p>
              </div>
              <div class="modal-footer">
                <span style="float: left; margin-right: 10px;"><svg class="SvgIcon rfSvg info" style="fill: rgb(12, 130, 165); height: 18px; width: 18px;"><svg viewBox="0 0 24 24"><path d="M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10S2 17.514 2 12 6.486 2 12 2m0-2C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm1 16v-5.75a.25.25 0 0 0-.25-.25h-2.5a.25.25 0 0 0-.25.25V12h1v4h-1v1.75c0 .138.112.25.25.25h3.5a.25.25 0 0 0 .25-.25V16h-1zm-.25-8h-1.5a.25.25 0 0 1-.25-.25v-1.5a.25.25 0 0 1 .25-.25h1.5a.25.25 0 0 1 .25.25v1.5a.25.25 0 0 1-.25.25z" fill-rule="evenodd"></path></svg></svg></span>
                Don't see what you're looking for? Your search might be outside our <a href="/city">service areas.</a></div> or could be off market.
            </div>
          </div>
        </div>
        <!-- End Quick Search's results not found modal -->

        <!-- Quick Search's 'did you mean' modal -->
        <div class="modal fade" id="did-you-mean-modal" tabindex="-1" role="dialog">
          <div class="modal-dialog modal-lg" role="document">
            <div class="modal-content">
              <div class="modal-header">Did You Mean <button type="button" class="close" data-dismiss="modal" data-bs-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button></div>
              <div class="modal-body">
              </div>
              <div class="modal-footer" style="display: flex">
                <span style="float: left; margin-right: 10px;"><svg class="SvgIcon rfSvg info" style="fill: rgb(12, 130, 165); height: 18px; width: 18px;"><svg viewBox="0 0 24 24"><path d="M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10S2 17.514 2 12 6.486 2 12 2m0-2C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm1 16v-5.75a.25.25 0 0 0-.25-.25h-2.5a.25.25 0 0 0-.25.25V12h1v4h-1v1.75c0 .138.112.25.25.25h3.5a.25.25 0 0 0 .25-.25V16h-1zm-.25-8h-1.5a.25.25 0 0 1-.25-.25v-1.5a.25.25 0 0 1 .25-.25h1.5a.25.25 0 0 1 .25.25v1.5a.25.25 0 0 1-.25.25z" fill-rule="evenodd"></path></svg></svg></span>
                <div>
                    Don't see what you're looking for? Your search might be outside our <a href="/city">service areas</a> or could be off the market.</div>
                </div>
            </div>
          </div>
        </div>
         <!-- End Quick Search's 'did you mean' modal -->


        <!-- Google one tap container -->
        <div id="credential_picker_container_centered">
            <div id="credential_picker_header_bar">
            <p><button class="signOrLogBtn" onclick="showSignupModal();">Sign up</button> or <button class="signOrLogBtn" onclick="showLoginModal();">Login</button> another way</p>
            </div>
            <div id="credential_picker_header_bar_separator"></div>
        </div>
        <!-- end Google one tap container -->


        <place-getyourhomecta
           id="contact_modal"
            style="display:none;
                justify-content: center;
                align-items: center;
                position:fixed;
                background-color:rgba(0,0,0,0.4);
                left:0;
                top:0;
                right:0; 
                bottom:0;
                z-index: 100;"
            interest_items='[{"text":"Looking to sell ASAP"},{"text":"Looking to sell (1-3 months)"},{"text":"Looking to sell (3-6 months)"},  {"text":"Looking to sell (6-12 months)"},{"text":"Looking to sell (12+ months)"}, {"text":"Just curious"}]'
        >
        </place-getyourhomecta>

        <!-- Toast messages -->
        <script>
            document.addEventListener("DOMContentLoaded", () => {
                if (customElements.get('place-generictoast')) {
                    const toastEl = document.createElement('place-generictoast');
                    toastEl.setAttribute('appear_from_both', 'true');
                    toastEl.setAttribute('container_style', 'right-1/2 z-200');
                    document.body.appendChild(toastEl);

                    class Toast {
                        show(message, error = false, link) {
                            window.dispatchEvent(new CustomEvent("ShowToast", {
                                detail: { text: message, error, link },
                            }));
                        }
                    }
                    window.toast = new Toast();
                } else {
                    window.toast = {
                        show(message, error = false, link) {
                            PlaceGenericToast.show({ text: message, error, link });
                        }
                    };
                }
            });
        </script>


        <!-- Load JS here for greater good =============================-->
        <!--<script>deferScriptOnLoad("https://www.google.com/recaptcha/enterprise.js?render=6LfNOsoUAAAAAKTst6hjCdK0tmeiA4GVzqBjwScC", 5000);</script>-->
        <script src="https://www.google.com/recaptcha/enterprise.js?render=6LfNOsoUAAAAAKTst6hjCdK0tmeiA4GVzqBjwScC" async defer></script>
        <script src="https://mobile-component-services-library-dev.brivity.com/web-components.min.js?ck=1"></script>
        
        <!-- <script src="https://accounts.google.com/gsi/client" async defer></script> -->
        <!-- Add library for advanced marker to script -->
        <script src="https://cdn.jsdelivr.net/npm/@turf/turf@7.3/turf.min.js"></script>
        <script src="https://maps.googleapis.com/maps/api/js?libraries=geocoding,places,marker,drawing&key=AIzaSyAjpuNg6WGCMV5rzoJcIP2QmMTVto6hYmc&map_ids=85c127b7bf0255d9"></script>
        <script src="https://cdn1.brivityidx.com/assets/js/build.min.js?ck="></script>
        <script src="https://cdn1.brivityidx.com/assets/js/top_bar_v2.min.js?ck="></script>
        <script src="https://cdn1.brivityidx.com/assets/js/global_js.min.js?ck=1781027421"></script>
        <script>deferScript("https://cdn1.brivityidx.com/assets/js/global_js_defer.min.js?ck=1781027421", 5000);</script>
        <!-- defer script for chatbot -->
        <script async>document.getElementById('hchatbot_settings') && deferScript("https://cdn1.brivityidx.com/assets/js/chatbot.min.js?ck=1781027417", 5000);</script>
        
    <script type="text/javascript" src="https://cdn1.brivityidx.com/assets/js/jquery.geocomplete.min.js"></script><script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery.bootstrapvalidator/0.5.3/js/bootstrapValidator.min.js"></script><script type="text/javascript" src="https://cdn1.brivityidx.com/assets/js/quick_search.min.js?v=1.0.3"></script><script type="text/javascript" src="https://cdn1.brivityidx.com/assets/js/home-value-redirection-block.min.js?v=1.0.0"></script><script type="text/javascript" src="https://www.google.com/recaptcha/api.js?render=6LfNOsoUAAAAAKTst6hjCdK0tmeiA4GVzqBjwScC"></script><script type="text/javascript" src="https://cdn1.brivityidx.com/assets/js/bluecma_comparables.min.js?v=1.3.3"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/react@16/umd/react.production.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/react-dom@16/umd/react-dom.production.min.js"></script><script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.26.0/babel.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@material-ui/core@v4.11.0/umd/material-ui.production.min.js"></script><script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.19.2/axios.min.js"></script><script type="text/javascript" src="https://cdn1.brivityidx.com/assets/js/FeaturedProperties-1R-index.min.js?v=4.01"></script><script type="text/javascript" src="https://cdn1.brivityidx.com/assets/js/HomeValue-MyPortal-index.min.js?v=3.03"></script><script type="text/javascript" src="https://cdn1.brivityidx.com/assets/js/home-value-block-my-portal-react.min.js?v=0.0.24"></script><script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/webfont/1.5.3/webfont.js" async></script><script type="text/javascript" src="https://cdn1.brivityidx.com/assets/js/update_agent_info.min.js"></script><script>
    $('.menu-toggle').click(function() {
        $('#slide-out-nav, .slide-out-nav-overlay').addClass('open');
    });

    $('.close-nav, .slide-out-nav-overlay').click(function() {
        $('#slide-out-nav, .slide-out-nav-overlay').removeClass('open');
    });

</script>

<script>
$(document).ready(function(){
  $("ul.seo-anchor-links li:nth-of-type(4) a").attr("href", "/search");
});
</script>

<script>
$(document).ready(function() { 
$("#sitemap-listings > div.container > div > div.col-xs-12.col-md-12.col-lg-4.col-lg-push-8.seo-intro > a").attr("href", "/search")
}); 
</script>

<script>
    $("#contact1_availability_date").click(function() {
        $(this).prop('type', 'date');
    });
</script>

<script>
    $("#slide-out-nav > div.render-menu > ul").append('<li class="nav-item"><a style="color:#fff!important; border-radius:5px; max-width:250px; margin:0 auto;" id="top-nav-marketing-plan" data-toggle="modal" data-target="#getmarketingplan" class="btn-primary">Get Marketing Plan</a></li>');
</script>

<script>
  $("a.pb-vendor").attr({"target" : "_blank"});
</script>

<script>
  $('#seo-anchor a.pb-vendor').html('<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 822.81 228.05"><defs><style>.cls-1{fill:#5f605f;}.cls-2{fill:#f3714f;}.cls-3{fill:#5bc5c4;}.cls-4{fill:#fdfeff;}.cls-5{fill:#376e7b;}</style></defs><path class="cls-1" d="M373.61,341.21A61.3,61.3,0,0,1,386,342.42a30,30,0,0,1,10.42,4.14,22,22,0,0,1,7.21,7.71,23.86,23.86,0,0,1,2.71,11.92A24.26,24.26,0,0,1,405,374a23.82,23.82,0,0,1-3.64,6.85,23.38,23.38,0,0,1-5.57,5.21,20.81,20.81,0,0,1-7.21,3v.29q9.86,1.29,15.7,8.07t5.85,16.77a40.79,40.79,0,0,1-.42,5.49,27,27,0,0,1-1.72,6.28,26.28,26.28,0,0,1-3.71,6.36,22,22,0,0,1-6.49,5.49,39.23,39.23,0,0,1-10,3.86,58.63,58.63,0,0,1-14.21,1.49H330.5V341.21Zm0,44.67a33.93,33.93,0,0,0,10.14-1.35,21.17,21.17,0,0,0,7.13-3.71,15.28,15.28,0,0,0,4.29-5.5,16,16,0,0,0,1.42-6.71q0-19.12-23-19.13h-33.4v36.4Zm0,49a54.59,54.59,0,0,0,10.28-.93,23.53,23.53,0,0,0,8.56-3.36,17.09,17.09,0,0,0,5.86-6.49,21.75,21.75,0,0,0,2.14-10.21q0-9.84-6.92-14.77t-19.92-4.93h-33.4v40.69Z" transform="translate(-9.57 -307.21)"/><path class="cls-1" d="M466.68,341.21a44.11,44.11,0,0,1,11.92,1.57,28.7,28.7,0,0,1,9.85,4.78,23,23,0,0,1,6.71,8.28,26.74,26.74,0,0,1,2.5,11.92,28.63,28.63,0,0,1-5,16.84q-5,7.14-14.85,9.13V394a22.8,22.8,0,0,1,8.28,2.64,16.71,16.71,0,0,1,5.36,4.93,20.35,20.35,0,0,1,3,6.92,50.57,50.57,0,0,1,1.22,8.49c.09,1.72.19,3.81.28,6.28s.29,5,.57,7.5a46.45,46.45,0,0,0,1.36,7.13,13.54,13.54,0,0,0,2.5,5.21H489.66a12.34,12.34,0,0,1-1.35-3.49,31,31,0,0,1-.72-4.29c-.14-1.47-.26-2.92-.35-4.35s-.2-2.66-.29-3.71q-.29-5.43-.93-10.78a29.53,29.53,0,0,0-2.71-9.56,16.84,16.84,0,0,0-6-6.78q-3.93-2.57-10.78-2.29H429.71v45.25H420V341.21ZM466,389.6a26.16,26.16,0,0,0,8.42-1.36,20.84,20.84,0,0,0,7-3.93,19.3,19.3,0,0,0,4.79-6.21,18.85,18.85,0,0,0,1.78-8.35q0-9.42-5.43-14.84T466,349.48H429.71V389.6Z" transform="translate(-9.57 -307.21)"/><path class="cls-1" d="M522.78,341.21V443.12h-9.71V341.21Z" transform="translate(-9.57 -307.21)"/><path class="cls-1" d="M546,341.21l33.12,91.21h.29l32.83-91.21h10.27L584.73,443.12H573.45L535.77,341.21Z" transform="translate(-9.57 -307.21)"/><path class="cls-1" d="M642,341.21V443.12h-9.71V341.21Z" transform="translate(-9.57 -307.21)"/><path class="cls-1" d="M735.89,341.21v8.27H700.35v93.64h-9.71V349.48h-35.4v-8.27Z" transform="translate(-9.57 -307.21)"/><path class="cls-1" d="M742.45,341.21h11.42l33.55,51.67,33.4-51.67h11.56l-40.25,60v42h-9.71v-42Z" transform="translate(-9.57 -307.21)"/><path class="cls-2" d="M350.67,470q7,0,10.54,3.57t3.57,10q0,6.45-3.57,10.06t-10.54,3.54H336.62V516H330.5V470Zm-2.06,22q5.22.07,7.64-2.12a8.1,8.1,0,0,0,2.41-6.32,8,8,0,0,0-2.41-6.28q-2.42-2.16-7.64-2.16h-12V492Z" transform="translate(-9.57 -307.21)"/><path class="cls-2" d="M380,470v40.85h24.35V516H373.87V470Z" transform="translate(-9.57 -307.21)"/><path class="cls-2" d="M430.57,470l18,46h-6.76l-5-13.85H417.3L412.14,516h-6.25l17.91-46Zm4.25,27-7.67-21.46H427L419.23,497Z" transform="translate(-9.57 -307.21)"/><path class="cls-2" d="M443.84,475.16V470h36.79v5.15H465.3V516h-6.12V475.16Z" transform="translate(-9.57 -307.21)"/><path class="cls-2" d="M517.55,470v5.15h-24.1v14.63h21.14v5.15H493.45V516h-6.12V470Z" transform="translate(-9.57 -307.21)"/><path class="cls-2" d="M524.73,484a22.84,22.84,0,0,1,4.16-7.7,20.2,20.2,0,0,1,6.89-5.35,24,24,0,0,1,19.2,0,20.23,20.23,0,0,1,6.9,5.35A22.84,22.84,0,0,1,566,484a30.36,30.36,0,0,1,0,18.1,22.84,22.84,0,0,1-4.16,7.7,19.91,19.91,0,0,1-6.9,5.32,24.49,24.49,0,0,1-19.2,0,19.88,19.88,0,0,1-6.89-5.32,22.84,22.84,0,0,1-4.16-7.7,30.36,30.36,0,0,1,0-18.1Zm5.64,15.91a18.51,18.51,0,0,0,2.84,6.09,14.38,14.38,0,0,0,5,4.35,16.69,16.69,0,0,0,14.43,0,14.38,14.38,0,0,0,5-4.35,18.51,18.51,0,0,0,2.84-6.09,26.59,26.59,0,0,0,0-13.72,18.51,18.51,0,0,0-2.84-6.09,14.59,14.59,0,0,0-5-4.35,16.69,16.69,0,0,0-14.43,0,14.59,14.59,0,0,0-5,4.35,18.51,18.51,0,0,0-2.84,6.09,26.59,26.59,0,0,0,0,13.72Z" transform="translate(-9.57 -307.21)"/><path class="cls-2" d="M598.16,470q6.57,0,10.27,3.22a11.1,11.1,0,0,1,3.71,8.83,14,14,0,0,1-1.9,7.34,9.77,9.77,0,0,1-6.09,4.32v.13a8.26,8.26,0,0,1,3.25,1.29,7.08,7.08,0,0,1,2,2.16,9.92,9.92,0,0,1,1.1,2.8,31.32,31.32,0,0,1,.54,3.22c.09,1.12.15,2.26.19,3.41a31.69,31.69,0,0,0,.33,3.42,20.93,20.93,0,0,0,.74,3.19,7.68,7.68,0,0,0,1.45,2.67h-6.83a3.8,3.8,0,0,1-.87-1.93,19.54,19.54,0,0,1-.29-2.74c0-1-.09-2.09-.13-3.25a21.57,21.57,0,0,0-.39-3.42c-.17-1.11-.38-2.18-.64-3.19a7.56,7.56,0,0,0-1.23-2.64,5.9,5.9,0,0,0-2.19-1.8,8.12,8.12,0,0,0-3.61-.68H582.63V516h-6.12V470Zm1.28,20.88a9,9,0,0,0,3.39-1.26,7,7,0,0,0,2.32-2.51A8.48,8.48,0,0,0,606,483a8.27,8.27,0,0,0-1.94-5.67q-1.94-2.19-6.25-2.19h-15.2v16h12.76A25.08,25.08,0,0,0,599.44,490.89Z" transform="translate(-9.57 -307.21)"/><path class="cls-2" d="M630.76,470l14.5,38.66L659.82,470h8.37v46H662.4V477.74h-.13L647.9,516h-5.22l-14.37-38.27h-.13V516h-5.8V470Z" transform="translate(-9.57 -307.21)"/><polygon class="cls-3" points="185.03 208.82 83.95 193.78 52.82 228.05 53.17 188.88 0 179.09 0 40.92 185.38 31.83 185.03 208.82"/><polygon class="cls-2" points="77.3 0 87.09 99.69 142.71 34.28 198.67 99.69 184.33 100.04 184.68 165.44 215.81 159.15 241.69 195.53 242.74 153.2 267.93 146.91 277.02 28.33 77.3 0"/><polygon class="cls-4" points="198.67 99.69 142.71 34.28 87.09 99.69 86.74 100.04 87.09 100.04 101.78 100.04 101.78 181.88 101.78 182.58 184.68 165.79 184.68 165.44 184.33 100.04 198.67 99.69"/><polygon class="cls-5" points="81.15 37.08 142.71 34.28 86.74 99.69 81.15 37.08"/></svg>');
</script>
<!-- begin Widget Tracker Code -->
<script>
(function(w,i,d,g,e,t){w["WidgetTrackerObject"]=g;(w[g]=w[g]||function() {(w[g].q=w[g].q||[]).push(arguments);}),(w[g].ds=1*new Date());(e="script"), (t=d.createElement(e)),(e=d.getElementsByTagName(e)[0]);t.async=1;t.src=i; e.parentNode.insertBefore(t,e);}) (window,"https://widgetbe.com/agent",document,"widgetTracker"); window.widgetTracker("create", "WT-HJFKHZQP"); window.widgetTracker("send", "pageview");
</script>
<!-- end Widget Tracker Code -->
<!-- Messenger Chat Plugin Code -->
    <div id="fb-root"></div>

    <!-- Your Chat Plugin code -->
    <div id="fb-customer-chat" class="fb-customerchat">
    </div>

    <script>
      var chatbox = document.getElementById('fb-customer-chat');
      chatbox.setAttribute("page_id", "23874633664");
      chatbox.setAttribute("attribution", "biz_inbox");
    </script>

    <!-- Your SDK code -->
    <script>
      window.fbAsyncInit = function() {
        FB.init({
          xfbml            : true,
          version          : 'v14.0'
        });
      };

      (function(d, s, id) {
        var js, fjs = d.getElementsByTagName(s)[0];
        if (d.getElementById(id)) return;
        js = d.createElement(s); js.id = id;
        js.src = 'https://connect.facebook.net/en_US/sdk/xfbml.customerchat.js';
        fjs.parentNode.insertBefore(js, fjs);
      }(document, 'script', 'facebook-jssdk'));
    </script>
<script>
  $("a.pb-vendor").attr("href", "https://brivity.com/")
</script>

<!--- Get Marketing Plan - add to Head Includes --->
<div class="modal fade magic-modal" id="getmarketingplan" tabindex="-1" role="dialog" aria-labelledby="getmarketingplan" style="display: none;" aria-hidden="true">
    <div class="modal-dialog" role="document">
        <div class="modal-content">
            <div class="modal-body">
                <button type="button" class="close" data-dismiss="modal" aria-label="Close" data-selector="a.btn, button.btn, button" style="outline: none; cursor: inherit;"><span aria-hidden="true">×</span></button>
                <h4 class="prmry-color" data-selector="h1, h2, h3, h4, h5, h6" style="outline: none; cursor: inherit;">Request property marketing plan</h4>
                <p data-selector="p" style="outline: none; cursor: inherit;">You're one step away from getting a free marketing plan that shows how we'll sell your home for the most amount of money in the least amount of time - hassle free.</p>
                <form class="form-contact" id="form-contact6">
                    <input type="hidden" name="lead_type" value="seller"><input type="hidden" name="tags" value="Marketing_Plan_Requested">
                    <div class="row">
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact6_fname" id="contact6_fname" placeholder="First Name" class="form-control" required="" type="text">
                            </div>
                        </div>
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact6_lname" id="contact6_lname" placeholder="Last Name" class="form-control" required="" type="text">
                            </div>
                        </div>
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact6_email" id="contact6_email" placeholder="Email Address" class="form-control" required="" type="email">
                            </div>
                        </div>
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact6_phone" id="contact6_phone" placeholder="Phone Number" class="form-control" required="" type="tel">
                            </div>
                        </div>
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact6_address" id="contact6_address" placeholder="Address" class="form-control" required="" type="text">
                            </div>
                        </div>
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact6_city" id="contact6_city" placeholder="City" class="form-control" required="" type="text">
                            </div>
                        </div>
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact6_state" id="contact6_state" placeholder="State" class="form-control" required="" type="text">
                            </div>
                        </div>
                        <div class="col-sm-6">
                            <div class="form-group">
                                <input name="contact6_zip" id="contact6_zip" placeholder="ZIP" class="form-control" required="" type="text">
                            </div>
                        </div>
                        <div class="col-sm-12">
                            <div class="form-group">
                                <select name="contact6_whenareyouselling" id="contact6_whenareyouselling" class="form-control" placeholder="When are you planning to sell?">
                                    <option value="" disabled="" selected="">When are you planning to sell?</option>
                                    <option value="1">Now</option>
                                    <option value="2">0-6 months</option>
                                    <option value="3">6+ months</option>
                                </select>
                            </div>
                        </div>
                    </div>
                    <button class="btn btn-primary" type="submit" id="cf-submit" name="submit" data-selector="a.btn, button.btn, button" style="outline: none; cursor: inherit;">Send</button>
                </form>
            </div>
        </div>
    </div>
</div><script>
$(document).ready(function() {
  setTimeout(function(){
	$(".cta-tb").css("display", "block");
    }, 250);
});
</script><script type="text/javascript">
              /* <![CDATA[ */
              goog_snippet_vars = function() {
                var w = window;
                w.google_conversion_id = 3874042079;
                w.google_conversion_label = "G-88TNH5L1WK";
                w.google_remarketing_only = false;
              }
              // DO NOT CHANGE THE CODE BELOW.
              goog_report_conversion = function(url) {
                goog_snippet_vars();
                window.google_conversion_format = "3";
                var opt = new Object();
                opt.onload_callback = function() {
                if (typeof(url) != 'undefined') {
                  window.location = url;
                }
              }
              var conv_handler = window['google_trackConversion'];
              if (typeof(conv_handler) == 'function') {
                conv_handler(opt);
              }
            }
            /* ]]> */
            </script>
            <script type="text/javascript" src="//www.googleadservices.com/pagead/conversion_async.js">
            </script>
            <script type="text/javascript">
            /* <![CDATA[ */
            var google_conversion_id = 3874042079;
            var google_custom_params = window.google_tag_params;
            var google_remarketing_only = true;
            /* ]]> */
            </script>
            <script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js">
            </script>
            <noscript>
            <div style="display:inline;">
            <img height="1" width="1" style="border-style:none;" alt="" src="//googleads.g.doubleclick.net/pagead/viewthroughconversion/3874042079/?guid=ON&amp;script=0">
            </div>
            </noscript></body>

    </html>
