SPB Git

spb/lou-ka Public

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

HTML 99.7%
84.7 KB · 1,048 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>Avenue d’Amours - STB Immobilier</title>242	<link rel="canonical" href="https://stbimmobilier.com/location/avenue-damours/" />243	<meta property="og:locale" content="fr_FR" />244	<meta property="og:type" content="article" />245	<meta property="og:title" content="Avenue d’Amours - STB Immobilier" />246	<meta property="og:url" content="https://stbimmobilier.com/location/avenue-damours/" />247	<meta property="og:site_name" content="STB Immobilier" />248	<meta property="article:modified_time" content="2026-01-28T15:04:48+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\/avenue-damours\/","url":"https:\/\/stbimmobilier.com\/location\/avenue-damours\/","name":"Avenue d’Amours - STB Immobilier","isPartOf":{"@id":"https:\/\/stbimmobilier.com\/#website"},"datePublished":"2026-01-27T19:57:55+00:00","dateModified":"2026-01-28T15:04:48+00:00","breadcrumb":{"@id":"https:\/\/stbimmobilier.com\/location\/avenue-damours\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/stbimmobilier.com\/location\/avenue-damours\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/stbimmobilier.com\/location\/avenue-damours\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/stbimmobilier.com\/"},{"@type":"ListItem","position":2,"name":"Avenue d’Amours"}]},{"@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%2Favenue-damours%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%2Favenue-damours%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/4logement-rue-damour_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/482" /><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=482' />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-482 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-482 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">Avenue d’Amours</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">450    <style>451        #carousel-6a780e0a025d0 {452            position: relative;453            width: 100%;454            margin: 20px 0;455            overflow: hidden;456            user-select: none;457            --gap: 15px;458            --visible: 3;459        }460461        #carousel-6a780e0a025d0 .gl-track {462            display: flex;463            gap: var(--gap);464            overflow-x: scroll; /* Scroll activé mais caché */465            /* Pas de scroll-behavior smooth en CSS ici, on le gère en JS pour la téléportation */466            -ms-overflow-style: none;467            scrollbar-width: none;468            cursor: grab;469            will-change: scroll-position;470        }471        472        #carousel-6a780e0a025d0 .gl-track::-webkit-scrollbar { display: none; }473        474        #carousel-6a780e0a025d0 .gl-track.active { cursor: grabbing; }475476        #carousel-6a780e0a025d0 .gl-item {477            flex: 0 0 calc((100% - (var(--gap) * (var(--visible) - 1))) / var(--visible));478            max-width: calc((100% - (var(--gap) * (var(--visible) - 1))) / var(--visible));479            aspect-ratio: 4/3;480        }481482        #carousel-6a780e0a025d0 .gl-item img {483            width: 100%;484            height: 100%;485            object-fit: cover;486            border-radius: 8px;487            display: block;488            pointer-events: none; /* Crucial pour le drag */489        }490491        /* Flèches */492        #carousel-6a780e0a025d0 .gl-btn {493            position: absolute;494            top: 50%;495            transform: translateY(-50%);496            background: rgba(255, 255, 255, 0.9);497            color: #222;498            border: none;499            width: 40px;500            height: 40px;501            border-radius: 50%;502            cursor: pointer;503            z-index: 10;504            display: flex;505            align-items: center;506            justify-content: center;507            box-shadow: 0 2px 10px rgba(0,0,0,0.1);508            transition: transform 0.2s;509        }510        #carousel-6a780e0a025d0 .gl-btn:hover { transform: translateY(-50%) scale(1.1); }511        #carousel-6a780e0a025d0 .gl-prev { left: 10px; }512        #carousel-6a780e0a025d0 .gl-next { right: 10px; }513514        /* Points */515        #carousel-6a780e0a025d0 .gl-dots {516            display: flex;517            justify-content: center;518            gap: 8px;519            margin-top: 15px;520        }521        #carousel-6a780e0a025d0 .gl-dot {522            width: 8px;523            height: 8px;524            border-radius: 50%;525            background: #ccc;526            border: none;527            padding: 0;528            cursor: pointer;529            transition: background 0.3s;530        }531        #carousel-6a780e0a025d0 .gl-dot.active { background: #222; transform: scale(1.2); }532533        @media (max-width: 768px) {534            #carousel-6a780e0a025d0 { --visible: 1; }535        }536    </style>537538    <div id="carousel-6a780e0a025d0" class="gl-wrapper">539        <button class="gl-btn gl-prev" aria-label="Précédent">&#10094;</button>540        <button class="gl-btn gl-next" aria-label="Suivant">&#10095;</button>541        542        <div class="gl-track">543                            <div class="gl-item clone">544                    <img src="https://stbimmobilier.com/wp-content/uploads/2026/01/IMG_6761_opt-768x576.webp" alt="">545                </div>546                            <div class="gl-item clone">547                    <img src="https://stbimmobilier.com/wp-content/uploads/2026/01/IMG_6762_opt-768x1024.webp" alt="">548                </div>549                            <div class="gl-item clone">550                    <img src="https://stbimmobilier.com/wp-content/uploads/2026/01/IMG_8665_opt-768x1024.webp" alt="">551                </div>552            553                            <div class="gl-item original" data-index="0">554                    <img src="https://stbimmobilier.com/wp-content/uploads/2026/01/IMG_6754_opt-768x1024.webp" 555                         alt="" 556                         loading="lazy">557                </div>558                            <div class="gl-item original" data-index="1">559                    <img src="https://stbimmobilier.com/wp-content/uploads/2026/01/IMG_6755_opt-768x576.webp" 560                         alt="" 561                         loading="lazy">562                </div>563                            <div class="gl-item original" data-index="2">564                    <img src="https://stbimmobilier.com/wp-content/uploads/2026/01/IMG_6756_opt-768x1024.webp" 565                         alt="" 566                         loading="lazy">567                </div>568                            <div class="gl-item original" data-index="3">569                    <img src="https://stbimmobilier.com/wp-content/uploads/2026/01/IMG_6761_opt-768x576.webp" 570                         alt="" 571                         loading="lazy">572                </div>573                            <div class="gl-item original" data-index="4">574                    <img src="https://stbimmobilier.com/wp-content/uploads/2026/01/IMG_6762_opt-768x1024.webp" 575                         alt="" 576                         loading="lazy">577                </div>578                            <div class="gl-item original" data-index="5">579                    <img src="https://stbimmobilier.com/wp-content/uploads/2026/01/IMG_8665_opt-768x1024.webp" 580                         alt="" 581                         loading="lazy">582                </div>583            584                            <div class="gl-item clone">585                    <img src="https://stbimmobilier.com/wp-content/uploads/2026/01/IMG_6754_opt-768x1024.webp" alt="">586                </div>587                            <div class="gl-item clone">588                    <img src="https://stbimmobilier.com/wp-content/uploads/2026/01/IMG_6755_opt-768x576.webp" alt="">589                </div>590                            <div class="gl-item clone">591                    <img src="https://stbimmobilier.com/wp-content/uploads/2026/01/IMG_6756_opt-768x1024.webp" alt="">592                </div>593                    </div>594595        <div class="gl-dots">596                            <button class="gl-dot active" data-target="0"></button>597                            <button class="gl-dot " data-target="1"></button>598                            <button class="gl-dot " data-target="2"></button>599                            <button class="gl-dot " data-target="3"></button>600                            <button class="gl-dot " data-target="4"></button>601                            <button class="gl-dot " data-target="5"></button>602                    </div>603    </div>604605    <script>606    (function() {607        const wrapper = document.getElementById('carousel-6a780e0a025d0');608        if(!wrapper) return;609610        const track = wrapper.querySelector('.gl-track');611        const dots = wrapper.querySelectorAll('.gl-dot');612        const items = wrapper.querySelectorAll('.gl-item');613        const totalReal = 6;614        const clonesCount = 3; // Nombre de clones au début615        616        let itemWidth, gap;617        618        // Fonction pour recalculer les dimensions619        function updateDimensions() {620            const firstItem = wrapper.querySelector('.gl-item');621            itemWidth = firstItem.offsetWidth;622            // On calcule le gap réel via le style623            const style = getComputedStyle(track);624            gap = parseFloat(style.gap) || 0;625            return itemWidth + gap;626        }627628        // 1. Initialisation : On se place sur la première VRAIE image (sauter les clones)629        let fullItemWidth = updateDimensions();630        track.scrollLeft = fullItemWidth * clonesCount;631632        // Gestion du resize633        window.addEventListener('resize', () => {634            fullItemWidth = updateDimensions();635            // On recalibre la position636            track.scrollLeft = fullItemWidth * (currentIndex + clonesCount);637        });638639        // 2. Gestion du Drag (Souris)640        let isDown = false;641        let startX;642        let scrollLeft;643644        track.addEventListener('mousedown', (e) => {645            isDown = true;646            track.classList.add('active');647            startX = e.pageX - track.offsetLeft;648            scrollLeft = track.scrollLeft;649            // Arrêter tout snap ou smooth scroll en cours650            track.style.scrollBehavior = 'auto'; 651            track.style.scrollSnapType = 'none';652        });653654        const stopDrag = () => {655            if(!isDown) return;656            isDown = false;657            track.classList.remove('active');658            snapToNearest(); // On aligne l'image la plus proche quand on relâche659        };660661        track.addEventListener('mouseleave', stopDrag);662        track.addEventListener('mouseup', stopDrag);663664        track.addEventListener('mousemove', (e) => {665            if(!isDown) return;666            e.preventDefault();667            const x = e.pageX - track.offsetLeft;668            const walk = (x - startX) * 1.5; // Vitesse du drag669            track.scrollLeft = scrollLeft - walk;670        });671672        // 3. Fonction "Snap" et "Infini"673        let currentIndex = 0;674675        function snapToNearest() {676            fullItemWidth = updateDimensions();677            // Index basé sur la position actuelle678            let rawIndex = Math.round(track.scrollLeft / fullItemWidth);679            680            // Appliquer le mouvement fluide vers l'image la plus proche681            track.style.scrollBehavior = 'smooth';682            track.scrollLeft = rawIndex * fullItemWidth;683684            // Une fois l'animation finie, on vérifie si on doit se téléporter685            setTimeout(() => {686                checkInfinity(rawIndex);687            }, 350); // Attendre la fin du smooth scroll (approx 300ms)688        }689690        function checkInfinity(rawIndex) {691            track.style.scrollBehavior = 'auto'; // Couper l'animation pour la téléportation692693            // Si on est dans les clones de GAUCHE (trop loin en arrière)694            if (rawIndex < clonesCount) {695                // On saute vers la fin (zone réelle correspondante)696                let realIndex = totalReal - (clonesCount - rawIndex); 697                // Correction mathématique pour retomber exactement sur le bon item698                track.scrollLeft = (totalReal + rawIndex) * fullItemWidth; 699                // Mieux : Aller directement à la vraie position700                track.scrollLeft = (totalReal + (rawIndex - clonesCount) + clonesCount) * fullItemWidth;701                702                // Simplification : Si on est sur le clone index 2, on va au vrai index correspondant703                // Le clone index 2 correspond au vrai index (Total - (Clones - 2))704                // Pour faire simple : Si on arrive à 0 (le tout premier clone), c'est la dernière vraie image705                if (rawIndex < clonesCount) {706                     track.scrollLeft = track.scrollLeft + (totalReal * fullItemWidth);707                }708            }709            710            // Si on est dans les clones de DROITE (trop loin en avant)711            if (rawIndex >= totalReal + clonesCount) {712                 track.scrollLeft = track.scrollLeft - (totalReal * fullItemWidth);713            }714            715            updateDots();716        }717718        // Navigation Boutons719        const moveSlide = (dir) => {720            track.style.scrollBehavior = 'smooth';721            fullItemWidth = updateDimensions();722            track.scrollLeft += (dir * fullItemWidth);723            724            // Vérifier l'infini après le scroll725            setTimeout(() => {726                const currentScroll = track.scrollLeft;727                const index = Math.round(currentScroll / fullItemWidth);728                checkInfinity(index);729            }, 350);730        };731732        wrapper.querySelector('.gl-prev').addEventListener('click', () => moveSlide(-1));733        wrapper.querySelector('.gl-next').addEventListener('click', () => moveSlide(1));734735        // Navigation Points736        dots.forEach(dot => {737            dot.addEventListener('click', (e) => {738                const targetI = parseInt(e.target.dataset.target);739                track.style.scrollBehavior = 'smooth';740                // On vise la zone "Réelle", donc index + nombre de clones au début741                track.scrollLeft = (targetI + clonesCount) * fullItemWidth;742                setTimeout(updateDots, 350);743            });744        });745746        // Mise à jour des points747        function updateDots() {748            fullItemWidth = updateDimensions();749            // L'index visuel actuel (sans les clones)750            let scrollIndex = Math.round(track.scrollLeft / fullItemWidth);751            752            // Normaliser l'index (enlever l'offset des clones)753            let realIndex = scrollIndex - clonesCount;754755            // Corriger si on est temporairement dans les zones de clones756            if (realIndex < 0) realIndex = totalReal + realIndex;757            if (realIndex >= totalReal) realIndex = realIndex - totalReal;758759            dots.forEach(d => d.classList.remove('active'));760            if(dots[realIndex]) dots[realIndex].classList.add('active');761            762            currentIndex = realIndex;763        }764765        // Surveillance continue du scroll (pour le drag rapide)766        track.addEventListener('scroll', () => {767             // Juste pour les points en temps réel si besoin, 768             // mais checkInfinity fait le gros du travail de logique769             if (!isDown) return; // Seulement si on drag pas770        });771772    })();773    </script>774    </div>775						</div>776				</div>777				</div>778		<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">779					<div class="e-con-inner">780		<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}">781				<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">782							<div class="elementor-icon-box-wrapper">783784						<div class="elementor-icon-box-icon">785				<span  class="elementor-icon">786				<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>787			</div>788			789			790		</div>791						</div>792				<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">793					<h3 class="elementor-heading-title elementor-size-default">Location :</h3>				</div>794				<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">795									<p><strong>Adresse :  </strong><br />79680-84-86, avenue d’Amours, Matane</p>797<p><strong>Type de location :</strong><br />798Immeuble de 3 logements<br />7991 espace commercial au rez-de-chaussée</p>800<p><strong>Unités en location : </strong><br />8011 X 3 ½<br />8022 X 4 ½</p>803<p>À partir de 725$/mois</p>804								</div>805				</div>806		<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}">807				<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">808							<div class="elementor-icon-box-wrapper">809810						<div class="elementor-icon-box-icon">811				<span  class="elementor-icon">812				<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>813			</div>814			815			816		</div>817						</div>818				<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">819					<h3 class="elementor-heading-title elementor-size-default">Services<br>associés :</h3>				</div>820				<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">821									<ul>822<li>Stationnement</li>823<li>Rangement intérieur</li>824<li>Déneigement</li>825</ul>826								</div>827				</div>828		<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}">829				<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">830							<div class="elementor-icon-box-wrapper">831832						<div class="elementor-icon-box-icon">833				<span  class="elementor-icon">834				<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>835			</div>836			837			838		</div>839						</div>840				<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">841					<h3 class="elementor-heading-title elementor-size-default">Services à<br>proximité :</h3>				</div>842				<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">843									<ul>844<li>Centre-ville</li>845<li>Hôpital</li>846<li>Épicerie</li>847<li>Pharmacie</li>848<li>Parc des Îles</li>849<li>Bibliothèque municipale</li>850<li>Restaurants</li>851</ul>852								</div>853				</div>854		<div class="elementor-element elementor-element-5b5211f e-con-full animated-fast e-flex elementor-invisible e-con e-child" data-id="5b5211f" 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;:475}">855				<div class="elementor-element elementor-element-ace475a elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box" data-id="ace475a" data-element_type="widget" data-e-type="widget" data-widget_type="icon-box.default">856							<div class="elementor-icon-box-wrapper">857858						<div class="elementor-icon-box-icon">859				<span  class="elementor-icon">860				<svg aria-hidden="true" class="e-font-icon-svg e-fas-check" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"></path></svg>				</span>861			</div>862			863			864		</div>865						</div>866				<div class="elementor-element elementor-element-5644b9f elementor-widget elementor-widget-heading" data-id="5644b9f" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">867					<h3 class="elementor-heading-title elementor-size-default">Caractéristiques :</h3>				</div>868				<div class="elementor-element elementor-element-41fd64f elementor-widget elementor-widget-text-editor" data-id="41fd64f" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">869									<p>Situé au centre-ville en bordure de la rivière Matane.</p>870								</div>871				</div>872					</div>873				</div>874				</div>875		<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">876				<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">877							<div class="elementor-custom-embed">878			<iframe loading="lazy"879					src="https://maps.google.com/maps?q=80%2C%20avenue%20d%E2%80%99Amours%2C%20Matane&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near"880					title="80, avenue d’Amours, Matane"881					aria-label="80, avenue d’Amours, Matane"882			></iframe>883		</div>884						</div>885				</div>886		<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;}">887					<div class="e-con-inner">888		<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;}">889				<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">890					<p class="elementor-heading-title elementor-size-default">Formulaire d’intention</p>				</div>891				<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">892					<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>893				<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">894							<form class="elementor-form" method="post" id="formulaire_intention" name="Intérêt" aria-label="Intérêt">895			<input type="hidden" name="post_id" value="380"/>896			<input type="hidden" name="form_id" value="127a9f9"/>897			<input type="hidden" name="referer_title" value="Avenue d’Amours - STB Immobilier" />898899							<input type="hidden" name="queried_id" value="482"/>900			901			<div class="elementor-form-fields-wrapper elementor-labels-">902								<div class="elementor-field-type-email elementor-field-group elementor-column elementor-field-group-email elementor-col-50 elementor-field-required">903												<label for="form-field-email" class="elementor-field-label elementor-screen-only">904								Courriel							</label>905														<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">906											</div>907								<div class="elementor-field-type-tel elementor-field-group elementor-column elementor-field-group-field_589e5af elementor-col-50 elementor-field-required">908												<label for="form-field-field_589e5af" class="elementor-field-label elementor-screen-only">909								Téléphone							</label>910								<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.">911912						</div>913								<div class="elementor-field-type-text elementor-field-group elementor-column elementor-field-group-name elementor-col-100 elementor-field-required">914												<label for="form-field-name" class="elementor-field-label elementor-screen-only">915								Nom complet							</label>916														<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">917											</div>918								<div class="elementor-field-type-textarea elementor-field-group elementor-column elementor-field-group-message elementor-col-100 elementor-field-required">919												<label for="form-field-message" class="elementor-field-label elementor-screen-only">920								Message							</label>921						<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>922								<div class="elementor-field-type-recaptcha_v3 elementor-field-group elementor-column elementor-field-group-field_ce541cf elementor-col-100 recaptcha_v3-bottomright">923					<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>924								<div class="elementor-field-group elementor-column elementor-field-type-submit elementor-col-100 e-form__buttons">925					<button class="elementor-button elementor-size-sm" type="submit">926						<span class="elementor-button-content-wrapper">927																						<span class="elementor-button-text">Envoyer</span>928													</span>929					</button>930				</div>931			</div>932		</form>933						</div>934				</div>935					</div>936				</div>937				</div>938				<footer data-elementor-type="footer" data-elementor-id="74" class="elementor elementor-74 elementor-location-footer" data-elementor-post-type="elementor_library">939			<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;}">940					<div class="e-con-inner">941		<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">942					<div class="e-con-inner">943				<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">944																<a href="/">945							<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>946															</div>947				<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">948									<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>949				<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">950							<div class="elementor-social-icons-wrapper elementor-grid">951							<span class="elementor-grid-item">952					<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">953						<span class="elementor-screen-only">Facebook</span>954						<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>955				</span>956					</div>957						</div>958					</div>959				</div>960		<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">961				<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">962									<p>STB Immobilier — 2026 tous droits réservés</p>								</div>963				<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">964							<ul class="elementor-icon-list-items elementor-inline-items">965							<li class="elementor-icon-list-item elementor-inline-item">966											<a href="https://stbimmobilier.com/politique-de-confidentialite/" class="underline-link">967968											<span class="elementor-icon-list-text">Politique de confidentialité</span>969											</a>970									</li>971						</ul>972						</div>973				</div>974					</div>975				</div>976				</footer>977		978<script type="speculationrules">979{"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"}]}980</script>981			<script>982				( () => {983					const lazyloadRunObserver = () => {984						const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` );985						const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => {986							entries.forEach( ( entry ) => {987								if ( entry.isIntersecting ) {988									let lazyloadBackground = entry.target;989									if( lazyloadBackground ) {990										lazyloadBackground.classList.add( 'e-lazyloaded' );991									}992									lazyloadBackgroundObserver.unobserve( entry.target );993								}994							});995						}, { rootMargin: '200px 0px 200px 0px' } );996						lazyloadBackgrounds.forEach( ( lazyloadBackground ) => {997							lazyloadBackgroundObserver.observe( lazyloadBackground );998						} );999					};1000					const events = [1001						'DOMContentLoaded',1002						'elementor/lazyload/observe',1003					];1004					events.forEach( ( event ) => {1005						document.addEventListener( event, lazyloadRunObserver );1006					} );1007				} )();1008			</script>1009			<script id="main-stbimmobilier-js" src="https://stbimmobilier.com/wp-content/themes/stbimmobilier/main.js?ver=1.0.3"></script>1010<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>1011<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>1012<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>1013<script id="jquery-ui-core-js" src="https://stbimmobilier.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3"></script>1014<script id="elementor-frontend-js-before">1015var 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":482,"title":"Avenue%20d%E2%80%99Amours%20-%20STB%20Immobilier","excerpt":"","featuredImage":false}};1016//# sourceURL=elementor-frontend-js-before1017</script>1018<script id="elementor-frontend-js" src="https://stbimmobilier.com/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=4.2.1"></script>1019<script id="swiper-js" src="https://stbimmobilier.com/wp-content/plugins/elementor/assets/lib/swiper/v8/swiper.min.js?ver=8.4.5"></script>1020<script id="imagesloaded-js" src="https://stbimmobilier.com/wp-includes/js/imagesloaded.min.js?ver=5.0.0"></script>1021<script id="elementor-recaptcha_v3-api-js" src="https://www.google.com/recaptcha/api.js?render=explicit&#038;ver=4.2.1"></script>1022<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>1023<script id="wp-hooks-js" src="https://stbimmobilier.com/wp-includes/js/dist/hooks.min.js?ver=7496969728ca0f95732d"></script>1024<script id="wp-i18n-js" src="https://stbimmobilier.com/wp-includes/js/dist/i18n.min.js?ver=781d11515ad3d91786ec"></script>1025<script id="wp-i18n-js-after">1026wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );1027//# sourceURL=wp-i18n-js-after1028</script>1029<script id="elementor-pro-frontend-js-before">1030var 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"}};1031//# sourceURL=elementor-pro-frontend-js-before1032</script>1033<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>1034<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>1035<script id="wp-emoji-settings" type="application/json">1036{"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"}}1037</script>1038<script type="module">1039/*! This file is auto-generated */1040var 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)))});1041//# sourceURL=https://stbimmobilier.com/wp-includes/js/wp-emoji-loader.min.js1042</script>10431044</body>1045</html>104610471048<!-- Page cached by LiteSpeed Cache 7.8.1 on 2026-08-09 05:20:10 -->