SPB Git

spb/lou-ka Public

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

HTML 99.7%
160.4 KB · 2,248 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-amanda-gustave',64        InitialPageUuid: '1c891efaff364293bb3bd1c54e41b06d',65        InitialPageId: '43685125',66        InitialEncodedPageAlias: 'bG9jYXRpb24vc2NvdHQvcnVlLWFtYW5kYS1ndXN0YXZl',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-amanda-gustave">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-amanda-gustave"] #dm [data-show-on-page-only="location/scott/rue-amanda-gustave"] {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 *.u_1188563749755{756	width:100% !important;757}758*#dm *.dmBody div.u_1452815793759{760	background-color:rgba(0,0,0,0.05) !important;761}762*#dm *.dmBody div.u_1840143137763{764	background-color:rgba(0,0,0,0.05) !important;765}766*#dm *.dmBody div.u_1813520727767{768	background-color:rgba(0,0,0,0.05) !important;769}770*#dm *.dmBody div.u_1813669443 .svg771{772	color:var(--color_3) !important;773	fill:var(--color_3) !important;774}775*#dm *.dmBody div.u_1465006226 .svg776{777	color:rgba(255,255,255,1) !important;778	fill:rgba(255,255,255,1) !important;779}780*#dm *.dmBody div.u_1419208593 .svg781{782	color:rgba(255,255,255,1) !important;783	fill:rgba(255,255,255,1) !important;784}785*#dm *.dmBody div.u_1281514457 .color-overlay786{787	background-color:rgba(0,0,0,0) !important;788}789*#dm *.dmBody *.u_1281514457 .flex-direction-nav a:before790{791	font-size:45px !important;792}793*#dm *.dmBody *.u_1281514457 .flex-direction-nav a794{795	width:45px !important;796	height:45px !important;797	overflow:visible !important;798	color:var(--color_3) !important;799}800*#dm *.dmBody *.u_1713239492:before801{802	opacity:0.5 !important;803	background-color:rgb(255,255,255) !important;804}805*#dm *.dmBody *.u_1713239492.before806{807	opacity:0.5 !important;808	background-color:rgb(255,255,255) !important;809}810*#dm *.dmBody *.u_1713239492>.bgExtraLayerOverlay811{812	opacity:0.5 !important;813	background-color:rgb(255,255,255) !important;814}815*#dm *.dmBody div.u_1486697154816{817	border-style:solid !important;818	border-width:2px !important;819	border-color:var(--color_3) !important;820}821*#dm *.dmBody a.u_1331251441 span.text822{823	text-decoration:none !important;824	font-weight:400 !important;825}826*#dm *.dmBody a.u_1331251441:hover span.text827{828	text-decoration:underline !important;829	color:var(--color_1) !important;830}831*#dm *.dmBody a.u_1331251441.hover span.text832{833	text-decoration:underline !important;834	color:var(--color_1) !important;835}836*#dm *.dmBody a.u_1331251441:hover837{838	background-color:var(--color_3) !important;839	background-image:none !important;840}841*#dm *.dmBody a.u_1331251441.hover842{843	background-color:var(--color_3) !important;844	background-image:none !important;845}846*#dm *.dmBody div.u_1884387629847{848	background-color:rgba(0,0,0,0.05) !important;849}850*#dm *.dmBody a.u_1331251441851{852	border-style:solid !important;853	border-width:2px !important;854	border-color:var(--color_3) !important;855	background-color:rgba(0,0,0,0) !important;856	border-radius:20px 20px 20px 20px !important;857}858*#dm *.dmBody div.u_1742636284 .svg859{860	color:var(--color_1) !important;861	fill:var(--color_1) !important;862}863*#dm *.dmBody a.u_1756842165864{865	border-color:var(--color_3) !important;866	border-style:solid !important;867	border-width:2px !important;868	border-radius:20px 20px 20px 20px !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.before876{877	background-color:var(--color_1) !important;878	opacity:0.4 !important;879}880*#dm *.dmBody div.u_1713239492>.bgExtraLayerOverlay881{882	background-color:var(--color_1) !important;883	opacity:0.4 !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}900901</style>902903<style id="pagestyleDevice" type="text/css">904    *#dm *.d-page-1716942098 DIV.dmInner905{906	background-repeat:no-repeat !important;907	background-size:cover !important;908	background-attachment:fixed !important;909	background-position:50% 50% !important;910}911*#dm *.d-page-1716942098 DIV#dmSlideRightNavRight912{913	background-repeat:no-repeat !important;914	background-image:none !important;915	background-size:cover !important;916	background-attachment:fixed !important;917	background-position:50% 50% !important;918}919*#dm *.dmBody div.u_1867569646920{921	height:40px !important;922}923*#dm *.dmBody a.u_1756842165 span.text924{925	font-size:20px !important;926}927*#dm *.dmBody div.u_1937526287928{929	margin-left:20px !important;930	padding-top:0px !important;931	padding-left:20px !important;932	padding-bottom:0px !important;933	margin-top:0px !important;934	margin-bottom:0px !important;935	margin-right:20px !important;936	padding-right:20px !important;937}938*#dm *.dmBody div.u_1121935101939{940	height:600px !important;941}942@media (min-width:768px) and (max-width:1024px) {}943@media (min-width:1025px) {}944*#dm *.dmBody div.u_1221610193945{946	height:20px !important;947}948*#dm *.dmBody div.u_1127078365949{950	height:20px !important;951}952*#dm *.dmBody div.u_1288707829953{954	height:20px !important;955}956*#dm *.dmBody div.u_1337411818957{958	height:20px !important;959}960*#dm *.dmBody div.u_1486647722961{962	float:none !important;963	top:0px !important;964	left:0 !important;965	width:calc(100% - 0px) !important;966	position:relative !important;967	height:auto !important;968	padding-top:2px !important;969	padding-left:0px !important;970	padding-bottom:2px !important;971	min-height:auto !important;972	margin-right:auto !important;973	margin-left:auto !important;974	max-width:100% !important;975	margin-top:8px !important;976	margin-bottom:8px !important;977	padding-right:0px !important;978	min-width:25px !important;979}980*#dm *.dmBody a.u_1331251441981{982	float:none !important;983	top:0px !important;984	left:0 !important;985	width:200px !important;986	position:relative !important;987	height:auto !important;988	padding-top:10px !important;989	padding-left:7px !important;990	padding-bottom:10px !important;991	min-height:40px !important;992	margin-right:auto !important;993	margin-left:auto !important;994	max-width:100% !important;995	margin-top:10px !important;996	margin-bottom:10px !important;997	padding-right:7px !important;998	min-width:0 !important;999	text-align:center !important;1000}1001*#dm *.dmBody a.u_1331251441 span.text1002{1003	font-size:18px !important;1004}1005*#dm *.dmBody div.u_17426362841006{1007	width:90px !important;1008	height:90px !important;1009}1010*#dm *.dmBody div.u_10046391881011{1012	float:none !important;1013	top:0 !important;1014	left:0 !important;1015	width:auto !important;1016	position:relative !important;1017	height:auto !important;1018	padding-top:90px !important;1019	padding-left:40px !important;1020	padding-bottom:90px !important;1021	min-height:auto !important;1022	max-width:100% !important;1023	padding-right:40px !important;1024	min-width:0 !important;1025	text-align:start !important;1026	background-position:50% 50% !important;1027	background-attachment:initial !important;1028	margin-left:0px !important;1029	margin-top:0px !important;1030	margin-bottom:0px !important;1031	margin-right:0px !important;1032}1033*#dm *.dmBody div.u_12815144571034{1035	height:700px !important;1036	width:1200px !important;1037}1038*#dm *.dmBody a.u_17568421651039{1040	float:none !important;1041	top:0px !important;1042	left:0px !important;1043	width:200px !important;1044	position:relative !important;1045	height:auto !important;1046	padding-top:10px !important;1047	padding-left:7px !important;1048	padding-bottom:10px !important;1049	min-height:40px !important;1050	max-width:100% !important;1051	padding-right:7px !important;1052	min-width:0 !important;1053	text-align:center !important;1054	margin-right:866px !important;1055	margin-left:0px !important;1056	margin-top:20px !important;1057	margin-bottom:10px !important;1058}10591060</style>10611062<!-- Flex Sections CSS -->10631064106510661067106810691070<style id="globalFontSizeStyle" type="text/css">1071    .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-25, .size-25, .size-25 > font { font-size: 25px !important; }.font-size-28, .size-28, .size-28 > font { font-size: 28px !important; }1072</style>1073<style id="pageFontSizeStyle" type="text/css">1074</style>10751076107710781079<style id="hideAnimFix">1080  .dmDesktopBody:not(.editGrid) [data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) [data-anim-extended] {1081    visibility: hidden;1082  }10831084  .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-extended] {1085    visibility: hidden !important;1086  }10871088  #dmRoot:not(.editGrid) .flex-element [data-anim-extended] {1089    visibility: hidden;1090  }10911092</style>10931094109510961097<style id="fontFallbacks">1098    @font-face {1099  font-family: "Roboto Fallback";1100  src: local('Arial');1101  ascent-override: 92.6709%;1102  descent-override: 24.3871%;1103  size-adjust: 100.1106%;1104  line-gap-override: 0%;1105 }@font-face {1106  font-family: "Montserrat Fallback";1107  src: local('Arial');1108  ascent-override: 84.9466%;1109  descent-override: 22.0264%;1110  size-adjust: 113.954%;1111  line-gap-override: 0%;1112 }@font-face {1113  font-family: "Lato Fallback";1114  src: local('Arial');1115  ascent-override: 101.3181%;1116  descent-override: 21.865%;1117  size-adjust: 97.4159%;1118  line-gap-override: 0%;1119 }@font-face {1120  font-family: "Pacifico Fallback";1121  src: local('Arial');1122  ascent-override: 140.9687%;1123  descent-override: 49.0091%;1124  size-adjust: 92.4319%;1125  line-gap-override: 0%;1126 }@font-face {1127  font-family: "Courier Prime Fallback";1128  src: local('Arial');1129  ascent-override: 57.5122%;1130  descent-override: 25.1616%;1131  size-adjust: 135.8407%;1132  line-gap-override: 0%;1133 }@font-face {1134  font-family: "Comfortaa Fallback";1135  src: local('Arial');1136  ascent-override: 74.2135%;1137  descent-override: 19.7117%;1138  size-adjust: 118.7115%;1139  line-gap-override: 0%;1140 }1141</style>114211431144<!-- End render the required css and JS in the head section -->1145114611471148114911501151<meta property="og:type" content="website">1152<meta property="og:url" content="https://www.girs.ca/location/scott/rue-amanda-gustave">11531154  <title>1155    Appartements à louer à Scott | GIRS1156  </title>1157  <meta name="description" content="Découvrez des appartements 4½ et 5½ à louer, balcon privé, climatisation, internet illimité et cadre de vie paisible."/>11581159  <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"/>11601161  <meta name="twitter:card" content="summary"/>1162  <meta name="twitter:title" content="Appartements à louer à Scott | GIRS"/>1163  <meta name="twitter:description" content="Découvrez des appartements 4½ et 5½ à louer, balcon privé, climatisation, internet illimité et cadre de vie paisible."/>1164  <meta property="og:description" content="Découvrez des appartements 4½ et 5½ à louer, balcon privé, climatisation, internet illimité et cadre de vie paisible."/>1165  <meta property="og:title" content="Appartements à louer à Scott | GIRS"/>11661167116811691170<!-- SYS- VVNfRElSRUNUX1BST0RVQ1RJT04= -->1171</head>1172117311741175117611771178117911801181118211831184118511861187118811891190119111921193<body id="dmRoot" data-page-alias="location/scott/rue-amanda-gustave"  class="dmRoot dmDesktopBody fix-mobile-scrolling addCanvasBorder dmResellerSite dmLargeBody responsiveTablet "1194      style="padding:0;margin:0;"1195      1196    >11971198119912001201120212031204120512061207120812091210121112121213<!-- ========= Site Content ========= -->1214<div id="dm" class='dmwr'>1215    1216    <div class="dm_wrapper standard-var5 widgetStyle-3 standard">1217         <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> 1218</div> 1219</div> 1220 <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> 1221</div> 1222 <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> 1223</span> 1224</a> 1225 <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> 1226</span> 1227</a> 1228 <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   dmNavItemSelected  dmUDNavigationItem_010101104557  " target="" data-target-page-alias="" aria-current="page" data-auto="selected-page"> <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> 1229</span> 1230</a> 1231</li> 1232 <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   dmUDNavigationItem_010101164518  " target="" data-target-page-alias=""> <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> 1233</span> 1234</a> 1235</li> 1236 <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> 1237</span> 1238</a> 1239</li> 1240</ul> 1241</li> 1242 <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> 1243</span> 1244</a> 1245 <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> 1246</span> 1247</a> 1248</li> 1249</ul> 1250</li> 1251 <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> 1252</span> 1253</a> 1254 <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> 1255</span> 1256</a> 1257</li> 1258 <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> 1259</span> 1260</a> 1261</li> 1262</ul> 1263</li> 1264 <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> 1265</span> 1266</a> 1267 <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> 1268</span> 1269</a> 1270</li> 1271</ul> 1272</li> 1273 <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> 1274</span> 1275</a> 1276 <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> 1277</span> 1278</a> 1279</li> 1280</ul> 1281</li> 1282</ul> 1283</li> 1284 <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> 1285</span> 1286</a> 1287 <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> 1288</span> 1289</a> 1290</li> 1291</ul> 1292</li> 1293 <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> 1294</span> 1295</a> 1296 <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> 1297</span> 1298</a> 1299</li> 1300</ul> 1301</li> 1302 <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> 1303</span> 1304</a> 1305</li> 1306 <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> 1307</span> 1308</a> 1309</li> 1310</ul> 1311</nav> 1312</div> 1313</div> 1314</div> 1315 <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> 1316<b> <span style="text-decoration-line: underline;"></span> 1317<span class="font-size-22 lh-1"> <span style="text-decoration-line: underline;"></span> 1318 <div style="text-align: left;"> <span style=""> <span style="text-decoration-line: underline;"></span> 1319<span style=""> <span style="text-decoration-line: underline;"></span> 1320<font style="color: rgb(255, 255, 255);"> <span style="text-decoration-line: underline;"></span> 1321<span style="" class="font-size-22 lh-1"> <span style="text-decoration-line: underline;"></span> 1322<b style=""> <span style="text-decoration-line: underline;"> <span style="font-weight: 700; font-size: 20px;">Nous contacter</span></span> 1323</b> 1324</span> 1325</font> 1326</span> 1327</span> 1328</div> 1329</span> 1330</b> 1331</font> 1332</div> 1333</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> 1334</a> 1335 <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> 1336</a> 1337</div> 1338</div> 1339</div> 1340 <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> 1341</span> 1342 <span class="text">Appelez-nous</span> 1343</a> 1344</div> 1345</div> 1346</div> 1347</div> 1348 <div class="layout-drawer-overlay" id="layout-drawer-overlay"></div> 1349</div> 1350 <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> 1351</div> 1352</div> 1353</div> 1354</div> 1355 <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> 1356 <span class="hamburger__slice"></span> 1357 <span class="hamburger__slice"></span> 1358</button> 1359 <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> 1360 <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> 1361</a> 1362 <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> 1363</a> 1364 <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> 1365</a> 1366</div> 1367</div> 1368</div> 1369</div> 1370 <div class="u_1980771558 dmRespCol small-12 large-2 medium-2" id="1980771558"> <span id="1064055669"></span> 1371 <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> 1372</svg> 1373</div> 1374</div> 1375 <div class="u_1016959372 dmRespCol small-12 large-2 medium-2" id="1016959372"> <span id="1845699766"></span> 1376 <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> 1377</div> 1378</div> 1379 <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> 1380</div> 1381</div> 1382 <div class="u_1522799502 dmRespCol small-12 large-10 medium-10" id="1522799502"> <span id="1481163886"></span> 1383 <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> 1384</span> 1385</a> 1386 <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> 1387</span> 1388</a> 1389 <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   dmNavItemSelected  dmUDNavigationItem_010101104557  " target="" data-target-page-alias="" aria-current="page" data-auto="selected-page"> <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> 1390</span> 1391</a> 1392</li> 1393 <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   dmUDNavigationItem_010101164518  " target="" data-target-page-alias=""> <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> 1394</span> 1395</a> 1396</li> 1397 <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> 1398</span> 1399</a> 1400</li> 1401</ul> 1402</li> 1403 <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> 1404</span> 1405</a> 1406 <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> 1407</span> 1408</a> 1409</li> 1410</ul> 1411</li> 1412 <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> 1413</span> 1414</a> 1415 <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> 1416</span> 1417</a> 1418</li> 1419 <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> 1420</span> 1421</a> 1422</li> 1423</ul> 1424</li> 1425 <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> 1426</span> 1427</a> 1428 <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> 1429</span> 1430</a> 1431</li> 1432</ul> 1433</li> 1434 <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> 1435</span> 1436</a> 1437 <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> 1438</span> 1439</a> 1440</li> 1441</ul> 1442</li> 1443</ul> 1444</li> 1445 <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> 1446</span> 1447</a> 1448 <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> 1449</span> 1450</a> 1451</li> 1452</ul> 1453</li> 1454 <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> 1455</span> 1456</a> 1457 <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> 1458</span> 1459</a> 1460</li> 1461</ul> 1462</li> 1463 <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> 1464</span> 1465</a> 1466</li> 1467 <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> 1468</span> 1469</a> 1470</li> 1471</ul> 1472</nav> 1473</div> 1474</div> 1475</div> 1476</div> 1477</div> 1478</div> 1479 <div dmwrapped="true" id="dmFirstContainer" class="dmBody u_dmStyle_template_location/scott/rue-amanda-gustave 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> 1480</div> 1481</div> 1482</div> 1483 <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+1920x1080-1920w.jpg" alt="Un grand immeuble d'appartements avec des voitures garées devant" id="1697979973" class="" width="1920" height="1080" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/Place+%C3%89vo+1920x1080.jpg" onerror="handleImageLoadError(this)"/></div> 1484</div> 1485</div> 1486</div> 1487 <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_1742636284" data-element-type="graphic" data-widget-type="graphic" id="1742636284"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1903276333" class="svg u_1903276333" data-icon-custom="true"> <title id="1371910016">Une silhouette noire et blanche d'une ville avec trois b&acirc;timents et un arbre.</title> 1488 <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> 1489</svg> 1490</div> 1491 <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1844873187" style="transition: opacity 1s ease-in-out;"> <h1 class="text-align-center"><strong style="font-weight: bold; display: unset; color: var(--color_2);">Rue Amanda-Gustave</strong></h1> 1492</div> 1493</div> 1494</div> 1495</div> 1496 <div class="dmRespRow" id="1299034309"> <div class="dmRespColsWrapper" id="1051852715"> <div class="dmRespCol large-6 medium-6 small-12" id="1199127370"> <div class="dmNewParagraph ql-disabled" data-element-type="paragraph" data-version="5" id="1692095137" style="transition: opacity 1s ease-in-out;"><p style="line-height: 1.2;"><span style="display: initial;">Situ&eacute; dans la charmante municipalit&eacute; de Scott, au c&oelig;ur de la r&eacute;gion de Chaudi&egrave;re-Appalaches, Place &Eacute;vo est un projet immobilier moderne con&ccedil;u pour offrir un cadre de vie exceptionnel.</span></p><p style="line-height: 1.2;"><span style="display: initial;"><br/></span></p><p style="line-height: 1.2;"><span style="display: initial;">Nos appartements haut de gamme allient espace, confort et tranquillit&eacute;. Vous profiterez d&rsquo;espaces de vie g&eacute;n&eacute;reux, insonoris&eacute;s, d&rsquo;un balcon priv&eacute; et d&rsquo;un syst&egrave;me de climatisation, garantissant une qualit&eacute; de vie optimale en toute saison.</span></p><p style="line-height: 1.2;"><span style="display: initial;"><br/></span></p><p style="line-height: 1.2;"><span style="display: initial;">Id&eacute;alement situ&eacute;s &agrave; proximit&eacute; des services et commodit&eacute;s essentielles, nos logements vous permettent de simplifier votre quotidien et de consacrer plus de temps &agrave; ce qui compte vraiment pour vous.</span></p></div> 1497</div> 1498 <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 style="line-height: 1.2;"><span class="" style="display: initial;"><span style="display: initial;">Que vous soyez seul, en couple ou en famille, nos spacieux appartements sont con&ccedil;us pour r&eacute;pondre &agrave; vos attentes. Offrant des</span> 1499</span><strong style="display: initial; font-weight: bold;">4 &frac12; et 5 &frac12;</strong> 1500 <span style="display: initial;">modernes, ils allient confort, luminosit&eacute; et fonctionnalit&eacute;, s&rsquo;adaptant parfaitement &agrave; tous les modes de vie.</span></p><p style="line-height: 1.2;"><span style="display: initial;"><br/></span></p><p style="line-height: 1.2;"><span style="display: initial;">Place &Eacute;vo, situ&eacute; sur la rue Amanda Gustave, vous offre un cadre de vie paisible tout en restant proche des services essentiels. &Agrave; quelques pas d&rsquo;un CPE, d&rsquo;une &eacute;cole et de plusieurs commerces, vous b&eacute;n&eacute;ficiez d&rsquo;un environnement pratique et s&eacute;curitaire.</span></p><p style="line-height: 1.2;"><span style="display: initial;"><br/></span></p><p style="line-height: 1.2;"><span style="display: initial;">En choisissant Place &Eacute;vo, vous profitez du meilleur des deux mondes : la tranquillit&eacute; et la beaut&eacute; de la nature, tout en restant &agrave; proximit&eacute; de la ville. Vivez l&rsquo;&eacute;quilibre parfait entre confort, accessibilit&eacute; et qualit&eacute; de vie !</span></p></div> 1501</div> 1502</div> 1503</div> 1504 <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> 1505</div> 1506</div> 1507</div> 1508 <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> 1509</div> 1510</div> 1511 <div class="u_1871439213 dmRespCol small-12 large-8 medium-8" id="1871439213"> <div class="dmNewParagraph ql-disabled" data-element-type="paragraph" data-version="5" id="1047322935"><p style="line-height: 1.2;"><span class="" style="display: initial;"><span style="display: initial;">Votre condo locatif&nbsp; a &eacute;t&eacute; pens&eacute; pour vous offrir une qualit&eacute; de vie incomparable, avec des petits plus qui font toute la diff&eacute;rence. Profitez d&rsquo;un espace moderne et raffin&eacute;, dot&eacute; d&rsquo;une thermopompe pour un confort optimal en toute saison, d&rsquo;une insonorisation sup&eacute;rieure garantissant une tranquillit&eacute; in&eacute;gal&eacute;e, et d&rsquo;un grand balcon priv&eacute; pour savourer pleinement chaque moment de d&eacute;tente.&nbsp;</span> 1512</span></p><p style="line-height: 1.2;"><span style="display: initial;"><br/></span></p><p style="line-height: 1.2;"><span style="display: initial;">Chaque pi&egrave;ce a &eacute;t&eacute; con&ccedil;ue pour &ecirc;tre spacieuse, lumineuse et fonctionnelle, afin de cr&eacute;er un environnement o&ugrave; vous vous sentirez bien chez vous, jour apr&egrave;s jour.</span></p></div> 1513</div> 1514</div> 1515</div> 1516 <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="1619619855">Un dessin en noir et blanc d'un balcon avec deux fen&ecirc;tres et une balustrade.</title> 1517 <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> 1518</svg> 1519</div> 1520 <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="font-weight: bold; display: initial;">BALCON PRIV&Eacute;</strong></p></div> 1521</div> 1522 <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="1006219918">Un cube noir et blanc avec une porte et des fen&ecirc;tres sur fond blanc.</title> 1523 <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> 1524</svg> 1525</div> 1526 <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; font-weight: bold;">UNIT&Eacute; SPACIEUSE</strong><span style="display: initial;"><br/></span></p></div> 1527</div> 1528 <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="1082425287">Un dessin en noir et blanc d'un flocon de neige sur fond blanc.</title> 1529 <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> 1530 <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> 1531 <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> 1532 <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> 1533 <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> 1534 <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> 1535 <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> 1536 <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> 1537 <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> 1538 <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> 1539 <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> 1540 <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> 1541 <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> 1542 <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> 1543 <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> 1544 <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> 1545 <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> 1546 <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> 1547 <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> 1548 <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> 1549 <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> 1550 <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> 1551 <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> 1552 <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> 1553</g> 1554</svg> 1555</div> 1556 <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> 1557</div> 1558</div> 1559</div> 1560 <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="1549763217">Un dessin en noir et blanc d'une cuisine avec une cuisini&egrave;re et des tiroirs.</title> 1561 <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> 1562</svg> 1563</div> 1564 <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> 1565</div> 1566 <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> 1567</svg> 1568</a> 1569</div> 1570 <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> 1571</div> 1572 <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"> <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"> <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> 1573 <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> 1574 <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> 1575 <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> 1576 <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> 1577 <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> 1578 <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> 1579</g> 1580</svg> 1581</a> 1582</div> 1583 <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="font-weight: bold; display: unset; color: var(--color_1);">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> 1584</div> 1585</div> 1586</div> 1587 <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> 1588</div> 1589</div> 1590</div> 1591 <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> 1592</div> 1593</div> 1594 <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 class="" style="display: initial; color: var(--color_3);"><span style="display: initial; color: var(--color_3);">Vivre &agrave; Place &Eacute;vo, c&rsquo;est choisir un espace de vie con&ccedil;u pour votre confort et votre tranquillit&eacute; d&rsquo;esprit. Bien plus qu&rsquo;un appartement, c&rsquo;est un cadre moderne qui allie praticit&eacute;, s&eacute;curit&eacute; et bien-&ecirc;tre au quotidien.&nbsp;</span> 1595</span></p><p><span style="display: initial;"><span class="ql-cursor"></span></span><span style="color: var(--color_3); display: initial;"><br/></span></p><p><span style="display: initial; color: var(--color_3);">Profitez d&rsquo;espaces intelligemment am&eacute;nag&eacute;s et de commodit&eacute;s recherch&eacute;es qui simplifient votre routine. Que ce soit pour le t&eacute;l&eacute;travail avec internet illimit&eacute;, la s&eacute;curit&eacute; de votre famille dans un environnement enti&egrave;rement s&eacute;curis&eacute;, ou encore le stationnement adapt&eacute; aux v&eacute;hicules &eacute;lectriques, tout a &eacute;t&eacute; pens&eacute; pour r&eacute;pondre &agrave; vos besoins.&nbsp;</span></p></div> 1596</div> 1597</div> 1598</div> 1599 <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="1456720990">Une ic&ocirc;ne en noir et blanc d'un &eacute;clair dans un carr&eacute;.</title> 1600 <path d="m31.562 76.363h-9.3164c-2.293 0-4.4883-0.91016-6.1094-2.5312-1.6211-1.6172-2.5312-3.8164-2.5312-6.1094v-55.957c0-2.293 0.91016-4.4922 2.5312-6.1094 1.6211-1.6211 3.8164-2.5312 6.1094-2.5312h55.508c2.293 0 4.4883 0.91016 6.1094 2.5312 1.6211 1.6172 2.5312 3.8164 2.5312 6.1094v55.957c0 2.293-0.91016 4.4922-2.5312 6.1094-1.6211 1.6211-3.8164 2.5312-6.1094 2.5312h-9.2266v6.4258c0 0.31641 0.25781 0.57031 0.57031 0.57031h6.4766c1.793 0 3.5117 0.71094 4.7773 1.9805 1.2695 1.2656 1.9805 2.9844 1.9805 4.7734v0.003907c0 1.793-0.71094 3.5117-1.9805 4.7773-1.2656 1.2695-2.9844 1.9805-4.7773 1.9805h-7.1562c-7.4023 0-13.402-6-13.402-13.406v-7.1055h-9.9375v7.1055c0 7.4062-6 13.406-13.402 13.406h-7.1602c-1.7891 0-3.5078-0.71094-4.7734-1.9805-1.2695-1.2656-1.9805-2.9844-1.9805-4.7773v-0.003907c0-1.7891 0.71094-3.5078 1.9805-4.7734 1.2656-1.2695 2.9844-1.9805 4.7734-1.9805h6.4766c0.31641 0 0.57031-0.25391 0.57031-0.57031zm-9.3164-4.1641h55.508c1.1875 0 2.3242-0.47266 3.1641-1.3125 0.83984-0.83984 1.3086-1.9766 1.3086-3.1641v-55.957c0-1.1875-0.46875-2.3242-1.3086-3.1641-0.83984-0.83984-1.9766-1.3125-3.1641-1.3125h-55.508c-1.1875 0-2.3242 0.47266-3.1641 1.3125-0.83984 0.83984-1.3086 1.9766-1.3086 3.1641v55.957c0 1.1875 0.46875 2.3242 1.3086 3.1641 0.83984 0.83984 1.9766 1.3125 3.1641 1.3125zm36.938 4.1641v7.1055c0 5.1016 4.1328 9.2383 9.2344 9.2383h7.1562c0.6875 0 1.3477-0.27344 1.832-0.75781s0.75781-1.1445 0.75781-1.832v-0.003907c0-0.68359-0.27344-1.3438-0.75781-1.8281s-1.1445-0.75781-1.832-0.75781h-6.4766c-2.6133 0-4.7344-2.1211-4.7344-4.7383v-6.4258zm-23.453 0v6.4258c0 2.6172-2.1211 4.7383-4.7383 4.7383h-6.4766c-0.68359 0-1.3438 0.27344-1.8281 0.75781-0.48828 0.48438-0.75781 1.1445-0.75781 1.8281v0.003907c0 0.6875 0.26953 1.3477 0.75781 1.832 0.48438 0.48438 1.1445 0.75781 1.8281 0.75781h7.1602c5.0977 0 9.2344-4.1367 9.2344-9.2383v-7.1055zm5.918-57.633c1.7422-2.9883 4.9414-4.8242 8.3984-4.8242s6.6523 1.8359 8.3945 4.8242l18.805 32.234c1.7539 3.0039 1.7656 6.7188 0.03125 9.7383-1.7305 3.0156-4.9492 4.8789-8.4297 4.8789h-37.605c-3.4805 0-6.6953-1.8633-8.4297-4.8789-1.7305-3.0195-1.7188-6.7344 0.035156-9.7383zm3.6016 2.0977-18.805 32.234c-1 1.7188-1.0078 3.8398-0.019531 5.5664 0.99219 1.7227 2.8281 2.7852 4.8164 2.7852h37.605c1.9883 0 3.8281-1.0625 4.8164-2.7852 0.99219-1.7266 0.98438-3.8477-0.015624-5.5664l-18.805-32.234c-0.99609-1.707-2.8203-2.7539-4.7969-2.7539s-3.8047 1.0469-4.7969 2.7539zm3.2031 3.5469c0.50391-1.0312 1.7539-1.4609 2.7852-0.95703 1.0352 0.50391 1.4609 1.7539 0.95703 2.7891l-4.9258 10.078h8.7969c0.72266 0 1.3945 0.375 1.7734 0.98828 0.37891 0.61719 0.41406 1.3867 0.089844 2.0312l-8.7734 17.438c-0.51562 1.0273-1.7695 1.4414-2.7969 0.92578-1.0273-0.51953-1.4414-1.7734-0.92578-2.7969l7.2539-14.418h-8.7539c-0.72266 0-1.3867-0.37109-1.7695-0.98047-0.37891-0.60938-0.41797-1.375-0.10547-2.0195z" fill-rule="evenodd"></path> 1601</svg> 1602</div> 1603 <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="font-weight: bold; display: initial; color: var(--color_3);">STATIONNEMENT POUR</strong></p><p class="text-align-center" style="line-height: 1.6; letter-spacing: 0.05em;"><strong style="font-weight: bold; display: initial; color: var(--color_3);">V&Eacute;HICULES &Eacute;LECTRIQUE</strong><span style="display: initial;"><br/></span></p></div> 1604</div> 1605 <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="1337564674">Une ic&ocirc;ne en noir et blanc d'un signal wifi sur fond blanc.</title> 1606 <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> 1607 <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> 1608 <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> 1609 <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> 1610</g> 1611</svg> 1612</div> 1613 <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> 1614 </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> 1615</div> 1616 <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="1778282744">Un bouclier noir et blanc avec une coche dessus.</title> 1617 <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> 1618 <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> 1619</svg> 1620</div> 1621 <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> 1622</div> 1623</div> 1624</div> 1625 <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> 1626</div> 1627</div> 1628</div> 1629 <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> 1630</div> 1631</div> 1632</div> 1633</div> 1634 <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 class="size-25 m-size-20"><span style="display: unset;" class="font-size-25 m-font-size-20">D&eacute;couvrez votre futur condo</span></h3> 1635 <h3 class="size-25 m-size-20"><span style="display: unset;" class="font-size-25 m-font-size-20">gr&acirc;ce &agrave; une visite virtuelle</span></h3> 1636</div> 1637</div> 1638 <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 appartements de Place &Eacute;vo sont dans un immeuble moderne et haut de gamme. Les logements ont &eacute;t&eacute; con&ccedil;us avec un souci du d&eacute;tail pour que tous les &eacute;l&eacute;ments soient de qualit&eacute; et en parfaite harmonie.</span></p></div> 1639</div> 1640</div> 1641</div> 1642 <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="1470942441"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Place-Evo-Scott-Espace-de-vie-1920w.jpg" id="1496229679" alt="Un salon vide avec parquet et portes coulissantes en verre." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1489467496"></div> 1643 <div class="slide-inner" id="1569793132"> <div class="text-wrapper" id="1772581207"> <h3 class="slide-title" id="1489150389">Titre de la diapositive</h3> 1644 <div class="slide-text richText" id="1089398377">&Eacute;crivez votre l&eacute;gende ici</div> 1645</div> 1646 <div class="slide-button dmWidget clearfix" id="1157354380"> <span class="iconBg" id="1344832712"> <span class="icon hasFontIcon icon-star" id="1866486284"></span> 1647</span> 1648 <span class="text" id="1802551055">Bouton</span> 1649</div> 1650</div> 1651</li> 1652 <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1681607679"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Place-Evo-Scott-Cuisine-1920w.jpg" id="1917636485" alt="Une cuisine avec un grand îlot et des armoires en bois" onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1437460489"></div> 1653 <div class="slide-inner" id="1911049650"> <div class="text-wrapper" id="1085920392"> <h3 class="slide-title" id="1856666214">Titre de la diapositive</h3> 1654 <div class="slide-text richText" id="1325640386">&Eacute;crivez votre l&eacute;gende ici</div> 1655</div> 1656 <div class="slide-button dmWidget clearfix" id="1286039295"> <span class="iconBg" id="1154044701"> <span class="icon hasFontIcon icon-star" id="1110979274"></span> 1657</span> 1658 <span class="text" id="1074354225">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="1375924287"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Place-Evo-Scott-Chambre-1920w.jpg" id="1039160764" alt="Une pièce vide avec du parquet et deux fenêtres." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1622898354"></div> 1663 <div class="slide-inner" id="1683797867"> <div class="text-wrapper" id="1267156158"> <h3 class="slide-title" id="1368344863">Titre de la diapositive</h3> 1664 <div class="slide-text richText" id="1337231061">&Eacute;crivez votre l&eacute;gende ici</div> 1665</div> 1666 <div class="slide-button dmWidget clearfix" id="1658911192"> <span class="iconBg" id="1374479536"> <span class="icon hasFontIcon icon-star" id="1170105050"></span> 1667</span> 1668 <span class="text" id="1307375337">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="1616631472"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Place-Evo-Scott-Chambre-vue-2-1920w.jpg" id="1916216296" alt="Une chambre vide avec du parquet et une grande fenêtre." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1144773400"></div> 1673 <div class="slide-inner" id="1958388082"> <div class="text-wrapper" id="1378510312"> <h3 class="slide-title" id="1398923049">Titre de la diapositive</h3> 1674 <div class="slide-text richText" id="1464508507">&Eacute;crivez votre l&eacute;gende ici</div> 1675</div> 1676 <div class="slide-button dmWidget clearfix" id="1924565483"> <span class="iconBg" id="1017329539"> <span class="icon hasFontIcon icon-star" id="1787273661"></span> 1677</span> 1678 <span class="text" id="1368935803">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="1837865636"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Place-Evo-Scott-Salle-de-bain-1920w.jpg" id="1689706157" alt="Une salle de bain avec lavabo, WC et miroir." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1362809267"></div> 1683 <div class="slide-inner" id="1026596763"> <div class="text-wrapper" id="1803129330"> <h3 class="slide-title" id="1455100739">Titre de la diapositive</h3> 1684 <div class="slide-text richText" id="1790395458">&Eacute;crivez votre l&eacute;gende ici</div> 1685</div> 1686 <div class="slide-button dmWidget clearfix" id="1575252510"> <span class="iconBg" id="1187304804"> <span class="icon hasFontIcon icon-star" id="1048562269"></span> 1687</span> 1688 <span class="text" id="1151671894">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="1306802832"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Place-Evo-Scott-Cuisine-vue-2-1920w.jpg" id="1978530718" alt="Une cuisine avec un grand îlot et un évier." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1133434316"></div> 1693 <div class="slide-inner" id="1920407718"> <div class="text-wrapper" id="1370453560"> <h3 class="slide-title" id="1830097412">Titre de la diapositive</h3> 1694 <div class="slide-text richText" id="1610934805">&Eacute;crivez votre l&eacute;gende ici</div> 1695</div> 1696 <div class="slide-button dmWidget clearfix" id="1901311579"> <span class="iconBg" id="1364644359"> <span class="icon hasFontIcon icon-star" id="1309008053"></span> 1697</span> 1698 <span class="text" id="1373239121">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="1798310576"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Place-Evo-Scott-Espace-de-vie-vue-2-1920w.jpg" id="1242322800" alt="Un salon avec parquet et une cuisine en arrière plan." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1067187689"></div> 1703 <div class="slide-inner" id="1283928990"> <div class="text-wrapper" id="1182501037"> <h3 class="slide-title" id="1688438730">Titre de la diapositive</h3> 1704 <div class="slide-text richText" id="1946749916">&Eacute;crivez votre l&eacute;gende ici</div> 1705</div> 1706 <div class="slide-button dmWidget clearfix" id="1744173115"> <span class="iconBg" id="1853076137"> <span class="icon hasFontIcon icon-star" id="1061044123"></span> 1707</span> 1708 <span class="text" id="1191023143">Bouton</span> 1709</div> 1710</div> 1711</li> 1712</ul> 1713</div> 1714</div> 1715</div> 1716</div> 1717</div> 1718 <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> 1719</span><span style="display: initial;"><br/></span></h2> 1720</div> 1721 <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> 1722</span></p></div> 1723 <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> 1724</span> 1725 <span class="text" id="1591898475">Contactez-nous</span> 1726</a> 1727</div> 1728</div> 1729</div> 1730 <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> 1731</div> 1732</div> 1733</div> 1734</div> 1735 <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, Place &Eacute;vo saura combler vos envies !</span></h3> 1736</div> 1737</div> 1738 <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 class="" style="display: initial;"><span style="display: initial;">Situ&eacute; au c&oelig;ur de la r&eacute;gion de Chaudi&egrave;re-Appalaches, dans la municipalit&eacute; de Scott, Place &Eacute;vo vous propose un environnement o&ugrave; confort et qualit&eacute; de vie se rencontrent. Offrez-vous le privil&egrave;ge de vivre dans un immeuble locatif moderne, au sein d&rsquo;une communaut&eacute; dynamique et accueillante.&nbsp;</span> 1739</span></p><p><span style="display: initial;"><br/></span></p><p><span class="" style="display: initial;"><span style="display: initial;">&Agrave; proximit&eacute; de toutes les commodit&eacute;s essentielles&nbsp; : restaurants, &eacute;piceries, salons de coiffure et bien plus ! Place &Eacute;vo b&eacute;n&eacute;ficie d&rsquo;un emplacement strat&eacute;gique qui facilite votre quotidien.&nbsp;</span> 1740</span></p><p><span style="display: initial;"><span class="ql-cursor"></span><br/></span></p><p><span style="display: initial;">Mais ce n&rsquo;est pas tout ! Ici, la tranquillit&eacute; et la nature sont &agrave; port&eacute;e de main. Profitez d&rsquo;un cadre paisible pour vous d&eacute;tendre, respirer l&rsquo;air frais et savourer chaque instant. Que ce soit pour un pique-nique en famille, une balade en plein air ou un moment de d&eacute;tente au soleil, ces grands espaces vous offrent un v&eacute;ritable havre de paix.&nbsp;</span></p></div> 1741</div> 1742</div> 1743</div> 1744 <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.50864" data-lng="-71.089492" data-address="Rue Amanda-Gustave, 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="Rue Amanda-Gustave, Scott, Quebec G0S 3G0, Canada" geocompleteaddress="Rue Amanda-Gustave, 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.089492" lat="46.50864" zoom="13"> <div class="mapContainer" style="height: 100%; width: 100%; overflow: hidden; z-index: 0;"></div> 1745</div> 1746 <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1364636678" style="transition: opacity 1s ease-in-out;"><p style="line-height: normal;" class="text-align-center"><span style="font-style: italic; display: unset;">40, 60 et 80 rue Jean-Baptiste. 98 et 108, rue Amanda-Gustave &agrave;&nbsp;</span><strong style="font-style: italic; display: unset; font-weight: bold;">Scott</strong></p></div> 1747</div> 1748</div> 1749</div> 1750 <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> 1751</div> 1752</div> 1753</div> 1754 <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> 1755</div> 1756 <div class="bgExtraLayerOverlay"></div> 1757 <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> 1758</span></h2> 1759 <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> 1760</div> 1761 <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> 1762</span> 1763 <span class="text" id="1461344268">JE PLANIFIE !</span> 1764</a> 1765</div> 1766</div> 1767</div> 1768</div> 1769</div> 1770</div> 1771</div> 1772 <div class="sticky-widgets-container-global" id="1915928664"></div> 1773 <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> 1774</div> 1775</div> 1776</div> 1777 <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> 1778</div> 1779 <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> 1780</div> 1781 <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> 1782</div> 1783 <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> 1784</div> 1785</div> 1786</div> 1787 <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> 1788 <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> 1789</div> 1790 <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> 1791</div> 1792 <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="1793         Accueil1794        " 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> 1795</span> 1796</a> 1797</li> 1798 <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> 1799</span> 1800</a> 1801</li> 1802</ul> 1803</nav> 1804</div> 1805 <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> 1806</div> 1807 <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> 1808</span> 1809</a> 1810</li> 1811 <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> 1812</span> 1813</a> 1814</li> 1815</ul> 1816</nav> 1817</div> 1818 <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> 1819</div> 1820 <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> 1821</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> 1822</div> 1823</div> 1824</div> 1825 <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> 1826 <div><p class="rteBlock">Gestion Immobili&egrave;re de la Rive Sud 2025 - Tous droits r&eacute;serv&eacute;s</p></div> 1827</div> 1828</div> 1829</div> 1830</div> 1831</div> 1832</div> 1833 <div id="1236746004" dmle_extension="powered_by" data-element-type="powered_by" icon="true" surround="false"></div> 1834</div> 1835</div> 1836</div> 1837</div> 1838</div> 1839</div> 1840</div> 1841</div> 1842</div> 18431844    </div>1845</div>1846<!--  Add full CSS and Javascript before the close tag of the body if needed -->184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885<!-- ========= JS Section ========= -->1886<script>1887    var isWLR = true;18881889    window.customWidgetsFunctions = {};1890    window.customWidgetsStrings = {};1891    window.collections = {};1892    window.currentLanguage = "FRENCH"1893    window.isSitePreview = false;1894</script>1895189618971898<script>1899    window.customWidgetsFunctions["1f5975986930429f819d4cd2154b5c4a~25"] = function (element, data, api) {1900        null1901    };1902</script>190319041905<script type="text/javascript">19061907    var d_version = "production_6688";1908    var build = "2026-08-06T08_49_03";1909    window['v' + 'ersion'] = d_version;19101911    function buildEditorParent() {1912        window.isMultiScreen = true;1913        window.editorParent = {};1914        window.previewParent = {};1915        window.assetsCacheQueryParam = "?version=2026-08-06T08_49_03";1916        try {1917            var _p = window.parent;1918            if (_p && _p.document && _p.$ && _p.$.dmfw) {1919                window.editorParent = _p;1920            } else if (_p.isSitePreview) {1921                window.previewParent = _p;1922            }1923        } catch (e) {19241925        }1926    }19271928    buildEditorParent();1929</script>193019311932<!-- Load jQuery -->19331934<script type="text/javascript" id='d-js-jquery'1935        src="https://static.cdn-website.com/libs/jquery/jquery-3.7.0.min.js"></script>19361937<!-- End Load jQuery -->193819391940<!-- Injecting site-wide before scripts -->19411942<!-- End Injecting site-wide to the head -->1943194419451946<script>1947    var _jquery = window.$;19481949    var jqueryAliases = ['$', 'jquery', 'jQuery'];19501951    jqueryAliases.forEach((alias) => {1952        Object.defineProperty(window, alias, {1953            get() {1954                return _jquery;1955            },1956            set() {1957                console.warn("Trying to over-write the global jquery object!");1958            }1959        });1960    });1961    window.jQuery.migrateMute = true;1962</script>19631964196519661967<script>1968    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';1969</script>19701971<!-- HEAD RT JS Include -->1972<script id='d-js-params'>1973    window.INSITE = window.INSITE || {};1974    window.INSITE.device = "desktop";19751976    window.rtCommonProps = {};1977    rtCommonProps["rt.ajax.ajaxScriptsFix"] =true;1978    rtCommonProps["rt.pushnotifs.sslframe.encoded"] = 'aHR0cHM6Ly97c3ViZG9tYWlufS5wdXNoLW5vdGlmcy5jb20=';1979    rtCommonProps["runtimecollector.url"] = 'https://rtc.multiscreensite.com';1980    rtCommonProps["performance.tabletPreview.removeScroll"] = 'false';1981    rtCommonProps["inlineEditGrid.snap"] =true;1982    rtCommonProps["popup.insite.cookie.ttl"] = '0.5';1983    rtCommonProps["rt.pushnotifs.force.button"] =true;1984    rtCommonProps["common.mapbox.token"] = 'pk.JETON_CAVIARDE_LOUKA';1985    rtCommonProps["common.mapbox.js.override"] =false;1986    rtCommonProps["common.here.appId"] = 'iYvDjIQ2quyEu0rg0hLo';1987    rtCommonProps["common.here.appCode"] = '1hcIxLJcbybmtBYTD9Z1UA';1988    rtCommonProps["isCoverage.test"] =false;1989    rtCommonProps["ecommerce.ecwid.script"] = 'https://app.multiscreenstore.com/script.js';1990    rtCommonProps["common.resources.dist.cdn"] =true;1991    rtCommonProps["common.build.dist.folder"] = 'production/6688';1992    rtCommonProps["common.resources.cdn.host"] = 'https://static.cdn-website.com';1993    rtCommonProps["common.resources.folder"] = 'https://static.cdn-website.com/mnlt/production/6688';1994    rtCommonProps["common.fonts.api.v2.url"] = 'https://irp.cdn-website.com/fonts/css2?family=';1995    rtCommonProps["feature.flag.runtime.backgroundSlider.preload.slowly"] =true;1996    rtCommonProps["feature.flag.runtime.newAnimation.enabled"] =true;1997    rtCommonProps["feature.flag.runtime.newAnimation.jitAnimation.enabled"] =true;1998    rtCommonProps["feature.flag.sites.google.analytics.gtag"] =true;1999    rtCommonProps["feature.flag.runOnReadyNewTask"] =true;2000    rtCommonProps["isAutomation.test"] =false;2001    rtCommonProps["booking.cal.api.domain"] = 'api.cal.com';20022003    2004    rtCommonProps['common.mapsProvider'] = 'mapbox';2005    2006    rtCommonProps['common.mapsProvider.version'] = '0.52.0';2007    rtCommonProps['common.geocodeProvider'] = 'mapbox';2008    rtCommonProps['server.for.resources'] = '';2009    rtCommonProps['feature.flag.lazy.widgets'] = true;2010    rtCommonProps['feature.flag.single.wow'] = false;2011    rtCommonProps['feature.flag.disallowPopupsInEditor'] = true;2012    rtCommonProps['feature.flag.mark.anchors'] = true;2013    rtCommonProps['captcha.public.key'] = '6LffcBsUAAAAAMU-MYacU-6QHY4iDtUEYv_Ppwlz';2014    rtCommonProps['captcha.invisible.public.key'] = '6LeiWB8UAAAAAHYnVJM7_-7ap6bXCUNGiv7bBPME';2015    rtCommonProps["images.sizes.small"] =160;2016    rtCommonProps["images.sizes.mobile"] =640;2017    rtCommonProps["images.sizes.tablet"] =1280;2018    rtCommonProps["images.sizes.desktop"] =1920;2019    rtCommonProps["modules.resources.cdn"] =true;2020    rtCommonProps["import.images.storage.imageCDN"] = 'https://irp.cdn-website.com/';2021    rtCommonProps["feature.flag.runtime.inp.threshold"] =150;2022    rtCommonProps["feature.flag.performance.logs"] =false;2023    rtCommonProps["site.widget.form.captcha.type"] = 'g_recaptcha';2024    rtCommonProps["friendly.captcha.site.key"] = 'FCMGSQG9GVNMFS8K';2025    rtCommonProps["cookiebot.mapbox.consent.category"] = 'marketing';2026    rtCommonProps["termly.mapbox.consent.category"] = 'performance';2027    // feature flags that's used out of runtime module (in  legacy files)2028    rtCommonProps["platform.monolith.personalization.dateTimeCondition.popupMsgAction.moveToclient.enabled"] =true;20292030    window.rtFlags = {};2031    rtFlags["unsuspendEcwidStoreOnRuntime.enabled"] =true;2032    rtFlags["scripts.widgetCount.enabled"] =true;2033    rtFlags["fnb.animations.tracking.enabled"] =true;2034    rtFlags["ecom.ecwidNewUrlStructure.enabled"] = false;2035    rtFlags["ecom.ecwid.accountPage.emptyBaseUrl.enabled"] = true;2036    rtFlags["ecom.ecwid.accountPage.repeatOrderRedirect.enabled"] = false;2037    rtFlags["ecom.ecwid.pages.links.disable.listeners"] = true;2038    rtFlags["ecom.ecwid.storefrontV3.enabled"] = false;2039    rtFlags["ecom.ecwid.old.store.fix.facebook.share"] = true;2040    rtFlags["ecom.monolith.legacy.js.api.disabled.for.new.sites"] = false;2041    rtFlags["feature.flag.photo.gallery.exact.size"] =true;2042    rtFlags["geocode.search.localize"] =false;2043    rtFlags["feature.flag.runtime.newAnimation.asyncInit.setTimeout.enabled"] =false;2044    rtFlags["twitter.heightLimit.enabled"] = true;2045    rtFlags["runtime.lottieOverflow"] =false;2046    rtFlags["runtime.monitoring.sentry.ignoreErrors"] = "";2047    rtFlags["streamline.monolith.personalization.supportMultipleConditions.enabled"] =false;2048    rtFlags["flex.animation.design.panel.layout"] =true;2049    rtFlags["runtime.cwv.report.cls.enabled"] =false;2050    rtFlags["runtime.cwv.report.lcp.enabled"] =false;2051    rtFlags["runtime.lcp.preload.selfheal.enabled"] =true;2052    rtFlags["runtime.lcp.preload.bootstrap.enabled"] =false;2053    rtFlags["runtime.lcp.preload.monitor.enabled"] =false;2054    rtFlags["runtime.customwidget.heightpin.enabled"] =true;2055    rtFlags["contact.form.useActiveForm"] =true;2056    rtFlags["contact.form.custom.errors.enabled"] =false;2057    rtFlags["runtime.ssr.productStore.internal.observer"] =true;2058    rtFlags["runtime.ssr.productCustomizations"] =true;2059    rtFlags["runtime.ssr.runtime.filter-sort.newFilterSortWidgetWithOptions.enabled"] =true;2060    rtFlags["runtime.ssr.ssrSlider.jumpThreshold.enabled"] =true;2061    rtFlags["runtime.ssr.native.booker.enabled"] =false;2062    rtFlags["termly.map.consent.overlay.enabled"] =false;2063</script>2064<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>20652066<!-- End of HEAD RT JS Include -->206720682069207020712072207320742075207620772078    <script src="https://static.cdn-website.com/mnlt/production/6688/_dm/s/rt/dist/scripts/d-js-jquery-migrate.min.js" ></script>207920802081208220832084<script>2085    2086    $(window).bind("orientationchange", function (e) {2087        $.layoutManager.initLayout();2088        2089    });2090    $(document).resize(function () {2091        2092    });2093</script>2094209520962097209820992100210121022103210421052106210721082109211021112112<script type="text/javascript" id="d_track_sp">2113    ;(function(p,l,o,w,i,n,g){if(!p[i]){p.GlobalSnowplowNamespace=p.GlobalSnowplowNamespace||[];2114        p.GlobalSnowplowNamespace.push(i);p[i]=function(){(p[i].q=p[i].q||[]).push(arguments)2115        };p[i].q=p[i].q||[];n=l.createElement(o);g=l.getElementsByTagName(o)[0];n.async=1;2116        n.src=w;g.parentNode.insertBefore(n,g)}}(window,document,"script","//d32hwlnfiv2gyn.cloudfront.net/sp-2.0.0-dm-0.1.min.js","snowplow"));2117    window.dmsnowplow  = window.snowplow;21182119    dmsnowplow('newTracker', 'cf', 'd32hwlnfiv2gyn.cloudfront.net', { // Initialise a tracker2120        appId: '6d6b044d'2121    });21222123    // snowplow queries element styles so we wait until CSS calculations are done.2124    requestAnimationFrame(() => {2125        dmsnowplow('trackPageView');2126        _dm_insite.forEach((rule) => {2127            // Specifically in popup only the client knows if it is shown or not so we don't always want to track its impression here2128            // the tracking is in popup.js2129            if (rule.actionName !== "popup") {2130                dmsnowplow('trackStructEvent', 'insite', 'impression', rule.ruleType, rule.ruleId);2131            }2132            window?.waitForDeferred?.('dmAjax', () => {2133                $.DM.events.trigger('event-ruleTriggered', {value: rule});2134            });2135        });2136    });2137</script>2138213921402141<div style="display:none;" id="P6iryBW0Wu"></div>21422143<!-- photoswipe markup -->2144214521462147214821492150215121522153<!-- Root element of PhotoSwipe. Must have class pswp. -->2154<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">21552156    <!-- Background of PhotoSwipe. 2157         It's a separate element as animating opacity is faster than rgba(). -->2158    <div class="pswp__bg"></div>21592160    <!-- Slides wrapper with overflow:hidden. -->2161    <div class="pswp__scroll-wrap">21622163        <!-- Container that holds slides. 2164            PhotoSwipe keeps only 3 of them in the DOM to save memory.2165            Don't modify these 3 pswp__item elements, data is added later on. -->2166        <div class="pswp__container">2167            <div class="pswp__item"></div>2168            <div class="pswp__item"></div>2169            <div class="pswp__item"></div>2170        </div>21712172        <!-- Default (PhotoSwipeUI_Default) interface on top of sliding area. Can be changed. -->2173        <div class="pswp__ui pswp__ui--hidden">21742175            <div class="pswp__top-bar">21762177                <!--  Controls are self-explanatory. Order can be changed. -->21782179                <div class="pswp__counter"></div>21802181                <button class="pswp__button pswp__button--close" title="Fermer (Echap)"></button>21822183                <button class="pswp__button pswp__button--share" title="Partager"></button>21842185                <button class="pswp__button pswp__button--fs" title="Passer en mode plein écran"></button>21862187                <button class="pswp__button pswp__button--zoom" title="Zoom avant / arrière"></button>21882189                <!-- Preloader demo http://codepen.io/dimsemenov/pen/yyBWoR -->2190                <!-- element will get class pswp__preloader--active when preloader is running -->2191                <div class="pswp__preloader">2192                    <div class="pswp__preloader__icn">2193                      <div class="pswp__preloader__cut">2194                        <div class="pswp__preloader__donut"></div>2195                      </div>2196                    </div>2197                </div>2198            </div>21992200            <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">2201                <div class="pswp__share-tooltip"></div> 2202            </div>22032204            <button class="pswp__button pswp__button--arrow--left" title="Précédent (flèche gauche)">2205            </button>22062207            <button class="pswp__button pswp__button--arrow--right" title="Suivant (flèche droite)">2208            </button>22092210            <div class="pswp__caption">2211                <div class="pswp__caption__center"></div>2212            </div>22132214        </div>22152216    </div>22172218</div>2219<div id="fb-root"2220        data-locale="fr_FR"></div>2221<!-- Alias: 6d6b044d -->2222<div class="dmPopupMask" id="dmPopupMask"></div>2223<div id="dmPopup" class="dmPopup">2224	<div class="dmPopupCloseWrapper"> <div class="dmPopupClose dm-common-icons-close oneIcon" onclick="dmHidePopup(event);"></div> </div>2225 	<div class="dmPopupTitle"> <span></span> Share by:</div> 2226	<div class="data"></div>2227</div><script id="d_track_personalization">2228	window?.waitForDeferred?.('dmAjax', () => {2229		// Collects client data and updates cookies used by smart sites2230		window.expireDays = 365;2231		window.visitLength = 30 * 60000;2232		$.setCookie("dm_timezone_offset", (new Date()).getTimezoneOffset(), window.expireDays);2233			setSmartSiteCookiesInternal("dm_this_page_view","dm_last_page_view","dm_total_visits","dm_last_visit");2234	});2235</script>2236<script type="text/javascript">2237    2238    Parameters.NavigationAreaParams.MoreButtonText = 'MORE';2239    2240    Parameters.NavigationAreaParams.LessButtonText = 'LESS';2241    Parameters.HomeLinkText = 'Home';2242    </script>2243<!--  End Script tags -->2244<!--  Site Wide Html Markup -->2245<!--  Site Wide Html Markup -->2246</body>2247</html>2248