SPB Git

spb/lou-ka Public

Lou·Ka — tous les logements à louer du Québec, un seul endroit.

HTML 99.7%
69.5 KB · 703 lines html
Raw Blame History
1<!doctype html>2<html lang="fr-FR">3<head>4	<meta charset="UTF-8">5	<meta name="viewport" content="width=device-width, initial-scale=1">6	<link rel="profile" href="https://gmpg.org/xfn/11">7	<script>8            // Ne fonctionne que si c'est placé en dehors de la fonction englobante9window.dataLayer = window.dataLayer || [];10function gtag(){dataLayer.push(arguments);}11(function () {12  var DAY_DURATION = 1000 * 60 * 60 * 24;13  var CookieConsent = {};14  var FOLDER = null;15  var TITLE = "";16  var TEXT = "";17  var BTN_YES = "";18  var BTN_NO = "";19  var BTN_FERMER = "Fermer";20  var BTN_EDIT = "Paramètres de témoins (cookies)";21  var WEBSITE = "stb-immobilier";22  var RECORD_URL = "https://api.cubenoir.ca/cookie-consent/record.php";2324  var cookieState = null;25  var cookieDiv = null;26  var btnEditDiv = null;2728  function empty() {}2930  function time() {31    return new Date().getTime();32  }3334  function miniAjax(url, data) {35    var request = new XMLHttpRequest();36    var completeFn = empty;37    function transferComplete() {38      completeFn();39    }4041    request.open("POST", url, true);42    request.setRequestHeader("Content-Type", "application/x-www-form-urlencoded; charset=UTF-8");43    request.addEventListener("load", transferComplete);44    request.send(data);4546    return {47      then: function (fn) {48        completeFn = fn;49      }50    };51  }5253  function loadCookieState() {54    try {55      if (typeof localStorage !== "undefined") {56        var s = localStorage.getItem("cc.cookie");57        if (s) {58          var p = JSON.parse(s);59          if (p && p.time > time() - DAY_DURATION * 90) {60            cookieState = p.state;61            CookieConsent.cookieState = cookieState;62          }63        }64      }65    } catch (err) {66      console.error(err);67    }68  }6970  function hide() {71    if (cookieDiv) {72      cookieDiv.remove();73      cookieDiv = null;74    }75  }7677  function setGtag(state) {78    gtag("consent", "default", {79      ad_storage: state,80      analytics_storage: state81    });82  }8384  function cookieButton(state) {85    setGtag(state);86    hide();87    CookieConsent.cookieState = state;88    try {89      if (typeof localStorage !== "undefined") {90        localStorage.setItem(91          "cc.cookie",92          JSON.stringify({93            state: state,94            time: time()95          })96        );97      }98    } catch (err) {99      console.error(err);100    }101  }102  function recordConsent(state) {103    return miniAjax(104      RECORD_URL,105      "cookie-state=" + state + "&website=" + WEBSITE106    );107  }108  function cookieYes(e) {109    e.preventDefault();110    recordConsent("granted").then(function () {111      cookieButton("granted");112    });113    return false;114  }115  function cookieNo(e) {116    e.preventDefault();117    recordConsent("denied");118    cookieButton("denied");119    return false;120  }121122  var cssp = null;123  function loadCss() {124    if (!cssp) {125      if (FOLDER) {126        cssp = new Promise((accept, reject) => {127          var styleCSS = document.createElement("link");128          styleCSS.rel = "stylesheet";129          styleCSS.href = FOLDER + "/consent.css?v=1";130          styleCSS.onload = accept;131          styleCSS.onerror = reject;132          document.head.insertBefore(styleCSS, document.head.childNodes[document.head.childNodes.length - 1].nextSibling);133          setTimeout(reject, 5000);134        });135      } else {136        csssp = Promise.resolve();137      }138    }139    return cssp;140  }141142  function addShowButton() {143    loadCss();144    btnEditDiv = document.createElement("div");145    btnEditDiv.id = "cookie-consent-edit-btn"146    btnEditDiv.innerHTML = "<a href='Javascript: CookieConsent.show()'>"+BTN_EDIT+"</a>"147    document.body.appendChild(btnEditDiv);148  }149150  function show() {   151    cookieDiv = document.createElement("div");152    cookieDiv.id = "cookie-consent";153    cookieDiv.setAttribute("aira-live", "assertive");154    cookieDiv.setAttribute("role", "alert");155    cookieDiv.innerHTML =156      "<h3>" +157      TITLE +158      "</h3><p>" +159      TEXT +160      '</p><div class="center-buttons"><button role="button" class="choix bouton-or">' +161      BTN_YES +162      "</button><button role='button' class='choix bouton-or coucou'>" +163      BTN_NO +164      '</button></div><button role="button" title="' +165      BTN_FERMER +166      '" aria-label="' +167      BTN_FERMER +168      '" id="bclose-popup-policy"><svg xmlns="http://www.w3.org/2000/svg"  width="35" height="35" viewBox="0 0 21 21"><g id="close-circle-svgrepo-com" transform="translate(-1.5 -1.5)"><path id="Tracé_2842" data-name="Tracé 2842" d="M22,12A10,10,0,1,1,12,2,10,10,0,0,1,22,12Z" fill="rgba(255,255,255,0.1)"/><path id="Tracé_2842_-_Contour" data-name="Tracé 2842 - Contour" d="M12,1.5A10.5,10.5,0,1,1,1.5,12,10.512,10.512,0,0,1,12,1.5Zm0,20A9.5,9.5,0,1,0,2.5,12,9.511,9.511,0,0,0,12,21.5Z" fill="#fff"/><path id="Tracé_2843" data-name="Tracé 2843" d="M8.97,8.97a.75.75,0,0,1,1.061,0L12,10.939l1.97-1.97A.75.75,0,0,1,15.03,10.03L13.061,12l1.97,1.97A.75.75,0,0,1,13.97,15.03L12,13.061l-1.97,1.97A.75.75,0,0,1,8.97,13.97L10.939,12,8.97,10.03A.75.75,0,0,1,8.97,8.97Z" fill="#fff"/></g></svg></button>';169    document.body.appendChild(cookieDiv);170    var boutons = document.querySelectorAll("#cookie-consent button.choix");171    boutons[0].addEventListener("click", cookieYes);172    boutons[1].addEventListener("click", cookieNo);173    var bclose = document.querySelector("#bclose-popup-policy");174    bclose.addEventListener("click", hide);175    var a = document.querySelector("#cookie-consent a");176    var f = a || boutons[0];177    loadCss().finally(function() {178      if (f) {179        f.focus();180      }181      document.activeElement.blur();182    });183  }184185  function ready() {186    document.removeEventListener("DOMContentLoaded", ready);187    addShowButton();188    if (!cookieState) {189      show();190    }191  }192193  function init(cfg) {194    FOLDER = cfg.folder || FOLDER;195    TITLE = cfg.title || TITLE;196    TEXT = cfg.text || TEXT;197    BTN_FERMER = cfg.btnFermer || BTN_FERMER;198    BTN_YES = cfg.btnYes || BTN_YES;199    BTN_NO = cfg.btnNo || BTN_NO;200    WEBSITE = cfg.website || WEBSITE;201    recordConsent = cfg.recordConsent || recordConsent;202    RECORD_URL = cfg.recordUrl || RECORD_URL;203204    loadCookieState();205    setGtag(cookieState || "denied");206    207    if (typeof document !== "undefined") {208      document.addEventListener("DOMContentLoaded", ready);209      if (!cookieState) {210        hide();211      }212      if (document.readyState !== "loading") {213        ready();214      }215    }216  }217218  CookieConsent.show = show;219  CookieConsent.hide = hide;220  CookieConsent.init = init;221  if (typeof window !== "undefined") {222    window.CookieConsent = CookieConsent;223  }224})();225            CookieConsent.init({226                title: 'Utilisation des témoins (cookies)',227                text: 'Ce site Internet utilise des témoins (cookies) afin de sauvegarder vos préférences et améliorer votre expérience utilisateur. Si vous choisissez de refuser les cookies optionnels, seulement ceux nécessaires au fonctionnement du site seront sauvegardés sur votre appareil. Pour plus de détails concernant l\'utilisation des cookies, veuillez vous référer à notre <a href="/politiques/">politique de confidentialité</a>.',228                btnYes: 'Tous les témoins',229                btnNo: 'Témoins essentiels',230                btnFermer: 'Fermer',231                hidden: false,232    233                website: 'stbimmobilier',234    235                folder: "/wp-content/plugins/cubenoir-cookie-consent",236                recordUrl: "/wp-json/cookie-consent/v1/record"237            });238        </script><meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />239240	<!-- This site is optimized with the Yoast SEO plugin v28.2 - https://yoast.com/product/yoast-seo-wordpress/ -->241	<title>Rue Marquis - STB Immobilier</title>242	<link rel="canonical" href="https://stbimmobilier.com/location/rue-marquis/" />243	<meta property="og:locale" content="fr_FR" />244	<meta property="og:type" content="article" />245	<meta property="og:title" content="Rue Marquis - STB Immobilier" />246	<meta property="og:url" content="https://stbimmobilier.com/location/rue-marquis/" />247	<meta property="og:site_name" content="STB Immobilier" />248	<meta property="article:modified_time" content="2026-01-30T13:59:50+00:00" />249	<meta name="twitter:card" content="summary_large_image" />250	<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/stbimmobilier.com\/location\/rue-marquis\/","url":"https:\/\/stbimmobilier.com\/location\/rue-marquis\/","name":"Rue Marquis - STB Immobilier","isPartOf":{"@id":"https:\/\/stbimmobilier.com\/#website"},"datePublished":"2026-01-27T19:36:56+00:00","dateModified":"2026-01-30T13:59:50+00:00","breadcrumb":{"@id":"https:\/\/stbimmobilier.com\/location\/rue-marquis\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/stbimmobilier.com\/location\/rue-marquis\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/stbimmobilier.com\/location\/rue-marquis\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/stbimmobilier.com\/"},{"@type":"ListItem","position":2,"name":"Rue Marquis"}]},{"@type":"WebSite","@id":"https:\/\/stbimmobilier.com\/#website","url":"https:\/\/stbimmobilier.com\/","name":"STB Immobilier","description":"Gestion et location de biens immobiliers résidentiels et commerciaux","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/stbimmobilier.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"}]}</script>251	<!-- / Yoast SEO plugin. -->252253254<link rel="alternate" type="application/rss+xml" title="STB Immobilier &raquo; Flux" href="https://stbimmobilier.com/feed/" />255<link rel="alternate" type="application/rss+xml" title="STB Immobilier &raquo; Flux des commentaires" href="https://stbimmobilier.com/comments/feed/" />256<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://stbimmobilier.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fstbimmobilier.com%2Flocation%2Frue-marquis%2F" />257<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://stbimmobilier.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fstbimmobilier.com%2Flocation%2Frue-marquis%2F&#038;format=xml" />258<style id="wp-img-auto-sizes-contain-inline-css">259img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}260/*# sourceURL=wp-img-auto-sizes-contain-inline-css */261</style>262263<link rel='stylesheet' id='formidable-css' href='https://stbimmobilier.com/wp-content/plugins/formidable/css/formidableforms.css?ver=852022' media='all' />264<style id="wp-emoji-styles-inline-css">265266	img.wp-smiley, img.emoji {267		display: inline !important;268		border: none !important;269		box-shadow: none !important;270		height: 1em !important;271		width: 1em !important;272		margin: 0 0.07em !important;273		vertical-align: -0.1em !important;274		background: none !important;275		padding: 0 !important;276	}277/*# sourceURL=wp-emoji-styles-inline-css */278</style>279<link rel='stylesheet' id='wp-block-library-css' href='https://stbimmobilier.com/wp-includes/css/dist/block-library/style.min.css?ver=626e4be5008e3c455662a53efed534f9' media='all' />280<style id="global-styles-inline-css">281:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:root { --wp--style--global--content-size: 800px;--wp--style--global--wide-size: 1200px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.wp-site-blocks) > * { margin-block-start: 24px; margin-block-end: 0; }:where(.wp-site-blocks) > :first-child { margin-block-start: 0; }:where(.wp-site-blocks) > :last-child { margin-block-end: 0; }:root { --wp--style--block-gap: 24px; }:root :where(.is-layout-flow) > :first-child{margin-block-start: 0;}:root :where(.is-layout-flow) > :last-child{margin-block-end: 0;}:root :where(.is-layout-flow) > *{margin-block-start: 24px;margin-block-end: 0;}:root :where(.is-layout-constrained) > :first-child{margin-block-start: 0;}:root :where(.is-layout-constrained) > :last-child{margin-block-end: 0;}:root :where(.is-layout-constrained) > *{margin-block-start: 24px;margin-block-end: 0;}:root :where(.is-layout-flex){gap: 24px;}:root :where(.is-layout-grid){gap: 24px;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}282:root :where(.wp-block-icon svg){width: 24px;}283:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}284/*# sourceURL=global-styles-inline-css */285</style>286<link rel='stylesheet' id='hello-elementor-css' href='https://stbimmobilier.com/wp-content/themes/hello-elementor/assets/css/reset.css?ver=3.4.9' media='all' />287<link rel='stylesheet' id='hello-elementor-theme-style-css' href='https://stbimmobilier.com/wp-content/themes/hello-elementor/assets/css/theme.css?ver=3.4.9' media='all' />288<link rel='stylesheet' id='hello-elementor-header-footer-css' href='https://stbimmobilier.com/wp-content/themes/hello-elementor/assets/css/header-footer.css?ver=3.4.9' media='all' />289<link rel='stylesheet' id='elementor-frontend-css' href='https://stbimmobilier.com/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=4.2.1' media='all' />290<style id="elementor-frontend-inline-css">291.elementor-380 .elementor-element.elementor-element-1905a45:not(.elementor-motion-effects-element-type-background), .elementor-380 .elementor-element.elementor-element-1905a45 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://stbimmobilier.com/wp-content/uploads/2026/01/12logementmarquis_opt.webp");}292/*# sourceURL=elementor-frontend-inline-css */293</style>294<link rel='stylesheet' id='elementor-post-7-css' href='https://stbimmobilier.com/wp-content/uploads/elementor/css/post-7.css?ver=1786046947' media='all' />295<link rel='stylesheet' id='widget-image-css' href='https://stbimmobilier.com/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver=4.2.1' media='all' />296<link rel='stylesheet' id='widget-icon-list-css' href='https://stbimmobilier.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css?ver=4.2.1' media='all' />297<link rel='stylesheet' id='e-animation-fadeIn-css' href='https://stbimmobilier.com/wp-content/plugins/elementor/assets/lib/animations/styles/fadeIn.min.css?ver=4.2.1' media='all' />298<link rel='stylesheet' id='widget-mega-menu-css' href='https://stbimmobilier.com/wp-content/plugins/elementor-pro/assets/css/widget-mega-menu.min.css?ver=4.2.1' media='all' />299<link rel='stylesheet' id='widget-heading-css' href='https://stbimmobilier.com/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver=4.2.1' media='all' />300<link rel='stylesheet' id='widget-social-icons-css' href='https://stbimmobilier.com/wp-content/plugins/elementor/assets/css/widget-social-icons.min.css?ver=4.2.1' media='all' />301<link rel='stylesheet' id='e-apple-webkit-css' href='https://stbimmobilier.com/wp-content/plugins/elementor/assets/css/conditionals/apple-webkit.min.css?ver=4.2.1' media='all' />302<link rel='stylesheet' id='swiper-css' href='https://stbimmobilier.com/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css?ver=8.4.5' media='all' />303<link rel='stylesheet' id='e-swiper-css' href='https://stbimmobilier.com/wp-content/plugins/elementor/assets/css/conditionals/e-swiper.min.css?ver=4.2.1' media='all' />304<link rel='stylesheet' id='widget-nested-carousel-css' href='https://stbimmobilier.com/wp-content/plugins/elementor-pro/assets/css/widget-nested-carousel.min.css?ver=4.2.1' media='all' />305<link rel='stylesheet' id='widget-icon-box-css' href='https://stbimmobilier.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css?ver=4.2.1' media='all' />306<link rel='stylesheet' id='widget-google_maps-css' href='https://stbimmobilier.com/wp-content/plugins/elementor/assets/css/widget-google_maps.min.css?ver=4.2.1' media='all' />307<link rel='stylesheet' id='widget-divider-css' href='https://stbimmobilier.com/wp-content/plugins/elementor/assets/css/widget-divider.min.css?ver=4.2.1' media='all' />308<link rel='stylesheet' id='widget-loop-common-css' href='https://stbimmobilier.com/wp-content/plugins/elementor-pro/assets/css/widget-loop-common.min.css?ver=4.2.1' media='all' />309<link rel='stylesheet' id='widget-loop-carousel-css' href='https://stbimmobilier.com/wp-content/plugins/elementor-pro/assets/css/widget-loop-carousel.min.css?ver=4.2.1' media='all' />310<link rel='stylesheet' id='widget-form-css' href='https://stbimmobilier.com/wp-content/plugins/elementor-pro/assets/css/widget-form.min.css?ver=4.2.1' media='all' />311<link rel='stylesheet' id='font-awesome-5-all-css' href='https://stbimmobilier.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css?ver=4.2.1' media='all' />312<link rel='stylesheet' id='font-awesome-4-shim-css' href='https://stbimmobilier.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css?ver=4.2.1' media='all' />313<link rel='stylesheet' id='elementor-post-69-css' href='https://stbimmobilier.com/wp-content/uploads/elementor/css/post-69.css?ver=1786046948' media='all' />314<link rel='stylesheet' id='elementor-post-74-css' href='https://stbimmobilier.com/wp-content/uploads/elementor/css/post-74.css?ver=1786046948' media='all' />315<link rel='stylesheet' id='elementor-post-380-css' href='https://stbimmobilier.com/wp-content/uploads/elementor/css/post-380.css?ver=1786047169' media='all' />316<link rel='stylesheet' id='stbimmobilier-style-base-css' href='https://stbimmobilier.com/wp-content/themes/stbimmobilier/style.css?ver=1.0.3' media='all' />317<link rel='stylesheet' id='stbimmobilier-style-css' href='https://stbimmobilier.com/wp-content/themes/stbimmobilier/style-stbimmobilier.css?ver=1.0.3' media='all' />318<link rel='stylesheet' id='elementor-gf-montserrat-css' href='https://fonts.googleapis.com/css?family=Montserrat:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic&#038;display=swap' media='all' />319<link rel='stylesheet' id='elementor-gf-manrope-css' href='https://fonts.googleapis.com/css?family=Manrope:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic&#038;display=swap' media='all' />320<script id="jquery-core-js" src="https://stbimmobilier.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script>321<script id="jquery-migrate-js" src="https://stbimmobilier.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script>322<script id="font-awesome-4-shim-js" src="https://stbimmobilier.com/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js?ver=4.2.1"></script>323<link rel="https://api.w.org/" href="https://stbimmobilier.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://stbimmobilier.com/wp-json/wp/v2/location/471" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://stbimmobilier.com/xmlrpc.php?rsd" />324325<link rel='shortlink' href='https://stbimmobilier.com/?p=471' />326<script>document.documentElement.className += " js";</script>327<meta name="generator" content="Elementor 4.2.1; features: e_font_icon_svg, additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap">328			<style>329				.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),330				.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {331					background-image: none !important;332				}333				@media screen and (max-height: 1024px) {334					.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),335					.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {336						background-image: none !important;337					}338				}339				@media screen and (max-height: 640px) {340					.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),341					.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {342						background-image: none !important;343					}344				}345			</style>346					347348    <!-- Google tag (gtag.js) -->349    <script async src="https://www.googletagmanager.com/gtag/js?id=G-TWENXGQK85"></script>350    <script>351    window.dataLayer = window.dataLayer || [];352    function gtag(){dataLayer.push(arguments);}353    gtag('js', new Date());354355    gtag('config', 'G-TWENXGQK85');356    </script>357<link rel="icon" href="https://stbimmobilier.com/wp-content/uploads/2026/01/favicon-stb-150x150.png" sizes="32x32" />358<link rel="icon" href="https://stbimmobilier.com/wp-content/uploads/2026/01/favicon-stb-300x300.png" sizes="192x192" />359<link rel="apple-touch-icon" href="https://stbimmobilier.com/wp-content/uploads/2026/01/favicon-stb-300x300.png" />360<meta name="msapplication-TileImage" content="https://stbimmobilier.com/wp-content/uploads/2026/01/favicon-stb-300x300.png" />361</head>362<body class="wp-singular location-template-default single single-location postid-471 wp-embed-responsive wp-theme-hello-elementor wp-child-theme-stbimmobilier location-Rsidentielle hello-elementor-default elementor-default elementor-kit-7 elementor-page-380">363364365<a class="skip-link screen-reader-text" href="#content">Aller au contenu</a>366367		<header data-elementor-type="header" data-elementor-id="69" class="elementor elementor-69 elementor-location-header" data-elementor-post-type="elementor_library">368			<div class="elementor-element elementor-element-28688f7 e-con-full header-stb e-flex e-con e-child" data-id="28688f7" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;position&quot;:&quot;fixed&quot;}">369		<div class="elementor-element elementor-element-ecb7a42 header-wrap e-flex e-con-boxed e-con e-child" data-id="ecb7a42" data-element_type="container" data-e-type="container">370					<div class="e-con-inner">371		<div class="elementor-element elementor-element-6e06f84 e-con-full e-grid header-grid e-con e-child" data-id="6e06f84" data-element_type="container" data-e-type="container">372		<div class="elementor-element elementor-element-a25c5bb e-con-full logo-menu e-flex e-con e-child" data-id="a25c5bb" data-element_type="container" data-e-type="container">373				<div class="elementor-element elementor-element-25ee902 logo-stb elementor-widget elementor-widget-image" data-id="25ee902" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">374																<a href="/">375							<img src="https://stbimmobilier.com/wp-content/uploads/2026/01/logo-stb-header.svg" title="STB Immobilier" alt="STB Immobilier" loading="lazy" />								</a>376															</div>377				<div class="elementor-element elementor-element-67d6d1c e-fit_to_content menu-stb e-n-menu-layout-horizontal e-n-menu-tablet elementor-widget elementor-widget-n-menu" data-id="67d6d1c" data-element_type="widget" data-e-type="widget" data-settings="{&quot;menu_items&quot;:[{&quot;item_title&quot;:&quot;ACCUEIL&quot;,&quot;item_link&quot;:{&quot;url&quot;:&quot;\/&quot;,&quot;is_external&quot;:&quot;&quot;,&quot;nofollow&quot;:&quot;&quot;,&quot;custom_attributes&quot;:&quot;&quot;},&quot;_id&quot;:&quot;be67950&quot;,&quot;__dynamic__&quot;:[],&quot;item_dropdown_content&quot;:&quot;no&quot;,&quot;item_icon&quot;:{&quot;value&quot;:&quot;&quot;,&quot;library&quot;:&quot;&quot;},&quot;item_icon_active&quot;:null,&quot;element_id&quot;:&quot;&quot;},{&quot;item_title&quot;:&quot;Locations r\u00e9sidentielles&quot;,&quot;item_link&quot;:{&quot;url&quot;:&quot;\/locations-residentielles&quot;,&quot;is_external&quot;:&quot;&quot;,&quot;nofollow&quot;:&quot;&quot;,&quot;custom_attributes&quot;:&quot;&quot;},&quot;_id&quot;:&quot;f88533e&quot;,&quot;item_dropdown_content&quot;:&quot;no&quot;,&quot;item_icon&quot;:{&quot;value&quot;:&quot;&quot;,&quot;library&quot;:&quot;&quot;},&quot;item_icon_active&quot;:null,&quot;element_id&quot;:&quot;&quot;},{&quot;item_title&quot;:&quot;Locations commerciales&quot;,&quot;item_link&quot;:{&quot;url&quot;:&quot;\/locations-commerciales&quot;,&quot;is_external&quot;:&quot;&quot;,&quot;nofollow&quot;:&quot;&quot;,&quot;custom_attributes&quot;:&quot;&quot;},&quot;item_dropdown_content&quot;:&quot;&quot;,&quot;_id&quot;:&quot;0c095fd&quot;,&quot;item_icon&quot;:{&quot;value&quot;:&quot;&quot;,&quot;library&quot;:&quot;&quot;},&quot;item_icon_active&quot;:null,&quot;element_id&quot;:&quot;&quot;},{&quot;item_title&quot;:&quot;\u00c0 propos&quot;,&quot;item_link&quot;:{&quot;url&quot;:&quot;https:\/\/stbimmobilier.com\/qui-sommes-nous\/&quot;,&quot;is_external&quot;:&quot;&quot;,&quot;nofollow&quot;:&quot;&quot;,&quot;custom_attributes&quot;:&quot;&quot;},&quot;_id&quot;:&quot;38c7c16&quot;,&quot;__dynamic__&quot;:{&quot;item_link&quot;:&quot;[elementor-tag id=\&quot;acf9994\&quot; name=\&quot;internal-url\&quot; settings=\&quot;%7B%22type%22%3A%22post%22%2C%22post_id%22%3A%2238%22%7D\&quot;]&quot;},&quot;item_dropdown_content&quot;:&quot;no&quot;,&quot;item_icon&quot;:{&quot;value&quot;:&quot;&quot;,&quot;library&quot;:&quot;&quot;},&quot;item_icon_active&quot;:null,&quot;element_id&quot;:&quot;&quot;},{&quot;item_title&quot;:&quot;Nous joindre&quot;,&quot;item_link&quot;:{&quot;url&quot;:&quot;https:\/\/stbimmobilier.com\/nous-joindre\/&quot;,&quot;is_external&quot;:&quot;&quot;,&quot;nofollow&quot;:&quot;&quot;,&quot;custom_attributes&quot;:&quot;&quot;},&quot;element_id&quot;:&quot;nous-joindre-menu-item&quot;,&quot;_id&quot;:&quot;202ccb8&quot;,&quot;__dynamic__&quot;:{&quot;item_link&quot;:&quot;[elementor-tag id=\&quot;ce3914a\&quot; name=\&quot;internal-url\&quot; settings=\&quot;%7B%22type%22%3A%22post%22%2C%22post_id%22%3A%2264%22%7D\&quot;]&quot;},&quot;item_dropdown_content&quot;:&quot;no&quot;,&quot;item_icon&quot;:{&quot;value&quot;:&quot;&quot;,&quot;library&quot;:&quot;&quot;},&quot;item_icon_active&quot;:null}],&quot;content_width&quot;:&quot;fit_to_content&quot;,&quot;content_horizontal_position&quot;:&quot;left&quot;,&quot;menu_item_title_distance_from_content&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:25,&quot;sizes&quot;:[]},&quot;horizontal_scroll_tablet&quot;:&quot;disable&quot;,&quot;menu_item_title_distance_from_content_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:125,&quot;sizes&quot;:[]},&quot;open_animation&quot;:&quot;fadeIn&quot;,&quot;item_layout&quot;:&quot;horizontal&quot;,&quot;open_on&quot;:&quot;hover&quot;,&quot;horizontal_scroll&quot;:&quot;disable&quot;,&quot;breakpoint_selector&quot;:&quot;tablet&quot;,&quot;menu_item_title_distance_from_content_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}" data-widget_type="mega-menu.default">378							<nav class="e-n-menu" data-widget-number="108" aria-label="Menu">379					<button class="e-n-menu-toggle" id="menu-toggle-108" aria-haspopup="true" aria-expanded="false" aria-controls="menubar-108" aria-label="Permuter le menu">380			<span class="e-n-menu-toggle-icon e-open">381				<svg class="e-font-icon-svg e-eicon-menu-bar" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M104 333H896C929 333 958 304 958 271S929 208 896 208H104C71 208 42 237 42 271S71 333 104 333ZM104 583H896C929 583 958 554 958 521S929 458 896 458H104C71 458 42 487 42 521S71 583 104 583ZM104 833H896C929 833 958 804 958 771S929 708 896 708H104C71 708 42 737 42 771S71 833 104 833Z"></path></svg>			</span>382			<span class="e-n-menu-toggle-icon e-close">383				<svg class="e-font-icon-svg e-eicon-close" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M742 167L500 408 258 167C246 154 233 150 217 150 196 150 179 158 167 167 154 179 150 196 150 212 150 229 154 242 171 254L408 500 167 742C138 771 138 800 167 829 196 858 225 858 254 829L496 587 738 829C750 842 767 846 783 846 800 846 817 842 829 829 842 817 846 804 846 783 846 767 842 750 829 737L588 500 833 258C863 229 863 200 833 171 804 137 775 137 742 167Z"></path></svg>			</span>384		</button>385					<div class="e-n-menu-wrapper" id="menubar-108" aria-labelledby="menu-toggle-108">386				<ul class="e-n-menu-heading">387								<li class="e-n-menu-item">388				<div id="e-n-menu-title-1081" class="e-n-menu-title">389					<a class="e-n-menu-title-container e-focus e-link" href="/">												<span class="e-n-menu-title-text">390							ACCUEIL						</span>391					</a>									</div>392							</li>393					<li class="e-n-menu-item">394				<div id="e-n-menu-title-1082" class="e-n-menu-title">395					<a class="e-n-menu-title-container e-focus e-link" href="/locations-residentielles">												<span class="e-n-menu-title-text">396							Locations résidentielles						</span>397					</a>									</div>398							</li>399					<li class="e-n-menu-item">400				<div id="e-n-menu-title-1083" class="e-n-menu-title">401					<a class="e-n-menu-title-container e-focus e-link" href="/locations-commerciales">												<span class="e-n-menu-title-text">402							Locations commerciales						</span>403					</a>									</div>404							</li>405					<li class="e-n-menu-item">406				<div id="e-n-menu-title-1084" class="e-n-menu-title">407					<a class="e-n-menu-title-container e-focus e-link" href="https://stbimmobilier.com/qui-sommes-nous/">												<span class="e-n-menu-title-text">408							À propos						</span>409					</a>									</div>410							</li>411					<li class="e-n-menu-item">412				<div id="nous-joindre-menu-item" class="e-n-menu-title">413					<a class="e-n-menu-title-container e-focus e-link" href="https://stbimmobilier.com/nous-joindre/">												<span class="e-n-menu-title-text">414							Nous joindre						</span>415					</a>									</div>416							</li>417						</ul>418			</div>419		</nav>420						</div>421				</div>422		<div class="elementor-element elementor-element-482a7e0 e-con-full elementor-hidden-mobile info-header e-flex e-con e-child" data-id="482a7e0" data-element_type="container" data-e-type="container">423				<div class="elementor-element elementor-element-995156e lien-telephone elementor-widget elementor-widget-heading" data-id="995156e" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">424					<p class="elementor-heading-title elementor-size-default"><a href="tel:418-562-1808">(418) 562-1808</a></p>				</div>425				<div class="elementor-element elementor-element-12038c8 elementor-align-center btn-joindre elementor-widget elementor-widget-button" data-id="12038c8" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">426										<a class="elementor-button elementor-button-link elementor-size-sm" href="https://stbimmobilier.com/nous-joindre/">427						<span class="elementor-button-content-wrapper">428									<span class="elementor-button-text">Nous joindre</span>429					</span>430					</a>431								</div>432				</div>433				</div>434					</div>435				</div>436				</div>437				</header>438				<div data-elementor-type="single-post" data-elementor-id="380" class="elementor elementor-380 elementor-location-single post-471 location type-location status-publish hentry type-de-location-residentielle" data-elementor-post-type="elementor_library">439			<div class="elementor-element elementor-element-9c53714 e-con-full e-flex e-con e-parent" data-id="9c53714" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">440		<div class="elementor-element elementor-element-f41983c e-con-full e-flex e-con e-child" data-id="f41983c" data-element_type="container" data-e-type="container">441		<div class="elementor-element elementor-element-69a17a0 e-con-full e-flex e-con e-child" data-id="69a17a0" data-element_type="container" data-e-type="container">442		<div class="elementor-element elementor-element-06f0bad e-con-full e-flex e-con e-child" data-id="06f0bad" data-element_type="container" data-e-type="container">443				<div class="elementor-element elementor-element-64d8c2b animated-fast elementor-invisible elementor-widget elementor-widget-heading" data-id="64d8c2b" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:100}" data-widget_type="heading.default">444					<p class="elementor-heading-title elementor-size-default">Location résidentielle</p>				</div>445				</div>446				<div class="elementor-element elementor-element-9777904 elementor-widget__width-initial elementor-widget-mobile__width-inherit animated-fast elementor-invisible elementor-widget elementor-widget-heading" data-id="9777904" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:200}" data-widget_type="heading.default">447					<h1 class="elementor-heading-title elementor-size-default">Rue Marquis</h1>				</div>448				<div class="elementor-element elementor-element-ef6ba45 animated-fast elementor-invisible elementor-widget elementor-widget-shortcode" data-id="ef6ba45" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:300}" data-widget_type="shortcode.default">449							<div class="elementor-shortcode"></div>450						</div>451				</div>452				</div>453		<div class="elementor-element elementor-element-8a76c3b e-flex e-con-boxed e-con e-child" data-id="8a76c3b" data-element_type="container" data-e-type="container">454					<div class="e-con-inner">455		<div class="elementor-element elementor-element-2415cea e-con-full animated-fast e-flex elementor-invisible e-con e-child" data-id="2415cea" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;,&quot;animation_delay&quot;:400}">456				<div class="elementor-element elementor-element-70b0c57 elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box" data-id="70b0c57" data-element_type="widget" data-e-type="widget" data-widget_type="icon-box.default">457							<div class="elementor-icon-box-wrapper">458459						<div class="elementor-icon-box-icon">460				<span  class="elementor-icon">461				<svg aria-hidden="true" class="e-font-icon-svg e-fas-map-marker-alt" viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"></path></svg>				</span>462			</div>463			464			465		</div>466						</div>467				<div class="elementor-element elementor-element-176d8e2 elementor-widget elementor-widget-heading" data-id="176d8e2" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">468					<h3 class="elementor-heading-title elementor-size-default">Location :</h3>				</div>469				<div class="elementor-element elementor-element-bc36fe7 elementor-widget elementor-widget-text-editor" data-id="bc36fe7" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">470									<p><strong>Type de location :</strong><br />471Immeuble de 12 logements</p>472<p><strong>Unités en location : </strong><br />4734 X 4 ½<br />4746 X 5 ½<br />4752 X 6 ½</p>476<p>À partir de 1 250$/mois.</p>477								</div>478				</div>479		<div class="elementor-element elementor-element-934e484 e-con-full animated-fast e-flex elementor-invisible e-con e-child" data-id="934e484" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;,&quot;animation_delay&quot;:425}">480				<div class="elementor-element elementor-element-1354ae1 elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box" data-id="1354ae1" data-element_type="widget" data-e-type="widget" data-widget_type="icon-box.default">481							<div class="elementor-icon-box-wrapper">482483						<div class="elementor-icon-box-icon">484				<span  class="elementor-icon">485				<svg aria-hidden="true" class="e-font-icon-svg e-fas-star" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z"></path></svg>				</span>486			</div>487			488			489		</div>490						</div>491				<div class="elementor-element elementor-element-a0a3e36 elementor-widget elementor-widget-heading" data-id="a0a3e36" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">492					<h3 class="elementor-heading-title elementor-size-default">Services<br>associés :</h3>				</div>493				<div class="elementor-element elementor-element-7f54e81 elementor-widget elementor-widget-text-editor" data-id="7f54e81" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">494									<ul>495<li>Stationnement</li>496<li>Cabanon</li>497<li>Déneigement</li>498<li>Entretien de la pelouse</li>499</ul>500								</div>501				</div>502		<div class="elementor-element elementor-element-3165322 e-con-full animated-fast e-flex elementor-invisible e-con e-child" data-id="3165322" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;,&quot;animation_delay&quot;:450}">503				<div class="elementor-element elementor-element-c32f3b6 elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box" data-id="c32f3b6" data-element_type="widget" data-e-type="widget" data-widget_type="icon-box.default">504							<div class="elementor-icon-box-wrapper">505506						<div class="elementor-icon-box-icon">507				<span  class="elementor-icon">508				<svg aria-hidden="true" class="e-font-icon-svg e-fas-map" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M0 117.66v346.32c0 11.32 11.43 19.06 21.94 14.86L160 416V32L20.12 87.95A32.006 32.006 0 0 0 0 117.66zM192 416l192 64V96L192 32v384zM554.06 33.16L416 96v384l139.88-55.95A31.996 31.996 0 0 0 576 394.34V48.02c0-11.32-11.43-19.06-21.94-14.86z"></path></svg>				</span>509			</div>510			511			512		</div>513						</div>514				<div class="elementor-element elementor-element-80a67b9 elementor-widget elementor-widget-heading" data-id="80a67b9" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">515					<h3 class="elementor-heading-title elementor-size-default">Services à<br>proximité :</h3>				</div>516				<div class="elementor-element elementor-element-0c0d06c elementor-widget elementor-widget-text-editor" data-id="0c0d06c" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">517									<ul>518<li>Épiceries</li>519<li>Pharmacie</li>520<li>Centre commercial</li>521<li>Station-service</li>522<li>Quincaillerie</li>523<li>Restauration rapide</li>524</ul>525								</div>526				</div>527					</div>528				</div>529				</div>530		<div class="elementor-element elementor-element-6027385 e-con-full e-flex e-con e-parent" data-id="6027385" data-element_type="container" data-e-type="container">531				<div class="elementor-element elementor-element-33c524d elementor-widget elementor-widget-google_maps" data-id="33c524d" data-element_type="widget" data-e-type="widget" data-widget_type="google_maps.default">532							<div class="elementor-custom-embed">533			<iframe loading="lazy"534					src="https://maps.google.com/maps?q=119%2C%20rue%20Marquis%2C%20Matane&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near"535					title="119, rue Marquis, Matane"536					aria-label="119, rue Marquis, Matane"537			></iframe>538		</div>539						</div>540				</div>541		<div class="elementor-element elementor-element-d4585ef e-flex e-con-boxed e-con e-child" data-id="d4585ef" data-element_type="container" data-e-type="container" id="form-intent" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">542					<div class="e-con-inner">543		<div class="elementor-element elementor-element-1e2a984 e-con-full e-flex e-con e-child" data-id="1e2a984" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">544				<div class="elementor-element elementor-element-418a8f1 animated-fast elementor-widget__width-inherit elementor-invisible elementor-widget elementor-widget-heading" data-id="418a8f1" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:100}" data-widget_type="heading.default">545					<p class="elementor-heading-title elementor-size-default">Formulaire d’intention</p>				</div>546				<div class="elementor-element elementor-element-863e68f animated-fast elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-heading" data-id="863e68f" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:150}" data-widget_type="heading.default">547					<h1 class="elementor-heading-title elementor-size-default">Cet espace locatif vous intéresse? Contactez l’équipe STB Immobilier pour plus de détails!</h1>				</div>548				<div class="elementor-element elementor-element-127a9f9 elementor-widget__width-inherit animated-fast elementor-button-align-stretch elementor-invisible elementor-widget elementor-widget-form" data-id="127a9f9" data-element_type="widget" data-e-type="widget" data-settings="{&quot;step_next_label&quot;:&quot;Next&quot;,&quot;step_previous_label&quot;:&quot;Previous&quot;,&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:200,&quot;button_width&quot;:&quot;100&quot;,&quot;step_type&quot;:&quot;number_text&quot;,&quot;step_icon_shape&quot;:&quot;circle&quot;}" data-widget_type="form.default">549							<form class="elementor-form" method="post" id="formulaire_intention" name="Intérêt" aria-label="Intérêt">550			<input type="hidden" name="post_id" value="380"/>551			<input type="hidden" name="form_id" value="127a9f9"/>552			<input type="hidden" name="referer_title" value="Rue Marquis - STB Immobilier" />553554							<input type="hidden" name="queried_id" value="471"/>555			556			<div class="elementor-form-fields-wrapper elementor-labels-">557								<div class="elementor-field-type-email elementor-field-group elementor-column elementor-field-group-email elementor-col-50 elementor-field-required">558												<label for="form-field-email" class="elementor-field-label elementor-screen-only">559								Courriel							</label>560														<input size="1" type="email" name="form_fields[email]" id="form-field-email" class="elementor-field elementor-size-lg  elementor-field-textual" placeholder="Courriel *" required="required">561											</div>562								<div class="elementor-field-type-tel elementor-field-group elementor-column elementor-field-group-field_589e5af elementor-col-50 elementor-field-required">563												<label for="form-field-field_589e5af" class="elementor-field-label elementor-screen-only">564								Téléphone							</label>565								<input size="1" type="tel" name="form_fields[field_589e5af]" id="form-field-field_589e5af" class="elementor-field elementor-size-lg  elementor-field-textual" placeholder="Téléphone *" required="required" pattern="[0-9()#&amp;+*-=.]+" title="Seuls les caractères de numéros de téléphone (#, -, *, etc.) sont acceptés.">566567						</div>568								<div class="elementor-field-type-text elementor-field-group elementor-column elementor-field-group-name elementor-col-100 elementor-field-required">569												<label for="form-field-name" class="elementor-field-label elementor-screen-only">570								Nom complet							</label>571														<input size="1" type="text" name="form_fields[name]" id="form-field-name" class="elementor-field elementor-size-lg  elementor-field-textual" placeholder="Nom complet *" required="required">572											</div>573								<div class="elementor-field-type-textarea elementor-field-group elementor-column elementor-field-group-message elementor-col-100 elementor-field-required">574												<label for="form-field-message" class="elementor-field-label elementor-screen-only">575								Message							</label>576						<textarea class="elementor-field-textual elementor-field  elementor-size-lg" name="form_fields[message]" id="form-field-message" rows="4" placeholder="Message *" required="required"></textarea>				</div>577								<div class="elementor-field-type-recaptcha_v3 elementor-field-group elementor-column elementor-field-group-field_ce541cf elementor-col-100 recaptcha_v3-bottomright">578					<div class="elementor-field" id="form-field-field_ce541cf"><div class="elementor-g-recaptcha" data-sitekey="6Lcbw2IsAAAAAKr4cNmqh1w7Zy1qZ5IHjdco341G" data-type="v3" data-action="Form" data-badge="bottomright" data-size="invisible"></div></div>				</div>579								<div class="elementor-field-group elementor-column elementor-field-type-submit elementor-col-100 e-form__buttons">580					<button class="elementor-button elementor-size-sm" type="submit">581						<span class="elementor-button-content-wrapper">582																						<span class="elementor-button-text">Envoyer</span>583													</span>584					</button>585				</div>586			</div>587		</form>588						</div>589				</div>590					</div>591				</div>592				</div>593				<footer data-elementor-type="footer" data-elementor-id="74" class="elementor elementor-74 elementor-location-footer" data-elementor-post-type="elementor_library">594			<div class="elementor-element elementor-element-1f8ed1f footer-stb e-flex e-con-boxed e-con e-child" data-id="1f8ed1f" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">595					<div class="e-con-inner">596		<div class="elementor-element elementor-element-ba5a5df e-flex e-con-boxed e-con e-child" data-id="ba5a5df" data-element_type="container" data-e-type="container">597					<div class="e-con-inner">598				<div class="elementor-element elementor-element-180516f logo-footer elementor-widget elementor-widget-image" data-id="180516f" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">599																<a href="/">600							<img width="301" height="253" src="https://stbimmobilier.com/wp-content/uploads/2026/01/logo-stb-header.svg" class="attachment-full size-full wp-image-108" alt="" />								</a>601															</div>602				<div class="elementor-element elementor-element-4b20464 elementor-widget elementor-widget-text-editor" data-id="4b20464" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">603									<p>504 Av. du Phare E, Matane, QC G4W 1A7<br />Téléphone : <a class="underline-link" href="tel:4185621808"><strong>(418) 562-1808</strong></a><br /><a class="underline-link" href="mailto:info.stb@gus.ca">info.stb@gus.ca</a></p>								</div>604				<div class="elementor-element elementor-element-ae196f2 elementor-shape-circle e-grid-align-left elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="ae196f2" data-element_type="widget" data-e-type="widget" data-widget_type="social-icons.default">605							<div class="elementor-social-icons-wrapper elementor-grid">606							<span class="elementor-grid-item">607					<a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-84de456" href="https://www.facebook.com/p/STB-Immobilier-61555977434501/?locale=fr_CA" target="_blank">608						<span class="elementor-screen-only">Facebook</span>609						<svg aria-hidden="true" class="e-font-icon-svg e-fab-facebook" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z"></path></svg>					</a>610				</span>611					</div>612						</div>613					</div>614				</div>615		<div class="elementor-element elementor-element-00ad5f3 e-con-full e-grid e-con e-child" data-id="00ad5f3" data-element_type="container" data-e-type="container">616				<div class="elementor-element elementor-element-e405cad elementor-widget elementor-widget-text-editor" data-id="e405cad" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">617									<p>STB Immobilier — 2026 tous droits réservés</p>								</div>618				<div class="elementor-element elementor-element-55564b5 elementor-list-item-link-inline elementor-align-end elementor-icon-list--layout-inline elementor-mobile-align-center elementor-widget elementor-widget-icon-list" data-id="55564b5" data-element_type="widget" data-e-type="widget" data-widget_type="icon-list.default">619							<ul class="elementor-icon-list-items elementor-inline-items">620							<li class="elementor-icon-list-item elementor-inline-item">621											<a href="https://stbimmobilier.com/politique-de-confidentialite/" class="underline-link">622623											<span class="elementor-icon-list-text">Politique de confidentialité</span>624											</a>625									</li>626						</ul>627						</div>628				</div>629					</div>630				</div>631				</footer>632		633<script type="speculationrules">634{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/stbimmobilier/*","/wp-content/themes/hello-elementor/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}635</script>636			<script>637				( () => {638					const lazyloadRunObserver = () => {639						const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` );640						const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => {641							entries.forEach( ( entry ) => {642								if ( entry.isIntersecting ) {643									let lazyloadBackground = entry.target;644									if( lazyloadBackground ) {645										lazyloadBackground.classList.add( 'e-lazyloaded' );646									}647									lazyloadBackgroundObserver.unobserve( entry.target );648								}649							});650						}, { rootMargin: '200px 0px 200px 0px' } );651						lazyloadBackgrounds.forEach( ( lazyloadBackground ) => {652							lazyloadBackgroundObserver.observe( lazyloadBackground );653						} );654					};655					const events = [656						'DOMContentLoaded',657						'elementor/lazyload/observe',658					];659					events.forEach( ( event ) => {660						document.addEventListener( event, lazyloadRunObserver );661					} );662				} )();663			</script>664			<script id="main-stbimmobilier-js" src="https://stbimmobilier.com/wp-content/themes/stbimmobilier/main.js?ver=1.0.3"></script>665<script id="hello-theme-frontend-js" src="https://stbimmobilier.com/wp-content/themes/hello-elementor/assets/js/hello-frontend.js?ver=3.4.9"></script>666<script id="elementor-webpack-runtime-js" src="https://stbimmobilier.com/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js?ver=4.2.1"></script>667<script id="elementor-frontend-modules-js" src="https://stbimmobilier.com/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=4.2.1"></script>668<script id="jquery-ui-core-js" src="https://stbimmobilier.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3"></script>669<script id="elementor-frontend-js-before">670var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Partager sur Facebook","shareOnX":"Share on X","pinIt":"L\u2019\u00e9pingler","download":"T\u00e9l\u00e9charger","downloadImage":"T\u00e9l\u00e9charger une image","fullscreen":"Plein \u00e9cran","zoom":"Zoom","share":"Partager","playVideo":"Lire la vid\u00e9o","previous":"Pr\u00e9c\u00e9dent","next":"Suivant","close":"Fermer","a11yCarouselPrevSlideMessage":"Diapositive pr\u00e9c\u00e9dente","a11yCarouselNextSlideMessage":"Diapositive suivante","a11yCarouselFirstSlideMessage":"Ceci est la premi\u00e8re diapositive","a11yCarouselLastSlideMessage":"Ceci est la derni\u00e8re diapositive","a11yCarouselPaginationBulletMessage":"Aller \u00e0 la diapositive"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Portrait mobile","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Paysage","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablette en mode portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablette en mode paysage","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Portable","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"\u00c9cran large","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":false},"version":"4.2.1","is_static":false,"experimentalFeatures":{"e_font_icon_svg":true,"additional_custom_breakpoints":true,"container":true,"e_optimized_markup":true,"e_panel_promotions":true,"theme_builder_v2":true,"hello-theme-header-footer":true,"e_pro_free_trial_popup":true,"nested-elements":true,"global_classes_should_enforce_capabilities":true,"e_variables":true,"e_opt_in_v4_page":true,"e_components":true,"e_interactions":true,"e_widget_creation":true,"import-export-customization":true,"e_pro_atomic_form":true,"e_pro_collection_loop":true,"mega-menu":true,"e_pro_variables":true,"e_pro_interactions":true},"urls":{"assets":"https:\/\/stbimmobilier.com\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/stbimmobilier.com\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/stbimmobilier.com\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"2c16505ac8","atomicFormsSendForm":"0612ded201"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description","hello_header_logo_type":"title","hello_footer_logo_type":"logo"},"post":{"id":471,"title":"Rue%20Marquis%20-%20STB%20Immobilier","excerpt":"","featuredImage":false}};671//# sourceURL=elementor-frontend-js-before672</script>673<script id="elementor-frontend-js" src="https://stbimmobilier.com/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=4.2.1"></script>674<script id="swiper-js" src="https://stbimmobilier.com/wp-content/plugins/elementor/assets/lib/swiper/v8/swiper.min.js?ver=8.4.5"></script>675<script id="imagesloaded-js" src="https://stbimmobilier.com/wp-includes/js/imagesloaded.min.js?ver=5.0.0"></script>676<script id="elementor-recaptcha_v3-api-js" src="https://www.google.com/recaptcha/api.js?render=explicit&#038;ver=4.2.1"></script>677<script id="elementor-pro-webpack-runtime-js" src="https://stbimmobilier.com/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js?ver=4.2.1"></script>678<script id="wp-hooks-js" src="https://stbimmobilier.com/wp-includes/js/dist/hooks.min.js?ver=7496969728ca0f95732d"></script>679<script id="wp-i18n-js" src="https://stbimmobilier.com/wp-includes/js/dist/i18n.min.js?ver=781d11515ad3d91786ec"></script>680<script id="wp-i18n-js-after">681wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );682//# sourceURL=wp-i18n-js-after683</script>684<script id="elementor-pro-frontend-js-before">685var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/stbimmobilier.com\/wp-admin\/admin-ajax.php","nonce":"89eec63385","urls":{"assets":"https:\/\/stbimmobilier.com\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/stbimmobilier.com\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":false},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"fr_FR","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/stbimmobilier.com\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}};686//# sourceURL=elementor-pro-frontend-js-before687</script>688<script id="elementor-pro-frontend-js" src="https://stbimmobilier.com/wp-content/plugins/elementor-pro/assets/js/frontend.min.js?ver=4.2.1"></script>689<script id="pro-elements-handlers-js" src="https://stbimmobilier.com/wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js?ver=4.2.1"></script>690<script id="wp-emoji-settings" type="application/json">691{"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://stbimmobilier.com/wp-includes/js/wp-emoji-release.min.js?ver=626e4be5008e3c455662a53efed534f9"}}692</script>693<script type="module">694/*! This file is auto-generated */695var e="script#wp-emoji-settings",t=document.querySelector(e);if(!(t instanceof HTMLScriptElement))throw new Error("Element missing: "+e);const r=JSON.parse(t.text),s=(window._wpemojiSettings=r,"wpEmojiSettingsSupports"),o=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(s,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const r=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===r[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,r){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!r(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,r){let a;const s=(a="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),o=(s.textBaseline="top",s.font="600 32px Arial",{});return e.forEach(e=>{o[e]=t(s,e,n,r)}),o}function a(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}r.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(s));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(o),u.toString(),c.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"});const a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=e=>{i(n=e.data),a.terminate(),t(n)})}catch(e){}i(n=f(o,u,c,p))}t(n)}).then(e=>{for(const n in e)r.supports[n]=e[n],r.supports.everything=r.supports.everything&&r.supports[n],"flag"!==n&&(r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&r.supports[n]);var t;r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&!r.supports.flag,r.supports.everything||((t=r.source||{}).concatemoji?a(t.concatemoji):t.wpemoji&&t.twemoji&&(a(t.twemoji),a(t.wpemoji)))});696//# sourceURL=https://stbimmobilier.com/wp-includes/js/wp-emoji-loader.min.js697</script>698699</body>700</html>701702703<!-- Page cached by LiteSpeed Cache 7.8.1 on 2026-08-09 05:20:16 -->