SPB Git

spb/lou-ka Public

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

HTML 99.7%
157.6 KB · 2,256 lines html
Raw Blame History
1<!doctype html >2<html xmlns="http://www.w3.org/1999/xhtml" lang="fr"3      class="ios-preview-native-scroll">4<head>5    <meta charset="utf-8">6    789101112131415161718192021222324252627282930313233343536373839404142434445<script type="text/javascript">46    window._currentDevice = 'desktop';47    window.Parameters = window.Parameters || {48        HomeUrl: 'https://www.girs.ca/',4950        SystemID: 'US_DIRECT_PRODUCTION',51        SiteAlias: '6d6b044d',52        SiteType: atob('RFVEQU9ORQ=='),53        PublicationDate: 'Mar 31, 2026',54        ExternalUid: null,55        IsSiteMultilingual: false,56        InitialPostAlias: '',57        InitialPostPageUuid: '',58        InitialDynamicItem: '',59        DynamicPageInfo: {60            isDynamicPage: false,61            base64JsonRowData: 'null',62        },63        InitialPageAlias: 'location/scott/rue-jean-baptiste',64        InitialPageUuid: '845bf62a727143329cee1b9f8aeb2eb3',65        InitialPageId: '43685121',66        InitialEncodedPageAlias: 'bG9jYXRpb24vc2NvdHQvcnVlLWplYW4tYmFwdGlzdGU=',67        InitialHeaderUuid: '61c65dd7517f4c29b71b498c43fdda25',68        CurrentPageUrl: '',69        IsCurrentHomePage: false,70        AllowAjax: false,71        AfterAjaxCommand: null,72        HomeLinkText: 'Back To Home',73        UseGalleryModule: false,74        CurrentThemeName: 'Layout Theme',75        ThemeVersion: '500000',76        DefaultPageAlias: '',77        RemoveDID: true,78        WidgetStyleID: null,79        IsHeaderFixed: false,80        IsHeaderSkinny: false,81        IsBfs: true,82        StorePageAlias: 'null',83        StorePagesUrls: 'e30=',84        IsNewStore: 'false',85        StorePath: '',86        StoreId: 'null',87        StoreVersion: 0,88        StoreBaseUrl: '',89        StoreCleanUrl: true,90        StoreDisableScrolling: true,91        IsStoreSuspended: false,92        HasCustomDomain: true,93        SimpleSite: false,94        showCookieNotification: true,95        cookiesNotificationMarkup: ' <div> <p class=\"rteBlock\">Nous utilisons des cookies pour optimiser votre exp&eacute;rience sur notre site web. Pour en savoir plus, veuillez acc&eacute;der &agrave; la page <a value=\"donnees-personnelles\" label=\"\" type=\"page\" href=\"\/donnees-personnelles\" data-runtime-url=\"\/donnees-personnelles\">Confidentialit&eacute;<\/a>.<\/p> \n<\/div> \n',96        translatedPageUrl: '',97        isFastMigrationSite: false,98        sidebarPosition: 'NA',99        currentLanguage: 'fr',100        currentLocale: 'fr',101        NavItems: '{}',102        errors: {103            general: 'There was an error connecting to the page.<br/> Make sure you are not offline.',104            password: 'Incorrect name/password combination',105            tryAgain: 'Try again'106        },107        108        mapConsent: {109            message: 'Ce contenu est fourni par un tiers, {0}. Si cette option est activ\u00E9e, {0} peut collecter des informations concernant votre activit\u00E9.',110            enable: 'Activer'111        },112        NavigationAreaParams: {113            ShowBackToHomeOnInnerPages: true,114            NavbarSize: -1,115            NavbarLiveHomePage: 'https://www.girs.ca/',116            BlockContainerSelector: '.dmBody',117            NavbarSelector: '#dmNav:has(a)',118            SubNavbarSelector: '#subnav_main'119        },120        hasCustomCode: false,121        planID: '7',122        customTemplateId: 'null',123        siteTemplateId: 'null',124        productId: 'DM_DIRECT',125        disableTracking: false,126        pageType: 'FROM_SCRATCH',127        isRuntimeServer: true,128        isInEditor: false,129        isInPreview: false,130        hasNativeStore: false,131        defaultLang: 'fr',132        hamburgerMigration: null,133        isFlexSite: false134    };135136    window.Parameters.LayoutID = {};137    window.Parameters.LayoutID[window._currentDevice] = 6;138    window.Parameters.LayoutVariationID = {};139    window.Parameters.LayoutVariationID[window._currentDevice] = 5;140</script>141142143144145146147148149150151152153154155156157158159160161162<!-- Injecting site-wide to the head -->163164165166167168169170171172173174175176177178<script type="text/javascript" id="d_track_campaign">179    (function() {180        if (!window.location.search) {181            return;182        }183        const cleanParams = window.location.search.substring(1); // Strip ?184        const queryParams = cleanParams.split('&');185186        const expires = 'expires=' + new Date().getTime() + 24 * 60 * 60 * 1000;187        const domain = 'domain=' + window.location.hostname;188        const path = "path=/";189190        queryParams.forEach((param) => {191            const [key, value = ''] = param.split('=');192            if (key.startsWith('utm_')) {193                const cookieName = "_dm_rt_" + key.substring(4);194                const cookie = cookieName + "=" + value;195                const joined = [cookie, expires, domain, path].join(";");196                document.cookie = joined;197            }198        });199    }());200</script>201<script type="text/javascript" id="d_track_referrer">202    (function() {203        const cookieName = '_dm_entry_referrer';204        const referrer = document.referrer;205        if (!referrer) {206            return;207        }208        let referrerOrigin;209        try {210            referrerOrigin = new URL(referrer).origin;211        } catch (e) {212            return;213        }214        // 'null' is what an opaque origin (sandboxed iframe, file://) serializes to.215        if (!referrerOrigin || referrerOrigin === 'null' || referrerOrigin === window.location.origin) {216            return;217        }218        try {219            const existing = document.cookie220                .split('; ')221                .find((candidate) => candidate.indexOf(cookieName + '=') === 0);222            if (existing && decodeURIComponent(existing.slice(cookieName.length + 1))) {223                return;224            }225            // No expiry: session-scoped, matching the _dm_rt_ cookies above that a submission226            // reads alongside this one (session-scoped in practice — see FBN-5389).227            const secure = window.location.protocol === 'https:' ? ';Secure' : '';228            document.cookie = cookieName + '=' + encodeURIComponent(referrerOrigin)229                + ';path=/;SameSite=Lax' + secure;230        } catch (e) {231            return;232        }233    }());234</script>235<script type="text/javascript" >236    var _dm_gaq = {};237    var _gaq = _gaq || [];238    var _dm_insite = [];239</script>240241242243244245246<!-- End Injecting site-wide to the head -->247248<!-- Inject secured cdn script -->249250251<!-- ========= Meta Tags ========= -->252<!-- PWA settings -->253<script>254    function toHash(str) {255        var hash = 5381, i = str.length;256        while (i) {257            hash = hash * 33 ^ str.charCodeAt(--i)258        }259        return hash >>> 0260    }261</script>262<script>263    (function (global) {264    //const cacheKey = global.cacheKey;265    const isOffline = 'onLine' in navigator && navigator.onLine === false;266    const hasServiceWorkerSupport = 'serviceWorker' in navigator;267    if (isOffline) {268        console.log('offline mode');269    }270    if (!hasServiceWorkerSupport) {271        console.log('service worker is not supported');272    }273    if (hasServiceWorkerSupport && !isOffline) {274        window.addEventListener('load', function () {275            const serviceWorkerPath = '/runtime-service-worker.js?v=3';276            navigator.serviceWorker277                .register(serviceWorkerPath, { scope: './' })278                .then(279                    function (registration) {280                        // Registration was successful281                        console.log(282                            'ServiceWorker registration successful with scope: ',283                            registration.scope284                        );285                    },286                    function (err) {287                        // registration failed :(288                        console.log('ServiceWorker registration failed: ', err);289                    }290                )291                .catch(function (err) {292                    console.log(err);293                });294        });295296        // helper function to refresh the page297        var refreshPage = (function () {298            var refreshing;299            return function () {300                if (refreshing) return;301                // prevent multiple refreshes302                var refreshkey = 'refreshed' + location.href;303                var prevRefresh = localStorage.getItem(refreshkey);304                if (prevRefresh) {305                    localStorage.removeItem(refreshkey);306                    if (Date.now() - prevRefresh < 30000) {307                        return; // dont go into a refresh loop308                    }309                }310                refreshing = true;311                localStorage.setItem(refreshkey, Date.now());312                console.log('refereshing page');313                window.location.reload();314            };315        })();316317        function messageServiceWorker(data) {318            return new Promise(function (resolve, reject) {319                if (navigator.serviceWorker.controller) {320                    var worker = navigator.serviceWorker.controller;321                    var messageChannel = new MessageChannel();322                    messageChannel.port1.onmessage = replyHandler;323                    worker.postMessage(data, [messageChannel.port2]);324                    function replyHandler(event) {325                        resolve(event.data);326                    }327                } else {328                    resolve();329                }330            });331        }332    }333})(window);334</script>335<!-- Add manifest -->336<!-- End PWA settings -->337338339340<link rel="canonical" href="https://www.girs.ca/location/scott/rue-jean-baptiste">341342<meta id="view" name="viewport" content="initial-scale=1, minimum-scale=1, maximum-scale=5, viewport-fit=cover">343344<meta name="apple-mobile-web-app-capable" content="yes">345346<!--Add favorites icons-->347348<link rel="icon" type="image/x-icon" href="https://irp.cdn-website.com/6d6b044d/site_favicon_16_1673962208002.ico"/>349350<!-- End favorite icons -->351<link rel="preconnect" href="https://irp.cdn-website.com"/>352<link rel="preconnect" href="https://irp.cdn-website.com" crossorigin/>353<link rel="preconnect" href="https://static.cdn-website.com"/>354355356357<!-- render the required CSS and JS in the head section -->358<script id='d-js-dmapi'>359    window.SystemID = 'US_DIRECT_PRODUCTION';360361    if (!window.dmAPI) {362        window.dmAPI = {363            registerExternalRuntimeComponent: function () {364            },365            getCurrentDeviceType: function () {366                return window._currentDevice;367            },368            runOnReady: (ns, fn) => {369                const safeFn = dmAPI.toSafeFn(fn);370                ns = ns || 'global_' + Math.random().toString(36).slice(2, 11);371                const eventName = 'afterAjax.' + ns;372373                if (document.readyState === 'complete') {374                    $.DM.events.off(eventName).on(eventName, safeFn);375                    setTimeout(function () {376                        safeFn({377                            isAjax: false,378                        });379                    }, 0);380                } else {381                    window?.waitForDeferred?.('dmAjax', () => {382                        $.DM.events.off(eventName).on(eventName, safeFn);383                        safeFn({384                            isAjax: false,385                        });386                    });387                }388            },389            toSafeFn: (fn) => {390                if (fn?.safe) {391                    return fn;392                }393                const safeFn = function (...args) {394                    try {395                        return fn?.apply(null, args);396                    } catch (e) {397                        console.log('function failed ' + e.message);398                    }399                };400                safeFn.safe = true;401                return safeFn;402            }403        };404    }405406    if (!window.requestIdleCallback) {407        window.requestIdleCallback = function (fn) {408            setTimeout(fn, 0);409        }410    }411</script>412413<!-- loadCSS function header.jsp-->414415416417418419420<script id="d-js-load-css">421/**422 * There are a few <link> tags with CSS resource in them that are preloaded in the page423 * in each of those there is a "onload" handler which invokes the loadCSS callback424 * defined here.425 * We are monitoring 3 main CSS files - the runtime, the global and the page.426 * When each load we check to see if we can append them all in a batch. If threre427 * is no page css (which may happen on inner pages) then we do not wait for it428 */429(function () {430  let cssLinks = {};431  function loadCssLink(link) {432    link.onload = null;433    link.rel = "stylesheet";434    link.type = "text/css";435  }436  437    function checkCss() {438      const pageCssLink = document.querySelector("[id*='CssLink']");439      const widgetCssLink = document.querySelector("[id*='widgetCSS']");440441        if (cssLinks && cssLinks.runtime && cssLinks.global && (!pageCssLink || cssLinks.page) && (!widgetCssLink || cssLinks.widget)) {442            const storedRuntimeCssLink = cssLinks.runtime;443            const storedPageCssLink = cssLinks.page;444            const storedGlobalCssLink = cssLinks.global;445            const storedWidgetCssLink = cssLinks.widget;446447            storedGlobalCssLink.disabled = true;448            loadCssLink(storedGlobalCssLink);449450            if (storedPageCssLink) {451                storedPageCssLink.disabled = true;452                loadCssLink(storedPageCssLink);453            }454455            if(storedWidgetCssLink) {456                storedWidgetCssLink.disabled = true;457                loadCssLink(storedWidgetCssLink);458            }459460            storedRuntimeCssLink.disabled = true;461            loadCssLink(storedRuntimeCssLink);462463            requestAnimationFrame(() => {464                setTimeout(() => {465                    storedRuntimeCssLink.disabled = false;466                    storedGlobalCssLink.disabled = false;467                    if (storedPageCssLink) {468                      storedPageCssLink.disabled = false;469                    }470                    if (storedWidgetCssLink) {471                      storedWidgetCssLink.disabled = false;472                    }473                    // (SUP-4179) Clear the accumulated cssLinks only when we're474                    // sure that the document has finished loading and the document 475                    // has been parsed.476                    if(document.readyState === 'interactive') {477                      cssLinks = null;478                    }479                }, 0);480            });481        }482    }483  484485  function loadCSS(link) {486    try {487      var urlParams = new URLSearchParams(window.location.search);488      var noCSS = !!urlParams.get("nocss");489      var cssTimeout = urlParams.get("cssTimeout") || 0;490491      if (noCSS) {492        return;493      }494      if (link.href && link.href.includes("d-css-runtime")) {495        cssLinks.runtime = link;496        checkCss();497      } else if (link.id === "siteGlobalCss") {498        cssLinks.global = link;499        checkCss();500      } 501      502      else if (link.id && link.id.includes("CssLink")) {503        cssLinks.page = link;504        checkCss();505      } else if (link.id && link.id.includes("widgetCSS")) {506        cssLinks.widget = link;507        checkCss();508      }509      510      else {511        requestIdleCallback(function () {512          window.setTimeout(function () {513            loadCssLink(link);514          }, parseInt(cssTimeout, 10));515        });516      }517    } catch (e) {518      throw e519    }520  }521  window.loadCSS = window.loadCSS || loadCSS;522})();523</script>524525526527<script data-role="deferred-init" type="text/javascript">528    /* usage: window.getDeferred(<deferred name>).resolve() or window.getDeferred(<deferred name>).promise.then(...)*/529    function Def() {530        this.promise = new Promise((function (a, b) {531            this.resolve = a, this.reject = b532        }).bind(this))533    }534535    const defs = {};536    window.getDeferred = function (a) {537        return null == defs[a] && (defs[a] = new Def), defs[a]538    }539    window.waitForDeferred = function (b, a, c) {540        let d = window?.getDeferred?.(b);541        d542            ? d.promise.then(a)543            : c && ["complete", "interactive"].includes(document.readyState)544                ? setTimeout(a, 1)545                : c546                    ? document.addEventListener("DOMContentLoaded", a)547                    : console.error(`Deferred  does not exist`);548    };549</script>550<style id="forceCssIncludes">551    /* This file is auto-generated from a `scss` file with the same name */552553.videobgwrapper{overflow:hidden;position:absolute;z-index:0;width:100%;height:100%;top:0;left:0;pointer-events:none;border-radius:inherit}.videobgframe{position:absolute;width:101%;height:100%;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);object-fit:fill}#dm video.videobgframe{margin:0}@media (max-width:767px){.dmRoot .dmPhotoGallery.newPhotoGallery:not(.photo-gallery-done){min-height:80vh}}@media (min-width:1025px){.dmRoot .dmPhotoGallery.newPhotoGallery:not(.photo-gallery-done){min-height:45vh}}@media (min-width:768px) and (max-width:1024px){.responsiveTablet .dmPhotoGallery.newPhotoGallery:not(.photo-gallery-done){min-height:45vh}}#dm [data-show-on-page-only]{display:none!important}#dmRoot div.stickyHeaderFix div.site_content{margin-top:0!important}#dmRoot div.stickyHeaderFix div.hamburger-header-container{position:relative}@media (min-width:768px) and (max-width:1024px){.responsiveTablet #dm .dmInner .hide-for-medium,[data-hidden-on-tablet]{display:none!important}}554    555556</style>557<style id="cssVariables" type="text/css">558    :root {559  --color_1: rgba(0, 0, 0, 1);560  --color_2: rgba(29, 113, 184, 1);561  --color_3: rgba(255, 255, 255, 1);562  --color_4: rgba(0, 0, 0, 0.1);563  --color_5: rgba(0, 51, 153, 1);564  --color_6: rgba(255, 0, 0, 1);565  --color_7: rgba(255, 249, 0, 1);566}567</style>568569570571572573574575576577578579580581582583584585586587588589590591592593<!-- Google Fonts Include -->594595596597598599600601602603604605606607<!-- loadCSS function fonts.jsp-->608609610611<link type="text/css" rel="stylesheet" href="https://irp.cdn-website.com/fonts/css2?family=Roboto:wght@100;300;400;500;700;900&family=Montserrat:wght@100..900&family=Lato:wght@100;300;400;700;900&family=Pacifico:wght@400&family=Courier+Prime:wght@400;700&family=Comfortaa:wght@300..700&amp;subset=latin-ext&amp;display=swap"  />612613614615616617<!-- RT CSS Include d-css-runtime-desktop-one-package-structured-global-->618<link rel="stylesheet" type="text/css" href="https://static.cdn-website.com/mnlt/production/6688/_dm/s/rt/dist/css/d-css-runtime-desktop-one-package-structured-global.min.css" />619620<!-- End of RT CSS Include -->621622<link type="text/css" rel="stylesheet" href="https://irp.cdn-website.com/WIDGET_CSS/b3f900cc909110f5df2a6191c01d29f5.css" id="widgetCSS" />623624<!-- Support `img` size attributes -->625<style>img[width][height] {626  height: auto;627}</style>628629<!-- Support showing sticky element on page only -->630<style>631  body[data-page-alias="location/scott/rue-jean-baptiste"] #dm [data-show-on-page-only="location/scott/rue-jean-baptiste"] {632    display: block !important;633  }634</style>635636<!-- This is populated in Ajax navigation -->637<style id="pageAdditionalWidgetsCss" type="text/css">638</style>639640641642643<!-- Site CSS -->644<link type="text/css" rel="stylesheet" href="https://irp.cdn-website.com/6d6b044d/files/6d6b044d_1.min.css?v=260" id="siteGlobalCss" />645646647648<style id="customWidgetStyle" type="text/css">649    650</style>651<style id="innerPagesStyle" type="text/css">652    653</style>654655656<style657        id="additionalGlobalCss" type="text/css"658>659</style>660661<style id="pagestyle" type="text/css">662    *#dm *.dmBody a.span.textonly663{664	color:rgb(255,255,255) !important;665}666*#dm *.dmBody div.dmform-error667{668	font-style:normal !important;669}670*#dm *.dmBody div.dmforminput textarea671{672	font-style:italic !important;673}674*#dm *.dmBody div.dmforminput *.fileUploadLink675{676	font-style:italic !important;677}678*#dm *.dmBody div.checkboxwrapper span679{680	font-style:italic !important;681}682*#dm *.dmBody div.radiowrapper span683{684	font-style:italic !important;685}686*#dm *.dmBody nav.u_1144820115687{688	color:black !important;689}690*#dm *.dmBody *.u_1004639188:before691{692	opacity:0.5 !important;693	background-color:rgb(255,255,255) !important;694}695*#dm *.dmBody *.u_1004639188.before696{697	opacity:0.5 !important;698	background-color:rgb(255,255,255) !important;699}700*#dm *.dmBody *.u_1004639188>.bgExtraLayerOverlay701{702	opacity:0.5 !important;703	background-color:rgb(255,255,255) !important;704}705*#dm *.dmBody div.u_1004639188706{707	background-color:rgba(0,0,0,0) !important;708	background-repeat:no-repeat !important;709	background-image:url(https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/pexels-photo-101808-2880w.jpeg) !important;710	background-size:cover !important;711}712*#dm *.dmBody div.u_1004639188:before713{714	background-color:var(--color_1) !important;715}716*#dm *.dmBody div.u_1004639188.before717{718	background-color:var(--color_1) !important;719}720*#dm *.dmBody div.u_1004639188>.bgExtraLayerOverlay721{722	background-color:var(--color_1) !important;723}724*#dm *.dmBody a.u_1756842165:hover725{726	background-color:var(--color_3) !important;727	background-image:none !important;728}729*#dm *.dmBody a.u_1756842165.hover730{731	background-color:var(--color_3) !important;732	background-image:none !important;733}734*#dm *.dmBody a.u_1756842165:hover span.text735{736	color:var(--color_1) !important;737}738*#dm *.dmBody a.u_1756842165.hover span.text739{740	color:var(--color_1) !important;741}742*#dm *.dmBody a.u_1756842165 span.text743{744	font-family:'Roboto' !important;745	font-weight:400 !important;746	color:var(--color_3) !important;747}748*#dm *.dmBody div.u_1937526287749{750	border-style:solid !important;751	border-width:2px !important;752	border-color:var(--color_3) !important;753}754*#dm *.dmBody div.u_1452815793755{756	background-color:rgba(0,0,0,0.05) !important;757}758*#dm *.dmBody div.u_1840143137759{760	background-color:rgba(0,0,0,0.05) !important;761}762*#dm *.dmBody div.u_1813520727763{764	background-color:rgba(0,0,0,0.05) !important;765}766*#dm *.dmBody div.u_1813669443 .svg767{768	color:var(--color_3) !important;769	fill:var(--color_3) !important;770}771*#dm *.dmBody div.u_1419208593 .svg772{773	color:rgba(255,255,255,1) !important;774	fill:rgba(255,255,255,1) !important;775}776*#dm *.dmBody div.u_1281514457 .color-overlay777{778	background-color:rgba(0,0,0,0) !important;779}780*#dm *.dmBody *.u_1281514457 .flex-direction-nav a:before781{782	font-size:45px !important;783}784*#dm *.dmBody *.u_1281514457 .flex-direction-nav a785{786	width:45px !important;787	height:45px !important;788	overflow:visible !important;789	color:var(--color_3) !important;790}791*#dm *.dmBody *.u_1713239492:before792{793	opacity:0.5 !important;794	background-color:rgb(255,255,255) !important;795}796*#dm *.dmBody *.u_1713239492.before797{798	opacity:0.5 !important;799	background-color:rgb(255,255,255) !important;800}801*#dm *.dmBody *.u_1713239492>.bgExtraLayerOverlay802{803	opacity:0.5 !important;804	background-color:rgb(255,255,255) !important;805}806*#dm *.dmBody div.u_1486697154807{808	border-style:solid !important;809	border-width:2px !important;810	border-color:var(--color_3) !important;811}812*#dm *.dmBody a.u_1331251441 span.text813{814	text-decoration:none !important;815	font-weight:400 !important;816}817*#dm *.dmBody a.u_1331251441:hover span.text818{819	text-decoration:underline !important;820	color:var(--color_1) !important;821}822*#dm *.dmBody a.u_1331251441.hover span.text823{824	text-decoration:underline !important;825	color:var(--color_1) !important;826}827*#dm *.dmBody a.u_1331251441:hover828{829	background-color:var(--color_3) !important;830	background-image:none !important;831}832*#dm *.dmBody a.u_1331251441.hover833{834	background-color:var(--color_3) !important;835	background-image:none !important;836}837*#dm *.dmBody div.u_1884387629838{839	background-color:rgba(0,0,0,0.05) !important;840}841*#dm *.dmBody a.u_1331251441842{843	border-style:solid !important;844	border-width:2px !important;845	border-color:var(--color_3) !important;846	background-color:rgba(0,0,0,0) !important;847	border-radius:20px 20px 20px 20px !important;848}849*#dm *.dmBody div.u_1748061203 .svg850{851	color:var(--color_1) !important;852	fill:var(--color_1) !important;853}854*#dm *.dmBody a.u_1756842165855{856	border-color:var(--color_3) !important;857	border-style:solid !important;858	border-width:2px !important;859	border-radius:20px 20px 20px 20px !important;860}861*#dm *.dmBody *.u_1079271476862{863	background-position:50% 50% !important;864}865*#dm *.dmBody div.u_1713239492:before866{867	background-color:var(--color_1) !important;868	opacity:0.4 !important;869}870*#dm *.dmBody div.u_1713239492.before871{872	background-color:var(--color_1) !important;873	opacity:0.4 !important;874}875*#dm *.dmBody div.u_1713239492>.bgExtraLayerOverlay876{877	background-color:var(--color_1) !important;878	opacity:0.4 !important;879}880*#dm *.dmBody div.u_1465006226 .svg881{882	color:var(--color_3) !important;883	fill:var(--color_3) !important;884}885*#dm *.dmBody div.u_1746905231886{887	background-image:linear-gradient(90deg,rgba(66,123,202,1) 0%,rgba(73,174,223,1) 100%) !important;888	background-origin:border-box !important;889}890*#dm *.dmBody div.u_1732757548891{892	background-image:linear-gradient(90deg,rgba(66,123,202,1) 0%,rgba(73,174,223,1) 100%) !important;893	background-origin:border-box !important;894}895*#dm *.dmBody div.u_1373323900896{897	background-image:linear-gradient(90deg,rgba(66,123,202,1) 0%,rgba(73,174,223,1) 100%) !important;898	background-origin:border-box !important;899}900*#dm *.dmBody *.u_1188563749901{902	width:100% !important;903}904*#dm *.dmBody nav.u_1737436200905{906	color:black !important;907}908*#dm *.dmBody nav.u_1889817761909{910	color:black !important;911}912913</style>914915<style id="pagestyleDevice" type="text/css">916    *#dm *.d-page-1716942098 DIV.dmInner917{918	background-repeat:no-repeat !important;919	background-size:cover !important;920	background-attachment:fixed !important;921	background-position:50% 50% !important;922}923*#dm *.d-page-1716942098 DIV#dmSlideRightNavRight924{925	background-repeat:no-repeat !important;926	background-image:none !important;927	background-size:cover !important;928	background-attachment:fixed !important;929	background-position:50% 50% !important;930}931*#dm *.dmBody div.u_1867569646932{933	height:40px !important;934}935*#dm *.dmBody a.u_1756842165 span.text936{937	font-size:20px !important;938}939*#dm *.dmBody div.u_1937526287940{941	margin-left:20px !important;942	padding-top:0px !important;943	padding-left:20px !important;944	padding-bottom:0px !important;945	margin-top:0px !important;946	margin-bottom:0px !important;947	margin-right:20px !important;948	padding-right:20px !important;949}950*#dm *.dmBody div.u_1121935101951{952	height:600px !important;953}954@media (min-width:768px) and (max-width:1024px) {}955@media (min-width:1025px) {}956*#dm *.dmBody div.u_1221610193957{958	height:20px !important;959}960*#dm *.dmBody div.u_1127078365961{962	height:20px !important;963}964*#dm *.dmBody div.u_1288707829965{966	height:20px !important;967}968*#dm *.dmBody div.u_1337411818969{970	height:20px !important;971}972*#dm *.dmBody div.u_1486647722973{974	float:none !important;975	top:0px !important;976	left:0 !important;977	width:calc(100% - 0px) !important;978	position:relative !important;979	height:auto !important;980	padding-top:2px !important;981	padding-left:0px !important;982	padding-bottom:2px !important;983	min-height:auto !important;984	margin-right:auto !important;985	margin-left:auto !important;986	max-width:100% !important;987	margin-top:8px !important;988	margin-bottom:8px !important;989	padding-right:0px !important;990	min-width:25px !important;991}992*#dm *.dmBody a.u_1756842165993{994	float:none !important;995	top:0px !important;996	left:0px !important;997	width:200px !important;998	position:relative !important;999	height:auto !important;1000	padding-top:10px !important;1001	padding-left:7px !important;1002	padding-bottom:10px !important;1003	min-height:40px !important;1004	max-width:100% !important;1005	padding-right:7px !important;1006	min-width:0 !important;1007	text-align:center !important;1008	margin-right:866px !important;1009	margin-left:0px !important;1010	margin-top:20px !important;1011	margin-bottom:10px !important;1012}1013*#dm *.dmBody a.u_13312514411014{1015	float:none !important;1016	top:0px !important;1017	left:0 !important;1018	width:200px !important;1019	position:relative !important;1020	height:auto !important;1021	padding-top:10px !important;1022	padding-left:7px !important;1023	padding-bottom:10px !important;1024	min-height:40px !important;1025	margin-right:auto !important;1026	margin-left:auto !important;1027	max-width:100% !important;1028	margin-top:10px !important;1029	margin-bottom:10px !important;1030	padding-right:7px !important;1031	min-width:0 !important;1032	text-align:center !important;1033}1034*#dm *.dmBody a.u_1331251441 span.text1035{1036	font-size:18px !important;1037}1038*#dm *.dmBody div.u_17480612031039{1040	width:90px !important;1041	height:90px !important;1042}1043*#dm *.dmBody div.u_12815144571044{1045	height:700px !important;1046	width:1200px !important;1047}1048*#dm *.dmBody div.u_10046391881049{1050	float:none !important;1051	top:0 !important;1052	left:0 !important;1053	width:auto !important;1054	position:relative !important;1055	height:auto !important;1056	padding-top:90px !important;1057	padding-left:40px !important;1058	padding-bottom:90px !important;1059	min-height:auto !important;1060	max-width:100% !important;1061	padding-right:40px !important;1062	min-width:0 !important;1063	text-align:start !important;1064	background-position:50% 50% !important;1065	background-attachment:initial !important;1066	margin-left:0px !important;1067	margin-top:0px !important;1068	margin-bottom:0px !important;1069	margin-right:0px !important;1070}10711072</style>10731074<!-- Flex Sections CSS -->10751076107710781079108010811082<style id="globalFontSizeStyle" type="text/css">1083    .font-size-22, .size-22, .size-22 > font { font-size: 22px !important; }.font-size-16, .size-16, .size-16 > font { font-size: 16px !important; }.font-size-18, .size-18, .size-18 > font { font-size: 18px !important; }.font-size-28, .size-28, .size-28 > font { font-size: 28px !important; }1084</style>1085<style id="pageFontSizeStyle" type="text/css">1086</style>10871088108910901091<style id="hideAnimFix">1092  .dmDesktopBody:not(.editGrid) [data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) [data-anim-extended] {1093    visibility: hidden;1094  }10951096  .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-extended] {1097    visibility: hidden !important;1098  }10991100  #dmRoot:not(.editGrid) .flex-element [data-anim-extended] {1101    visibility: hidden;1102  }11031104</style>11051106110711081109<style id="fontFallbacks">1110    @font-face {1111  font-family: "Roboto Fallback";1112  src: local('Arial');1113  ascent-override: 92.6709%;1114  descent-override: 24.3871%;1115  size-adjust: 100.1106%;1116  line-gap-override: 0%;1117 }@font-face {1118  font-family: "Montserrat Fallback";1119  src: local('Arial');1120  ascent-override: 84.9466%;1121  descent-override: 22.0264%;1122  size-adjust: 113.954%;1123  line-gap-override: 0%;1124 }@font-face {1125  font-family: "Lato Fallback";1126  src: local('Arial');1127  ascent-override: 101.3181%;1128  descent-override: 21.865%;1129  size-adjust: 97.4159%;1130  line-gap-override: 0%;1131 }@font-face {1132  font-family: "Pacifico Fallback";1133  src: local('Arial');1134  ascent-override: 140.9687%;1135  descent-override: 49.0091%;1136  size-adjust: 92.4319%;1137  line-gap-override: 0%;1138 }@font-face {1139  font-family: "Courier Prime Fallback";1140  src: local('Arial');1141  ascent-override: 57.5122%;1142  descent-override: 25.1616%;1143  size-adjust: 135.8407%;1144  line-gap-override: 0%;1145 }@font-face {1146  font-family: "Comfortaa Fallback";1147  src: local('Arial');1148  ascent-override: 74.2135%;1149  descent-override: 19.7117%;1150  size-adjust: 118.7115%;1151  line-gap-override: 0%;1152 }1153</style>115411551156<!-- End render the required css and JS in the head section -->1157115811591160116111621163<meta property="og:type" content="website">1164<meta property="og:url" content="https://www.girs.ca/location/scott/rue-jean-baptiste">11651166  <title>1167    Appartement 4 ½ à louer à Scott | Rue Jean-Baptiste1168  </title>1169  <meta name="description" content="Condo locatif 4 ½ à Scott sur la rue Jean-Baptiste. Balcon privé, climatisation, internet illimité et milieu de vie paisible."/>11701171  <meta name="keywords" content="gestion immobilière, gestionnaire immobilier, gestion location, gestion locative, gestion immo, gestion immobilière québec, gestionnaire immobilier québec, gestion immobilière Chaudière-Appalaches, gestionnaire immobilier Chaudière-Appalaches, gestion immobilière Rive-Sud, gestionnaire immobilier Rive-Sud, logement à louer Rive-Sud, compagnie de gestion immobilière, gestion copropriété, gestion immeuble, gestion loyer, rendement locatif,  service gestion locative, gestionnaire locatif, bloc solution"/>11721173  <meta name="twitter:card" content="summary"/>1174  <meta name="twitter:title" content="Appartement 4 ½ à louer à Scott | Rue Jean-Baptiste"/>1175  <meta name="twitter:description" content="Condo locatif 4 ½ à Scott sur la rue Jean-Baptiste. Balcon privé, climatisation, internet illimité et milieu de vie paisible."/>1176  <meta property="og:description" content="Condo locatif 4 ½ à Scott sur la rue Jean-Baptiste. Balcon privé, climatisation, internet illimité et milieu de vie paisible."/>1177  <meta property="og:title" content="Appartement 4 ½ à louer à Scott | Rue Jean-Baptiste"/>11781179118011811182<!-- SYS- VVNfRElSRUNUX1BST0RVQ1RJT04= -->1183</head>1184118511861187118811891190119111921193119411951196119711981199120012011202120312041205<body id="dmRoot" data-page-alias="location/scott/rue-jean-baptiste"  class="dmRoot dmDesktopBody fix-mobile-scrolling addCanvasBorder dmResellerSite dmLargeBody responsiveTablet "1206      style="padding:0;margin:0;"1207      1208    >12091210121112121213121412151216121712181219122012211222122312241225<!-- ========= Site Content ========= -->1226<div id="dm" class='dmwr'>1227    1228    <div class="dm_wrapper standard-var5 widgetStyle-3 standard">1229         <div dmwrapped="true" id="1901957768" class="dm-home-page" themewaschanged="true"> <div dmtemplateid="Hamburger" data-responsive-name="ResponsiveDesktopTopTabletHamburger" class="runtime-module-container dm-bfs dm-layout-sec hasAnimations rows-1200 dmPageBody d-page-1716942098 inputs-css-clean dmFreeHeader" id="dm-outer-wrapper" data-page-class="1716942098" data-soch="true" data-background-parallax-selector=".dmHomeSection1, .dmSectionParallex"> <div id="dmStyle_outerContainer" class="dmOuter"> <div id="dmStyle_innerContainer" class="dmInner"> <div class="dmLayoutWrapper standard-var dmStandardDesktop"> <div id="site_content"> <div class="p_hfcontainer showOnMedium"> <div id="hamburger-drawer" class="hamburger-drawer layout-drawer" layout="SHARD2e9d510f4eb904e939c2be8efaf777e6e===header" data-origin="side"> <div class="u_1349597621 dmRespRow" style="text-align: center;" id="1349597621"> <div class="dmRespColsWrapper" id="1967821439"> <div class="u_1900606723 dmRespCol small-12 medium-12 large-12 empty-column" id="1900606723"></div> 1230</div> 1231</div> 1232 <div class="u_1827840868 dmRespRow middleDrawerRow" style="text-align: center;" id="1827840868"> <div class="dmRespColsWrapper" id="1229869460"> <div class="dmRespCol small-12 u_1670265283 medium-12 large-12" id="1670265283"> <div class="u_1454114998 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1454114998"> <a href="/" id="1950306454"><img src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/logo_RGB-1920w.png" alt="Un fond blanc avec quelques lignes dessus" id="1078371621" class="" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/logo_RGB.png" width="668" height="250" onerror="handleImageLoadError(this)"/></a> 1233</div> 1234 <nav class="u_1277815350 effect-bottom main-navigation unifiednav dmLinksMenu" role="navigation" layout-main="vertical_nav_layout_2" layout-sub="" data-show-vertical-sub-items="HIDE" id="1277815350" dmle_extension="onelinksmenu" data-element-type="onelinksmenu" data-logo-src="" alt="" data-nav-structure="VERTICAL" wr="true" icon="true" surround="true" adwords="" navigation-id="unifiedNav"> <ul role="menubar" class="unifiednav__container unav-top  " data-auto="navigation-pages"> <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="#" class="unifiednav__item unav-item unav-top-item  dmUDNavigationItem_010101807118  unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="À louer" data-auto="page-text-style">&Agrave; louer<span class="icon icon-angle-down"></span> 1235</span> 1236</a> 1237 <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="0" data-auto="sub-pages"> <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/scott" class="unifiednav__item unav-item   dmUDNavigationItem_010101940735  unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Scott, Chaudières-Appalaches" data-auto="page-text-style">Scott, Chaudi&egrave;res-Appalaches<span class="icon icon-angle-right"></span> 1238</span> 1239</a> 1240 <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/scott/rue-amanda-gustave" class="unifiednav__item unav-item   dmUDNavigationItem_010101104557  " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Amanda-Gustave" data-auto="page-text-style">Rue Amanda-Gustave<span class="icon icon-angle-right"></span> 1241</span> 1242</a> 1243</li> 1244 <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/scott/rue-jean-baptiste" class="unifiednav__item unav-item   dmNavItemSelected  dmUDNavigationItem_010101164518  " target="" data-target-page-alias="" aria-current="page" data-auto="selected-page"> <span class="nav-item-text " data-link-text="Rue Jean-Baptiste" data-auto="page-text-style">Rue Jean-Baptiste<span class="icon icon-angle-right"></span> 1245</span> 1246</a> 1247</li> 1248 <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/scott/rue-marie-flore" class="unifiednav__item unav-item   dmUDNavigationItem_010101665958  " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Marie Flore" data-auto="page-text-style">Rue Marie Flore<span class="icon icon-angle-right"></span> 1249</span> 1250</a> 1251</li> 1252</ul> 1253</li> 1254 <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/carleton-sur-mer" class="unifiednav__item unav-item   dmUDNavigationItem_010101398645  unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Carleton-sur-Mer, Gaspésie" data-auto="page-text-style">Carleton-sur-Mer, Gasp&eacute;sie<span class="icon icon-angle-right"></span> 1255</span> 1256</a> 1257 <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/carleton-sur-mer/rue-comeau" class="unifiednav__item unav-item   dmUDNavigationItem_01010162050  " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Comeau" data-auto="page-text-style">Rue Comeau<span class="icon icon-angle-right"></span> 1258</span> 1259</a> 1260</li> 1261</ul> 1262</li> 1263 <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/new-richmond" class="unifiednav__item unav-item   dmUDNavigationItem_010101965827  unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="New Richmond, Gaspésie" data-auto="page-text-style">New Richmond, Gasp&eacute;sie<span class="icon icon-angle-right"></span> 1264</span> 1265</a> 1266 <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/new-richmond/avenue-erables" class="unifiednav__item unav-item   dmUDNavigationItem_010101253082  " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Avenue des Érables, Jumelé" data-auto="page-text-style">Avenue des &Eacute;rables, Jumel&eacute;<span class="icon icon-angle-right"></span> 1267</span> 1268</a> 1269</li> 1270 <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/new-richmond/avenue-erables-condo" class="unifiednav__item unav-item   dmUDNavigationItem_010101963466  " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Avenue des Érables, Condo" data-auto="page-text-style">Avenue des &Eacute;rables, Condo<span class="icon icon-angle-right"></span> 1271</span> 1272</a> 1273</li> 1274</ul> 1275</li> 1276 <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/guadeloupe" class="unifiednav__item unav-item   dmUDNavigationItem_010101227040  unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="La Guadeloupe, Chaudières-Appalaches" data-auto="page-text-style">La Guadeloupe, Chaudi&egrave;res-Appalaches<span class="icon icon-angle-right"></span> 1277</span> 1278</a> 1279 <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/guadeloupe/26-avenue" class="unifiednav__item unav-item   dmUDNavigationItem_010101612522  " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="26e avenue" data-auto="page-text-style">26e avenue<span class="icon icon-angle-right"></span> 1280</span> 1281</a> 1282</li> 1283</ul> 1284</li> 1285 <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/saint-isidore" class="unifiednav__item unav-item   dmUDNavigationItem_010101477779  unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Saint-Isidore, Chaudières-Appalaches" data-auto="page-text-style">Saint-Isidore, Chaudi&egrave;res-Appalaches<span class="icon icon-angle-right"></span> 1286</span> 1287</a> 1288 <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/saint-isidore/900-rue-semences" class="unifiednav__item unav-item   dmUDNavigationItem_010101216837  " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="900 Rue des Semences" data-auto="page-text-style">900 Rue des Semences<span class="icon icon-angle-right"></span> 1289</span> 1290</a> 1291</li> 1292</ul> 1293</li> 1294</ul> 1295</li> 1296 <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="#" class="unifiednav__item unav-item unav-top-item  dmUDNavigationItem_010101502992  unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="À vendre" data-auto="page-text-style">&Agrave; vendre<span class="icon icon-angle-down"></span> 1297</span> 1298</a> 1299 <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="0" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/vente/quartier-marie-flore" class="unifiednav__item unav-item   dmUDNavigationItem_010101496377  " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Marie Flore, Scott" data-auto="page-text-style">Rue Marie Flore, Scott<span class="icon icon-angle-right"></span> 1300</span> 1301</a> 1302</li> 1303</ul> 1304</li> 1305 <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="#" class="unifiednav__item unav-item unav-top-item  dmUDNavigationItem_010101989750  unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Nos services" data-auto="page-text-style">Nos services<span class="icon icon-angle-down"></span> 1306</span> 1307</a> 1308 <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="0" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/representation-au-tal" class="unifiednav__item unav-item   dmUDNavigationItem_010101184129  " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Représentation au TAL" data-auto="page-text-style">Repr&eacute;sentation au TAL<span class="icon icon-angle-right"></span> 1309</span> 1310</a> 1311</li> 1312</ul> 1313</li> 1314 <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/soumissions" class="unifiednav__item unav-item unav-top-item  dmUDNavigationItem_01010193260  " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Propriétaires" data-auto="page-text-style">Propri&eacute;taires<span class="icon icon-angle-down"></span> 1315</span> 1316</a> 1317</li> 1318 <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/contact" class="unifiednav__item unav-item unav-top-item  dmUDNavigationItem_010101387719  " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Nous joindre" data-auto="page-text-style">Nous joindre<span class="icon icon-angle-down"></span> 1319</span> 1320</a> 1321</li> 1322</ul> 1323</nav> 1324</div> 1325</div> 1326</div> 1327 <div class="dmRespRow u_1374155140" style="text-align: center;" id="1374155140"> <div class="dmRespColsWrapper" id="1888831944"> <div class="u_1527325594 dmRespCol small-12 medium-12 large-12" id="1527325594"> <div class="u_1061664626 dmNewParagraph" id="1061664626" style="transition: none;"> <div style="text-align:left;"> <font style="color:rgb(255, 255, 255);"> <span style="text-decoration-line: underline;"></span> 1328<b> <span style="text-decoration-line: underline;"></span> 1329<span class="font-size-22 lh-1"> <span style="text-decoration-line: underline;"></span> 1330 <div style="text-align: left;"> <span style=""> <span style="text-decoration-line: underline;"></span> 1331<span style=""> <span style="text-decoration-line: underline;"></span> 1332<font style="color: rgb(255, 255, 255);"> <span style="text-decoration-line: underline;"></span> 1333<span style="" class="font-size-22 lh-1"> <span style="text-decoration-line: underline;"></span> 1334<b style=""> <span style="text-decoration-line: underline;"> <span style="font-weight: 700; font-size: 20px;">Nous contacter</span></span> 1335</b> 1336</span> 1337</font> 1338</span> 1339</span> 1340</div> 1341</span> 1342</b> 1343</font> 1344</div> 1345</div> <div class="u_1228562990 align-center text-align-center dmSocialHub gapSpacing" id="1228562990" dmle_extension="social_hub" data-element-type="social_hub" wr="true" networks="" icon="true" surround="true" adwords=""> <div class="socialHubWrapper"> <div class="socialHubInnerDiv "> <a href="mailto:immeubles@gestionirs.com" dm_dont_rewrite_url="true" aria-label="email" onclick="dm_gaq_push_event &amp;&amp; dm_gaq_push_event(&apos;socialLink&apos;, &apos;click&apos;, &apos;Email&apos;)"> <span class="dmSocialEmail dm-social-icons-email oneIcon socialHubIcon style8" aria-hidden="true" data-hover-effect=""></span> 1346</a> 1347 <a href="https://www.facebook.com/gestionimmobiliererivesud/" target="_blank" dm_dont_rewrite_url="true" aria-label="facebook" onclick="dm_gaq_push_event &amp;&amp; dm_gaq_push_event(&apos;socialLink&apos;, &apos;click&apos;, &apos;Facebook&apos;)"> <span class="dmSocialFacebook dm-social-icons-facebook oneIcon socialHubIcon style8" aria-hidden="true" data-hover-effect=""></span> 1348</a> 1349</div> 1350</div> 1351</div> 1352 <a class="u_1077136287 default align-center dmCall voipReplacement dmWidget dmNoMark dmWwr" href="tel:418-253-0064" contenteditable="false" onclick=";return dm_gaq_push_event('ClickToCall', 'Call',null,'6d6b044d', this);" id="1077136287" dmle_extension="clicktocall" data-element-type="clicktocall" data-buttonstyle="ROUND_SIDES" wr="true" data-display-type="block" icon="true" surround="true" description="Appelez-nous" adwords="" icon-name="icon-phone" phone="418-253-0064" text="" image=""> <span class="iconBg" aria-hidden="true"> <span class="icon hasFontIcon icon-phone"></span> 1353</span> 1354 <span class="text">Appelez-nous</span> 1355</a> 1356</div> 1357</div> 1358</div> 1359</div> 1360 <div class="layout-drawer-overlay" id="layout-drawer-overlay"></div> 1361</div> 1362 <div class="site_content"> <div id="hamburger-header-container" class="showOnMedium hamburger-header-container p_hfcontainer"> <div id="hamburger-header" class="hamburger-header p_hfcontainer" layout="44dc38f951e9489490b055748e10ba9f===header"> <div class="u_1482985018 dmRespRow" style="text-align: center;" id="1482985018"> <div class="dmRespColsWrapper" id="1732104089"> <div class="dmRespCol small-12 medium-12 large-12 empty-column" id="1618954716"></div> 1363</div> 1364</div> 1365</div> 1366</div> 1367 <button class="showOnMedium layout-drawer-hamburger hamburger-on-header" id="layout-drawer-hamburger" aria-label="menu" aria-controls="hamburger-drawer" aria-expanded="false"> <span class="hamburger__slice"></span> 1368 <span class="hamburger__slice"></span> 1369 <span class="hamburger__slice"></span> 1370</button> 1371 <div class="dmHeaderContainer fHeader d-header-wrapper showOnLarge"> <div id="hcontainer" class="u_hcontainer dmHeader p_hfcontainer" freeheader="true" headerlayout="695" layout="SHARD2f014fc9487554eb885e18628ee6309e9===header" mini-header-show-only-navigation-row="true" data-gradient-background="true"> <div dm:templateorder="85" class="dmHeaderResp dmHeaderStack noSwitch" id="1709005236"> <div class="dmRespRow u_1107041217" style="text-align: center;" id="1107041217"> <div class="dmRespColsWrapper" id="1457007737"> <div class="u_1544677535 dmRespCol small-12 large-8 medium-8" id="1544677535"> <span id="1046402752"></span> 1372 <div class="u_1263112584 align-center text-align-center dmSocialHub gapSpacing" id="1263112584" dmle_extension="social_hub" data-element-type="social_hub" wr="true" networks="" icon="true" surround="true" adwords=""> <div class="socialHubWrapper"> <div class="socialHubInnerDiv "> <a href="https://facebook.com/gestionimmobiliererivesud" target="_blank" dm_dont_rewrite_url="true" aria-label="facebook" onclick="dm_gaq_push_event &amp;&amp; dm_gaq_push_event(&apos;socialLink&apos;, &apos;click&apos;, &apos;Facebook&apos;)"> <span class="dmSocialFacebook dm-social-icons-facebook oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> 1373</a> 1374 <a href="http://linkedin.com/" target="_blank" dm_dont_rewrite_url="true" aria-label="linkedin" onclick="dm_gaq_push_event &amp;&amp; dm_gaq_push_event(&apos;socialLink&apos;, &apos;click&apos;, &apos;Linkedin&apos;)"> <span class="dmSocialLinkedin icon-linkedin oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> 1375</a> 1376 <a href="mailto:immeubles@gestionirs.com" dm_dont_rewrite_url="true" aria-label="email" onclick="dm_gaq_push_event &amp;&amp; dm_gaq_push_event(&apos;socialLink&apos;, &apos;click&apos;, &apos;Email&apos;)"> <span class="dmSocialEmail dm-social-icons-email oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> 1377</a> 1378</div> 1379</div> 1380</div> 1381</div> 1382 <div class="u_1980771558 dmRespCol small-12 large-2 medium-2" id="1980771558"> <span id="1064055669"></span> 1383 <div class="u_1078755193 graphicWidget" data-widget-type="graphic" id="1078755193" data-anim-desktop="none" data-element-type="graphic"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1444596002" class="svg u_1444596002" data-icon-custom="true"> <path d="m48.34 25.617c-0.85547 0-1.6094 0.62891-1.7383 1.5-0.14453 0.96094 0.51953 1.8555 1.4805 2l1.6445 0.24609 1.5742 0.33203v0.003907l1.5547 0.42969 1.5234 0.52344 1.4883 0.61328 1.4492 0.70703 1.4023 0.78906 1.3477 0.875 1.293 0.95312 1.2422 1.0352 1.168 1.1055 1.0938 1.168 1.0195 1.2305 0.94141 1.2891 0.86328 1.3398 0.78125 1.3945 0.69922 1.4414 0.60547 1.4766 0.51562 1.5117 0.42578 1.5391 0.33203 1.5625 0.24219 1.6328c0.13281 0.87109 0.88281 1.4961 1.7383 1.4961 0.085937 0 0.17578-0.003906 0.26172-0.019531 0.96094-0.14062 1.625-1.0391 1.4805-2l-0.25-1.6836-0.019531-0.10547-0.35547-1.6641-0.023437-0.10547-0.45312-1.6406-0.03125-0.10156-0.55078-1.6133-0.039063-0.097656-0.64844-1.5781-0.042969-0.097656-0.74219-1.5312-0.046875-0.097657-0.83594-1.4844-0.054688-0.089844-0.91797-1.4336-0.0625-0.089844-1.0078-1.3711-0.0625-0.085937-1.0898-1.3125-0.070312-0.078125-1.1641-1.2422-0.074219-0.078124-1.25-1.1797-0.078124-0.070312-1.3203-1.1016-0.082031-0.066406-1.3828-1.0195-0.085937-0.0625-1.4453-0.93359-0.089843-0.054688-1.4961-0.84375-0.09375-0.050781-1.5469-0.75-0.097657-0.042969-1.5859-0.65625-0.10156-0.039062-1.6211-0.55859-0.10547-0.03125-1.6523-0.45703-0.10547-0.027344-1.6797-0.35547-0.10547-0.019531-1.6992-0.25391c-0.089843-0.011719-0.17578-0.019531-0.26172-0.019531zm-2.2148-17.512c-0.85938 0-1.6133 0.62891-1.7422 1.5039-0.14453 0.96484 0.51953 1.8633 1.4844 2.0078l3 0.44922 2.9219 0.62109 2.8711 0.79297 2.8203 0.96875 2.7578 1.1406 2.6797 1.3047 2.5977 1.4648 2.5 1.6211 2.4023 1.7695 2.2891 1.9141 2.168 2.0469 2.0195 2.1602 1.8906 2.2773 1.7461 2.3867 1.6016 2.4883 1.4453 2.5781 1.2891 2.6641 1.125 2.7383 0.95703 2.7969 0.78516 2.8516 0.61328 2.8945 0.44531 2.9805c0.13281 0.875 0.88672 1.5039 1.7461 1.5039 0.085938 0 0.17578-0.007812 0.26172-0.019531 0.96484-0.14453 1.6328-1.043 1.4883-2.0078l-0.45312-3.0312-0.019532-0.10547-0.63672-3-0.023438-0.10156-0.81641-2.957-0.03125-0.10156-0.99219-2.8984-0.039062-0.10156-1.1641-2.832-0.042969-0.097656-1.3359-2.7617-0.050781-0.09375-1.4961-2.6719-0.054688-0.09375-1.6602-2.5781-0.058594-0.085937-1.8125-2.4727-0.0625-0.085937-1.957-2.3594-0.070312-0.078125-2.0977-2.2383-0.074218-0.074218-2.2461-2.125-0.078125-0.070313-2.3711-1.9844-0.085937-0.066406-2.4844-1.832-0.089844-0.0625-2.5938-1.6797-0.09375-0.054687-2.6875-1.5195-0.097656-0.046874-2.7773-1.3516-0.097656-0.046875-2.8555-1.1797-0.10156-0.039062-2.9219-1.0039-0.10156-0.03125-2.9805-0.82422-0.10156-0.023437-3.0234-0.64453-0.10547-0.015625-3.0547-0.45703c-0.089844-0.015625-0.17969-0.019531-0.26562-0.019531zm-23.773 5.7383h0.003907c0.43359 0 0.84766 0.17578 1.1562 0.48047l13.75 13.75c0.64062 0.64062 0.64062 1.6758 0 2.3125l-8.3047 8.3398c-1.0391 1.043-1.3203 2.6211-0.70312 3.957 2.8086 6.0703 6.8047 11.867 11.984 17.047l0.14453 0.14453c5.1953 5.1914 10.867 9.043 16.922 11.844 0.47266 0.21875 0.97656 0.32422 1.4727 0.32422 0.91406 0 1.8164-0.35547 2.4883-1.0312l8.3047-8.3125c0.30859-0.30859 0.72266-0.48047 1.1562-0.48047h0.007813c0.43359 0.003906 0.84766 0.17578 1.1523 0.48047l13.766 13.766c0.30078 0.30469 0.47266 0.71875 0.47266 1.1523 0 0.43359-0.17188 0.84766-0.48047 1.1562l-9.1016 9.0938c-0.29297 0.29297-0.69141 0.46484-1.1055 0.47656l-0.0625 0.003906c-0.51172 0.023438-0.99609 0.03125-1.5195 0.03125-13.234 0-29.203-7.3672-42.051-20.215-13.266-13.266-20.656-29.816-20.191-43.262l0.003907-0.27344c-0.011719-0.44531 0.15625-0.875 0.47656-1.1953l9.1016-9.1094c0.30859-0.30859 0.72266-0.48047 1.1562-0.48047zm0-3.5156h-0.003906c-1.3672 0-2.6719 0.54297-3.6406 1.5117l-9.0977 9.1055c-1.0156 1.0156-1.5391 2.3828-1.5078 3.7656v0.007812c-0.53516 14.703 7.4609 32.176 21.219 45.93 13.309 13.312 30.121 21.246 44.535 21.246 0.5625 0 1.1172-0.011719 1.6758-0.035156h0.011719c1.3086-0.039063 2.5586-0.57812 3.4844-1.5078l9.1016-9.0898c0.96875-0.96875 1.5117-2.2773 1.5117-3.6445 0-1.3672-0.54297-2.6797-1.5078-3.6445l-13.758-13.762c-0.96875-0.96484-2.2773-1.5078-3.6445-1.5078h-0.003907c-1.3672 0-2.6758 0.54297-3.6406 1.5117l-8.3047 8.3125c-5.6914-2.6328-11.02-6.2461-15.91-11.141l-0.14453-0.14453c-4.8906-4.8906-8.6484-10.344-11.281-16.035l8.3047-8.332c2.0117-2.0156 2.0078-5.2773-0.003906-7.2852l-13.75-13.754c-0.96484-0.96484-2.2773-1.5078-3.6445-1.5078z"></path> 1384</svg> 1385</div> 1386</div> 1387 <div class="u_1016959372 dmRespCol small-12 large-2 medium-2" id="1016959372"> <span id="1845699766"></span> 1388 <div class="u_1992630769 dmNewParagraph" id="1992630769" style="transition-duration: 1s; transition-timing-function: ease-in-out; transition-delay: initial; transition-property: opacity;"><div style="text-align: left;"><span class="font-size-16 lh-1"><font style="color: rgb(255, 255, 255);">418-253-0064</font></span></div></div></div> 1389</div> 1390</div> 1391 <div class="dmRespRow dmDefaultListContentRow u_1281604458" style="text-align:center" id="1281604458"> <div class="dmRespColsWrapper" id="1473005015"> <div class="u_1047458781 small-12 dmRespCol large-2 medium-2" id="1047458781"> <div class="u_1678715847 imageWidget align-center" data-widget-type="image" id="1678715847" data-element-type="image"> <a href="/" id="1370508904" file="false"><img src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Logo+GIRS-1920w.png" id="1137409776" class="" width="1500" height="400" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/Logo+GIRS.png" alt="Logo blanc Gestion Immobilière de la Rive-Sud" onerror="handleImageLoadError(this)"/></a> 1392</div> 1393</div> 1394 <div class="u_1522799502 dmRespCol small-12 large-10 medium-10" id="1522799502"> <span id="1481163886"></span> 1395 <nav class="u_1645648010 effect-background main-navigation unifiednav dmLinksMenu" role="navigation" layout-main="horizontal_nav_layout_1" layout-sub="submenu_horizontal_1" data-show-vertical-sub-items="HOVER" id="1645648010" dmle_extension="onelinksmenu" data-element-type="onelinksmenu" wr="true" icon="true" surround="true" adwords="" navigation-id="unifiedNav"> <ul role="menubar" class="unifiednav__container unav-top  " data-auto="navigation-pages"> <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="#" class="unifiednav__item unav-item unav-top-item  dmUDNavigationItem_010101807118  unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="À louer" data-auto="page-text-style">&Agrave; louer<span class="icon icon-angle-down"></span> 1396</span> 1397</a> 1398 <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="0" data-auto="sub-pages"> <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/scott" class="unifiednav__item unav-item   dmUDNavigationItem_010101940735  unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Scott, Chaudières-Appalaches" data-auto="page-text-style">Scott, Chaudi&egrave;res-Appalaches<span class="icon icon-angle-right"></span> 1399</span> 1400</a> 1401 <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/scott/rue-amanda-gustave" class="unifiednav__item unav-item   dmUDNavigationItem_010101104557  " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Amanda-Gustave" data-auto="page-text-style">Rue Amanda-Gustave<span class="icon icon-angle-right"></span> 1402</span> 1403</a> 1404</li> 1405 <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/scott/rue-jean-baptiste" class="unifiednav__item unav-item   dmNavItemSelected  dmUDNavigationItem_010101164518  " target="" data-target-page-alias="" aria-current="page" data-auto="selected-page"> <span class="nav-item-text " data-link-text="Rue Jean-Baptiste" data-auto="page-text-style">Rue Jean-Baptiste<span class="icon icon-angle-right"></span> 1406</span> 1407</a> 1408</li> 1409 <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/scott/rue-marie-flore" class="unifiednav__item unav-item   dmUDNavigationItem_010101665958  " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Marie Flore" data-auto="page-text-style">Rue Marie Flore<span class="icon icon-angle-right"></span> 1410</span> 1411</a> 1412</li> 1413</ul> 1414</li> 1415 <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/carleton-sur-mer" class="unifiednav__item unav-item   dmUDNavigationItem_010101398645  unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Carleton-sur-Mer, Gaspésie" data-auto="page-text-style">Carleton-sur-Mer, Gasp&eacute;sie<span class="icon icon-angle-right"></span> 1416</span> 1417</a> 1418 <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/carleton-sur-mer/rue-comeau" class="unifiednav__item unav-item   dmUDNavigationItem_01010162050  " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Comeau" data-auto="page-text-style">Rue Comeau<span class="icon icon-angle-right"></span> 1419</span> 1420</a> 1421</li> 1422</ul> 1423</li> 1424 <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/new-richmond" class="unifiednav__item unav-item   dmUDNavigationItem_010101965827  unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="New Richmond, Gaspésie" data-auto="page-text-style">New Richmond, Gasp&eacute;sie<span class="icon icon-angle-right"></span> 1425</span> 1426</a> 1427 <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/new-richmond/avenue-erables" class="unifiednav__item unav-item   dmUDNavigationItem_010101253082  " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Avenue des Érables, Jumelé" data-auto="page-text-style">Avenue des &Eacute;rables, Jumel&eacute;<span class="icon icon-angle-right"></span> 1428</span> 1429</a> 1430</li> 1431 <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/new-richmond/avenue-erables-condo" class="unifiednav__item unav-item   dmUDNavigationItem_010101963466  " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Avenue des Érables, Condo" data-auto="page-text-style">Avenue des &Eacute;rables, Condo<span class="icon icon-angle-right"></span> 1432</span> 1433</a> 1434</li> 1435</ul> 1436</li> 1437 <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/guadeloupe" class="unifiednav__item unav-item   dmUDNavigationItem_010101227040  unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="La Guadeloupe, Chaudières-Appalaches" data-auto="page-text-style">La Guadeloupe, Chaudi&egrave;res-Appalaches<span class="icon icon-angle-right"></span> 1438</span> 1439</a> 1440 <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/guadeloupe/26-avenue" class="unifiednav__item unav-item   dmUDNavigationItem_010101612522  " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="26e avenue" data-auto="page-text-style">26e avenue<span class="icon icon-angle-right"></span> 1441</span> 1442</a> 1443</li> 1444</ul> 1445</li> 1446 <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/saint-isidore" class="unifiednav__item unav-item   dmUDNavigationItem_010101477779  unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Saint-Isidore, Chaudières-Appalaches" data-auto="page-text-style">Saint-Isidore, Chaudi&egrave;res-Appalaches<span class="icon icon-angle-right"></span> 1447</span> 1448</a> 1449 <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/saint-isidore/900-rue-semences" class="unifiednav__item unav-item   dmUDNavigationItem_010101216837  " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="900 Rue des Semences" data-auto="page-text-style">900 Rue des Semences<span class="icon icon-angle-right"></span> 1450</span> 1451</a> 1452</li> 1453</ul> 1454</li> 1455</ul> 1456</li> 1457 <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="#" class="unifiednav__item unav-item unav-top-item  dmUDNavigationItem_010101502992  unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="À vendre" data-auto="page-text-style">&Agrave; vendre<span class="icon icon-angle-down"></span> 1458</span> 1459</a> 1460 <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="0" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/vente/quartier-marie-flore" class="unifiednav__item unav-item   dmUDNavigationItem_010101496377  " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Marie Flore, Scott" data-auto="page-text-style">Rue Marie Flore, Scott<span class="icon icon-angle-right"></span> 1461</span> 1462</a> 1463</li> 1464</ul> 1465</li> 1466 <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="#" class="unifiednav__item unav-item unav-top-item  dmUDNavigationItem_010101989750  unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Nos services" data-auto="page-text-style">Nos services<span class="icon icon-angle-down"></span> 1467</span> 1468</a> 1469 <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="0" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/representation-au-tal" class="unifiednav__item unav-item   dmUDNavigationItem_010101184129  " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Représentation au TAL" data-auto="page-text-style">Repr&eacute;sentation au TAL<span class="icon icon-angle-right"></span> 1470</span> 1471</a> 1472</li> 1473</ul> 1474</li> 1475 <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/soumissions" class="unifiednav__item unav-item unav-top-item  dmUDNavigationItem_01010193260  " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Propriétaires" data-auto="page-text-style">Propri&eacute;taires<span class="icon icon-angle-down"></span> 1476</span> 1477</a> 1478</li> 1479 <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/contact" class="unifiednav__item unav-item unav-top-item  dmUDNavigationItem_010101387719  " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Nous joindre" data-auto="page-text-style">Nous joindre<span class="icon icon-angle-down"></span> 1480</span> 1481</a> 1482</li> 1483</ul> 1484</nav> 1485</div> 1486</div> 1487</div> 1488</div> 1489</div> 1490</div> 1491 <div dmwrapped="true" id="dmFirstContainer" class="dmBody u_dmStyle_template_location/scott/rue-jean-baptiste dm-home-page" themewaschanged="true"> <div id="allWrapper" class="allWrapper"><!-- navigation placeholders --> <div id="dm_content" class="dmContent" role="main"> <div dm:templateorder="170" class="dmHomeRespTmpl mainBorder dmRespRowsWrapper dmFullRowRespTmpl" id="1716942098"> <div class="dmRespRow" id="1520274457"> <div class="dmRespColsWrapper" id="1188095855"> <div class="dmRespCol large-12 medium-12 small-12" id="1983990229"> <div data-element-type="spacer" class="dmSpacer u_1867569646" id="1867569646"></div> 1492</div> 1493</div> 1494</div> 1495 <div class="dmRespRow" id="1079223264"> <div class="dmRespColsWrapper" id="1608791626"> <div class="dmRespCol small-12 medium-12 large-12" id="1983508641"> <div class="imageWidget align-center u_1188563749" data-element-type="image" data-widget-type="image" id="1188563749"><img src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Place+%C3%89vo+phase+3+-+6+logements-1920w.jpg" alt="Immeuble moderne de trois étages avec balcons et escaliers extérieurs." id="1697979973" class="" width="1920" height="1080" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/Place+%C3%89vo+phase+3+-+6+logements.jpg" onerror="handleImageLoadError(this)"/></div> 1496</div> 1497</div> 1498</div> 1499 <div class="dmRespRow" id="1958286401"> <div class="dmRespColsWrapper" id="1911295334"> <div class="dmRespCol large-12 medium-12 small-12" id="1257255836"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3 u_1748061203" data-element-type="graphic" data-widget-type="graphic" id="1748061203"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1383326881" class="svg u_1383326881" data-icon-custom="true"> <title id="1316450043">Une silhouette noire et blanche d'une ville avec trois b&acirc;timents et un arbre.</title> 1500 <path d="m89.387 71.629c-0.29688-0.35938-0.41406-0.78906-0.5-1.1094-0.035157-0.13281 0.10547-0.21875 0.023437-0.22266-0.86328-0.0625-0.82812-0.625-0.80469-0.98828 0-0.011719 0.03125-0.003906 0.058593 0.003906 0.039063 0.011719 0.078126 0.027344 0.039063 0.003906l-0.007813-0.003906c-0.54687-0.32422-0.57031-0.55859-0.58984-0.73828-0.003907-0.03125-0.007813-0.054688-0.26562-0.125-0.09375-0.027344-0.16797-0.10938-0.17969-0.21094-0.03125-0.29688-0.21875-0.3125-0.33984-0.32031-0.074218-0.003907-0.13672-0.011719-0.19922-0.035157-0.070313-0.023437-0.12891-0.082031-0.15234-0.16016s0-0.10156-0.011719-0.097656c-0.023437 0.007812-0.058593 0.027344-0.089843 0.042969-0.085938 0.046875-0.16016 0.085937-0.26172 0.078125-0.19531-0.015625-0.30859-0.12891-0.28125-0.46484 0-0.023438-0.023438 0.035156-0.054688 0.003906-0.035156-0.039062-0.082031-0.074218-0.12891-0.097656-0.027344-0.015625-0.054687-0.023438-0.078125-0.015625-0.027344 0.007813-0.058594 0.03125-0.09375 0.082031-0.40625 0.55078-0.78125 0.35938-1.1719 0.16406-0.15625-0.078125-0.3125-0.15625-0.42578-0.13281-0.68359 0.15234-0.91797-0.085937-1.0898-0.26562-0.058594-0.0625-0.09375-0.097656-0.64062 0.45312-0.59766 0.60156-0.91406 0.37109-1.207 0.16016-0.050782-0.035156-0.097656-0.070312-0.13281-0.085937-0.14062 0.085937-0.15234 0.15625-0.16797 0.22656-0.027343 0.12891-0.050781 0.25781-0.21094 0.40625-0.21875 0.20312-0.46875 0.34375-0.69531 0.41797-0.30859 0.10547-0.59766 0.089844-0.74609-0.027344l0.003906 0.003907 0.003906 0.003906c-0.046875 0.019531-0.097656 0.0625-0.14844 0.125-0.0625 0.070313-0.11719 0.16016-0.16406 0.25391-0.09375 0.19531-0.13281 0.41016-0.050781 0.52344 0.44141 0.58984 0.44531 0.79688 0.26172 0.9375-0.070313 0.054687-0.13672 0.0625-0.21094 0.074219-0.019531 0.003906-0.046875 0.007812-0.046875 0.046874-0.003906 0.11719-0.035156 0.35938-0.066406 0.57031-0.019531 0.15625-0.042969 0.27344-0.042969 0.28125 0.14062 0.92188-0.003906 1.1133-0.13281 1.2891-0.070313 0.09375-0.13281 0.17578 0.027343 0.89844 0.10938 0.49609 0.21094 0.53125 0.27344 0.54297h0.007812c0.16406 0.027344 0.27344 0.046875 0.28906 0.28906 0.03125 0.42188 0.24219 0.46484 0.39062 0.49219 0.16406 0.03125 0.30078 0.058594 0.38281 0.22266 0.20313 0.39062 0.28906 0.34375 0.33594 0.32031 0.046875-0.027343 0.089844-0.046874 0.15234-0.054687h0.011718c0.17969-0.011719 0.28516 0.058594 0.30078 0.30078 0.003906 0.039063 0.019531 0.066406 0.046875 0.089844 0.050781 0.039062 0.12891 0.066406 0.22656 0.082031 0.11719 0.019531 0.25 0.023438 0.39453 0.011719 0.28906-0.019531 0.59375-0.089844 0.79688-0.17188l-0.011719-0.007813c-0.19141-0.125-0.41797-0.27344-0.71094-0.59766-0.089843-0.097656-0.085937-0.25391 0.015625-0.34375 0.097656-0.089844 0.25391-0.085937 0.34375 0.015625 0.25781 0.28125 0.45312 0.41016 0.62109 0.51953 0.41406 0.27344 0.67578 0.44531 1.0938 1.8242 0.41016 1.3398 0.48828 2.9844 0.41797 4.582-0.074219 1.5938-0.29688 3.1445-0.5 4.3125-0.023438 0.14453-0.0625 0.25781-0.089844 0.39063h-7.1328v-53.824l-19.984-4.582v58.41h-0.97656v-57.938l-4.918 4.3594c-0.019531 0.019531-0.039062 0.039062-0.0625 0.054687l-4.2695 3.7852-0.042969 15.039 6.332 0.81641c0.24609 0.03125 0.42578 0.24219 0.42578 0.48438v33.395h-0.97656v-32.969l-6.332-0.82031-14.688-1.8984c-0.03125 0-0.058594-0.003907-0.085937-0.011719l-6.2656-0.80859c-0.03125 0-0.058593-0.003906-0.085937-0.011719l-2.3867-0.30859v36.824h-0.97656v-36.539l-9.1992 5.2461v31.293h-0.4375c-0.35156 0-0.64062 0.28516-0.64062 0.64062 0 0.35156 0.28516 0.64062 0.64062 0.64062h74.609c0.35156 0 0.64062-0.28516 0.64062-0.64062 0-0.35156-0.28516-0.64062-0.64062-0.64062h-0.90625c-0.12891-1.1875-0.14844-2.0391-0.09375-2.6641 0.058594-0.65625 0.19922-1.0859 0.39062-1.4023 0.12109-0.20703 0.30469-0.42969 0.49609-0.67188 0.32031-0.39844 0.67969-0.84766 0.78125-1.2227-0.17188 0.17969-0.38672 0.35156-0.60156 0.52344-0.30078 0.24219-0.60156 0.48438-0.71875 0.69922-0.039062 0.085938-0.125 0.14844-0.22266 0.14844-0.13672 0-0.24609-0.10938-0.24609-0.24609 0-0.71875-0.023437-1.3398-0.046875-1.9688-0.023437-0.67188-0.050781-1.3516-0.050781-2.0898 0-0.6875 0.39453-1.0508 0.82812-1.4531 0.44531-0.41016 0.9375-0.86719 0.94922-1.8281 0-0.13281 0.11328-0.24219 0.24609-0.24219 0.13281 0 0.24219 0.11328 0.24219 0.24609-0.007813 0.64844-0.1875 1.0977-0.4375 1.4531 0.79297 0.40625 0.99609 0.078125 1.1406-0.15625 0.078125-0.12891 0.14453-0.23828 0.26172-0.30859 0.26953-0.16016 0.26953-0.40625 0.26953-0.57813 0-0.28125 0-0.48828 0.33203-0.53906 0.52734-0.078125 0.54688-0.21875 0.57422-0.42578 0.03125-0.24219 0.070312-0.53906 0.35547-0.89062 0.11328-0.14062 0.17188-0.37109 0.18359-0.59766 0.011719-0.23828-0.023437-0.46094-0.10547-0.55859zm-22.07 9.2695 2.3555 0.14453c0.26953 0 0.48828 0.21875 0.48828 0.48828v4.8672h-2.8438v-5.5039zm0.48438-43.238c0.035157 0 0.070313 0.003906 0.10547 0.011719l3.2617 0.44922c0.24609 0.03125 0.42188 0.24219 0.42188 0.48438v3.3047c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.035156 0-0.070312-0.003907-0.10547-0.011719l-3.2617-0.44922c-0.24609-0.03125-0.42188-0.24219-0.42188-0.48438v-3.3047c0-0.26953 0.21875-0.48828 0.48828-0.48828zm0 6.6055c0.035157 0 0.070313 0.003906 0.10547 0.011719l3.2617 0.44922c0.24609 0.03125 0.42188 0.24219 0.42188 0.48438v3.3047c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.035156 0-0.070312-0.003906-0.10547-0.011718l-3.2617-0.44922c-0.24609-0.03125-0.42188-0.24219-0.42188-0.48438v-3.3047c0-0.26953 0.21875-0.48828 0.48828-0.48828zm0 6.6055c0.035157 0 0.070313 0.003906 0.10547 0.011718l3.2617 0.44922c0.24609 0.03125 0.42188 0.24219 0.42188 0.48438v3.3047c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.035156 0-0.070312-0.003906-0.10547-0.011719l-3.2617-0.44922c-0.24609-0.03125-0.42188-0.24219-0.42188-0.48438v-3.3047c0-0.26953 0.21875-0.48828 0.48828-0.48828zm-6.6055-14.117c0.035157 0 0.070313 0.003906 0.10547 0.011719l3.2617 0.44922c0.24609 0.03125 0.42188 0.24219 0.42188 0.48438v3.3008c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.035156 0-0.070313-0.003906-0.10547-0.011719l-3.2617-0.44922c-0.24609-0.03125-0.42188-0.24219-0.42188-0.48438v-3.3047c0-0.26953 0.21875-0.48828 0.48828-0.48828zm0 6.6055c0.035157 0 0.070313 0.003906 0.10547 0.011719l3.2617 0.44922c0.24609 0.03125 0.42188 0.24219 0.42188 0.48438v3.3008c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.035156 0-0.070313-0.003906-0.10547-0.011719l-3.2617-0.44922c-0.24609-0.03125-0.42188-0.24219-0.42188-0.48437v-3.3047c0-0.26953 0.21875-0.48828 0.48828-0.48828zm0 6.6055c0.035157 0 0.070313 0.003906 0.10547 0.011718l3.2617 0.44922c0.24609 0.03125 0.42188 0.24219 0.42188 0.48438v3.3008c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.035156 0-0.070313-0.003907-0.10547-0.011719l-3.2617-0.44922c-0.24609-0.03125-0.42188-0.24219-0.42188-0.48438v-3.3047c0-0.26953 0.21875-0.48828 0.48828-0.48828zm2 31.199v-0.027343c0.015626-0.26953 0.24609-0.47266 0.51563-0.45703l2.332 0.14453c0 0.011719-0.007813 0.023437-0.007813 0.039062v5.543h-2.8438v-5.2383zm-23.695-0.42578 3.3594 0.16016h0.015625c0.26953 0 0.48828 0.21875 0.48828 0.48828v5.0195h-3.8633zm3.2031-21.883c0.03125 0 0.058594 0.003906 0.085937 0.007812l3.2578 0.30078c0.25391 0.023438 0.44141 0.23438 0.44531 0.48438v3.3047c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.03125 0-0.058594-0.003906-0.085937-0.007812l-3.2578-0.30078c-0.25391-0.023437-0.44141-0.23437-0.44531-0.48437v-3.3047c0-0.26953 0.21875-0.48828 0.48828-0.48828zm0 6.6055c0.03125 0 0.058594 0.003906 0.085937 0.007812l3.2578 0.30078c0.25391 0.023438 0.44141 0.23438 0.44531 0.48438v3.3008c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.03125 0-0.058594-0.003907-0.085937-0.007813l-3.2578-0.30078c-0.25391-0.023437-0.44141-0.23438-0.44531-0.48438v-3.3008c0-0.26953 0.21875-0.48828 0.48828-0.48828zm-6.6055-7.2109c0.03125 0 0.058594 0.003906 0.085938 0.007812l3.2578 0.30078c0.25391 0.023437 0.44141 0.23438 0.44531 0.48438v3.3008c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.03125 0-0.058594-0.003906-0.085938-0.007812l-3.2578-0.30078c-0.25391-0.023438-0.44141-0.23438-0.44531-0.48438v-3.3047c0-0.26953 0.21875-0.48828 0.48828-0.48828zm0 6.6055c0.03125 0 0.058594 0.003906 0.085938 0.007812l3.2578 0.30078c0.25391 0.023438 0.44141 0.23438 0.44531 0.48438v3.3047c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.03125 0-0.058594-0.003906-0.085938-0.007812l-3.2578-0.30078c-0.25391-0.023437-0.44141-0.23437-0.44531-0.48437v-3.3047c0-0.26953 0.21875-0.48828 0.48828-0.48828zm-6.6055-7.2109c0.03125 0 0.058593 0.003907 0.085937 0.007813l3.2578 0.30078c0.25391 0.023437 0.44141 0.23438 0.44531 0.48438v3.3047c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.03125 0-0.058594-0.003907-0.085938-0.007813l-3.2578-0.30078c-0.25391-0.023437-0.44141-0.23438-0.44531-0.48438v-3.3047c0-0.26953 0.21875-0.48828 0.48828-0.48828zm0 6.6055c0.03125 0 0.058593 0.003906 0.085937 0.007812l3.2578 0.30078c0.25391 0.023437 0.44141 0.23438 0.44531 0.48438v3.3008c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.03125 0-0.058594-0.003906-0.085938-0.007812l-3.2578-0.30078c-0.25391-0.023438-0.44141-0.23438-0.44531-0.48438v-3.3047c0-0.26953 0.21875-0.48828 0.48828-0.48828zm4.8945 16.758v-0.023437c0.011719-0.26953 0.24219-0.47656 0.50781-0.46484l3.3281 0.15625c0 0.011719-0.007812 0.019531-0.007812 0.03125v5.6953h-3.8359v-5.3945zm49.301-4.6211c-0.12891 0.039062-0.26562-0.035157-0.30469-0.16406-0.11328-0.375-0.56641-0.73828-0.97266-1.0625-0.24609-0.19531-0.47656-0.38281-0.63672-0.57031-0.085938-0.10156-0.074219-0.25781 0.027343-0.34375 0.10156-0.085938 0.25781-0.074219 0.34375 0.027344 0.12891 0.15234 0.33984 0.32031 0.56641 0.50391 0.25391 0.20312 0.51953 0.41406 0.73828 0.65234 0.03125-0.16016 0.0625-0.32422 0.097656-0.48828 0.089844-0.41797 0.17969-0.84375 0.17969-1.2031 0-0.13672 0.10938-0.24609 0.24609-0.24609 0.13672 0 0.24609 0.10937 0.24609 0.24609 0 0.40625-0.097656 0.85938-0.19141 1.3008-0.085938 0.39844-0.16797 0.79297-0.16797 1.1094 0 0.10547-0.066406 0.20312-0.17188 0.23437zm2.2656-1.4414-0.007813 0.019532c-0.28906 0.58984-0.66016 0.89844-0.95312 1.0391-0.12109 0.058594-0.23047 0.089844-0.32031 0.10156-0.13281 0.015625-0.24609-0.011719-0.31641-0.066407-0.0625-0.046874-0.097657-0.11328-0.10547-0.19141-0.050781-0.47266 0.003906-1.0039 0.046875-1.4609 0.023437-0.24609 0.046875-0.46875 0.046875-0.64062 0-0.13672 0.10938-0.24609 0.24609-0.24609 0.13672 0 0.24609 0.10938 0.24609 0.24609 0 0.18359-0.023438 0.42188-0.050782 0.69141-0.035156 0.36328-0.078125 0.78125-0.0625 1.1602 0.019532-0.007812 0.039063-0.015625 0.058594-0.027344 0.21484-0.10156 0.49609-0.34375 0.72656-0.8125l0.007813-0.019531c0.046875-0.097656 0.19141-0.39844 0.22656-0.65234 0.019531-0.13281 0.14062-0.22656 0.27344-0.20703 0.13281 0.019532 0.22656 0.14062 0.20703 0.27344-0.046875 0.32422-0.21875 0.6875-0.27344 0.80078zm-7.3438-4.9336c0 0.003906-0.003906 0.007812-0.011719 0.015625-0.023437 0.015625 0.003906-0.003906 0.011719-0.015625zm-33.719-33.566c0-0.14453 0.0625-0.27344 0.16406-0.36328l4.2969-3.8125v-16.168l-18.258-3.7812v37.48l13.754 1.7773zm-2.043-16.672c0.027344 0 0.054688 0.003906 0.082032 0.007812l2.9414 0.35938c0.25 0.03125 0.42969 0.24219 0.42969 0.48438v2.9648c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.027344 0-0.054688-0.003906-0.082031-0.007813l-2.9414-0.35937c-0.25-0.03125-0.42969-0.24219-0.42969-0.48438v-2.9648c0-0.26953 0.21875-0.48828 0.48828-0.48828zm-2.9648 9.5078c-0.027343 0-0.054687-0.003906-0.082031-0.007812l-2.9414-0.35938c-0.25-0.027343-0.42969-0.24219-0.42969-0.48437v-2.9648c0-0.26953 0.21875-0.48828 0.48828-0.48828 0.027343 0 0.054687 0.003907 0.082031 0.007813l2.9414 0.35938c0.25 0.03125 0.42969 0.24219 0.42969 0.48438v2.9648c0 0.26953-0.21875 0.48828-0.48828 0.48828zm0-5.9297c-0.027343 0-0.054687-0.003906-0.082031-0.007812l-2.9414-0.35938c-0.25-0.03125-0.42969-0.24219-0.42969-0.48438v-2.9648c0-0.26953 0.21875-0.48828 0.48828-0.48828 0.027343 0 0.054687 0.003906 0.082031 0.007813l2.9414 0.35937c0.25 0.03125 0.42969 0.24219 0.42969 0.48438v2.9648c0 0.26953-0.21875 0.48828-0.48828 0.48828zm2.4766 5.8008v-2.9648c0-0.26953 0.21875-0.48828 0.48828-0.48828 0.027344 0 0.054688 0.003906 0.082032 0.007812l2.9414 0.35938c0.25 0.03125 0.42969 0.24219 0.42969 0.48438v2.9648c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.027344 0-0.054688-0.003906-0.082031-0.007812l-2.9414-0.35938c-0.25-0.03125-0.42969-0.24219-0.42969-0.48438zm-12.242 20.523-5.375-0.69531v-31.242l5.375-4.9102z"></path> 1501</svg> 1502</div> 1503 <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1844873187" style="transition: opacity 1s ease-in-out;"> <h1 class="text-align-center"><span style="display: unset; color: var(--color_2);">Rue Jean-Baptiste</span></h1> 1504</div> 1505</div> 1506</div> 1507</div> 1508 <div class="dmRespRow" id="1299034309"> <div class="dmRespColsWrapper" id="1051852715"> <div class="dmRespCol large-6 medium-6 small-12" id="1199127370"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1692095137" style="transition: opacity 1s ease-in-out;"><p><span style="display: initial;">Situ&eacute;s sur la rue Jean-Baptiste &agrave; Scott, au c&oelig;ur de la r&eacute;gion de Chaudi&egrave;re-Appalaches, ces condos locatifs modernes vous offrent un cadre de vie id&eacute;al, alliant tranquillit&eacute;, accessibilit&eacute; et qualit&eacute; de vie. Pens&eacute;s pour r&eacute;pondre aux besoins des locataires d&rsquo;aujourd&rsquo;hui, ces logements spacieux marient parfaitement design contemporain et confort au quotidien.</span></p><p><span style="display: initial;"><br/></span></p><p><span class="" style="display: initial;"><span style="display: initial;">Nos</span> 1509</span><strong style="display: initial; font-weight: bold;">unit&eacute;s 4 &frac12;</strong><span style="display: initial;">&nbsp; se distinguent par leur luminosit&eacute; abondante, leur insonorisation sup&eacute;rieure, leur balcon priv&eacute; et leur syst&egrave;me de climatisation mural, assurant un bien-&ecirc;tre optimal en toute saison. Chaque d&eacute;tail est con&ccedil;u pour offrir une exp&eacute;rience r&eacute;sidentielle agr&eacute;able, fonctionnelle et durable.</span></p></div> 1510</div> 1511 <div class="dmRespCol large-6 medium-6 small-12" id="1839002717"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1894702091" style="transition: opacity 1s ease-in-out;"><p><span style="display: initial;">Ces condos b&eacute;n&eacute;ficient d&rsquo;un emplacement strat&eacute;gique, &agrave; proximit&eacute; imm&eacute;diate des &eacute;coles, CPE, commerces, restaurants et services essentiels. Que vous soyez une personne seule, un couple ou une famille, vous appr&eacute;cierez la simplicit&eacute; d&rsquo;un quartier paisible, s&eacute;curitaire et bien desservi, &agrave; deux pas de tout.</span></p><p><br/></p><p><span style="display: initial;">En choisissant un condo locatif sur la rue Jean-Baptiste, vous faites le choix d&rsquo;un mode de vie &eacute;quilibr&eacute;, o&ugrave; la nature, la tranquillit&eacute; et la proximit&eacute; des grands centres se rencontrent harmonieusement. Profitez du meilleur de la vie r&eacute;sidentielle &agrave; Scott, avec Gestion Immobili&egrave;re Sud.</span></p></div> 1512</div> 1513</div> 1514</div> 1515 <div class="dmRespRow" id="1354768935"> <div class="dmRespColsWrapper" id="1160499125"> <div class="dmRespCol large-12 medium-12 small-12" id="1043419536"> <div data-element-type="spacer" class="dmSpacer u_1221610193" id="1221610193"></div> 1516</div> 1517</div> 1518</div> 1519 <div class="dmRespRow u_1452815793" id="1452815793"> <div class="dmRespColsWrapper" id="1032101925"> <div class="u_1827808816 dmRespCol small-12 large-4 medium-4" id="1827808816"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1794481497"> <h2><span style="display: initial;">ESPACE DE VIE</span></h2> 1520</div> 1521</div> 1522 <div class="u_1871439213 dmRespCol small-12 large-8 medium-8" id="1871439213"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1047322935"><p><span style="display: initial;">Votre condo locatif vous propose un milieu de vie unique, con&ccedil;u pour combiner confort, tranquillit&eacute; et style contemporain. Vous y trouverez des d&eacute;tails bien pens&eacute;s qui rehaussent votre quotidien, comme une thermopompe pour une temp&eacute;rature id&eacute;ale en toute saison, une excellente insonorisation pour un calme absolu, et un balcon priv&eacute; o&ugrave; vous pourrez relaxer en toute intimit&eacute;.</span></p><p><span style="display: initial;"><span class="ql-cursor"></span></span></p><p><span style="display: initial;">Chaque logement a &eacute;t&eacute; am&eacute;nag&eacute; pour offrir un espace de vie fonctionnel, lumineux et a&eacute;r&eacute;, o&ugrave; chaque pi&egrave;ce contribue &agrave; cr&eacute;er un environnement chaleureux et agr&eacute;able. Jour apr&egrave;s jour, vous appr&eacute;cierez le soin apport&eacute; &agrave; chaque d&eacute;tail pour que vous vous sentiez r&eacute;ellement chez vous.</span></p></div> 1523</div> 1524</div> 1525</div> 1526 <div class="dmRespRow u_1840143137" id="1840143137"> <div class="dmRespColsWrapper" id="1176239290"> <div class="dmRespCol small-12 medium-4 large-4" id="1239952657"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3" data-element-type="graphic" data-widget-type="graphic" id="1698806142"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1701483377" class="svg u_1701483377" data-icon-custom="true"> <title id="1743230754">Un dessin en noir et blanc d'un balcon avec deux fen&ecirc;tres et une balustrade.</title> 1527 <path d="m90.625 27.188v1.875c0 0.57422-0.46484 1.043-1.043 1.043-0.57422 0-1.043-0.46484-1.043-1.043v-1.875c0-0.57422 0.46484-1.043 1.043-1.043 0.57422 0 1.043 0.46484 1.043 1.043zm-1.043 36.355v22.918h1.043c1.1484 0 2.082 0.93359 2.082 2.082v4.168c0 1.1484-0.93359 2.082-2.082 2.082h-81.25c-1.1484 0-2.082-0.93359-2.082-2.082v-4.168c0-1.1484 0.93359-2.082 2.082-2.082v-22.918c-1.1484 0-2.082-0.93359-2.082-2.082v-4.168c0-1.1484 0.93359-2.082 2.082-2.082v-47.918c0-1.1484 0.93359-2.082 2.082-2.082h77.082c1.1484 0 2.082 0.93359 2.082 2.082v16.145c0 0.57422-0.46484 1.043-1.043 1.043-0.57422 0-1.043-0.46484-1.043-1.043l0.007813-16.145h-77.086v47.918h6.25v-41.668c0-1.1484 0.93359-2.082 2.082-2.082h60.418c1.1484 0 2.082 0.93359 2.082 2.082v41.668h6.25v-22.395c0-0.57422 0.46484-1.043 1.043-1.043 0.57422 0 1.043 0.46484 1.043 1.043v22.395c1.1484 0 2.082 0.93359 2.082 2.082v4.168c0 1.1484-0.93359 2.082-2.082 2.082zm-69.789-8.3359h4.168l-0.003907-37.5c0-0.57422 0.46484-1.043 1.043-1.043h50c0.57422 0 1.043 0.46484 1.043 1.043v37.5h4.168l-0.003907-41.664h-60.414v41.668zm54.164 0v-36.457h-19.793v36.457zm-21.875 0v-36.457h-4.168v36.457zm-6.25 0v-36.457h-19.793v36.457zm-36.457 6.25h81.25v-4.168l-81.25 0.003907v4.168zm71.875 25v-22.918h-8.332v22.918zm-16.668 0v-22.918h-10.418v22.918zm-18.75 0v-22.918h-10.418v22.918zm-18.75 0v-22.918h-9.375v22.918zm2.0859 0h4.168v-22.918h-4.168zm18.75 0h4.168v-22.918h-4.168zm18.75 0h4.168v-22.918h-4.168zm-55.211 0h4.168v-22.918h-4.168zm79.168 2.0859h-81.25v4.168h81.25zm-3.125-25h-4.168v22.918h4.168zm-23.727-30.516c-0.48438-0.3125-1.1289-0.17188-1.4414 0.3125l-3.9766 6.1992c-0.30859 0.48438-0.16797 1.1289 0.31641 1.4375 0.17578 0.11328 0.36719 0.16406 0.5625 0.16406 0.34375 0 0.67969-0.16797 0.87891-0.48047l3.9766-6.1992c0.30859-0.48438 0.16797-1.1289-0.31641-1.4375zm5.375 1.2656c-0.48438-0.3125-1.1289-0.17188-1.4414 0.3125l-5.9688 9.2969c-0.30859 0.48438-0.16797 1.1289 0.31641 1.4375 0.17578 0.11328 0.36719 0.16406 0.5625 0.16406 0.34375 0 0.67969-0.16797 0.87891-0.48047l5.9688-9.2969c0.30859-0.48437 0.16797-1.1289-0.31641-1.4375zm-33.5-1.2656c-0.48438-0.3125-1.1289-0.17188-1.4375 0.3125l-3.9805 6.1992c-0.30859 0.48438-0.17188 1.1289 0.3125 1.4375 0.17578 0.11328 0.36719 0.16406 0.5625 0.16406 0.34375 0 0.67969-0.16797 0.87891-0.48047l3.9805-6.1992c0.30859-0.48438 0.17188-1.1289-0.3125-1.4375zm5.375 1.2656c-0.48047-0.30859-1.1289-0.17188-1.4375 0.3125l-5.9688 9.2969c-0.30859 0.48438-0.17188 1.1289 0.3125 1.4375 0.17578 0.11328 0.36719 0.16406 0.5625 0.16406 0.34375 0 0.67969-0.16797 0.87891-0.48047l5.9688-9.2969c0.30859-0.48437 0.17188-1.1289-0.3125-1.4375z"></path> 1528</svg> 1529</div> 1530 <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1021350580" style="transition: opacity 1s ease-in-out;"><p class="text-align-center"><strong style="display: initial; font-weight: bold;">BALCON PRIV&Eacute;</strong></p></div> 1531</div> 1532 <div class="dmRespCol small-12 medium-4 large-4" id="1039038550"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3" data-element-type="graphic" data-widget-type="graphic" id="1568394281"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1498743683" class="svg u_1498743683" data-icon-custom="true"> <title id="1533751192">Un cube noir et blanc avec une porte et des fen&ecirc;tres sur fond blanc.</title> 1533 <path d="m91.391 70.52c0.019531-0.039062 0.039063-0.078125 0.050781-0.12109 0.039063-0.12891 0.058594-0.26172 0.058594-0.39844v-40c0-0.57031-0.32031-1.0898-0.82812-1.3398l-40-20c-0.039063-0.019531-0.078125-0.03125-0.12109-0.039062-0.058593-0.019532-0.12109-0.050782-0.19141-0.058594-0.058594-0.011719-0.12109-0.019531-0.17969-0.03125-0.070313-0.011719-0.12891-0.019531-0.19922-0.019531-0.058594 0-0.12109 0.011719-0.17969 0.011719-0.058593 0.011718-0.12891 0.019531-0.19141 0.03125-0.058594 0.019531-0.12109 0.039062-0.17969 0.058593-0.039063 0.019531-0.078126 0.019531-0.12109 0.039063l-40 20c-0.48828 0.25781-0.80859 0.77734-0.80859 1.3477v40c0 0.14062 0.019531 0.26953 0.058594 0.39844 0.011718 0.039062 0.03125 0.078124 0.050781 0.12109 0.03125 0.078125 0.058594 0.16016 0.10156 0.23828 0.03125 0.050782 0.058593 0.078126 0.089843 0.12891 0.050781 0.058593 0.089844 0.12891 0.14844 0.17969 0.039062 0.039063 0.089843 0.070313 0.12891 0.10938 0.039063 0.03125 0.078125 0.070313 0.12109 0.10156 0.019531 0.011718 0.039062 0.019531 0.058593 0.03125 0.019532 0.011718 0.039063 0.03125 0.058594 0.039062l40 20c0.21094 0.10938 0.44141 0.16016 0.67188 0.16016s0.46094-0.050781 0.67188-0.16016l40-20c0.019532-0.011718 0.039063-0.03125 0.058594-0.039062 0.019531-0.011719 0.039062-0.011719 0.058594-0.03125 0.050781-0.03125 0.078125-0.070313 0.12109-0.10156 0.050781-0.039062 0.089843-0.070312 0.12891-0.10938 0.058594-0.058594 0.10156-0.12109 0.14844-0.17969 0.03125-0.039063 0.070313-0.078125 0.089844-0.12891 0.0625-0.078124 0.09375-0.15625 0.125-0.23828zm-2.8906-2.9492-37-18.5v-36.641l37 18.5zm-77-36.641 37-18.5v36.648l-12 6v-25.078c0-0.17188-0.089844-0.32812-0.23828-0.42969-0.14844-0.089843-0.32812-0.10156-0.48828-0.019531l-12 6c-0.17188 0.078125-0.28125 0.26172-0.28125 0.44922v25.57l-12 6-0.003907-36.641zm50 13.07v-16c0-0.17188 0.089844-0.32812 0.23828-0.42969 0.14844-0.089843 0.32812-0.10156 0.48828-0.019531l6.2812 3.1406v17.121l-6.7188-3.3594c-0.17969-0.09375-0.28906-0.26172-0.28906-0.45312zm16.281 8.4492-6.2812-3.1406v-17.117l6.7188 3.3594c0.17188 0.078125 0.28125 0.26172 0.28125 0.44922v16c0 0.17188-0.089844 0.32812-0.23828 0.42969-0.078125 0.050781-0.17188 0.070312-0.26172 0.070312-0.078125 0-0.14844-0.019531-0.21875-0.050781z"></path> 1534</svg> 1535</div> 1536 <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1641948639" style="transition: opacity 1s ease-in-out;"><p class="text-align-center" style="line-height: 1.6; letter-spacing: 0.05em;"><strong style="display: initial;">UNIT&Eacute; SPACIEUSE</strong><span style="display: initial;"><br/></span></p></div> 1537</div> 1538 <div class="dmRespCol small-12 medium-4 large-4" id="1072865027"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3" data-element-type="graphic" data-widget-type="graphic" id="1867621623"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1933419378" class="svg u_1933419378" data-icon-custom="true"> <title id="1070294086">Un dessin en noir et blanc d'un flocon de neige sur fond blanc.</title> 1539 <g> <path d="m50 51.953c-1.0742 0-1.9531-0.87891-1.9531-1.9531v-44.922c0-1.0742 0.87891-1.9531 1.9531-1.9531s1.9531 0.87891 1.9531 1.9531v44.922c0 1.0742-0.87891 1.9531-1.9531 1.9531z"></path> 1540 <path d="m50 24.609c-0.52734 0-1.0156-0.19531-1.3867-0.56641l-11.719-11.719c-0.76172-0.76172-0.76172-1.9922 0-2.7539 0.37109-0.37109 0.85938-0.56641 1.3867-0.56641s1.0156 0.19531 1.3867 0.56641l11.719 11.719c0.37109 0.37109 0.56641 0.85938 0.56641 1.3867 0 0.52734-0.19531 1.0156-0.56641 1.3867-0.37109 0.35156-0.85938 0.54688-1.3867 0.54688z"></path> 1541 <path d="m50 24.609c-0.52734 0-1.0156-0.19531-1.3867-0.56641-0.37109-0.37109-0.56641-0.85938-0.56641-1.3867s0.19531-1.0156 0.56641-1.3867l11.719-11.719c0.37109-0.37109 0.85938-0.56641 1.3867-0.56641s1.0156 0.19531 1.3867 0.56641c0.76172 0.76172 0.76172 1.9922 0 2.7539l-11.719 11.719c-0.37109 0.39062-0.85938 0.58594-1.3867 0.58594z"></path> 1542 <path d="m50 96.875c-1.0742 0-1.9531-0.87891-1.9531-1.9531v-44.922c0-1.0742 0.87891-1.9531 1.9531-1.9531s1.9531 0.87891 1.9531 1.9531v44.922c0 1.0742-0.87891 1.9531-1.9531 1.9531z"></path> 1543 <path d="m38.281 91.016c-0.52734 0-1.0156-0.19531-1.3867-0.56641-0.37109-0.37109-0.56641-0.85938-0.56641-1.3867s0.19531-1.0156 0.56641-1.3867l11.719-11.719c0.37109-0.37109 0.85938-0.56641 1.3867-0.56641s1.0156 0.19531 1.3867 0.56641c0.37109 0.37109 0.56641 0.85938 0.56641 1.3867s-0.19531 1.0156-0.56641 1.3867l-11.719 11.719c-0.37109 0.37109-0.85938 0.56641-1.3867 0.56641z"></path> 1544 <path d="m61.719 91.016c-0.52734 0-1.0156-0.19531-1.3867-0.56641l-11.719-11.719c-0.76172-0.76172-0.76172-1.9922 0-2.7539 0.37109-0.37109 0.85938-0.56641 1.3867-0.56641s1.0156 0.19531 1.3867 0.56641l11.719 11.719c0.37109 0.37109 0.56641 0.85938 0.56641 1.3867 0 0.52734-0.19531 1.0156-0.56641 1.3867-0.37109 0.35156-0.85938 0.54688-1.3867 0.54688z"></path> 1545 <path d="m50 51.953c-0.52734 0-1.0156-0.19531-1.3867-0.56641-0.37109-0.37109-0.56641-0.85938-0.56641-1.3867s0.19531-1.0156 0.56641-1.3867l31.777-31.758c0.37109-0.37109 0.85938-0.56641 1.3867-0.56641s1.0156 0.19531 1.3867 0.56641c0.76172 0.76172 0.76172 2.0117 0 2.7539l-31.777 31.777c-0.37109 0.37109-0.85938 0.56641-1.3867 0.56641z"></path> 1546 <path d="m69.336 32.617c-1.0742 0-1.9531-0.87891-1.9531-1.9531v-16.582c0-1.0742 0.87891-1.9531 1.9531-1.9531 1.0742 0 1.9531 0.87891 1.9531 1.9531v16.582c0 1.0742-0.87891 1.9531-1.9531 1.9531z"></path> 1547 <path d="m85.898 32.617h-16.562c-1.0742 0-1.9531-0.87891-1.9531-1.9531 0-1.0742 0.87891-1.9531 1.9531-1.9531h16.562c1.0742 0 1.9531 0.87891 1.9531 1.9531 0 1.0742-0.85937 1.9531-1.9531 1.9531z"></path> 1548 <path d="m18.242 83.711c-0.52734 0-1.0156-0.19531-1.3867-0.56641-0.37109-0.37109-0.56641-0.85938-0.56641-1.3867 0-0.52734 0.19531-1.0156 0.56641-1.3867l31.758-31.758c0.37109-0.37109 0.85938-0.56641 1.3867-0.56641s1.0156 0.19531 1.3867 0.56641c0.37109 0.37109 0.56641 0.85938 0.56641 1.3867s-0.19531 1.0156-0.56641 1.3867l-31.777 31.758c-0.37109 0.37109-0.85938 0.56641-1.3672 0.56641z"></path> 1549 <path d="m30.664 71.289h-16.582c-1.0742 0-1.9531-0.87891-1.9531-1.9531 0-1.0742 0.87891-1.9531 1.9531-1.9531h16.582c1.0742 0 1.9531 0.87891 1.9531 1.9531 0 1.0742-0.87891 1.9531-1.9531 1.9531z"></path> 1550 <path d="m30.664 87.852c-1.0742 0-1.9531-0.87891-1.9531-1.9531v-16.562c0-1.0742 0.87891-1.9531 1.9531-1.9531 1.0742 0 1.9531 0.87891 1.9531 1.9531v16.562c0 1.0938-0.87891 1.9531-1.9531 1.9531z"></path> 1551 <path d="m94.922 51.953h-44.922c-1.0742 0-1.9531-0.87891-1.9531-1.9531s0.87891-1.9531 1.9531-1.9531h44.922c1.0742 0 1.9531 0.87891 1.9531 1.9531s-0.87891 1.9531-1.9531 1.9531z"></path> 1552 <path d="m77.344 51.953c-0.52734 0-1.0156-0.19531-1.3867-0.56641-0.37109-0.37109-0.56641-0.85938-0.56641-1.3867s0.19531-1.0156 0.56641-1.3867l11.719-11.719c0.37109-0.37109 0.85938-0.56641 1.3867-0.56641s1.0156 0.19531 1.3867 0.56641c0.76172 0.76172 0.76172 1.9922 0 2.7539l-11.719 11.719c-0.37109 0.39062-0.85938 0.58594-1.3867 0.58594z"></path> 1553 <path d="m89.062 63.672c-0.52734 0-1.0156-0.19531-1.3867-0.56641l-11.719-11.719c-0.37109-0.37109-0.56641-0.85938-0.56641-1.3867s0.19531-1.0156 0.56641-1.3867c0.37109-0.37109 0.85938-0.56641 1.3867-0.56641s1.0156 0.19531 1.3867 0.56641l11.719 11.719c0.76172 0.76172 0.76172 1.9922 0 2.7539-0.37109 0.39062-0.85938 0.58594-1.3867 0.58594z"></path> 1554 <path d="m50 51.953h-44.922c-1.0742 0-1.9531-0.87891-1.9531-1.9531s0.87891-1.9531 1.9531-1.9531h44.922c1.0742 0 1.9531 0.87891 1.9531 1.9531s-0.87891 1.9531-1.9531 1.9531z"></path> 1555 <path d="m22.656 51.953c-0.52734 0-1.0156-0.19531-1.3867-0.56641l-11.719-11.719c-0.76172-0.76172-0.76172-1.9922 0-2.7539 0.37109-0.37109 0.85938-0.56641 1.3867-0.56641s1.0156 0.19531 1.3867 0.56641l11.719 11.719c0.37109 0.37109 0.56641 0.85938 0.56641 1.3867 0 0.52734-0.19531 1.0156-0.56641 1.3867-0.37109 0.35156-0.85938 0.54688-1.3867 0.54688z"></path> 1556 <path d="m10.938 63.672c-0.52734 0-1.0156-0.19531-1.3867-0.56641-0.37109-0.37109-0.56641-0.85938-0.56641-1.3867s0.19531-1.0156 0.56641-1.3867l11.719-11.719c0.37109-0.37109 0.85938-0.56641 1.3867-0.56641s1.0156 0.19531 1.3867 0.56641c0.76172 0.76172 0.76172 1.9922 0 2.7539l-11.719 11.719c-0.37109 0.39062-0.85938 0.58594-1.3867 0.58594z"></path> 1557 <path d="m81.758 83.711c-0.52734 0-1.0156-0.19531-1.3867-0.56641l-31.758-31.758c-0.37109-0.37109-0.56641-0.85938-0.56641-1.3867s0.19531-1.0156 0.56641-1.3867c0.37109-0.37109 0.85938-0.56641 1.3867-0.56641s1.0156 0.19531 1.3867 0.56641l31.758 31.758c0.76172 0.76172 0.76172 2.0117 0 2.7734-0.37109 0.37109-0.85938 0.56641-1.3867 0.56641z"></path> 1558 <path d="m85.898 71.289h-16.562c-1.0742 0-1.9531-0.87891-1.9531-1.9531 0-1.0742 0.87891-1.9531 1.9531-1.9531h16.562c1.0742 0 1.9531 0.87891 1.9531 1.9531 0 1.0742-0.85937 1.9531-1.9531 1.9531z"></path> 1559 <path d="m69.336 87.852c-1.0742 0-1.9531-0.87891-1.9531-1.9531v-16.562c0-1.0742 0.87891-1.9531 1.9531-1.9531 1.0742 0 1.9531 0.87891 1.9531 1.9531v16.562c0 1.0938-0.87891 1.9531-1.9531 1.9531z"></path> 1560 <path d="m50 51.953c-0.52734 0-1.0156-0.19531-1.3867-0.56641l-31.758-31.777c-0.37109-0.37109-0.56641-0.85938-0.56641-1.3867s0.19531-1.0156 0.56641-1.3867c0.37109-0.37109 0.85938-0.56641 1.3867-0.56641 0.52734 0 1.0156 0.19531 1.3867 0.56641l31.758 31.758c0.37109 0.37109 0.56641 0.85938 0.56641 1.3867 0 0.52734-0.19531 1.0156-0.56641 1.3867-0.37109 0.39062-0.85938 0.58594-1.3867 0.58594z"></path> 1561 <path d="m30.664 32.617c-1.0742 0-1.9531-0.87891-1.9531-1.9531v-16.582c0-1.0742 0.87891-1.9531 1.9531-1.9531 1.0742 0 1.9531 0.87891 1.9531 1.9531v16.582c0 1.0742-0.87891 1.9531-1.9531 1.9531z"></path> 1562 <path d="m30.664 32.617h-16.582c-1.0742 0-1.9531-0.87891-1.9531-1.9531 0-1.0742 0.87891-1.9531 1.9531-1.9531h16.582c1.0742 0 1.9531 0.87891 1.9531 1.9531 0 1.0742-0.87891 1.9531-1.9531 1.9531z"></path> 1563</g> 1564</svg> 1565</div> 1566 <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1779262052" style="transition: opacity 1s ease-in-out;"><p class="text-align-center"><strong style="display: unset; font-weight: bold;">CLIMATISATION</strong></p></div> 1567</div> 1568</div> 1569</div> 1570 <div class="dmRespRow u_1813520727" id="1813520727"> <div class="dmRespColsWrapper" id="1076460937"> <div class="dmRespCol small-12 medium-4 large-4" id="1888604417"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3" data-element-type="graphic" data-widget-type="graphic" id="1840705991"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1555630550" class="svg u_1555630550" data-icon-custom="true"> <title id="1148790460">Un dessin en noir et blanc d'une cuisine avec une cuisini&egrave;re et des tiroirs.</title> 1571 <path d="m98.418 48.703h-50.488l1.4883-2.1836c0.019531-0.027343 0.023437-0.0625 0.039062-0.089843 0.14844-0.12891 0.49609-2.3086 0.55469-2.5312 0.25781-1.3906-1.8516-1.793-2.125-0.40625l-0.25391 1.3359h-5.9297v-1.1328c0-0.59766-0.48438-1.082-1.082-1.082s-1.082 0.48438-1.082 1.082v1.1328h-5.9297l-0.25391-1.3359c-0.26562-1.3828-2.3828-0.98828-2.125 0.40625 0.0625 0.23047 0.40234 2.3906 0.55469 2.5312 0.015625 0.027343 0.019532 0.0625 0.039063 0.089843l1.4883 2.1836h-10.477l1.4883-2.1836c0.019531-0.027343 0.023437-0.0625 0.039062-0.089843 0.14844-0.12891 0.49609-2.3086 0.55469-2.5312 0.25781-1.3906-1.8555-1.793-2.125-0.40625l-0.25391 1.3359h-5.9336v-1.1328c0-0.59766-0.48438-1.082-1.082-1.082-0.59766 0-1.082 0.48438-1.082 1.082v1.1328h-5.9258l-0.25391-1.3359c-0.26562-1.3828-2.3828-0.98828-2.125 0.40625 0.0625 0.23047 0.40234 2.3906 0.55469 2.5312 0.015625 0.027343 0.019532 0.0625 0.039063 0.089843l1.4883 2.1836h-6.6328c-0.60156 0-1.0859 0.48438-1.0859 1.082v5.8906c0 0.59766 0.48438 1.082 1.082 1.082h3.4375v40.27c0 0.59766 0.48438 1.082 1.082 1.082 21.887-0.003906 65.875 0 87.758 0 0.59766 0 1.082-0.48438 1.082-1.082v-40.27h3.4805c0.59766 0 1.082-0.48437 1.082-1.082v-5.8906c-0.003906-0.59766-0.48828-1.082-1.0859-1.082zm-56.719-1.7109h4.7812l-1.1641 1.7109h-3.6172zm-2.1602 0v1.7109h-3.6172l-1.1641-1.7109zm-22.934 0h4.7812l-1.1641 1.7109h-3.6172zm-2.1602 0v1.7109h-3.6172l-1.1641-1.7109zm34.426 48.957h-41.691v-39.188h41.691zm43.902 0h-41.691v-39.188h41.691zm4.5625-41.352h-94.672v-3.7305h94.676zm-41.93 38.105h33.043c0.59766 0 1.082-0.48438 1.082-1.082v-30.531c0-0.59766-0.48438-1.082-1.082-1.082h-33.043c-0.59766 0-1.082 0.48438-1.082 1.082v30.535c0 0.59375 0.48438 1.0781 1.082 1.0781zm1.082-30.535h30.879v13.105h-30.879zm0 15.27h30.879v13.105h-30.879zm-44.938 15.266h33.043c0.59766 0 1.082-0.48438 1.082-1.082v-15.266c0-0.59766-0.48438-1.082-1.082-1.082h-33.043c-0.59766 0-1.082 0.48437-1.082 1.082v15.266c0 0.59766 0.48438 1.082 1.082 1.082zm1.082-15.266h30.879v13.105h-30.879zm1.457-9.7266c4.7695-0.125 4.7695-7.1133 0-7.2344-4.7734 0.125-4.7734 7.1094 0 7.2344zm0-5.0742c1.9102 0.035156 1.9102 2.8789 0 2.9102-1.9141-0.03125-1.9141-2.875 0-2.9102zm13.984 5.0742c4.7695-0.125 4.7695-7.1133 0-7.2344-4.7734 0.125-4.7734 7.1094 0 7.2344zm0-5.0742c1.9102 0.035156 1.9102 2.8789 0 2.9102-1.9141-0.03125-1.9141-2.875 0-2.9102zm13.984 5.0742c4.7695-0.125 4.7695-7.1133 0-7.2344-4.7734 0.125-4.7734 7.1094 0 7.2344zm0-5.0742c1.9102 0.035156 1.9102 2.8789 0 2.9102-1.9141-0.03125-1.9141-2.875 0-2.9102zm-11.449 19.973h-1.4531c0.082031 0.78906-0.15625 1.5938-1.082 1.625-0.92578-0.027344-1.1602-0.83203-1.082-1.625h-1.457c-1.4141-0.007813-1.4141-2.1562 0-2.1641h5.0742c1.4141 0.007813 1.4141 2.1562 0 2.1641zm43.855 0h-1.457c0.082032 0.78906-0.15625 1.5938-1.082 1.625-0.92578-0.027344-1.1602-0.83203-1.082-1.625h-1.457c-1.4141-0.007813-1.4141-2.1562 0-2.1641h5.0742c1.418 0.007813 1.418 2.1602 0.003906 2.1641zm0-15.266h-1.457c0.082032 0.78906-0.15625 1.5938-1.082 1.625-0.92578-0.027344-1.1602-0.83203-1.082-1.625h-1.457c-1.4141-0.007812-1.4141-2.1562 0-2.1641h5.0742c1.418 0.003906 1.418 2.1562 0.003906 2.1641zm-60.375-34.336h29.43c0.59766 0 1.082-0.48437 1.082-1.082 0-0.007812 0.003907-4.3008 0-4.3047-2.0781-4.293-4.957-8.2969-7.2969-12.488l-0.007813-12.164c0-0.59766-0.48438-1.082-1.082-1.082l-14.828 0.003906c-0.59766 0-1.082 0.48438-1.082 1.082v12.164c-2.3438 4.1914-5.2227 8.1953-7.2969 12.492v4.2969c0 0.59766 0.48438 1.082 1.082 1.082zm8.3789-28.957h12.668v10.301h-12.668zm-0.46875 12.465h13.602c1.9961 3.3438 4 6.6875 6.0039 10.031l-25.609-0.003906c2.0039-3.3438 4.0078-6.6875 6.0039-10.027zm-6.832 12.191h27.266v2.1367h-27.266zm44.707-0.58984h10.863c0.59766 0 1.082-0.48438 1.082-1.082 0-3.2188-2.3555-5.8945-5.4336-6.4102l0.003906-17.211c0-0.59766-0.48438-1.082-1.082-1.082s-1.082 0.48438-1.082 1.082v17.211c-3.0781 0.51562-5.4336 3.1914-5.4336 6.4102 0.003906 0.59766 0.48438 1.082 1.082 1.082zm5.4336-5.4258c2.0234 0 3.7344 1.3906 4.2148 3.2656h-8.4297c0.48438-1.875 2.1914-3.2656 4.2148-3.2656zm7.8047 11.809h10.863c0.59766 0 1.082-0.48438 1.082-1.082 0-3.2188-2.3555-5.8945-5.4336-6.4102v-24.039c0-0.59766-0.48438-1.082-1.082-1.082-0.59766 0-1.082 0.48438-1.082 1.082v24.039c-3.0781 0.51563-5.4336 3.1914-5.4336 6.4102 0.003906 0.59766 0.48828 1.082 1.0859 1.082zm5.4336-5.4258c2.0234 0 3.7344 1.3906 4.2148 3.2656h-8.4297c0.48047-1.875 2.1875-3.2656 4.2148-3.2656z"></path> 1572</svg> 1573</div> 1574 <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1887903806" style="transition: opacity 1s ease-in-out;"><p class="text-align-center"><strong style="display: unset; font-weight: bold;">CUISINE AVEC ILOT</strong></p></div> 1575</div> 1576 <div class="dmRespCol small-12 medium-4 large-4" id="1169683558"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3" data-element-type="graphic" data-widget-type="graphic" id="1890470256"> <a id="1743196068" class=""> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1598219880" class="svg u_1598219880" data-icon-custom="true"> <path d="m87.227 36.406c0-7.793-3.8477-14.637-9.6484-18.562-1.9688-10.164-10.91-17.844-21.652-17.844-5.5312 0-10.582 2.0391-14.453 5.4023-0.77734-0.10938-1.5664-0.17188-2.3711-0.17188-8.2461 0-15.102 5.9336-16.543 13.758-5.8672 3.5781-9.7852 10.039-9.7852 17.414 0 6.5977 3.1367 12.461 7.9961 16.184-0.12891 0.58984-0.19531 1.1953-0.19531 1.8125 0 6.5273 7.3789 11.816 16.48 11.816 2.2422 0 4.3789-0.32031 6.3281-0.90234v19.078c0 3.4375-2.1094 9.8633-7.1289 12.77 0 0-2.1172 1.4961 0.875 2.7305 1.1016 0.67578 3.4766-1.2812 7.7305-2.1367 1.9688-0.25391 3.6562-0.37891 5.1172-0.40234 1.4648 0.023438 3.1523 0.14453 5.1172 0.40234 4.2539 0.85156 6.6289 2.8125 7.7305 2.1367 2.9922-1.2344 0.875-2.7305 0.875-2.7305-5.0195-2.9062-7.1289-9.3359-7.1289-12.77v-19.5c2.0039 0.84766 4.2695 1.3242 6.668 1.3242 7.8477 0 14.258-5.0898 14.711-11.512 5.5977-3.957 9.2773-10.676 9.2773-18.297z"></path> 1577</svg> 1578</a> 1579</div> 1580 <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1975566927" style="transition: opacity 1s ease-in-out;"><p class="text-align-center"><strong style="display: initial; font-weight: bold;">ENVIRONNEMENT CALME</strong></p><p class="text-align-center"><strong style="display: initial; font-weight: bold;">ET PAISIBLE</strong></p></div> 1581</div> 1582 <div class="dmRespCol small-12 medium-4 large-4" id="1443466153"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3" data-element-type="graphic" data-widget-type="graphic" id="1406295359"> <a href="/" id="1950376377" aria-label="Dog_3202789.svg"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1886445913" class="svg u_1886445913" data-icon-custom="true" data-icon-name="Dog_3202789.svg"> <g> <path d="m56.102 84.801-2.5 8 0.10156 0.30078c0.5 1.8984 2.3984 3 4.3008 2.6016 2-0.39844 3.3008-2.3008 2.8984-4.3008l-1.1992-6.1992z"></path> 1583 <path d="m81.602 81.398-1.1992 11.398c-0.10156 0.89844-0.39844 1.6992-0.80078 2.3984 1 0.69922 2.1992 0.89844 3.3984 0.5 1.8984-0.69922 2.8984-2.8984 2.1992-4.8008z"></path> 1584 <path d="m53.898 67.898-2.1016-3.5c-0.80078-1.3984-2.6992-1.8984-4.1016-1-1.3984 0.80078-1.8984 2.6992-1 4.1016l1.8008 2.8984-4.8008 20.898c-0.39844 1.8984 0.60156 3.8008 2.5 4.3984 1.8984 0.60156 4-0.5 4.6016-2.3984l3.5-11.398 16.305 2.1016-0.19922 8.1016c-0.10156 1.8984 1.3984 3.6016 3.3008 3.8008 2 0.19922 3.8984-1.3008 4.1016-3.3008l1.6992-17.301-8.3008-7.3984z"></path> 1585 <path d="m97.102 67.398-7.1016-8.3984 0.30078-5.5c0.10156-1.3008-1.5-1.8984-2.3984-1.1016l-14.004 14.203 6.8984 6.1992 3.6992-3.6992 3.6016 3.6016c1.6016 1.6016 4.1016 1.6016 5.6016 0l3.3008-3.3008c0.60156-0.50391 0.69922-1.4023 0.10156-2.0039z"></path> 1586 <path d="m22.898 70.398-7.1992-9.8008 1.1992 8.6992c0.10156 0.39844 0.10156 0.80078-0.10156 1.1992l-7.0977 18.305c-0.89844 2.3984-0.10156 5.1992 2.1016 6.5 0.5 0.30078 0.89844 0.39844 1.3984 0.5 2.3008 0.5 4.6992-0.69922 5.6992-2.8984l5.1992-12.199-0.89844-9.6016c-0.097657-0.30078-0.19922-0.5-0.30078-0.70312z"></path> 1587 <path d="m36.5 65.801s-6.3984-12.102-6.8008-12.898c-0.30078-0.5-0.19922-1.3008-0.19922-1.8984 0-0.5 0.60156-8.8008 0.60156-8.8008l1.6992 2.3984c0.69922 1 1.6992 1.6016 2.8984 1.8008l11.102 1.5c0.39844 0.10156 0.80078 0 1.1992 0 0.60156-0.10156 1.1992-0.39844 1.6992-0.80078l21.102 19c0.30078 0.19922 0.60156 0.39844 0.89844 0.39844 0.39844 0 0.80078-0.19922 1.1016-0.5 0.5-0.60156 0.5-1.5-0.10156-2l-21.398-19.199c0.10156-0.30078 0.19922-0.60156 0.19922-0.89844 0.10156-2.1992-1.6992-4-3.8984-4.3008l-9-1.1992s-5.6992-8.3008-6.3984-9.3008c-0.60156-0.89844-1.8008-2.8008-3.1992-3.8008-1.8008-1.1992-4-1.6992-6.1992-1.3008-1.1016 0.19922-2.3984 0.89844-3.1016 1.3984s-11.203 8.1016-11.203 8.1016l-2.3008 1.8008c-0.89844 0.69922-1.5 1.8008-1.6016 2.8984l-1 11.199c0 0.39844 0 0.80078 0.10156 1.1992 0.39844 1.8984 2.1016 3.3984 4.1992 3.3984 2.1992 0 3.8984-1.8984 4.1016-4l0.80078-9.1016 3.3984-2.3984-1.1992 12.301c-0.10156 1.1992 0.19922 2.5 0.89844 3.5l10.602 14.398c0.5 0.69922 0.80078 1.3984 0.80078 2.1992l1.8008 19.699c0.19922 2.6016 1.8008 4.8984 4.3008 5.3008 0.5 0.10156 1 0.10156 1.5 0 2.3008-0.30078 4.3984-2.3984 4.3008-4.6992l-1.2031-23.496c-0.10156-0.69922-0.19922-1.3008-0.5-1.8984z"></path> 1588 <path d="m32.699 11.602c0.71484 4.8086-2.6016 9.2852-7.4102 10-4.8086 0.71484-9.2812-2.6055-9.9961-7.4102-0.71484-4.8086 2.6016-9.2852 7.4102-10 4.8047-0.71484 9.2812 2.6055 9.9961 7.4102"></path> 1589</g> 1590</svg> 1591</a> 1592</div> 1593 <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1988614463" style="transition: opacity 1s ease-in-out;"><p class="text-align-center"><strong style="color: var(--color_1); display: unset; font-weight: bold;">CHAT ET CHIEN ACCEPT&Eacute;</strong></p><p class="text-align-center"><span style="color: var(--color_1); display: initial; font-style: italic;">(sous conditions)</span></p></div> 1594</div> 1595</div> 1596</div> 1597 <div class="dmRespRow u_1884387629" id="1884387629"> <div class="dmRespColsWrapper" id="1558366283"> <div class="dmRespCol large-12 medium-12 small-12" id="1747773030"> <div data-element-type="spacer" class="dmSpacer u_1127078365" id="1127078365"></div> 1598</div> 1599</div> 1600</div> 1601 <div class="dmRespRow u_1746905231" id="1746905231"> <div class="dmRespColsWrapper" id="1489044292"> <div class="u_1602167220 dmRespCol small-12 large-4 medium-4" id="1602167220"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1969539361"> <h2><span style="display: initial; color: var(--color_3);">COMMODIT&Eacute;S</span></h2> 1602</div> 1603</div> 1604 <div class="u_1158007567 dmRespCol small-12 large-8 medium-8" id="1158007567"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1877599422"><p><span style="display: initial; color: var(--color_3);">Habiter sur la rue Jean-Baptiste &agrave; Scott, c&rsquo;est faire le choix d&rsquo;un milieu de vie moderne, confortable et pens&eacute; pour votre bien-&ecirc;tre au quotidien. Plus qu&rsquo;un simple condo locatif, c&rsquo;est un espace pratique et s&eacute;curitaire, o&ugrave; chaque d&eacute;tail contribue &agrave; une exp&eacute;rience r&eacute;sidentielle agr&eacute;able.</span></p><p><br/></p><p><span style="display: initial; color: var(--color_3);">Profitez d&rsquo;aires de vie bien con&ccedil;ues et d&rsquo;&eacute;quipements modernes qui r&eacute;pondent &agrave; vos besoins r&eacute;els : connexion internet illimit&eacute;e pour faciliter le t&eacute;l&eacute;travail, stationnements priv&eacute;s et environnement r&eacute;sidentiel s&eacute;curitaire pour assurer la tranquillit&eacute; de votre famille. Tout a &eacute;t&eacute; r&eacute;fl&eacute;chi pour simplifier votre quotidien et am&eacute;liorer votre qualit&eacute; de vie.</span></p></div> 1605</div> 1606</div> 1607</div> 1608 <div class="dmRespRow u_1732757548" id="1732757548"> <div class="dmRespColsWrapper" id="1619015439"> <div class="u_1652597944 dmRespCol small-12 medium-4 large-4" id="1652597944"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3 u_1465006226" data-element-type="graphic" data-widget-type="graphic" id="1465006226"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1502603050" class="svg u_1502603050" data-icon-custom="true"> <title id="1170184826">La lettre p est dans un carr&eacute; sur fond blanc.</title> 1609 <path d="m53.125 21.875h-12.5c-1.7266 0-3.125 1.3984-3.125 3.125v50c0 1.7266 1.3984 3.125 3.125 3.125s3.125-1.3984 3.125-3.125v-21.875h9.375c8.6133 0 15.625-7.0117 15.625-15.625s-7.0117-15.625-15.625-15.625zm0 25h-9.375v-18.75h9.375c5.168 0 9.375 4.207 9.375 9.375s-4.207 9.375-9.375 9.375zm18.75-40.625h-43.75c-12.062 0-21.875 9.8125-21.875 21.875v43.75c0 12.062 9.8125 21.875 21.875 21.875h43.75c12.062 0 21.875-9.8125 21.875-21.875v-43.75c0-12.062-9.8125-21.875-21.875-21.875zm15.625 65.625c0 8.6133-7.0117 15.625-15.625 15.625h-43.75c-8.6133 0-15.625-7.0117-15.625-15.625v-43.75c0-8.6133 7.0117-15.625 15.625-15.625h43.75c8.6133 0 15.625 7.0117 15.625 15.625z"></path> 1610</svg> 1611</div> 1612 <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1320053025" style="transition: opacity 1s ease-in-out;"><p class="text-align-center"><strong style="display: initial; color: var(--color_3);">DEUX STATIONNEMENTS</strong></p><p class="text-align-center"><strong style="display: initial; color: var(--color_3);">INCLUS</strong></p></div> 1613</div> 1614 <div class="u_1131179570 dmRespCol small-12 medium-4 large-4" id="1131179570"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3 u_1813669443" data-element-type="graphic" data-widget-type="graphic" id="1813669443"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1220517477" class="svg u_1220517477" data-icon-custom="true"> <title id="1042248255">Une ic&ocirc;ne en noir et blanc d'un signal wifi sur fond blanc.</title> 1615 <g> <path d="m10.699 38.898c-2 2-5.1992 2-7.1992 0s-2-5.1992 0-7.1992c11.898-11.898 28.301-19.199 46.5-19.199 8.8984 0 17.398 1.8008 25.102 5 8.1016 3.3008 15.301 8.1992 21.398 14.301 2 2 2 5.1992 0 7.1992s-5.1992 2-7.1992 0c-5.1016-5.1016-11.301-9.3008-18-12.102-6.5-2.6992-13.699-4.1992-21.301-4.1992-15.398 0-29.301 6.1992-39.301 16.199z"></path> 1616 <path d="m23.5 54.5c-2 2-5.1992 2-7.1992 0s-2-5.1992 0-7.1992c8.6016-8.6016 20.5-13.898 33.699-13.898 6.3984 0 12.602 1.3008 18.199 3.6016 5.8984 2.3984 11.102 6 15.5 10.301 2 2 2 5.1992 0 7.1992s-5.1992 2-7.1992 0c-3.5-3.5-7.6016-6.3008-12.102-8.1016-4.3984-1.8008-9.1992-2.8008-14.301-2.8008-10.398 0-19.797 4.0977-26.598 10.898z"></path> 1617 <path d="m36.398 70.102c-2 2-5.1992 2-7.1992 0s-2-5.1992 0-7.1992c2.6992-2.6992 5.8984-4.8984 9.6016-6.3984 3.5-1.3984 7.3008-2.1992 11.199-2.1992s7.8008 0.80078 11.199 2.1992c3.6016 1.5 6.8984 3.6992 9.6016 6.3984 2 2 2 5.1992 0 7.1992s-5.1992 2-7.1992 0c-1.8008-1.8008-3.8984-3.1992-6.1992-4.1992-2.1992-0.89844-4.6992-1.3984-7.3984-1.3984-2.6992 0-5.1016 0.5-7.3984 1.3984-2.3047 0.99609-4.4062 2.3984-6.207 4.1992z"></path> 1618 <path d="m50 87.5c3.3984 0 6.1992-2.8008 6.1992-6.1992 0-3.3984-2.8008-6.1992-6.1992-6.1992s-6.1992 2.8008-6.1992 6.1992c0 3.3984 2.8008 6.1992 6.1992 6.1992z"></path> 1619</g> 1620</svg> 1621</div> 1622 <div class="u_1486647722 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1486647722" style="transition: opacity 1s ease-in-out;"><p class="m-size-14 text-align-center size-18"><strong style="font-weight: bold; display: initial; color: rgb(255, 255, 255);" class="font-size-18 m-font-size-14">INTERNET</strong> 1623 </p><p class="text-align-center size-18 m-size-14"><strong style="font-weight: bold; display: initial; color: rgb(255, 255, 255);" class="m-font-size-14 font-size-18"><span class="ql-cursor"></span>ILLIMIT&Eacute;</strong></p></div> 1624</div> 1625 <div class="u_1832927014 dmRespCol small-12 medium-4 large-4" id="1832927014"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3 u_1419208593" data-element-type="graphic" data-widget-type="graphic" id="1419208593"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1780823282" class="svg u_1780823282" data-icon-custom="true"> <title id="1679502386">Un bouclier noir et blanc avec une coche dessus.</title> 1626 <path d="m84.984 17.719c-24.617-0.70312-32.469-13.391-32.812-13.973-0.44531-0.76562-1.2695-1.2344-2.1602-1.2383-0.94141-0.070312-1.7227 0.46875-2.1797 1.2344-0.32031 0.54297-8.1562 13.27-32.816 13.977-1.3594 0.039062-2.4414 1.1523-2.4414 2.5117v28.219c0 16.41 8.6953 31.922 22.699 40.48l13.414 8.2031c0.40234 0.24609 0.85547 0.36719 1.3125 0.36719 0.45312 0 0.90625-0.125 1.3125-0.36719l13.414-8.2031c14-8.5586 22.699-24.07 22.699-40.48v-28.219c0-1.3594-1.082-2.4727-2.4414-2.5117zm-2.5859 30.727c0 14.672-7.7773 28.539-20.293 36.195l-12.105 7.4023-12.105-7.4023c-12.516-7.6523-20.293-21.523-20.293-36.195v-25.812c18.902-1.1523 28.496-9.1016 32.398-13.492 3.9062 4.3867 13.496 12.336 32.398 13.492z"></path> 1627 <path d="m48.75 17.684c-6.457 4.9414-14.52 8.1914-23.961 9.6602l-1.7383 0.26953v20.832c0 12.785 6.7773 24.871 17.684 31.543l9.2617 5.6641 9.2617-5.6641c10.91-6.6719 17.688-18.758 17.688-31.543v-20.832l-1.7383-0.26953c-9.4414-1.4688-17.5-4.7188-23.961-9.6602l-1.25-0.95312-1.25 0.95312zm11.219 23.219c1.1602-1.2461 3.1094-1.3164 4.3594-0.15625 1.2461 1.1602 1.3164 3.1133 0.15234 4.3594l-15.41 16.547c-0.58203 0.625-1.3984 0.98047-2.2578 0.98047-0.85547 0-1.6758-0.35547-2.2578-0.98047l-9.0391-9.707c-1.1602-1.2461-1.0898-3.1992 0.15625-4.3594 1.2461-1.1602 3.1953-1.0938 4.3594 0.15625l6.7812 7.2812 13.152-14.125z"></path> 1628</svg> 1629</div> 1630 <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1698974621" style="transition: opacity 1s ease-in-out;"><p class="text-align-center size-18 m-size-14"><strong style="color: var(--color_3); display: unset; font-weight: bold;" class="font-size-18 m-font-size-14">ENVIRONNEMENT</strong></p><p class="text-align-center size-18 m-size-14"><strong style="color: var(--color_3); display: unset; font-weight: bold;" class="font-size-18 m-font-size-14">S&Eacute;CURIS&Eacute;</strong></p></div> 1631</div> 1632</div> 1633</div> 1634 <div class="dmRespRow u_1373323900" id="1373323900"> <div class="dmRespColsWrapper" id="1608647589"> <div class="dmRespCol large-12 medium-12 small-12" id="1448122824"> <div data-element-type="spacer" class="dmSpacer u_1288707829" id="1288707829"></div> 1635</div> 1636</div> 1637</div> 1638 <div class="dmRespRow" id="1207625802"> <div class="dmRespColsWrapper" id="1811535757"> <div class="dmRespCol large-12 medium-12 small-12" id="1183712701"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1012471350" style="transition: opacity 1s ease-in-out;"> <h2 class="text-align-center"><span style="display: unset;">VOTRE FUTUR CHEZ VOUS !</span></h2> 1639</div> 1640</div> 1641</div> 1642</div> 1643 <div class="dmRespRow" id="1895177592"> <div class="dmRespColsWrapper" id="1370102391"> <div class="u_1515200283 dmRespCol small-12 large-4 medium-4" id="1515200283"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1766789273"> <h3><span class="" style="display: unset;"><span style="display: unset;">D&eacute;couvrez votre futur condo</span> 1644</span></h3> 1645 <h3><span style="display: unset;">gr&acirc;ce &agrave; une visite virtuelle</span></h3> 1646</div> 1647</div> 1648 <div class="u_1605171594 dmRespCol small-12 large-8 medium-8" id="1605171594"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1074365602"><p><span style="display: unset;">Les condos locatifs de la rue Jean-Baptiste offrent un cadre de vie soign&eacute; dans un immeuble contemporain au style &eacute;pur&eacute;. Chaque logement se distingue par une conception r&eacute;fl&eacute;chie, des mat&eacute;riaux durables et une finition de qualit&eacute;, cr&eacute;ant un environnement &agrave; la fois &eacute;l&eacute;gant, fonctionnel et accueillant.</span></p></div> 1649</div> 1650</div> 1651</div> 1652 <div class="dmRespRow" id="1836880168"> <div class="dmRespColsWrapper" id="1478197164"> <div class="dmRespCol large-12 medium-12 small-12" id="1227292607"> <div class="flex-container dmImageSlider dmNoMargin dmNoMark u_1281514457" data-widget-type="imageSlider" dmle_volatile_widget="true" data-element-type="dSliderId" id="1281514457"> <div class="flexslider ed-version arrows-visible nav-layout-3" sliderscriptparams="{'stretch':true,'animation':true,'randomize':false,'directionNav':true,'isAutoPlay':true,'isFade':true,'controlNav':false,'slideshowSpeed':7000,'animationDuration':600,'pausePlay':true,'prevText':'','nextText':''}" id="1883157125" layout="empty"> <ul class="slides" id="1849667779"> <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1079271476" class="u_1079271476"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Rue+Jean-Baptiste+vue+cuisine-1920w.png" id="1854864531" alt="Il y a un grand îlot au milieu de la cuisine." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1777415701"></div> 1653 <div class="slide-inner" id="1408655820"> <div class="text-wrapper" id="1550985872"> <h3 class="slide-title" id="1112187589">Titre de la diapositive</h3> 1654 <div class="slide-text richText" id="1622573715">&Eacute;crivez votre l&eacute;gende ici</div> 1655</div> 1656 <div class="slide-button dmWidget clearfix" id="1296091289"> <span class="iconBg" id="1038601898"> <span class="icon hasFontIcon icon-star" id="1053077730"></span> 1657</span> 1658 <span class="text" id="1539547423">Bouton</span> 1659</div> 1660</div> 1661</li> 1662 <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1970083997"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Rue+Jean-Baptiste+vue+pi%C3%A8ce+%C3%A0+vivre-1920w.png" id="1795863750" alt="Un salon vide avec du parquet et une cuisine en arrière-plan." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1789725234"></div> 1663 <div class="slide-inner" id="1586310960"> <div class="text-wrapper" id="1695153037"> <h3 class="slide-title" id="1956997779">Titre de la diapositive</h3> 1664 <div class="slide-text richText" id="1268601051">&Eacute;crivez votre l&eacute;gende ici</div> 1665</div> 1666 <div class="slide-button dmWidget clearfix" id="1736940835"> <span class="iconBg" id="1603129214"> <span class="icon hasFontIcon icon-star" id="1605601116"></span> 1667</span> 1668 <span class="text" id="1492848547">Bouton</span> 1669</div> 1670</div> 1671</li> 1672 <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1625032871"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Rue+Jean-Baptiste+vue+chambre+1-1920w.png" id="1022967471" alt="Une chambre vide avec du parquet et une grande fenêtre." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1924651704"></div> 1673 <div class="slide-inner" id="1440587588"> <div class="text-wrapper" id="1181958537"> <h3 class="slide-title" id="1367816989">Titre de la diapositive</h3> 1674 <div class="slide-text richText" id="1360667785">&Eacute;crivez votre l&eacute;gende ici</div> 1675</div> 1676 <div class="slide-button dmWidget clearfix" id="1699708874"> <span class="iconBg" id="1326054780"> <span class="icon hasFontIcon icon-star" id="1619518256"></span> 1677</span> 1678 <span class="text" id="1944148186">Bouton</span> 1679</div> 1680</div> 1681</li> 1682 <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1956024336"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Rue+Jean-Baptiste+vue+salle+de+bain-1920w.png" id="1024446742" alt="Une salle de bain avec WC, lavabo et baignoire." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1272797972"></div> 1683 <div class="slide-inner" id="1770902656"> <div class="text-wrapper" id="1297125027"> <h3 class="slide-title" id="1021121731">Titre de la diapositive</h3> 1684 <div class="slide-text richText" id="1294540587">&Eacute;crivez votre l&eacute;gende ici</div> 1685</div> 1686 <div class="slide-button dmWidget clearfix" id="1069806171"> <span class="iconBg" id="1276852476"> <span class="icon hasFontIcon icon-star" id="1858804534"></span> 1687</span> 1688 <span class="text" id="1673548769">Bouton</span> 1689</div> 1690</div> 1691</li> 1692 <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1246129542"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Rue+Jean-Baptiste+vue+chambre+2-1920w.png" id="1783594160" alt="Une pièce vide avec du parquet et une fenêtre." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1319873229"></div> 1693 <div class="slide-inner" id="1804392009"> <div class="text-wrapper" id="1869031116"> <h3 class="slide-title" id="1683092412">Titre de la diapositive</h3> 1694 <div class="slide-text richText" id="1470115318">&Eacute;crivez votre l&eacute;gende ici</div> 1695</div> 1696 <div class="slide-button dmWidget clearfix" id="1659731085"> <span class="iconBg" id="1562674571"> <span class="icon hasFontIcon icon-star" id="1742966418"></span> 1697</span> 1698 <span class="text" id="1103334040">Bouton</span> 1699</div> 1700</div> 1701</li> 1702 <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1904111589"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Rue+Jean-Baptiste+vue+buanderie-1920w.png" id="1442123365" alt="Une pièce avec un plancher en bois, des murs blancs et une porte." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1863851067"></div> 1703 <div class="slide-inner" id="1959850512"> <div class="text-wrapper" id="1837895037"> <h3 class="slide-title" id="1338676267">Titre de la diapositive</h3> 1704 <div class="slide-text richText" id="1839823196">&Eacute;crivez votre l&eacute;gende ici</div> 1705</div> 1706 <div class="slide-button dmWidget clearfix" id="1604100728"> <span class="iconBg" id="1303826525"> <span class="icon hasFontIcon icon-star" id="1869824159"></span> 1707</span> 1708 <span class="text" id="1961458980">Bouton</span> 1709</div> 1710</div> 1711</li> 1712 <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1675502981"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Rue+Jean-Baptiste+vue+pi%C3%A8ce+rangement-1920w.png" id="1859085815" alt="Un dressing vide avec parquet et étagères grillagées." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1919456382"></div> 1713 <div class="slide-inner" id="1923178453"> <div class="text-wrapper" id="1916041413"> <h3 class="slide-title" id="1042869471">Titre de la diapositive</h3> 1714 <div class="slide-text richText" id="1611310137">&Eacute;crivez votre l&eacute;gende ici</div> 1715</div> 1716 <div class="slide-button dmWidget clearfix" id="1590149944"> <span class="iconBg" id="1197863449"> <span class="icon hasFontIcon icon-star" id="1500793429"></span> 1717</span> 1718 <span class="text" id="1193308777">Bouton</span> 1719</div> 1720</div> 1721</li> 1722</ul> 1723</div> 1724</div> 1725</div> 1726</div> 1727</div> 1728 <div class="u_1004639188 dmRespRow hide-for-small hasBackgroundOverlay" id="1004639188"> <div class="dmRespColsWrapper" id="1319975779"> <div class="u_1937526287 dmRespCol small-12 medium-12 large-12" id="1937526287"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1719778719" style="transition: opacity 1s ease-in-out;"> <h2 style="line-height: 1.5;"><span class="" style="color: var(--color_3); display: unset;"><span style="color: var(--color_3); display: unset;">Vous avez des questions ?</span> 1729</span><span style="display: initial;"><br/></span></h2> 1730</div> 1731 <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1370458921" style="transition: opacity 1s ease-in-out;"><p style="line-height: 1.5;"><span class="" style="display: unset; color: var(--color_3);"><span style="display: unset; color: var(--color_3);">N'h&eacute;sitez pas &agrave; nous contacter pour d&eacute;couvrir tout ce que vous souhaitez savoir sur les logements, les quartiers et tout ce qui s'y trouve. Nous sommes l&agrave; pour r&eacute;pondre &agrave; toutes vos questions.</span> 1732</span></p></div> 1733 <a data-display-type="block" class="u_1756842165 align-center dmButtonLink dmWidget dmWwr default dmOnlyButton dmDefaultGradient flexButton button_2" file="false" href="/contact" data-element-type="dButtonLinkId" id="1756842165"> <span class="iconBg" aria-hidden="true" id="1108775789"> <span class="icon hasFontIcon icon-star" id="1591840279"></span> 1734</span> 1735 <span class="text" id="1591898475">Contactez-nous</span> 1736</a> 1737</div> 1738</div> 1739</div> 1740 <div class="dmRespRow" id="1255286625"> <div class="dmRespColsWrapper" id="1157853594"> <div class="dmRespCol large-12 medium-12 small-12" id="1646357035"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1894118525" style="transition: opacity 1s ease-in-out;"> <h2 class="text-align-center"><span style="display: initial;">LE QUARTIER</span></h2> 1741</div> 1742</div> 1743</div> 1744</div> 1745 <div class="dmRespRow" id="1021648282"> <div class="dmRespColsWrapper" id="1958472480"> <div class="u_1467854085 dmRespCol small-12 large-4 medium-4" id="1467854085"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1714560600"> <h3><span style="display: unset;">Que vous appr&eacute;ciez les balades en nature ou les moments entre amis, la municipalit&eacute; de Scott saura combler vos envies !</span></h3> 1746</div> 1747</div> 1748 <div class="u_1585638891 dmRespCol small-12 large-8 medium-8" id="1585638891"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1871869082"><p><span style="display: initial;">Situ&eacute;s dans la municipalit&eacute; de Scott, au c&oelig;ur de la Chaudi&egrave;re-Appalaches, les condos locatifs de la rue Jean-Baptiste vous offrent un cadre de vie moderne o&ugrave; le confort, la tranquillit&eacute; et l&rsquo;accessibilit&eacute; se rencontrent. Vous vivrez dans un immeuble r&eacute;cent, con&ccedil;u pour r&eacute;pondre aux besoins d&rsquo;une client&egrave;le active, &agrave; la recherche d&rsquo;un environnement paisible et fonctionnel.</span></p><p><span style="display: initial;"><span class="ql-cursor"></span></span></p><p><span style="display: initial;">Profitez d&rsquo;un emplacement privil&eacute;gi&eacute;, &agrave; deux pas de toutes les commodit&eacute;s essentielles : &eacute;piceries, restaurants, &eacute;coles, soins personnels et commerces locaux. Gr&acirc;ce &agrave; sa localisation strat&eacute;gique, votre quotidien est simplifi&eacute; sans compromis sur la qualit&eacute; de vie. Le secteur vous permet aussi de profiter pleinement de la nature environnante, avec ses espaces verts, ses sentiers et ses lieux parfaits pour relaxer, marcher ou partager du temps en famille. Un &eacute;quilibre parfait entre vie pratique et bien-&ecirc;tre.</span></p></div> 1749</div> 1750</div> 1751</div> 1752 <div class="dmRespRow" id="1843314920"> <div class="dmRespColsWrapper" id="1867002812"> <div class="dmRespCol large-12 medium-12 small-12" id="1607338615"> <div class="default align-center flexButton u_1121935101 inlineMap" data-type="inlineMap" data-lat="46.50886" data-lng="-71.09007" data-address="21 Rue Jean-Baptiste, Scott, Quebec G0S 3G0, Canada" data-height="" data-msid="" data-mapurl="" data-lang="fr" data-color-scheme="" data-zoom="13" data-layout="" data-popup-display="" data-popup-show="false" data-popup-title="" data-popup-title-visible="false" data-popup-description="" data-popup-description-visible="false" id="1121935101" dmle_extension="mapextension" data-element-type="mapextension" modedesktop="map" modemobile="button" addresstodisplay="21 Rue Jean-Baptiste, Scott, Quebec G0S 3G0, Canada" geocompleteaddress="21 Rue Jean-Baptiste, Scott, Quebec G0S 3G0, Canada" data-popup-display-desktop="" data-popup-display-mobile="" data-display-type="block" modetablet="map" wr="true" icon="true" surround="true" adwords="" icon-name="icon-map-marker" provider="mapbox" lon="-71.09007" lat="46.50886" zoom="13"> <div class="mapContainer" style="height: 100%; width: 100%; overflow: hidden; z-index: 0;"></div> 1753</div> 1754 <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1364636678" style="transition: opacity 1s ease-in-out;"><p class="text-align-center" style="line-height: normal;"><span style="display: unset; font-style: italic;">21 rue Jean-Baptiste &agrave;&nbsp;</span><strong style="display: unset; font-style: italic; font-weight: bold;">Scott</strong></p></div> 1755</div> 1756</div> 1757</div> 1758 <div class="dmRespRow" id="1070998894"> <div class="dmRespColsWrapper" id="1224671236"> <div class="dmRespCol large-12 medium-12 small-12" id="1298961806"> <div data-element-type="spacer" class="dmSpacer u_1337411818" id="1337411818"></div> 1759</div> 1760</div> 1761</div> 1762 <div class="dmRespRow hasBackgroundOverlay u_1713239492 hasExtraLayerOverlay relativePos" id="1713239492" data-video-bg="eyJzcmMiOiJodHRwczovL3ZpZC5jZG4td2Vic2l0ZS5jb20vbWQvcGV4ZWxzL3ZpZGVvcy9hcGFydG1lbnQtYXQtaG9tZS1idXNpbmVzcy1idXktNzU3ODU0Ny12Lm1wNCIsImlkIjoiaHR0cHM6Ly92aWQuY2RuLXdlYnNpdGUuY29tL21kL3BleGVscy92aWRlb3MvYXBhcnRtZW50LWF0LWhvbWUtYnVzaW5lc3MtYnV5LTc1Nzg1NDctdi5tcDQiLCJwcm92aWRlciI6ImNkbiIsImVtYmVkIjoiaHR0cHM6Ly92aWQuY2RuLXdlYnNpdGUuY29tL21kL3BleGVscy92aWRlb3MvYXBhcnRtZW50LWF0LWhvbWUtYnVzaW5lc3MtYnV5LTc1Nzg1NDctdi5tcDQiLCJyYXRpbyI6MC41MjUsInRodW1ibmFpbCI6Imh0dHBzOi8vaXJwLmNkbi13ZWJzaXRlLmNvbS9tZC9wZXhlbHMvZG1zM3JlcC9tdWx0aS9hcGFydG1lbnQtYXQtaG9tZS1idXNpbmVzcy1idXktNzU3ODU0Ny52Mi4wMDAwMDAwLmpwZyIsInN1cHBvcnRCZ09uTW9iaWxlIjp0cnVlLCJzdXBwb3J0QmdMb29wIjp0cnVlLCJwb3N0ZXIiOiJodHRwczovL2lycC5jZG4td2Vic2l0ZS5jb20vbWQvcGV4ZWxzL2RtczNyZXAvbXVsdGkvYXBhcnRtZW50LWF0LWhvbWUtYnVzaW5lc3MtYnV5LTc1Nzg1NDcudjIuMDAwMDAwMC5qcGcifQ==" data-video-bg-mobile="true" data-video-init="true"> <div class="videobgwrapper video-ssr" data-ratio="0.525"> <video autoplay="autoplay" playsinline="playsinline" muted="muted" loop="loop" class="videobgframe" poster="https://irp.cdn-website.com/md/pexels/dms3rep/multi/opt/apartment-at-home-business-buy-7578547.v2.0000000-1920w.jpg" src="https://vid.cdn-website.com/md/pexels/videos/apartment-at-home-business-buy-7578547-v.mp4" style="object-position: 50% 50%" id="videobgframe-1713239492"></video> 1763</div> 1764 <div class="bgExtraLayerOverlay"></div> 1765 <div class="dmRespColsWrapper" id="1429893899"> <div class="dmRespCol small-12 medium-12 large-12 u_1486697154" id="1486697154"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1399270874"> <h2 class="text-align-center"><span class="" style="color: var(--color_3); display: unset;"><span style="color: var(--color_3); display: unset;">L'endroit vous s&eacute;duit ?</span> 1766</span></h2> 1767 <h2 class="text-align-center"><span style="color: var(--color_3); display: unset;">Planifiez votre visite d&egrave;s aujourd'hui !</span><span style="display: initial;"><br/></span></h2> 1768</div> 1769 <a data-display-type="block" class="u_1331251441 align-center dmButtonLink dmWidget dmWwr default dmOnlyButton dmDefaultGradient flexButton" file="false" href="/contact" data-element-type="dButtonLinkId" id="1331251441"> <span class="iconBg" aria-hidden="true" id="1684747527"> <span class="icon hasFontIcon icon-star" id="1638363387"></span> 1770</span> 1771 <span class="text" id="1461344268">JE PLANIFIE !</span> 1772</a> 1773</div> 1774</div> 1775</div> 1776</div> 1777</div> 1778</div> 1779</div> 1780 <div class="sticky-widgets-container-global" id="1915928664"></div> 1781 <div class="dmFooterContainer"> <div id="fcontainer" class="u_fcontainer f_hcontainer dmFooter p_hfcontainer"> <div dm:templateorder="250" class="dmFooterResp generalFooter" id="1943048428"> <div class="dmRespRow" id="1590959602"> <div class="dmRespColsWrapper" id="1431538080"> <div class="dmRespCol large-12 medium-12 small-12" id="1361774164"> <div data-element-type="spacer" class="dmSpacer u_1490941094" id="1490941094"></div> 1782</div> 1783</div> 1784</div> 1785 <div class="u_1590717275 dmRespRow hide-for-small" id="1590717275"> <div class="dmRespColsWrapper" id="1191827144"> <div class="dmRespCol large-3 medium-3 small-12" id="1127169041"> <div class="u_1937943637 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1937943637"><img src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Association_de_la_construction_du_quebec-1920w.jpg" alt="Le logo de l'association de la construction du québec" id="1579252722" class="" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/Association_de_la_construction_du_quebec.jpg" width="350" height="150" data-hover-effect="none" onerror="handleImageLoadError(this)"/></div> 1786</div> 1787 <div class="dmRespCol large-3 medium-3 small-12" id="1123044410"> <div class="u_1581963857 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1581963857"><img src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Association_provinciale_des_constructeurs_habitations_du_quebec_inc-1920w.jpg" alt="The logo for the association provinciale des constructeurs d habitations du quebec inc." id="1728538060" class="" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/Association_provinciale_des_constructeurs_habitations_du_quebec_inc.jpg" width="350" height="150" onerror="handleImageLoadError(this)"/></div> 1788</div> 1789 <div class="dmRespCol large-3 medium-3 small-12" id="1717192357"> <div class="u_1084703207 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1084703207"><img src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Bloc_Solutions_Bail_Electronique-1920w.jpg" alt="Le logo de bloc.solutions est un logo vert et noir sur fond blanc." id="1955822776" class="" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/Bloc_Solutions_Bail_Electronique.jpg" width="350" height="150" onerror="handleImageLoadError(this)"/></div> 1790</div> 1791 <div class="dmRespCol large-3 medium-3 small-12" id="1657067254"> <div class="u_1794016962 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1794016962"><img src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Corporation_des_Proprietaires_Immobiliers_du_Qu%C3%A9bec-1920w.jpg" id="1267254084" class="" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/Corporation_des_Proprietaires_Immobiliers_du_Qu%C3%A9bec.jpg" width="350" height="150" alt="Un logo noir et blanc pour corpiq avec une coche." onerror="handleImageLoadError(this)"/></div> 1792</div> 1793</div> 1794</div> 1795 <div class="u_1063726019 dmRespRow" id="1063726019"> <div class="dmRespColsWrapper" id="1726395185"> <div class="u_1306966054 dmRespCol small-12 large-3 medium-3" id="1306966054"> <div class="dmNewParagraph u_1459373111" data-element-type="paragraph" data-version="5" id="1459373111" style="transition: none 0s ease 0s; text-align: left; display: block;"><p class="text-align-left"><span style="display: unset; color: var(--color_3);">Sp&eacute;cialiste en gestion d&rsquo;immeubles locatifs, notre &eacute;quipe saura vous accompagner tout au long de vos d&eacute;marches.</span></p></div> 1796 <div class="u_1812358036 imageWidget align-center hide-for-small" data-element-type="image" data-widget-type="image" id="1812358036"><img src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/logo_RGB-1920w.png" alt="Un fond blanc avec quelques lignes dessus" id="1998903164" class="" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/logo_RGB.png" width="668" height="250" onerror="handleImageLoadError(this)"/></div> 1797</div> 1798 <div class="u_1050897595 dmRespCol small-12 large-3 medium-3" id="1050897595"> <div class="dmNewParagraph u_1949670582" data-element-type="paragraph" data-version="5" id="1949670582" style="transition: opacity 1s ease-in-out 0s;"> <h3 class="m-size-22 size-28"><span class="m-font-size-22 font-size-28" style="font-weight: bold; color: var(--color_3); display: unset;">GIRS</span></h3> 1799</div> 1800 <nav class="u_1737436200 unifiednav_vertical effect-bottom2 main-navigation unifiednav dmLinksMenu" role="navigation" layout-main="vertical_nav_layout_2" layout-sub="" data-show-vertical-sub-items="HOVER" id="1737436200" dmle_extension="onelinksmenu" data-element-type="onelinksmenu" data-logo-src="https://lirp.cdn-website.com/6d6b044d/dms3rep/multi/opt/SECONDAIRE_BLANC-1920w.png" alt="" data-nav-structure="VERTICAL" wr="true" icon="true" surround="true" adwords="" navigation-id="unifiedNav"> <ul role="menubar" class="unifiednav__container unav-top  " data-auto="navigation-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/" class="unifiednav__item unav-item unav-top-item    " target="" data-target-page-alias="home"> <span class="nav-item-text " data-link-text="1801         Accueil1802        " data-auto="page-text-style">Accueil<span class="icon icon-angle-down" data-hidden-on-mobile="" data-hidden-on-desktop="" data-hidden-on-tablet=""></span> 1803</span> 1804</a> 1805</li> 1806 <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/contact" class="unifiednav__item unav-item unav-top-item    " target="" data-target-page-alias="contact"> <span class="nav-item-text " data-link-text="Nous joindre" data-auto="page-text-style">Nous joindre<span class="icon icon-angle-down" data-hidden-on-mobile="" data-hidden-on-desktop="" data-hidden-on-tablet=""></span> 1807</span> 1808</a> 1809</li> 1810</ul> 1811</nav> 1812</div> 1813 <div class="dmRespCol large-3 medium-3 small-12" id="1584149102"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1433235051" style="transition: opacity 1s ease-in-out 0s;"> <h3><span style="display: unset; font-weight: bold; color: var(--color_3);">Les services</span></h3> 1814</div> 1815 <nav class="u_1889817761 unifiednav_vertical effect-bottom2 main-navigation unifiednav dmLinksMenu" role="navigation" layout-main="vertical_nav_layout_2" layout-sub="" data-show-vertical-sub-items="HOVER" id="1889817761" dmle_extension="onelinksmenu" data-element-type="onelinksmenu" data-logo-src="https://lirp.cdn-website.com/6d6b044d/dms3rep/multi/opt/SECONDAIRE_BLANC-1920w.png" alt="" data-nav-structure="VERTICAL" wr="true" icon="true" surround="true" adwords="" navigation-id="unifiedNav"> <ul role="menubar" class="unifiednav__container unav-top  " data-auto="navigation-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/representation-au-tal" class="unifiednav__item unav-item unav-top-item    " target="" data-target-page-alias="representation-au-tal"> <span class="nav-item-text " data-link-text="Représentation au TAL" data-auto="page-text-style">Repr&eacute;sentation au TAL<span class="icon icon-angle-down" data-hidden-on-mobile="" data-hidden-on-desktop="" data-hidden-on-tablet=""></span> 1816</span> 1817</a> 1818</li> 1819 <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/soumissions" class="unifiednav__item unav-item unav-top-item    " target="" data-target-page-alias="soumissions"> <span class="nav-item-text " data-link-text="Propriétaires" data-auto="page-text-style">Propri&eacute;taires<span class="icon icon-angle-down" data-hidden-on-mobile="" data-hidden-on-desktop="" data-hidden-on-tablet=""></span> 1820</span> 1821</a> 1822</li> 1823</ul> 1824</nav> 1825</div> 1826 <div class="dmRespCol large-3 medium-3 small-12" id="1792928138"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1244885576" style="transition: opacity 1s ease-in-out 0s;"> <h3><span style="display: unset; font-weight: bold; color: var(--color_3);">Contact</span></h3> 1827</div> 1828 <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1892624408" style="transition: opacity 1s ease-in-out 0s;"><p><span style="display: unset; color: var(--color_3);">1421 Rang St Gabriel Nord</span></p><p><span class="" style="display: unset; color: var(--color_3);"><span style="display: unset; color: var(--color_3);">Sainte-Marie</span> 1829</span></p><p><span style="display: unset; color: var(--color_3);">G6E 3A8</span></p><p><span style="display: unset; color: var(--color_3);">(418) 253-0064</span></p><p><span style="display: initial;"><span class="ql-cursor"></span></span></p></div> 1830</div> 1831</div> 1832</div> 1833 <div class="dmRespRow u_1362105655" id="1362105655"> <div class="dmRespColsWrapper" id="1297100399"> <div class="dmRespCol large-12 medium-12 small-12" id="1817119092"> <div class="u_1400759734 widget-1f5975 dmCustomWidget" data-lazy-load="" data-title="" id="1400759734" dmle_extension="custom_extension" data-element-type="custom_extension" icon="false" surround="false" data-widget-id="1f5975986930429f819d4cd2154b5c4a" data-widget-version="25" data-widget-config="eyJyZXZlcnNlRmxhZyI6bnVsbCwiY29weXJpZ2h0VGV4dCI6IjxwIGNsYXNzPVwicnRlQmxvY2tcIj5HZXN0aW9uIEltbW9iaWxpw6hyZSBkZSBsYSBSaXZlIFN1ZCAyMDI1IC0gVG91cyBkcm9pdHMgcsOpc2VydsOpczwvcD4ifQ=="> <div class="copyright"> <div>&copy; 2026&nbsp;</div> 1834 <div><p class="rteBlock">Gestion Immobili&egrave;re de la Rive Sud 2025 - Tous droits r&eacute;serv&eacute;s</p></div> 1835</div> 1836</div> 1837</div> 1838</div> 1839</div> 1840</div> 1841 <div id="1236746004" dmle_extension="powered_by" data-element-type="powered_by" icon="true" surround="false"></div> 1842</div> 1843</div> 1844</div> 1845</div> 1846</div> 1847</div> 1848</div> 1849</div> 1850</div> 18511852    </div>1853</div>1854<!--  Add full CSS and Javascript before the close tag of the body if needed -->185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893<!-- ========= JS Section ========= -->1894<script>1895    var isWLR = true;18961897    window.customWidgetsFunctions = {};1898    window.customWidgetsStrings = {};1899    window.collections = {};1900    window.currentLanguage = "FRENCH"1901    window.isSitePreview = false;1902</script>1903190419051906<script>1907    window.customWidgetsFunctions["1f5975986930429f819d4cd2154b5c4a~25"] = function (element, data, api) {1908        null1909    };1910</script>191119121913<script type="text/javascript">19141915    var d_version = "production_6688";1916    var build = "2026-08-06T08_49_03";1917    window['v' + 'ersion'] = d_version;19181919    function buildEditorParent() {1920        window.isMultiScreen = true;1921        window.editorParent = {};1922        window.previewParent = {};1923        window.assetsCacheQueryParam = "?version=2026-08-06T08_49_03";1924        try {1925            var _p = window.parent;1926            if (_p && _p.document && _p.$ && _p.$.dmfw) {1927                window.editorParent = _p;1928            } else if (_p.isSitePreview) {1929                window.previewParent = _p;1930            }1931        } catch (e) {19321933        }1934    }19351936    buildEditorParent();1937</script>193819391940<!-- Load jQuery -->19411942<script type="text/javascript" id='d-js-jquery'1943        src="https://static.cdn-website.com/libs/jquery/jquery-3.7.0.min.js"></script>19441945<!-- End Load jQuery -->194619471948<!-- Injecting site-wide before scripts -->19491950<!-- End Injecting site-wide to the head -->1951195219531954<script>1955    var _jquery = window.$;19561957    var jqueryAliases = ['$', 'jquery', 'jQuery'];19581959    jqueryAliases.forEach((alias) => {1960        Object.defineProperty(window, alias, {1961            get() {1962                return _jquery;1963            },1964            set() {1965                console.warn("Trying to over-write the global jquery object!");1966            }1967        });1968    });1969    window.jQuery.migrateMute = true;1970</script>19711972197319741975<script>1976    window.cookiesNotificationMarkupPreview = ' <div> <p class=\"rteBlock\">Nous utilisons des cookies pour optimiser votre exp&eacute;rience sur notre site web. Pour en savoir plus, veuillez acc&eacute;der &agrave; la page <a value=\"donnees-personnelles\" label=\"\" type=\"page\" href=\"\/donnees-personnelles\" data-runtime-url=\"\/donnees-personnelles\">Confidentialit&eacute;<\/a>.<\/p> \n<\/div> \n';1977</script>19781979<!-- HEAD RT JS Include -->1980<script id='d-js-params'>1981    window.INSITE = window.INSITE || {};1982    window.INSITE.device = "desktop";19831984    window.rtCommonProps = {};1985    rtCommonProps["rt.ajax.ajaxScriptsFix"] =true;1986    rtCommonProps["rt.pushnotifs.sslframe.encoded"] = 'aHR0cHM6Ly97c3ViZG9tYWlufS5wdXNoLW5vdGlmcy5jb20=';1987    rtCommonProps["runtimecollector.url"] = 'https://rtc.multiscreensite.com';1988    rtCommonProps["performance.tabletPreview.removeScroll"] = 'false';1989    rtCommonProps["inlineEditGrid.snap"] =true;1990    rtCommonProps["popup.insite.cookie.ttl"] = '0.5';1991    rtCommonProps["rt.pushnotifs.force.button"] =true;1992    rtCommonProps["common.mapbox.token"] = 'pk.JETON_CAVIARDE_LOUKA';1993    rtCommonProps["common.mapbox.js.override"] =false;1994    rtCommonProps["common.here.appId"] = 'iYvDjIQ2quyEu0rg0hLo';1995    rtCommonProps["common.here.appCode"] = '1hcIxLJcbybmtBYTD9Z1UA';1996    rtCommonProps["isCoverage.test"] =false;1997    rtCommonProps["ecommerce.ecwid.script"] = 'https://app.multiscreenstore.com/script.js';1998    rtCommonProps["common.resources.dist.cdn"] =true;1999    rtCommonProps["common.build.dist.folder"] = 'production/6688';2000    rtCommonProps["common.resources.cdn.host"] = 'https://static.cdn-website.com';2001    rtCommonProps["common.resources.folder"] = 'https://static.cdn-website.com/mnlt/production/6688';2002    rtCommonProps["common.fonts.api.v2.url"] = 'https://irp.cdn-website.com/fonts/css2?family=';2003    rtCommonProps["feature.flag.runtime.backgroundSlider.preload.slowly"] =true;2004    rtCommonProps["feature.flag.runtime.newAnimation.enabled"] =true;2005    rtCommonProps["feature.flag.runtime.newAnimation.jitAnimation.enabled"] =true;2006    rtCommonProps["feature.flag.sites.google.analytics.gtag"] =true;2007    rtCommonProps["feature.flag.runOnReadyNewTask"] =true;2008    rtCommonProps["isAutomation.test"] =false;2009    rtCommonProps["booking.cal.api.domain"] = 'api.cal.com';20102011    2012    rtCommonProps['common.mapsProvider'] = 'mapbox';2013    2014    rtCommonProps['common.mapsProvider.version'] = '0.52.0';2015    rtCommonProps['common.geocodeProvider'] = 'mapbox';2016    rtCommonProps['server.for.resources'] = '';2017    rtCommonProps['feature.flag.lazy.widgets'] = true;2018    rtCommonProps['feature.flag.single.wow'] = false;2019    rtCommonProps['feature.flag.disallowPopupsInEditor'] = true;2020    rtCommonProps['feature.flag.mark.anchors'] = true;2021    rtCommonProps['captcha.public.key'] = '6LffcBsUAAAAAMU-MYacU-6QHY4iDtUEYv_Ppwlz';2022    rtCommonProps['captcha.invisible.public.key'] = '6LeiWB8UAAAAAHYnVJM7_-7ap6bXCUNGiv7bBPME';2023    rtCommonProps["images.sizes.small"] =160;2024    rtCommonProps["images.sizes.mobile"] =640;2025    rtCommonProps["images.sizes.tablet"] =1280;2026    rtCommonProps["images.sizes.desktop"] =1920;2027    rtCommonProps["modules.resources.cdn"] =true;2028    rtCommonProps["import.images.storage.imageCDN"] = 'https://irp.cdn-website.com/';2029    rtCommonProps["feature.flag.runtime.inp.threshold"] =150;2030    rtCommonProps["feature.flag.performance.logs"] =false;2031    rtCommonProps["site.widget.form.captcha.type"] = 'g_recaptcha';2032    rtCommonProps["friendly.captcha.site.key"] = 'FCMGSQG9GVNMFS8K';2033    rtCommonProps["cookiebot.mapbox.consent.category"] = 'marketing';2034    rtCommonProps["termly.mapbox.consent.category"] = 'performance';2035    // feature flags that's used out of runtime module (in  legacy files)2036    rtCommonProps["platform.monolith.personalization.dateTimeCondition.popupMsgAction.moveToclient.enabled"] =true;20372038    window.rtFlags = {};2039    rtFlags["unsuspendEcwidStoreOnRuntime.enabled"] =true;2040    rtFlags["scripts.widgetCount.enabled"] =true;2041    rtFlags["fnb.animations.tracking.enabled"] =true;2042    rtFlags["ecom.ecwidNewUrlStructure.enabled"] = false;2043    rtFlags["ecom.ecwid.accountPage.emptyBaseUrl.enabled"] = true;2044    rtFlags["ecom.ecwid.accountPage.repeatOrderRedirect.enabled"] = false;2045    rtFlags["ecom.ecwid.pages.links.disable.listeners"] = true;2046    rtFlags["ecom.ecwid.storefrontV3.enabled"] = false;2047    rtFlags["ecom.ecwid.old.store.fix.facebook.share"] = true;2048    rtFlags["ecom.monolith.legacy.js.api.disabled.for.new.sites"] = false;2049    rtFlags["feature.flag.photo.gallery.exact.size"] =true;2050    rtFlags["geocode.search.localize"] =false;2051    rtFlags["feature.flag.runtime.newAnimation.asyncInit.setTimeout.enabled"] =false;2052    rtFlags["twitter.heightLimit.enabled"] = true;2053    rtFlags["runtime.lottieOverflow"] =false;2054    rtFlags["runtime.monitoring.sentry.ignoreErrors"] = "";2055    rtFlags["streamline.monolith.personalization.supportMultipleConditions.enabled"] =false;2056    rtFlags["flex.animation.design.panel.layout"] =true;2057    rtFlags["runtime.cwv.report.cls.enabled"] =false;2058    rtFlags["runtime.cwv.report.lcp.enabled"] =false;2059    rtFlags["runtime.lcp.preload.selfheal.enabled"] =true;2060    rtFlags["runtime.lcp.preload.bootstrap.enabled"] =false;2061    rtFlags["runtime.lcp.preload.monitor.enabled"] =false;2062    rtFlags["runtime.customwidget.heightpin.enabled"] =true;2063    rtFlags["contact.form.useActiveForm"] =true;2064    rtFlags["contact.form.custom.errors.enabled"] =false;2065    rtFlags["runtime.ssr.productStore.internal.observer"] =true;2066    rtFlags["runtime.ssr.productCustomizations"] =true;2067    rtFlags["runtime.ssr.runtime.filter-sort.newFilterSortWidgetWithOptions.enabled"] =true;2068    rtFlags["runtime.ssr.ssrSlider.jumpThreshold.enabled"] =true;2069    rtFlags["runtime.ssr.native.booker.enabled"] =false;2070    rtFlags["termly.map.consent.overlay.enabled"] =false;2071</script>2072<script src="https://static.cdn-website.com/mnlt/production/6688/_dm/s/rt/dist/scripts/d-js-one-runtime-unified-desktop.min.js"  id="d-js-core"></script>20732074<!-- End of HEAD RT JS Include -->207520762077207820792080208120822083208420852086    <script src="https://static.cdn-website.com/mnlt/production/6688/_dm/s/rt/dist/scripts/d-js-jquery-migrate.min.js" ></script>208720882089209020912092<script>2093    2094    $(window).bind("orientationchange", function (e) {2095        $.layoutManager.initLayout();2096        2097    });2098    $(document).resize(function () {2099        2100    });2101</script>2102210321042105210621072108210921102111211221132114211521162117211821192120<script type="text/javascript" id="d_track_sp">2121    ;(function(p,l,o,w,i,n,g){if(!p[i]){p.GlobalSnowplowNamespace=p.GlobalSnowplowNamespace||[];2122        p.GlobalSnowplowNamespace.push(i);p[i]=function(){(p[i].q=p[i].q||[]).push(arguments)2123        };p[i].q=p[i].q||[];n=l.createElement(o);g=l.getElementsByTagName(o)[0];n.async=1;2124        n.src=w;g.parentNode.insertBefore(n,g)}}(window,document,"script","//d32hwlnfiv2gyn.cloudfront.net/sp-2.0.0-dm-0.1.min.js","snowplow"));2125    window.dmsnowplow  = window.snowplow;21262127    dmsnowplow('newTracker', 'cf', 'd32hwlnfiv2gyn.cloudfront.net', { // Initialise a tracker2128        appId: '6d6b044d'2129    });21302131    // snowplow queries element styles so we wait until CSS calculations are done.2132    requestAnimationFrame(() => {2133        dmsnowplow('trackPageView');2134        _dm_insite.forEach((rule) => {2135            // Specifically in popup only the client knows if it is shown or not so we don't always want to track its impression here2136            // the tracking is in popup.js2137            if (rule.actionName !== "popup") {2138                dmsnowplow('trackStructEvent', 'insite', 'impression', rule.ruleType, rule.ruleId);2139            }2140            window?.waitForDeferred?.('dmAjax', () => {2141                $.DM.events.trigger('event-ruleTriggered', {value: rule});2142            });2143        });2144    });2145</script>2146214721482149<div style="display:none;" id="P6iryBW0Wu"></div>21502151<!-- photoswipe markup -->2152215321542155215621572158215921602161<!-- Root element of PhotoSwipe. Must have class pswp. -->2162<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">21632164    <!-- Background of PhotoSwipe. 2165         It's a separate element as animating opacity is faster than rgba(). -->2166    <div class="pswp__bg"></div>21672168    <!-- Slides wrapper with overflow:hidden. -->2169    <div class="pswp__scroll-wrap">21702171        <!-- Container that holds slides. 2172            PhotoSwipe keeps only 3 of them in the DOM to save memory.2173            Don't modify these 3 pswp__item elements, data is added later on. -->2174        <div class="pswp__container">2175            <div class="pswp__item"></div>2176            <div class="pswp__item"></div>2177            <div class="pswp__item"></div>2178        </div>21792180        <!-- Default (PhotoSwipeUI_Default) interface on top of sliding area. Can be changed. -->2181        <div class="pswp__ui pswp__ui--hidden">21822183            <div class="pswp__top-bar">21842185                <!--  Controls are self-explanatory. Order can be changed. -->21862187                <div class="pswp__counter"></div>21882189                <button class="pswp__button pswp__button--close" title="Fermer (Echap)"></button>21902191                <button class="pswp__button pswp__button--share" title="Partager"></button>21922193                <button class="pswp__button pswp__button--fs" title="Passer en mode plein écran"></button>21942195                <button class="pswp__button pswp__button--zoom" title="Zoom avant / arrière"></button>21962197                <!-- Preloader demo http://codepen.io/dimsemenov/pen/yyBWoR -->2198                <!-- element will get class pswp__preloader--active when preloader is running -->2199                <div class="pswp__preloader">2200                    <div class="pswp__preloader__icn">2201                      <div class="pswp__preloader__cut">2202                        <div class="pswp__preloader__donut"></div>2203                      </div>2204                    </div>2205                </div>2206            </div>22072208            <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">2209                <div class="pswp__share-tooltip"></div> 2210            </div>22112212            <button class="pswp__button pswp__button--arrow--left" title="Précédent (flèche gauche)">2213            </button>22142215            <button class="pswp__button pswp__button--arrow--right" title="Suivant (flèche droite)">2216            </button>22172218            <div class="pswp__caption">2219                <div class="pswp__caption__center"></div>2220            </div>22212222        </div>22232224    </div>22252226</div>2227<div id="fb-root"2228        data-locale="fr_FR"></div>2229<!-- Alias: 6d6b044d -->2230<div class="dmPopupMask" id="dmPopupMask"></div>2231<div id="dmPopup" class="dmPopup">2232	<div class="dmPopupCloseWrapper"> <div class="dmPopupClose dm-common-icons-close oneIcon" onclick="dmHidePopup(event);"></div> </div>2233 	<div class="dmPopupTitle"> <span></span> Share by:</div> 2234	<div class="data"></div>2235</div><script id="d_track_personalization">2236	window?.waitForDeferred?.('dmAjax', () => {2237		// Collects client data and updates cookies used by smart sites2238		window.expireDays = 365;2239		window.visitLength = 30 * 60000;2240		$.setCookie("dm_timezone_offset", (new Date()).getTimezoneOffset(), window.expireDays);2241			setSmartSiteCookiesInternal("dm_this_page_view","dm_last_page_view","dm_total_visits","dm_last_visit");2242	});2243</script>2244<script type="text/javascript">2245    2246    Parameters.NavigationAreaParams.MoreButtonText = 'MORE';2247    2248    Parameters.NavigationAreaParams.LessButtonText = 'LESS';2249    Parameters.HomeLinkText = 'Home';2250    </script>2251<!--  End Script tags -->2252<!--  Site Wide Html Markup -->2253<!--  Site Wide Html Markup -->2254</body>2255</html>2256