Expansion P2 — Chaudière-Appalaches (le_baronet, girs, +11 annonces)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Showing 17 changed files with +20,001 and −0
added
louka/connectors/girs.py
+181 −0
@@ -0,0 +1,181 @@ | ||
| 1 | +# ----------------------------------------------------------------------------- | |
| 2 | +# Lou-Ka — Agrégateur de logements à louer (province de Québec) | |
| 3 | +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai | |
| 4 | +# connectors/girs.py : connecteur GIRS — Gestion Immobilière de la Rive Sud | |
| 5 | +# (girs.ca). Gestionnaire de Sainte-Marie (Beauce) : immeubles locatifs | |
| 6 | +# neufs à Scott, Saint-Isidore et La Guadeloupe (Chaudière-Appalaches) + | |
| 7 | +# Carleton-sur-Mer et New Richmond (Gaspésie). | |
| 8 | +# Site Duda (assets irp.cdn-website.com), rendu CÔTÉ SERVEUR : | |
| 9 | +# - le menu « À louer » du hub /location regroupe les immeubles par ville | |
| 10 | +# (« Scott, Chaudières-Appalaches » -> /location/scott/rue-amanda-gustave) ; | |
| 11 | +# - chaque page d'immeuble est une VITRINE : nom/rue (h1), description, | |
| 12 | +# pictogrammes de commodités (BALCON PRIVÉ, CLIMATISATION, « CHAT ET | |
| 13 | +# CHIEN ACCEPTÉ (sous conditions) »…), photos — mais AUCUNE liste | |
| 14 | +# d'unités, AUCUN prix, AUCUNE disponibilité (location par téléphone / | |
| 15 | +# formulaire) -> 1 annonce « catalogue » par immeuble, prix None et | |
| 16 | +# availability vide (rien d'inventé) ; | |
| 17 | +# - le type d'unités n'est cité qu'en prose (« appartements de type 4 ½ », | |
| 18 | +# « 4 ½ et 5 ½ ») : unit_type n'est rempli que si UN seul type est | |
| 19 | +# mentionné, sinon la description fait foi. | |
| 20 | +# external_id stable : slug du chemin (/location/scott/rue-amanda-gustave -> | |
| 21 | +# scott-rue-amanda-gustave). La section « À vendre » du menu est ignorée. | |
| 22 | +# robots.txt : permissif (sitemap public). | |
| 23 | +# ----------------------------------------------------------------------------- | |
| 24 | +from __future__ import annotations | |
| 25 | + | |
| 26 | +import re | |
| 27 | + | |
| 28 | +from bs4 import BeautifulSoup | |
| 29 | + | |
| 30 | +from ..schema import Listing | |
| 31 | +from .base import BaseConnector | |
| 32 | + | |
| 33 | +BASE = "https://www.girs.ca" | |
| 34 | +HUB_URL = f"{BASE}/location" | |
| 35 | + | |
| 36 | +# « Scott, Chaudières-Appalaches » -> ville « Scott » (le site épelle la | |
| 37 | +# région « Chaudières-Appalaches », coquille conservée telle quelle côté brut) | |
| 38 | +_CITY_RE = re.compile(r"^\s*([^,]+?)\s*(?:,|$)") | |
| 39 | +_TYPE_RE = re.compile(r"\b([1-6])\s*½") | |
| 40 | +_IMG_RE = re.compile( | |
| 41 | + r'https://irp\.cdn-website\.com/[^"\'\s\)]+' | |
| 42 | + r'\.(?:jpg|jpeg|png|webp)', re.I) | |
| 43 | +_SKIP_IMG = re.compile(r"logo|favicon|icon|pexels|silhouette", re.I) | |
| 44 | + | |
| 45 | + | |
| 46 | +def _slug(path: str) -> str: | |
| 47 | + """« /location/scott/rue-amanda-gustave » -> « scott-rue-amanda-gustave ».""" | |
| 48 | + return re.sub(r"[^a-z0-9]+", "-", | |
| 49 | + path.strip("/").removeprefix("location/").lower()).strip("-") | |
| 50 | + | |
| 51 | + | |
| 52 | +def _mostly_upper(t: str) -> bool: | |
| 53 | + letters = [c for c in t if c.isalpha()] | |
| 54 | + if len(letters) < 5: | |
| 55 | + return False | |
| 56 | + return sum(c.isupper() for c in letters) / len(letters) >= 0.7 | |
| 57 | + | |
| 58 | + | |
| 59 | +class GirsConnector(BaseConnector): | |
| 60 | + source_id = "girs" | |
| 61 | + request_delay = 0.6 | |
| 62 | + max_images = 12 | |
| 63 | + | |
| 64 | + # -- hub /location : immeubles « À louer » groupés par ville ----------------- | |
| 65 | + def _buildings(self) -> list[tuple[str, str, str]]: | |
| 66 | + """[(path, nom d'immeuble, ville)] depuis le menu « À louer ».""" | |
| 67 | + soup = BeautifulSoup(self.get(HUB_URL).text, "html.parser") | |
| 68 | + out: list[tuple[str, str, str]] = [] | |
| 69 | + seen: set[str] = set() | |
| 70 | + nav = soup.select_one("ul.unav-top") | |
| 71 | + if nav is None: | |
| 72 | + return out | |
| 73 | + for top_li in nav.find_all("li", recursive=False): | |
| 74 | + top_link = top_li.find("a") | |
| 75 | + top_txt = top_link.get_text(" ", strip=True) if top_link else "" | |
| 76 | + if not top_txt.lower().startswith("à louer"): | |
| 77 | + continue # « À vendre », « Nos services »… ignorés | |
| 78 | + for city_li in top_li.select("ul li"): | |
| 79 | + city_link = city_li.find("a") | |
| 80 | + if not city_link: | |
| 81 | + continue | |
| 82 | + m = _CITY_RE.match(city_link.get_text(" ", strip=True)) | |
| 83 | + city = m.group(1).strip() if m else "" | |
| 84 | + for a in city_li.select("ul a[href^='/location/']"): | |
| 85 | + path = a.get("href", "").strip().rstrip("/") | |
| 86 | + name = re.sub(r"\s+", " ", a.get_text(" ", strip=True)) | |
| 87 | + # seules les pages d'immeuble (/location/<ville>/<immeuble>) | |
| 88 | + # sont des annonces ; les pages de ville sont ignorées | |
| 89 | + if len(path.strip("/").split("/")) < 3: | |
| 90 | + continue | |
| 91 | + if path and name and path not in seen: | |
| 92 | + seen.add(path) | |
| 93 | + out.append((path, name, city)) | |
| 94 | + return out | |
| 95 | + | |
| 96 | + # -- page d'immeuble --------------------------------------------------------- | |
| 97 | + def _parse_building(self, path: str, name: str, city: str) -> Listing | None: | |
| 98 | + url = f"{BASE}{path}" | |
| 99 | + soup = BeautifulSoup(self.get(url).text, "html.parser") | |
| 100 | + main = soup.select_one("#dm_content") or soup.body | |
| 101 | + if main is None: | |
| 102 | + return None | |
| 103 | + | |
| 104 | + h1 = main.select_one("h1") | |
| 105 | + street = h1.get_text(" ", strip=True) if h1 else name | |
| 106 | + | |
| 107 | + # description et commodités : blocs de paragraphes Duda. Les légendes | |
| 108 | + # des pictogrammes sont parfois éclatées sur plusieurs <p> du même | |
| 109 | + # bloc (« ENVIRONNEMENT CALME » / « ET PAISIBLE ») -> on travaille au | |
| 110 | + # niveau du bloc `div.dmNewParagraph` pour les recoller. | |
| 111 | + paras: list[str] = [] | |
| 112 | + amenities: list[str] = [] | |
| 113 | + for div in main.select("div.dmNewParagraph"): | |
| 114 | + if div.find(re.compile(r"^h[1-6]$")): | |
| 115 | + continue # titres de section (ESPACE DE VIE, COMMODITÉS…) | |
| 116 | + t = re.sub(r"\s+", " ", | |
| 117 | + div.get_text(" ", strip=True).replace("", "") | |
| 118 | + ).strip() | |
| 119 | + if not t or len(t) < 4: | |
| 120 | + continue | |
| 121 | + # le test « majuscules » ignore les précisions entre parenthèses | |
| 122 | + # (« CHAT ET CHIEN ACCEPTÉ (sous conditions) ») | |
| 123 | + if _mostly_upper(re.sub(r"\([^)]*\)", "", t)): | |
| 124 | + # pictogramme de commodité (« BALCON PRIVÉ », « INTERNET | |
| 125 | + # ILLIMITÉ », « CHAT ET CHIEN ACCEPTÉ (sous conditions) »…) | |
| 126 | + if 5 <= len(t) <= 70 and t not in amenities: | |
| 127 | + amenities.append(t) | |
| 128 | + elif len(t) >= 60 and len(paras) < 6: | |
| 129 | + paras.append(t) | |
| 130 | + description = "\n".join(paras)[:1400] | |
| 131 | + | |
| 132 | + # type d'unités : seulement si UN seul type est cité en prose | |
| 133 | + types = sorted(set(_TYPE_RE.findall( | |
| 134 | + f"{description} {' '.join(amenities)}".replace("1/2", "½") | |
| 135 | + .replace(" ½", "½")))) | |
| 136 | + unit_type = f"{types[0]}½" if len(types) == 1 else "" | |
| 137 | + | |
| 138 | + # animaux : le site publie « CHAT ET CHIEN ACCEPTÉ (sous conditions) » | |
| 139 | + pets = None | |
| 140 | + for t in amenities: | |
| 141 | + if re.search(r"(?i)chat|chien|animau", t): | |
| 142 | + pets = ("conditions" if re.search(r"(?i)condition", t) | |
| 143 | + else "oui") | |
| 144 | + | |
| 145 | + # photos de l'immeuble (CDN Duda), hors logos et images génériques | |
| 146 | + images: list[str] = [] | |
| 147 | + for u in dict.fromkeys(_IMG_RE.findall(str(main))): | |
| 148 | + if not _SKIP_IMG.search(u) and u not in images: | |
| 149 | + images.append(u) | |
| 150 | + | |
| 151 | + return Listing( | |
| 152 | + source=self.source_id, | |
| 153 | + external_id=_slug(path), | |
| 154 | + url=url, | |
| 155 | + title=f"{name} — {city}" if city else name, | |
| 156 | + address=street if street.lower() != name.lower() or | |
| 157 | + re.search(r"(?i)rue|avenue|boulevard|chemin|rang|\d", street) | |
| 158 | + else "", | |
| 159 | + sector="", | |
| 160 | + city=city, | |
| 161 | + unit_type=unit_type, | |
| 162 | + price=None, # aucun loyer publié sur le site | |
| 163 | + price_label="", | |
| 164 | + availability="", # disponibilités par téléphone : rien d'inventé | |
| 165 | + description=description, | |
| 166 | + pets=pets, | |
| 167 | + amenities=amenities[:30], | |
| 168 | + images=images[: self.max_images], | |
| 169 | + ) | |
| 170 | + | |
| 171 | + # -- fetch ----------------------------------------------------------------- | |
| 172 | + def fetch(self) -> list[Listing]: | |
| 173 | + listings: dict[str, Listing] = {} | |
| 174 | + for path, name, city in self._buildings(): | |
| 175 | + try: | |
| 176 | + lst = self._parse_building(path, name, city) | |
| 177 | + except Exception: | |
| 178 | + continue | |
| 179 | + if lst is not None and lst.external_id not in listings: | |
| 180 | + listings[lst.external_id] = lst | |
| 181 | + return list(listings.values()) | |
added
louka/connectors/le_baronet.py
+198 −0
@@ -0,0 +1,198 @@ | ||
| 1 | +# ----------------------------------------------------------------------------- | |
| 2 | +# Lou-Ka — Agrégateur de logements à louer (province de Québec) | |
| 3 | +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai | |
| 4 | +# connectors/le_baronet.py : connecteur Le Baronet (lebaronet.com) | |
| 5 | +# Angle rue Notre-Dame Sud / rue Baronet, Sainte-Marie (Beauce, | |
| 6 | +# Chaudière-Appalaches) — 87 condos locatifs en 2 phases (phase 1 : 64 | |
| 7 | +# unités sur 4 étages, 2021 ; phase 2 : 23 unités sur 4 étages, 2023). | |
| 8 | +# Site WordPress (Yoast) « one-pager » + pages d'étage rendues CÔTÉ SERVEUR : | |
| 9 | +# - phase 1 : /etage-1 … /etage-4 ; phase 2 : /phase2-etages/niveau-1 … 4 ; | |
| 10 | +# - chaque page contient un plan SVG dont les ancres `a.c-app` portent | |
| 11 | +# data-app-no (n° d'unité), data-app-disponible (« dispo » / « louee ») | |
| 12 | +# et un <foreignobject> avec « Grandeur : 4 1/2 » et « Tarif : 1300 $ | |
| 13 | +# /mois » ; seules les unités « dispo » sont retenues (légende du site : | |
| 14 | +# Disponible / Réservé / Loué) ; | |
| 15 | +# - ⚠ un popup (`div.c-popUp`) répète en fin de page une copie PÉRIMÉE du | |
| 16 | +# plan de l'étage 1 : on ne parse que le SVG de `main.l-etages` ; | |
| 17 | +# - fiche unité (/appartements/<no> ou /phase2/<no>, via cache BD) : | |
| 18 | +# plan/photo, « DISPONIBLE 1ER JUILLET 2026 » et description. | |
| 19 | +# Les numéros d'unités se répètent d'une phase à l'autre (101…, 201…) → | |
| 20 | +# external_id préfixé par le chemin de la fiche (appartements-106, | |
| 21 | +# phase2-305), stable car issu des slugs WordPress. | |
| 22 | +# Aucune adresse civique n'est publiée (« à l'angle de la rue Notre-Dame Sud | |
| 23 | +# et de la rue Baronet ») → adresse laissée vide, rien d'inventé. | |
| 24 | +# robots.txt : `Disallow:` (vide) → tout est permis ; sitemap Yoast public. | |
| 25 | +# ----------------------------------------------------------------------------- | |
| 26 | +from __future__ import annotations | |
| 27 | + | |
| 28 | +import hashlib | |
| 29 | +import re | |
| 30 | + | |
| 31 | +from bs4 import BeautifulSoup | |
| 32 | + | |
| 33 | +from ..schema import Listing, parse_price | |
| 34 | +from .base import BaseConnector | |
| 35 | + | |
| 36 | +BASE = "https://lebaronet.com" | |
| 37 | +CITY = "Sainte-Marie" | |
| 38 | + | |
| 39 | +# pages d'étage : phase 1 puis phase 2 (libellés pour la description) | |
| 40 | +FLOOR_PAGES: list[tuple[str, str]] = ( | |
| 41 | + [(f"{BASE}/etage-{i}/", f"Phase 1 — Étage {i}") for i in range(1, 5)] | |
| 42 | + + [(f"{BASE}/phase2-etages/niveau-{i}/", f"Phase 2 — Niveau {i}") | |
| 43 | + for i in range(1, 5)] | |
| 44 | +) | |
| 45 | + | |
| 46 | +_TYPE_RE = re.compile(r"Grandeur\s*:\s*(\d)\s*1/2\s*(\+?)", re.I) | |
| 47 | +_PRICE_RE = re.compile(r"Tarif\s*:\s*([\d\s]{2,9})\$", re.I) | |
| 48 | +_AVAIL_RE = re.compile(r"(?i)^disponible\b") | |
| 49 | +_IMG_RE = re.compile( | |
| 50 | + r'https?://[^"\'\s\)]+/wp-content/uploads/[^"\'\s\)]+' | |
| 51 | + r'\.(?:jpg|jpeg|png|webp)', re.I) | |
| 52 | +_SKIP_IMG = re.compile(r"logo|icon|favicon|hero|-\d{2,4}x\d{2,4}\.", re.I) | |
| 53 | + | |
| 54 | + | |
| 55 | +class LeBaronetConnector(BaseConnector): | |
| 56 | + source_id = "le_baronet" | |
| 57 | + request_delay = 0.6 | |
| 58 | + max_details = 30 # plafond de fiches unité (vraies requêtes par sync) | |
| 59 | + max_images = 10 | |
| 60 | + | |
| 61 | + # -- pages du projet --------------------------------------------------------- | |
| 62 | + def _project_info(self) -> tuple[list[str], list[str]]: | |
| 63 | + """Commodités (liste « Des services et commodités » de l'accueil, | |
| 64 | + `div.o-whiteCol ul li`) et photos du projet (uploads de l'accueil).""" | |
| 65 | + amenities: list[str] = [] | |
| 66 | + images: list[str] = [] | |
| 67 | + try: | |
| 68 | + html = self.get(f"{BASE}/").text | |
| 69 | + except Exception: | |
| 70 | + return amenities, images | |
| 71 | + soup = BeautifulSoup(html, "html.parser") | |
| 72 | + for li in soup.select("div.o-whiteCol ul li"): | |
| 73 | + t = re.sub(r"\s+", " ", li.get_text(" ", strip=True)).strip() | |
| 74 | + if 3 <= len(t) <= 90 and t not in amenities: | |
| 75 | + amenities.append(t) | |
| 76 | + for u in dict.fromkeys(_IMG_RE.findall(html)): | |
| 77 | + if not _SKIP_IMG.search(u) and u not in images: | |
| 78 | + images.append(u) | |
| 79 | + return amenities[:30], images[: self.max_images] | |
| 80 | + | |
| 81 | + # -- fiche unité --------------------------------------------------------------- | |
| 82 | + def _fetch_detail(self, url: str) -> dict: | |
| 83 | + """Fiche /appartements/<no> ou /phase2/<no> : disponibilité datée | |
| 84 | + (« DISPONIBLE 1ER JUILLET 2026 »), description et plan/photo.""" | |
| 85 | + if self._fetched >= self.max_details: | |
| 86 | + raise RuntimeError("budget de fiches unité atteint") | |
| 87 | + self._fetched += 1 | |
| 88 | + soup = BeautifulSoup(self.get(url).text, "html.parser") | |
| 89 | + main = soup.select_one("main.l-app") or soup.select_one("main") | |
| 90 | + out: dict = {} | |
| 91 | + if main is None: | |
| 92 | + return out | |
| 93 | + | |
| 94 | + paras: list[str] = [] | |
| 95 | + for p in main.select("p"): | |
| 96 | + t = re.sub(r"\s+", " ", p.get_text(" ", strip=True)).strip() | |
| 97 | + if not t: | |
| 98 | + continue | |
| 99 | + # 1er paragraphe en gras « DISPONIBLE … » = disponibilité affichée | |
| 100 | + if not paras and not out.get("availability") and _AVAIL_RE.match(t): | |
| 101 | + out["availability"] = t.capitalize() | |
| 102 | + continue | |
| 103 | + paras.append(t) | |
| 104 | + if paras: | |
| 105 | + out["description"] = "\n".join(paras)[:1200] | |
| 106 | + | |
| 107 | + img = main.select_one("img[src]") | |
| 108 | + if img and img["src"].startswith("http"): | |
| 109 | + out["image"] = img["src"] | |
| 110 | + return out | |
| 111 | + | |
| 112 | + # -- fetch ----------------------------------------------------------------- | |
| 113 | + def fetch(self) -> list[Listing]: | |
| 114 | + amenities, project_images = self._project_info() | |
| 115 | + self._fetched = 0 | |
| 116 | + | |
| 117 | + listings: dict[str, Listing] = {} | |
| 118 | + for page_url, floor_label in FLOOR_PAGES: | |
| 119 | + try: | |
| 120 | + soup = BeautifulSoup(self.get(page_url).text, "html.parser") | |
| 121 | + except Exception: | |
| 122 | + continue | |
| 123 | + # SVG du contenu principal seulement (le popup répète l'étage 1) | |
| 124 | + for a in soup.select("main.l-etages a.c-app"): | |
| 125 | + try: | |
| 126 | + self._parse_unit(a, page_url, floor_label, | |
| 127 | + amenities, project_images, listings) | |
| 128 | + except Exception: | |
| 129 | + continue | |
| 130 | + return list(listings.values()) | |
| 131 | + | |
| 132 | + def _parse_unit(self, a, page_url: str, floor_label: str, | |
| 133 | + amenities: list[str], project_images: list[str], | |
| 134 | + listings: dict[str, Listing]) -> None: | |
| 135 | + status = (a.get("data-app-disponible") or "").strip().lower() | |
| 136 | + num = (a.get("data-app-no") or "").strip() | |
| 137 | + href = (a.get("href") or "").strip() | |
| 138 | + if not (num and href): | |
| 139 | + return | |
| 140 | + # seules les unités « dispo » sont des annonces (Réservé/Loué exclus) | |
| 141 | + if status != "dispo": | |
| 142 | + return | |
| 143 | + | |
| 144 | + # external_id stable : chemin de la fiche (appartements-106, phase2-305) | |
| 145 | + ext = href.strip("/").replace("/", "-") | |
| 146 | + if ext in listings: | |
| 147 | + return | |
| 148 | + url = href if href.startswith("http") else f"{BASE}{href}" | |
| 149 | + | |
| 150 | + cell_txt = re.sub(r"\s+", " ", a.get_text(" ", strip=True)) | |
| 151 | + m = _TYPE_RE.search(cell_txt) | |
| 152 | + unit_type = f"{m.group(1)}½" if m else "" | |
| 153 | + plus = bool(m and m.group(2)) # « 4½ + » = pièce bureau en sus | |
| 154 | + m = _PRICE_RE.search(cell_txt) | |
| 155 | + price_label = (re.sub(r"\s+", " ", m.group(0)).strip() + "/mois" | |
| 156 | + if m else "") | |
| 157 | + | |
| 158 | + # fiche unité (cache BD : re-téléchargée seulement si la cellule change) | |
| 159 | + cell_key = hashlib.sha1( | |
| 160 | + f"{status}|{cell_txt}".encode("utf-8")).hexdigest() | |
| 161 | + try: | |
| 162 | + detail = self.detail(ext, cell_key, | |
| 163 | + lambda u=url: self._fetch_detail(u)) | |
| 164 | + except Exception: | |
| 165 | + detail = {} | |
| 166 | + | |
| 167 | + images = list(project_images) | |
| 168 | + if detail.get("image") and detail["image"] not in images: | |
| 169 | + images.insert(0, detail["image"]) | |
| 170 | + | |
| 171 | + desc_bits = [floor_label] | |
| 172 | + if plus: | |
| 173 | + desc_bits.append("4½ + (pièce pour bureau supplémentaire)") | |
| 174 | + if detail.get("description"): | |
| 175 | + desc_bits.append(detail["description"]) | |
| 176 | + | |
| 177 | + # n° affiché : « 402-2 » est un artefact de slug WordPress, la fiche | |
| 178 | + # titre « Appartement no. : 402 » (l'external_id garde le slug complet) | |
| 179 | + display_num = re.sub(r"-\d$", "", num) | |
| 180 | + | |
| 181 | + listings[ext] = Listing( | |
| 182 | + source=self.source_id, | |
| 183 | + external_id=ext, | |
| 184 | + url=url, | |
| 185 | + title=f"Le Baronet — Appartement {display_num}", | |
| 186 | + address="", # aucune adresse civique publiée | |
| 187 | + sector="", | |
| 188 | + city=CITY, | |
| 189 | + unit_type=unit_type, | |
| 190 | + price=parse_price(price_label), | |
| 191 | + price_label=price_label, | |
| 192 | + # texte de la fiche (« Disponible 1er juillet 2026 »), sinon le | |
| 193 | + # statut de la légende du plan (« Disponible ») | |
| 194 | + availability=detail.get("availability", "Disponible"), | |
| 195 | + description="\n".join(desc_bits)[:1400], | |
| 196 | + amenities=list(amenities), | |
| 197 | + images=images[: self.max_images + 1], | |
| 198 | + ) | |
added
reports/connectors/girs.md
+29 −0
@@ -0,0 +1,29 @@ | ||
| 1 | +# girs — GIRS, Gestion Immobilière de la Rive Sud (Scott/Saint-Isidore/La Guadeloupe + Gaspésie) | |
| 2 | +- site: https://www.girs.ca/location (hub) + 8 pages d'immeuble /location/<ville>/<immeuble> | |
| 3 | +- méthode: html rendu côté serveur (Duda, assets irp.cdn-website.com) — menu « À louer » groupé par ville | |
| 4 | +- annonces: **8 annonces « catalogue » (une par immeuble)** — Scott ×3, Saint-Isidore ×1, La Guadeloupe ×1 (Chaudière-Appalaches) ; Carleton-sur-Mer ×1, New Richmond ×2 (Gaspésie) | |
| 5 | +- couverture (sur 8): description 100 %, commodités 100 %, images 100 %, animaux 100 % (« conditions »), ville 100 %, adresse (rue) 100 % ; **prix 0 %, disponibilité 0 %, unités 0 % — non publiés par la source** | |
| 6 | +- fixture: ok (10 requêtes) · test: ok (2 verts) | |
| 7 | + | |
| 8 | +## Champs extraits | |
| 9 | +- Hub `/location` : le menu Duda (`ul.unav-top`) groupe les immeubles par ville sous l'item « À louer » (« Scott, Chaudières-Appalaches » → 3 immeubles) ; seules les pages **feuilles** `/location/<ville>/<immeuble>` deviennent des annonces (pages de ville et section « À vendre » ignorées). | |
| 10 | +- Page d'immeuble : rue en `h1` (« Rue Amanda-Gustave », « 900 Rue des Semences »), description rédigée (paragraphes `div.dmNewParagraph`), pictogrammes de commodités en capitales — recollés au niveau du bloc Duda quand ils sont éclatés sur plusieurs `<p>` (« ENVIRONNEMENT CALME / ET PAISIBLE ») : balcon/terrain privé, climatisation, cuisine avec îlot (en quartz), internet illimité, deux stationnements inclus, stationnement VÉ, environnement sécurisé… | |
| 11 | +- **Animaux** : « CHAT ET CHIEN ACCEPTÉ (sous conditions) » publié sur les 8 pages → `pets="conditions"`. | |
| 12 | +- Type d'unité : cité seulement en prose — rempli **uniquement si un seul type est mentionné** (« appartements de type 4 ½ » → 4½ pour Rue Jean-Baptiste, 900 Rue des Semences, Avenue des Érables Condo) ; sinon vide, la description fait foi (« 4 ½ et 5 ½ », « 3½, 4½ et 5½ », jumelés 3-4 chambres). | |
| 13 | +- Photos de l'immeuble (CDN Duda), logos/pictogrammes/banques d'images filtrés ; `external_id` = slug du chemin (`scott-rue-amanda-gustave`), stable. | |
| 14 | +- Ville depuis le libellé du menu (« La Guadeloupe, Chaudières-Appalaches » → La Guadeloupe) — la coquille « Chaudières-Appalaches » est propre au site. | |
| 15 | + | |
| 16 | +## Champs indisponibles à la source | |
| 17 | +- **Prix, disponibilités, liste d'unités : jamais publiés** (location par formulaire/téléphone, 418 253-0064) → `price=None`, `availability=""`, granularité immeuble assumée — annonces « catalogue », rien d'inventé. (Confirme le constat de l'étude Chaudière-Appalaches ; l'étude est-nord annexe 8 classait GIRS P2.) | |
| 18 | +- Adresse civique : les civiques n'apparaissent qu'en prose mêlée (« 40, 60 et 80 rue Jean-Baptiste. 98 et 108, rue Amanda-Gustave à Scott ») → `address` = la rue du `h1` seulement. | |
| 19 | +- Superficie, lat/lng, meublé : non publiés. | |
| 20 | + | |
| 21 | +## Fragilités | |
| 22 | +- Gabarit Duda : la détection des commodités repose sur des blocs « tout en capitales » (les précisions entre parenthèses sont tolérées) et l'exclusion des blocs contenant un titre `h1-h6` — la fixture sert de sentinelle. | |
| 23 | +- Le site couvre deux régions : 5 immeubles en Chaudière-Appalaches, 3 en Gaspésie (Baie-des-Chaleurs) — le connecteur prend tout ce que la source publie, les villes sont réelles. | |
| 24 | +- 10 requêtes par sync (hub + 8 pages + redirection éventuelle) ; politesse 0,6 s ; robots.txt permissif (sitemap public). | |
| 25 | + | |
| 26 | +## Échantillon | |
| 27 | +- `girs:scott-rue-amanda-gustave | Rue Amanda-Gustave — Scott (« Place Évo ») | Scott | — $ | 9 photos | 9 commodités | animaux: conditions` | |
| 28 | +- `girs:saint-isidore-900-rue-semences | 900 Rue des Semences — Saint-Isidore | 4½ | cuisine îlot en quartz, 2 stationnements, internet illimité` | |
| 29 | +- `girs:new-richmond-avenue-erables | Avenue des Érables, Jumelé — New Richmond | jumelés 3-4 chambres (type non unique → vide)` | |
added
reports/connectors/le_baronet.md
+32 −0
@@ -0,0 +1,32 @@ | ||
| 1 | +# le_baronet — Le Baronet (Sainte-Marie, Chaudière-Appalaches) | |
| 2 | +- site: https://lebaronet.com (one-pager + pages d'étage /etage-1…4 et /phase2-etages/niveau-1…4) | |
| 3 | +- méthode: html rendu côté serveur (WordPress/Yoast, plans SVG par étage) + fiches unité via cache BD (`self.detail`) | |
| 4 | +- annonces: **3 unités disponibles** au 2026-08-09 (sur 87 : phase 1 = 64, phase 2 = 23 — le reste est « Loué ») | |
| 5 | +- couverture (sur 3 annonces): prix 100 %, type d'unité 100 %, dispo 100 %, description 100 %, commodités 100 %, images 100 % ; adresse 0 % (non publiée), superficie 0 % (non publiée) | |
| 6 | +- fixture: ok (15 requêtes) · test: ok (2 verts) | |
| 7 | + | |
| 8 | +## Champs extraits | |
| 9 | +- 8 pages d'étage (4 par phase), chacune avec un plan SVG dont les ancres `a.c-app` portent les attributs **structurés** `data-app-no` (n° d'unité), `data-app-disponible` (`dispo` / `louee` ; la légende du site affiche Disponible / Réservé / Loué) et un `<foreignobject>` avec « Grandeur : 4 1/2 » et « Tarif : 1300 $ /mois ». | |
| 10 | +- **Seules les unités `dispo` deviennent des annonces** (les louées/réservées sont exclues, même patron que `le_st_georges`). | |
| 11 | +- ⚠ Chaque page contient en fin de corps un popup (`div.c-popUp`) avec une copie **périmée** du plan de l'étage 1 (prix différents de la page /etage-1 réelle) : le connecteur ne parse que le SVG de `main.l-etages`. | |
| 12 | +- `external_id` = chemin de la fiche (`appartements-106`, `phase2-305`) : stable (slugs WordPress) et sans collision entre phases (les n° 101…, 201… se répètent d'une phase à l'autre). Les slugs « -2 » (`402-2`) sont des artefacts WordPress : le titre affiche le n° réel de la fiche (« Appartement 402 »). | |
| 13 | +- Fiche unité (`/appartements/<no>`, `/phase2/<no>`, via cache BD plafonné à 30 vraies requêtes) : plan/photo, paragraphe **« DISPONIBLE 1ER JUILLET 2026 »** (→ `availability`, sinon « Disponible » du plan) et description rédigée. | |
| 14 | +- Prix : « Tarif : 1335 $ /mois » → 1 335 $ (un gabarit « POUR VOIR LE PLAN SEULEMENT, NON DISPONIBLE » existe sur des unités louées → prix ignoré si non numérique, unités jamais retenues car `louee`). | |
| 15 | +- Type : « Grandeur : 4 1/2 » → 4½ ; le suffixe « + » (4½ + pièce bureau) est reporté dans la description. | |
| 16 | +- Commodités du projet (accueil, `div.o-whiteCol ul li`, 11 items) : stationnements int./ext., lockers, piscine extérieure chauffée (phase 2), ascenseur, gym et salle communautaire (phase 1), climatisation indépendante, insonorisation, bornes VÉ, accès sécurisé… ; photos du projet depuis l'accueil + plan de l'unité en tête d'images. | |
| 17 | + | |
| 18 | +## Champs indisponibles à la source | |
| 19 | +- **Adresse civique : non publiée** (le site écrit « à l'angle de la rue Notre-Dame Sud et de la rue Baronet ») → `address` vide, rien d'inventé. | |
| 20 | +- Superficie, secteur, lat/lng, animaux, meublé : non publiés. | |
| 21 | +- « Réservé » (légende) : aucun exemple observé (seuls `dispo`/`louee` existent dans le HTML actuel) ; toute valeur autre que `dispo` est exclue. | |
| 22 | + | |
| 23 | +## Fragilités | |
| 24 | +- La disponibilité datée de la fiche (« Disponible 1er juin ou 1er juillet 2026 ») est normalisée `now` par `parse_availability_date` (le libellé commence par « Disponible ») — comportement de la couche commune, le texte brut est conservé tel quel. | |
| 25 | +- Site artisanal (création 2020) : la fiche de l'unité 106 garde une mention périmée « Disponible dès mai 2025 » dans sa description (texte source, conservé) ; le popup périmé montre que le gabarit peut désynchroniser ses copies. | |
| 26 | +- 15 requêtes par sync à froid (accueil + 8 étages + fiches dispo) ; en régime de croisière le cache BD évite les fiches inchangées. | |
| 27 | +- robots.txt : `Disallow:` (vide) → tout permis ; sitemap Yoast public ; politesse 0,6 s. | |
| 28 | + | |
| 29 | +## Échantillon | |
| 30 | +- `le_baronet:appartements-106 | Le Baronet — Appartement 106 | Sainte-Marie | 4½ | 1 335 $ | Disponible | Phase 1 — Étage 1 | 11 images | 11 commodités` | |
| 31 | +- `le_baronet:appartements-402-2 | Le Baronet — Appartement 402 | 4½ | 1 300 $ | Disponible 1er juin ou 1er juillet 2026 | Phase 1 — Étage 4 (dernier étage, unité de coin)` | |
| 32 | +- `le_baronet:phase2-305 | Le Baronet — Appartement 305 | 4½ | 1 200 $ | Disponible 1er juillet 2026 | Phase 2 — Niveau 3` | |
added
reports/sources-entries/girs.json
+10 −0
@@ -0,0 +1,10 @@ | ||
| 1 | +{ | |
| 2 | + "id": "girs", | |
| 3 | + "name": "GIRS — Gestion Immobilière de la Rive Sud", | |
| 4 | + "url": "https://www.girs.ca", | |
| 5 | + "listing_url": "https://www.girs.ca/location", | |
| 6 | + "sectors": "Scott, Saint-Isidore, La Guadeloupe (Chaudière-Appalaches) + Carleton-sur-Mer, New Richmond (Gaspésie)", | |
| 7 | + "connector": "girs", | |
| 8 | + "status": "actif — annonces « catalogue » (1 par immeuble) : la source ne publie ni prix, ni disponibilités, ni liste d'unités (location par téléphone/formulaire)", | |
| 9 | + "region": "Chaudière-Appalaches" | |
| 10 | +} | |
added
reports/sources-entries/le_baronet.json
+10 −0
@@ -0,0 +1,10 @@ | ||
| 1 | +{ | |
| 2 | + "id": "le_baronet", | |
| 3 | + "name": "Le Baronet", | |
| 4 | + "url": "https://lebaronet.com", | |
| 5 | + "listing_url": "https://lebaronet.com/etage-1/", | |
| 6 | + "sectors": "Sainte-Marie (angle rue Notre-Dame Sud / rue Baronet — 87 condos locatifs en 2 phases)", | |
| 7 | + "connector": "le_baronet", | |
| 8 | + "status": "actif", | |
| 9 | + "region": "Chaudière-Appalaches" | |
| 10 | +} | |
added
tests/fixtures/girs/0658df5f87c797d38e89.html
+2201 −0
@@ -0,0 +1,2201 @@ | ||
| 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 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | +<script type="text/javascript"> | |
| 46 | + window._currentDevice = 'desktop'; | |
| 47 | + window.Parameters = window.Parameters || { | |
| 48 | + HomeUrl: 'https://www.girs.ca/', | |
| 49 | + | |
| 50 | + 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/carleton-sur-mer/rue-comeau', | |
| 64 | + InitialPageUuid: 'a50d1fdd6b7c44d9b5e1399e31a71290', | |
| 65 | + InitialPageId: '43685132', | |
| 66 | + InitialEncodedPageAlias: 'bG9jYXRpb24vY2FybGV0b24tc3VyLW1lci9ydWUtY29tZWF1', | |
| 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érience sur notre site web. Pour en savoir plus, veuillez accéder à la page <a value=\"donnees-personnelles\" label=\"\" type=\"page\" href=\"\/donnees-personnelles\" data-runtime-url=\"\/donnees-personnelles\">Confidentialité<\/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: 'Une erreur est survenue lors de la connexion à la page.<br/> Vérifiez que vous n’êtes pas hors ligne.', | |
| 104 | + password: 'Nom ou mot de passe incorrects', | |
| 105 | + tryAgain: 'Réessayez' | |
| 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: false | |
| 134 | + }; | |
| 135 | + | |
| 136 | + window.Parameters.LayoutID = {}; | |
| 137 | + window.Parameters.LayoutID[window._currentDevice] = 6; | |
| 138 | + window.Parameters.LayoutVariationID = {}; | |
| 139 | + window.Parameters.LayoutVariationID[window._currentDevice] = 5; | |
| 140 | +</script> | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | +<!-- Injecting site-wide to the head --> | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
| 169 | + | |
| 170 | + | |
| 171 | + | |
| 172 | + | |
| 173 | + | |
| 174 | + | |
| 175 | + | |
| 176 | + | |
| 177 | + | |
| 178 | +<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('&'); | |
| 185 | + | |
| 186 | + const expires = 'expires=' + new Date().getTime() + 24 * 60 * 60 * 1000; | |
| 187 | + const domain = 'domain=' + window.location.hostname; | |
| 188 | + const path = "path=/"; | |
| 189 | + | |
| 190 | + 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.cookie | |
| 220 | + .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 submission | |
| 226 | + // 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> | |
| 240 | + | |
| 241 | + | |
| 242 | + | |
| 243 | + | |
| 244 | + | |
| 245 | + | |
| 246 | +<!-- End Injecting site-wide to the head --> | |
| 247 | + | |
| 248 | +<!-- Inject secured cdn script --> | |
| 249 | + | |
| 250 | + | |
| 251 | +<!-- ========= 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 >>> 0 | |
| 260 | + } | |
| 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.serviceWorker | |
| 277 | + .register(serviceWorkerPath, { scope: './' }) | |
| 278 | + .then( | |
| 279 | + function (registration) { | |
| 280 | + // Registration was successful | |
| 281 | + console.log( | |
| 282 | + 'ServiceWorker registration successful with scope: ', | |
| 283 | + registration.scope | |
| 284 | + ); | |
| 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 | + }); | |
| 295 | + | |
| 296 | + // helper function to refresh the page | |
| 297 | + var refreshPage = (function () { | |
| 298 | + var refreshing; | |
| 299 | + return function () { | |
| 300 | + if (refreshing) return; | |
| 301 | + // prevent multiple refreshes | |
| 302 | + 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 loop | |
| 308 | + } | |
| 309 | + } | |
| 310 | + refreshing = true; | |
| 311 | + localStorage.setItem(refreshkey, Date.now()); | |
| 312 | + console.log('refereshing page'); | |
| 313 | + window.location.reload(); | |
| 314 | + }; | |
| 315 | + })(); | |
| 316 | + | |
| 317 | + 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 --> | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
| 340 | +<link rel="canonical" href="https://www.girs.ca/location/carleton-sur-mer/rue-comeau"> | |
| 341 | + | |
| 342 | +<meta id="view" name="viewport" content="initial-scale=1, minimum-scale=1, maximum-scale=5, viewport-fit=cover"> | |
| 343 | + | |
| 344 | +<meta name="apple-mobile-web-app-capable" content="yes"> | |
| 345 | + | |
| 346 | +<!--Add favorites icons--> | |
| 347 | + | |
| 348 | +<link rel="icon" type="image/x-icon" href="https://irp.cdn-website.com/6d6b044d/site_favicon_16_1673962208002.ico"/> | |
| 349 | + | |
| 350 | +<!-- 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"/> | |
| 354 | + | |
| 355 | + | |
| 356 | + | |
| 357 | +<!-- render the required CSS and JS in the head section --> | |
| 358 | +<script id='d-js-dmapi'> | |
| 359 | + window.SystemID = 'US_DIRECT_PRODUCTION'; | |
| 360 | + | |
| 361 | + 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; | |
| 372 | + | |
| 373 | + 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 | + } | |
| 405 | + | |
| 406 | + if (!window.requestIdleCallback) { | |
| 407 | + window.requestIdleCallback = function (fn) { | |
| 408 | + setTimeout(fn, 0); | |
| 409 | + } | |
| 410 | + } | |
| 411 | +</script> | |
| 412 | + | |
| 413 | +<!-- loadCSS function header.jsp--> | |
| 414 | + | |
| 415 | + | |
| 416 | + | |
| 417 | + | |
| 418 | + | |
| 419 | + | |
| 420 | +<script id="d-js-load-css"> | |
| 421 | +/** | |
| 422 | + * There are a few <link> tags with CSS resource in them that are preloaded in the page | |
| 423 | + * in each of those there is a "onload" handler which invokes the loadCSS callback | |
| 424 | + * 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 threre | |
| 427 | + * is no page css (which may happen on inner pages) then we do not wait for it | |
| 428 | + */ | |
| 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']"); | |
| 440 | + | |
| 441 | + 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; | |
| 446 | + | |
| 447 | + storedGlobalCssLink.disabled = true; | |
| 448 | + loadCssLink(storedGlobalCssLink); | |
| 449 | + | |
| 450 | + if (storedPageCssLink) { | |
| 451 | + storedPageCssLink.disabled = true; | |
| 452 | + loadCssLink(storedPageCssLink); | |
| 453 | + } | |
| 454 | + | |
| 455 | + if(storedWidgetCssLink) { | |
| 456 | + storedWidgetCssLink.disabled = true; | |
| 457 | + loadCssLink(storedWidgetCssLink); | |
| 458 | + } | |
| 459 | + | |
| 460 | + storedRuntimeCssLink.disabled = true; | |
| 461 | + loadCssLink(storedRuntimeCssLink); | |
| 462 | + | |
| 463 | + 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're | |
| 474 | + // 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 | + | |
| 484 | + | |
| 485 | + 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; | |
| 490 | + | |
| 491 | + 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 e | |
| 519 | + } | |
| 520 | + } | |
| 521 | + window.loadCSS = window.loadCSS || loadCSS; | |
| 522 | +})(); | |
| 523 | +</script> | |
| 524 | + | |
| 525 | + | |
| 526 | + | |
| 527 | +<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 = b | |
| 532 | + }).bind(this)) | |
| 533 | + } | |
| 534 | + | |
| 535 | + 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 | + d | |
| 542 | + ? d.promise.then(a) | |
| 543 | + : c && ["complete", "interactive"].includes(document.readyState) | |
| 544 | + ? setTimeout(a, 1) | |
| 545 | + : c | |
| 546 | + ? 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 */ | |
| 552 | + | |
| 553 | +.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 | + | |
| 555 | + | |
| 556 | +</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> | |
| 568 | + | |
| 569 | + | |
| 570 | + | |
| 571 | + | |
| 572 | + | |
| 573 | + | |
| 574 | + | |
| 575 | + | |
| 576 | + | |
| 577 | + | |
| 578 | + | |
| 579 | + | |
| 580 | + | |
| 581 | + | |
| 582 | + | |
| 583 | + | |
| 584 | + | |
| 585 | + | |
| 586 | + | |
| 587 | + | |
| 588 | + | |
| 589 | + | |
| 590 | + | |
| 591 | + | |
| 592 | + | |
| 593 | +<!-- Google Fonts Include --> | |
| 594 | + | |
| 595 | + | |
| 596 | + | |
| 597 | + | |
| 598 | + | |
| 599 | + | |
| 600 | + | |
| 601 | + | |
| 602 | + | |
| 603 | + | |
| 604 | + | |
| 605 | + | |
| 606 | + | |
| 607 | +<!-- loadCSS function fonts.jsp--> | |
| 608 | + | |
| 609 | + | |
| 610 | + | |
| 611 | +<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&subset=latin-ext&display=swap" /> | |
| 612 | + | |
| 613 | + | |
| 614 | + | |
| 615 | + | |
| 616 | + | |
| 617 | +<!-- 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" /> | |
| 619 | + | |
| 620 | +<!-- End of RT CSS Include --> | |
| 621 | + | |
| 622 | +<link type="text/css" rel="stylesheet" href="https://irp.cdn-website.com/WIDGET_CSS/b3f900cc909110f5df2a6191c01d29f5.css" id="widgetCSS" /> | |
| 623 | + | |
| 624 | +<!-- Support `img` size attributes --> | |
| 625 | +<style>img[width][height] { | |
| 626 | + height: auto; | |
| 627 | +}</style> | |
| 628 | + | |
| 629 | +<!-- Support showing sticky element on page only --> | |
| 630 | +<style> | |
| 631 | + body[data-page-alias="location/carleton-sur-mer/rue-comeau"] #dm [data-show-on-page-only="location/carleton-sur-mer/rue-comeau"] { | |
| 632 | + display: block !important; | |
| 633 | + } | |
| 634 | +</style> | |
| 635 | + | |
| 636 | +<!-- This is populated in Ajax navigation --> | |
| 637 | +<style id="pageAdditionalWidgetsCss" type="text/css"> | |
| 638 | +</style> | |
| 639 | + | |
| 640 | + | |
| 641 | + | |
| 642 | + | |
| 643 | +<!-- 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" /> | |
| 645 | + | |
| 646 | + | |
| 647 | + | |
| 648 | +<style id="customWidgetStyle" type="text/css"> | |
| 649 | + | |
| 650 | +</style> | |
| 651 | +<style id="innerPagesStyle" type="text/css"> | |
| 652 | + | |
| 653 | +</style> | |
| 654 | + | |
| 655 | + | |
| 656 | +<style | |
| 657 | + id="additionalGlobalCss" type="text/css" | |
| 658 | +> | |
| 659 | +</style> | |
| 660 | + | |
| 661 | +<style id="pagestyle" type="text/css"> | |
| 662 | + *#dm *.dmBody a.span.textonly | |
| 663 | +{ | |
| 664 | + color:rgb(255,255,255) !important; | |
| 665 | +} | |
| 666 | +*#dm *.dmBody div.dmform-error | |
| 667 | +{ | |
| 668 | + font-style:normal !important; | |
| 669 | +} | |
| 670 | +*#dm *.dmBody div.dmforminput textarea | |
| 671 | +{ | |
| 672 | + font-style:italic !important; | |
| 673 | +} | |
| 674 | +*#dm *.dmBody div.dmforminput *.fileUploadLink | |
| 675 | +{ | |
| 676 | + font-style:italic !important; | |
| 677 | +} | |
| 678 | +*#dm *.dmBody div.checkboxwrapper span | |
| 679 | +{ | |
| 680 | + font-style:italic !important; | |
| 681 | +} | |
| 682 | +*#dm *.dmBody div.radiowrapper span | |
| 683 | +{ | |
| 684 | + font-style:italic !important; | |
| 685 | +} | |
| 686 | +*#dm *.dmBody nav.u_1144820115 | |
| 687 | +{ | |
| 688 | + color:black !important; | |
| 689 | +} | |
| 690 | +*#dm *.dmBody *.u_1004639188:before | |
| 691 | +{ | |
| 692 | + opacity:0.5 !important; | |
| 693 | + background-color:rgb(255,255,255) !important; | |
| 694 | +} | |
| 695 | +*#dm *.dmBody *.u_1004639188.before | |
| 696 | +{ | |
| 697 | + opacity:0.5 !important; | |
| 698 | + background-color:rgb(255,255,255) !important; | |
| 699 | +} | |
| 700 | +*#dm *.dmBody *.u_1004639188>.bgExtraLayerOverlay | |
| 701 | +{ | |
| 702 | + opacity:0.5 !important; | |
| 703 | + background-color:rgb(255,255,255) !important; | |
| 704 | +} | |
| 705 | +*#dm *.dmBody div.u_1004639188 | |
| 706 | +{ | |
| 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:before | |
| 713 | +{ | |
| 714 | + background-color:var(--color_1) !important; | |
| 715 | +} | |
| 716 | +*#dm *.dmBody div.u_1004639188.before | |
| 717 | +{ | |
| 718 | + background-color:var(--color_1) !important; | |
| 719 | +} | |
| 720 | +*#dm *.dmBody div.u_1004639188>.bgExtraLayerOverlay | |
| 721 | +{ | |
| 722 | + background-color:var(--color_1) !important; | |
| 723 | +} | |
| 724 | +*#dm *.dmBody a.u_1756842165:hover | |
| 725 | +{ | |
| 726 | + background-color:var(--color_3) !important; | |
| 727 | + background-image:none !important; | |
| 728 | +} | |
| 729 | +*#dm *.dmBody a.u_1756842165.hover | |
| 730 | +{ | |
| 731 | + background-color:var(--color_3) !important; | |
| 732 | + background-image:none !important; | |
| 733 | +} | |
| 734 | +*#dm *.dmBody a.u_1756842165:hover span.text | |
| 735 | +{ | |
| 736 | + color:var(--color_1) !important; | |
| 737 | +} | |
| 738 | +*#dm *.dmBody a.u_1756842165.hover span.text | |
| 739 | +{ | |
| 740 | + color:var(--color_1) !important; | |
| 741 | +} | |
| 742 | +*#dm *.dmBody a.u_1756842165 span.text | |
| 743 | +{ | |
| 744 | + font-family:'Roboto' !important; | |
| 745 | + font-weight:400 !important; | |
| 746 | + color:var(--color_3) !important; | |
| 747 | +} | |
| 748 | +*#dm *.dmBody div.u_1937526287 | |
| 749 | +{ | |
| 750 | + border-style:solid !important; | |
| 751 | + border-width:2px !important; | |
| 752 | + border-color:var(--color_3) !important; | |
| 753 | +} | |
| 754 | +*#dm *.dmBody div.u_1452815793 | |
| 755 | +{ | |
| 756 | + background-color:rgba(0,0,0,0.05) !important; | |
| 757 | +} | |
| 758 | +*#dm *.dmBody div.u_1840143137 | |
| 759 | +{ | |
| 760 | + background-color:rgba(0,0,0,0.05) !important; | |
| 761 | +} | |
| 762 | +*#dm *.dmBody div.u_1813520727 | |
| 763 | +{ | |
| 764 | + background-color:rgba(0,0,0,0.05) !important; | |
| 765 | +} | |
| 766 | +*#dm *.dmBody div.u_1281514457 .color-overlay | |
| 767 | +{ | |
| 768 | + background-color:rgba(0,0,0,0) !important; | |
| 769 | +} | |
| 770 | +*#dm *.dmBody *.u_1281514457 .flex-direction-nav a:before | |
| 771 | +{ | |
| 772 | + font-size:45px !important; | |
| 773 | +} | |
| 774 | +*#dm *.dmBody *.u_1281514457 .flex-direction-nav a | |
| 775 | +{ | |
| 776 | + width:45px !important; | |
| 777 | + height:45px !important; | |
| 778 | + overflow:visible !important; | |
| 779 | + color:var(--color_3) !important; | |
| 780 | +} | |
| 781 | +*#dm *.dmBody *.u_1713239492:before | |
| 782 | +{ | |
| 783 | + opacity:0.5 !important; | |
| 784 | + background-color:rgb(255,255,255) !important; | |
| 785 | +} | |
| 786 | +*#dm *.dmBody *.u_1713239492.before | |
| 787 | +{ | |
| 788 | + opacity:0.5 !important; | |
| 789 | + background-color:rgb(255,255,255) !important; | |
| 790 | +} | |
| 791 | +*#dm *.dmBody *.u_1713239492>.bgExtraLayerOverlay | |
| 792 | +{ | |
| 793 | + opacity:0.5 !important; | |
| 794 | + background-color:rgb(255,255,255) !important; | |
| 795 | +} | |
| 796 | +*#dm *.dmBody div.u_1486697154 | |
| 797 | +{ | |
| 798 | + border-style:solid !important; | |
| 799 | + border-width:2px !important; | |
| 800 | + border-color:var(--color_3) !important; | |
| 801 | +} | |
| 802 | +*#dm *.dmBody a.u_1331251441 span.text | |
| 803 | +{ | |
| 804 | + text-decoration:none !important; | |
| 805 | + font-weight:400 !important; | |
| 806 | +} | |
| 807 | +*#dm *.dmBody a.u_1331251441:hover span.text | |
| 808 | +{ | |
| 809 | + text-decoration:underline !important; | |
| 810 | + color:var(--color_1) !important; | |
| 811 | +} | |
| 812 | +*#dm *.dmBody a.u_1331251441.hover span.text | |
| 813 | +{ | |
| 814 | + text-decoration:underline !important; | |
| 815 | + color:var(--color_1) !important; | |
| 816 | +} | |
| 817 | +*#dm *.dmBody a.u_1331251441:hover | |
| 818 | +{ | |
| 819 | + background-color:var(--color_3) !important; | |
| 820 | + background-image:none !important; | |
| 821 | +} | |
| 822 | +*#dm *.dmBody a.u_1331251441.hover | |
| 823 | +{ | |
| 824 | + background-color:var(--color_3) !important; | |
| 825 | + background-image:none !important; | |
| 826 | +} | |
| 827 | +*#dm *.dmBody div.u_1884387629 | |
| 828 | +{ | |
| 829 | + background-color:rgba(0,0,0,0.05) !important; | |
| 830 | +} | |
| 831 | +*#dm *.dmBody a.u_1331251441 | |
| 832 | +{ | |
| 833 | + border-style:solid !important; | |
| 834 | + border-width:2px !important; | |
| 835 | + border-color:var(--color_3) !important; | |
| 836 | + background-color:rgba(0,0,0,0) !important; | |
| 837 | + border-radius:20px 20px 20px 20px !important; | |
| 838 | +} | |
| 839 | +*#dm *.dmBody div.u_1748061203 .svg | |
| 840 | +{ | |
| 841 | + color:var(--color_1) !important; | |
| 842 | + fill:var(--color_1) !important; | |
| 843 | +} | |
| 844 | +*#dm *.dmBody a.u_1756842165 | |
| 845 | +{ | |
| 846 | + border-color:var(--color_3) !important; | |
| 847 | + border-style:solid !important; | |
| 848 | + border-width:2px !important; | |
| 849 | + border-radius:20px 20px 20px 20px !important; | |
| 850 | +} | |
| 851 | +*#dm *.dmBody *.u_1079271476 | |
| 852 | +{ | |
| 853 | + background-position:50% 50% !important; | |
| 854 | +} | |
| 855 | +*#dm *.dmBody *.u_1188563749 | |
| 856 | +{ | |
| 857 | + width:100% !important; | |
| 858 | +} | |
| 859 | +*#dm *.dmBody div.u_1713239492:before | |
| 860 | +{ | |
| 861 | + background-color:var(--color_1) !important; | |
| 862 | + opacity:0.4 !important; | |
| 863 | +} | |
| 864 | +*#dm *.dmBody div.u_1713239492.before | |
| 865 | +{ | |
| 866 | + background-color:var(--color_1) !important; | |
| 867 | + opacity:0.4 !important; | |
| 868 | +} | |
| 869 | +*#dm *.dmBody div.u_1713239492>.bgExtraLayerOverlay | |
| 870 | +{ | |
| 871 | + background-color:var(--color_1) !important; | |
| 872 | + opacity:0.4 !important; | |
| 873 | +} | |
| 874 | +*#dm *.dmBody div.u_1746905231 | |
| 875 | +{ | |
| 876 | + background-image:linear-gradient(90deg,rgba(66,123,202,1) 0%,rgba(73,174,223,1) 100%) !important; | |
| 877 | + background-origin:border-box !important; | |
| 878 | +} | |
| 879 | +*#dm *.dmBody div.u_1373323900 | |
| 880 | +{ | |
| 881 | + background-image:linear-gradient(90deg,rgba(66,123,202,1) 0%,rgba(73,174,223,1) 100%) !important; | |
| 882 | + background-origin:border-box !important; | |
| 883 | +} | |
| 884 | +*#dm *.dmBody nav.u_1737436200 | |
| 885 | +{ | |
| 886 | + color:black !important; | |
| 887 | +} | |
| 888 | +*#dm *.dmBody nav.u_1889817761 | |
| 889 | +{ | |
| 890 | + color:black !important; | |
| 891 | +} | |
| 892 | + | |
| 893 | +</style> | |
| 894 | + | |
| 895 | +<style id="pagestyleDevice" type="text/css"> | |
| 896 | + *#dm *.d-page-1716942098 DIV.dmInner | |
| 897 | +{ | |
| 898 | + background-repeat:no-repeat !important; | |
| 899 | + background-size:cover !important; | |
| 900 | + background-attachment:fixed !important; | |
| 901 | + background-position:50% 50% !important; | |
| 902 | +} | |
| 903 | +*#dm *.d-page-1716942098 DIV#dmSlideRightNavRight | |
| 904 | +{ | |
| 905 | + background-repeat:no-repeat !important; | |
| 906 | + background-image:none !important; | |
| 907 | + background-size:cover !important; | |
| 908 | + background-attachment:fixed !important; | |
| 909 | + background-position:50% 50% !important; | |
| 910 | +} | |
| 911 | +*#dm *.dmBody div.u_1867569646 | |
| 912 | +{ | |
| 913 | + height:40px !important; | |
| 914 | +} | |
| 915 | +*#dm *.dmBody a.u_1756842165 span.text | |
| 916 | +{ | |
| 917 | + font-size:20px !important; | |
| 918 | +} | |
| 919 | +*#dm *.dmBody div.u_1937526287 | |
| 920 | +{ | |
| 921 | + margin-left:20px !important; | |
| 922 | + padding-top:0px !important; | |
| 923 | + padding-left:20px !important; | |
| 924 | + padding-bottom:0px !important; | |
| 925 | + margin-top:0px !important; | |
| 926 | + margin-bottom:0px !important; | |
| 927 | + margin-right:20px !important; | |
| 928 | + padding-right:20px !important; | |
| 929 | +} | |
| 930 | +*#dm *.dmBody div.u_1121935101 | |
| 931 | +{ | |
| 932 | + height:600px !important; | |
| 933 | +} | |
| 934 | +@media (min-width:768px) and (max-width:1024px) {} | |
| 935 | +@media (min-width:1025px) {} | |
| 936 | +*#dm *.dmBody div.u_1221610193 | |
| 937 | +{ | |
| 938 | + height:20px !important; | |
| 939 | +} | |
| 940 | +*#dm *.dmBody div.u_1127078365 | |
| 941 | +{ | |
| 942 | + height:20px !important; | |
| 943 | +} | |
| 944 | +*#dm *.dmBody div.u_1288707829 | |
| 945 | +{ | |
| 946 | + height:20px !important; | |
| 947 | +} | |
| 948 | +*#dm *.dmBody div.u_1337411818 | |
| 949 | +{ | |
| 950 | + height:20px !important; | |
| 951 | +} | |
| 952 | +*#dm *.dmBody a.u_1756842165 | |
| 953 | +{ | |
| 954 | + float:none !important; | |
| 955 | + top:0px !important; | |
| 956 | + left:0px !important; | |
| 957 | + width:200px !important; | |
| 958 | + position:relative !important; | |
| 959 | + height:auto !important; | |
| 960 | + padding-top:10px !important; | |
| 961 | + padding-left:7px !important; | |
| 962 | + padding-bottom:10px !important; | |
| 963 | + min-height:40px !important; | |
| 964 | + max-width:100% !important; | |
| 965 | + padding-right:7px !important; | |
| 966 | + min-width:0 !important; | |
| 967 | + text-align:center !important; | |
| 968 | + margin-right:866px !important; | |
| 969 | + margin-left:0px !important; | |
| 970 | + margin-top:20px !important; | |
| 971 | + margin-bottom:10px !important; | |
| 972 | +} | |
| 973 | +*#dm *.dmBody a.u_1331251441 | |
| 974 | +{ | |
| 975 | + float:none !important; | |
| 976 | + top:0px !important; | |
| 977 | + left:0 !important; | |
| 978 | + width:200px !important; | |
| 979 | + position:relative !important; | |
| 980 | + height:auto !important; | |
| 981 | + padding-top:10px !important; | |
| 982 | + padding-left:7px !important; | |
| 983 | + padding-bottom:10px !important; | |
| 984 | + min-height:40px !important; | |
| 985 | + margin-right:auto !important; | |
| 986 | + margin-left:auto !important; | |
| 987 | + max-width:100% !important; | |
| 988 | + margin-top:10px !important; | |
| 989 | + margin-bottom:10px !important; | |
| 990 | + padding-right:7px !important; | |
| 991 | + min-width:0 !important; | |
| 992 | + text-align:center !important; | |
| 993 | +} | |
| 994 | +*#dm *.dmBody a.u_1331251441 span.text | |
| 995 | +{ | |
| 996 | + font-size:18px !important; | |
| 997 | +} | |
| 998 | +*#dm *.dmBody div.u_1748061203 | |
| 999 | +{ | |
| 1000 | + width:90px !important; | |
| 1001 | + height:90px !important; | |
| 1002 | +} | |
| 1003 | +*#dm *.dmBody div.u_1281514457 | |
| 1004 | +{ | |
| 1005 | + height:700px !important; | |
| 1006 | + width:1200px !important; | |
| 1007 | +} | |
| 1008 | +*#dm *.dmBody div.u_1004639188 | |
| 1009 | +{ | |
| 1010 | + float:none !important; | |
| 1011 | + top:0 !important; | |
| 1012 | + left:0 !important; | |
| 1013 | + width:auto !important; | |
| 1014 | + position:relative !important; | |
| 1015 | + height:auto !important; | |
| 1016 | + padding-top:90px !important; | |
| 1017 | + padding-left:40px !important; | |
| 1018 | + padding-bottom:90px !important; | |
| 1019 | + min-height:auto !important; | |
| 1020 | + max-width:100% !important; | |
| 1021 | + padding-right:40px !important; | |
| 1022 | + min-width:0 !important; | |
| 1023 | + text-align:start !important; | |
| 1024 | + background-position:50% 50% !important; | |
| 1025 | + background-attachment:initial !important; | |
| 1026 | + margin-left:0px !important; | |
| 1027 | + margin-top:0px !important; | |
| 1028 | + margin-bottom:0px !important; | |
| 1029 | + margin-right:0px !important; | |
| 1030 | +} | |
| 1031 | + | |
| 1032 | +</style> | |
| 1033 | + | |
| 1034 | +<!-- Flex Sections CSS --> | |
| 1035 | + | |
| 1036 | + | |
| 1037 | + | |
| 1038 | + | |
| 1039 | + | |
| 1040 | + | |
| 1041 | + | |
| 1042 | +<style id="globalFontSizeStyle" type="text/css"> | |
| 1043 | + .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-28, .size-28, .size-28 > font { font-size: 28px !important; } | |
| 1044 | +</style> | |
| 1045 | +<style id="pageFontSizeStyle" type="text/css"> | |
| 1046 | +</style> | |
| 1047 | + | |
| 1048 | + | |
| 1049 | + | |
| 1050 | + | |
| 1051 | +<style id="hideAnimFix"> | |
| 1052 | + .dmDesktopBody:not(.editGrid) [data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) [data-anim-extended] { | |
| 1053 | + visibility: hidden; | |
| 1054 | + } | |
| 1055 | + | |
| 1056 | + .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-extended] { | |
| 1057 | + visibility: hidden !important; | |
| 1058 | + } | |
| 1059 | + | |
| 1060 | + #dmRoot:not(.editGrid) .flex-element [data-anim-extended] { | |
| 1061 | + visibility: hidden; | |
| 1062 | + } | |
| 1063 | + | |
| 1064 | +</style> | |
| 1065 | + | |
| 1066 | + | |
| 1067 | + | |
| 1068 | + | |
| 1069 | +<style id="fontFallbacks"> | |
| 1070 | + @font-face { | |
| 1071 | + font-family: "Roboto Fallback"; | |
| 1072 | + src: local('Arial'); | |
| 1073 | + ascent-override: 92.6709%; | |
| 1074 | + descent-override: 24.3871%; | |
| 1075 | + size-adjust: 100.1106%; | |
| 1076 | + line-gap-override: 0%; | |
| 1077 | + }@font-face { | |
| 1078 | + font-family: "Montserrat Fallback"; | |
| 1079 | + src: local('Arial'); | |
| 1080 | + ascent-override: 84.9466%; | |
| 1081 | + descent-override: 22.0264%; | |
| 1082 | + size-adjust: 113.954%; | |
| 1083 | + line-gap-override: 0%; | |
| 1084 | + }@font-face { | |
| 1085 | + font-family: "Lato Fallback"; | |
| 1086 | + src: local('Arial'); | |
| 1087 | + ascent-override: 101.3181%; | |
| 1088 | + descent-override: 21.865%; | |
| 1089 | + size-adjust: 97.4159%; | |
| 1090 | + line-gap-override: 0%; | |
| 1091 | + }@font-face { | |
| 1092 | + font-family: "Pacifico Fallback"; | |
| 1093 | + src: local('Arial'); | |
| 1094 | + ascent-override: 140.9687%; | |
| 1095 | + descent-override: 49.0091%; | |
| 1096 | + size-adjust: 92.4319%; | |
| 1097 | + line-gap-override: 0%; | |
| 1098 | + }@font-face { | |
| 1099 | + font-family: "Courier Prime Fallback"; | |
| 1100 | + src: local('Arial'); | |
| 1101 | + ascent-override: 57.5122%; | |
| 1102 | + descent-override: 25.1616%; | |
| 1103 | + size-adjust: 135.8407%; | |
| 1104 | + line-gap-override: 0%; | |
| 1105 | + }@font-face { | |
| 1106 | + font-family: "Comfortaa Fallback"; | |
| 1107 | + src: local('Arial'); | |
| 1108 | + ascent-override: 74.2135%; | |
| 1109 | + descent-override: 19.7117%; | |
| 1110 | + size-adjust: 118.7115%; | |
| 1111 | + line-gap-override: 0%; | |
| 1112 | + } | |
| 1113 | +</style> | |
| 1114 | + | |
| 1115 | + | |
| 1116 | +<!-- End render the required css and JS in the head section --> | |
| 1117 | + | |
| 1118 | + | |
| 1119 | + | |
| 1120 | + | |
| 1121 | + | |
| 1122 | + | |
| 1123 | +<meta property="og:type" content="website"> | |
| 1124 | +<meta property="og:url" content="https://www.girs.ca/location/carleton-sur-mer/rue-comeau"> | |
| 1125 | + | |
| 1126 | + <title> | |
| 1127 | + Jumelé à louer à Carleton-sur-Mer | Rue Comeau | GIRS | |
| 1128 | + </title> | |
| 1129 | + <meta name="description" content="Découvrez nos jumelés à louer à Carleton-sur-Mer sur la rue Comeau. 2 chambres, terrasse, climatisation et cadre de vie paisible."/> | |
| 1130 | + | |
| 1131 | + <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"/> | |
| 1132 | + | |
| 1133 | + <meta name="twitter:card" content="summary"/> | |
| 1134 | + <meta name="twitter:title" content="Jumelé à louer à Carleton-sur-Mer | Rue Comeau | GIRS"/> | |
| 1135 | + <meta name="twitter:description" content="Découvrez nos jumelés à louer à Carleton-sur-Mer sur la rue Comeau. 2 chambres, terrasse, climatisation et cadre de vie paisible."/> | |
| 1136 | + <meta property="og:description" content="Découvrez nos jumelés à louer à Carleton-sur-Mer sur la rue Comeau. 2 chambres, terrasse, climatisation et cadre de vie paisible."/> | |
| 1137 | + <meta property="og:title" content="Jumelé à louer à Carleton-sur-Mer | Rue Comeau | GIRS"/> | |
| 1138 | + | |
| 1139 | + | |
| 1140 | + | |
| 1141 | + | |
| 1142 | +<!-- SYS- VVNfRElSRUNUX1BST0RVQ1RJT04= --> | |
| 1143 | +</head> | |
| 1144 | + | |
| 1145 | + | |
| 1146 | + | |
| 1147 | + | |
| 1148 | + | |
| 1149 | + | |
| 1150 | + | |
| 1151 | + | |
| 1152 | + | |
| 1153 | + | |
| 1154 | + | |
| 1155 | + | |
| 1156 | + | |
| 1157 | + | |
| 1158 | + | |
| 1159 | + | |
| 1160 | + | |
| 1161 | + | |
| 1162 | + | |
| 1163 | + | |
| 1164 | + | |
| 1165 | +<body id="dmRoot" data-page-alias="location/carleton-sur-mer/rue-comeau" class="dmRoot dmDesktopBody fix-mobile-scrolling addCanvasBorder dmResellerSite dmLargeBody responsiveTablet " | |
| 1166 | + style="padding:0;margin:0;" | |
| 1167 | + | |
| 1168 | + > | |
| 1169 | + | |
| 1170 | + | |
| 1171 | + | |
| 1172 | + | |
| 1173 | + | |
| 1174 | + | |
| 1175 | + | |
| 1176 | + | |
| 1177 | + | |
| 1178 | + | |
| 1179 | + | |
| 1180 | + | |
| 1181 | + | |
| 1182 | + | |
| 1183 | + | |
| 1184 | + | |
| 1185 | +<!-- ========= Site Content ========= --> | |
| 1186 | +<div id="dm" class='dmwr'> | |
| 1187 | + | |
| 1188 | + <div class="dm_wrapper standard-var5 widgetStyle-3 standard"> | |
| 1189 | + <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> | |
| 1190 | +</div> | |
| 1191 | +</div> | |
| 1192 | + <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> | |
| 1193 | +</div> | |
| 1194 | + <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">À louer<span class="icon icon-angle-down"></span> | |
| 1195 | +</span> | |
| 1196 | +</a> | |
| 1197 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1198 | +</span> | |
| 1199 | +</a> | |
| 1200 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/scott/rue-amanda-gustave" class="unifiednav__item unav-item dmUDNavigationItem_010101104557 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Amanda-Gustave" data-auto="page-text-style">Rue Amanda-Gustave<span class="icon icon-angle-right"></span> | |
| 1201 | +</span> | |
| 1202 | +</a> | |
| 1203 | +</li> | |
| 1204 | + <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> | |
| 1205 | +</span> | |
| 1206 | +</a> | |
| 1207 | +</li> | |
| 1208 | + <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> | |
| 1209 | +</span> | |
| 1210 | +</a> | |
| 1211 | +</li> | |
| 1212 | +</ul> | |
| 1213 | +</li> | |
| 1214 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1215 | +</span> | |
| 1216 | +</a> | |
| 1217 | + <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 dmNavItemSelected dmUDNavigationItem_01010162050 " target="" data-target-page-alias="" aria-current="page" data-auto="selected-page"> <span class="nav-item-text " data-link-text="Rue Comeau" data-auto="page-text-style">Rue Comeau<span class="icon icon-angle-right"></span> | |
| 1218 | +</span> | |
| 1219 | +</a> | |
| 1220 | +</li> | |
| 1221 | +</ul> | |
| 1222 | +</li> | |
| 1223 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1224 | +</span> | |
| 1225 | +</a> | |
| 1226 | + <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 Érables, Jumelé<span class="icon icon-angle-right"></span> | |
| 1227 | +</span> | |
| 1228 | +</a> | |
| 1229 | +</li> | |
| 1230 | + <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 Érables, Condo<span class="icon icon-angle-right"></span> | |
| 1231 | +</span> | |
| 1232 | +</a> | |
| 1233 | +</li> | |
| 1234 | +</ul> | |
| 1235 | +</li> | |
| 1236 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1237 | +</span> | |
| 1238 | +</a> | |
| 1239 | + <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> | |
| 1240 | +</span> | |
| 1241 | +</a> | |
| 1242 | +</li> | |
| 1243 | +</ul> | |
| 1244 | +</li> | |
| 1245 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1246 | +</span> | |
| 1247 | +</a> | |
| 1248 | + <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> | |
| 1249 | +</span> | |
| 1250 | +</a> | |
| 1251 | +</li> | |
| 1252 | +</ul> | |
| 1253 | +</li> | |
| 1254 | +</ul> | |
| 1255 | +</li> | |
| 1256 | + <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">À vendre<span class="icon icon-angle-down"></span> | |
| 1257 | +</span> | |
| 1258 | +</a> | |
| 1259 | + <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> | |
| 1260 | +</span> | |
| 1261 | +</a> | |
| 1262 | +</li> | |
| 1263 | +</ul> | |
| 1264 | +</li> | |
| 1265 | + <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> | |
| 1266 | +</span> | |
| 1267 | +</a> | |
| 1268 | + <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ésentation au TAL<span class="icon icon-angle-right"></span> | |
| 1269 | +</span> | |
| 1270 | +</a> | |
| 1271 | +</li> | |
| 1272 | +</ul> | |
| 1273 | +</li> | |
| 1274 | + <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étaires<span class="icon icon-angle-down"></span> | |
| 1275 | +</span> | |
| 1276 | +</a> | |
| 1277 | +</li> | |
| 1278 | + <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> | |
| 1279 | +</span> | |
| 1280 | +</a> | |
| 1281 | +</li> | |
| 1282 | +</ul> | |
| 1283 | +</nav> | |
| 1284 | +</div> | |
| 1285 | +</div> | |
| 1286 | +</div> | |
| 1287 | + <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> | |
| 1288 | +<b> <span style="text-decoration-line: underline;"></span> | |
| 1289 | +<span class="font-size-22 lh-1"> <span style="text-decoration-line: underline;"></span> | |
| 1290 | + <div style="text-align: left;"> <span style=""> <span style="text-decoration-line: underline;"></span> | |
| 1291 | +<span style=""> <span style="text-decoration-line: underline;"></span> | |
| 1292 | +<font style="color: rgb(255, 255, 255);"> <span style="text-decoration-line: underline;"></span> | |
| 1293 | +<span style="" class="font-size-22 lh-1"> <span style="text-decoration-line: underline;"></span> | |
| 1294 | +<b style=""> <span style="text-decoration-line: underline;"> <span style="font-weight: 700; font-size: 20px;">Nous contacter</span></span> | |
| 1295 | +</b> | |
| 1296 | +</span> | |
| 1297 | +</font> | |
| 1298 | +</span> | |
| 1299 | +</span> | |
| 1300 | +</div> | |
| 1301 | +</span> | |
| 1302 | +</b> | |
| 1303 | +</font> | |
| 1304 | +</div> | |
| 1305 | +</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 && dm_gaq_push_event('socialLink', 'click', 'Email')"> <span class="dmSocialEmail dm-social-icons-email oneIcon socialHubIcon style8" aria-hidden="true" data-hover-effect=""></span> | |
| 1306 | +</a> | |
| 1307 | + <a href="https://www.facebook.com/gestionimmobiliererivesud/" target="_blank" dm_dont_rewrite_url="true" aria-label="facebook" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Facebook')"> <span class="dmSocialFacebook dm-social-icons-facebook oneIcon socialHubIcon style8" aria-hidden="true" data-hover-effect=""></span> | |
| 1308 | +</a> | |
| 1309 | +</div> | |
| 1310 | +</div> | |
| 1311 | +</div> | |
| 1312 | + <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> | |
| 1313 | +</span> | |
| 1314 | + <span class="text">Appelez-nous</span> | |
| 1315 | +</a> | |
| 1316 | +</div> | |
| 1317 | +</div> | |
| 1318 | +</div> | |
| 1319 | +</div> | |
| 1320 | + <div class="layout-drawer-overlay" id="layout-drawer-overlay"></div> | |
| 1321 | +</div> | |
| 1322 | + <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> | |
| 1323 | +</div> | |
| 1324 | +</div> | |
| 1325 | +</div> | |
| 1326 | +</div> | |
| 1327 | + <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> | |
| 1328 | + <span class="hamburger__slice"></span> | |
| 1329 | + <span class="hamburger__slice"></span> | |
| 1330 | +</button> | |
| 1331 | + <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> | |
| 1332 | + <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 && dm_gaq_push_event('socialLink', 'click', 'Facebook')"> <span class="dmSocialFacebook dm-social-icons-facebook oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> | |
| 1333 | +</a> | |
| 1334 | + <a href="http://linkedin.com/" target="_blank" dm_dont_rewrite_url="true" aria-label="linkedin" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Linkedin')"> <span class="dmSocialLinkedin icon-linkedin oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> | |
| 1335 | +</a> | |
| 1336 | + <a href="mailto:immeubles@gestionirs.com" dm_dont_rewrite_url="true" aria-label="email" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Email')"> <span class="dmSocialEmail dm-social-icons-email oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> | |
| 1337 | +</a> | |
| 1338 | +</div> | |
| 1339 | +</div> | |
| 1340 | +</div> | |
| 1341 | +</div> | |
| 1342 | + <div class="u_1980771558 dmRespCol small-12 large-2 medium-2" id="1980771558"> <span id="1064055669"></span> | |
| 1343 | + <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> | |
| 1344 | +</svg> | |
| 1345 | +</div> | |
| 1346 | +</div> | |
| 1347 | + <div class="u_1016959372 dmRespCol small-12 large-2 medium-2" id="1016959372"> <span id="1845699766"></span> | |
| 1348 | + <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> | |
| 1349 | +</div> | |
| 1350 | +</div> | |
| 1351 | + <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> | |
| 1352 | +</div> | |
| 1353 | +</div> | |
| 1354 | + <div class="u_1522799502 dmRespCol small-12 large-10 medium-10" id="1522799502"> <span id="1481163886"></span> | |
| 1355 | + <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">À louer<span class="icon icon-angle-down"></span> | |
| 1356 | +</span> | |
| 1357 | +</a> | |
| 1358 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1359 | +</span> | |
| 1360 | +</a> | |
| 1361 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/scott/rue-amanda-gustave" class="unifiednav__item unav-item dmUDNavigationItem_010101104557 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Amanda-Gustave" data-auto="page-text-style">Rue Amanda-Gustave<span class="icon icon-angle-right"></span> | |
| 1362 | +</span> | |
| 1363 | +</a> | |
| 1364 | +</li> | |
| 1365 | + <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> | |
| 1366 | +</span> | |
| 1367 | +</a> | |
| 1368 | +</li> | |
| 1369 | + <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> | |
| 1370 | +</span> | |
| 1371 | +</a> | |
| 1372 | +</li> | |
| 1373 | +</ul> | |
| 1374 | +</li> | |
| 1375 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1376 | +</span> | |
| 1377 | +</a> | |
| 1378 | + <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 dmNavItemSelected dmUDNavigationItem_01010162050 " target="" data-target-page-alias="" aria-current="page" data-auto="selected-page"> <span class="nav-item-text " data-link-text="Rue Comeau" data-auto="page-text-style">Rue Comeau<span class="icon icon-angle-right"></span> | |
| 1379 | +</span> | |
| 1380 | +</a> | |
| 1381 | +</li> | |
| 1382 | +</ul> | |
| 1383 | +</li> | |
| 1384 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1385 | +</span> | |
| 1386 | +</a> | |
| 1387 | + <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 Érables, Jumelé<span class="icon icon-angle-right"></span> | |
| 1388 | +</span> | |
| 1389 | +</a> | |
| 1390 | +</li> | |
| 1391 | + <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 Érables, Condo<span class="icon icon-angle-right"></span> | |
| 1392 | +</span> | |
| 1393 | +</a> | |
| 1394 | +</li> | |
| 1395 | +</ul> | |
| 1396 | +</li> | |
| 1397 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1398 | +</span> | |
| 1399 | +</a> | |
| 1400 | + <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> | |
| 1401 | +</span> | |
| 1402 | +</a> | |
| 1403 | +</li> | |
| 1404 | +</ul> | |
| 1405 | +</li> | |
| 1406 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1407 | +</span> | |
| 1408 | +</a> | |
| 1409 | + <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> | |
| 1410 | +</span> | |
| 1411 | +</a> | |
| 1412 | +</li> | |
| 1413 | +</ul> | |
| 1414 | +</li> | |
| 1415 | +</ul> | |
| 1416 | +</li> | |
| 1417 | + <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">À vendre<span class="icon icon-angle-down"></span> | |
| 1418 | +</span> | |
| 1419 | +</a> | |
| 1420 | + <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> | |
| 1421 | +</span> | |
| 1422 | +</a> | |
| 1423 | +</li> | |
| 1424 | +</ul> | |
| 1425 | +</li> | |
| 1426 | + <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> | |
| 1427 | +</span> | |
| 1428 | +</a> | |
| 1429 | + <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ésentation au TAL<span class="icon icon-angle-right"></span> | |
| 1430 | +</span> | |
| 1431 | +</a> | |
| 1432 | +</li> | |
| 1433 | +</ul> | |
| 1434 | +</li> | |
| 1435 | + <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étaires<span class="icon icon-angle-down"></span> | |
| 1436 | +</span> | |
| 1437 | +</a> | |
| 1438 | +</li> | |
| 1439 | + <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> | |
| 1440 | +</span> | |
| 1441 | +</a> | |
| 1442 | +</li> | |
| 1443 | +</ul> | |
| 1444 | +</nav> | |
| 1445 | +</div> | |
| 1446 | +</div> | |
| 1447 | +</div> | |
| 1448 | +</div> | |
| 1449 | +</div> | |
| 1450 | +</div> | |
| 1451 | + <div dmwrapped="true" id="dmFirstContainer" class="dmBody u_dmStyle_template_location/carleton-sur-mer/rue-comeau 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> | |
| 1452 | +</div> | |
| 1453 | +</div> | |
| 1454 | +</div> | |
| 1455 | + <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/Vue+d-ensemble+Jumel%C3%A9s+Carleton-sur-Mer-1920w.png" alt="Une vue aérienne d'une rangée de maisons sur une colline enneigée." id="1697979973" class="" width="1920" height="1080" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/Vue+d-ensemble+Jumel%C3%A9s+Carleton-sur-Mer.png" onerror="handleImageLoadError(this)"/></div> | |
| 1456 | +</div> | |
| 1457 | +</div> | |
| 1458 | +</div> | |
| 1459 | + <div class="dmRespRow" id="1958286401"> <div class="dmRespColsWrapper" id="1911295334"> <div class="dmRespCol large-12 medium-12 small-12" id="1257255836"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3 u_1748061203" data-element-type="graphic" data-widget-type="graphic" id="1748061203"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1383326881" class="svg u_1383326881" data-icon-custom="true" data-icon-name="House_7707095.svg"> <title id="1102086822">Une silhouette noire et blanche d'une maison sur fond blanc.</title> | |
| 1460 | + <path d="m7.5078 36.023 1.2344 3.457 41.441-21.695 41.188 21.609 1.1211-3.3984-42.309-22.344z"></path> | |
| 1461 | + <path d="m9.2773 79.992h80.039v6.3555h-80.039z"></path> | |
| 1462 | + <path d="m50.113 19.18-35.93 18.781-0.054688 40.68h25.281l-0.003906-23.707c0-5.8398 4.75-10.59 10.594-10.59 5.8398 0 10.594 4.75 10.594 10.59v23.707h25.281v-40.68zm-24.574 40.852h-5.2852v-5.832h5.2852zm0-7.2383h-5.2852v-5.832h5.2852zm6.6914 7.2383h-5.2852v-5.832h5.2852zm0-7.2383h-5.2852v-5.832h5.2852zm17.066-15.086c-2.7695-0.32031-4.9609-2.5156-5.2852-5.2852h5.2852zm0-6.6875h-5.2852c0.32031-2.7695 2.5156-4.9609 5.2852-5.2812zm1.4062-5.2852c2.7695 0.32031 4.9609 2.5156 5.2812 5.2812h-5.2812zm0 11.973v-5.2852h5.2812c-0.32031 2.7695-2.5117 4.9648-5.2812 5.2852zm22.352 22.324h-5.2852v-5.832h5.2852zm0-7.2383h-5.2852v-5.832h5.2852zm6.6914 7.2383h-5.2852v-5.832h5.2852zm0-7.2383h-5.2852v-5.832h5.2852z"></path> | |
| 1463 | + <path d="m50 45.777c-5.0586 0-9.1562 4.1016-9.1562 9.1562v23.695h18.316l-0.003906-23.695c0-5.0547-4.0977-9.1562-9.1562-9.1562zm-0.70312 15.617h-6.1289v-5.707h6.1289zm0-7.1133h-6.0352c0.5-3.0117 2.9648-5.3594 6.0352-5.6719zm8.1094 11.43c0 0.87891-0.71094 1.5898-1.5898 1.5898s-1.5898-0.71094-1.5898-1.5898c0-0.87891 0.71094-1.5898 1.5898-1.5898s1.5898 0.71094 1.5898 1.5898zm-0.57422-4.3164h-6.1289v-5.707h6.1289zm-6.1289-7.1133v-5.6719c3.0703 0.3125 5.5352 2.6602 6.0352 5.6719z"></path> | |
| 1464 | +</svg> | |
| 1465 | +</div> | |
| 1466 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1844873187" style="transition: opacity 1s ease-in-out;"> <h1 class="text-align-center"><span style="color: var(--color_2); display: unset;">Rue Comeau</span></h1> | |
| 1467 | +</div> | |
| 1468 | +</div> | |
| 1469 | +</div> | |
| 1470 | +</div> | |
| 1471 | + <div class="dmRespRow" id="1299034309"> <div class="dmRespColsWrapper" id="1051852715"> <div class="dmRespCol large-6 medium-6 small-12" id="1199127370"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1692095137" style="transition: opacity 1s ease-in-out;"><p><span style="display: initial;">Découvrez nos jumelés locatifs situés dans la charmante municipalité de Carleton-sur-Mer, sur la rive nord de la baie des Chaleurs, en Gaspésie. Offrant un parfait équilibre entre tranquillité, espace et accessibilité, ces maisons locatives sont idéales pour ceux et celles qui souhaitent vivre dans un cadre naturel exceptionnel, tout en restant à proximité des services essentiels.</span></p><p><span style="display: initial;"><span class="ql-cursor"></span></span></p><p><span style="display: initial;">Chaque jumelé comprend deux chambres confortables, une grande cuisine fonctionnelle, une salle de bain spacieuse, ainsi qu’une entrée privée et une terrasse extérieure, parfaites pour profiter des beaux jours. Les espaces sont lumineux, bien aménagés et pensés pour le confort au quotidien, que vous soyez en couple, en famille ou retraité actif.</span></p></div> | |
| 1472 | +</div> | |
| 1473 | + <div class="dmRespCol large-6 medium-6 small-12" id="1839002717"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1894702091" style="transition: opacity 1s ease-in-out;"><p><span style="display: initial;">Situés à quelques minutes des commerces, restaurants, services de santé, plages et activités de plein air, ces jumelés vous offrent un milieu de vie pratique et paisible, au cœur d’un des plus beaux paysages maritimes du Québec.</span></p><p><br/></p><p><span style="display: initial;">Avec Gestion Immobilière Sud, trouvez votre jumelé locatif idéale à Carleton-sur-Mer, et profitez d’un style de vie inspiré par la mer, la nature et la sérénité.</span></p></div> | |
| 1474 | +</div> | |
| 1475 | +</div> | |
| 1476 | +</div> | |
| 1477 | + <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> | |
| 1478 | +</div> | |
| 1479 | +</div> | |
| 1480 | +</div> | |
| 1481 | + <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> | |
| 1482 | +</div> | |
| 1483 | +</div> | |
| 1484 | + <div class="u_1871439213 dmRespCol small-12 large-8 medium-8" id="1871439213"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1047322935"><p><span style="display: initial;">Nos logements sont conçus pour vous offrir un milieu de vie agréable, fonctionnel et chaleureux, où chaque détail compte. Que ce soit pour relaxer après une journée bien remplie ou pour accueillir vos proches, nos espaces de vie sont pensés pour s’adapter à votre quotidien.</span></p><p><br/></p><p><span style="display: initial;">Profitez de pièces spacieuses et lumineuses, d’un aménagement intelligent, d’une insonorisation de qualité supérieure, et de commodités modernes qui rehaussent votre confort.</span></p></div> | |
| 1485 | +</div> | |
| 1486 | +</div> | |
| 1487 | +</div> | |
| 1488 | + <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" data-icon-name="Garden_7722097.svg"> <title id="1431630688">Un dessin en noir et blanc de trois fleurs poussant dans l'herbe.</title> | |
| 1489 | + <path d="m29.887 27.656c-0.011719-2.3672-1.4492-4.4922-3.6406-5.3906s-4.707-0.38672-6.375 1.2891c-1.6719 1.6797-2.168 4.1992-1.2578 6.3867 0.91016 2.1836 3.043 3.6094 5.4141 3.6094 1.5586-0.003906 3.0508-0.625 4.1523-1.7305 1.0977-1.1055 1.7148-2.6016 1.707-4.1641zm-5.8594 2.7656v0.003906c-1.1133 0.007813-2.1211-0.66016-2.5547-1.6836-0.43359-1.0273-0.20312-2.2109 0.57812-3.0039 0.78516-0.79297 1.9648-1.0352 2.9961-0.61328 1.0312 0.41797 1.707 1.418 1.7148 2.5312 0.007812 1.5195-1.2188 2.7578-2.7344 2.7695zm75.949 45.801v0.003906c-0.011718-0.10937-0.03125-0.21094-0.0625-0.3125-0.023437-0.09375-0.058593-0.1875-0.10156-0.27344-0.046875-0.085937-0.10156-0.16797-0.16406-0.24219-0.10938-0.16016-0.26172-0.29297-0.43359-0.38281-0.09375-0.054687-0.19141-0.10156-0.29297-0.13672-0.039063-0.011718-0.066406-0.039062-0.10547-0.050781h-0.003906c-0.125 0-0.25391-0.015625-0.37891-0.046875-0.039063 0-0.070313 0.019531-0.10938 0.023438v-0.003907c-0.11719 0.011719-0.23828 0.035157-0.35156 0.070313-0.078125 0.023437-0.14844 0.050781-0.22266 0.082031-0.17188 0.097656-0.33203 0.22266-0.47266 0.36328-0.066406 0.082032-0.125 0.16797-0.17578 0.26172-0.054687 0.085937-0.097656 0.17578-0.12891 0.27344-0.019531 0.035157-0.039062 0.074219-0.054687 0.11328-0.85156 3.6523-2.25 7.1562-4.1523 10.387-1.5742-1.8516-4.0781-5.3242-4.3047-8.9883v-0.003906c0-0.011719-0.007813-0.019531-0.007813-0.03125h-0.003906c-0.035157-0.61719-0.44922-1.1484-1.0391-1.3398-0.17188-0.054687-0.35547-0.082031-0.54297-0.078125-0.023438 0-0.042969-0.011718-0.066407-0.007812h0.003907c-0.41406 0.027344-0.80078 0.21484-1.0742 0.52734-1.6953 2.0195-2.9297 4.3828-3.6172 6.9297-0.17188-0.24219-0.33984-0.48438-0.51562-0.72266v-7.5352c1.0977 0.17969 2.2031 0.26563 3.3125 0.26563 3.0156 0.078124 5.9883-0.71875 8.5586-2.3008 5.1523-3.4453 6.457-10.293 6.5117-10.582 0.007812-0.10938 0.007812-0.21875-0.007813-0.32812 0.007813-0.085938 0.007813-0.17188 0-0.26172-0.066406-0.1875-0.14453-0.37109-0.22656-0.55078-0.13672-0.14844-0.27734-0.29297-0.42188-0.42969-0.078125-0.039062-0.15625-0.074218-0.23828-0.10547-0.09375-0.054688-0.19531-0.097656-0.30078-0.13281-0.28906-0.0625-7.1289-1.5234-12.32 1.9219-2.1133 1.5-3.793 3.5312-4.8633 5.8906v-20.953c0.97266-0.37891 1.7773-1.1016 2.2617-2.0273 0.39453 0.13672 0.80859 0.21484 1.2266 0.23438 2.3984 0 4.3438-1.9414 4.3438-4.3438-0.019532-0.41797-0.10156-0.83203-0.24219-1.2266 1.4297-0.73828 2.3281-2.2188 2.3281-3.8281 0-1.6133-0.89844-3.0898-2.3281-3.8281 0.49219-1.5156 0.09375-3.1758-1.0312-4.3008s-2.7891-1.5234-4.3008-1.0312c-0.73828-1.4297-2.2148-2.332-3.8281-2.332s-3.0898 0.90234-3.8281 2.332c-1.5156-0.47266-3.168-0.078125-4.3008 1.0352-0.61719 0.64844-1.0156 1.4805-1.1328 2.3711-1.6914-0.24609-6.3164-0.63672-10.016 1.8242-1.6133 1.1289-2.9375 2.625-3.8633 4.3633v-16.934c0.76562-0.35156 1.3945-0.9375 1.8008-1.6719 1.3516 0.44922 2.8398 0.078125 3.8164-0.96094 0.94531-1.0117 1.2969-2.4414 0.92188-3.7773 1.2344-0.66016 2.0039-1.9492 2.0039-3.3477 0-1.3984-0.76953-2.6836-2.0039-3.3477 0.37109-1.3516 0.007812-2.8008-0.96094-3.8164-1.0117-0.94531-2.4414-1.2969-3.7773-0.92188-0.66406-1.2305-1.9492-2-3.3477-2-1.4023 0-2.6875 0.76953-3.3516 2-1.3516-0.36719-2.7969-0.003906-3.8125 0.96094-0.94531 1.0117-1.2969 2.4453-0.92188 3.7812-1.2344 0.66016-2.0078 1.9492-2.0078 3.3477 0 1.4023 0.77344 2.6914 2.0078 3.3516-0.36719 1.3516-0.003906 2.7969 0.96094 3.8125 0.74219 0.71484 1.7383 1.1172 2.7695 1.1094 0.33984-0.019531 0.67578-0.085937 1-0.1875 0.40234 0.73047 1.0234 1.3125 1.7773 1.6641v6.6016c-0.83594-1.3047-1.9258-2.4297-3.1992-3.3125-4.5-3-10.461-1.7383-10.711-1.6797-0.097657 0.03125-0.19141 0.074219-0.27734 0.125-0.085937 0.027343-0.17188 0.066406-0.25391 0.10938-0.085938 0.066406-0.16406 0.14062-0.23438 0.22266-0.066406 0.0625-0.12891 0.12891-0.1875 0.20312-0.17969 0.23828-0.26562 0.53516-0.24219 0.83203-0.011718 0.097656-0.015625 0.19922-0.007812 0.30078 0.1875 0.95312 0.46094 1.8906 0.81641 2.7969 0.92969 2.5977 2.6367 4.8477 4.8828 6.4453 2.2383 1.3789 4.832 2.0781 7.4609 2.0039 0.65234 0 1.3047-0.035156 1.9531-0.10938v41.98c-2.1797 2.0078-4.0352 4.3398-5.5 6.918-0.96875-6.9727-3.1641-12.711-6.5-16.746-0.011719-0.011719-0.023437-0.015625-0.035156-0.027344h0.003906c-0.10547-0.11328-0.22656-0.21094-0.35938-0.28906-0.050781-0.035156-0.10547-0.066406-0.16016-0.09375-0.089844-0.035156-0.18359-0.0625-0.28125-0.082032-0.11719-0.035156-0.23828-0.050781-0.36328-0.054687-0.035156 0-0.066406-0.015625-0.10156-0.015625-0.054688 0-0.10156 0.03125-0.15625 0.039062h0.003906c-0.21484 0.03125-0.41797 0.10938-0.59375 0.23438-0.050781 0.023437-0.10156 0.050781-0.15234 0.082031-0.023437 0.027343-0.050781 0.058593-0.074218 0.089843-0.074219 0.078126-0.14062 0.16016-0.19922 0.25-0.054687 0.078126-0.10547 0.16016-0.14453 0.24609-0.035156 0.089844-0.0625 0.18359-0.082032 0.27734-0.023437 0.10547-0.039062 0.21094-0.042968 0.32031 0 0.039063-0.019532 0.074219-0.015625 0.11328 0.49219 8.1914-4.0781 16.062-6.9297 20.117h-0.003906c-0.42188-4.0156-0.082031-8.0742 1-11.965 0.007813-0.058594 0.015625-0.12109 0.015625-0.17969 0.019531-0.10156 0.027344-0.20703 0.023438-0.30859-0.003907-0.10938-0.019532-0.21484-0.046876-0.31641-0.007812-0.058594-0.015624-0.11719-0.027343-0.17188-0.011719-0.035156-0.042969-0.0625-0.058594-0.10156-0.046875-0.09375-0.10156-0.1875-0.16797-0.26953-0.054687-0.082031-0.12109-0.15625-0.1875-0.22656-0.070312-0.058594-0.14453-0.11328-0.22266-0.16016-0.09375-0.0625-0.19531-0.11719-0.30078-0.15625-0.035157-0.011718-0.058594-0.039062-0.09375-0.050781-0.054688-0.007812-0.10547-0.011719-0.16016-0.011719-0.11719-0.019531-0.23437-0.027343-0.35156-0.019531-0.09375 0.003907-0.19141 0.019531-0.28125 0.042969-0.066406 0.007812-0.13281 0.015625-0.19531 0.03125-0.066407 0.023438-0.13281 0.070312-0.19922 0.09375l-0.015625 0.007812c-1.9219 0.79297-3.668 1.9648-5.1289 3.4453v-16.375c1.1641 0.16797 2.3438 0.25391 3.5195 0.25391 3.625 0.09375 7.1992-0.86328 10.289-2.7617 6.1992-4.1367 7.7812-12.414 7.8477-12.766 0.007812-0.11328 0.007812-0.22656-0.007813-0.33984 0.007813-0.082032 0.007813-0.16406 0-0.24609-0.070313-0.1875-0.14453-0.375-0.23047-0.55469-0.0625-0.078124-0.12891-0.15234-0.20703-0.21875-0.0625-0.074218-0.13281-0.14453-0.21094-0.20703-0.082032-0.046875-0.17188-0.085937-0.25781-0.11328-0.09375-0.050781-0.1875-0.09375-0.28516-0.125-0.35156-0.074219-8.5938-1.8203-14.793 2.3438v-0.003906c-2.418 1.6875-4.3633 3.9609-5.6562 6.6055v-10.75c1.5352-0.45312 2.793-1.5625 3.4375-3.0312 0.62891 0.26172 1.3047 0.39453 1.9844 0.40234h0.03125c1.8008 0 3.4844-0.89453 4.4922-2.3906 1.0117-1.4922 1.2109-3.3906 0.53516-5.0586 1.9922-0.84766 3.2891-2.8047 3.293-4.9688-0.003907-0.72656-0.15234-1.4453-0.42969-2.1172-0.54688-1.2852-1.5781-2.3047-2.8711-2.8359 0.82812-2.0195 0.36719-4.3359-1.168-5.8867-1.5391-1.5469-3.8555-2.0195-5.8789-1.2031-0.84766-2-2.8125-3.3008-4.9883-3.2969-2.1719 0-4.1367 1.3008-4.9805 3.3047-2.0117-0.79297-4.3008-0.33203-5.8516 1.1758-1.543 1.5312-2.0156 3.8398-1.1992 5.8555-1.9961 0.85547-3.2852 2.8164-3.2852 4.9883 0.003906 2.168 1.2969 4.1289 3.293 4.9844-0.80859 2.0117-0.33984 4.3125 1.1953 5.8477 1.5312 1.5312 3.832 2.0039 5.8477 1.1953 0.63281 1.4609 1.8789 2.5703 3.4062 3.0312v25.922c-1.293-3.418-3.5625-6.3789-6.5273-8.5117-6.1992-4.1328-14.445-2.3945-14.797-2.3164-0.10547 0.03125-0.20312 0.078125-0.30078 0.13281-0.082031 0.027343-0.16406 0.0625-0.24219 0.10547-0.085938 0.066406-0.16406 0.14453-0.23047 0.22656-0.070313 0.0625-0.13281 0.12891-0.19141 0.19922-0.042969 0.082031-0.082031 0.16797-0.10938 0.25391-0.050782 0.097656-0.089844 0.19531-0.12109 0.30078-0.0078125 0.082032-0.0078125 0.16406-0.0039062 0.25-0.015625 0.11328-0.015625 0.22656-0.0039063 0.33984 0.0625 0.35156 1.6445 8.6016 7.8516 12.766h-0.003906c3.0664 1.8867 6.6172 2.8359 10.215 2.7422 1.4961 0.011719 2.9922-0.125 4.4648-0.41016v7.0391c-1.4141 2.1484-2.6094 4.4297-3.5742 6.8164-0.78906-3.0586-1.1641-6.207-1.1133-9.3633 0-0.023438-0.011719-0.042969-0.011719-0.066406h0.003907c-0.023438-0.20703-0.0625-0.41016-0.125-0.60938-0.011719-0.023437-0.007813-0.050781-0.019531-0.078124-0.039063-0.0625-0.085938-0.12109-0.13672-0.17969-0.050781-0.085938-0.11328-0.16797-0.18359-0.24219-0.15234-0.125-0.32031-0.23828-0.5-0.32812-0.097656-0.035157-0.20312-0.058594-0.30859-0.074219-0.066406-0.023438-0.13672-0.039063-0.21094-0.054688-0.035156 0-0.058594 0.011719-0.089844 0.011719-0.054688 0.003906-0.10938 0.007812-0.16797 0.019531-0.33203 0.003907-0.64844 0.125-0.89844 0.34375-3.8164 2.1094-6.9297 5.293-8.9492 9.1562-0.99219-1.8789-2.1602-3.6562-3.4883-5.3125-0.019532-0.023437-0.046875-0.035156-0.066406-0.054687-0.074219-0.074219-0.15625-0.14062-0.24609-0.19922-0.074219-0.0625-0.15234-0.11328-0.23438-0.16016-0.089844-0.039063-0.18359-0.066407-0.27734-0.085938-0.097656-0.03125-0.19922-0.050781-0.30078-0.0625-0.03125 0-0.058594-0.019531-0.089844-0.019531-0.074219 0.011719-0.14453 0.023438-0.21094 0.042969-0.10156 0.011719-0.19922 0.03125-0.29297 0.058593-0.10547 0.039063-0.20703 0.089844-0.30078 0.15234-0.0625 0.027344-0.12109 0.054688-0.17578 0.089844-0.023437 0.019531-0.03125 0.046875-0.054687 0.066406-0.078125 0.074219-0.14453 0.15625-0.20312 0.24609-0.058594 0.074219-0.11328 0.15234-0.16016 0.23828-0.035156 0.085938-0.0625 0.17578-0.082031 0.26562-0.03125 0.10547-0.054687 0.21094-0.0625 0.32031 0 0.027343-0.015625 0.054687-0.015625 0.082031l-0.0039062 16.219c0.023438 0.84766 0.71484 1.5234 1.5625 1.5234s1.543-0.67578 1.5625-1.5234v-11.168c0.65625 1.1367 1.207 2.3242 1.6523 3.5547 0.53516 1.3867 0.78125 2.8711 0.72266 4.3555-0.12891 0.84766 0.45312 1.6406 1.3008 1.7734 0.082031 0.011719 0.16406 0.019531 0.25 0.019531 0.76562 0 1.418-0.55859 1.5391-1.3125 0.14844-1.7891-0.082032-3.5859-0.67969-5.2773 1.4336-3.5859 3.8086-6.7148 6.8711-9.0664 0.30859 4 1.1133 7.9414 2.4023 11.742-0.36328 1.2188-0.54688 2.0078-0.54688 2.0078v-0.003906c-0.19141 0.83984 0.32812 1.6719 1.1641 1.8711 0.11328 0.023437 0.23047 0.039062 0.35156 0.039062 0.72656-0.003906 1.3555-0.50391 1.5195-1.2148 0.007813-0.027343 0.21094-0.91406 0.63281-2.2812 1.1445-3.8828 2.8594-7.5703 5.0938-10.949 1.0664-1.5664 2.3789-2.9531 3.8867-4.1055-0.73047 4.4844-0.65234 9.0625 0.23828 13.52 0.29687 1.5195 0.70703 3.0156 1.2148 4.4727 0.30469 0.80859 1.207 1.2188 2.0156 0.91406 0.80469-0.30469 1.2148-1.2031 0.91016-2.0117-0.36328-1.0742-0.66797-2.168-0.91406-3.2773 1.8359-2.2305 7.8281-10.129 9.1445-19.555 2.3828 5.1641 3.6641 10.766 3.7656 16.449 0 0.085937 0.007813 0.13672 0.011719 0.19922-0.76953 2.293-1.2539 4.6719-1.4414 7.0859-0.03125 0.85938 0.63672 1.5859 1.4961 1.625h0.066407 0.003906c0.83594-0.003906 1.5234-0.66406 1.5586-1.5 0.60547-6.9844 3.8359-13.48 9.043-18.176 0.86328-0.76172 1.7734-1.4648 2.7305-2.0977-0.80078 5.8555-0.41016 11.812 1.1484 17.512-0.26562 1.2109-0.44922 2.4375-0.54688 3.6719 0 0.85156 0.6875 1.543 1.5391 1.5469h0.019531c0.85156-0.007812 1.543-0.6875 1.5664-1.5352 0.12109-1.1797 0.3125-2.3516 0.57422-3.5078 0.66797-3.2578 1.7188-6.4258 3.1328-9.4336 1.6328 5.8906 5.8672 11.699 6.1016 12.012 0.023438 0.03125 0.066407 0.046874 0.089844 0.074218 0.10547 0.12891 0.23438 0.23828 0.37891 0.32031 0.054688 0.035156 0.10547 0.066406 0.16406 0.09375 0.1875 0.089843 0.39453 0.13672 0.60547 0.14062h0.019531 0.007813-0.003907c0.085938 0 0.17188-0.007813 0.25391-0.019532 0.22656-0.042968 0.44141-0.13281 0.62891-0.26953 0.011718-0.007812 0.027344 0 0.039062-0.011719 0.058594-0.058593 0.11719-0.12109 0.16797-0.1875 0.074219-0.066406 0.14062-0.14062 0.19922-0.22266 0.089844-0.17578 0.16406-0.36328 0.22656-0.55469 0.003906-0.18359 0.011719-0.37109 0.015625-0.55859-0.011719-0.058594-0.83594-5.4336 1.3438-13.5 0.67188 0.75781 1.3008 1.5156 1.8711 2.2812 1.0586 1.3711 2.0195 2.8164 2.875 4.3242 1.375 2.3281 2.4062 4.8398 3.0625 7.4609 0.14453 0.73438 0.78906 1.2617 1.5352 1.2656 0.10156 0 0.20312-0.011718 0.30078-0.03125 0.84375-0.16016 1.3984-0.97656 1.2383-1.8242-0.67578-2.7891-1.7422-5.4648-3.168-7.9531 0.25391-2.0117 0.82422-3.9688 1.6992-5.7969 1.0859 2.8242 2.6914 5.418 4.7266 7.6562-0.47656 0.57812-0.99219 1.1211-1.543 1.625-0.17188 0.15625-0.33594 0.32422-0.48828 0.5-0.32422 0.47656-0.35938 1.0898-0.09375 1.5977 0.26953 0.51172 0.79688 0.82812 1.3711 0.83203 0.52344 0 1.0195-0.23828 1.3477-0.64844 1.0156-0.9375 1.9258-1.9805 2.7188-3.1094 1.0078-1.4219 1.8867-2.9297 2.625-4.5078v13.121c0.023438 0.84766 0.71484 1.5234 1.5625 1.5234s1.543-0.67578 1.5625-1.5234v-22.102c-0.003906-0.03125-0.023437-0.070312-0.027344-0.10938zm-11.785-11.023c2.7539-1.8281 6.25-1.8594 8.2695-1.6836-0.62109 1.9258-2 5.1289-4.7305 6.9531-2.7461 1.8242-6.2422 1.8711-8.2656 1.707 0.62109-1.9375 2-5.1562 4.7266-6.9766zm-42.102-35.328c-1.6953-1.2617-2.9844-2.9922-3.707-4.9805-0.082031-0.21484-0.14453-0.39844-0.21094-0.60156 2.3164-0.23828 4.6484 0.26172 6.6602 1.4297 1.8594 1.4062 3.2227 3.3672 3.9023 5.5977-2.3125 0.23047-4.6406-0.27734-6.6484-1.4453zm-13.02 19.035c3.6367-2.4453 8.3359-2.3594 10.762-2.1133-0.71094 2.3398-2.4453 6.7148-6.082 9.1406-3.6602 2.4258-8.3516 2.3555-10.773 2.1133 0.70313-2.3359 2.4297-6.7109 6.0938-9.1406zm-23.461 20.324c-3.6406-2.4453-5.3789-6.8125-6.0898-9.1484 2.4297-0.25 7.1289-0.33594 10.766 2.0859 3.6602 2.4453 5.3867 6.8125 6.0898 9.1445-2.4219 0.25-7.1133 0.33984-10.766-2.082zm14.504-29.938c-1.2578 0-2.2773-1.0195-2.2773-2.2812v-0.60156 0.003906c0-0.52344-0.26172-1.0078-0.69531-1.2969-0.43359-0.29297-0.98438-0.34766-1.4648-0.14844-0.19141 0.082031-0.36328 0.19531-0.51172 0.33984l-0.42187 0.42188c-0.89453 0.89844-2.3477 0.89844-3.2422 0-0.89453-0.89453-0.89453-2.3477 0-3.2422l0.42188-0.42188c0.14453-0.14453 0.26172-0.31641 0.34375-0.51172 0.078125-0.1875 0.11719-0.39453 0.12109-0.59766 0-0.019531-0.011719-0.035156-0.011719-0.054687v-0.003906c-0.003906-0.18359-0.042969-0.36719-0.10938-0.53906-0.070313-0.14844-0.16016-0.28906-0.26953-0.41016-0.027344-0.03125-0.035156-0.070313-0.066406-0.10156v0.003906c-0.14453-0.14453-0.31641-0.25781-0.50391-0.33594-0.19141-0.082031-0.39453-0.12109-0.60156-0.12109h-0.60547c-1.2695 0-2.3008-1.0312-2.3008-2.3008s1.0312-2.3008 2.3008-2.3008h0.60156c0.21094 0 0.41797-0.042969 0.61328-0.125l0.046875-0.035157c0.17188-0.078124 0.32812-0.1875 0.46094-0.32422 0.007813-0.007813 0.015625-0.011719 0.023438-0.015625l0.003906-0.003907c0.042969-0.058593 0.078125-0.12109 0.11328-0.1875 0.16016-0.17969 0.25-0.41016 0.25391-0.64844 0.023437-0.074219 0.035156-0.14844 0.046874-0.22266 0-0.011719-0.007812-0.019531-0.007812-0.03125-0.007812-0.12109-0.035156-0.24609-0.074219-0.36328-0.011719-0.078126-0.027343-0.15625-0.054687-0.23047-0.039063-0.070313-0.085938-0.13672-0.13672-0.19922-0.058594-0.10547-0.12891-0.20312-0.21094-0.29297-0.007813-0.007812-0.011719-0.019531-0.019532-0.027343l-0.38281-0.34766h0.003906c-0.89844-0.89844-0.90625-2.3555-0.011719-3.2617 0.90625-0.875 2.3398-0.87891 3.2539-0.007812l0.42187 0.42188c0.44531 0.44531 1.1172 0.57812 1.6992 0.33984 0.58594-0.24219 0.96484-0.80859 0.96875-1.4414v-0.57422c-0.035156-0.63281 0.19141-1.25 0.625-1.707 0.43359-0.46094 1.0391-0.71875 1.6719-0.71875 0.63281 0 1.2344 0.25781 1.6719 0.71875 0.43359 0.45703 0.66016 1.0742 0.625 1.707v0.57422c0 0.52344 0.26172 1.0078 0.69531 1.2969 0.43359 0.28906 0.98047 0.34375 1.4648 0.14453 0.1875-0.074219 0.36328-0.19141 0.50781-0.33594l0.42188-0.42188v-0.003906c0.89453-0.90625 2.3516-0.91797 3.2578-0.023438 0.90625 0.89063 0.91797 2.3477 0.027343 3.2539l-0.42578 0.39062c-0.007812 0.007812-0.011719 0.019531-0.019531 0.027344h0.003906c-0.12109 0.16406-0.23828 0.33203-0.35156 0.5-0.023437 0.074218-0.039062 0.15234-0.054687 0.23047-0.035156 0.11719-0.0625 0.24219-0.070313 0.36719-0.003906 0.007812-0.003906 0.019531-0.007812 0.027344 0.011719 0.074218 0.023438 0.14844 0.046875 0.22266 0.003906 0.23828 0.09375 0.46875 0.25391 0.64844 0.03125 0.066407 0.070313 0.12891 0.11328 0.19141 0.007813 0.007812 0.015626 0.007812 0.023438 0.015624 0.13281 0.13672 0.28906 0.24609 0.46484 0.32422 0.019531 0.007813 0.03125 0.027344 0.050781 0.03125l-0.003906 0.003907c0.19531 0.082031 0.40234 0.125 0.61328 0.125h0.57422c0.92188-0.011719 1.7578 0.53125 2.1211 1.375 0.12109 0.29687 0.1875 0.61719 0.19141 0.9375-0.007813 1.2695-1.043 2.2891-2.3086 2.2812h-0.57031c-0.20703 0.003906-0.41016 0.042968-0.60156 0.12109-0.1875 0.082031-0.35547 0.19531-0.5 0.33984-0.027344 0.027344-0.035156 0.066406-0.0625 0.10156v-0.003907c-0.24609 0.25781-0.37891 0.59766-0.37891 0.94922 0 0.019531-0.011719 0.035156-0.011719 0.058594 0 0.41797 0.16797 0.81641 0.46484 1.1094l0.41797 0.41797c0.43359 0.42578 0.67969 1.0117 0.67969 1.6211s-0.24609 1.1914-0.67969 1.6211c-0.43359 0.43359-1.0234 0.67578-1.6328 0.67578h-0.011719c-0.60547 0-1.1836-0.24219-1.6016-0.67578l-0.42188-0.42188c-0.44922-0.44922-1.1172-0.58203-1.7031-0.33984-0.58203 0.23828-0.96484 0.80859-0.96875 1.4375v0.60156c-0.003906 0.60938-0.25 1.1953-0.68359 1.6211-0.4375 0.42969-1.0234 0.66797-1.6367 0.66016zm38.375-4.2812h0.003907c2.0117-1.168 4.3398-1.6758 6.6562-1.4453-0.10547 0.32031-0.23438 0.66797-0.38672 1.0312-0.73438 1.8164-1.9531 3.3945-3.5234 4.5664-2.0078 1.168-4.332 1.6758-6.6445 1.4492 0.67578-2.2305 2.0391-4.1914 3.8984-5.6016zm-5.8711-20.27c-0.29297 0.29297-0.45703 0.69141-0.45703 1.1055v0.36719c0 0.90625-1.6289 0.94531-1.6289 0v-0.36719c-0.003906-0.41406-0.16797-0.8125-0.46094-1.1055-0.007812-0.007813-0.015624-0.007813-0.023437-0.015626-0.26172-0.26172-0.60938-0.41016-0.97656-0.41797-0.035156 0-0.066406-0.019532-0.10156-0.019532h0.003906c-0.41406 0-0.80859 0.16797-1.1016 0.45703l-0.25 0.25c-0.32812 0.3125-0.83594 0.33203-1.1797 0.039062-0.32422-0.33203-0.33203-0.85938-0.015625-1.1992l0.26562-0.26953c0.007813-0.007812 0.007813-0.015625 0.015625-0.023437 0.26172-0.26562 0.41406-0.61719 0.42188-0.98828 0-0.03125 0.015625-0.058594 0.015625-0.089844 0-0.41406-0.16797-0.8125-0.45703-1.1055-0.007812-0.007813-0.019531-0.011719-0.027344-0.019531v0.003906c-0.26953-0.26953-0.63281-0.42188-1.0117-0.42578-0.023438 0-0.042969-0.011719-0.0625-0.011719h-0.36328c-0.21875 0.003906-0.42969-0.074219-0.58594-0.22656-0.15625-0.14844-0.24219-0.35938-0.24609-0.57422 0-0.22266 0.085937-0.43359 0.24219-0.58984s0.36719-0.24219 0.58984-0.23828h0.36328c0.39844 0 0.78516-0.15625 1.0703-0.4375 0.007812-0.007813 0.019531-0.011719 0.03125-0.019532 0.28906-0.29297 0.45703-0.6875 0.45703-1.1016 0-0.03125-0.015625-0.058594-0.015625-0.085938v-0.003906c-0.007812-0.37109-0.16016-0.72656-0.42188-0.98828-0.007812-0.007813-0.007812-0.015625-0.015625-0.023437l-0.25391-0.25391 0.003906-0.003906c-0.32031-0.32422-0.33594-0.83594-0.039062-1.1797 0.33594-0.3125 0.85547-0.32031 1.2031-0.015626l0.26953 0.26953c0.14453 0.14453 0.31641 0.26172 0.50781 0.33984 0.48438 0.19531 1.0312 0.14062 1.4648-0.14844s0.69531-0.77344 0.69531-1.2969v-0.375c0-0.94531 1.6328-0.90625 1.6289 0v0.36328c0.003906 0.63281 0.38672 1.1992 0.96875 1.4375 0.58203 0.24219 1.2539 0.10938 1.7031-0.33594l0.25-0.25391c0.32812-0.3125 0.83594-0.32422 1.1797-0.035156 0.32422 0.33203 0.33203 0.85938 0.015624 1.1992l-0.26562 0.26953c-0.007813 0.007813-0.011719 0.015625-0.015626 0.023438-0.13672 0.14062-0.24609 0.30469-0.32031 0.48438-0.0625 0.16016-0.09375 0.32812-0.097656 0.5 0 0.03125-0.019532 0.058593-0.019532 0.089843 0 0.20703 0.039063 0.41016 0.12109 0.60156 0.078125 0.1875 0.19141 0.36328 0.33984 0.50781 0.007812 0.007812 0.019531 0.011718 0.03125 0.019531h-0.003906c0.28906 0.27734 0.67188 0.43359 1.0742 0.43359h0.36328c0.21875-0.007812 0.43359 0.074219 0.59375 0.22656 0.15625 0.15625 0.24609 0.36719 0.24609 0.58594 0 0.22266-0.089844 0.43359-0.24609 0.58594-0.16016 0.15234-0.375 0.23828-0.59375 0.23047h-0.36328c-0.035156 0-0.0625 0.015625-0.09375 0.019531l-0.003906-0.003906c-0.36719 0.007812-0.71875 0.16016-0.98047 0.42188-0.007813 0.007812-0.019532 0.007812-0.023438 0.015625-0.29297 0.29297-0.45703 0.69141-0.46094 1.1055 0 0.03125 0.015626 0.058594 0.019532 0.089844 0.003906 0.37109 0.15625 0.72656 0.41797 0.98828 0.007813 0.007812 0.007813 0.015624 0.015626 0.023437l0.25391 0.25391c0.32812 0.32812 0.33594 0.85938 0.023437 1.1992-0.33594 0.31641-0.85547 0.32812-1.1992 0.023438l-0.26953-0.27344h-0.003906c-0.28906-0.29297-0.6875-0.45703-1.0977-0.46094-0.035157 0-0.066407 0.019532-0.10156 0.019532v0.003906c-0.16797 0.003906-0.33203 0.039062-0.49219 0.097656-0.17969 0.074219-0.34375 0.18359-0.48047 0.32031-0.019531 0.003906-0.03125 0.003906-0.039062 0.011719zm21.852 41.582c-1.0312-1.8008-2.4531-3.3516-4.1602-4.5312-5.168-3.4883-12.004-2.0234-12.301-1.957-0.10547 0.035156-0.20703 0.078124-0.30078 0.13672-0.082031 0.027344-0.16016 0.0625-0.23438 0.10156-0.085937 0.070312-0.16797 0.14844-0.23438 0.23047-0.070312 0.0625-0.12891 0.12891-0.1875 0.20312-0.046875 0.085938-0.085937 0.17578-0.11719 0.26953-0.046875 0.089844-0.082032 0.18359-0.11328 0.28125-0.007812 0.09375-0.007812 0.1875 0 0.27734-0.011718 0.10547-0.015624 0.20703-0.003906 0.3125 0.054688 0.28906 1.3594 7.1406 6.5195 10.586 2.5664 1.582 5.5352 2.3789 8.5508 2.3008 0.86328 0 1.7266-0.054687 2.5859-0.16016v14.484c-0.42578-0.46094-0.83203-0.91797-1.3008-1.3867-0.011719-0.011718-0.03125-0.015625-0.042969-0.027344-0.16797-0.12109-0.34375-0.23047-0.52734-0.32422-0.015624-0.007813-0.027343-0.019532-0.042968-0.023438v-0.003906c-0.074219-0.011719-0.14844-0.023438-0.22266-0.027344-0.10938-0.023437-0.21875-0.039062-0.32813-0.039062-0.10156 0.007812-0.19922 0.027344-0.29297 0.058594-0.21484 0.027343-0.41406 0.12109-0.57031 0.26953-0.0625 0.035156-0.125 0.074219-0.17969 0.11719-0.011719 0.011719-0.015625 0.027344-0.027344 0.039063-0.12109 0.16797-0.23047 0.34766-0.32812 0.53125-0.007813 0.015625-0.019531 0.027343-0.023437 0.042969-1.2812 3.7891-2.0703 7.7266-2.3438 11.715-1.7266-3.1719-3.3789-7.1094-3.1836-10.117-0.003906-0.0625-0.011719-0.12109-0.027344-0.18359 0-0.20312-0.050781-0.40625-0.14844-0.58594-0.039062-0.089843-0.089843-0.17578-0.14844-0.25391-0.0625-0.082031-0.13672-0.16016-0.21875-0.23047-0.039063-0.046876-0.082031-0.089844-0.125-0.12891-0.03125-0.019531-0.066406-0.023437-0.10156-0.042969-0.089843-0.054687-0.1875-0.097656-0.28906-0.12891-0.09375-0.039062-0.19141-0.0625-0.28906-0.082031-0.039063 0-0.070313-0.027344-0.10938-0.03125l-0.003906 0.003906c-0.054687 0.003907-0.10938 0.011719-0.16406 0.023438-0.125 0.003906-0.24609 0.023437-0.36719 0.058593-0.039062 0.011719-0.078125 0.027344-0.11719 0.046876v-0.003907c-0.15625 0.058594-0.30078 0.14453-0.42969 0.25-0.019531 0.015625-0.039062 0.039063-0.058593 0.054688v0.003906c-0.089844 0.066406-0.17188 0.14453-0.24609 0.23047-1.7031 2.5195-3.0703 5.25-4.0703 8.125-0.5625-4.4844-0.33594-9.0312 0.66406-13.438 0.011718-0.074219 0.011718-0.14844 0.007812-0.22266 0.015625-0.10156 0.019532-0.21094 0.011719-0.31641-0.015625-0.10938-0.042969-0.21484-0.085937-0.31641-0.011719-0.070313-0.03125-0.14062-0.054688-0.20703-0.011719-0.019532-0.03125-0.03125-0.039062-0.054688-0.058594-0.09375-0.125-0.17969-0.20313-0.25781-0.10156-0.15625-0.25391-0.27734-0.43359-0.34375-0.089844-0.054688-0.1875-0.10156-0.28906-0.13672-0.023437-0.007813-0.039062-0.023437-0.0625-0.03125v0.003906c-0.078125-0.007812-0.15234-0.011719-0.23047-0.007812-0.23047-0.039063-0.46875-0.007813-0.67969 0.085937-0.054688 0.011719-0.10547 0.027344-0.15625 0.042969-0.027344 0.011719-0.050781 0.03125-0.078125 0.046875s-0.054687 0.027344-0.078125 0.046875h-0.003906c-1.2305 0.62891-2.4141 1.3438-3.543 2.1406v-30.266c0.86719 0.12891 1.7422 0.19531 2.6172 0.19141 2.6328 0.070313 5.2305-0.62891 7.4727-2.0117 1.0117-0.69531 1.9102-1.543 2.6562-2.5195 0.34766 0.39062 0.76562 0.71094 1.2305 0.94922-0.13672 0.39062-0.21875 0.80078-0.23828 1.2148-0.054687 1.3867 0.58203 2.7109 1.6992 3.5312 1.1172 0.82422 2.5703 1.0352 3.875 0.57031 0.48828 0.92578 1.293 1.6484 2.2695 2.0273zm-1.1445 5.0117c-2.0234 0.16406-5.5156 0.12109-8.2617-1.6992-2.7305-1.8242-4.1094-5.0273-4.7344-6.9531 2.0156-0.17188 5.5-0.13281 8.2383 1.7109 2.7461 1.8203 4.1328 5.0156 4.7578 6.9414zm4.0508-18.863h-0.003906c-0.078125 0.1875-0.11719 0.39062-0.11719 0.59766v0.42188c0 0.67578-0.54688 1.2227-1.2227 1.2227s-1.2227-0.54688-1.2227-1.2227v-0.42188c-0.003906-0.62891-0.38672-1.1992-0.96875-1.4375-0.58203-0.24219-1.2539-0.10547-1.6992 0.33984l-0.30078 0.30078v-0.003907c-0.47656 0.47656-1.25 0.47656-1.7266 0-0.47656-0.47656-0.47656-1.25 0-1.7266l0.30078-0.30078c0.007813-0.007813 0.007813-0.019532 0.015626-0.023438 0.26562-0.26172 0.41406-0.61719 0.42187-0.98828 0-0.03125 0.019532-0.058594 0.019532-0.089844-0.003906-0.41406-0.16797-0.80859-0.46094-1.1016-0.007812-0.007812-0.019531-0.011718-0.027344-0.019531v0.003907c-0.14062-0.13281-0.30078-0.24219-0.48047-0.31641-0.16797-0.066406-0.34766-0.10156-0.53125-0.10547-0.023438 0-0.039063-0.011718-0.0625-0.011718h-0.44922l-0.003906-0.003906c-0.67188-0.007813-1.2148-0.55078-1.2227-1.2227 0.003907-0.16406 0.03125-0.32422 0.085938-0.47656 0.20703-0.44531 0.64844-0.73438 1.1367-0.74609h0.45312c0.39844 0.003906 0.78516-0.15234 1.0703-0.43359 0.007813-0.007812 0.019532-0.011719 0.03125-0.019531 0.29297-0.29297 0.45703-0.6875 0.46094-1.0977 0-0.03125-0.015625-0.058594-0.019532-0.085938v-0.003906c-0.003906-0.17188-0.039062-0.34375-0.097656-0.50781-0.078125-0.17578-0.18359-0.33984-0.32031-0.48047-0.007813-0.007813-0.007813-0.019531-0.015625-0.023438l-0.30078-0.30078c-0.47656-0.47656-0.47656-1.25-0.003907-1.7266 0.47656-0.47656 1.25-0.48047 1.7266-0.003907l0.30078 0.30078c0.14453 0.14453 0.32031 0.26172 0.50781 0.33984 0.19141 0.078125 0.39453 0.12109 0.60156 0.12109 0.023438 0 0.042969-0.011719 0.066406-0.011719v-0.003906c0.17969-0.003906 0.35938-0.039063 0.52734-0.10547 0.17969-0.074218 0.34375-0.18359 0.48047-0.31641 0.007812-0.007812 0.019531-0.011719 0.027343-0.019531 0.29297-0.29297 0.46094-0.6875 0.46094-1.1055v-0.45703c0-0.67578 0.54688-1.2227 1.2227-1.2227 0.67188 0 1.2227 0.54688 1.2227 1.2227v0.42969c0 0.20312 0.039063 0.40625 0.12109 0.59766 0.078125 0.19141 0.19141 0.36328 0.33594 0.50781 0.007812 0.007813 0.019531 0.011719 0.027344 0.019531 0.26953 0.26562 0.62891 0.41797 1.0078 0.42188 0.023438 0 0.042969 0.011719 0.066406 0.011719v0.003906c0.41797-0.003906 0.8125-0.16797 1.1094-0.46094l0.30078-0.30078h-0.003906c0.23047-0.22656 0.53906-0.35547 0.86328-0.35547 0.32422 0 0.63672 0.12891 0.86328 0.35547 0.47656 0.47656 0.47656 1.25 0 1.7266l-0.30078 0.30078c-0.007813 0.007813-0.007813 0.015625-0.015626 0.023438-0.13672 0.14062-0.24219 0.30469-0.32031 0.48438-0.058594 0.16016-0.09375 0.32812-0.097656 0.5 0 0.03125-0.019532 0.058594-0.019532 0.089844 0.003907 0.41406 0.16797 0.80859 0.46094 1.1016 0.007812 0.007812 0.019531 0.011719 0.03125 0.019531 0.28516 0.27734 0.66797 0.43359 1.0703 0.43359h0.42578-0.003906c0.66406 0.019531 1.1875 0.55859 1.1875 1.2227 0 0.66016-0.52344 1.2031-1.1875 1.2227h-0.42578c-0.023437 0-0.039062 0.011718-0.0625 0.011718-0.17969 0.003906-0.35938 0.039063-0.53125 0.10938-0.17578 0.074219-0.33984 0.17969-0.47656 0.3125-0.007813 0.007813-0.019532 0.011719-0.027344 0.019531-0.29297 0.29297-0.45703 0.6875-0.46094 1.1016 0 0.03125 0.015626 0.058594 0.019532 0.089844 0.003906 0.37109 0.15625 0.72656 0.41797 0.98828 0.007813 0.007812 0.007813 0.015625 0.015626 0.023438l0.30078 0.30078c0.23438 0.22656 0.37109 0.53906 0.37109 0.86719 0.003907 0.32812-0.125 0.64062-0.35547 0.87109-0.23438 0.23438-0.54688 0.36328-0.875 0.35938s-0.64062-0.14062-0.86719-0.375l-0.30078-0.30078c-0.36719-0.36719-0.89844-0.52734-1.4102-0.42578-0.51172 0.10156-0.9375 0.44922-1.1406 0.93359zm-38.93 43.508c0.023438 0.28906 0.5625 7.1016-3.4102 11.367v0.003906c-0.58594 0.63281-1.5742 0.66797-2.207 0.082032-0.63281-0.58984-0.66797-1.5781-0.082031-2.2109 3.0156-3.2461 2.5898-8.9219 2.5859-8.9766-0.070312-0.85938 0.56641-1.6133 1.4258-1.6836 0.41016-0.042969 0.82422 0.085938 1.1406 0.35547 0.31641 0.26562 0.51562 0.64844 0.54687 1.0625zm13.801-0.16406h-0.003906c0.33984 0.24219 0.56641 0.60938 0.63281 1.0195 0.070312 0.41016-0.03125 0.82812-0.27344 1.1641-2.1758 2.9805-3.3008 6.5977-3.2031 10.289 0.082031 0.85547-0.54297 1.6133-1.3984 1.6992-0.050781 0.007813-0.10156 0.007813-0.15234 0.007813-0.80078 0-1.4688-0.60156-1.5508-1.3984-0.19531-4.4492 1.1328-8.832 3.7695-12.422 0.50391-0.69922 1.4727-0.85938 2.1758-0.35938zm24.262 5c0.19922 0.27344 1.9727 2.8281 1.5391 7.7578h-0.003906c-0.070313 0.80469-0.74609 1.4258-1.5547 1.4258-0.046875 0-0.09375 0-0.14062-0.007812-0.41406-0.035157-0.79688-0.23438-1.0625-0.55078s-0.39453-0.72656-0.35547-1.1406c0.32812-3.7422-0.89844-5.5664-0.95313-5.6445-0.49219-0.70312-0.32812-1.668 0.36719-2.1719 0.6875-0.5 1.6523-0.35156 2.1562 0.33594zm-54.117 1.4141c-0.91016 1.7773-1.0625 3.8477-0.42188 5.7422 0.25781 0.82422-0.19922 1.6992-1.0234 1.957-0.82422 0.25781-1.7031-0.20313-1.9609-1.0273-0.90234-2.7539-0.63672-5.7617 0.74219-8.3125 0.46094-0.72266 1.4141-0.94141 2.1406-0.49219 0.72656 0.44922 0.96094 1.3984 0.52344 2.1328zm30.391-82.73c0.089844 0.18359 0.13281 0.39062 0.125 0.59375 0.003906 0.20312-0.039062 0.40625-0.125 0.59375-0.074219 0.19141-0.19141 0.36328-0.34375 0.5-0.28906 0.29297-0.68359 0.46094-1.0938 0.46875-0.20312-0.011719-0.40234-0.050781-0.59375-0.125-0.19141-0.078125-0.35938-0.19531-0.5-0.34375-0.15234-0.13672-0.26953-0.30859-0.34375-0.5-0.085938-0.1875-0.12891-0.39062-0.125-0.59375-0.007812-0.20312 0.035156-0.41016 0.125-0.59375 0.066406-0.20312 0.18359-0.39062 0.34375-0.53125 0.14062-0.14062 0.3125-0.24609 0.5-0.3125 0.57422-0.25 1.2383-0.125 1.6875 0.3125 0.16016 0.14453 0.27734 0.32812 0.34375 0.53125zm24.344 25.75c0.29297 0.28906 0.45703 0.68359 0.46875 1.0938-0.015625 0.41797-0.18359 0.81641-0.46875 1.125-0.29688 0.28516-0.69141 0.44141-1.1016 0.4375-0.41797 0.015625-0.82422-0.14062-1.1211-0.4375s-0.45703-0.70703-0.4375-1.125c-0.003906-0.41016 0.15234-0.80078 0.4375-1.0938 0.15234-0.15234 0.33203-0.26562 0.53125-0.34375 0.58203-0.22656 1.2422-0.09375 1.6914 0.34375z"></path> | |
| 1490 | +</svg> | |
| 1491 | +</div> | |
| 1492 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1021350580" style="transition: opacity 1s ease-in-out;"><p class="text-align-center"><strong style="display: initial; font-weight: bold; color: var(--color_1);">TERRAIN PRIVÉ</strong></p></div> | |
| 1493 | +</div> | |
| 1494 | + <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="1541239096">Un cube noir et blanc avec une porte et des fenêtres sur fond blanc.</title> | |
| 1495 | + <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> | |
| 1496 | +</svg> | |
| 1497 | +</div> | |
| 1498 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1641948639" style="transition: opacity 1s ease-in-out;"><p style="letter-spacing: 0.05em; line-height: 1.6;" class="text-align-center"><strong style="display: initial;">UNITÉS SPACIEUSES</strong><span style="display: initial;"><br/></span></p></div> | |
| 1499 | +</div> | |
| 1500 | + <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="1610321444">Un dessin en noir et blanc d'un flocon de neige sur fond blanc.</title> | |
| 1501 | + <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> | |
| 1502 | + <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> | |
| 1503 | + <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> | |
| 1504 | + <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> | |
| 1505 | + <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> | |
| 1506 | + <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> | |
| 1507 | + <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> | |
| 1508 | + <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> | |
| 1509 | + <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> | |
| 1510 | + <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> | |
| 1511 | + <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> | |
| 1512 | + <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> | |
| 1513 | + <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> | |
| 1514 | + <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> | |
| 1515 | + <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> | |
| 1516 | + <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> | |
| 1517 | + <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> | |
| 1518 | + <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> | |
| 1519 | + <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> | |
| 1520 | + <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> | |
| 1521 | + <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> | |
| 1522 | + <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> | |
| 1523 | + <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> | |
| 1524 | + <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> | |
| 1525 | +</g> | |
| 1526 | +</svg> | |
| 1527 | +</div> | |
| 1528 | + <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> | |
| 1529 | +</div> | |
| 1530 | +</div> | |
| 1531 | +</div> | |
| 1532 | + <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="1740620456">Un dessin en noir et blanc d'une maison avec deux portes.</title> | |
| 1533 | + <path d="m89.062 75.141v-45.828c0-0.61719-0.36328-1.1758-0.92188-1.4258l-37.5-16.812c-0.40625-0.17969-0.87109-0.17969-1.2773 0l-37.5 16.812c-0.5625 0.25-0.92578 0.80859-0.92578 1.4258v45.828c-4.4258 0.74609-7.8125 4.5977-7.8125 9.2344 0 1.2852 0.25781 2.543 0.76562 3.7383 0.25391 0.59375 0.82812 0.94922 1.4375 0.94922 0.20312 0 0.41016-0.039062 0.61328-0.125 0.79688-0.33984 1.1641-1.2539 0.82422-2.0508-0.33984-0.80469-0.51562-1.6484-0.51562-2.5117 0-3.4453 2.8047-6.25 6.25-6.25s6.25 2.8047 6.25 6.25c0 0.86328 0.69922 1.5625 1.5625 1.5625 0.36719 0 0.73047 0.046875 1.0781 0.13281 0.11719 0.027344 0.22266 0.078126 0.33594 0.11328 0.22656 0.074218 0.45313 0.14844 0.66406 0.25391 0.125 0.0625 0.23828 0.14453 0.35547 0.21484 0.18359 0.11328 0.36328 0.22656 0.52734 0.36719 0.11328 0.09375 0.21484 0.20312 0.32031 0.30859 0.10547 0.10938 0.20312 0.22266 0.30078 0.34375 0.007813 0.078125 0.039063 0.14844 0.058594 0.22266 0.023437 0.082031 0.027344 0.16797 0.0625 0.24219 0.050781 0.10938 0.125 0.19922 0.19531 0.29297 0.046874 0.0625 0.082031 0.13281 0.13672 0.1875 0.09375 0.089843 0.20703 0.15234 0.32031 0.21484 0.058593 0.035157 0.10547 0.082031 0.16797 0.10547 0.18359 0.078125 0.38672 0.12109 0.59766 0.12109h49.125c0.21094 0 0.41406-0.042969 0.59766-0.12109 0.0625-0.027344 0.10938-0.074219 0.16797-0.10938 0.11328-0.066406 0.22656-0.125 0.32031-0.21484 0.054688-0.054687 0.089844-0.125 0.13672-0.1875 0.070312-0.09375 0.14844-0.18359 0.19531-0.29297 0.035157-0.074218 0.042969-0.16016 0.0625-0.24219 0.019532-0.074219 0.050782-0.14453 0.058594-0.22266 0.097656-0.11719 0.19531-0.23438 0.30078-0.34375 0.10547-0.10547 0.20703-0.21484 0.32031-0.30859 0.16406-0.13672 0.34375-0.25391 0.52734-0.36719 0.11719-0.074219 0.23047-0.15625 0.35547-0.21484 0.21094-0.10547 0.4375-0.17969 0.66406-0.25391 0.11328-0.035157 0.21875-0.085938 0.33594-0.11328 0.35547-0.082031 0.71875-0.12891 1.0859-0.12891 0.86328 0 1.5625-0.69922 1.5625-1.5625 0-3.4453 2.8047-6.25 6.25-6.25s6.25 2.8047 6.25 6.25c0 0.86328-0.17578 1.7109-0.51562 2.5117-0.33984 0.79297 0.03125 1.7109 0.82422 2.0508 0.19922 0.085938 0.40625 0.125 0.61328 0.125 0.60547 0 1.1836-0.35547 1.4375-0.94922 0.50781-1.1953 0.76562-2.4531 0.76562-3.7383 0-4.6367-3.3867-8.4883-7.8125-9.2344zm-40.625 10.797h-21.438v-46.016h21.438zm24.562 0h-21.438v-46.016h21.438zm12.938-10.809c-0.035156 0.007813-0.070312 0.019532-0.10938 0.027344-0.42969 0.078125-0.85156 0.18359-1.2578 0.31641-0.074218 0.023438-0.14844 0.054688-0.22266 0.082032-0.375 0.13281-0.73828 0.28906-1.0898 0.46875-0.050781 0.027343-0.10156 0.046874-0.15234 0.074218-0.375 0.19922-0.73047 0.42969-1.0742 0.67578-0.074219 0.054687-0.15234 0.10937-0.22656 0.16797-0.33594 0.25781-0.66016 0.53516-0.96094 0.83594-0.027344 0.027344-0.050781 0.054687-0.074219 0.082031-0.27734 0.28906-0.53516 0.59375-0.77344 0.91406-0.050782 0.070312-0.10547 0.13672-0.15625 0.21094-0.24219 0.34375-0.46094 0.69922-0.65625 1.0742-0.039063 0.074218-0.074219 0.15234-0.10938 0.22656-0.17188 0.35547-0.32812 0.72266-0.45703 1.1055-0.015626 0.046875-0.035157 0.09375-0.050782 0.14062-0.13281 0.41016-0.22656 0.83594-0.30078 1.2734-0.007813 0.050781-0.027344 0.09375-0.035156 0.14453-0.046875 0.007812-0.089844 0.027343-0.13672 0.039062-0.41797 0.085938-0.82812 0.19922-1.2188 0.35156-0.042969 0.015625-0.082031 0.039062-0.12109 0.054687-0.21484 0.085938-0.42578 0.17578-0.62891 0.28125v-45.316c0-0.86328-0.69922-1.5625-1.5625-1.5625h-49.125c-0.86328 0-1.5625 0.69922-1.5625 1.5625v45.316c-0.20312-0.10547-0.41797-0.19531-0.62891-0.28125-0.042969-0.015625-0.082032-0.039062-0.12109-0.054687-0.39453-0.15234-0.80469-0.26172-1.2188-0.35156-0.046875-0.007812-0.089844-0.03125-0.13672-0.039062-0.007812-0.050781-0.027343-0.09375-0.035156-0.14453-0.074219-0.43359-0.16797-0.85938-0.30078-1.2734-0.015625-0.046875-0.035156-0.09375-0.050782-0.14062-0.12891-0.37891-0.28125-0.74609-0.45703-1.1055-0.035156-0.074218-0.070312-0.15234-0.10938-0.22656-0.19531-0.375-0.41406-0.73047-0.65625-1.0742-0.050781-0.070313-0.10547-0.14062-0.15625-0.21094-0.23828-0.32031-0.49609-0.62891-0.77344-0.91406-0.027344-0.027344-0.046875-0.054687-0.074219-0.082031-0.30078-0.30078-0.62109-0.57422-0.96094-0.83594-0.074218-0.058594-0.14844-0.11328-0.22656-0.16797-0.34375-0.24609-0.69922-0.47656-1.0742-0.67578-0.050781-0.027344-0.10156-0.046875-0.15234-0.074218-0.35156-0.17969-0.71484-0.33594-1.0898-0.46875-0.074219-0.027344-0.14453-0.054688-0.22266-0.082032-0.40625-0.13281-0.82813-0.23828-1.2578-0.31641-0.039063-0.003906-0.074219-0.019531-0.10938-0.027344v-44.805l35.938-16.113 35.938 16.113z"></path> | |
| 1534 | +</svg> | |
| 1535 | +</div> | |
| 1536 | + <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="font-weight: bold; display: unset;">CABANON EXTÉRIEUR</strong></p></div> | |
| 1537 | +</div> | |
| 1538 | + <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> | |
| 1539 | +</svg> | |
| 1540 | +</a> | |
| 1541 | +</div> | |
| 1542 | + <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> | |
| 1543 | +</div> | |
| 1544 | + <div class="dmRespCol small-12 medium-4 large-4" id="1443466153"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3" data-element-type="graphic" data-widget-type="graphic" id="1406295359"> <a href="/" id="1950376377" aria-label="Dog_3202789.svg"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1886445913" class="svg u_1886445913" data-icon-custom="true" data-icon-name="Dog_3202789.svg"> <g> <path d="m56.102 84.801-2.5 8 0.10156 0.30078c0.5 1.8984 2.3984 3 4.3008 2.6016 2-0.39844 3.3008-2.3008 2.8984-4.3008l-1.1992-6.1992z"></path> | |
| 1545 | + <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> | |
| 1546 | + <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> | |
| 1547 | + <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> | |
| 1548 | + <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> | |
| 1549 | + <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> | |
| 1550 | + <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> | |
| 1551 | +</g> | |
| 1552 | +</svg> | |
| 1553 | +</a> | |
| 1554 | +</div> | |
| 1555 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1988614463" style="transition: opacity 1s ease-in-out;"><p class="text-align-center"><strong style="color: var(--color_1); display: initial;">CHAT ET CHIEN ACCEPTÉ</strong></p><p class="text-align-center"><span style="color: var(--color_1); display: initial; font-style: italic;">(sous conditions)</span></p></div> | |
| 1556 | +</div> | |
| 1557 | +</div> | |
| 1558 | +</div> | |
| 1559 | + <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> | |
| 1560 | +</div> | |
| 1561 | +</div> | |
| 1562 | +</div> | |
| 1563 | + <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ÉS</span></h2> | |
| 1564 | +</div> | |
| 1565 | +</div> | |
| 1566 | + <div class="u_1158007567 dmRespCol small-12 large-8 medium-8" id="1158007567"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1877599422"><p><span style="color: var(--color_3); display: initial;">Situés sur la rue Comeau, dans un secteur paisible de Carleton-sur-Mer, nos jumelés locatifs vous offrent un emplacement stratégique qui allie tranquillité résidentielle et proximité des services essentiels.</span></p><p><span style="color: var(--color_3); display: initial;"><span class="ql-cursor"></span></span></p><p><span style="color: var(--color_3); display: initial;">Profitez d’un accès rapide à tout ce qui simplifie votre quotidien : épiceries, pharmacies, restaurants, centre de santé, écoles, commerces de proximité et installations sportives. Vous êtes également à quelques minutes seulement des plages de la baie des Chaleurs, de la piste cyclable et des nombreux attraits touristiques de la région.</span></p></div> | |
| 1567 | +</div> | |
| 1568 | +</div> | |
| 1569 | +</div> | |
| 1570 | + <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> | |
| 1571 | +</div> | |
| 1572 | +</div> | |
| 1573 | +</div> | |
| 1574 | + <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> | |
| 1575 | +</div> | |
| 1576 | +</div> | |
| 1577 | +</div> | |
| 1578 | +</div> | |
| 1579 | + <div class="dmRespRow" id="1895177592"> <div class="dmRespColsWrapper" id="1370102391"> <div class="u_1515200283 dmRespCol small-12 large-4 medium-4" id="1515200283"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1766789273"> <h3><span style="display: unset;">Découvrez votre futur jumelé</span></h3> | |
| 1580 | + <h3><span style="display: unset;">grâce à une visite virtuelle</span></h3> | |
| 1581 | +</div> | |
| 1582 | +</div> | |
| 1583 | + <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;">Plongez au cœur de votre futur chez-vous grâce à notre visite virtuelle immersive. Explorez chaque pièce, admirez la luminosité, les matériaux de qualité et l’agencement bien pensé de nos jumelés locatifs à Carleton-sur-Mer.</span></p></div> | |
| 1584 | +</div> | |
| 1585 | +</div> | |
| 1586 | +</div> | |
| 1587 | + <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="1984072910"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Jumel%C3%A9+Carleton+sur+mer+-+Cuisine+salon-1920w.png" id="1739882397" alt="Un salon avec un canapé, une télévision, des tabourets et une cuisine." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1911301821"></div> | |
| 1588 | + <div class="slide-inner" id="1914620495"> <div class="text-wrapper" id="1850098437"> <h3 class="slide-title" id="1570857518">Titre de la diapositive</h3> | |
| 1589 | + <div class="slide-text richText" id="1599983192">Écrivez votre légende ici</div> | |
| 1590 | +</div> | |
| 1591 | + <div class="slide-button dmWidget clearfix" id="1849198346"> <span class="iconBg" id="1801257322"> <span class="icon hasFontIcon icon-star" id="1602650328"></span> | |
| 1592 | +</span> | |
| 1593 | + <span class="text" id="1596620158">Bouton</span> | |
| 1594 | +</div> | |
| 1595 | +</div> | |
| 1596 | +</li> | |
| 1597 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1682829528"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Jumel%C3%A9+Carleton+sur+mer+-+Cuisine-1920w.png" id="1373237464" alt="Une cuisine avec des armoires en bois, un évier, une cuisinière et un réfrigérateur." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1383220050"></div> | |
| 1598 | + <div class="slide-inner" id="1962275208"> <div class="text-wrapper" id="1986219655"> <h3 class="slide-title" id="1524088444">Titre de la diapositive</h3> | |
| 1599 | + <div class="slide-text richText" id="1511421573">Écrivez votre légende ici</div> | |
| 1600 | +</div> | |
| 1601 | + <div class="slide-button dmWidget clearfix" id="1411302006"> <span class="iconBg" id="1479475745"> <span class="icon hasFontIcon icon-star" id="1074976652"></span> | |
| 1602 | +</span> | |
| 1603 | + <span class="text" id="1851027297">Bouton</span> | |
| 1604 | +</div> | |
| 1605 | +</div> | |
| 1606 | +</li> | |
| 1607 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1919625814"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Jumel%C3%A9+Carleton+sur+mer+-+salon-1920w.png" id="1013022217" alt="Un salon avec un canapé, une chaise, une table et une télévision." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1261824920"></div> | |
| 1608 | + <div class="slide-inner" id="1224462190"> <div class="text-wrapper" id="1496913641"> <h3 class="slide-title" id="1542781928">Titre de la diapositive</h3> | |
| 1609 | + <div class="slide-text richText" id="1530054235">Écrivez votre légende ici</div> | |
| 1610 | +</div> | |
| 1611 | + <div class="slide-button dmWidget clearfix" id="1768497804"> <span class="iconBg" id="1889921496"> <span class="icon hasFontIcon icon-star" id="1336077891"></span> | |
| 1612 | +</span> | |
| 1613 | + <span class="text" id="1961377378">Bouton</span> | |
| 1614 | +</div> | |
| 1615 | +</div> | |
| 1616 | +</li> | |
| 1617 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1651314484"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Jumel%C3%A9+Carleton+sur+mer+-+SDB-1920w.png" id="1179406365" alt="Une salle de bain avec un rideau de douche rouge, un lavabo, des toilettes et un miroir." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1688277424"></div> | |
| 1618 | + <div class="slide-inner" id="1940294177"> <div class="text-wrapper" id="1247595873"> <h3 class="slide-title" id="1919069620">Titre de la diapositive</h3> | |
| 1619 | + <div class="slide-text richText" id="1343891651">Écrivez votre légende ici</div> | |
| 1620 | +</div> | |
| 1621 | + <div class="slide-button dmWidget clearfix" id="1063293925"> <span class="iconBg" id="1367168709"> <span class="icon hasFontIcon icon-star" id="1276315940"></span> | |
| 1622 | +</span> | |
| 1623 | + <span class="text" id="1755388906">Bouton</span> | |
| 1624 | +</div> | |
| 1625 | +</div> | |
| 1626 | +</li> | |
| 1627 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1666611810"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Jumel%C3%A9+Carleton+sur+mer+-+Chambre-1920w.png" id="1725019491" alt="Une chambre avec un lit, un bureau, une chaise et une fenêtre." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1743646963"></div> | |
| 1628 | + <div class="slide-inner" id="1868902229"> <div class="text-wrapper" id="1176443498"> <h3 class="slide-title" id="1293478387">Titre de la diapositive</h3> | |
| 1629 | + <div class="slide-text richText" id="1383418344">Écrivez votre légende ici</div> | |
| 1630 | +</div> | |
| 1631 | + <div class="slide-button dmWidget clearfix" id="1883655548"> <span class="iconBg" id="1578808767"> <span class="icon hasFontIcon icon-star" id="1564554034"></span> | |
| 1632 | +</span> | |
| 1633 | + <span class="text" id="1990878270">Bouton</span> | |
| 1634 | +</div> | |
| 1635 | +</div> | |
| 1636 | +</li> | |
| 1637 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1579779599"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Jumel%C3%A9+Carleton+sur+mer+-+SDB+vue+2-1920w.png" id="1507010466" alt="Une buanderie avec laveuse et sécheuse et armoires en bois." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1111770376"></div> | |
| 1638 | + <div class="slide-inner" id="1480419904"> <div class="text-wrapper" id="1689355329"> <h3 class="slide-title" id="1842678772">Titre de la diapositive</h3> | |
| 1639 | + <div class="slide-text richText" id="1545113372">Écrivez votre légende ici</div> | |
| 1640 | +</div> | |
| 1641 | + <div class="slide-button dmWidget clearfix" id="1870652904"> <span class="iconBg" id="1962649415"> <span class="icon hasFontIcon icon-star" id="1183029756"></span> | |
| 1642 | +</span> | |
| 1643 | + <span class="text" id="1521473085">Bouton</span> | |
| 1644 | +</div> | |
| 1645 | +</div> | |
| 1646 | +</li> | |
| 1647 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1422148242"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Jumel%C3%A9+Carleton+sur+mer+-+chambre+2-1920w.png" id="1494279149" alt="Une chambre avec un lit, une chaise, une table de chevet et une fenêtre." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1302620701"></div> | |
| 1648 | + <div class="slide-inner" id="1790204599"> <div class="text-wrapper" id="1619284384"> <h3 class="slide-title" id="1422443285">Titre de la diapositive</h3> | |
| 1649 | + <div class="slide-text richText" id="1167159743">Écrivez votre légende ici</div> | |
| 1650 | +</div> | |
| 1651 | + <div class="slide-button dmWidget clearfix" id="1213161183"> <span class="iconBg" id="1681441641"> <span class="icon hasFontIcon icon-star" id="1455134858"></span> | |
| 1652 | +</span> | |
| 1653 | + <span class="text" id="1434756075">Bouton</span> | |
| 1654 | +</div> | |
| 1655 | +</div> | |
| 1656 | +</li> | |
| 1657 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1129383304"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Jumel%C3%A9+Carleton+sur+mer+-+entr%C3%A9e-1920w.png" id="1693716967" alt="Un couloir avec une chaise et un tapis devant une porte." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1534288840"></div> | |
| 1658 | + <div class="slide-inner" id="1030185041"> <div class="text-wrapper" id="1562005375"> <h3 class="slide-title" id="1759077686">Titre de la diapositive</h3> | |
| 1659 | + <div class="slide-text richText" id="1285091534">Écrivez votre légende ici</div> | |
| 1660 | +</div> | |
| 1661 | + <div class="slide-button dmWidget clearfix" id="1445708140"> <span class="iconBg" id="1317409304"> <span class="icon hasFontIcon icon-star" id="1534214835"></span> | |
| 1662 | +</span> | |
| 1663 | + <span class="text" id="1823522345">Bouton</span> | |
| 1664 | +</div> | |
| 1665 | +</div> | |
| 1666 | +</li> | |
| 1667 | +</ul> | |
| 1668 | +</div> | |
| 1669 | +</div> | |
| 1670 | +</div> | |
| 1671 | +</div> | |
| 1672 | +</div> | |
| 1673 | + <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> | |
| 1674 | +</span><span style="display: initial;"><br/></span></h2> | |
| 1675 | +</div> | |
| 1676 | + <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ésitez pas à nous contacter pour découvrir tout ce que vous souhaitez savoir sur les logements, les quartiers et tout ce qui s'y trouve. Nous sommes là pour répondre à toutes vos questions.</span> | |
| 1677 | +</span></p></div> | |
| 1678 | + <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> | |
| 1679 | +</span> | |
| 1680 | + <span class="text" id="1591898475">Contactez-nous</span> | |
| 1681 | +</a> | |
| 1682 | +</div> | |
| 1683 | +</div> | |
| 1684 | +</div> | |
| 1685 | + <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> | |
| 1686 | +</div> | |
| 1687 | +</div> | |
| 1688 | +</div> | |
| 1689 | +</div> | |
| 1690 | + <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;">Entre mer et montagnes, Carleton-sur-Mer vous offre une qualité de vie exceptionnelle au quotidien</span></h3> | |
| 1691 | +</div> | |
| 1692 | +</div> | |
| 1693 | + <div class="u_1585638891 dmRespCol small-12 large-8 medium-8" id="1585638891"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1871869082"><p><span style="display: initial;">Nichée entre les eaux paisibles de la baie des Chaleurs et les collines verdoyantes de la Gaspésie, Carleton-sur-Mer est une destination de choix pour celles et ceux qui recherchent un cadre de vie équilibré, sain et inspirant.</span></p><p><br/></p><p><span style="display: initial;">Vivre dans le quartier de la rue Comeau, c’est profiter d’un environnement résidentiel calme, à proximité des commerces, écoles, services de santé, plages, sentiers et espaces verts. Que vous aimiez les sports nautiques, les randonnées, les sorties en vélo ou simplement relaxer en bord de mer, tout est à portée de main.</span></p><p><span style="display: initial;"><span class="ql-cursor"></span></span></p><p><span style="display: initial;">Vous serez charmé par l’esprit de communauté chaleureux, les paysages à couper le souffle et la tranquillité qu’offre ce coin de Gaspésie. Un quartier où la nature et le confort se rencontrent, pour un mode de vie tout simplement exceptionnel.</span></p></div> | |
| 1694 | +</div> | |
| 1695 | +</div> | |
| 1696 | +</div> | |
| 1697 | + <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="48.105181" data-lng="-66.113691" data-address="Comeau Rue, Carleton, Quebec G0C 1J0, 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="Comeau Rue, Carleton, Quebec G0C 1J0, Canada" geocompleteaddress="Comeau Rue, Carleton, Quebec G0C 1J0, 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="-66.113691" lat="48.105181" zoom="13"> <div class="mapContainer" style="height: 100%; width: 100%; overflow: hidden; z-index: 0;"></div> | |
| 1698 | +</div> | |
| 1699 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1364636678" style="transition: opacity 1s ease-in-out;"><p class="text-align-center" style="line-height: normal;"><span class="" style="display: unset; font-style: italic;"><span style="display: unset; font-style: italic;">80 à 98 Rue Comeau à</span> | |
| 1700 | +</span><strong style="display: unset; font-style: italic; font-weight: bold;">Carleton-sur-Mer</strong></p></div> | |
| 1701 | +</div> | |
| 1702 | +</div> | |
| 1703 | +</div> | |
| 1704 | + <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> | |
| 1705 | +</div> | |
| 1706 | +</div> | |
| 1707 | +</div> | |
| 1708 | + <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> | |
| 1709 | +</div> | |
| 1710 | + <div class="bgExtraLayerOverlay"></div> | |
| 1711 | + <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éduit ?</span> | |
| 1712 | +</span></h2> | |
| 1713 | + <h2 class="text-align-center"><span style="color: var(--color_3); display: unset;">Planifiez votre visite dès aujourd'hui !</span><span style="display: initial;"><br/></span></h2> | |
| 1714 | +</div> | |
| 1715 | + <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> | |
| 1716 | +</span> | |
| 1717 | + <span class="text" id="1461344268">JE PLANIFIE !</span> | |
| 1718 | +</a> | |
| 1719 | +</div> | |
| 1720 | +</div> | |
| 1721 | +</div> | |
| 1722 | +</div> | |
| 1723 | +</div> | |
| 1724 | +</div> | |
| 1725 | +</div> | |
| 1726 | + <div class="sticky-widgets-container-global" id="1915928664"></div> | |
| 1727 | + <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> | |
| 1728 | +</div> | |
| 1729 | +</div> | |
| 1730 | +</div> | |
| 1731 | + <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> | |
| 1732 | +</div> | |
| 1733 | + <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> | |
| 1734 | +</div> | |
| 1735 | + <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> | |
| 1736 | +</div> | |
| 1737 | + <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> | |
| 1738 | +</div> | |
| 1739 | +</div> | |
| 1740 | +</div> | |
| 1741 | + <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écialiste en gestion d’immeubles locatifs, notre équipe saura vous accompagner tout au long de vos démarches.</span></p></div> | |
| 1742 | + <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> | |
| 1743 | +</div> | |
| 1744 | + <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> | |
| 1745 | +</div> | |
| 1746 | + <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=" | |
| 1747 | + Accueil | |
| 1748 | + " 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> | |
| 1749 | +</span> | |
| 1750 | +</a> | |
| 1751 | +</li> | |
| 1752 | + <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> | |
| 1753 | +</span> | |
| 1754 | +</a> | |
| 1755 | +</li> | |
| 1756 | +</ul> | |
| 1757 | +</nav> | |
| 1758 | +</div> | |
| 1759 | + <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> | |
| 1760 | +</div> | |
| 1761 | + <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ésentation au TAL<span class="icon icon-angle-down" data-hidden-on-mobile="" data-hidden-on-desktop="" data-hidden-on-tablet=""></span> | |
| 1762 | +</span> | |
| 1763 | +</a> | |
| 1764 | +</li> | |
| 1765 | + <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étaires<span class="icon icon-angle-down" data-hidden-on-mobile="" data-hidden-on-desktop="" data-hidden-on-tablet=""></span> | |
| 1766 | +</span> | |
| 1767 | +</a> | |
| 1768 | +</li> | |
| 1769 | +</ul> | |
| 1770 | +</nav> | |
| 1771 | +</div> | |
| 1772 | + <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> | |
| 1773 | +</div> | |
| 1774 | + <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> | |
| 1775 | +</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> | |
| 1776 | +</div> | |
| 1777 | +</div> | |
| 1778 | +</div> | |
| 1779 | + <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>© 2026 </div> | |
| 1780 | + <div><p class="rteBlock">Gestion Immobilière de la Rive Sud 2025 - Tous droits réservés</p></div> | |
| 1781 | +</div> | |
| 1782 | +</div> | |
| 1783 | +</div> | |
| 1784 | +</div> | |
| 1785 | +</div> | |
| 1786 | +</div> | |
| 1787 | + <div id="1236746004" dmle_extension="powered_by" data-element-type="powered_by" icon="true" surround="false"></div> | |
| 1788 | +</div> | |
| 1789 | +</div> | |
| 1790 | +</div> | |
| 1791 | +</div> | |
| 1792 | +</div> | |
| 1793 | +</div> | |
| 1794 | +</div> | |
| 1795 | +</div> | |
| 1796 | +</div> | |
| 1797 | + | |
| 1798 | + </div> | |
| 1799 | +</div> | |
| 1800 | +<!-- Add full CSS and Javascript before the close tag of the body if needed --> | |
| 1801 | + | |
| 1802 | + | |
| 1803 | + | |
| 1804 | + | |
| 1805 | + | |
| 1806 | + | |
| 1807 | + | |
| 1808 | + | |
| 1809 | + | |
| 1810 | + | |
| 1811 | + | |
| 1812 | + | |
| 1813 | + | |
| 1814 | + | |
| 1815 | + | |
| 1816 | + | |
| 1817 | + | |
| 1818 | + | |
| 1819 | + | |
| 1820 | + | |
| 1821 | + | |
| 1822 | + | |
| 1823 | + | |
| 1824 | + | |
| 1825 | + | |
| 1826 | + | |
| 1827 | + | |
| 1828 | + | |
| 1829 | + | |
| 1830 | + | |
| 1831 | + | |
| 1832 | + | |
| 1833 | + | |
| 1834 | + | |
| 1835 | + | |
| 1836 | + | |
| 1837 | + | |
| 1838 | + | |
| 1839 | +<!-- ========= JS Section ========= --> | |
| 1840 | +<script> | |
| 1841 | + var isWLR = true; | |
| 1842 | + | |
| 1843 | + window.customWidgetsFunctions = {}; | |
| 1844 | + window.customWidgetsStrings = {}; | |
| 1845 | + window.collections = {}; | |
| 1846 | + window.currentLanguage = "FRENCH" | |
| 1847 | + window.isSitePreview = false; | |
| 1848 | +</script> | |
| 1849 | + | |
| 1850 | + | |
| 1851 | + | |
| 1852 | +<script> | |
| 1853 | + window.customWidgetsFunctions["1f5975986930429f819d4cd2154b5c4a~25"] = function (element, data, api) { | |
| 1854 | + null | |
| 1855 | + }; | |
| 1856 | +</script> | |
| 1857 | + | |
| 1858 | + | |
| 1859 | +<script type="text/javascript"> | |
| 1860 | + | |
| 1861 | + var d_version = "production_6688"; | |
| 1862 | + var build = "2026-08-06T08_49_03"; | |
| 1863 | + window['v' + 'ersion'] = d_version; | |
| 1864 | + | |
| 1865 | + function buildEditorParent() { | |
| 1866 | + window.isMultiScreen = true; | |
| 1867 | + window.editorParent = {}; | |
| 1868 | + window.previewParent = {}; | |
| 1869 | + window.assetsCacheQueryParam = "?version=2026-08-06T08_49_03"; | |
| 1870 | + try { | |
| 1871 | + var _p = window.parent; | |
| 1872 | + if (_p && _p.document && _p.$ && _p.$.dmfw) { | |
| 1873 | + window.editorParent = _p; | |
| 1874 | + } else if (_p.isSitePreview) { | |
| 1875 | + window.previewParent = _p; | |
| 1876 | + } | |
| 1877 | + } catch (e) { | |
| 1878 | + | |
| 1879 | + } | |
| 1880 | + } | |
| 1881 | + | |
| 1882 | + buildEditorParent(); | |
| 1883 | +</script> | |
| 1884 | + | |
| 1885 | + | |
| 1886 | +<!-- Load jQuery --> | |
| 1887 | + | |
| 1888 | +<script type="text/javascript" id='d-js-jquery' | |
| 1889 | + src="https://static.cdn-website.com/libs/jquery/jquery-3.7.0.min.js"></script> | |
| 1890 | + | |
| 1891 | +<!-- End Load jQuery --> | |
| 1892 | + | |
| 1893 | + | |
| 1894 | +<!-- Injecting site-wide before scripts --> | |
| 1895 | + | |
| 1896 | +<!-- End Injecting site-wide to the head --> | |
| 1897 | + | |
| 1898 | + | |
| 1899 | + | |
| 1900 | +<script> | |
| 1901 | + var _jquery = window.$; | |
| 1902 | + | |
| 1903 | + var jqueryAliases = ['$', 'jquery', 'jQuery']; | |
| 1904 | + | |
| 1905 | + jqueryAliases.forEach((alias) => { | |
| 1906 | + Object.defineProperty(window, alias, { | |
| 1907 | + get() { | |
| 1908 | + return _jquery; | |
| 1909 | + }, | |
| 1910 | + set() { | |
| 1911 | + console.warn("Trying to over-write the global jquery object!"); | |
| 1912 | + } | |
| 1913 | + }); | |
| 1914 | + }); | |
| 1915 | + window.jQuery.migrateMute = true; | |
| 1916 | +</script> | |
| 1917 | + | |
| 1918 | + | |
| 1919 | + | |
| 1920 | + | |
| 1921 | +<script> | |
| 1922 | + window.cookiesNotificationMarkupPreview = ' <div> <p class=\"rteBlock\">Nous utilisons des cookies pour optimiser votre expérience sur notre site web. Pour en savoir plus, veuillez accéder à la page <a value=\"donnees-personnelles\" label=\"\" type=\"page\" href=\"\/donnees-personnelles\" data-runtime-url=\"\/donnees-personnelles\">Confidentialité<\/a>.<\/p> \n<\/div> \n'; | |
| 1923 | +</script> | |
| 1924 | + | |
| 1925 | +<!-- HEAD RT JS Include --> | |
| 1926 | +<script id='d-js-params'> | |
| 1927 | + window.INSITE = window.INSITE || {}; | |
| 1928 | + window.INSITE.device = "desktop"; | |
| 1929 | + | |
| 1930 | + window.rtCommonProps = {}; | |
| 1931 | + rtCommonProps["rt.ajax.ajaxScriptsFix"] =true; | |
| 1932 | + rtCommonProps["rt.pushnotifs.sslframe.encoded"] = 'aHR0cHM6Ly97c3ViZG9tYWlufS5wdXNoLW5vdGlmcy5jb20='; | |
| 1933 | + rtCommonProps["runtimecollector.url"] = 'https://rtc.multiscreensite.com'; | |
| 1934 | + rtCommonProps["performance.tabletPreview.removeScroll"] = 'false'; | |
| 1935 | + rtCommonProps["inlineEditGrid.snap"] =true; | |
| 1936 | + rtCommonProps["popup.insite.cookie.ttl"] = '0.5'; | |
| 1937 | + rtCommonProps["rt.pushnotifs.force.button"] =true; | |
| 1938 | + rtCommonProps["common.mapbox.token"] = 'pk.JETON_CAVIARDE_LOUKA'; | |
| 1939 | + rtCommonProps["common.mapbox.js.override"] =false; | |
| 1940 | + rtCommonProps["common.here.appId"] = 'iYvDjIQ2quyEu0rg0hLo'; | |
| 1941 | + rtCommonProps["common.here.appCode"] = '1hcIxLJcbybmtBYTD9Z1UA'; | |
| 1942 | + rtCommonProps["isCoverage.test"] =false; | |
| 1943 | + rtCommonProps["ecommerce.ecwid.script"] = 'https://app.multiscreenstore.com/script.js'; | |
| 1944 | + rtCommonProps["common.resources.dist.cdn"] =true; | |
| 1945 | + rtCommonProps["common.build.dist.folder"] = 'production/6688'; | |
| 1946 | + rtCommonProps["common.resources.cdn.host"] = 'https://static.cdn-website.com'; | |
| 1947 | + rtCommonProps["common.resources.folder"] = 'https://static.cdn-website.com/mnlt/production/6688'; | |
| 1948 | + rtCommonProps["common.fonts.api.v2.url"] = 'https://irp.cdn-website.com/fonts/css2?family='; | |
| 1949 | + rtCommonProps["feature.flag.runtime.backgroundSlider.preload.slowly"] =true; | |
| 1950 | + rtCommonProps["feature.flag.runtime.newAnimation.enabled"] =true; | |
| 1951 | + rtCommonProps["feature.flag.runtime.newAnimation.jitAnimation.enabled"] =true; | |
| 1952 | + rtCommonProps["feature.flag.sites.google.analytics.gtag"] =true; | |
| 1953 | + rtCommonProps["feature.flag.runOnReadyNewTask"] =true; | |
| 1954 | + rtCommonProps["isAutomation.test"] =false; | |
| 1955 | + rtCommonProps["booking.cal.api.domain"] = 'api.cal.com'; | |
| 1956 | + | |
| 1957 | + | |
| 1958 | + rtCommonProps['common.mapsProvider'] = 'mapbox'; | |
| 1959 | + | |
| 1960 | + rtCommonProps['common.mapsProvider.version'] = '0.52.0'; | |
| 1961 | + rtCommonProps['common.geocodeProvider'] = 'mapbox'; | |
| 1962 | + rtCommonProps['server.for.resources'] = ''; | |
| 1963 | + rtCommonProps['feature.flag.lazy.widgets'] = true; | |
| 1964 | + rtCommonProps['feature.flag.single.wow'] = false; | |
| 1965 | + rtCommonProps['feature.flag.disallowPopupsInEditor'] = true; | |
| 1966 | + rtCommonProps['feature.flag.mark.anchors'] = true; | |
| 1967 | + rtCommonProps['captcha.public.key'] = '6LffcBsUAAAAAMU-MYacU-6QHY4iDtUEYv_Ppwlz'; | |
| 1968 | + rtCommonProps['captcha.invisible.public.key'] = '6LeiWB8UAAAAAHYnVJM7_-7ap6bXCUNGiv7bBPME'; | |
| 1969 | + rtCommonProps["images.sizes.small"] =160; | |
| 1970 | + rtCommonProps["images.sizes.mobile"] =640; | |
| 1971 | + rtCommonProps["images.sizes.tablet"] =1280; | |
| 1972 | + rtCommonProps["images.sizes.desktop"] =1920; | |
| 1973 | + rtCommonProps["modules.resources.cdn"] =true; | |
| 1974 | + rtCommonProps["import.images.storage.imageCDN"] = 'https://irp.cdn-website.com/'; | |
| 1975 | + rtCommonProps["feature.flag.runtime.inp.threshold"] =150; | |
| 1976 | + rtCommonProps["feature.flag.performance.logs"] =false; | |
| 1977 | + rtCommonProps["site.widget.form.captcha.type"] = 'g_recaptcha'; | |
| 1978 | + rtCommonProps["friendly.captcha.site.key"] = 'FCMGSQG9GVNMFS8K'; | |
| 1979 | + rtCommonProps["cookiebot.mapbox.consent.category"] = 'marketing'; | |
| 1980 | + rtCommonProps["termly.mapbox.consent.category"] = 'performance'; | |
| 1981 | + // feature flags that's used out of runtime module (in legacy files) | |
| 1982 | + rtCommonProps["platform.monolith.personalization.dateTimeCondition.popupMsgAction.moveToclient.enabled"] =true; | |
| 1983 | + | |
| 1984 | + window.rtFlags = {}; | |
| 1985 | + rtFlags["unsuspendEcwidStoreOnRuntime.enabled"] =true; | |
| 1986 | + rtFlags["scripts.widgetCount.enabled"] =true; | |
| 1987 | + rtFlags["fnb.animations.tracking.enabled"] =true; | |
| 1988 | + rtFlags["ecom.ecwidNewUrlStructure.enabled"] = false; | |
| 1989 | + rtFlags["ecom.ecwid.accountPage.emptyBaseUrl.enabled"] = true; | |
| 1990 | + rtFlags["ecom.ecwid.accountPage.repeatOrderRedirect.enabled"] = false; | |
| 1991 | + rtFlags["ecom.ecwid.pages.links.disable.listeners"] = true; | |
| 1992 | + rtFlags["ecom.ecwid.storefrontV3.enabled"] = false; | |
| 1993 | + rtFlags["ecom.ecwid.old.store.fix.facebook.share"] = true; | |
| 1994 | + rtFlags["ecom.monolith.legacy.js.api.disabled.for.new.sites"] = false; | |
| 1995 | + rtFlags["feature.flag.photo.gallery.exact.size"] =true; | |
| 1996 | + rtFlags["geocode.search.localize"] =false; | |
| 1997 | + rtFlags["feature.flag.runtime.newAnimation.asyncInit.setTimeout.enabled"] =false; | |
| 1998 | + rtFlags["twitter.heightLimit.enabled"] = true; | |
| 1999 | + rtFlags["runtime.lottieOverflow"] =false; | |
| 2000 | + rtFlags["runtime.monitoring.sentry.ignoreErrors"] = ""; | |
| 2001 | + rtFlags["streamline.monolith.personalization.supportMultipleConditions.enabled"] =false; | |
| 2002 | + rtFlags["flex.animation.design.panel.layout"] =true; | |
| 2003 | + rtFlags["runtime.cwv.report.cls.enabled"] =false; | |
| 2004 | + rtFlags["runtime.cwv.report.lcp.enabled"] =false; | |
| 2005 | + rtFlags["runtime.lcp.preload.selfheal.enabled"] =true; | |
| 2006 | + rtFlags["runtime.lcp.preload.bootstrap.enabled"] =false; | |
| 2007 | + rtFlags["runtime.lcp.preload.monitor.enabled"] =false; | |
| 2008 | + rtFlags["runtime.customwidget.heightpin.enabled"] =true; | |
| 2009 | + rtFlags["contact.form.useActiveForm"] =true; | |
| 2010 | + rtFlags["contact.form.custom.errors.enabled"] =false; | |
| 2011 | + rtFlags["runtime.ssr.productStore.internal.observer"] =true; | |
| 2012 | + rtFlags["runtime.ssr.productCustomizations"] =true; | |
| 2013 | + rtFlags["runtime.ssr.runtime.filter-sort.newFilterSortWidgetWithOptions.enabled"] =true; | |
| 2014 | + rtFlags["runtime.ssr.ssrSlider.jumpThreshold.enabled"] =true; | |
| 2015 | + rtFlags["runtime.ssr.native.booker.enabled"] =false; | |
| 2016 | + rtFlags["termly.map.consent.overlay.enabled"] =false; | |
| 2017 | +</script> | |
| 2018 | +<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> | |
| 2019 | + | |
| 2020 | +<!-- End of HEAD RT JS Include --> | |
| 2021 | + | |
| 2022 | + | |
| 2023 | + | |
| 2024 | + | |
| 2025 | + | |
| 2026 | + | |
| 2027 | + | |
| 2028 | + | |
| 2029 | + | |
| 2030 | + | |
| 2031 | + | |
| 2032 | + <script src="https://static.cdn-website.com/mnlt/production/6688/_dm/s/rt/dist/scripts/d-js-jquery-migrate.min.js" ></script> | |
| 2033 | + | |
| 2034 | + | |
| 2035 | + | |
| 2036 | + | |
| 2037 | + | |
| 2038 | +<script> | |
| 2039 | + | |
| 2040 | + $(window).bind("orientationchange", function (e) { | |
| 2041 | + $.layoutManager.initLayout(); | |
| 2042 | + | |
| 2043 | + }); | |
| 2044 | + $(document).resize(function () { | |
| 2045 | + | |
| 2046 | + }); | |
| 2047 | +</script> | |
| 2048 | + | |
| 2049 | + | |
| 2050 | + | |
| 2051 | + | |
| 2052 | + | |
| 2053 | + | |
| 2054 | + | |
| 2055 | + | |
| 2056 | + | |
| 2057 | + | |
| 2058 | + | |
| 2059 | + | |
| 2060 | + | |
| 2061 | + | |
| 2062 | + | |
| 2063 | + | |
| 2064 | + | |
| 2065 | + | |
| 2066 | +<script type="text/javascript" id="d_track_sp"> | |
| 2067 | + ;(function(p,l,o,w,i,n,g){if(!p[i]){p.GlobalSnowplowNamespace=p.GlobalSnowplowNamespace||[]; | |
| 2068 | + p.GlobalSnowplowNamespace.push(i);p[i]=function(){(p[i].q=p[i].q||[]).push(arguments) | |
| 2069 | + };p[i].q=p[i].q||[];n=l.createElement(o);g=l.getElementsByTagName(o)[0];n.async=1; | |
| 2070 | + n.src=w;g.parentNode.insertBefore(n,g)}}(window,document,"script","//d32hwlnfiv2gyn.cloudfront.net/sp-2.0.0-dm-0.1.min.js","snowplow")); | |
| 2071 | + window.dmsnowplow = window.snowplow; | |
| 2072 | + | |
| 2073 | + dmsnowplow('newTracker', 'cf', 'd32hwlnfiv2gyn.cloudfront.net', { // Initialise a tracker | |
| 2074 | + appId: '6d6b044d' | |
| 2075 | + }); | |
| 2076 | + | |
| 2077 | + // snowplow queries element styles so we wait until CSS calculations are done. | |
| 2078 | + requestAnimationFrame(() => { | |
| 2079 | + dmsnowplow('trackPageView'); | |
| 2080 | + _dm_insite.forEach((rule) => { | |
| 2081 | + // Specifically in popup only the client knows if it is shown or not so we don't always want to track its impression here | |
| 2082 | + // the tracking is in popup.js | |
| 2083 | + if (rule.actionName !== "popup") { | |
| 2084 | + dmsnowplow('trackStructEvent', 'insite', 'impression', rule.ruleType, rule.ruleId); | |
| 2085 | + } | |
| 2086 | + window?.waitForDeferred?.('dmAjax', () => { | |
| 2087 | + $.DM.events.trigger('event-ruleTriggered', {value: rule}); | |
| 2088 | + }); | |
| 2089 | + }); | |
| 2090 | + }); | |
| 2091 | +</script> | |
| 2092 | + | |
| 2093 | + | |
| 2094 | + | |
| 2095 | +<div style="display:none;" id="P6iryBW0Wu"></div> | |
| 2096 | + | |
| 2097 | +<!-- photoswipe markup --> | |
| 2098 | + | |
| 2099 | + | |
| 2100 | + | |
| 2101 | + | |
| 2102 | + | |
| 2103 | + | |
| 2104 | + | |
| 2105 | + | |
| 2106 | + | |
| 2107 | +<!-- Root element of PhotoSwipe. Must have class pswp. --> | |
| 2108 | +<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true"> | |
| 2109 | + | |
| 2110 | + <!-- Background of PhotoSwipe. | |
| 2111 | + It's a separate element as animating opacity is faster than rgba(). --> | |
| 2112 | + <div class="pswp__bg"></div> | |
| 2113 | + | |
| 2114 | + <!-- Slides wrapper with overflow:hidden. --> | |
| 2115 | + <div class="pswp__scroll-wrap"> | |
| 2116 | + | |
| 2117 | + <!-- Container that holds slides. | |
| 2118 | + PhotoSwipe keeps only 3 of them in the DOM to save memory. | |
| 2119 | + Don't modify these 3 pswp__item elements, data is added later on. --> | |
| 2120 | + <div class="pswp__container"> | |
| 2121 | + <div class="pswp__item"></div> | |
| 2122 | + <div class="pswp__item"></div> | |
| 2123 | + <div class="pswp__item"></div> | |
| 2124 | + </div> | |
| 2125 | + | |
| 2126 | + <!-- Default (PhotoSwipeUI_Default) interface on top of sliding area. Can be changed. --> | |
| 2127 | + <div class="pswp__ui pswp__ui--hidden"> | |
| 2128 | + | |
| 2129 | + <div class="pswp__top-bar"> | |
| 2130 | + | |
| 2131 | + <!-- Controls are self-explanatory. Order can be changed. --> | |
| 2132 | + | |
| 2133 | + <div class="pswp__counter"></div> | |
| 2134 | + | |
| 2135 | + <button class="pswp__button pswp__button--close" title="Fermer (Echap)"></button> | |
| 2136 | + | |
| 2137 | + <button class="pswp__button pswp__button--share" title="Partager"></button> | |
| 2138 | + | |
| 2139 | + <button class="pswp__button pswp__button--fs" title="Passer en mode plein écran"></button> | |
| 2140 | + | |
| 2141 | + <button class="pswp__button pswp__button--zoom" title="Zoom avant / arrière"></button> | |
| 2142 | + | |
| 2143 | + <!-- Preloader demo http://codepen.io/dimsemenov/pen/yyBWoR --> | |
| 2144 | + <!-- element will get class pswp__preloader--active when preloader is running --> | |
| 2145 | + <div class="pswp__preloader"> | |
| 2146 | + <div class="pswp__preloader__icn"> | |
| 2147 | + <div class="pswp__preloader__cut"> | |
| 2148 | + <div class="pswp__preloader__donut"></div> | |
| 2149 | + </div> | |
| 2150 | + </div> | |
| 2151 | + </div> | |
| 2152 | + </div> | |
| 2153 | + | |
| 2154 | + <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"> | |
| 2155 | + <div class="pswp__share-tooltip"></div> | |
| 2156 | + </div> | |
| 2157 | + | |
| 2158 | + <button class="pswp__button pswp__button--arrow--left" title="Précédent (flèche gauche)"> | |
| 2159 | + </button> | |
| 2160 | + | |
| 2161 | + <button class="pswp__button pswp__button--arrow--right" title="Suivant (flèche droite)"> | |
| 2162 | + </button> | |
| 2163 | + | |
| 2164 | + <div class="pswp__caption"> | |
| 2165 | + <div class="pswp__caption__center"></div> | |
| 2166 | + </div> | |
| 2167 | + | |
| 2168 | + </div> | |
| 2169 | + | |
| 2170 | + </div> | |
| 2171 | + | |
| 2172 | +</div> | |
| 2173 | +<div id="fb-root" | |
| 2174 | + data-locale="fr_FR"></div> | |
| 2175 | +<!-- Alias: 6d6b044d --> | |
| 2176 | +<div class="dmPopupMask" id="dmPopupMask"></div> | |
| 2177 | +<div id="dmPopup" class="dmPopup"> | |
| 2178 | + <div class="dmPopupCloseWrapper"> <div class="dmPopupClose dm-common-icons-close oneIcon" onclick="dmHidePopup(event);"></div> </div> | |
| 2179 | + <div class="dmPopupTitle"> <span></span> Share by:</div> | |
| 2180 | + <div class="data"></div> | |
| 2181 | +</div><script id="d_track_personalization"> | |
| 2182 | + window?.waitForDeferred?.('dmAjax', () => { | |
| 2183 | + // Collects client data and updates cookies used by smart sites | |
| 2184 | + window.expireDays = 365; | |
| 2185 | + window.visitLength = 30 * 60000; | |
| 2186 | + $.setCookie("dm_timezone_offset", (new Date()).getTimezoneOffset(), window.expireDays); | |
| 2187 | + setSmartSiteCookiesInternal("dm_this_page_view","dm_last_page_view","dm_total_visits","dm_last_visit"); | |
| 2188 | + }); | |
| 2189 | +</script> | |
| 2190 | +<script type="text/javascript"> | |
| 2191 | + | |
| 2192 | + Parameters.NavigationAreaParams.MoreButtonText = 'MORE'; | |
| 2193 | + | |
| 2194 | + Parameters.NavigationAreaParams.LessButtonText = 'LESS'; | |
| 2195 | + Parameters.HomeLinkText = 'Home'; | |
| 2196 | + </script> | |
| 2197 | +<!-- End Script tags --> | |
| 2198 | +<!-- Site Wide Html Markup --> | |
| 2199 | +<!-- Site Wide Html Markup --> | |
| 2200 | +</body> | |
| 2201 | +</html> | |
added
tests/fixtures/girs/196a28174c87f5e3d6b3.html
+2255 −0
@@ -0,0 +1,2255 @@ | ||
| 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 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | +<script type="text/javascript"> | |
| 46 | + window._currentDevice = 'desktop'; | |
| 47 | + window.Parameters = window.Parameters || { | |
| 48 | + HomeUrl: 'https://www.girs.ca/', | |
| 49 | + | |
| 50 | + SystemID: 'US_DIRECT_PRODUCTION', | |
| 51 | + SiteAlias: '6d6b044d', | |
| 52 | + SiteType: atob('RFVEQU9ORQ=='), | |
| 53 | + PublicationDate: 'Mar 31, 2026', | |
| 54 | + ExternalUid: null, | |
| 55 | + IsSiteMultilingual: false, | |
| 56 | + InitialPostAlias: '', | |
| 57 | + InitialPostPageUuid: '', | |
| 58 | + InitialDynamicItem: '', | |
| 59 | + DynamicPageInfo: { | |
| 60 | + isDynamicPage: false, | |
| 61 | + base64JsonRowData: 'null', | |
| 62 | + }, | |
| 63 | + InitialPageAlias: 'location/scott/rue-jean-baptiste', | |
| 64 | + InitialPageUuid: '845bf62a727143329cee1b9f8aeb2eb3', | |
| 65 | + InitialPageId: '43685121', | |
| 66 | + InitialEncodedPageAlias: 'bG9jYXRpb24vc2NvdHQvcnVlLWplYW4tYmFwdGlzdGU=', | |
| 67 | + InitialHeaderUuid: '61c65dd7517f4c29b71b498c43fdda25', | |
| 68 | + CurrentPageUrl: '', | |
| 69 | + IsCurrentHomePage: false, | |
| 70 | + AllowAjax: false, | |
| 71 | + AfterAjaxCommand: null, | |
| 72 | + HomeLinkText: 'Back To Home', | |
| 73 | + UseGalleryModule: false, | |
| 74 | + CurrentThemeName: 'Layout Theme', | |
| 75 | + ThemeVersion: '500000', | |
| 76 | + DefaultPageAlias: '', | |
| 77 | + RemoveDID: true, | |
| 78 | + WidgetStyleID: null, | |
| 79 | + IsHeaderFixed: false, | |
| 80 | + IsHeaderSkinny: false, | |
| 81 | + IsBfs: true, | |
| 82 | + StorePageAlias: 'null', | |
| 83 | + StorePagesUrls: 'e30=', | |
| 84 | + IsNewStore: 'false', | |
| 85 | + StorePath: '', | |
| 86 | + StoreId: 'null', | |
| 87 | + StoreVersion: 0, | |
| 88 | + StoreBaseUrl: '', | |
| 89 | + StoreCleanUrl: true, | |
| 90 | + StoreDisableScrolling: true, | |
| 91 | + IsStoreSuspended: false, | |
| 92 | + HasCustomDomain: true, | |
| 93 | + SimpleSite: false, | |
| 94 | + showCookieNotification: true, | |
| 95 | + cookiesNotificationMarkup: ' <div> <p class=\"rteBlock\">Nous utilisons des cookies pour optimiser votre expérience sur notre site web. Pour en savoir plus, veuillez accéder à la page <a value=\"donnees-personnelles\" label=\"\" type=\"page\" href=\"\/donnees-personnelles\" data-runtime-url=\"\/donnees-personnelles\">Confidentialité<\/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: false | |
| 134 | + }; | |
| 135 | + | |
| 136 | + window.Parameters.LayoutID = {}; | |
| 137 | + window.Parameters.LayoutID[window._currentDevice] = 6; | |
| 138 | + window.Parameters.LayoutVariationID = {}; | |
| 139 | + window.Parameters.LayoutVariationID[window._currentDevice] = 5; | |
| 140 | +</script> | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | +<!-- Injecting site-wide to the head --> | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
| 169 | + | |
| 170 | + | |
| 171 | + | |
| 172 | + | |
| 173 | + | |
| 174 | + | |
| 175 | + | |
| 176 | + | |
| 177 | + | |
| 178 | +<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('&'); | |
| 185 | + | |
| 186 | + const expires = 'expires=' + new Date().getTime() + 24 * 60 * 60 * 1000; | |
| 187 | + const domain = 'domain=' + window.location.hostname; | |
| 188 | + const path = "path=/"; | |
| 189 | + | |
| 190 | + 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.cookie | |
| 220 | + .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 submission | |
| 226 | + // 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> | |
| 240 | + | |
| 241 | + | |
| 242 | + | |
| 243 | + | |
| 244 | + | |
| 245 | + | |
| 246 | +<!-- End Injecting site-wide to the head --> | |
| 247 | + | |
| 248 | +<!-- Inject secured cdn script --> | |
| 249 | + | |
| 250 | + | |
| 251 | +<!-- ========= 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 >>> 0 | |
| 260 | + } | |
| 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.serviceWorker | |
| 277 | + .register(serviceWorkerPath, { scope: './' }) | |
| 278 | + .then( | |
| 279 | + function (registration) { | |
| 280 | + // Registration was successful | |
| 281 | + console.log( | |
| 282 | + 'ServiceWorker registration successful with scope: ', | |
| 283 | + registration.scope | |
| 284 | + ); | |
| 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 | + }); | |
| 295 | + | |
| 296 | + // helper function to refresh the page | |
| 297 | + var refreshPage = (function () { | |
| 298 | + var refreshing; | |
| 299 | + return function () { | |
| 300 | + if (refreshing) return; | |
| 301 | + // prevent multiple refreshes | |
| 302 | + 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 loop | |
| 308 | + } | |
| 309 | + } | |
| 310 | + refreshing = true; | |
| 311 | + localStorage.setItem(refreshkey, Date.now()); | |
| 312 | + console.log('refereshing page'); | |
| 313 | + window.location.reload(); | |
| 314 | + }; | |
| 315 | + })(); | |
| 316 | + | |
| 317 | + 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 --> | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
| 340 | +<link rel="canonical" href="https://www.girs.ca/location/scott/rue-jean-baptiste"> | |
| 341 | + | |
| 342 | +<meta id="view" name="viewport" content="initial-scale=1, minimum-scale=1, maximum-scale=5, viewport-fit=cover"> | |
| 343 | + | |
| 344 | +<meta name="apple-mobile-web-app-capable" content="yes"> | |
| 345 | + | |
| 346 | +<!--Add favorites icons--> | |
| 347 | + | |
| 348 | +<link rel="icon" type="image/x-icon" href="https://irp.cdn-website.com/6d6b044d/site_favicon_16_1673962208002.ico"/> | |
| 349 | + | |
| 350 | +<!-- 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"/> | |
| 354 | + | |
| 355 | + | |
| 356 | + | |
| 357 | +<!-- render the required CSS and JS in the head section --> | |
| 358 | +<script id='d-js-dmapi'> | |
| 359 | + window.SystemID = 'US_DIRECT_PRODUCTION'; | |
| 360 | + | |
| 361 | + 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; | |
| 372 | + | |
| 373 | + 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 | + } | |
| 405 | + | |
| 406 | + if (!window.requestIdleCallback) { | |
| 407 | + window.requestIdleCallback = function (fn) { | |
| 408 | + setTimeout(fn, 0); | |
| 409 | + } | |
| 410 | + } | |
| 411 | +</script> | |
| 412 | + | |
| 413 | +<!-- loadCSS function header.jsp--> | |
| 414 | + | |
| 415 | + | |
| 416 | + | |
| 417 | + | |
| 418 | + | |
| 419 | + | |
| 420 | +<script id="d-js-load-css"> | |
| 421 | +/** | |
| 422 | + * There are a few <link> tags with CSS resource in them that are preloaded in the page | |
| 423 | + * in each of those there is a "onload" handler which invokes the loadCSS callback | |
| 424 | + * 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 threre | |
| 427 | + * is no page css (which may happen on inner pages) then we do not wait for it | |
| 428 | + */ | |
| 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']"); | |
| 440 | + | |
| 441 | + 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; | |
| 446 | + | |
| 447 | + storedGlobalCssLink.disabled = true; | |
| 448 | + loadCssLink(storedGlobalCssLink); | |
| 449 | + | |
| 450 | + if (storedPageCssLink) { | |
| 451 | + storedPageCssLink.disabled = true; | |
| 452 | + loadCssLink(storedPageCssLink); | |
| 453 | + } | |
| 454 | + | |
| 455 | + if(storedWidgetCssLink) { | |
| 456 | + storedWidgetCssLink.disabled = true; | |
| 457 | + loadCssLink(storedWidgetCssLink); | |
| 458 | + } | |
| 459 | + | |
| 460 | + storedRuntimeCssLink.disabled = true; | |
| 461 | + loadCssLink(storedRuntimeCssLink); | |
| 462 | + | |
| 463 | + 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're | |
| 474 | + // 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 | + | |
| 484 | + | |
| 485 | + 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; | |
| 490 | + | |
| 491 | + 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 e | |
| 519 | + } | |
| 520 | + } | |
| 521 | + window.loadCSS = window.loadCSS || loadCSS; | |
| 522 | +})(); | |
| 523 | +</script> | |
| 524 | + | |
| 525 | + | |
| 526 | + | |
| 527 | +<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 = b | |
| 532 | + }).bind(this)) | |
| 533 | + } | |
| 534 | + | |
| 535 | + 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 | + d | |
| 542 | + ? d.promise.then(a) | |
| 543 | + : c && ["complete", "interactive"].includes(document.readyState) | |
| 544 | + ? setTimeout(a, 1) | |
| 545 | + : c | |
| 546 | + ? 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 */ | |
| 552 | + | |
| 553 | +.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 | + | |
| 555 | + | |
| 556 | +</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> | |
| 568 | + | |
| 569 | + | |
| 570 | + | |
| 571 | + | |
| 572 | + | |
| 573 | + | |
| 574 | + | |
| 575 | + | |
| 576 | + | |
| 577 | + | |
| 578 | + | |
| 579 | + | |
| 580 | + | |
| 581 | + | |
| 582 | + | |
| 583 | + | |
| 584 | + | |
| 585 | + | |
| 586 | + | |
| 587 | + | |
| 588 | + | |
| 589 | + | |
| 590 | + | |
| 591 | + | |
| 592 | + | |
| 593 | +<!-- Google Fonts Include --> | |
| 594 | + | |
| 595 | + | |
| 596 | + | |
| 597 | + | |
| 598 | + | |
| 599 | + | |
| 600 | + | |
| 601 | + | |
| 602 | + | |
| 603 | + | |
| 604 | + | |
| 605 | + | |
| 606 | + | |
| 607 | +<!-- loadCSS function fonts.jsp--> | |
| 608 | + | |
| 609 | + | |
| 610 | + | |
| 611 | +<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&subset=latin-ext&display=swap" /> | |
| 612 | + | |
| 613 | + | |
| 614 | + | |
| 615 | + | |
| 616 | + | |
| 617 | +<!-- 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" /> | |
| 619 | + | |
| 620 | +<!-- End of RT CSS Include --> | |
| 621 | + | |
| 622 | +<link type="text/css" rel="stylesheet" href="https://irp.cdn-website.com/WIDGET_CSS/b3f900cc909110f5df2a6191c01d29f5.css" id="widgetCSS" /> | |
| 623 | + | |
| 624 | +<!-- Support `img` size attributes --> | |
| 625 | +<style>img[width][height] { | |
| 626 | + height: auto; | |
| 627 | +}</style> | |
| 628 | + | |
| 629 | +<!-- Support showing sticky element on page only --> | |
| 630 | +<style> | |
| 631 | + body[data-page-alias="location/scott/rue-jean-baptiste"] #dm [data-show-on-page-only="location/scott/rue-jean-baptiste"] { | |
| 632 | + display: block !important; | |
| 633 | + } | |
| 634 | +</style> | |
| 635 | + | |
| 636 | +<!-- This is populated in Ajax navigation --> | |
| 637 | +<style id="pageAdditionalWidgetsCss" type="text/css"> | |
| 638 | +</style> | |
| 639 | + | |
| 640 | + | |
| 641 | + | |
| 642 | + | |
| 643 | +<!-- 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" /> | |
| 645 | + | |
| 646 | + | |
| 647 | + | |
| 648 | +<style id="customWidgetStyle" type="text/css"> | |
| 649 | + | |
| 650 | +</style> | |
| 651 | +<style id="innerPagesStyle" type="text/css"> | |
| 652 | + | |
| 653 | +</style> | |
| 654 | + | |
| 655 | + | |
| 656 | +<style | |
| 657 | + id="additionalGlobalCss" type="text/css" | |
| 658 | +> | |
| 659 | +</style> | |
| 660 | + | |
| 661 | +<style id="pagestyle" type="text/css"> | |
| 662 | + *#dm *.dmBody a.span.textonly | |
| 663 | +{ | |
| 664 | + color:rgb(255,255,255) !important; | |
| 665 | +} | |
| 666 | +*#dm *.dmBody div.dmform-error | |
| 667 | +{ | |
| 668 | + font-style:normal !important; | |
| 669 | +} | |
| 670 | +*#dm *.dmBody div.dmforminput textarea | |
| 671 | +{ | |
| 672 | + font-style:italic !important; | |
| 673 | +} | |
| 674 | +*#dm *.dmBody div.dmforminput *.fileUploadLink | |
| 675 | +{ | |
| 676 | + font-style:italic !important; | |
| 677 | +} | |
| 678 | +*#dm *.dmBody div.checkboxwrapper span | |
| 679 | +{ | |
| 680 | + font-style:italic !important; | |
| 681 | +} | |
| 682 | +*#dm *.dmBody div.radiowrapper span | |
| 683 | +{ | |
| 684 | + font-style:italic !important; | |
| 685 | +} | |
| 686 | +*#dm *.dmBody nav.u_1144820115 | |
| 687 | +{ | |
| 688 | + color:black !important; | |
| 689 | +} | |
| 690 | +*#dm *.dmBody *.u_1004639188:before | |
| 691 | +{ | |
| 692 | + opacity:0.5 !important; | |
| 693 | + background-color:rgb(255,255,255) !important; | |
| 694 | +} | |
| 695 | +*#dm *.dmBody *.u_1004639188.before | |
| 696 | +{ | |
| 697 | + opacity:0.5 !important; | |
| 698 | + background-color:rgb(255,255,255) !important; | |
| 699 | +} | |
| 700 | +*#dm *.dmBody *.u_1004639188>.bgExtraLayerOverlay | |
| 701 | +{ | |
| 702 | + opacity:0.5 !important; | |
| 703 | + background-color:rgb(255,255,255) !important; | |
| 704 | +} | |
| 705 | +*#dm *.dmBody div.u_1004639188 | |
| 706 | +{ | |
| 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:before | |
| 713 | +{ | |
| 714 | + background-color:var(--color_1) !important; | |
| 715 | +} | |
| 716 | +*#dm *.dmBody div.u_1004639188.before | |
| 717 | +{ | |
| 718 | + background-color:var(--color_1) !important; | |
| 719 | +} | |
| 720 | +*#dm *.dmBody div.u_1004639188>.bgExtraLayerOverlay | |
| 721 | +{ | |
| 722 | + background-color:var(--color_1) !important; | |
| 723 | +} | |
| 724 | +*#dm *.dmBody a.u_1756842165:hover | |
| 725 | +{ | |
| 726 | + background-color:var(--color_3) !important; | |
| 727 | + background-image:none !important; | |
| 728 | +} | |
| 729 | +*#dm *.dmBody a.u_1756842165.hover | |
| 730 | +{ | |
| 731 | + background-color:var(--color_3) !important; | |
| 732 | + background-image:none !important; | |
| 733 | +} | |
| 734 | +*#dm *.dmBody a.u_1756842165:hover span.text | |
| 735 | +{ | |
| 736 | + color:var(--color_1) !important; | |
| 737 | +} | |
| 738 | +*#dm *.dmBody a.u_1756842165.hover span.text | |
| 739 | +{ | |
| 740 | + color:var(--color_1) !important; | |
| 741 | +} | |
| 742 | +*#dm *.dmBody a.u_1756842165 span.text | |
| 743 | +{ | |
| 744 | + font-family:'Roboto' !important; | |
| 745 | + font-weight:400 !important; | |
| 746 | + color:var(--color_3) !important; | |
| 747 | +} | |
| 748 | +*#dm *.dmBody div.u_1937526287 | |
| 749 | +{ | |
| 750 | + border-style:solid !important; | |
| 751 | + border-width:2px !important; | |
| 752 | + border-color:var(--color_3) !important; | |
| 753 | +} | |
| 754 | +*#dm *.dmBody div.u_1452815793 | |
| 755 | +{ | |
| 756 | + background-color:rgba(0,0,0,0.05) !important; | |
| 757 | +} | |
| 758 | +*#dm *.dmBody div.u_1840143137 | |
| 759 | +{ | |
| 760 | + background-color:rgba(0,0,0,0.05) !important; | |
| 761 | +} | |
| 762 | +*#dm *.dmBody div.u_1813520727 | |
| 763 | +{ | |
| 764 | + background-color:rgba(0,0,0,0.05) !important; | |
| 765 | +} | |
| 766 | +*#dm *.dmBody div.u_1813669443 .svg | |
| 767 | +{ | |
| 768 | + color:var(--color_3) !important; | |
| 769 | + fill:var(--color_3) !important; | |
| 770 | +} | |
| 771 | +*#dm *.dmBody div.u_1419208593 .svg | |
| 772 | +{ | |
| 773 | + color:rgba(255,255,255,1) !important; | |
| 774 | + fill:rgba(255,255,255,1) !important; | |
| 775 | +} | |
| 776 | +*#dm *.dmBody div.u_1281514457 .color-overlay | |
| 777 | +{ | |
| 778 | + background-color:rgba(0,0,0,0) !important; | |
| 779 | +} | |
| 780 | +*#dm *.dmBody *.u_1281514457 .flex-direction-nav a:before | |
| 781 | +{ | |
| 782 | + font-size:45px !important; | |
| 783 | +} | |
| 784 | +*#dm *.dmBody *.u_1281514457 .flex-direction-nav a | |
| 785 | +{ | |
| 786 | + width:45px !important; | |
| 787 | + height:45px !important; | |
| 788 | + overflow:visible !important; | |
| 789 | + color:var(--color_3) !important; | |
| 790 | +} | |
| 791 | +*#dm *.dmBody *.u_1713239492:before | |
| 792 | +{ | |
| 793 | + opacity:0.5 !important; | |
| 794 | + background-color:rgb(255,255,255) !important; | |
| 795 | +} | |
| 796 | +*#dm *.dmBody *.u_1713239492.before | |
| 797 | +{ | |
| 798 | + opacity:0.5 !important; | |
| 799 | + background-color:rgb(255,255,255) !important; | |
| 800 | +} | |
| 801 | +*#dm *.dmBody *.u_1713239492>.bgExtraLayerOverlay | |
| 802 | +{ | |
| 803 | + opacity:0.5 !important; | |
| 804 | + background-color:rgb(255,255,255) !important; | |
| 805 | +} | |
| 806 | +*#dm *.dmBody div.u_1486697154 | |
| 807 | +{ | |
| 808 | + border-style:solid !important; | |
| 809 | + border-width:2px !important; | |
| 810 | + border-color:var(--color_3) !important; | |
| 811 | +} | |
| 812 | +*#dm *.dmBody a.u_1331251441 span.text | |
| 813 | +{ | |
| 814 | + text-decoration:none !important; | |
| 815 | + font-weight:400 !important; | |
| 816 | +} | |
| 817 | +*#dm *.dmBody a.u_1331251441:hover span.text | |
| 818 | +{ | |
| 819 | + text-decoration:underline !important; | |
| 820 | + color:var(--color_1) !important; | |
| 821 | +} | |
| 822 | +*#dm *.dmBody a.u_1331251441.hover span.text | |
| 823 | +{ | |
| 824 | + text-decoration:underline !important; | |
| 825 | + color:var(--color_1) !important; | |
| 826 | +} | |
| 827 | +*#dm *.dmBody a.u_1331251441:hover | |
| 828 | +{ | |
| 829 | + background-color:var(--color_3) !important; | |
| 830 | + background-image:none !important; | |
| 831 | +} | |
| 832 | +*#dm *.dmBody a.u_1331251441.hover | |
| 833 | +{ | |
| 834 | + background-color:var(--color_3) !important; | |
| 835 | + background-image:none !important; | |
| 836 | +} | |
| 837 | +*#dm *.dmBody div.u_1884387629 | |
| 838 | +{ | |
| 839 | + background-color:rgba(0,0,0,0.05) !important; | |
| 840 | +} | |
| 841 | +*#dm *.dmBody a.u_1331251441 | |
| 842 | +{ | |
| 843 | + border-style:solid !important; | |
| 844 | + border-width:2px !important; | |
| 845 | + border-color:var(--color_3) !important; | |
| 846 | + background-color:rgba(0,0,0,0) !important; | |
| 847 | + border-radius:20px 20px 20px 20px !important; | |
| 848 | +} | |
| 849 | +*#dm *.dmBody div.u_1748061203 .svg | |
| 850 | +{ | |
| 851 | + color:var(--color_1) !important; | |
| 852 | + fill:var(--color_1) !important; | |
| 853 | +} | |
| 854 | +*#dm *.dmBody a.u_1756842165 | |
| 855 | +{ | |
| 856 | + border-color:var(--color_3) !important; | |
| 857 | + border-style:solid !important; | |
| 858 | + border-width:2px !important; | |
| 859 | + border-radius:20px 20px 20px 20px !important; | |
| 860 | +} | |
| 861 | +*#dm *.dmBody *.u_1079271476 | |
| 862 | +{ | |
| 863 | + background-position:50% 50% !important; | |
| 864 | +} | |
| 865 | +*#dm *.dmBody div.u_1713239492:before | |
| 866 | +{ | |
| 867 | + background-color:var(--color_1) !important; | |
| 868 | + opacity:0.4 !important; | |
| 869 | +} | |
| 870 | +*#dm *.dmBody div.u_1713239492.before | |
| 871 | +{ | |
| 872 | + background-color:var(--color_1) !important; | |
| 873 | + opacity:0.4 !important; | |
| 874 | +} | |
| 875 | +*#dm *.dmBody div.u_1713239492>.bgExtraLayerOverlay | |
| 876 | +{ | |
| 877 | + background-color:var(--color_1) !important; | |
| 878 | + opacity:0.4 !important; | |
| 879 | +} | |
| 880 | +*#dm *.dmBody div.u_1465006226 .svg | |
| 881 | +{ | |
| 882 | + color:var(--color_3) !important; | |
| 883 | + fill:var(--color_3) !important; | |
| 884 | +} | |
| 885 | +*#dm *.dmBody div.u_1746905231 | |
| 886 | +{ | |
| 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_1732757548 | |
| 891 | +{ | |
| 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_1373323900 | |
| 896 | +{ | |
| 897 | + background-image:linear-gradient(90deg,rgba(66,123,202,1) 0%,rgba(73,174,223,1) 100%) !important; | |
| 898 | + background-origin:border-box !important; | |
| 899 | +} | |
| 900 | +*#dm *.dmBody *.u_1188563749 | |
| 901 | +{ | |
| 902 | + width:100% !important; | |
| 903 | +} | |
| 904 | +*#dm *.dmBody nav.u_1737436200 | |
| 905 | +{ | |
| 906 | + color:black !important; | |
| 907 | +} | |
| 908 | +*#dm *.dmBody nav.u_1889817761 | |
| 909 | +{ | |
| 910 | + color:black !important; | |
| 911 | +} | |
| 912 | + | |
| 913 | +</style> | |
| 914 | + | |
| 915 | +<style id="pagestyleDevice" type="text/css"> | |
| 916 | + *#dm *.d-page-1716942098 DIV.dmInner | |
| 917 | +{ | |
| 918 | + background-repeat:no-repeat !important; | |
| 919 | + background-size:cover !important; | |
| 920 | + background-attachment:fixed !important; | |
| 921 | + background-position:50% 50% !important; | |
| 922 | +} | |
| 923 | +*#dm *.d-page-1716942098 DIV#dmSlideRightNavRight | |
| 924 | +{ | |
| 925 | + background-repeat:no-repeat !important; | |
| 926 | + background-image:none !important; | |
| 927 | + background-size:cover !important; | |
| 928 | + background-attachment:fixed !important; | |
| 929 | + background-position:50% 50% !important; | |
| 930 | +} | |
| 931 | +*#dm *.dmBody div.u_1867569646 | |
| 932 | +{ | |
| 933 | + height:40px !important; | |
| 934 | +} | |
| 935 | +*#dm *.dmBody a.u_1756842165 span.text | |
| 936 | +{ | |
| 937 | + font-size:20px !important; | |
| 938 | +} | |
| 939 | +*#dm *.dmBody div.u_1937526287 | |
| 940 | +{ | |
| 941 | + margin-left:20px !important; | |
| 942 | + padding-top:0px !important; | |
| 943 | + padding-left:20px !important; | |
| 944 | + padding-bottom:0px !important; | |
| 945 | + margin-top:0px !important; | |
| 946 | + margin-bottom:0px !important; | |
| 947 | + margin-right:20px !important; | |
| 948 | + padding-right:20px !important; | |
| 949 | +} | |
| 950 | +*#dm *.dmBody div.u_1121935101 | |
| 951 | +{ | |
| 952 | + height:600px !important; | |
| 953 | +} | |
| 954 | +@media (min-width:768px) and (max-width:1024px) {} | |
| 955 | +@media (min-width:1025px) {} | |
| 956 | +*#dm *.dmBody div.u_1221610193 | |
| 957 | +{ | |
| 958 | + height:20px !important; | |
| 959 | +} | |
| 960 | +*#dm *.dmBody div.u_1127078365 | |
| 961 | +{ | |
| 962 | + height:20px !important; | |
| 963 | +} | |
| 964 | +*#dm *.dmBody div.u_1288707829 | |
| 965 | +{ | |
| 966 | + height:20px !important; | |
| 967 | +} | |
| 968 | +*#dm *.dmBody div.u_1337411818 | |
| 969 | +{ | |
| 970 | + height:20px !important; | |
| 971 | +} | |
| 972 | +*#dm *.dmBody div.u_1486647722 | |
| 973 | +{ | |
| 974 | + float:none !important; | |
| 975 | + top:0px !important; | |
| 976 | + left:0 !important; | |
| 977 | + width:calc(100% - 0px) !important; | |
| 978 | + position:relative !important; | |
| 979 | + height:auto !important; | |
| 980 | + padding-top:2px !important; | |
| 981 | + padding-left:0px !important; | |
| 982 | + padding-bottom:2px !important; | |
| 983 | + min-height:auto !important; | |
| 984 | + margin-right:auto !important; | |
| 985 | + margin-left:auto !important; | |
| 986 | + max-width:100% !important; | |
| 987 | + margin-top:8px !important; | |
| 988 | + margin-bottom:8px !important; | |
| 989 | + padding-right:0px !important; | |
| 990 | + min-width:25px !important; | |
| 991 | +} | |
| 992 | +*#dm *.dmBody a.u_1756842165 | |
| 993 | +{ | |
| 994 | + float:none !important; | |
| 995 | + top:0px !important; | |
| 996 | + left:0px !important; | |
| 997 | + width:200px !important; | |
| 998 | + position:relative !important; | |
| 999 | + height:auto !important; | |
| 1000 | + padding-top:10px !important; | |
| 1001 | + padding-left:7px !important; | |
| 1002 | + padding-bottom:10px !important; | |
| 1003 | + min-height:40px !important; | |
| 1004 | + max-width:100% !important; | |
| 1005 | + padding-right:7px !important; | |
| 1006 | + min-width:0 !important; | |
| 1007 | + text-align:center !important; | |
| 1008 | + margin-right:866px !important; | |
| 1009 | + margin-left:0px !important; | |
| 1010 | + margin-top:20px !important; | |
| 1011 | + margin-bottom:10px !important; | |
| 1012 | +} | |
| 1013 | +*#dm *.dmBody a.u_1331251441 | |
| 1014 | +{ | |
| 1015 | + float:none !important; | |
| 1016 | + top:0px !important; | |
| 1017 | + left:0 !important; | |
| 1018 | + width:200px !important; | |
| 1019 | + position:relative !important; | |
| 1020 | + height:auto !important; | |
| 1021 | + padding-top:10px !important; | |
| 1022 | + padding-left:7px !important; | |
| 1023 | + padding-bottom:10px !important; | |
| 1024 | + min-height:40px !important; | |
| 1025 | + margin-right:auto !important; | |
| 1026 | + margin-left:auto !important; | |
| 1027 | + max-width:100% !important; | |
| 1028 | + margin-top:10px !important; | |
| 1029 | + margin-bottom:10px !important; | |
| 1030 | + padding-right:7px !important; | |
| 1031 | + min-width:0 !important; | |
| 1032 | + text-align:center !important; | |
| 1033 | +} | |
| 1034 | +*#dm *.dmBody a.u_1331251441 span.text | |
| 1035 | +{ | |
| 1036 | + font-size:18px !important; | |
| 1037 | +} | |
| 1038 | +*#dm *.dmBody div.u_1748061203 | |
| 1039 | +{ | |
| 1040 | + width:90px !important; | |
| 1041 | + height:90px !important; | |
| 1042 | +} | |
| 1043 | +*#dm *.dmBody div.u_1281514457 | |
| 1044 | +{ | |
| 1045 | + height:700px !important; | |
| 1046 | + width:1200px !important; | |
| 1047 | +} | |
| 1048 | +*#dm *.dmBody div.u_1004639188 | |
| 1049 | +{ | |
| 1050 | + float:none !important; | |
| 1051 | + top:0 !important; | |
| 1052 | + left:0 !important; | |
| 1053 | + width:auto !important; | |
| 1054 | + position:relative !important; | |
| 1055 | + height:auto !important; | |
| 1056 | + padding-top:90px !important; | |
| 1057 | + padding-left:40px !important; | |
| 1058 | + padding-bottom:90px !important; | |
| 1059 | + min-height:auto !important; | |
| 1060 | + max-width:100% !important; | |
| 1061 | + padding-right:40px !important; | |
| 1062 | + min-width:0 !important; | |
| 1063 | + text-align:start !important; | |
| 1064 | + background-position:50% 50% !important; | |
| 1065 | + background-attachment:initial !important; | |
| 1066 | + margin-left:0px !important; | |
| 1067 | + margin-top:0px !important; | |
| 1068 | + margin-bottom:0px !important; | |
| 1069 | + margin-right:0px !important; | |
| 1070 | +} | |
| 1071 | + | |
| 1072 | +</style> | |
| 1073 | + | |
| 1074 | +<!-- Flex Sections CSS --> | |
| 1075 | + | |
| 1076 | + | |
| 1077 | + | |
| 1078 | + | |
| 1079 | + | |
| 1080 | + | |
| 1081 | + | |
| 1082 | +<style id="globalFontSizeStyle" type="text/css"> | |
| 1083 | + .font-size-22, .size-22, .size-22 > font { font-size: 22px !important; }.font-size-16, .size-16, .size-16 > font { font-size: 16px !important; }.font-size-18, .size-18, .size-18 > font { font-size: 18px !important; }.font-size-28, .size-28, .size-28 > font { font-size: 28px !important; } | |
| 1084 | +</style> | |
| 1085 | +<style id="pageFontSizeStyle" type="text/css"> | |
| 1086 | +</style> | |
| 1087 | + | |
| 1088 | + | |
| 1089 | + | |
| 1090 | + | |
| 1091 | +<style id="hideAnimFix"> | |
| 1092 | + .dmDesktopBody:not(.editGrid) [data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) [data-anim-extended] { | |
| 1093 | + visibility: hidden; | |
| 1094 | + } | |
| 1095 | + | |
| 1096 | + .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-extended] { | |
| 1097 | + visibility: hidden !important; | |
| 1098 | + } | |
| 1099 | + | |
| 1100 | + #dmRoot:not(.editGrid) .flex-element [data-anim-extended] { | |
| 1101 | + visibility: hidden; | |
| 1102 | + } | |
| 1103 | + | |
| 1104 | +</style> | |
| 1105 | + | |
| 1106 | + | |
| 1107 | + | |
| 1108 | + | |
| 1109 | +<style id="fontFallbacks"> | |
| 1110 | + @font-face { | |
| 1111 | + font-family: "Roboto Fallback"; | |
| 1112 | + src: local('Arial'); | |
| 1113 | + ascent-override: 92.6709%; | |
| 1114 | + descent-override: 24.3871%; | |
| 1115 | + size-adjust: 100.1106%; | |
| 1116 | + line-gap-override: 0%; | |
| 1117 | + }@font-face { | |
| 1118 | + font-family: "Montserrat Fallback"; | |
| 1119 | + src: local('Arial'); | |
| 1120 | + ascent-override: 84.9466%; | |
| 1121 | + descent-override: 22.0264%; | |
| 1122 | + size-adjust: 113.954%; | |
| 1123 | + line-gap-override: 0%; | |
| 1124 | + }@font-face { | |
| 1125 | + font-family: "Lato Fallback"; | |
| 1126 | + src: local('Arial'); | |
| 1127 | + ascent-override: 101.3181%; | |
| 1128 | + descent-override: 21.865%; | |
| 1129 | + size-adjust: 97.4159%; | |
| 1130 | + line-gap-override: 0%; | |
| 1131 | + }@font-face { | |
| 1132 | + font-family: "Pacifico Fallback"; | |
| 1133 | + src: local('Arial'); | |
| 1134 | + ascent-override: 140.9687%; | |
| 1135 | + descent-override: 49.0091%; | |
| 1136 | + size-adjust: 92.4319%; | |
| 1137 | + line-gap-override: 0%; | |
| 1138 | + }@font-face { | |
| 1139 | + font-family: "Courier Prime Fallback"; | |
| 1140 | + src: local('Arial'); | |
| 1141 | + ascent-override: 57.5122%; | |
| 1142 | + descent-override: 25.1616%; | |
| 1143 | + size-adjust: 135.8407%; | |
| 1144 | + line-gap-override: 0%; | |
| 1145 | + }@font-face { | |
| 1146 | + font-family: "Comfortaa Fallback"; | |
| 1147 | + src: local('Arial'); | |
| 1148 | + ascent-override: 74.2135%; | |
| 1149 | + descent-override: 19.7117%; | |
| 1150 | + size-adjust: 118.7115%; | |
| 1151 | + line-gap-override: 0%; | |
| 1152 | + } | |
| 1153 | +</style> | |
| 1154 | + | |
| 1155 | + | |
| 1156 | +<!-- End render the required css and JS in the head section --> | |
| 1157 | + | |
| 1158 | + | |
| 1159 | + | |
| 1160 | + | |
| 1161 | + | |
| 1162 | + | |
| 1163 | +<meta property="og:type" content="website"> | |
| 1164 | +<meta property="og:url" content="https://www.girs.ca/location/scott/rue-jean-baptiste"> | |
| 1165 | + | |
| 1166 | + <title> | |
| 1167 | + Appartement 4 ½ à louer à Scott | Rue Jean-Baptiste | |
| 1168 | + </title> | |
| 1169 | + <meta name="description" content="Condo locatif 4 ½ à Scott sur la rue Jean-Baptiste. Balcon privé, climatisation, internet illimité et milieu de vie paisible."/> | |
| 1170 | + | |
| 1171 | + <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"/> | |
| 1172 | + | |
| 1173 | + <meta name="twitter:card" content="summary"/> | |
| 1174 | + <meta name="twitter:title" content="Appartement 4 ½ à louer à Scott | Rue Jean-Baptiste"/> | |
| 1175 | + <meta name="twitter:description" content="Condo locatif 4 ½ à Scott sur la rue Jean-Baptiste. Balcon privé, climatisation, internet illimité et milieu de vie paisible."/> | |
| 1176 | + <meta property="og:description" content="Condo locatif 4 ½ à Scott sur la rue Jean-Baptiste. Balcon privé, climatisation, internet illimité et milieu de vie paisible."/> | |
| 1177 | + <meta property="og:title" content="Appartement 4 ½ à louer à Scott | Rue Jean-Baptiste"/> | |
| 1178 | + | |
| 1179 | + | |
| 1180 | + | |
| 1181 | + | |
| 1182 | +<!-- SYS- VVNfRElSRUNUX1BST0RVQ1RJT04= --> | |
| 1183 | +</head> | |
| 1184 | + | |
| 1185 | + | |
| 1186 | + | |
| 1187 | + | |
| 1188 | + | |
| 1189 | + | |
| 1190 | + | |
| 1191 | + | |
| 1192 | + | |
| 1193 | + | |
| 1194 | + | |
| 1195 | + | |
| 1196 | + | |
| 1197 | + | |
| 1198 | + | |
| 1199 | + | |
| 1200 | + | |
| 1201 | + | |
| 1202 | + | |
| 1203 | + | |
| 1204 | + | |
| 1205 | +<body id="dmRoot" data-page-alias="location/scott/rue-jean-baptiste" class="dmRoot dmDesktopBody fix-mobile-scrolling addCanvasBorder dmResellerSite dmLargeBody responsiveTablet " | |
| 1206 | + style="padding:0;margin:0;" | |
| 1207 | + | |
| 1208 | + > | |
| 1209 | + | |
| 1210 | + | |
| 1211 | + | |
| 1212 | + | |
| 1213 | + | |
| 1214 | + | |
| 1215 | + | |
| 1216 | + | |
| 1217 | + | |
| 1218 | + | |
| 1219 | + | |
| 1220 | + | |
| 1221 | + | |
| 1222 | + | |
| 1223 | + | |
| 1224 | + | |
| 1225 | +<!-- ========= Site Content ========= --> | |
| 1226 | +<div id="dm" class='dmwr'> | |
| 1227 | + | |
| 1228 | + <div class="dm_wrapper standard-var5 widgetStyle-3 standard"> | |
| 1229 | + <div dmwrapped="true" id="1901957768" class="dm-home-page" themewaschanged="true"> <div dmtemplateid="Hamburger" data-responsive-name="ResponsiveDesktopTopTabletHamburger" class="runtime-module-container dm-bfs dm-layout-sec hasAnimations rows-1200 dmPageBody d-page-1716942098 inputs-css-clean dmFreeHeader" id="dm-outer-wrapper" data-page-class="1716942098" data-soch="true" data-background-parallax-selector=".dmHomeSection1, .dmSectionParallex"> <div id="dmStyle_outerContainer" class="dmOuter"> <div id="dmStyle_innerContainer" class="dmInner"> <div class="dmLayoutWrapper standard-var dmStandardDesktop"> <div id="site_content"> <div class="p_hfcontainer showOnMedium"> <div id="hamburger-drawer" class="hamburger-drawer layout-drawer" layout="SHARD2e9d510f4eb904e939c2be8efaf777e6e===header" data-origin="side"> <div class="u_1349597621 dmRespRow" style="text-align: center;" id="1349597621"> <div class="dmRespColsWrapper" id="1967821439"> <div class="u_1900606723 dmRespCol small-12 medium-12 large-12 empty-column" id="1900606723"></div> | |
| 1230 | +</div> | |
| 1231 | +</div> | |
| 1232 | + <div class="u_1827840868 dmRespRow middleDrawerRow" style="text-align: center;" id="1827840868"> <div class="dmRespColsWrapper" id="1229869460"> <div class="dmRespCol small-12 u_1670265283 medium-12 large-12" id="1670265283"> <div class="u_1454114998 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1454114998"> <a href="/" id="1950306454"><img src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/logo_RGB-1920w.png" alt="Un fond blanc avec quelques lignes dessus" id="1078371621" class="" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/logo_RGB.png" width="668" height="250" onerror="handleImageLoadError(this)"/></a> | |
| 1233 | +</div> | |
| 1234 | + <nav class="u_1277815350 effect-bottom main-navigation unifiednav dmLinksMenu" role="navigation" layout-main="vertical_nav_layout_2" layout-sub="" data-show-vertical-sub-items="HIDE" id="1277815350" dmle_extension="onelinksmenu" data-element-type="onelinksmenu" data-logo-src="" alt="" data-nav-structure="VERTICAL" wr="true" icon="true" surround="true" adwords="" navigation-id="unifiedNav"> <ul role="menubar" class="unifiednav__container unav-top " data-auto="navigation-pages"> <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="#" class="unifiednav__item unav-item unav-top-item dmUDNavigationItem_010101807118 unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="À louer" data-auto="page-text-style">À louer<span class="icon icon-angle-down"></span> | |
| 1235 | +</span> | |
| 1236 | +</a> | |
| 1237 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="0" data-auto="sub-pages"> <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/scott" class="unifiednav__item unav-item dmUDNavigationItem_010101940735 unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Scott, Chaudières-Appalaches" data-auto="page-text-style">Scott, Chaudières-Appalaches<span class="icon icon-angle-right"></span> | |
| 1238 | +</span> | |
| 1239 | +</a> | |
| 1240 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/scott/rue-amanda-gustave" class="unifiednav__item unav-item dmUDNavigationItem_010101104557 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Amanda-Gustave" data-auto="page-text-style">Rue Amanda-Gustave<span class="icon icon-angle-right"></span> | |
| 1241 | +</span> | |
| 1242 | +</a> | |
| 1243 | +</li> | |
| 1244 | + <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/scott/rue-jean-baptiste" class="unifiednav__item unav-item dmNavItemSelected dmUDNavigationItem_010101164518 " target="" data-target-page-alias="" aria-current="page" data-auto="selected-page"> <span class="nav-item-text " data-link-text="Rue Jean-Baptiste" data-auto="page-text-style">Rue Jean-Baptiste<span class="icon icon-angle-right"></span> | |
| 1245 | +</span> | |
| 1246 | +</a> | |
| 1247 | +</li> | |
| 1248 | + <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/scott/rue-marie-flore" class="unifiednav__item unav-item dmUDNavigationItem_010101665958 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Marie Flore" data-auto="page-text-style">Rue Marie Flore<span class="icon icon-angle-right"></span> | |
| 1249 | +</span> | |
| 1250 | +</a> | |
| 1251 | +</li> | |
| 1252 | +</ul> | |
| 1253 | +</li> | |
| 1254 | + <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/carleton-sur-mer" class="unifiednav__item unav-item dmUDNavigationItem_010101398645 unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Carleton-sur-Mer, Gaspésie" data-auto="page-text-style">Carleton-sur-Mer, Gaspésie<span class="icon icon-angle-right"></span> | |
| 1255 | +</span> | |
| 1256 | +</a> | |
| 1257 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/carleton-sur-mer/rue-comeau" class="unifiednav__item unav-item dmUDNavigationItem_01010162050 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Comeau" data-auto="page-text-style">Rue Comeau<span class="icon icon-angle-right"></span> | |
| 1258 | +</span> | |
| 1259 | +</a> | |
| 1260 | +</li> | |
| 1261 | +</ul> | |
| 1262 | +</li> | |
| 1263 | + <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/new-richmond" class="unifiednav__item unav-item dmUDNavigationItem_010101965827 unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="New Richmond, Gaspésie" data-auto="page-text-style">New Richmond, Gaspésie<span class="icon icon-angle-right"></span> | |
| 1264 | +</span> | |
| 1265 | +</a> | |
| 1266 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/new-richmond/avenue-erables" class="unifiednav__item unav-item dmUDNavigationItem_010101253082 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Avenue des Érables, Jumelé" data-auto="page-text-style">Avenue des Érables, Jumelé<span class="icon icon-angle-right"></span> | |
| 1267 | +</span> | |
| 1268 | +</a> | |
| 1269 | +</li> | |
| 1270 | + <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/new-richmond/avenue-erables-condo" class="unifiednav__item unav-item dmUDNavigationItem_010101963466 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Avenue des Érables, Condo" data-auto="page-text-style">Avenue des Érables, Condo<span class="icon icon-angle-right"></span> | |
| 1271 | +</span> | |
| 1272 | +</a> | |
| 1273 | +</li> | |
| 1274 | +</ul> | |
| 1275 | +</li> | |
| 1276 | + <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/guadeloupe" class="unifiednav__item unav-item dmUDNavigationItem_010101227040 unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="La Guadeloupe, Chaudières-Appalaches" data-auto="page-text-style">La Guadeloupe, Chaudières-Appalaches<span class="icon icon-angle-right"></span> | |
| 1277 | +</span> | |
| 1278 | +</a> | |
| 1279 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/guadeloupe/26-avenue" class="unifiednav__item unav-item dmUDNavigationItem_010101612522 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="26e avenue" data-auto="page-text-style">26e avenue<span class="icon icon-angle-right"></span> | |
| 1280 | +</span> | |
| 1281 | +</a> | |
| 1282 | +</li> | |
| 1283 | +</ul> | |
| 1284 | +</li> | |
| 1285 | + <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/saint-isidore" class="unifiednav__item unav-item dmUDNavigationItem_010101477779 unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Saint-Isidore, Chaudières-Appalaches" data-auto="page-text-style">Saint-Isidore, Chaudières-Appalaches<span class="icon icon-angle-right"></span> | |
| 1286 | +</span> | |
| 1287 | +</a> | |
| 1288 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/saint-isidore/900-rue-semences" class="unifiednav__item unav-item dmUDNavigationItem_010101216837 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="900 Rue des Semences" data-auto="page-text-style">900 Rue des Semences<span class="icon icon-angle-right"></span> | |
| 1289 | +</span> | |
| 1290 | +</a> | |
| 1291 | +</li> | |
| 1292 | +</ul> | |
| 1293 | +</li> | |
| 1294 | +</ul> | |
| 1295 | +</li> | |
| 1296 | + <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="#" class="unifiednav__item unav-item unav-top-item dmUDNavigationItem_010101502992 unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="À vendre" data-auto="page-text-style">À vendre<span class="icon icon-angle-down"></span> | |
| 1297 | +</span> | |
| 1298 | +</a> | |
| 1299 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="0" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/vente/quartier-marie-flore" class="unifiednav__item unav-item dmUDNavigationItem_010101496377 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Marie Flore, Scott" data-auto="page-text-style">Rue Marie Flore, Scott<span class="icon icon-angle-right"></span> | |
| 1300 | +</span> | |
| 1301 | +</a> | |
| 1302 | +</li> | |
| 1303 | +</ul> | |
| 1304 | +</li> | |
| 1305 | + <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="#" class="unifiednav__item unav-item unav-top-item dmUDNavigationItem_010101989750 unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Nos services" data-auto="page-text-style">Nos services<span class="icon icon-angle-down"></span> | |
| 1306 | +</span> | |
| 1307 | +</a> | |
| 1308 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="0" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/representation-au-tal" class="unifiednav__item unav-item dmUDNavigationItem_010101184129 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Représentation au TAL" data-auto="page-text-style">Représentation au TAL<span class="icon icon-angle-right"></span> | |
| 1309 | +</span> | |
| 1310 | +</a> | |
| 1311 | +</li> | |
| 1312 | +</ul> | |
| 1313 | +</li> | |
| 1314 | + <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/soumissions" class="unifiednav__item unav-item unav-top-item dmUDNavigationItem_01010193260 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Propriétaires" data-auto="page-text-style">Propriétaires<span class="icon icon-angle-down"></span> | |
| 1315 | +</span> | |
| 1316 | +</a> | |
| 1317 | +</li> | |
| 1318 | + <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/contact" class="unifiednav__item unav-item unav-top-item dmUDNavigationItem_010101387719 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Nous joindre" data-auto="page-text-style">Nous joindre<span class="icon icon-angle-down"></span> | |
| 1319 | +</span> | |
| 1320 | +</a> | |
| 1321 | +</li> | |
| 1322 | +</ul> | |
| 1323 | +</nav> | |
| 1324 | +</div> | |
| 1325 | +</div> | |
| 1326 | +</div> | |
| 1327 | + <div class="dmRespRow u_1374155140" style="text-align: center;" id="1374155140"> <div class="dmRespColsWrapper" id="1888831944"> <div class="u_1527325594 dmRespCol small-12 medium-12 large-12" id="1527325594"> <div class="u_1061664626 dmNewParagraph" id="1061664626" style="transition: none;"> <div style="text-align:left;"> <font style="color:rgb(255, 255, 255);"> <span style="text-decoration-line: underline;"></span> | |
| 1328 | +<b> <span style="text-decoration-line: underline;"></span> | |
| 1329 | +<span class="font-size-22 lh-1"> <span style="text-decoration-line: underline;"></span> | |
| 1330 | + <div style="text-align: left;"> <span style=""> <span style="text-decoration-line: underline;"></span> | |
| 1331 | +<span style=""> <span style="text-decoration-line: underline;"></span> | |
| 1332 | +<font style="color: rgb(255, 255, 255);"> <span style="text-decoration-line: underline;"></span> | |
| 1333 | +<span style="" class="font-size-22 lh-1"> <span style="text-decoration-line: underline;"></span> | |
| 1334 | +<b style=""> <span style="text-decoration-line: underline;"> <span style="font-weight: 700; font-size: 20px;">Nous contacter</span></span> | |
| 1335 | +</b> | |
| 1336 | +</span> | |
| 1337 | +</font> | |
| 1338 | +</span> | |
| 1339 | +</span> | |
| 1340 | +</div> | |
| 1341 | +</span> | |
| 1342 | +</b> | |
| 1343 | +</font> | |
| 1344 | +</div> | |
| 1345 | +</div> <div class="u_1228562990 align-center text-align-center dmSocialHub gapSpacing" id="1228562990" dmle_extension="social_hub" data-element-type="social_hub" wr="true" networks="" icon="true" surround="true" adwords=""> <div class="socialHubWrapper"> <div class="socialHubInnerDiv "> <a href="mailto:immeubles@gestionirs.com" dm_dont_rewrite_url="true" aria-label="email" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Email')"> <span class="dmSocialEmail dm-social-icons-email oneIcon socialHubIcon style8" aria-hidden="true" data-hover-effect=""></span> | |
| 1346 | +</a> | |
| 1347 | + <a href="https://www.facebook.com/gestionimmobiliererivesud/" target="_blank" dm_dont_rewrite_url="true" aria-label="facebook" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Facebook')"> <span class="dmSocialFacebook dm-social-icons-facebook oneIcon socialHubIcon style8" aria-hidden="true" data-hover-effect=""></span> | |
| 1348 | +</a> | |
| 1349 | +</div> | |
| 1350 | +</div> | |
| 1351 | +</div> | |
| 1352 | + <a class="u_1077136287 default align-center dmCall voipReplacement dmWidget dmNoMark dmWwr" href="tel:418-253-0064" contenteditable="false" onclick=";return dm_gaq_push_event('ClickToCall', 'Call',null,'6d6b044d', this);" id="1077136287" dmle_extension="clicktocall" data-element-type="clicktocall" data-buttonstyle="ROUND_SIDES" wr="true" data-display-type="block" icon="true" surround="true" description="Appelez-nous" adwords="" icon-name="icon-phone" phone="418-253-0064" text="" image=""> <span class="iconBg" aria-hidden="true"> <span class="icon hasFontIcon icon-phone"></span> | |
| 1353 | +</span> | |
| 1354 | + <span class="text">Appelez-nous</span> | |
| 1355 | +</a> | |
| 1356 | +</div> | |
| 1357 | +</div> | |
| 1358 | +</div> | |
| 1359 | +</div> | |
| 1360 | + <div class="layout-drawer-overlay" id="layout-drawer-overlay"></div> | |
| 1361 | +</div> | |
| 1362 | + <div class="site_content"> <div id="hamburger-header-container" class="showOnMedium hamburger-header-container p_hfcontainer"> <div id="hamburger-header" class="hamburger-header p_hfcontainer" layout="44dc38f951e9489490b055748e10ba9f===header"> <div class="u_1482985018 dmRespRow" style="text-align: center;" id="1482985018"> <div class="dmRespColsWrapper" id="1732104089"> <div class="dmRespCol small-12 medium-12 large-12 empty-column" id="1618954716"></div> | |
| 1363 | +</div> | |
| 1364 | +</div> | |
| 1365 | +</div> | |
| 1366 | +</div> | |
| 1367 | + <button class="showOnMedium layout-drawer-hamburger hamburger-on-header" id="layout-drawer-hamburger" aria-label="menu" aria-controls="hamburger-drawer" aria-expanded="false"> <span class="hamburger__slice"></span> | |
| 1368 | + <span class="hamburger__slice"></span> | |
| 1369 | + <span class="hamburger__slice"></span> | |
| 1370 | +</button> | |
| 1371 | + <div class="dmHeaderContainer fHeader d-header-wrapper showOnLarge"> <div id="hcontainer" class="u_hcontainer dmHeader p_hfcontainer" freeheader="true" headerlayout="695" layout="SHARD2f014fc9487554eb885e18628ee6309e9===header" mini-header-show-only-navigation-row="true" data-gradient-background="true"> <div dm:templateorder="85" class="dmHeaderResp dmHeaderStack noSwitch" id="1709005236"> <div class="dmRespRow u_1107041217" style="text-align: center;" id="1107041217"> <div class="dmRespColsWrapper" id="1457007737"> <div class="u_1544677535 dmRespCol small-12 large-8 medium-8" id="1544677535"> <span id="1046402752"></span> | |
| 1372 | + <div class="u_1263112584 align-center text-align-center dmSocialHub gapSpacing" id="1263112584" dmle_extension="social_hub" data-element-type="social_hub" wr="true" networks="" icon="true" surround="true" adwords=""> <div class="socialHubWrapper"> <div class="socialHubInnerDiv "> <a href="https://facebook.com/gestionimmobiliererivesud" target="_blank" dm_dont_rewrite_url="true" aria-label="facebook" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Facebook')"> <span class="dmSocialFacebook dm-social-icons-facebook oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> | |
| 1373 | +</a> | |
| 1374 | + <a href="http://linkedin.com/" target="_blank" dm_dont_rewrite_url="true" aria-label="linkedin" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Linkedin')"> <span class="dmSocialLinkedin icon-linkedin oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> | |
| 1375 | +</a> | |
| 1376 | + <a href="mailto:immeubles@gestionirs.com" dm_dont_rewrite_url="true" aria-label="email" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Email')"> <span class="dmSocialEmail dm-social-icons-email oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> | |
| 1377 | +</a> | |
| 1378 | +</div> | |
| 1379 | +</div> | |
| 1380 | +</div> | |
| 1381 | +</div> | |
| 1382 | + <div class="u_1980771558 dmRespCol small-12 large-2 medium-2" id="1980771558"> <span id="1064055669"></span> | |
| 1383 | + <div class="u_1078755193 graphicWidget" data-widget-type="graphic" id="1078755193" data-anim-desktop="none" data-element-type="graphic"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1444596002" class="svg u_1444596002" data-icon-custom="true"> <path d="m48.34 25.617c-0.85547 0-1.6094 0.62891-1.7383 1.5-0.14453 0.96094 0.51953 1.8555 1.4805 2l1.6445 0.24609 1.5742 0.33203v0.003907l1.5547 0.42969 1.5234 0.52344 1.4883 0.61328 1.4492 0.70703 1.4023 0.78906 1.3477 0.875 1.293 0.95312 1.2422 1.0352 1.168 1.1055 1.0938 1.168 1.0195 1.2305 0.94141 1.2891 0.86328 1.3398 0.78125 1.3945 0.69922 1.4414 0.60547 1.4766 0.51562 1.5117 0.42578 1.5391 0.33203 1.5625 0.24219 1.6328c0.13281 0.87109 0.88281 1.4961 1.7383 1.4961 0.085937 0 0.17578-0.003906 0.26172-0.019531 0.96094-0.14062 1.625-1.0391 1.4805-2l-0.25-1.6836-0.019531-0.10547-0.35547-1.6641-0.023437-0.10547-0.45312-1.6406-0.03125-0.10156-0.55078-1.6133-0.039063-0.097656-0.64844-1.5781-0.042969-0.097656-0.74219-1.5312-0.046875-0.097657-0.83594-1.4844-0.054688-0.089844-0.91797-1.4336-0.0625-0.089844-1.0078-1.3711-0.0625-0.085937-1.0898-1.3125-0.070312-0.078125-1.1641-1.2422-0.074219-0.078124-1.25-1.1797-0.078124-0.070312-1.3203-1.1016-0.082031-0.066406-1.3828-1.0195-0.085937-0.0625-1.4453-0.93359-0.089843-0.054688-1.4961-0.84375-0.09375-0.050781-1.5469-0.75-0.097657-0.042969-1.5859-0.65625-0.10156-0.039062-1.6211-0.55859-0.10547-0.03125-1.6523-0.45703-0.10547-0.027344-1.6797-0.35547-0.10547-0.019531-1.6992-0.25391c-0.089843-0.011719-0.17578-0.019531-0.26172-0.019531zm-2.2148-17.512c-0.85938 0-1.6133 0.62891-1.7422 1.5039-0.14453 0.96484 0.51953 1.8633 1.4844 2.0078l3 0.44922 2.9219 0.62109 2.8711 0.79297 2.8203 0.96875 2.7578 1.1406 2.6797 1.3047 2.5977 1.4648 2.5 1.6211 2.4023 1.7695 2.2891 1.9141 2.168 2.0469 2.0195 2.1602 1.8906 2.2773 1.7461 2.3867 1.6016 2.4883 1.4453 2.5781 1.2891 2.6641 1.125 2.7383 0.95703 2.7969 0.78516 2.8516 0.61328 2.8945 0.44531 2.9805c0.13281 0.875 0.88672 1.5039 1.7461 1.5039 0.085938 0 0.17578-0.007812 0.26172-0.019531 0.96484-0.14453 1.6328-1.043 1.4883-2.0078l-0.45312-3.0312-0.019532-0.10547-0.63672-3-0.023438-0.10156-0.81641-2.957-0.03125-0.10156-0.99219-2.8984-0.039062-0.10156-1.1641-2.832-0.042969-0.097656-1.3359-2.7617-0.050781-0.09375-1.4961-2.6719-0.054688-0.09375-1.6602-2.5781-0.058594-0.085937-1.8125-2.4727-0.0625-0.085937-1.957-2.3594-0.070312-0.078125-2.0977-2.2383-0.074218-0.074218-2.2461-2.125-0.078125-0.070313-2.3711-1.9844-0.085937-0.066406-2.4844-1.832-0.089844-0.0625-2.5938-1.6797-0.09375-0.054687-2.6875-1.5195-0.097656-0.046874-2.7773-1.3516-0.097656-0.046875-2.8555-1.1797-0.10156-0.039062-2.9219-1.0039-0.10156-0.03125-2.9805-0.82422-0.10156-0.023437-3.0234-0.64453-0.10547-0.015625-3.0547-0.45703c-0.089844-0.015625-0.17969-0.019531-0.26562-0.019531zm-23.773 5.7383h0.003907c0.43359 0 0.84766 0.17578 1.1562 0.48047l13.75 13.75c0.64062 0.64062 0.64062 1.6758 0 2.3125l-8.3047 8.3398c-1.0391 1.043-1.3203 2.6211-0.70312 3.957 2.8086 6.0703 6.8047 11.867 11.984 17.047l0.14453 0.14453c5.1953 5.1914 10.867 9.043 16.922 11.844 0.47266 0.21875 0.97656 0.32422 1.4727 0.32422 0.91406 0 1.8164-0.35547 2.4883-1.0312l8.3047-8.3125c0.30859-0.30859 0.72266-0.48047 1.1562-0.48047h0.007813c0.43359 0.003906 0.84766 0.17578 1.1523 0.48047l13.766 13.766c0.30078 0.30469 0.47266 0.71875 0.47266 1.1523 0 0.43359-0.17188 0.84766-0.48047 1.1562l-9.1016 9.0938c-0.29297 0.29297-0.69141 0.46484-1.1055 0.47656l-0.0625 0.003906c-0.51172 0.023438-0.99609 0.03125-1.5195 0.03125-13.234 0-29.203-7.3672-42.051-20.215-13.266-13.266-20.656-29.816-20.191-43.262l0.003907-0.27344c-0.011719-0.44531 0.15625-0.875 0.47656-1.1953l9.1016-9.1094c0.30859-0.30859 0.72266-0.48047 1.1562-0.48047zm0-3.5156h-0.003906c-1.3672 0-2.6719 0.54297-3.6406 1.5117l-9.0977 9.1055c-1.0156 1.0156-1.5391 2.3828-1.5078 3.7656v0.007812c-0.53516 14.703 7.4609 32.176 21.219 45.93 13.309 13.312 30.121 21.246 44.535 21.246 0.5625 0 1.1172-0.011719 1.6758-0.035156h0.011719c1.3086-0.039063 2.5586-0.57812 3.4844-1.5078l9.1016-9.0898c0.96875-0.96875 1.5117-2.2773 1.5117-3.6445 0-1.3672-0.54297-2.6797-1.5078-3.6445l-13.758-13.762c-0.96875-0.96484-2.2773-1.5078-3.6445-1.5078h-0.003907c-1.3672 0-2.6758 0.54297-3.6406 1.5117l-8.3047 8.3125c-5.6914-2.6328-11.02-6.2461-15.91-11.141l-0.14453-0.14453c-4.8906-4.8906-8.6484-10.344-11.281-16.035l8.3047-8.332c2.0117-2.0156 2.0078-5.2773-0.003906-7.2852l-13.75-13.754c-0.96484-0.96484-2.2773-1.5078-3.6445-1.5078z"></path> | |
| 1384 | +</svg> | |
| 1385 | +</div> | |
| 1386 | +</div> | |
| 1387 | + <div class="u_1016959372 dmRespCol small-12 large-2 medium-2" id="1016959372"> <span id="1845699766"></span> | |
| 1388 | + <div class="u_1992630769 dmNewParagraph" id="1992630769" style="transition-duration: 1s; transition-timing-function: ease-in-out; transition-delay: initial; transition-property: opacity;"><div style="text-align: left;"><span class="font-size-16 lh-1"><font style="color: rgb(255, 255, 255);">418-253-0064</font></span></div></div></div> | |
| 1389 | +</div> | |
| 1390 | +</div> | |
| 1391 | + <div class="dmRespRow dmDefaultListContentRow u_1281604458" style="text-align:center" id="1281604458"> <div class="dmRespColsWrapper" id="1473005015"> <div class="u_1047458781 small-12 dmRespCol large-2 medium-2" id="1047458781"> <div class="u_1678715847 imageWidget align-center" data-widget-type="image" id="1678715847" data-element-type="image"> <a href="/" id="1370508904" file="false"><img src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Logo+GIRS-1920w.png" id="1137409776" class="" width="1500" height="400" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/Logo+GIRS.png" alt="Logo blanc Gestion Immobilière de la Rive-Sud" onerror="handleImageLoadError(this)"/></a> | |
| 1392 | +</div> | |
| 1393 | +</div> | |
| 1394 | + <div class="u_1522799502 dmRespCol small-12 large-10 medium-10" id="1522799502"> <span id="1481163886"></span> | |
| 1395 | + <nav class="u_1645648010 effect-background main-navigation unifiednav dmLinksMenu" role="navigation" layout-main="horizontal_nav_layout_1" layout-sub="submenu_horizontal_1" data-show-vertical-sub-items="HOVER" id="1645648010" dmle_extension="onelinksmenu" data-element-type="onelinksmenu" wr="true" icon="true" surround="true" adwords="" navigation-id="unifiedNav"> <ul role="menubar" class="unifiednav__container unav-top " data-auto="navigation-pages"> <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="#" class="unifiednav__item unav-item unav-top-item dmUDNavigationItem_010101807118 unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="À louer" data-auto="page-text-style">À louer<span class="icon icon-angle-down"></span> | |
| 1396 | +</span> | |
| 1397 | +</a> | |
| 1398 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="0" data-auto="sub-pages"> <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/scott" class="unifiednav__item unav-item dmUDNavigationItem_010101940735 unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Scott, Chaudières-Appalaches" data-auto="page-text-style">Scott, Chaudières-Appalaches<span class="icon icon-angle-right"></span> | |
| 1399 | +</span> | |
| 1400 | +</a> | |
| 1401 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/scott/rue-amanda-gustave" class="unifiednav__item unav-item dmUDNavigationItem_010101104557 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Amanda-Gustave" data-auto="page-text-style">Rue Amanda-Gustave<span class="icon icon-angle-right"></span> | |
| 1402 | +</span> | |
| 1403 | +</a> | |
| 1404 | +</li> | |
| 1405 | + <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/scott/rue-jean-baptiste" class="unifiednav__item unav-item dmNavItemSelected dmUDNavigationItem_010101164518 " target="" data-target-page-alias="" aria-current="page" data-auto="selected-page"> <span class="nav-item-text " data-link-text="Rue Jean-Baptiste" data-auto="page-text-style">Rue Jean-Baptiste<span class="icon icon-angle-right"></span> | |
| 1406 | +</span> | |
| 1407 | +</a> | |
| 1408 | +</li> | |
| 1409 | + <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/scott/rue-marie-flore" class="unifiednav__item unav-item dmUDNavigationItem_010101665958 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Marie Flore" data-auto="page-text-style">Rue Marie Flore<span class="icon icon-angle-right"></span> | |
| 1410 | +</span> | |
| 1411 | +</a> | |
| 1412 | +</li> | |
| 1413 | +</ul> | |
| 1414 | +</li> | |
| 1415 | + <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/carleton-sur-mer" class="unifiednav__item unav-item dmUDNavigationItem_010101398645 unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Carleton-sur-Mer, Gaspésie" data-auto="page-text-style">Carleton-sur-Mer, Gaspésie<span class="icon icon-angle-right"></span> | |
| 1416 | +</span> | |
| 1417 | +</a> | |
| 1418 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/carleton-sur-mer/rue-comeau" class="unifiednav__item unav-item dmUDNavigationItem_01010162050 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Comeau" data-auto="page-text-style">Rue Comeau<span class="icon icon-angle-right"></span> | |
| 1419 | +</span> | |
| 1420 | +</a> | |
| 1421 | +</li> | |
| 1422 | +</ul> | |
| 1423 | +</li> | |
| 1424 | + <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/new-richmond" class="unifiednav__item unav-item dmUDNavigationItem_010101965827 unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="New Richmond, Gaspésie" data-auto="page-text-style">New Richmond, Gaspésie<span class="icon icon-angle-right"></span> | |
| 1425 | +</span> | |
| 1426 | +</a> | |
| 1427 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/new-richmond/avenue-erables" class="unifiednav__item unav-item dmUDNavigationItem_010101253082 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Avenue des Érables, Jumelé" data-auto="page-text-style">Avenue des Érables, Jumelé<span class="icon icon-angle-right"></span> | |
| 1428 | +</span> | |
| 1429 | +</a> | |
| 1430 | +</li> | |
| 1431 | + <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/new-richmond/avenue-erables-condo" class="unifiednav__item unav-item dmUDNavigationItem_010101963466 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Avenue des Érables, Condo" data-auto="page-text-style">Avenue des Érables, Condo<span class="icon icon-angle-right"></span> | |
| 1432 | +</span> | |
| 1433 | +</a> | |
| 1434 | +</li> | |
| 1435 | +</ul> | |
| 1436 | +</li> | |
| 1437 | + <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/guadeloupe" class="unifiednav__item unav-item dmUDNavigationItem_010101227040 unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="La Guadeloupe, Chaudières-Appalaches" data-auto="page-text-style">La Guadeloupe, Chaudières-Appalaches<span class="icon icon-angle-right"></span> | |
| 1438 | +</span> | |
| 1439 | +</a> | |
| 1440 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/guadeloupe/26-avenue" class="unifiednav__item unav-item dmUDNavigationItem_010101612522 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="26e avenue" data-auto="page-text-style">26e avenue<span class="icon icon-angle-right"></span> | |
| 1441 | +</span> | |
| 1442 | +</a> | |
| 1443 | +</li> | |
| 1444 | +</ul> | |
| 1445 | +</li> | |
| 1446 | + <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/saint-isidore" class="unifiednav__item unav-item dmUDNavigationItem_010101477779 unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Saint-Isidore, Chaudières-Appalaches" data-auto="page-text-style">Saint-Isidore, Chaudières-Appalaches<span class="icon icon-angle-right"></span> | |
| 1447 | +</span> | |
| 1448 | +</a> | |
| 1449 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/saint-isidore/900-rue-semences" class="unifiednav__item unav-item dmUDNavigationItem_010101216837 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="900 Rue des Semences" data-auto="page-text-style">900 Rue des Semences<span class="icon icon-angle-right"></span> | |
| 1450 | +</span> | |
| 1451 | +</a> | |
| 1452 | +</li> | |
| 1453 | +</ul> | |
| 1454 | +</li> | |
| 1455 | +</ul> | |
| 1456 | +</li> | |
| 1457 | + <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="#" class="unifiednav__item unav-item unav-top-item dmUDNavigationItem_010101502992 unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="À vendre" data-auto="page-text-style">À vendre<span class="icon icon-angle-down"></span> | |
| 1458 | +</span> | |
| 1459 | +</a> | |
| 1460 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="0" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/vente/quartier-marie-flore" class="unifiednav__item unav-item dmUDNavigationItem_010101496377 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Marie Flore, Scott" data-auto="page-text-style">Rue Marie Flore, Scott<span class="icon icon-angle-right"></span> | |
| 1461 | +</span> | |
| 1462 | +</a> | |
| 1463 | +</li> | |
| 1464 | +</ul> | |
| 1465 | +</li> | |
| 1466 | + <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="#" class="unifiednav__item unav-item unav-top-item dmUDNavigationItem_010101989750 unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Nos services" data-auto="page-text-style">Nos services<span class="icon icon-angle-down"></span> | |
| 1467 | +</span> | |
| 1468 | +</a> | |
| 1469 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="0" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/representation-au-tal" class="unifiednav__item unav-item dmUDNavigationItem_010101184129 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Représentation au TAL" data-auto="page-text-style">Représentation au TAL<span class="icon icon-angle-right"></span> | |
| 1470 | +</span> | |
| 1471 | +</a> | |
| 1472 | +</li> | |
| 1473 | +</ul> | |
| 1474 | +</li> | |
| 1475 | + <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/soumissions" class="unifiednav__item unav-item unav-top-item dmUDNavigationItem_01010193260 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Propriétaires" data-auto="page-text-style">Propriétaires<span class="icon icon-angle-down"></span> | |
| 1476 | +</span> | |
| 1477 | +</a> | |
| 1478 | +</li> | |
| 1479 | + <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/contact" class="unifiednav__item unav-item unav-top-item dmUDNavigationItem_010101387719 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Nous joindre" data-auto="page-text-style">Nous joindre<span class="icon icon-angle-down"></span> | |
| 1480 | +</span> | |
| 1481 | +</a> | |
| 1482 | +</li> | |
| 1483 | +</ul> | |
| 1484 | +</nav> | |
| 1485 | +</div> | |
| 1486 | +</div> | |
| 1487 | +</div> | |
| 1488 | +</div> | |
| 1489 | +</div> | |
| 1490 | +</div> | |
| 1491 | + <div dmwrapped="true" id="dmFirstContainer" class="dmBody u_dmStyle_template_location/scott/rue-jean-baptiste dm-home-page" themewaschanged="true"> <div id="allWrapper" class="allWrapper"><!-- navigation placeholders --> <div id="dm_content" class="dmContent" role="main"> <div dm:templateorder="170" class="dmHomeRespTmpl mainBorder dmRespRowsWrapper dmFullRowRespTmpl" id="1716942098"> <div class="dmRespRow" id="1520274457"> <div class="dmRespColsWrapper" id="1188095855"> <div class="dmRespCol large-12 medium-12 small-12" id="1983990229"> <div data-element-type="spacer" class="dmSpacer u_1867569646" id="1867569646"></div> | |
| 1492 | +</div> | |
| 1493 | +</div> | |
| 1494 | +</div> | |
| 1495 | + <div class="dmRespRow" id="1079223264"> <div class="dmRespColsWrapper" id="1608791626"> <div class="dmRespCol small-12 medium-12 large-12" id="1983508641"> <div class="imageWidget align-center u_1188563749" data-element-type="image" data-widget-type="image" id="1188563749"><img src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Place+%C3%89vo+phase+3+-+6+logements-1920w.jpg" alt="Immeuble moderne de trois étages avec balcons et escaliers extérieurs." id="1697979973" class="" width="1920" height="1080" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/Place+%C3%89vo+phase+3+-+6+logements.jpg" onerror="handleImageLoadError(this)"/></div> | |
| 1496 | +</div> | |
| 1497 | +</div> | |
| 1498 | +</div> | |
| 1499 | + <div class="dmRespRow" id="1958286401"> <div class="dmRespColsWrapper" id="1911295334"> <div class="dmRespCol large-12 medium-12 small-12" id="1257255836"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3 u_1748061203" data-element-type="graphic" data-widget-type="graphic" id="1748061203"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1383326881" class="svg u_1383326881" data-icon-custom="true"> <title id="1316450043">Une silhouette noire et blanche d'une ville avec trois bâtiments et un arbre.</title> | |
| 1500 | + <path d="m89.387 71.629c-0.29688-0.35938-0.41406-0.78906-0.5-1.1094-0.035157-0.13281 0.10547-0.21875 0.023437-0.22266-0.86328-0.0625-0.82812-0.625-0.80469-0.98828 0-0.011719 0.03125-0.003906 0.058593 0.003906 0.039063 0.011719 0.078126 0.027344 0.039063 0.003906l-0.007813-0.003906c-0.54687-0.32422-0.57031-0.55859-0.58984-0.73828-0.003907-0.03125-0.007813-0.054688-0.26562-0.125-0.09375-0.027344-0.16797-0.10938-0.17969-0.21094-0.03125-0.29688-0.21875-0.3125-0.33984-0.32031-0.074218-0.003907-0.13672-0.011719-0.19922-0.035157-0.070313-0.023437-0.12891-0.082031-0.15234-0.16016s0-0.10156-0.011719-0.097656c-0.023437 0.007812-0.058593 0.027344-0.089843 0.042969-0.085938 0.046875-0.16016 0.085937-0.26172 0.078125-0.19531-0.015625-0.30859-0.12891-0.28125-0.46484 0-0.023438-0.023438 0.035156-0.054688 0.003906-0.035156-0.039062-0.082031-0.074218-0.12891-0.097656-0.027344-0.015625-0.054687-0.023438-0.078125-0.015625-0.027344 0.007813-0.058594 0.03125-0.09375 0.082031-0.40625 0.55078-0.78125 0.35938-1.1719 0.16406-0.15625-0.078125-0.3125-0.15625-0.42578-0.13281-0.68359 0.15234-0.91797-0.085937-1.0898-0.26562-0.058594-0.0625-0.09375-0.097656-0.64062 0.45312-0.59766 0.60156-0.91406 0.37109-1.207 0.16016-0.050782-0.035156-0.097656-0.070312-0.13281-0.085937-0.14062 0.085937-0.15234 0.15625-0.16797 0.22656-0.027343 0.12891-0.050781 0.25781-0.21094 0.40625-0.21875 0.20312-0.46875 0.34375-0.69531 0.41797-0.30859 0.10547-0.59766 0.089844-0.74609-0.027344l0.003906 0.003907 0.003906 0.003906c-0.046875 0.019531-0.097656 0.0625-0.14844 0.125-0.0625 0.070313-0.11719 0.16016-0.16406 0.25391-0.09375 0.19531-0.13281 0.41016-0.050781 0.52344 0.44141 0.58984 0.44531 0.79688 0.26172 0.9375-0.070313 0.054687-0.13672 0.0625-0.21094 0.074219-0.019531 0.003906-0.046875 0.007812-0.046875 0.046874-0.003906 0.11719-0.035156 0.35938-0.066406 0.57031-0.019531 0.15625-0.042969 0.27344-0.042969 0.28125 0.14062 0.92188-0.003906 1.1133-0.13281 1.2891-0.070313 0.09375-0.13281 0.17578 0.027343 0.89844 0.10938 0.49609 0.21094 0.53125 0.27344 0.54297h0.007812c0.16406 0.027344 0.27344 0.046875 0.28906 0.28906 0.03125 0.42188 0.24219 0.46484 0.39062 0.49219 0.16406 0.03125 0.30078 0.058594 0.38281 0.22266 0.20313 0.39062 0.28906 0.34375 0.33594 0.32031 0.046875-0.027343 0.089844-0.046874 0.15234-0.054687h0.011718c0.17969-0.011719 0.28516 0.058594 0.30078 0.30078 0.003906 0.039063 0.019531 0.066406 0.046875 0.089844 0.050781 0.039062 0.12891 0.066406 0.22656 0.082031 0.11719 0.019531 0.25 0.023438 0.39453 0.011719 0.28906-0.019531 0.59375-0.089844 0.79688-0.17188l-0.011719-0.007813c-0.19141-0.125-0.41797-0.27344-0.71094-0.59766-0.089843-0.097656-0.085937-0.25391 0.015625-0.34375 0.097656-0.089844 0.25391-0.085937 0.34375 0.015625 0.25781 0.28125 0.45312 0.41016 0.62109 0.51953 0.41406 0.27344 0.67578 0.44531 1.0938 1.8242 0.41016 1.3398 0.48828 2.9844 0.41797 4.582-0.074219 1.5938-0.29688 3.1445-0.5 4.3125-0.023438 0.14453-0.0625 0.25781-0.089844 0.39063h-7.1328v-53.824l-19.984-4.582v58.41h-0.97656v-57.938l-4.918 4.3594c-0.019531 0.019531-0.039062 0.039062-0.0625 0.054687l-4.2695 3.7852-0.042969 15.039 6.332 0.81641c0.24609 0.03125 0.42578 0.24219 0.42578 0.48438v33.395h-0.97656v-32.969l-6.332-0.82031-14.688-1.8984c-0.03125 0-0.058594-0.003907-0.085937-0.011719l-6.2656-0.80859c-0.03125 0-0.058593-0.003906-0.085937-0.011719l-2.3867-0.30859v36.824h-0.97656v-36.539l-9.1992 5.2461v31.293h-0.4375c-0.35156 0-0.64062 0.28516-0.64062 0.64062 0 0.35156 0.28516 0.64062 0.64062 0.64062h74.609c0.35156 0 0.64062-0.28516 0.64062-0.64062 0-0.35156-0.28516-0.64062-0.64062-0.64062h-0.90625c-0.12891-1.1875-0.14844-2.0391-0.09375-2.6641 0.058594-0.65625 0.19922-1.0859 0.39062-1.4023 0.12109-0.20703 0.30469-0.42969 0.49609-0.67188 0.32031-0.39844 0.67969-0.84766 0.78125-1.2227-0.17188 0.17969-0.38672 0.35156-0.60156 0.52344-0.30078 0.24219-0.60156 0.48438-0.71875 0.69922-0.039062 0.085938-0.125 0.14844-0.22266 0.14844-0.13672 0-0.24609-0.10938-0.24609-0.24609 0-0.71875-0.023437-1.3398-0.046875-1.9688-0.023437-0.67188-0.050781-1.3516-0.050781-2.0898 0-0.6875 0.39453-1.0508 0.82812-1.4531 0.44531-0.41016 0.9375-0.86719 0.94922-1.8281 0-0.13281 0.11328-0.24219 0.24609-0.24219 0.13281 0 0.24219 0.11328 0.24219 0.24609-0.007813 0.64844-0.1875 1.0977-0.4375 1.4531 0.79297 0.40625 0.99609 0.078125 1.1406-0.15625 0.078125-0.12891 0.14453-0.23828 0.26172-0.30859 0.26953-0.16016 0.26953-0.40625 0.26953-0.57813 0-0.28125 0-0.48828 0.33203-0.53906 0.52734-0.078125 0.54688-0.21875 0.57422-0.42578 0.03125-0.24219 0.070312-0.53906 0.35547-0.89062 0.11328-0.14062 0.17188-0.37109 0.18359-0.59766 0.011719-0.23828-0.023437-0.46094-0.10547-0.55859zm-22.07 9.2695 2.3555 0.14453c0.26953 0 0.48828 0.21875 0.48828 0.48828v4.8672h-2.8438v-5.5039zm0.48438-43.238c0.035157 0 0.070313 0.003906 0.10547 0.011719l3.2617 0.44922c0.24609 0.03125 0.42188 0.24219 0.42188 0.48438v3.3047c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.035156 0-0.070312-0.003907-0.10547-0.011719l-3.2617-0.44922c-0.24609-0.03125-0.42188-0.24219-0.42188-0.48438v-3.3047c0-0.26953 0.21875-0.48828 0.48828-0.48828zm0 6.6055c0.035157 0 0.070313 0.003906 0.10547 0.011719l3.2617 0.44922c0.24609 0.03125 0.42188 0.24219 0.42188 0.48438v3.3047c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.035156 0-0.070312-0.003906-0.10547-0.011718l-3.2617-0.44922c-0.24609-0.03125-0.42188-0.24219-0.42188-0.48438v-3.3047c0-0.26953 0.21875-0.48828 0.48828-0.48828zm0 6.6055c0.035157 0 0.070313 0.003906 0.10547 0.011718l3.2617 0.44922c0.24609 0.03125 0.42188 0.24219 0.42188 0.48438v3.3047c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.035156 0-0.070312-0.003906-0.10547-0.011719l-3.2617-0.44922c-0.24609-0.03125-0.42188-0.24219-0.42188-0.48438v-3.3047c0-0.26953 0.21875-0.48828 0.48828-0.48828zm-6.6055-14.117c0.035157 0 0.070313 0.003906 0.10547 0.011719l3.2617 0.44922c0.24609 0.03125 0.42188 0.24219 0.42188 0.48438v3.3008c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.035156 0-0.070313-0.003906-0.10547-0.011719l-3.2617-0.44922c-0.24609-0.03125-0.42188-0.24219-0.42188-0.48438v-3.3047c0-0.26953 0.21875-0.48828 0.48828-0.48828zm0 6.6055c0.035157 0 0.070313 0.003906 0.10547 0.011719l3.2617 0.44922c0.24609 0.03125 0.42188 0.24219 0.42188 0.48438v3.3008c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.035156 0-0.070313-0.003906-0.10547-0.011719l-3.2617-0.44922c-0.24609-0.03125-0.42188-0.24219-0.42188-0.48437v-3.3047c0-0.26953 0.21875-0.48828 0.48828-0.48828zm0 6.6055c0.035157 0 0.070313 0.003906 0.10547 0.011718l3.2617 0.44922c0.24609 0.03125 0.42188 0.24219 0.42188 0.48438v3.3008c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.035156 0-0.070313-0.003907-0.10547-0.011719l-3.2617-0.44922c-0.24609-0.03125-0.42188-0.24219-0.42188-0.48438v-3.3047c0-0.26953 0.21875-0.48828 0.48828-0.48828zm2 31.199v-0.027343c0.015626-0.26953 0.24609-0.47266 0.51563-0.45703l2.332 0.14453c0 0.011719-0.007813 0.023437-0.007813 0.039062v5.543h-2.8438v-5.2383zm-23.695-0.42578 3.3594 0.16016h0.015625c0.26953 0 0.48828 0.21875 0.48828 0.48828v5.0195h-3.8633zm3.2031-21.883c0.03125 0 0.058594 0.003906 0.085937 0.007812l3.2578 0.30078c0.25391 0.023438 0.44141 0.23438 0.44531 0.48438v3.3047c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.03125 0-0.058594-0.003906-0.085937-0.007812l-3.2578-0.30078c-0.25391-0.023437-0.44141-0.23437-0.44531-0.48437v-3.3047c0-0.26953 0.21875-0.48828 0.48828-0.48828zm0 6.6055c0.03125 0 0.058594 0.003906 0.085937 0.007812l3.2578 0.30078c0.25391 0.023438 0.44141 0.23438 0.44531 0.48438v3.3008c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.03125 0-0.058594-0.003907-0.085937-0.007813l-3.2578-0.30078c-0.25391-0.023437-0.44141-0.23438-0.44531-0.48438v-3.3008c0-0.26953 0.21875-0.48828 0.48828-0.48828zm-6.6055-7.2109c0.03125 0 0.058594 0.003906 0.085938 0.007812l3.2578 0.30078c0.25391 0.023437 0.44141 0.23438 0.44531 0.48438v3.3008c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.03125 0-0.058594-0.003906-0.085938-0.007812l-3.2578-0.30078c-0.25391-0.023438-0.44141-0.23438-0.44531-0.48438v-3.3047c0-0.26953 0.21875-0.48828 0.48828-0.48828zm0 6.6055c0.03125 0 0.058594 0.003906 0.085938 0.007812l3.2578 0.30078c0.25391 0.023438 0.44141 0.23438 0.44531 0.48438v3.3047c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.03125 0-0.058594-0.003906-0.085938-0.007812l-3.2578-0.30078c-0.25391-0.023437-0.44141-0.23437-0.44531-0.48437v-3.3047c0-0.26953 0.21875-0.48828 0.48828-0.48828zm-6.6055-7.2109c0.03125 0 0.058593 0.003907 0.085937 0.007813l3.2578 0.30078c0.25391 0.023437 0.44141 0.23438 0.44531 0.48438v3.3047c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.03125 0-0.058594-0.003907-0.085938-0.007813l-3.2578-0.30078c-0.25391-0.023437-0.44141-0.23438-0.44531-0.48438v-3.3047c0-0.26953 0.21875-0.48828 0.48828-0.48828zm0 6.6055c0.03125 0 0.058593 0.003906 0.085937 0.007812l3.2578 0.30078c0.25391 0.023437 0.44141 0.23438 0.44531 0.48438v3.3008c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.03125 0-0.058594-0.003906-0.085938-0.007812l-3.2578-0.30078c-0.25391-0.023438-0.44141-0.23438-0.44531-0.48438v-3.3047c0-0.26953 0.21875-0.48828 0.48828-0.48828zm4.8945 16.758v-0.023437c0.011719-0.26953 0.24219-0.47656 0.50781-0.46484l3.3281 0.15625c0 0.011719-0.007812 0.019531-0.007812 0.03125v5.6953h-3.8359v-5.3945zm49.301-4.6211c-0.12891 0.039062-0.26562-0.035157-0.30469-0.16406-0.11328-0.375-0.56641-0.73828-0.97266-1.0625-0.24609-0.19531-0.47656-0.38281-0.63672-0.57031-0.085938-0.10156-0.074219-0.25781 0.027343-0.34375 0.10156-0.085938 0.25781-0.074219 0.34375 0.027344 0.12891 0.15234 0.33984 0.32031 0.56641 0.50391 0.25391 0.20312 0.51953 0.41406 0.73828 0.65234 0.03125-0.16016 0.0625-0.32422 0.097656-0.48828 0.089844-0.41797 0.17969-0.84375 0.17969-1.2031 0-0.13672 0.10938-0.24609 0.24609-0.24609 0.13672 0 0.24609 0.10937 0.24609 0.24609 0 0.40625-0.097656 0.85938-0.19141 1.3008-0.085938 0.39844-0.16797 0.79297-0.16797 1.1094 0 0.10547-0.066406 0.20312-0.17188 0.23437zm2.2656-1.4414-0.007813 0.019532c-0.28906 0.58984-0.66016 0.89844-0.95312 1.0391-0.12109 0.058594-0.23047 0.089844-0.32031 0.10156-0.13281 0.015625-0.24609-0.011719-0.31641-0.066407-0.0625-0.046874-0.097657-0.11328-0.10547-0.19141-0.050781-0.47266 0.003906-1.0039 0.046875-1.4609 0.023437-0.24609 0.046875-0.46875 0.046875-0.64062 0-0.13672 0.10938-0.24609 0.24609-0.24609 0.13672 0 0.24609 0.10938 0.24609 0.24609 0 0.18359-0.023438 0.42188-0.050782 0.69141-0.035156 0.36328-0.078125 0.78125-0.0625 1.1602 0.019532-0.007812 0.039063-0.015625 0.058594-0.027344 0.21484-0.10156 0.49609-0.34375 0.72656-0.8125l0.007813-0.019531c0.046875-0.097656 0.19141-0.39844 0.22656-0.65234 0.019531-0.13281 0.14062-0.22656 0.27344-0.20703 0.13281 0.019532 0.22656 0.14062 0.20703 0.27344-0.046875 0.32422-0.21875 0.6875-0.27344 0.80078zm-7.3438-4.9336c0 0.003906-0.003906 0.007812-0.011719 0.015625-0.023437 0.015625 0.003906-0.003906 0.011719-0.015625zm-33.719-33.566c0-0.14453 0.0625-0.27344 0.16406-0.36328l4.2969-3.8125v-16.168l-18.258-3.7812v37.48l13.754 1.7773zm-2.043-16.672c0.027344 0 0.054688 0.003906 0.082032 0.007812l2.9414 0.35938c0.25 0.03125 0.42969 0.24219 0.42969 0.48438v2.9648c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.027344 0-0.054688-0.003906-0.082031-0.007813l-2.9414-0.35937c-0.25-0.03125-0.42969-0.24219-0.42969-0.48438v-2.9648c0-0.26953 0.21875-0.48828 0.48828-0.48828zm-2.9648 9.5078c-0.027343 0-0.054687-0.003906-0.082031-0.007812l-2.9414-0.35938c-0.25-0.027343-0.42969-0.24219-0.42969-0.48437v-2.9648c0-0.26953 0.21875-0.48828 0.48828-0.48828 0.027343 0 0.054687 0.003907 0.082031 0.007813l2.9414 0.35938c0.25 0.03125 0.42969 0.24219 0.42969 0.48438v2.9648c0 0.26953-0.21875 0.48828-0.48828 0.48828zm0-5.9297c-0.027343 0-0.054687-0.003906-0.082031-0.007812l-2.9414-0.35938c-0.25-0.03125-0.42969-0.24219-0.42969-0.48438v-2.9648c0-0.26953 0.21875-0.48828 0.48828-0.48828 0.027343 0 0.054687 0.003906 0.082031 0.007813l2.9414 0.35937c0.25 0.03125 0.42969 0.24219 0.42969 0.48438v2.9648c0 0.26953-0.21875 0.48828-0.48828 0.48828zm2.4766 5.8008v-2.9648c0-0.26953 0.21875-0.48828 0.48828-0.48828 0.027344 0 0.054688 0.003906 0.082032 0.007812l2.9414 0.35938c0.25 0.03125 0.42969 0.24219 0.42969 0.48438v2.9648c0 0.26953-0.21875 0.48828-0.48828 0.48828-0.027344 0-0.054688-0.003906-0.082031-0.007812l-2.9414-0.35938c-0.25-0.03125-0.42969-0.24219-0.42969-0.48438zm-12.242 20.523-5.375-0.69531v-31.242l5.375-4.9102z"></path> | |
| 1501 | +</svg> | |
| 1502 | +</div> | |
| 1503 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1844873187" style="transition: opacity 1s ease-in-out;"> <h1 class="text-align-center"><span style="display: unset; color: var(--color_2);">Rue Jean-Baptiste</span></h1> | |
| 1504 | +</div> | |
| 1505 | +</div> | |
| 1506 | +</div> | |
| 1507 | +</div> | |
| 1508 | + <div class="dmRespRow" id="1299034309"> <div class="dmRespColsWrapper" id="1051852715"> <div class="dmRespCol large-6 medium-6 small-12" id="1199127370"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1692095137" style="transition: opacity 1s ease-in-out;"><p><span style="display: initial;">Situés sur la rue Jean-Baptiste à Scott, au cœur de la région de Chaudière-Appalaches, ces condos locatifs modernes vous offrent un cadre de vie idéal, alliant tranquillité, accessibilité et qualité de vie. Pensés pour répondre aux besoins des locataires d’aujourd’hui, ces logements spacieux marient parfaitement design contemporain et confort au quotidien.</span></p><p><span style="display: initial;"><br/></span></p><p><span class="" style="display: initial;"><span style="display: initial;">Nos</span> | |
| 1509 | +</span><strong style="display: initial; font-weight: bold;">unités 4 ½</strong><span style="display: initial;"> se distinguent par leur luminosité abondante, leur insonorisation supérieure, leur balcon privé et leur système de climatisation mural, assurant un bien-être optimal en toute saison. Chaque détail est conçu pour offrir une expérience résidentielle agréable, fonctionnelle et durable.</span></p></div> | |
| 1510 | +</div> | |
| 1511 | + <div class="dmRespCol large-6 medium-6 small-12" id="1839002717"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1894702091" style="transition: opacity 1s ease-in-out;"><p><span style="display: initial;">Ces condos bénéficient d’un emplacement stratégique, à proximité immédiate des écoles, CPE, commerces, restaurants et services essentiels. Que vous soyez une personne seule, un couple ou une famille, vous apprécierez la simplicité d’un quartier paisible, sécuritaire et bien desservi, à deux pas de tout.</span></p><p><br/></p><p><span style="display: initial;">En choisissant un condo locatif sur la rue Jean-Baptiste, vous faites le choix d’un mode de vie équilibré, où la nature, la tranquillité et la proximité des grands centres se rencontrent harmonieusement. Profitez du meilleur de la vie résidentielle à Scott, avec Gestion Immobilière Sud.</span></p></div> | |
| 1512 | +</div> | |
| 1513 | +</div> | |
| 1514 | +</div> | |
| 1515 | + <div class="dmRespRow" id="1354768935"> <div class="dmRespColsWrapper" id="1160499125"> <div class="dmRespCol large-12 medium-12 small-12" id="1043419536"> <div data-element-type="spacer" class="dmSpacer u_1221610193" id="1221610193"></div> | |
| 1516 | +</div> | |
| 1517 | +</div> | |
| 1518 | +</div> | |
| 1519 | + <div class="dmRespRow u_1452815793" id="1452815793"> <div class="dmRespColsWrapper" id="1032101925"> <div class="u_1827808816 dmRespCol small-12 large-4 medium-4" id="1827808816"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1794481497"> <h2><span style="display: initial;">ESPACE DE VIE</span></h2> | |
| 1520 | +</div> | |
| 1521 | +</div> | |
| 1522 | + <div class="u_1871439213 dmRespCol small-12 large-8 medium-8" id="1871439213"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1047322935"><p><span style="display: initial;">Votre condo locatif vous propose un milieu de vie unique, conçu pour combiner confort, tranquillité et style contemporain. Vous y trouverez des détails bien pensés qui rehaussent votre quotidien, comme une thermopompe pour une température idéale en toute saison, une excellente insonorisation pour un calme absolu, et un balcon privé où vous pourrez relaxer en toute intimité.</span></p><p><span style="display: initial;"><span class="ql-cursor"></span></span></p><p><span style="display: initial;">Chaque logement a été aménagé pour offrir un espace de vie fonctionnel, lumineux et aéré, où chaque pièce contribue à créer un environnement chaleureux et agréable. Jour après jour, vous apprécierez le soin apporté à chaque détail pour que vous vous sentiez réellement chez vous.</span></p></div> | |
| 1523 | +</div> | |
| 1524 | +</div> | |
| 1525 | +</div> | |
| 1526 | + <div class="dmRespRow u_1840143137" id="1840143137"> <div class="dmRespColsWrapper" id="1176239290"> <div class="dmRespCol small-12 medium-4 large-4" id="1239952657"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3" data-element-type="graphic" data-widget-type="graphic" id="1698806142"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1701483377" class="svg u_1701483377" data-icon-custom="true"> <title id="1743230754">Un dessin en noir et blanc d'un balcon avec deux fenêtres et une balustrade.</title> | |
| 1527 | + <path d="m90.625 27.188v1.875c0 0.57422-0.46484 1.043-1.043 1.043-0.57422 0-1.043-0.46484-1.043-1.043v-1.875c0-0.57422 0.46484-1.043 1.043-1.043 0.57422 0 1.043 0.46484 1.043 1.043zm-1.043 36.355v22.918h1.043c1.1484 0 2.082 0.93359 2.082 2.082v4.168c0 1.1484-0.93359 2.082-2.082 2.082h-81.25c-1.1484 0-2.082-0.93359-2.082-2.082v-4.168c0-1.1484 0.93359-2.082 2.082-2.082v-22.918c-1.1484 0-2.082-0.93359-2.082-2.082v-4.168c0-1.1484 0.93359-2.082 2.082-2.082v-47.918c0-1.1484 0.93359-2.082 2.082-2.082h77.082c1.1484 0 2.082 0.93359 2.082 2.082v16.145c0 0.57422-0.46484 1.043-1.043 1.043-0.57422 0-1.043-0.46484-1.043-1.043l0.007813-16.145h-77.086v47.918h6.25v-41.668c0-1.1484 0.93359-2.082 2.082-2.082h60.418c1.1484 0 2.082 0.93359 2.082 2.082v41.668h6.25v-22.395c0-0.57422 0.46484-1.043 1.043-1.043 0.57422 0 1.043 0.46484 1.043 1.043v22.395c1.1484 0 2.082 0.93359 2.082 2.082v4.168c0 1.1484-0.93359 2.082-2.082 2.082zm-69.789-8.3359h4.168l-0.003907-37.5c0-0.57422 0.46484-1.043 1.043-1.043h50c0.57422 0 1.043 0.46484 1.043 1.043v37.5h4.168l-0.003907-41.664h-60.414v41.668zm54.164 0v-36.457h-19.793v36.457zm-21.875 0v-36.457h-4.168v36.457zm-6.25 0v-36.457h-19.793v36.457zm-36.457 6.25h81.25v-4.168l-81.25 0.003907v4.168zm71.875 25v-22.918h-8.332v22.918zm-16.668 0v-22.918h-10.418v22.918zm-18.75 0v-22.918h-10.418v22.918zm-18.75 0v-22.918h-9.375v22.918zm2.0859 0h4.168v-22.918h-4.168zm18.75 0h4.168v-22.918h-4.168zm18.75 0h4.168v-22.918h-4.168zm-55.211 0h4.168v-22.918h-4.168zm79.168 2.0859h-81.25v4.168h81.25zm-3.125-25h-4.168v22.918h4.168zm-23.727-30.516c-0.48438-0.3125-1.1289-0.17188-1.4414 0.3125l-3.9766 6.1992c-0.30859 0.48438-0.16797 1.1289 0.31641 1.4375 0.17578 0.11328 0.36719 0.16406 0.5625 0.16406 0.34375 0 0.67969-0.16797 0.87891-0.48047l3.9766-6.1992c0.30859-0.48438 0.16797-1.1289-0.31641-1.4375zm5.375 1.2656c-0.48438-0.3125-1.1289-0.17188-1.4414 0.3125l-5.9688 9.2969c-0.30859 0.48438-0.16797 1.1289 0.31641 1.4375 0.17578 0.11328 0.36719 0.16406 0.5625 0.16406 0.34375 0 0.67969-0.16797 0.87891-0.48047l5.9688-9.2969c0.30859-0.48437 0.16797-1.1289-0.31641-1.4375zm-33.5-1.2656c-0.48438-0.3125-1.1289-0.17188-1.4375 0.3125l-3.9805 6.1992c-0.30859 0.48438-0.17188 1.1289 0.3125 1.4375 0.17578 0.11328 0.36719 0.16406 0.5625 0.16406 0.34375 0 0.67969-0.16797 0.87891-0.48047l3.9805-6.1992c0.30859-0.48438 0.17188-1.1289-0.3125-1.4375zm5.375 1.2656c-0.48047-0.30859-1.1289-0.17188-1.4375 0.3125l-5.9688 9.2969c-0.30859 0.48438-0.17188 1.1289 0.3125 1.4375 0.17578 0.11328 0.36719 0.16406 0.5625 0.16406 0.34375 0 0.67969-0.16797 0.87891-0.48047l5.9688-9.2969c0.30859-0.48437 0.17188-1.1289-0.3125-1.4375z"></path> | |
| 1528 | +</svg> | |
| 1529 | +</div> | |
| 1530 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1021350580" style="transition: opacity 1s ease-in-out;"><p class="text-align-center"><strong style="display: initial; font-weight: bold;">BALCON PRIVÉ</strong></p></div> | |
| 1531 | +</div> | |
| 1532 | + <div class="dmRespCol small-12 medium-4 large-4" id="1039038550"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3" data-element-type="graphic" data-widget-type="graphic" id="1568394281"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1498743683" class="svg u_1498743683" data-icon-custom="true"> <title id="1533751192">Un cube noir et blanc avec une porte et des fenêtres sur fond blanc.</title> | |
| 1533 | + <path d="m91.391 70.52c0.019531-0.039062 0.039063-0.078125 0.050781-0.12109 0.039063-0.12891 0.058594-0.26172 0.058594-0.39844v-40c0-0.57031-0.32031-1.0898-0.82812-1.3398l-40-20c-0.039063-0.019531-0.078125-0.03125-0.12109-0.039062-0.058593-0.019532-0.12109-0.050782-0.19141-0.058594-0.058594-0.011719-0.12109-0.019531-0.17969-0.03125-0.070313-0.011719-0.12891-0.019531-0.19922-0.019531-0.058594 0-0.12109 0.011719-0.17969 0.011719-0.058593 0.011718-0.12891 0.019531-0.19141 0.03125-0.058594 0.019531-0.12109 0.039062-0.17969 0.058593-0.039063 0.019531-0.078126 0.019531-0.12109 0.039063l-40 20c-0.48828 0.25781-0.80859 0.77734-0.80859 1.3477v40c0 0.14062 0.019531 0.26953 0.058594 0.39844 0.011718 0.039062 0.03125 0.078124 0.050781 0.12109 0.03125 0.078125 0.058594 0.16016 0.10156 0.23828 0.03125 0.050782 0.058593 0.078126 0.089843 0.12891 0.050781 0.058593 0.089844 0.12891 0.14844 0.17969 0.039062 0.039063 0.089843 0.070313 0.12891 0.10938 0.039063 0.03125 0.078125 0.070313 0.12109 0.10156 0.019531 0.011718 0.039062 0.019531 0.058593 0.03125 0.019532 0.011718 0.039063 0.03125 0.058594 0.039062l40 20c0.21094 0.10938 0.44141 0.16016 0.67188 0.16016s0.46094-0.050781 0.67188-0.16016l40-20c0.019532-0.011718 0.039063-0.03125 0.058594-0.039062 0.019531-0.011719 0.039062-0.011719 0.058594-0.03125 0.050781-0.03125 0.078125-0.070313 0.12109-0.10156 0.050781-0.039062 0.089843-0.070312 0.12891-0.10938 0.058594-0.058594 0.10156-0.12109 0.14844-0.17969 0.03125-0.039063 0.070313-0.078125 0.089844-0.12891 0.0625-0.078124 0.09375-0.15625 0.125-0.23828zm-2.8906-2.9492-37-18.5v-36.641l37 18.5zm-77-36.641 37-18.5v36.648l-12 6v-25.078c0-0.17188-0.089844-0.32812-0.23828-0.42969-0.14844-0.089843-0.32812-0.10156-0.48828-0.019531l-12 6c-0.17188 0.078125-0.28125 0.26172-0.28125 0.44922v25.57l-12 6-0.003907-36.641zm50 13.07v-16c0-0.17188 0.089844-0.32812 0.23828-0.42969 0.14844-0.089843 0.32812-0.10156 0.48828-0.019531l6.2812 3.1406v17.121l-6.7188-3.3594c-0.17969-0.09375-0.28906-0.26172-0.28906-0.45312zm16.281 8.4492-6.2812-3.1406v-17.117l6.7188 3.3594c0.17188 0.078125 0.28125 0.26172 0.28125 0.44922v16c0 0.17188-0.089844 0.32812-0.23828 0.42969-0.078125 0.050781-0.17188 0.070312-0.26172 0.070312-0.078125 0-0.14844-0.019531-0.21875-0.050781z"></path> | |
| 1534 | +</svg> | |
| 1535 | +</div> | |
| 1536 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1641948639" style="transition: opacity 1s ease-in-out;"><p class="text-align-center" style="line-height: 1.6; letter-spacing: 0.05em;"><strong style="display: initial;">UNITÉ SPACIEUSE</strong><span style="display: initial;"><br/></span></p></div> | |
| 1537 | +</div> | |
| 1538 | + <div class="dmRespCol small-12 medium-4 large-4" id="1072865027"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3" data-element-type="graphic" data-widget-type="graphic" id="1867621623"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1933419378" class="svg u_1933419378" data-icon-custom="true"> <title id="1070294086">Un dessin en noir et blanc d'un flocon de neige sur fond blanc.</title> | |
| 1539 | + <g> <path d="m50 51.953c-1.0742 0-1.9531-0.87891-1.9531-1.9531v-44.922c0-1.0742 0.87891-1.9531 1.9531-1.9531s1.9531 0.87891 1.9531 1.9531v44.922c0 1.0742-0.87891 1.9531-1.9531 1.9531z"></path> | |
| 1540 | + <path d="m50 24.609c-0.52734 0-1.0156-0.19531-1.3867-0.56641l-11.719-11.719c-0.76172-0.76172-0.76172-1.9922 0-2.7539 0.37109-0.37109 0.85938-0.56641 1.3867-0.56641s1.0156 0.19531 1.3867 0.56641l11.719 11.719c0.37109 0.37109 0.56641 0.85938 0.56641 1.3867 0 0.52734-0.19531 1.0156-0.56641 1.3867-0.37109 0.35156-0.85938 0.54688-1.3867 0.54688z"></path> | |
| 1541 | + <path d="m50 24.609c-0.52734 0-1.0156-0.19531-1.3867-0.56641-0.37109-0.37109-0.56641-0.85938-0.56641-1.3867s0.19531-1.0156 0.56641-1.3867l11.719-11.719c0.37109-0.37109 0.85938-0.56641 1.3867-0.56641s1.0156 0.19531 1.3867 0.56641c0.76172 0.76172 0.76172 1.9922 0 2.7539l-11.719 11.719c-0.37109 0.39062-0.85938 0.58594-1.3867 0.58594z"></path> | |
| 1542 | + <path d="m50 96.875c-1.0742 0-1.9531-0.87891-1.9531-1.9531v-44.922c0-1.0742 0.87891-1.9531 1.9531-1.9531s1.9531 0.87891 1.9531 1.9531v44.922c0 1.0742-0.87891 1.9531-1.9531 1.9531z"></path> | |
| 1543 | + <path d="m38.281 91.016c-0.52734 0-1.0156-0.19531-1.3867-0.56641-0.37109-0.37109-0.56641-0.85938-0.56641-1.3867s0.19531-1.0156 0.56641-1.3867l11.719-11.719c0.37109-0.37109 0.85938-0.56641 1.3867-0.56641s1.0156 0.19531 1.3867 0.56641c0.37109 0.37109 0.56641 0.85938 0.56641 1.3867s-0.19531 1.0156-0.56641 1.3867l-11.719 11.719c-0.37109 0.37109-0.85938 0.56641-1.3867 0.56641z"></path> | |
| 1544 | + <path d="m61.719 91.016c-0.52734 0-1.0156-0.19531-1.3867-0.56641l-11.719-11.719c-0.76172-0.76172-0.76172-1.9922 0-2.7539 0.37109-0.37109 0.85938-0.56641 1.3867-0.56641s1.0156 0.19531 1.3867 0.56641l11.719 11.719c0.37109 0.37109 0.56641 0.85938 0.56641 1.3867 0 0.52734-0.19531 1.0156-0.56641 1.3867-0.37109 0.35156-0.85938 0.54688-1.3867 0.54688z"></path> | |
| 1545 | + <path d="m50 51.953c-0.52734 0-1.0156-0.19531-1.3867-0.56641-0.37109-0.37109-0.56641-0.85938-0.56641-1.3867s0.19531-1.0156 0.56641-1.3867l31.777-31.758c0.37109-0.37109 0.85938-0.56641 1.3867-0.56641s1.0156 0.19531 1.3867 0.56641c0.76172 0.76172 0.76172 2.0117 0 2.7539l-31.777 31.777c-0.37109 0.37109-0.85938 0.56641-1.3867 0.56641z"></path> | |
| 1546 | + <path d="m69.336 32.617c-1.0742 0-1.9531-0.87891-1.9531-1.9531v-16.582c0-1.0742 0.87891-1.9531 1.9531-1.9531 1.0742 0 1.9531 0.87891 1.9531 1.9531v16.582c0 1.0742-0.87891 1.9531-1.9531 1.9531z"></path> | |
| 1547 | + <path d="m85.898 32.617h-16.562c-1.0742 0-1.9531-0.87891-1.9531-1.9531 0-1.0742 0.87891-1.9531 1.9531-1.9531h16.562c1.0742 0 1.9531 0.87891 1.9531 1.9531 0 1.0742-0.85937 1.9531-1.9531 1.9531z"></path> | |
| 1548 | + <path d="m18.242 83.711c-0.52734 0-1.0156-0.19531-1.3867-0.56641-0.37109-0.37109-0.56641-0.85938-0.56641-1.3867 0-0.52734 0.19531-1.0156 0.56641-1.3867l31.758-31.758c0.37109-0.37109 0.85938-0.56641 1.3867-0.56641s1.0156 0.19531 1.3867 0.56641c0.37109 0.37109 0.56641 0.85938 0.56641 1.3867s-0.19531 1.0156-0.56641 1.3867l-31.777 31.758c-0.37109 0.37109-0.85938 0.56641-1.3672 0.56641z"></path> | |
| 1549 | + <path d="m30.664 71.289h-16.582c-1.0742 0-1.9531-0.87891-1.9531-1.9531 0-1.0742 0.87891-1.9531 1.9531-1.9531h16.582c1.0742 0 1.9531 0.87891 1.9531 1.9531 0 1.0742-0.87891 1.9531-1.9531 1.9531z"></path> | |
| 1550 | + <path d="m30.664 87.852c-1.0742 0-1.9531-0.87891-1.9531-1.9531v-16.562c0-1.0742 0.87891-1.9531 1.9531-1.9531 1.0742 0 1.9531 0.87891 1.9531 1.9531v16.562c0 1.0938-0.87891 1.9531-1.9531 1.9531z"></path> | |
| 1551 | + <path d="m94.922 51.953h-44.922c-1.0742 0-1.9531-0.87891-1.9531-1.9531s0.87891-1.9531 1.9531-1.9531h44.922c1.0742 0 1.9531 0.87891 1.9531 1.9531s-0.87891 1.9531-1.9531 1.9531z"></path> | |
| 1552 | + <path d="m77.344 51.953c-0.52734 0-1.0156-0.19531-1.3867-0.56641-0.37109-0.37109-0.56641-0.85938-0.56641-1.3867s0.19531-1.0156 0.56641-1.3867l11.719-11.719c0.37109-0.37109 0.85938-0.56641 1.3867-0.56641s1.0156 0.19531 1.3867 0.56641c0.76172 0.76172 0.76172 1.9922 0 2.7539l-11.719 11.719c-0.37109 0.39062-0.85938 0.58594-1.3867 0.58594z"></path> | |
| 1553 | + <path d="m89.062 63.672c-0.52734 0-1.0156-0.19531-1.3867-0.56641l-11.719-11.719c-0.37109-0.37109-0.56641-0.85938-0.56641-1.3867s0.19531-1.0156 0.56641-1.3867c0.37109-0.37109 0.85938-0.56641 1.3867-0.56641s1.0156 0.19531 1.3867 0.56641l11.719 11.719c0.76172 0.76172 0.76172 1.9922 0 2.7539-0.37109 0.39062-0.85938 0.58594-1.3867 0.58594z"></path> | |
| 1554 | + <path d="m50 51.953h-44.922c-1.0742 0-1.9531-0.87891-1.9531-1.9531s0.87891-1.9531 1.9531-1.9531h44.922c1.0742 0 1.9531 0.87891 1.9531 1.9531s-0.87891 1.9531-1.9531 1.9531z"></path> | |
| 1555 | + <path d="m22.656 51.953c-0.52734 0-1.0156-0.19531-1.3867-0.56641l-11.719-11.719c-0.76172-0.76172-0.76172-1.9922 0-2.7539 0.37109-0.37109 0.85938-0.56641 1.3867-0.56641s1.0156 0.19531 1.3867 0.56641l11.719 11.719c0.37109 0.37109 0.56641 0.85938 0.56641 1.3867 0 0.52734-0.19531 1.0156-0.56641 1.3867-0.37109 0.35156-0.85938 0.54688-1.3867 0.54688z"></path> | |
| 1556 | + <path d="m10.938 63.672c-0.52734 0-1.0156-0.19531-1.3867-0.56641-0.37109-0.37109-0.56641-0.85938-0.56641-1.3867s0.19531-1.0156 0.56641-1.3867l11.719-11.719c0.37109-0.37109 0.85938-0.56641 1.3867-0.56641s1.0156 0.19531 1.3867 0.56641c0.76172 0.76172 0.76172 1.9922 0 2.7539l-11.719 11.719c-0.37109 0.39062-0.85938 0.58594-1.3867 0.58594z"></path> | |
| 1557 | + <path d="m81.758 83.711c-0.52734 0-1.0156-0.19531-1.3867-0.56641l-31.758-31.758c-0.37109-0.37109-0.56641-0.85938-0.56641-1.3867s0.19531-1.0156 0.56641-1.3867c0.37109-0.37109 0.85938-0.56641 1.3867-0.56641s1.0156 0.19531 1.3867 0.56641l31.758 31.758c0.76172 0.76172 0.76172 2.0117 0 2.7734-0.37109 0.37109-0.85938 0.56641-1.3867 0.56641z"></path> | |
| 1558 | + <path d="m85.898 71.289h-16.562c-1.0742 0-1.9531-0.87891-1.9531-1.9531 0-1.0742 0.87891-1.9531 1.9531-1.9531h16.562c1.0742 0 1.9531 0.87891 1.9531 1.9531 0 1.0742-0.85937 1.9531-1.9531 1.9531z"></path> | |
| 1559 | + <path d="m69.336 87.852c-1.0742 0-1.9531-0.87891-1.9531-1.9531v-16.562c0-1.0742 0.87891-1.9531 1.9531-1.9531 1.0742 0 1.9531 0.87891 1.9531 1.9531v16.562c0 1.0938-0.87891 1.9531-1.9531 1.9531z"></path> | |
| 1560 | + <path d="m50 51.953c-0.52734 0-1.0156-0.19531-1.3867-0.56641l-31.758-31.777c-0.37109-0.37109-0.56641-0.85938-0.56641-1.3867s0.19531-1.0156 0.56641-1.3867c0.37109-0.37109 0.85938-0.56641 1.3867-0.56641 0.52734 0 1.0156 0.19531 1.3867 0.56641l31.758 31.758c0.37109 0.37109 0.56641 0.85938 0.56641 1.3867 0 0.52734-0.19531 1.0156-0.56641 1.3867-0.37109 0.39062-0.85938 0.58594-1.3867 0.58594z"></path> | |
| 1561 | + <path d="m30.664 32.617c-1.0742 0-1.9531-0.87891-1.9531-1.9531v-16.582c0-1.0742 0.87891-1.9531 1.9531-1.9531 1.0742 0 1.9531 0.87891 1.9531 1.9531v16.582c0 1.0742-0.87891 1.9531-1.9531 1.9531z"></path> | |
| 1562 | + <path d="m30.664 32.617h-16.582c-1.0742 0-1.9531-0.87891-1.9531-1.9531 0-1.0742 0.87891-1.9531 1.9531-1.9531h16.582c1.0742 0 1.9531 0.87891 1.9531 1.9531 0 1.0742-0.87891 1.9531-1.9531 1.9531z"></path> | |
| 1563 | +</g> | |
| 1564 | +</svg> | |
| 1565 | +</div> | |
| 1566 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1779262052" style="transition: opacity 1s ease-in-out;"><p class="text-align-center"><strong style="display: unset; font-weight: bold;">CLIMATISATION</strong></p></div> | |
| 1567 | +</div> | |
| 1568 | +</div> | |
| 1569 | +</div> | |
| 1570 | + <div class="dmRespRow u_1813520727" id="1813520727"> <div class="dmRespColsWrapper" id="1076460937"> <div class="dmRespCol small-12 medium-4 large-4" id="1888604417"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3" data-element-type="graphic" data-widget-type="graphic" id="1840705991"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1555630550" class="svg u_1555630550" data-icon-custom="true"> <title id="1148790460">Un dessin en noir et blanc d'une cuisine avec une cuisinière et des tiroirs.</title> | |
| 1571 | + <path d="m98.418 48.703h-50.488l1.4883-2.1836c0.019531-0.027343 0.023437-0.0625 0.039062-0.089843 0.14844-0.12891 0.49609-2.3086 0.55469-2.5312 0.25781-1.3906-1.8516-1.793-2.125-0.40625l-0.25391 1.3359h-5.9297v-1.1328c0-0.59766-0.48438-1.082-1.082-1.082s-1.082 0.48438-1.082 1.082v1.1328h-5.9297l-0.25391-1.3359c-0.26562-1.3828-2.3828-0.98828-2.125 0.40625 0.0625 0.23047 0.40234 2.3906 0.55469 2.5312 0.015625 0.027343 0.019532 0.0625 0.039063 0.089843l1.4883 2.1836h-10.477l1.4883-2.1836c0.019531-0.027343 0.023437-0.0625 0.039062-0.089843 0.14844-0.12891 0.49609-2.3086 0.55469-2.5312 0.25781-1.3906-1.8555-1.793-2.125-0.40625l-0.25391 1.3359h-5.9336v-1.1328c0-0.59766-0.48438-1.082-1.082-1.082-0.59766 0-1.082 0.48438-1.082 1.082v1.1328h-5.9258l-0.25391-1.3359c-0.26562-1.3828-2.3828-0.98828-2.125 0.40625 0.0625 0.23047 0.40234 2.3906 0.55469 2.5312 0.015625 0.027343 0.019532 0.0625 0.039063 0.089843l1.4883 2.1836h-6.6328c-0.60156 0-1.0859 0.48438-1.0859 1.082v5.8906c0 0.59766 0.48438 1.082 1.082 1.082h3.4375v40.27c0 0.59766 0.48438 1.082 1.082 1.082 21.887-0.003906 65.875 0 87.758 0 0.59766 0 1.082-0.48438 1.082-1.082v-40.27h3.4805c0.59766 0 1.082-0.48437 1.082-1.082v-5.8906c-0.003906-0.59766-0.48828-1.082-1.0859-1.082zm-56.719-1.7109h4.7812l-1.1641 1.7109h-3.6172zm-2.1602 0v1.7109h-3.6172l-1.1641-1.7109zm-22.934 0h4.7812l-1.1641 1.7109h-3.6172zm-2.1602 0v1.7109h-3.6172l-1.1641-1.7109zm34.426 48.957h-41.691v-39.188h41.691zm43.902 0h-41.691v-39.188h41.691zm4.5625-41.352h-94.672v-3.7305h94.676zm-41.93 38.105h33.043c0.59766 0 1.082-0.48438 1.082-1.082v-30.531c0-0.59766-0.48438-1.082-1.082-1.082h-33.043c-0.59766 0-1.082 0.48438-1.082 1.082v30.535c0 0.59375 0.48438 1.0781 1.082 1.0781zm1.082-30.535h30.879v13.105h-30.879zm0 15.27h30.879v13.105h-30.879zm-44.938 15.266h33.043c0.59766 0 1.082-0.48438 1.082-1.082v-15.266c0-0.59766-0.48438-1.082-1.082-1.082h-33.043c-0.59766 0-1.082 0.48437-1.082 1.082v15.266c0 0.59766 0.48438 1.082 1.082 1.082zm1.082-15.266h30.879v13.105h-30.879zm1.457-9.7266c4.7695-0.125 4.7695-7.1133 0-7.2344-4.7734 0.125-4.7734 7.1094 0 7.2344zm0-5.0742c1.9102 0.035156 1.9102 2.8789 0 2.9102-1.9141-0.03125-1.9141-2.875 0-2.9102zm13.984 5.0742c4.7695-0.125 4.7695-7.1133 0-7.2344-4.7734 0.125-4.7734 7.1094 0 7.2344zm0-5.0742c1.9102 0.035156 1.9102 2.8789 0 2.9102-1.9141-0.03125-1.9141-2.875 0-2.9102zm13.984 5.0742c4.7695-0.125 4.7695-7.1133 0-7.2344-4.7734 0.125-4.7734 7.1094 0 7.2344zm0-5.0742c1.9102 0.035156 1.9102 2.8789 0 2.9102-1.9141-0.03125-1.9141-2.875 0-2.9102zm-11.449 19.973h-1.4531c0.082031 0.78906-0.15625 1.5938-1.082 1.625-0.92578-0.027344-1.1602-0.83203-1.082-1.625h-1.457c-1.4141-0.007813-1.4141-2.1562 0-2.1641h5.0742c1.4141 0.007813 1.4141 2.1562 0 2.1641zm43.855 0h-1.457c0.082032 0.78906-0.15625 1.5938-1.082 1.625-0.92578-0.027344-1.1602-0.83203-1.082-1.625h-1.457c-1.4141-0.007813-1.4141-2.1562 0-2.1641h5.0742c1.418 0.007813 1.418 2.1602 0.003906 2.1641zm0-15.266h-1.457c0.082032 0.78906-0.15625 1.5938-1.082 1.625-0.92578-0.027344-1.1602-0.83203-1.082-1.625h-1.457c-1.4141-0.007812-1.4141-2.1562 0-2.1641h5.0742c1.418 0.003906 1.418 2.1562 0.003906 2.1641zm-60.375-34.336h29.43c0.59766 0 1.082-0.48437 1.082-1.082 0-0.007812 0.003907-4.3008 0-4.3047-2.0781-4.293-4.957-8.2969-7.2969-12.488l-0.007813-12.164c0-0.59766-0.48438-1.082-1.082-1.082l-14.828 0.003906c-0.59766 0-1.082 0.48438-1.082 1.082v12.164c-2.3438 4.1914-5.2227 8.1953-7.2969 12.492v4.2969c0 0.59766 0.48438 1.082 1.082 1.082zm8.3789-28.957h12.668v10.301h-12.668zm-0.46875 12.465h13.602c1.9961 3.3438 4 6.6875 6.0039 10.031l-25.609-0.003906c2.0039-3.3438 4.0078-6.6875 6.0039-10.027zm-6.832 12.191h27.266v2.1367h-27.266zm44.707-0.58984h10.863c0.59766 0 1.082-0.48438 1.082-1.082 0-3.2188-2.3555-5.8945-5.4336-6.4102l0.003906-17.211c0-0.59766-0.48438-1.082-1.082-1.082s-1.082 0.48438-1.082 1.082v17.211c-3.0781 0.51562-5.4336 3.1914-5.4336 6.4102 0.003906 0.59766 0.48438 1.082 1.082 1.082zm5.4336-5.4258c2.0234 0 3.7344 1.3906 4.2148 3.2656h-8.4297c0.48438-1.875 2.1914-3.2656 4.2148-3.2656zm7.8047 11.809h10.863c0.59766 0 1.082-0.48438 1.082-1.082 0-3.2188-2.3555-5.8945-5.4336-6.4102v-24.039c0-0.59766-0.48438-1.082-1.082-1.082-0.59766 0-1.082 0.48438-1.082 1.082v24.039c-3.0781 0.51563-5.4336 3.1914-5.4336 6.4102 0.003906 0.59766 0.48828 1.082 1.0859 1.082zm5.4336-5.4258c2.0234 0 3.7344 1.3906 4.2148 3.2656h-8.4297c0.48047-1.875 2.1875-3.2656 4.2148-3.2656z"></path> | |
| 1572 | +</svg> | |
| 1573 | +</div> | |
| 1574 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1887903806" style="transition: opacity 1s ease-in-out;"><p class="text-align-center"><strong style="display: unset; font-weight: bold;">CUISINE AVEC ILOT</strong></p></div> | |
| 1575 | +</div> | |
| 1576 | + <div class="dmRespCol small-12 medium-4 large-4" id="1169683558"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3" data-element-type="graphic" data-widget-type="graphic" id="1890470256"> <a id="1743196068" class=""> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1598219880" class="svg u_1598219880" data-icon-custom="true"> <path d="m87.227 36.406c0-7.793-3.8477-14.637-9.6484-18.562-1.9688-10.164-10.91-17.844-21.652-17.844-5.5312 0-10.582 2.0391-14.453 5.4023-0.77734-0.10938-1.5664-0.17188-2.3711-0.17188-8.2461 0-15.102 5.9336-16.543 13.758-5.8672 3.5781-9.7852 10.039-9.7852 17.414 0 6.5977 3.1367 12.461 7.9961 16.184-0.12891 0.58984-0.19531 1.1953-0.19531 1.8125 0 6.5273 7.3789 11.816 16.48 11.816 2.2422 0 4.3789-0.32031 6.3281-0.90234v19.078c0 3.4375-2.1094 9.8633-7.1289 12.77 0 0-2.1172 1.4961 0.875 2.7305 1.1016 0.67578 3.4766-1.2812 7.7305-2.1367 1.9688-0.25391 3.6562-0.37891 5.1172-0.40234 1.4648 0.023438 3.1523 0.14453 5.1172 0.40234 4.2539 0.85156 6.6289 2.8125 7.7305 2.1367 2.9922-1.2344 0.875-2.7305 0.875-2.7305-5.0195-2.9062-7.1289-9.3359-7.1289-12.77v-19.5c2.0039 0.84766 4.2695 1.3242 6.668 1.3242 7.8477 0 14.258-5.0898 14.711-11.512 5.5977-3.957 9.2773-10.676 9.2773-18.297z"></path> | |
| 1577 | +</svg> | |
| 1578 | +</a> | |
| 1579 | +</div> | |
| 1580 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1975566927" style="transition: opacity 1s ease-in-out;"><p class="text-align-center"><strong style="display: initial; font-weight: bold;">ENVIRONNEMENT CALME</strong></p><p class="text-align-center"><strong style="display: initial; font-weight: bold;">ET PAISIBLE</strong></p></div> | |
| 1581 | +</div> | |
| 1582 | + <div class="dmRespCol small-12 medium-4 large-4" id="1443466153"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3" data-element-type="graphic" data-widget-type="graphic" id="1406295359"> <a href="/" id="1950376377" aria-label="Dog_3202789.svg"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1886445913" class="svg u_1886445913" data-icon-custom="true" data-icon-name="Dog_3202789.svg"> <g> <path d="m56.102 84.801-2.5 8 0.10156 0.30078c0.5 1.8984 2.3984 3 4.3008 2.6016 2-0.39844 3.3008-2.3008 2.8984-4.3008l-1.1992-6.1992z"></path> | |
| 1583 | + <path d="m81.602 81.398-1.1992 11.398c-0.10156 0.89844-0.39844 1.6992-0.80078 2.3984 1 0.69922 2.1992 0.89844 3.3984 0.5 1.8984-0.69922 2.8984-2.8984 2.1992-4.8008z"></path> | |
| 1584 | + <path d="m53.898 67.898-2.1016-3.5c-0.80078-1.3984-2.6992-1.8984-4.1016-1-1.3984 0.80078-1.8984 2.6992-1 4.1016l1.8008 2.8984-4.8008 20.898c-0.39844 1.8984 0.60156 3.8008 2.5 4.3984 1.8984 0.60156 4-0.5 4.6016-2.3984l3.5-11.398 16.305 2.1016-0.19922 8.1016c-0.10156 1.8984 1.3984 3.6016 3.3008 3.8008 2 0.19922 3.8984-1.3008 4.1016-3.3008l1.6992-17.301-8.3008-7.3984z"></path> | |
| 1585 | + <path d="m97.102 67.398-7.1016-8.3984 0.30078-5.5c0.10156-1.3008-1.5-1.8984-2.3984-1.1016l-14.004 14.203 6.8984 6.1992 3.6992-3.6992 3.6016 3.6016c1.6016 1.6016 4.1016 1.6016 5.6016 0l3.3008-3.3008c0.60156-0.50391 0.69922-1.4023 0.10156-2.0039z"></path> | |
| 1586 | + <path d="m22.898 70.398-7.1992-9.8008 1.1992 8.6992c0.10156 0.39844 0.10156 0.80078-0.10156 1.1992l-7.0977 18.305c-0.89844 2.3984-0.10156 5.1992 2.1016 6.5 0.5 0.30078 0.89844 0.39844 1.3984 0.5 2.3008 0.5 4.6992-0.69922 5.6992-2.8984l5.1992-12.199-0.89844-9.6016c-0.097657-0.30078-0.19922-0.5-0.30078-0.70312z"></path> | |
| 1587 | + <path d="m36.5 65.801s-6.3984-12.102-6.8008-12.898c-0.30078-0.5-0.19922-1.3008-0.19922-1.8984 0-0.5 0.60156-8.8008 0.60156-8.8008l1.6992 2.3984c0.69922 1 1.6992 1.6016 2.8984 1.8008l11.102 1.5c0.39844 0.10156 0.80078 0 1.1992 0 0.60156-0.10156 1.1992-0.39844 1.6992-0.80078l21.102 19c0.30078 0.19922 0.60156 0.39844 0.89844 0.39844 0.39844 0 0.80078-0.19922 1.1016-0.5 0.5-0.60156 0.5-1.5-0.10156-2l-21.398-19.199c0.10156-0.30078 0.19922-0.60156 0.19922-0.89844 0.10156-2.1992-1.6992-4-3.8984-4.3008l-9-1.1992s-5.6992-8.3008-6.3984-9.3008c-0.60156-0.89844-1.8008-2.8008-3.1992-3.8008-1.8008-1.1992-4-1.6992-6.1992-1.3008-1.1016 0.19922-2.3984 0.89844-3.1016 1.3984s-11.203 8.1016-11.203 8.1016l-2.3008 1.8008c-0.89844 0.69922-1.5 1.8008-1.6016 2.8984l-1 11.199c0 0.39844 0 0.80078 0.10156 1.1992 0.39844 1.8984 2.1016 3.3984 4.1992 3.3984 2.1992 0 3.8984-1.8984 4.1016-4l0.80078-9.1016 3.3984-2.3984-1.1992 12.301c-0.10156 1.1992 0.19922 2.5 0.89844 3.5l10.602 14.398c0.5 0.69922 0.80078 1.3984 0.80078 2.1992l1.8008 19.699c0.19922 2.6016 1.8008 4.8984 4.3008 5.3008 0.5 0.10156 1 0.10156 1.5 0 2.3008-0.30078 4.3984-2.3984 4.3008-4.6992l-1.2031-23.496c-0.10156-0.69922-0.19922-1.3008-0.5-1.8984z"></path> | |
| 1588 | + <path d="m32.699 11.602c0.71484 4.8086-2.6016 9.2852-7.4102 10-4.8086 0.71484-9.2812-2.6055-9.9961-7.4102-0.71484-4.8086 2.6016-9.2852 7.4102-10 4.8047-0.71484 9.2812 2.6055 9.9961 7.4102"></path> | |
| 1589 | +</g> | |
| 1590 | +</svg> | |
| 1591 | +</a> | |
| 1592 | +</div> | |
| 1593 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1988614463" style="transition: opacity 1s ease-in-out;"><p class="text-align-center"><strong style="color: var(--color_1); display: unset; font-weight: bold;">CHAT ET CHIEN ACCEPTÉ</strong></p><p class="text-align-center"><span style="color: var(--color_1); display: initial; font-style: italic;">(sous conditions)</span></p></div> | |
| 1594 | +</div> | |
| 1595 | +</div> | |
| 1596 | +</div> | |
| 1597 | + <div class="dmRespRow u_1884387629" id="1884387629"> <div class="dmRespColsWrapper" id="1558366283"> <div class="dmRespCol large-12 medium-12 small-12" id="1747773030"> <div data-element-type="spacer" class="dmSpacer u_1127078365" id="1127078365"></div> | |
| 1598 | +</div> | |
| 1599 | +</div> | |
| 1600 | +</div> | |
| 1601 | + <div class="dmRespRow u_1746905231" id="1746905231"> <div class="dmRespColsWrapper" id="1489044292"> <div class="u_1602167220 dmRespCol small-12 large-4 medium-4" id="1602167220"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1969539361"> <h2><span style="display: initial; color: var(--color_3);">COMMODITÉS</span></h2> | |
| 1602 | +</div> | |
| 1603 | +</div> | |
| 1604 | + <div class="u_1158007567 dmRespCol small-12 large-8 medium-8" id="1158007567"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1877599422"><p><span style="display: initial; color: var(--color_3);">Habiter sur la rue Jean-Baptiste à Scott, c’est faire le choix d’un milieu de vie moderne, confortable et pensé pour votre bien-être au quotidien. Plus qu’un simple condo locatif, c’est un espace pratique et sécuritaire, où chaque détail contribue à une expérience résidentielle agréable.</span></p><p><br/></p><p><span style="display: initial; color: var(--color_3);">Profitez d’aires de vie bien conçues et d’équipements modernes qui répondent à vos besoins réels : connexion internet illimitée pour faciliter le télétravail, stationnements privés et environnement résidentiel sécuritaire pour assurer la tranquillité de votre famille. Tout a été réfléchi pour simplifier votre quotidien et améliorer votre qualité de vie.</span></p></div> | |
| 1605 | +</div> | |
| 1606 | +</div> | |
| 1607 | +</div> | |
| 1608 | + <div class="dmRespRow u_1732757548" id="1732757548"> <div class="dmRespColsWrapper" id="1619015439"> <div class="u_1652597944 dmRespCol small-12 medium-4 large-4" id="1652597944"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3 u_1465006226" data-element-type="graphic" data-widget-type="graphic" id="1465006226"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1502603050" class="svg u_1502603050" data-icon-custom="true"> <title id="1170184826">La lettre p est dans un carré sur fond blanc.</title> | |
| 1609 | + <path d="m53.125 21.875h-12.5c-1.7266 0-3.125 1.3984-3.125 3.125v50c0 1.7266 1.3984 3.125 3.125 3.125s3.125-1.3984 3.125-3.125v-21.875h9.375c8.6133 0 15.625-7.0117 15.625-15.625s-7.0117-15.625-15.625-15.625zm0 25h-9.375v-18.75h9.375c5.168 0 9.375 4.207 9.375 9.375s-4.207 9.375-9.375 9.375zm18.75-40.625h-43.75c-12.062 0-21.875 9.8125-21.875 21.875v43.75c0 12.062 9.8125 21.875 21.875 21.875h43.75c12.062 0 21.875-9.8125 21.875-21.875v-43.75c0-12.062-9.8125-21.875-21.875-21.875zm15.625 65.625c0 8.6133-7.0117 15.625-15.625 15.625h-43.75c-8.6133 0-15.625-7.0117-15.625-15.625v-43.75c0-8.6133 7.0117-15.625 15.625-15.625h43.75c8.6133 0 15.625 7.0117 15.625 15.625z"></path> | |
| 1610 | +</svg> | |
| 1611 | +</div> | |
| 1612 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1320053025" style="transition: opacity 1s ease-in-out;"><p class="text-align-center"><strong style="display: initial; color: var(--color_3);">DEUX STATIONNEMENTS</strong></p><p class="text-align-center"><strong style="display: initial; color: var(--color_3);">INCLUS</strong></p></div> | |
| 1613 | +</div> | |
| 1614 | + <div class="u_1131179570 dmRespCol small-12 medium-4 large-4" id="1131179570"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3 u_1813669443" data-element-type="graphic" data-widget-type="graphic" id="1813669443"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1220517477" class="svg u_1220517477" data-icon-custom="true"> <title id="1042248255">Une icône en noir et blanc d'un signal wifi sur fond blanc.</title> | |
| 1615 | + <g> <path d="m10.699 38.898c-2 2-5.1992 2-7.1992 0s-2-5.1992 0-7.1992c11.898-11.898 28.301-19.199 46.5-19.199 8.8984 0 17.398 1.8008 25.102 5 8.1016 3.3008 15.301 8.1992 21.398 14.301 2 2 2 5.1992 0 7.1992s-5.1992 2-7.1992 0c-5.1016-5.1016-11.301-9.3008-18-12.102-6.5-2.6992-13.699-4.1992-21.301-4.1992-15.398 0-29.301 6.1992-39.301 16.199z"></path> | |
| 1616 | + <path d="m23.5 54.5c-2 2-5.1992 2-7.1992 0s-2-5.1992 0-7.1992c8.6016-8.6016 20.5-13.898 33.699-13.898 6.3984 0 12.602 1.3008 18.199 3.6016 5.8984 2.3984 11.102 6 15.5 10.301 2 2 2 5.1992 0 7.1992s-5.1992 2-7.1992 0c-3.5-3.5-7.6016-6.3008-12.102-8.1016-4.3984-1.8008-9.1992-2.8008-14.301-2.8008-10.398 0-19.797 4.0977-26.598 10.898z"></path> | |
| 1617 | + <path d="m36.398 70.102c-2 2-5.1992 2-7.1992 0s-2-5.1992 0-7.1992c2.6992-2.6992 5.8984-4.8984 9.6016-6.3984 3.5-1.3984 7.3008-2.1992 11.199-2.1992s7.8008 0.80078 11.199 2.1992c3.6016 1.5 6.8984 3.6992 9.6016 6.3984 2 2 2 5.1992 0 7.1992s-5.1992 2-7.1992 0c-1.8008-1.8008-3.8984-3.1992-6.1992-4.1992-2.1992-0.89844-4.6992-1.3984-7.3984-1.3984-2.6992 0-5.1016 0.5-7.3984 1.3984-2.3047 0.99609-4.4062 2.3984-6.207 4.1992z"></path> | |
| 1618 | + <path d="m50 87.5c3.3984 0 6.1992-2.8008 6.1992-6.1992 0-3.3984-2.8008-6.1992-6.1992-6.1992s-6.1992 2.8008-6.1992 6.1992c0 3.3984 2.8008 6.1992 6.1992 6.1992z"></path> | |
| 1619 | +</g> | |
| 1620 | +</svg> | |
| 1621 | +</div> | |
| 1622 | + <div class="u_1486647722 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1486647722" style="transition: opacity 1s ease-in-out;"><p class="m-size-14 text-align-center size-18"><strong style="font-weight: bold; display: initial; color: rgb(255, 255, 255);" class="font-size-18 m-font-size-14">INTERNET</strong> | |
| 1623 | + </p><p class="text-align-center size-18 m-size-14"><strong style="font-weight: bold; display: initial; color: rgb(255, 255, 255);" class="m-font-size-14 font-size-18"><span class="ql-cursor"></span>ILLIMITÉ</strong></p></div> | |
| 1624 | +</div> | |
| 1625 | + <div class="u_1832927014 dmRespCol small-12 medium-4 large-4" id="1832927014"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3 u_1419208593" data-element-type="graphic" data-widget-type="graphic" id="1419208593"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1780823282" class="svg u_1780823282" data-icon-custom="true"> <title id="1679502386">Un bouclier noir et blanc avec une coche dessus.</title> | |
| 1626 | + <path d="m84.984 17.719c-24.617-0.70312-32.469-13.391-32.812-13.973-0.44531-0.76562-1.2695-1.2344-2.1602-1.2383-0.94141-0.070312-1.7227 0.46875-2.1797 1.2344-0.32031 0.54297-8.1562 13.27-32.816 13.977-1.3594 0.039062-2.4414 1.1523-2.4414 2.5117v28.219c0 16.41 8.6953 31.922 22.699 40.48l13.414 8.2031c0.40234 0.24609 0.85547 0.36719 1.3125 0.36719 0.45312 0 0.90625-0.125 1.3125-0.36719l13.414-8.2031c14-8.5586 22.699-24.07 22.699-40.48v-28.219c0-1.3594-1.082-2.4727-2.4414-2.5117zm-2.5859 30.727c0 14.672-7.7773 28.539-20.293 36.195l-12.105 7.4023-12.105-7.4023c-12.516-7.6523-20.293-21.523-20.293-36.195v-25.812c18.902-1.1523 28.496-9.1016 32.398-13.492 3.9062 4.3867 13.496 12.336 32.398 13.492z"></path> | |
| 1627 | + <path d="m48.75 17.684c-6.457 4.9414-14.52 8.1914-23.961 9.6602l-1.7383 0.26953v20.832c0 12.785 6.7773 24.871 17.684 31.543l9.2617 5.6641 9.2617-5.6641c10.91-6.6719 17.688-18.758 17.688-31.543v-20.832l-1.7383-0.26953c-9.4414-1.4688-17.5-4.7188-23.961-9.6602l-1.25-0.95312-1.25 0.95312zm11.219 23.219c1.1602-1.2461 3.1094-1.3164 4.3594-0.15625 1.2461 1.1602 1.3164 3.1133 0.15234 4.3594l-15.41 16.547c-0.58203 0.625-1.3984 0.98047-2.2578 0.98047-0.85547 0-1.6758-0.35547-2.2578-0.98047l-9.0391-9.707c-1.1602-1.2461-1.0898-3.1992 0.15625-4.3594 1.2461-1.1602 3.1953-1.0938 4.3594 0.15625l6.7812 7.2812 13.152-14.125z"></path> | |
| 1628 | +</svg> | |
| 1629 | +</div> | |
| 1630 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1698974621" style="transition: opacity 1s ease-in-out;"><p class="text-align-center size-18 m-size-14"><strong style="color: var(--color_3); display: unset; font-weight: bold;" class="font-size-18 m-font-size-14">ENVIRONNEMENT</strong></p><p class="text-align-center size-18 m-size-14"><strong style="color: var(--color_3); display: unset; font-weight: bold;" class="font-size-18 m-font-size-14">SÉCURISÉ</strong></p></div> | |
| 1631 | +</div> | |
| 1632 | +</div> | |
| 1633 | +</div> | |
| 1634 | + <div class="dmRespRow u_1373323900" id="1373323900"> <div class="dmRespColsWrapper" id="1608647589"> <div class="dmRespCol large-12 medium-12 small-12" id="1448122824"> <div data-element-type="spacer" class="dmSpacer u_1288707829" id="1288707829"></div> | |
| 1635 | +</div> | |
| 1636 | +</div> | |
| 1637 | +</div> | |
| 1638 | + <div class="dmRespRow" id="1207625802"> <div class="dmRespColsWrapper" id="1811535757"> <div class="dmRespCol large-12 medium-12 small-12" id="1183712701"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1012471350" style="transition: opacity 1s ease-in-out;"> <h2 class="text-align-center"><span style="display: unset;">VOTRE FUTUR CHEZ VOUS !</span></h2> | |
| 1639 | +</div> | |
| 1640 | +</div> | |
| 1641 | +</div> | |
| 1642 | +</div> | |
| 1643 | + <div class="dmRespRow" id="1895177592"> <div class="dmRespColsWrapper" id="1370102391"> <div class="u_1515200283 dmRespCol small-12 large-4 medium-4" id="1515200283"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1766789273"> <h3><span class="" style="display: unset;"><span style="display: unset;">Découvrez votre futur condo</span> | |
| 1644 | +</span></h3> | |
| 1645 | + <h3><span style="display: unset;">grâce à une visite virtuelle</span></h3> | |
| 1646 | +</div> | |
| 1647 | +</div> | |
| 1648 | + <div class="u_1605171594 dmRespCol small-12 large-8 medium-8" id="1605171594"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1074365602"><p><span style="display: unset;">Les condos locatifs de la rue Jean-Baptiste offrent un cadre de vie soigné dans un immeuble contemporain au style épuré. Chaque logement se distingue par une conception réfléchie, des matériaux durables et une finition de qualité, créant un environnement à la fois élégant, fonctionnel et accueillant.</span></p></div> | |
| 1649 | +</div> | |
| 1650 | +</div> | |
| 1651 | +</div> | |
| 1652 | + <div class="dmRespRow" id="1836880168"> <div class="dmRespColsWrapper" id="1478197164"> <div class="dmRespCol large-12 medium-12 small-12" id="1227292607"> <div class="flex-container dmImageSlider dmNoMargin dmNoMark u_1281514457" data-widget-type="imageSlider" dmle_volatile_widget="true" data-element-type="dSliderId" id="1281514457"> <div class="flexslider ed-version arrows-visible nav-layout-3" sliderscriptparams="{'stretch':true,'animation':true,'randomize':false,'directionNav':true,'isAutoPlay':true,'isFade':true,'controlNav':false,'slideshowSpeed':7000,'animationDuration':600,'pausePlay':true,'prevText':'','nextText':''}" id="1883157125" layout="empty"> <ul class="slides" id="1849667779"> <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1079271476" class="u_1079271476"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Rue+Jean-Baptiste+vue+cuisine-1920w.png" id="1854864531" alt="Il y a un grand îlot au milieu de la cuisine." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1777415701"></div> | |
| 1653 | + <div class="slide-inner" id="1408655820"> <div class="text-wrapper" id="1550985872"> <h3 class="slide-title" id="1112187589">Titre de la diapositive</h3> | |
| 1654 | + <div class="slide-text richText" id="1622573715">Écrivez votre légende ici</div> | |
| 1655 | +</div> | |
| 1656 | + <div class="slide-button dmWidget clearfix" id="1296091289"> <span class="iconBg" id="1038601898"> <span class="icon hasFontIcon icon-star" id="1053077730"></span> | |
| 1657 | +</span> | |
| 1658 | + <span class="text" id="1539547423">Bouton</span> | |
| 1659 | +</div> | |
| 1660 | +</div> | |
| 1661 | +</li> | |
| 1662 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1970083997"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Rue+Jean-Baptiste+vue+pi%C3%A8ce+%C3%A0+vivre-1920w.png" id="1795863750" alt="Un salon vide avec du parquet et une cuisine en arrière-plan." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1789725234"></div> | |
| 1663 | + <div class="slide-inner" id="1586310960"> <div class="text-wrapper" id="1695153037"> <h3 class="slide-title" id="1956997779">Titre de la diapositive</h3> | |
| 1664 | + <div class="slide-text richText" id="1268601051">Écrivez votre légende ici</div> | |
| 1665 | +</div> | |
| 1666 | + <div class="slide-button dmWidget clearfix" id="1736940835"> <span class="iconBg" id="1603129214"> <span class="icon hasFontIcon icon-star" id="1605601116"></span> | |
| 1667 | +</span> | |
| 1668 | + <span class="text" id="1492848547">Bouton</span> | |
| 1669 | +</div> | |
| 1670 | +</div> | |
| 1671 | +</li> | |
| 1672 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1625032871"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Rue+Jean-Baptiste+vue+chambre+1-1920w.png" id="1022967471" alt="Une chambre vide avec du parquet et une grande fenêtre." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1924651704"></div> | |
| 1673 | + <div class="slide-inner" id="1440587588"> <div class="text-wrapper" id="1181958537"> <h3 class="slide-title" id="1367816989">Titre de la diapositive</h3> | |
| 1674 | + <div class="slide-text richText" id="1360667785">Écrivez votre légende ici</div> | |
| 1675 | +</div> | |
| 1676 | + <div class="slide-button dmWidget clearfix" id="1699708874"> <span class="iconBg" id="1326054780"> <span class="icon hasFontIcon icon-star" id="1619518256"></span> | |
| 1677 | +</span> | |
| 1678 | + <span class="text" id="1944148186">Bouton</span> | |
| 1679 | +</div> | |
| 1680 | +</div> | |
| 1681 | +</li> | |
| 1682 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1956024336"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Rue+Jean-Baptiste+vue+salle+de+bain-1920w.png" id="1024446742" alt="Une salle de bain avec WC, lavabo et baignoire." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1272797972"></div> | |
| 1683 | + <div class="slide-inner" id="1770902656"> <div class="text-wrapper" id="1297125027"> <h3 class="slide-title" id="1021121731">Titre de la diapositive</h3> | |
| 1684 | + <div class="slide-text richText" id="1294540587">Écrivez votre légende ici</div> | |
| 1685 | +</div> | |
| 1686 | + <div class="slide-button dmWidget clearfix" id="1069806171"> <span class="iconBg" id="1276852476"> <span class="icon hasFontIcon icon-star" id="1858804534"></span> | |
| 1687 | +</span> | |
| 1688 | + <span class="text" id="1673548769">Bouton</span> | |
| 1689 | +</div> | |
| 1690 | +</div> | |
| 1691 | +</li> | |
| 1692 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1246129542"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Rue+Jean-Baptiste+vue+chambre+2-1920w.png" id="1783594160" alt="Une pièce vide avec du parquet et une fenêtre." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1319873229"></div> | |
| 1693 | + <div class="slide-inner" id="1804392009"> <div class="text-wrapper" id="1869031116"> <h3 class="slide-title" id="1683092412">Titre de la diapositive</h3> | |
| 1694 | + <div class="slide-text richText" id="1470115318">Écrivez votre légende ici</div> | |
| 1695 | +</div> | |
| 1696 | + <div class="slide-button dmWidget clearfix" id="1659731085"> <span class="iconBg" id="1562674571"> <span class="icon hasFontIcon icon-star" id="1742966418"></span> | |
| 1697 | +</span> | |
| 1698 | + <span class="text" id="1103334040">Bouton</span> | |
| 1699 | +</div> | |
| 1700 | +</div> | |
| 1701 | +</li> | |
| 1702 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1904111589"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Rue+Jean-Baptiste+vue+buanderie-1920w.png" id="1442123365" alt="Une pièce avec un plancher en bois, des murs blancs et une porte." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1863851067"></div> | |
| 1703 | + <div class="slide-inner" id="1959850512"> <div class="text-wrapper" id="1837895037"> <h3 class="slide-title" id="1338676267">Titre de la diapositive</h3> | |
| 1704 | + <div class="slide-text richText" id="1839823196">Écrivez votre légende ici</div> | |
| 1705 | +</div> | |
| 1706 | + <div class="slide-button dmWidget clearfix" id="1604100728"> <span class="iconBg" id="1303826525"> <span class="icon hasFontIcon icon-star" id="1869824159"></span> | |
| 1707 | +</span> | |
| 1708 | + <span class="text" id="1961458980">Bouton</span> | |
| 1709 | +</div> | |
| 1710 | +</div> | |
| 1711 | +</li> | |
| 1712 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1675502981"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Rue+Jean-Baptiste+vue+pi%C3%A8ce+rangement-1920w.png" id="1859085815" alt="Un dressing vide avec parquet et étagères grillagées." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1919456382"></div> | |
| 1713 | + <div class="slide-inner" id="1923178453"> <div class="text-wrapper" id="1916041413"> <h3 class="slide-title" id="1042869471">Titre de la diapositive</h3> | |
| 1714 | + <div class="slide-text richText" id="1611310137">Écrivez votre légende ici</div> | |
| 1715 | +</div> | |
| 1716 | + <div class="slide-button dmWidget clearfix" id="1590149944"> <span class="iconBg" id="1197863449"> <span class="icon hasFontIcon icon-star" id="1500793429"></span> | |
| 1717 | +</span> | |
| 1718 | + <span class="text" id="1193308777">Bouton</span> | |
| 1719 | +</div> | |
| 1720 | +</div> | |
| 1721 | +</li> | |
| 1722 | +</ul> | |
| 1723 | +</div> | |
| 1724 | +</div> | |
| 1725 | +</div> | |
| 1726 | +</div> | |
| 1727 | +</div> | |
| 1728 | + <div class="u_1004639188 dmRespRow hide-for-small hasBackgroundOverlay" id="1004639188"> <div class="dmRespColsWrapper" id="1319975779"> <div class="u_1937526287 dmRespCol small-12 medium-12 large-12" id="1937526287"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1719778719" style="transition: opacity 1s ease-in-out;"> <h2 style="line-height: 1.5;"><span class="" style="color: var(--color_3); display: unset;"><span style="color: var(--color_3); display: unset;">Vous avez des questions ?</span> | |
| 1729 | +</span><span style="display: initial;"><br/></span></h2> | |
| 1730 | +</div> | |
| 1731 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1370458921" style="transition: opacity 1s ease-in-out;"><p style="line-height: 1.5;"><span class="" style="display: unset; color: var(--color_3);"><span style="display: unset; color: var(--color_3);">N'hésitez pas à nous contacter pour découvrir tout ce que vous souhaitez savoir sur les logements, les quartiers et tout ce qui s'y trouve. Nous sommes là pour répondre à toutes vos questions.</span> | |
| 1732 | +</span></p></div> | |
| 1733 | + <a data-display-type="block" class="u_1756842165 align-center dmButtonLink dmWidget dmWwr default dmOnlyButton dmDefaultGradient flexButton button_2" file="false" href="/contact" data-element-type="dButtonLinkId" id="1756842165"> <span class="iconBg" aria-hidden="true" id="1108775789"> <span class="icon hasFontIcon icon-star" id="1591840279"></span> | |
| 1734 | +</span> | |
| 1735 | + <span class="text" id="1591898475">Contactez-nous</span> | |
| 1736 | +</a> | |
| 1737 | +</div> | |
| 1738 | +</div> | |
| 1739 | +</div> | |
| 1740 | + <div class="dmRespRow" id="1255286625"> <div class="dmRespColsWrapper" id="1157853594"> <div class="dmRespCol large-12 medium-12 small-12" id="1646357035"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1894118525" style="transition: opacity 1s ease-in-out;"> <h2 class="text-align-center"><span style="display: initial;">LE QUARTIER</span></h2> | |
| 1741 | +</div> | |
| 1742 | +</div> | |
| 1743 | +</div> | |
| 1744 | +</div> | |
| 1745 | + <div class="dmRespRow" id="1021648282"> <div class="dmRespColsWrapper" id="1958472480"> <div class="u_1467854085 dmRespCol small-12 large-4 medium-4" id="1467854085"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1714560600"> <h3><span style="display: unset;">Que vous appréciez les balades en nature ou les moments entre amis, la municipalité de Scott saura combler vos envies !</span></h3> | |
| 1746 | +</div> | |
| 1747 | +</div> | |
| 1748 | + <div class="u_1585638891 dmRespCol small-12 large-8 medium-8" id="1585638891"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1871869082"><p><span style="display: initial;">Situés dans la municipalité de Scott, au cœur de la Chaudière-Appalaches, les condos locatifs de la rue Jean-Baptiste vous offrent un cadre de vie moderne où le confort, la tranquillité et l’accessibilité se rencontrent. Vous vivrez dans un immeuble récent, conçu pour répondre aux besoins d’une clientèle active, à la recherche d’un environnement paisible et fonctionnel.</span></p><p><span style="display: initial;"><span class="ql-cursor"></span></span></p><p><span style="display: initial;">Profitez d’un emplacement privilégié, à deux pas de toutes les commodités essentielles : épiceries, restaurants, écoles, soins personnels et commerces locaux. Grâce à sa localisation stratégique, votre quotidien est simplifié sans compromis sur la qualité de vie. Le secteur vous permet aussi de profiter pleinement de la nature environnante, avec ses espaces verts, ses sentiers et ses lieux parfaits pour relaxer, marcher ou partager du temps en famille. Un équilibre parfait entre vie pratique et bien-être.</span></p></div> | |
| 1749 | +</div> | |
| 1750 | +</div> | |
| 1751 | +</div> | |
| 1752 | + <div class="dmRespRow" id="1843314920"> <div class="dmRespColsWrapper" id="1867002812"> <div class="dmRespCol large-12 medium-12 small-12" id="1607338615"> <div class="default align-center flexButton u_1121935101 inlineMap" data-type="inlineMap" data-lat="46.50886" data-lng="-71.09007" data-address="21 Rue Jean-Baptiste, Scott, Quebec G0S 3G0, Canada" data-height="" data-msid="" data-mapurl="" data-lang="fr" data-color-scheme="" data-zoom="13" data-layout="" data-popup-display="" data-popup-show="false" data-popup-title="" data-popup-title-visible="false" data-popup-description="" data-popup-description-visible="false" id="1121935101" dmle_extension="mapextension" data-element-type="mapextension" modedesktop="map" modemobile="button" addresstodisplay="21 Rue Jean-Baptiste, Scott, Quebec G0S 3G0, Canada" geocompleteaddress="21 Rue Jean-Baptiste, Scott, Quebec G0S 3G0, Canada" data-popup-display-desktop="" data-popup-display-mobile="" data-display-type="block" modetablet="map" wr="true" icon="true" surround="true" adwords="" icon-name="icon-map-marker" provider="mapbox" lon="-71.09007" lat="46.50886" zoom="13"> <div class="mapContainer" style="height: 100%; width: 100%; overflow: hidden; z-index: 0;"></div> | |
| 1753 | +</div> | |
| 1754 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1364636678" style="transition: opacity 1s ease-in-out;"><p class="text-align-center" style="line-height: normal;"><span style="display: unset; font-style: italic;">21 rue Jean-Baptiste à </span><strong style="display: unset; font-style: italic; font-weight: bold;">Scott</strong></p></div> | |
| 1755 | +</div> | |
| 1756 | +</div> | |
| 1757 | +</div> | |
| 1758 | + <div class="dmRespRow" id="1070998894"> <div class="dmRespColsWrapper" id="1224671236"> <div class="dmRespCol large-12 medium-12 small-12" id="1298961806"> <div data-element-type="spacer" class="dmSpacer u_1337411818" id="1337411818"></div> | |
| 1759 | +</div> | |
| 1760 | +</div> | |
| 1761 | +</div> | |
| 1762 | + <div class="dmRespRow hasBackgroundOverlay u_1713239492 hasExtraLayerOverlay relativePos" id="1713239492" data-video-bg="eyJzcmMiOiJodHRwczovL3ZpZC5jZG4td2Vic2l0ZS5jb20vbWQvcGV4ZWxzL3ZpZGVvcy9hcGFydG1lbnQtYXQtaG9tZS1idXNpbmVzcy1idXktNzU3ODU0Ny12Lm1wNCIsImlkIjoiaHR0cHM6Ly92aWQuY2RuLXdlYnNpdGUuY29tL21kL3BleGVscy92aWRlb3MvYXBhcnRtZW50LWF0LWhvbWUtYnVzaW5lc3MtYnV5LTc1Nzg1NDctdi5tcDQiLCJwcm92aWRlciI6ImNkbiIsImVtYmVkIjoiaHR0cHM6Ly92aWQuY2RuLXdlYnNpdGUuY29tL21kL3BleGVscy92aWRlb3MvYXBhcnRtZW50LWF0LWhvbWUtYnVzaW5lc3MtYnV5LTc1Nzg1NDctdi5tcDQiLCJyYXRpbyI6MC41MjUsInRodW1ibmFpbCI6Imh0dHBzOi8vaXJwLmNkbi13ZWJzaXRlLmNvbS9tZC9wZXhlbHMvZG1zM3JlcC9tdWx0aS9hcGFydG1lbnQtYXQtaG9tZS1idXNpbmVzcy1idXktNzU3ODU0Ny52Mi4wMDAwMDAwLmpwZyIsInN1cHBvcnRCZ09uTW9iaWxlIjp0cnVlLCJzdXBwb3J0QmdMb29wIjp0cnVlLCJwb3N0ZXIiOiJodHRwczovL2lycC5jZG4td2Vic2l0ZS5jb20vbWQvcGV4ZWxzL2RtczNyZXAvbXVsdGkvYXBhcnRtZW50LWF0LWhvbWUtYnVzaW5lc3MtYnV5LTc1Nzg1NDcudjIuMDAwMDAwMC5qcGcifQ==" data-video-bg-mobile="true" data-video-init="true"> <div class="videobgwrapper video-ssr" data-ratio="0.525"> <video autoplay="autoplay" playsinline="playsinline" muted="muted" loop="loop" class="videobgframe" poster="https://irp.cdn-website.com/md/pexels/dms3rep/multi/opt/apartment-at-home-business-buy-7578547.v2.0000000-1920w.jpg" src="https://vid.cdn-website.com/md/pexels/videos/apartment-at-home-business-buy-7578547-v.mp4" style="object-position: 50% 50%" id="videobgframe-1713239492"></video> | |
| 1763 | +</div> | |
| 1764 | + <div class="bgExtraLayerOverlay"></div> | |
| 1765 | + <div class="dmRespColsWrapper" id="1429893899"> <div class="dmRespCol small-12 medium-12 large-12 u_1486697154" id="1486697154"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1399270874"> <h2 class="text-align-center"><span class="" style="color: var(--color_3); display: unset;"><span style="color: var(--color_3); display: unset;">L'endroit vous séduit ?</span> | |
| 1766 | +</span></h2> | |
| 1767 | + <h2 class="text-align-center"><span style="color: var(--color_3); display: unset;">Planifiez votre visite dès aujourd'hui !</span><span style="display: initial;"><br/></span></h2> | |
| 1768 | +</div> | |
| 1769 | + <a data-display-type="block" class="u_1331251441 align-center dmButtonLink dmWidget dmWwr default dmOnlyButton dmDefaultGradient flexButton" file="false" href="/contact" data-element-type="dButtonLinkId" id="1331251441"> <span class="iconBg" aria-hidden="true" id="1684747527"> <span class="icon hasFontIcon icon-star" id="1638363387"></span> | |
| 1770 | +</span> | |
| 1771 | + <span class="text" id="1461344268">JE PLANIFIE !</span> | |
| 1772 | +</a> | |
| 1773 | +</div> | |
| 1774 | +</div> | |
| 1775 | +</div> | |
| 1776 | +</div> | |
| 1777 | +</div> | |
| 1778 | +</div> | |
| 1779 | +</div> | |
| 1780 | + <div class="sticky-widgets-container-global" id="1915928664"></div> | |
| 1781 | + <div class="dmFooterContainer"> <div id="fcontainer" class="u_fcontainer f_hcontainer dmFooter p_hfcontainer"> <div dm:templateorder="250" class="dmFooterResp generalFooter" id="1943048428"> <div class="dmRespRow" id="1590959602"> <div class="dmRespColsWrapper" id="1431538080"> <div class="dmRespCol large-12 medium-12 small-12" id="1361774164"> <div data-element-type="spacer" class="dmSpacer u_1490941094" id="1490941094"></div> | |
| 1782 | +</div> | |
| 1783 | +</div> | |
| 1784 | +</div> | |
| 1785 | + <div class="u_1590717275 dmRespRow hide-for-small" id="1590717275"> <div class="dmRespColsWrapper" id="1191827144"> <div class="dmRespCol large-3 medium-3 small-12" id="1127169041"> <div class="u_1937943637 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1937943637"><img src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Association_de_la_construction_du_quebec-1920w.jpg" alt="Le logo de l'association de la construction du québec" id="1579252722" class="" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/Association_de_la_construction_du_quebec.jpg" width="350" height="150" data-hover-effect="none" onerror="handleImageLoadError(this)"/></div> | |
| 1786 | +</div> | |
| 1787 | + <div class="dmRespCol large-3 medium-3 small-12" id="1123044410"> <div class="u_1581963857 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1581963857"><img src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Association_provinciale_des_constructeurs_habitations_du_quebec_inc-1920w.jpg" alt="The logo for the association provinciale des constructeurs d habitations du quebec inc." id="1728538060" class="" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/Association_provinciale_des_constructeurs_habitations_du_quebec_inc.jpg" width="350" height="150" onerror="handleImageLoadError(this)"/></div> | |
| 1788 | +</div> | |
| 1789 | + <div class="dmRespCol large-3 medium-3 small-12" id="1717192357"> <div class="u_1084703207 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1084703207"><img src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Bloc_Solutions_Bail_Electronique-1920w.jpg" alt="Le logo de bloc.solutions est un logo vert et noir sur fond blanc." id="1955822776" class="" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/Bloc_Solutions_Bail_Electronique.jpg" width="350" height="150" onerror="handleImageLoadError(this)"/></div> | |
| 1790 | +</div> | |
| 1791 | + <div class="dmRespCol large-3 medium-3 small-12" id="1657067254"> <div class="u_1794016962 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1794016962"><img src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Corporation_des_Proprietaires_Immobiliers_du_Qu%C3%A9bec-1920w.jpg" id="1267254084" class="" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/Corporation_des_Proprietaires_Immobiliers_du_Qu%C3%A9bec.jpg" width="350" height="150" alt="Un logo noir et blanc pour corpiq avec une coche." onerror="handleImageLoadError(this)"/></div> | |
| 1792 | +</div> | |
| 1793 | +</div> | |
| 1794 | +</div> | |
| 1795 | + <div class="u_1063726019 dmRespRow" id="1063726019"> <div class="dmRespColsWrapper" id="1726395185"> <div class="u_1306966054 dmRespCol small-12 large-3 medium-3" id="1306966054"> <div class="dmNewParagraph u_1459373111" data-element-type="paragraph" data-version="5" id="1459373111" style="transition: none 0s ease 0s; text-align: left; display: block;"><p class="text-align-left"><span style="display: unset; color: var(--color_3);">Spécialiste en gestion d’immeubles locatifs, notre équipe saura vous accompagner tout au long de vos démarches.</span></p></div> | |
| 1796 | + <div class="u_1812358036 imageWidget align-center hide-for-small" data-element-type="image" data-widget-type="image" id="1812358036"><img src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/logo_RGB-1920w.png" alt="Un fond blanc avec quelques lignes dessus" id="1998903164" class="" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/logo_RGB.png" width="668" height="250" onerror="handleImageLoadError(this)"/></div> | |
| 1797 | +</div> | |
| 1798 | + <div class="u_1050897595 dmRespCol small-12 large-3 medium-3" id="1050897595"> <div class="dmNewParagraph u_1949670582" data-element-type="paragraph" data-version="5" id="1949670582" style="transition: opacity 1s ease-in-out 0s;"> <h3 class="m-size-22 size-28"><span class="m-font-size-22 font-size-28" style="font-weight: bold; color: var(--color_3); display: unset;">GIRS</span></h3> | |
| 1799 | +</div> | |
| 1800 | + <nav class="u_1737436200 unifiednav_vertical effect-bottom2 main-navigation unifiednav dmLinksMenu" role="navigation" layout-main="vertical_nav_layout_2" layout-sub="" data-show-vertical-sub-items="HOVER" id="1737436200" dmle_extension="onelinksmenu" data-element-type="onelinksmenu" data-logo-src="https://lirp.cdn-website.com/6d6b044d/dms3rep/multi/opt/SECONDAIRE_BLANC-1920w.png" alt="" data-nav-structure="VERTICAL" wr="true" icon="true" surround="true" adwords="" navigation-id="unifiedNav"> <ul role="menubar" class="unifiednav__container unav-top " data-auto="navigation-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/" class="unifiednav__item unav-item unav-top-item " target="" data-target-page-alias="home"> <span class="nav-item-text " data-link-text=" | |
| 1801 | + Accueil | |
| 1802 | + " data-auto="page-text-style">Accueil<span class="icon icon-angle-down" data-hidden-on-mobile="" data-hidden-on-desktop="" data-hidden-on-tablet=""></span> | |
| 1803 | +</span> | |
| 1804 | +</a> | |
| 1805 | +</li> | |
| 1806 | + <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/contact" class="unifiednav__item unav-item unav-top-item " target="" data-target-page-alias="contact"> <span class="nav-item-text " data-link-text="Nous joindre" data-auto="page-text-style">Nous joindre<span class="icon icon-angle-down" data-hidden-on-mobile="" data-hidden-on-desktop="" data-hidden-on-tablet=""></span> | |
| 1807 | +</span> | |
| 1808 | +</a> | |
| 1809 | +</li> | |
| 1810 | +</ul> | |
| 1811 | +</nav> | |
| 1812 | +</div> | |
| 1813 | + <div class="dmRespCol large-3 medium-3 small-12" id="1584149102"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1433235051" style="transition: opacity 1s ease-in-out 0s;"> <h3><span style="display: unset; font-weight: bold; color: var(--color_3);">Les services</span></h3> | |
| 1814 | +</div> | |
| 1815 | + <nav class="u_1889817761 unifiednav_vertical effect-bottom2 main-navigation unifiednav dmLinksMenu" role="navigation" layout-main="vertical_nav_layout_2" layout-sub="" data-show-vertical-sub-items="HOVER" id="1889817761" dmle_extension="onelinksmenu" data-element-type="onelinksmenu" data-logo-src="https://lirp.cdn-website.com/6d6b044d/dms3rep/multi/opt/SECONDAIRE_BLANC-1920w.png" alt="" data-nav-structure="VERTICAL" wr="true" icon="true" surround="true" adwords="" navigation-id="unifiedNav"> <ul role="menubar" class="unifiednav__container unav-top " data-auto="navigation-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/representation-au-tal" class="unifiednav__item unav-item unav-top-item " target="" data-target-page-alias="representation-au-tal"> <span class="nav-item-text " data-link-text="Représentation au TAL" data-auto="page-text-style">Représentation au TAL<span class="icon icon-angle-down" data-hidden-on-mobile="" data-hidden-on-desktop="" data-hidden-on-tablet=""></span> | |
| 1816 | +</span> | |
| 1817 | +</a> | |
| 1818 | +</li> | |
| 1819 | + <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/soumissions" class="unifiednav__item unav-item unav-top-item " target="" data-target-page-alias="soumissions"> <span class="nav-item-text " data-link-text="Propriétaires" data-auto="page-text-style">Propriétaires<span class="icon icon-angle-down" data-hidden-on-mobile="" data-hidden-on-desktop="" data-hidden-on-tablet=""></span> | |
| 1820 | +</span> | |
| 1821 | +</a> | |
| 1822 | +</li> | |
| 1823 | +</ul> | |
| 1824 | +</nav> | |
| 1825 | +</div> | |
| 1826 | + <div class="dmRespCol large-3 medium-3 small-12" id="1792928138"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1244885576" style="transition: opacity 1s ease-in-out 0s;"> <h3><span style="display: unset; font-weight: bold; color: var(--color_3);">Contact</span></h3> | |
| 1827 | +</div> | |
| 1828 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1892624408" style="transition: opacity 1s ease-in-out 0s;"><p><span style="display: unset; color: var(--color_3);">1421 Rang St Gabriel Nord</span></p><p><span class="" style="display: unset; color: var(--color_3);"><span style="display: unset; color: var(--color_3);">Sainte-Marie</span> | |
| 1829 | +</span></p><p><span style="display: unset; color: var(--color_3);">G6E 3A8</span></p><p><span style="display: unset; color: var(--color_3);">(418) 253-0064</span></p><p><span style="display: initial;"><span class="ql-cursor"></span></span></p></div> | |
| 1830 | +</div> | |
| 1831 | +</div> | |
| 1832 | +</div> | |
| 1833 | + <div class="dmRespRow u_1362105655" id="1362105655"> <div class="dmRespColsWrapper" id="1297100399"> <div class="dmRespCol large-12 medium-12 small-12" id="1817119092"> <div class="u_1400759734 widget-1f5975 dmCustomWidget" data-lazy-load="" data-title="" id="1400759734" dmle_extension="custom_extension" data-element-type="custom_extension" icon="false" surround="false" data-widget-id="1f5975986930429f819d4cd2154b5c4a" data-widget-version="25" data-widget-config="eyJyZXZlcnNlRmxhZyI6bnVsbCwiY29weXJpZ2h0VGV4dCI6IjxwIGNsYXNzPVwicnRlQmxvY2tcIj5HZXN0aW9uIEltbW9iaWxpw6hyZSBkZSBsYSBSaXZlIFN1ZCAyMDI1IC0gVG91cyBkcm9pdHMgcsOpc2VydsOpczwvcD4ifQ=="> <div class="copyright"> <div>© 2026 </div> | |
| 1834 | + <div><p class="rteBlock">Gestion Immobilière de la Rive Sud 2025 - Tous droits réservés</p></div> | |
| 1835 | +</div> | |
| 1836 | +</div> | |
| 1837 | +</div> | |
| 1838 | +</div> | |
| 1839 | +</div> | |
| 1840 | +</div> | |
| 1841 | + <div id="1236746004" dmle_extension="powered_by" data-element-type="powered_by" icon="true" surround="false"></div> | |
| 1842 | +</div> | |
| 1843 | +</div> | |
| 1844 | +</div> | |
| 1845 | +</div> | |
| 1846 | +</div> | |
| 1847 | +</div> | |
| 1848 | +</div> | |
| 1849 | +</div> | |
| 1850 | +</div> | |
| 1851 | + | |
| 1852 | + </div> | |
| 1853 | +</div> | |
| 1854 | +<!-- Add full CSS and Javascript before the close tag of the body if needed --> | |
| 1855 | + | |
| 1856 | + | |
| 1857 | + | |
| 1858 | + | |
| 1859 | + | |
| 1860 | + | |
| 1861 | + | |
| 1862 | + | |
| 1863 | + | |
| 1864 | + | |
| 1865 | + | |
| 1866 | + | |
| 1867 | + | |
| 1868 | + | |
| 1869 | + | |
| 1870 | + | |
| 1871 | + | |
| 1872 | + | |
| 1873 | + | |
| 1874 | + | |
| 1875 | + | |
| 1876 | + | |
| 1877 | + | |
| 1878 | + | |
| 1879 | + | |
| 1880 | + | |
| 1881 | + | |
| 1882 | + | |
| 1883 | + | |
| 1884 | + | |
| 1885 | + | |
| 1886 | + | |
| 1887 | + | |
| 1888 | + | |
| 1889 | + | |
| 1890 | + | |
| 1891 | + | |
| 1892 | + | |
| 1893 | +<!-- ========= JS Section ========= --> | |
| 1894 | +<script> | |
| 1895 | + var isWLR = true; | |
| 1896 | + | |
| 1897 | + window.customWidgetsFunctions = {}; | |
| 1898 | + window.customWidgetsStrings = {}; | |
| 1899 | + window.collections = {}; | |
| 1900 | + window.currentLanguage = "FRENCH" | |
| 1901 | + window.isSitePreview = false; | |
| 1902 | +</script> | |
| 1903 | + | |
| 1904 | + | |
| 1905 | + | |
| 1906 | +<script> | |
| 1907 | + window.customWidgetsFunctions["1f5975986930429f819d4cd2154b5c4a~25"] = function (element, data, api) { | |
| 1908 | + null | |
| 1909 | + }; | |
| 1910 | +</script> | |
| 1911 | + | |
| 1912 | + | |
| 1913 | +<script type="text/javascript"> | |
| 1914 | + | |
| 1915 | + var d_version = "production_6688"; | |
| 1916 | + var build = "2026-08-06T08_49_03"; | |
| 1917 | + window['v' + 'ersion'] = d_version; | |
| 1918 | + | |
| 1919 | + function buildEditorParent() { | |
| 1920 | + window.isMultiScreen = true; | |
| 1921 | + window.editorParent = {}; | |
| 1922 | + window.previewParent = {}; | |
| 1923 | + window.assetsCacheQueryParam = "?version=2026-08-06T08_49_03"; | |
| 1924 | + try { | |
| 1925 | + var _p = window.parent; | |
| 1926 | + if (_p && _p.document && _p.$ && _p.$.dmfw) { | |
| 1927 | + window.editorParent = _p; | |
| 1928 | + } else if (_p.isSitePreview) { | |
| 1929 | + window.previewParent = _p; | |
| 1930 | + } | |
| 1931 | + } catch (e) { | |
| 1932 | + | |
| 1933 | + } | |
| 1934 | + } | |
| 1935 | + | |
| 1936 | + buildEditorParent(); | |
| 1937 | +</script> | |
| 1938 | + | |
| 1939 | + | |
| 1940 | +<!-- Load jQuery --> | |
| 1941 | + | |
| 1942 | +<script type="text/javascript" id='d-js-jquery' | |
| 1943 | + src="https://static.cdn-website.com/libs/jquery/jquery-3.7.0.min.js"></script> | |
| 1944 | + | |
| 1945 | +<!-- End Load jQuery --> | |
| 1946 | + | |
| 1947 | + | |
| 1948 | +<!-- Injecting site-wide before scripts --> | |
| 1949 | + | |
| 1950 | +<!-- End Injecting site-wide to the head --> | |
| 1951 | + | |
| 1952 | + | |
| 1953 | + | |
| 1954 | +<script> | |
| 1955 | + var _jquery = window.$; | |
| 1956 | + | |
| 1957 | + var jqueryAliases = ['$', 'jquery', 'jQuery']; | |
| 1958 | + | |
| 1959 | + jqueryAliases.forEach((alias) => { | |
| 1960 | + Object.defineProperty(window, alias, { | |
| 1961 | + get() { | |
| 1962 | + return _jquery; | |
| 1963 | + }, | |
| 1964 | + set() { | |
| 1965 | + console.warn("Trying to over-write the global jquery object!"); | |
| 1966 | + } | |
| 1967 | + }); | |
| 1968 | + }); | |
| 1969 | + window.jQuery.migrateMute = true; | |
| 1970 | +</script> | |
| 1971 | + | |
| 1972 | + | |
| 1973 | + | |
| 1974 | + | |
| 1975 | +<script> | |
| 1976 | + window.cookiesNotificationMarkupPreview = ' <div> <p class=\"rteBlock\">Nous utilisons des cookies pour optimiser votre expérience sur notre site web. Pour en savoir plus, veuillez accéder à la page <a value=\"donnees-personnelles\" label=\"\" type=\"page\" href=\"\/donnees-personnelles\" data-runtime-url=\"\/donnees-personnelles\">Confidentialité<\/a>.<\/p> \n<\/div> \n'; | |
| 1977 | +</script> | |
| 1978 | + | |
| 1979 | +<!-- HEAD RT JS Include --> | |
| 1980 | +<script id='d-js-params'> | |
| 1981 | + window.INSITE = window.INSITE || {}; | |
| 1982 | + window.INSITE.device = "desktop"; | |
| 1983 | + | |
| 1984 | + window.rtCommonProps = {}; | |
| 1985 | + rtCommonProps["rt.ajax.ajaxScriptsFix"] =true; | |
| 1986 | + rtCommonProps["rt.pushnotifs.sslframe.encoded"] = 'aHR0cHM6Ly97c3ViZG9tYWlufS5wdXNoLW5vdGlmcy5jb20='; | |
| 1987 | + rtCommonProps["runtimecollector.url"] = 'https://rtc.multiscreensite.com'; | |
| 1988 | + rtCommonProps["performance.tabletPreview.removeScroll"] = 'false'; | |
| 1989 | + rtCommonProps["inlineEditGrid.snap"] =true; | |
| 1990 | + rtCommonProps["popup.insite.cookie.ttl"] = '0.5'; | |
| 1991 | + rtCommonProps["rt.pushnotifs.force.button"] =true; | |
| 1992 | + rtCommonProps["common.mapbox.token"] = 'pk.JETON_CAVIARDE_LOUKA'; | |
| 1993 | + rtCommonProps["common.mapbox.js.override"] =false; | |
| 1994 | + rtCommonProps["common.here.appId"] = 'iYvDjIQ2quyEu0rg0hLo'; | |
| 1995 | + rtCommonProps["common.here.appCode"] = '1hcIxLJcbybmtBYTD9Z1UA'; | |
| 1996 | + rtCommonProps["isCoverage.test"] =false; | |
| 1997 | + rtCommonProps["ecommerce.ecwid.script"] = 'https://app.multiscreenstore.com/script.js'; | |
| 1998 | + rtCommonProps["common.resources.dist.cdn"] =true; | |
| 1999 | + rtCommonProps["common.build.dist.folder"] = 'production/6688'; | |
| 2000 | + rtCommonProps["common.resources.cdn.host"] = 'https://static.cdn-website.com'; | |
| 2001 | + rtCommonProps["common.resources.folder"] = 'https://static.cdn-website.com/mnlt/production/6688'; | |
| 2002 | + rtCommonProps["common.fonts.api.v2.url"] = 'https://irp.cdn-website.com/fonts/css2?family='; | |
| 2003 | + rtCommonProps["feature.flag.runtime.backgroundSlider.preload.slowly"] =true; | |
| 2004 | + rtCommonProps["feature.flag.runtime.newAnimation.enabled"] =true; | |
| 2005 | + rtCommonProps["feature.flag.runtime.newAnimation.jitAnimation.enabled"] =true; | |
| 2006 | + rtCommonProps["feature.flag.sites.google.analytics.gtag"] =true; | |
| 2007 | + rtCommonProps["feature.flag.runOnReadyNewTask"] =true; | |
| 2008 | + rtCommonProps["isAutomation.test"] =false; | |
| 2009 | + rtCommonProps["booking.cal.api.domain"] = 'api.cal.com'; | |
| 2010 | + | |
| 2011 | + | |
| 2012 | + rtCommonProps['common.mapsProvider'] = 'mapbox'; | |
| 2013 | + | |
| 2014 | + rtCommonProps['common.mapsProvider.version'] = '0.52.0'; | |
| 2015 | + rtCommonProps['common.geocodeProvider'] = 'mapbox'; | |
| 2016 | + rtCommonProps['server.for.resources'] = ''; | |
| 2017 | + rtCommonProps['feature.flag.lazy.widgets'] = true; | |
| 2018 | + rtCommonProps['feature.flag.single.wow'] = false; | |
| 2019 | + rtCommonProps['feature.flag.disallowPopupsInEditor'] = true; | |
| 2020 | + rtCommonProps['feature.flag.mark.anchors'] = true; | |
| 2021 | + rtCommonProps['captcha.public.key'] = '6LffcBsUAAAAAMU-MYacU-6QHY4iDtUEYv_Ppwlz'; | |
| 2022 | + rtCommonProps['captcha.invisible.public.key'] = '6LeiWB8UAAAAAHYnVJM7_-7ap6bXCUNGiv7bBPME'; | |
| 2023 | + rtCommonProps["images.sizes.small"] =160; | |
| 2024 | + rtCommonProps["images.sizes.mobile"] =640; | |
| 2025 | + rtCommonProps["images.sizes.tablet"] =1280; | |
| 2026 | + rtCommonProps["images.sizes.desktop"] =1920; | |
| 2027 | + rtCommonProps["modules.resources.cdn"] =true; | |
| 2028 | + rtCommonProps["import.images.storage.imageCDN"] = 'https://irp.cdn-website.com/'; | |
| 2029 | + rtCommonProps["feature.flag.runtime.inp.threshold"] =150; | |
| 2030 | + rtCommonProps["feature.flag.performance.logs"] =false; | |
| 2031 | + rtCommonProps["site.widget.form.captcha.type"] = 'g_recaptcha'; | |
| 2032 | + rtCommonProps["friendly.captcha.site.key"] = 'FCMGSQG9GVNMFS8K'; | |
| 2033 | + rtCommonProps["cookiebot.mapbox.consent.category"] = 'marketing'; | |
| 2034 | + rtCommonProps["termly.mapbox.consent.category"] = 'performance'; | |
| 2035 | + // feature flags that's used out of runtime module (in legacy files) | |
| 2036 | + rtCommonProps["platform.monolith.personalization.dateTimeCondition.popupMsgAction.moveToclient.enabled"] =true; | |
| 2037 | + | |
| 2038 | + window.rtFlags = {}; | |
| 2039 | + rtFlags["unsuspendEcwidStoreOnRuntime.enabled"] =true; | |
| 2040 | + rtFlags["scripts.widgetCount.enabled"] =true; | |
| 2041 | + rtFlags["fnb.animations.tracking.enabled"] =true; | |
| 2042 | + rtFlags["ecom.ecwidNewUrlStructure.enabled"] = false; | |
| 2043 | + rtFlags["ecom.ecwid.accountPage.emptyBaseUrl.enabled"] = true; | |
| 2044 | + rtFlags["ecom.ecwid.accountPage.repeatOrderRedirect.enabled"] = false; | |
| 2045 | + rtFlags["ecom.ecwid.pages.links.disable.listeners"] = true; | |
| 2046 | + rtFlags["ecom.ecwid.storefrontV3.enabled"] = false; | |
| 2047 | + rtFlags["ecom.ecwid.old.store.fix.facebook.share"] = true; | |
| 2048 | + rtFlags["ecom.monolith.legacy.js.api.disabled.for.new.sites"] = false; | |
| 2049 | + rtFlags["feature.flag.photo.gallery.exact.size"] =true; | |
| 2050 | + rtFlags["geocode.search.localize"] =false; | |
| 2051 | + rtFlags["feature.flag.runtime.newAnimation.asyncInit.setTimeout.enabled"] =false; | |
| 2052 | + rtFlags["twitter.heightLimit.enabled"] = true; | |
| 2053 | + rtFlags["runtime.lottieOverflow"] =false; | |
| 2054 | + rtFlags["runtime.monitoring.sentry.ignoreErrors"] = ""; | |
| 2055 | + rtFlags["streamline.monolith.personalization.supportMultipleConditions.enabled"] =false; | |
| 2056 | + rtFlags["flex.animation.design.panel.layout"] =true; | |
| 2057 | + rtFlags["runtime.cwv.report.cls.enabled"] =false; | |
| 2058 | + rtFlags["runtime.cwv.report.lcp.enabled"] =false; | |
| 2059 | + rtFlags["runtime.lcp.preload.selfheal.enabled"] =true; | |
| 2060 | + rtFlags["runtime.lcp.preload.bootstrap.enabled"] =false; | |
| 2061 | + rtFlags["runtime.lcp.preload.monitor.enabled"] =false; | |
| 2062 | + rtFlags["runtime.customwidget.heightpin.enabled"] =true; | |
| 2063 | + rtFlags["contact.form.useActiveForm"] =true; | |
| 2064 | + rtFlags["contact.form.custom.errors.enabled"] =false; | |
| 2065 | + rtFlags["runtime.ssr.productStore.internal.observer"] =true; | |
| 2066 | + rtFlags["runtime.ssr.productCustomizations"] =true; | |
| 2067 | + rtFlags["runtime.ssr.runtime.filter-sort.newFilterSortWidgetWithOptions.enabled"] =true; | |
| 2068 | + rtFlags["runtime.ssr.ssrSlider.jumpThreshold.enabled"] =true; | |
| 2069 | + rtFlags["runtime.ssr.native.booker.enabled"] =false; | |
| 2070 | + rtFlags["termly.map.consent.overlay.enabled"] =false; | |
| 2071 | +</script> | |
| 2072 | +<script src="https://static.cdn-website.com/mnlt/production/6688/_dm/s/rt/dist/scripts/d-js-one-runtime-unified-desktop.min.js" id="d-js-core"></script> | |
| 2073 | + | |
| 2074 | +<!-- End of HEAD RT JS Include --> | |
| 2075 | + | |
| 2076 | + | |
| 2077 | + | |
| 2078 | + | |
| 2079 | + | |
| 2080 | + | |
| 2081 | + | |
| 2082 | + | |
| 2083 | + | |
| 2084 | + | |
| 2085 | + | |
| 2086 | + <script src="https://static.cdn-website.com/mnlt/production/6688/_dm/s/rt/dist/scripts/d-js-jquery-migrate.min.js" ></script> | |
| 2087 | + | |
| 2088 | + | |
| 2089 | + | |
| 2090 | + | |
| 2091 | + | |
| 2092 | +<script> | |
| 2093 | + | |
| 2094 | + $(window).bind("orientationchange", function (e) { | |
| 2095 | + $.layoutManager.initLayout(); | |
| 2096 | + | |
| 2097 | + }); | |
| 2098 | + $(document).resize(function () { | |
| 2099 | + | |
| 2100 | + }); | |
| 2101 | +</script> | |
| 2102 | + | |
| 2103 | + | |
| 2104 | + | |
| 2105 | + | |
| 2106 | + | |
| 2107 | + | |
| 2108 | + | |
| 2109 | + | |
| 2110 | + | |
| 2111 | + | |
| 2112 | + | |
| 2113 | + | |
| 2114 | + | |
| 2115 | + | |
| 2116 | + | |
| 2117 | + | |
| 2118 | + | |
| 2119 | + | |
| 2120 | +<script type="text/javascript" id="d_track_sp"> | |
| 2121 | + ;(function(p,l,o,w,i,n,g){if(!p[i]){p.GlobalSnowplowNamespace=p.GlobalSnowplowNamespace||[]; | |
| 2122 | + p.GlobalSnowplowNamespace.push(i);p[i]=function(){(p[i].q=p[i].q||[]).push(arguments) | |
| 2123 | + };p[i].q=p[i].q||[];n=l.createElement(o);g=l.getElementsByTagName(o)[0];n.async=1; | |
| 2124 | + n.src=w;g.parentNode.insertBefore(n,g)}}(window,document,"script","//d32hwlnfiv2gyn.cloudfront.net/sp-2.0.0-dm-0.1.min.js","snowplow")); | |
| 2125 | + window.dmsnowplow = window.snowplow; | |
| 2126 | + | |
| 2127 | + dmsnowplow('newTracker', 'cf', 'd32hwlnfiv2gyn.cloudfront.net', { // Initialise a tracker | |
| 2128 | + appId: '6d6b044d' | |
| 2129 | + }); | |
| 2130 | + | |
| 2131 | + // snowplow queries element styles so we wait until CSS calculations are done. | |
| 2132 | + requestAnimationFrame(() => { | |
| 2133 | + dmsnowplow('trackPageView'); | |
| 2134 | + _dm_insite.forEach((rule) => { | |
| 2135 | + // Specifically in popup only the client knows if it is shown or not so we don't always want to track its impression here | |
| 2136 | + // the tracking is in popup.js | |
| 2137 | + if (rule.actionName !== "popup") { | |
| 2138 | + dmsnowplow('trackStructEvent', 'insite', 'impression', rule.ruleType, rule.ruleId); | |
| 2139 | + } | |
| 2140 | + window?.waitForDeferred?.('dmAjax', () => { | |
| 2141 | + $.DM.events.trigger('event-ruleTriggered', {value: rule}); | |
| 2142 | + }); | |
| 2143 | + }); | |
| 2144 | + }); | |
| 2145 | +</script> | |
| 2146 | + | |
| 2147 | + | |
| 2148 | + | |
| 2149 | +<div style="display:none;" id="P6iryBW0Wu"></div> | |
| 2150 | + | |
| 2151 | +<!-- photoswipe markup --> | |
| 2152 | + | |
| 2153 | + | |
| 2154 | + | |
| 2155 | + | |
| 2156 | + | |
| 2157 | + | |
| 2158 | + | |
| 2159 | + | |
| 2160 | + | |
| 2161 | +<!-- Root element of PhotoSwipe. Must have class pswp. --> | |
| 2162 | +<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true"> | |
| 2163 | + | |
| 2164 | + <!-- Background of PhotoSwipe. | |
| 2165 | + It's a separate element as animating opacity is faster than rgba(). --> | |
| 2166 | + <div class="pswp__bg"></div> | |
| 2167 | + | |
| 2168 | + <!-- Slides wrapper with overflow:hidden. --> | |
| 2169 | + <div class="pswp__scroll-wrap"> | |
| 2170 | + | |
| 2171 | + <!-- Container that holds slides. | |
| 2172 | + PhotoSwipe keeps only 3 of them in the DOM to save memory. | |
| 2173 | + Don't modify these 3 pswp__item elements, data is added later on. --> | |
| 2174 | + <div class="pswp__container"> | |
| 2175 | + <div class="pswp__item"></div> | |
| 2176 | + <div class="pswp__item"></div> | |
| 2177 | + <div class="pswp__item"></div> | |
| 2178 | + </div> | |
| 2179 | + | |
| 2180 | + <!-- Default (PhotoSwipeUI_Default) interface on top of sliding area. Can be changed. --> | |
| 2181 | + <div class="pswp__ui pswp__ui--hidden"> | |
| 2182 | + | |
| 2183 | + <div class="pswp__top-bar"> | |
| 2184 | + | |
| 2185 | + <!-- Controls are self-explanatory. Order can be changed. --> | |
| 2186 | + | |
| 2187 | + <div class="pswp__counter"></div> | |
| 2188 | + | |
| 2189 | + <button class="pswp__button pswp__button--close" title="Fermer (Echap)"></button> | |
| 2190 | + | |
| 2191 | + <button class="pswp__button pswp__button--share" title="Partager"></button> | |
| 2192 | + | |
| 2193 | + <button class="pswp__button pswp__button--fs" title="Passer en mode plein écran"></button> | |
| 2194 | + | |
| 2195 | + <button class="pswp__button pswp__button--zoom" title="Zoom avant / arrière"></button> | |
| 2196 | + | |
| 2197 | + <!-- Preloader demo http://codepen.io/dimsemenov/pen/yyBWoR --> | |
| 2198 | + <!-- element will get class pswp__preloader--active when preloader is running --> | |
| 2199 | + <div class="pswp__preloader"> | |
| 2200 | + <div class="pswp__preloader__icn"> | |
| 2201 | + <div class="pswp__preloader__cut"> | |
| 2202 | + <div class="pswp__preloader__donut"></div> | |
| 2203 | + </div> | |
| 2204 | + </div> | |
| 2205 | + </div> | |
| 2206 | + </div> | |
| 2207 | + | |
| 2208 | + <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"> | |
| 2209 | + <div class="pswp__share-tooltip"></div> | |
| 2210 | + </div> | |
| 2211 | + | |
| 2212 | + <button class="pswp__button pswp__button--arrow--left" title="Précédent (flèche gauche)"> | |
| 2213 | + </button> | |
| 2214 | + | |
| 2215 | + <button class="pswp__button pswp__button--arrow--right" title="Suivant (flèche droite)"> | |
| 2216 | + </button> | |
| 2217 | + | |
| 2218 | + <div class="pswp__caption"> | |
| 2219 | + <div class="pswp__caption__center"></div> | |
| 2220 | + </div> | |
| 2221 | + | |
| 2222 | + </div> | |
| 2223 | + | |
| 2224 | + </div> | |
| 2225 | + | |
| 2226 | +</div> | |
| 2227 | +<div id="fb-root" | |
| 2228 | + data-locale="fr_FR"></div> | |
| 2229 | +<!-- Alias: 6d6b044d --> | |
| 2230 | +<div class="dmPopupMask" id="dmPopupMask"></div> | |
| 2231 | +<div id="dmPopup" class="dmPopup"> | |
| 2232 | + <div class="dmPopupCloseWrapper"> <div class="dmPopupClose dm-common-icons-close oneIcon" onclick="dmHidePopup(event);"></div> </div> | |
| 2233 | + <div class="dmPopupTitle"> <span></span> Share by:</div> | |
| 2234 | + <div class="data"></div> | |
| 2235 | +</div><script id="d_track_personalization"> | |
| 2236 | + window?.waitForDeferred?.('dmAjax', () => { | |
| 2237 | + // Collects client data and updates cookies used by smart sites | |
| 2238 | + window.expireDays = 365; | |
| 2239 | + window.visitLength = 30 * 60000; | |
| 2240 | + $.setCookie("dm_timezone_offset", (new Date()).getTimezoneOffset(), window.expireDays); | |
| 2241 | + setSmartSiteCookiesInternal("dm_this_page_view","dm_last_page_view","dm_total_visits","dm_last_visit"); | |
| 2242 | + }); | |
| 2243 | +</script> | |
| 2244 | +<script type="text/javascript"> | |
| 2245 | + | |
| 2246 | + Parameters.NavigationAreaParams.MoreButtonText = 'MORE'; | |
| 2247 | + | |
| 2248 | + Parameters.NavigationAreaParams.LessButtonText = 'LESS'; | |
| 2249 | + Parameters.HomeLinkText = 'Home'; | |
| 2250 | + </script> | |
| 2251 | +<!-- End Script tags --> | |
| 2252 | +<!-- Site Wide Html Markup --> | |
| 2253 | +<!-- Site Wide Html Markup --> | |
| 2254 | +</body> | |
| 2255 | +</html> | |
added
tests/fixtures/girs/1cd34f5867e9b358c9bd.html
+2544 −0
@@ -0,0 +1,2544 @@ | ||
| 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 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | +<script type="text/javascript"> | |
| 46 | + window._currentDevice = 'desktop'; | |
| 47 | + window.Parameters = window.Parameters || { | |
| 48 | + HomeUrl: 'https://www.girs.ca/', | |
| 49 | + | |
| 50 | + 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-marie-flore', | |
| 64 | + InitialPageUuid: 'e7d4488e76d84192b86ea71d95397cff', | |
| 65 | + InitialPageId: '43685126', | |
| 66 | + InitialEncodedPageAlias: 'bG9jYXRpb24vc2NvdHQvcnVlLW1hcmllLWZsb3Jl', | |
| 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érience sur notre site web. Pour en savoir plus, veuillez accéder à la page <a value=\"donnees-personnelles\" label=\"\" type=\"page\" href=\"\/donnees-personnelles\" data-runtime-url=\"\/donnees-personnelles\">Confidentialité<\/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: false | |
| 134 | + }; | |
| 135 | + | |
| 136 | + window.Parameters.LayoutID = {}; | |
| 137 | + window.Parameters.LayoutID[window._currentDevice] = 6; | |
| 138 | + window.Parameters.LayoutVariationID = {}; | |
| 139 | + window.Parameters.LayoutVariationID[window._currentDevice] = 5; | |
| 140 | +</script> | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | +<!-- Injecting site-wide to the head --> | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
| 169 | + | |
| 170 | + | |
| 171 | + | |
| 172 | + | |
| 173 | + | |
| 174 | + | |
| 175 | + | |
| 176 | + | |
| 177 | + | |
| 178 | +<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('&'); | |
| 185 | + | |
| 186 | + const expires = 'expires=' + new Date().getTime() + 24 * 60 * 60 * 1000; | |
| 187 | + const domain = 'domain=' + window.location.hostname; | |
| 188 | + const path = "path=/"; | |
| 189 | + | |
| 190 | + 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.cookie | |
| 220 | + .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 submission | |
| 226 | + // 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> | |
| 240 | + | |
| 241 | + | |
| 242 | + | |
| 243 | + | |
| 244 | + | |
| 245 | + | |
| 246 | +<!-- End Injecting site-wide to the head --> | |
| 247 | + | |
| 248 | +<!-- Inject secured cdn script --> | |
| 249 | + | |
| 250 | + | |
| 251 | +<!-- ========= 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 >>> 0 | |
| 260 | + } | |
| 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.serviceWorker | |
| 277 | + .register(serviceWorkerPath, { scope: './' }) | |
| 278 | + .then( | |
| 279 | + function (registration) { | |
| 280 | + // Registration was successful | |
| 281 | + console.log( | |
| 282 | + 'ServiceWorker registration successful with scope: ', | |
| 283 | + registration.scope | |
| 284 | + ); | |
| 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 | + }); | |
| 295 | + | |
| 296 | + // helper function to refresh the page | |
| 297 | + var refreshPage = (function () { | |
| 298 | + var refreshing; | |
| 299 | + return function () { | |
| 300 | + if (refreshing) return; | |
| 301 | + // prevent multiple refreshes | |
| 302 | + 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 loop | |
| 308 | + } | |
| 309 | + } | |
| 310 | + refreshing = true; | |
| 311 | + localStorage.setItem(refreshkey, Date.now()); | |
| 312 | + console.log('refereshing page'); | |
| 313 | + window.location.reload(); | |
| 314 | + }; | |
| 315 | + })(); | |
| 316 | + | |
| 317 | + 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 --> | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
| 340 | +<link rel="canonical" href="https://www.girs.ca/location/scott/rue-marie-flore"> | |
| 341 | + | |
| 342 | +<meta id="view" name="viewport" content="initial-scale=1, minimum-scale=1, maximum-scale=5, viewport-fit=cover"> | |
| 343 | + | |
| 344 | +<meta name="apple-mobile-web-app-capable" content="yes"> | |
| 345 | + | |
| 346 | +<!--Add favorites icons--> | |
| 347 | + | |
| 348 | +<link rel="icon" type="image/x-icon" href="https://irp.cdn-website.com/6d6b044d/site_favicon_16_1673962208002.ico"/> | |
| 349 | + | |
| 350 | +<!-- 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"/> | |
| 354 | + | |
| 355 | + | |
| 356 | + | |
| 357 | +<!-- render the required CSS and JS in the head section --> | |
| 358 | +<script id='d-js-dmapi'> | |
| 359 | + window.SystemID = 'US_DIRECT_PRODUCTION'; | |
| 360 | + | |
| 361 | + 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; | |
| 372 | + | |
| 373 | + 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 | + } | |
| 405 | + | |
| 406 | + if (!window.requestIdleCallback) { | |
| 407 | + window.requestIdleCallback = function (fn) { | |
| 408 | + setTimeout(fn, 0); | |
| 409 | + } | |
| 410 | + } | |
| 411 | +</script> | |
| 412 | + | |
| 413 | +<!-- loadCSS function header.jsp--> | |
| 414 | + | |
| 415 | + | |
| 416 | + | |
| 417 | + | |
| 418 | + | |
| 419 | + | |
| 420 | +<script id="d-js-load-css"> | |
| 421 | +/** | |
| 422 | + * There are a few <link> tags with CSS resource in them that are preloaded in the page | |
| 423 | + * in each of those there is a "onload" handler which invokes the loadCSS callback | |
| 424 | + * 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 threre | |
| 427 | + * is no page css (which may happen on inner pages) then we do not wait for it | |
| 428 | + */ | |
| 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']"); | |
| 440 | + | |
| 441 | + 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; | |
| 446 | + | |
| 447 | + storedGlobalCssLink.disabled = true; | |
| 448 | + loadCssLink(storedGlobalCssLink); | |
| 449 | + | |
| 450 | + if (storedPageCssLink) { | |
| 451 | + storedPageCssLink.disabled = true; | |
| 452 | + loadCssLink(storedPageCssLink); | |
| 453 | + } | |
| 454 | + | |
| 455 | + if(storedWidgetCssLink) { | |
| 456 | + storedWidgetCssLink.disabled = true; | |
| 457 | + loadCssLink(storedWidgetCssLink); | |
| 458 | + } | |
| 459 | + | |
| 460 | + storedRuntimeCssLink.disabled = true; | |
| 461 | + loadCssLink(storedRuntimeCssLink); | |
| 462 | + | |
| 463 | + 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're | |
| 474 | + // 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 | + | |
| 484 | + | |
| 485 | + 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; | |
| 490 | + | |
| 491 | + 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 e | |
| 519 | + } | |
| 520 | + } | |
| 521 | + window.loadCSS = window.loadCSS || loadCSS; | |
| 522 | +})(); | |
| 523 | +</script> | |
| 524 | + | |
| 525 | + | |
| 526 | + | |
| 527 | +<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 = b | |
| 532 | + }).bind(this)) | |
| 533 | + } | |
| 534 | + | |
| 535 | + 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 | + d | |
| 542 | + ? d.promise.then(a) | |
| 543 | + : c && ["complete", "interactive"].includes(document.readyState) | |
| 544 | + ? setTimeout(a, 1) | |
| 545 | + : c | |
| 546 | + ? 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 */ | |
| 552 | + | |
| 553 | +.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 | + | |
| 555 | + | |
| 556 | +</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> | |
| 568 | + | |
| 569 | + | |
| 570 | + | |
| 571 | + | |
| 572 | + | |
| 573 | + | |
| 574 | + | |
| 575 | + | |
| 576 | + | |
| 577 | + | |
| 578 | + | |
| 579 | + | |
| 580 | + | |
| 581 | + | |
| 582 | + | |
| 583 | + | |
| 584 | + | |
| 585 | + | |
| 586 | + | |
| 587 | + | |
| 588 | + | |
| 589 | + | |
| 590 | + | |
| 591 | + | |
| 592 | + | |
| 593 | +<!-- Google Fonts Include --> | |
| 594 | + | |
| 595 | + | |
| 596 | + | |
| 597 | + | |
| 598 | + | |
| 599 | + | |
| 600 | + | |
| 601 | + | |
| 602 | + | |
| 603 | + | |
| 604 | + | |
| 605 | + | |
| 606 | + | |
| 607 | +<!-- loadCSS function fonts.jsp--> | |
| 608 | + | |
| 609 | + | |
| 610 | + | |
| 611 | +<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&subset=latin-ext&display=swap" /> | |
| 612 | + | |
| 613 | + | |
| 614 | + | |
| 615 | + | |
| 616 | + | |
| 617 | +<!-- 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" /> | |
| 619 | + | |
| 620 | +<!-- End of RT CSS Include --> | |
| 621 | + | |
| 622 | +<link type="text/css" rel="stylesheet" href="https://irp.cdn-website.com/WIDGET_CSS/160fa92a74285c949cf192c8d205692c.css" id="widgetCSS" /> | |
| 623 | + | |
| 624 | +<!-- Support `img` size attributes --> | |
| 625 | +<style>img[width][height] { | |
| 626 | + height: auto; | |
| 627 | +}</style> | |
| 628 | + | |
| 629 | +<!-- Support showing sticky element on page only --> | |
| 630 | +<style> | |
| 631 | + body[data-page-alias="location/scott/rue-marie-flore"] #dm [data-show-on-page-only="location/scott/rue-marie-flore"] { | |
| 632 | + display: block !important; | |
| 633 | + } | |
| 634 | +</style> | |
| 635 | + | |
| 636 | +<!-- This is populated in Ajax navigation --> | |
| 637 | +<style id="pageAdditionalWidgetsCss" type="text/css"> | |
| 638 | +</style> | |
| 639 | + | |
| 640 | + | |
| 641 | + | |
| 642 | + | |
| 643 | +<!-- 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" /> | |
| 645 | + | |
| 646 | + | |
| 647 | + | |
| 648 | +<style id="customWidgetStyle" type="text/css"> | |
| 649 | + | |
| 650 | +</style> | |
| 651 | +<style id="innerPagesStyle" type="text/css"> | |
| 652 | + | |
| 653 | +</style> | |
| 654 | + | |
| 655 | + | |
| 656 | +<style | |
| 657 | + id="additionalGlobalCss" type="text/css" | |
| 658 | +> | |
| 659 | +</style> | |
| 660 | + | |
| 661 | +<style id="pagestyle" type="text/css"> | |
| 662 | + *#dm *.dmBody a.span.textonly | |
| 663 | +{ | |
| 664 | + color:rgb(255,255,255) !important; | |
| 665 | +} | |
| 666 | +*#dm *.dmBody div.dmform-error | |
| 667 | +{ | |
| 668 | + font-style:normal !important; | |
| 669 | +} | |
| 670 | +*#dm *.dmBody div.dmforminput textarea | |
| 671 | +{ | |
| 672 | + font-style:italic !important; | |
| 673 | +} | |
| 674 | +*#dm *.dmBody div.dmforminput *.fileUploadLink | |
| 675 | +{ | |
| 676 | + font-style:italic !important; | |
| 677 | +} | |
| 678 | +*#dm *.dmBody div.checkboxwrapper span | |
| 679 | +{ | |
| 680 | + font-style:italic !important; | |
| 681 | +} | |
| 682 | +*#dm *.dmBody div.radiowrapper span | |
| 683 | +{ | |
| 684 | + font-style:italic !important; | |
| 685 | +} | |
| 686 | +*#dm *.dmBody nav.u_1144820115 | |
| 687 | +{ | |
| 688 | + color:black !important; | |
| 689 | +} | |
| 690 | +*#dm *.dmBody *.u_1004639188:before | |
| 691 | +{ | |
| 692 | + opacity:0.5 !important; | |
| 693 | + background-color:rgb(255,255,255) !important; | |
| 694 | +} | |
| 695 | +*#dm *.dmBody *.u_1004639188.before | |
| 696 | +{ | |
| 697 | + opacity:0.5 !important; | |
| 698 | + background-color:rgb(255,255,255) !important; | |
| 699 | +} | |
| 700 | +*#dm *.dmBody *.u_1004639188>.bgExtraLayerOverlay | |
| 701 | +{ | |
| 702 | + opacity:0.5 !important; | |
| 703 | + background-color:rgb(255,255,255) !important; | |
| 704 | +} | |
| 705 | +*#dm *.dmBody div.u_1004639188 | |
| 706 | +{ | |
| 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:before | |
| 713 | +{ | |
| 714 | + background-color:var(--color_1) !important; | |
| 715 | +} | |
| 716 | +*#dm *.dmBody div.u_1004639188.before | |
| 717 | +{ | |
| 718 | + background-color:var(--color_1) !important; | |
| 719 | +} | |
| 720 | +*#dm *.dmBody div.u_1004639188>.bgExtraLayerOverlay | |
| 721 | +{ | |
| 722 | + background-color:var(--color_1) !important; | |
| 723 | +} | |
| 724 | +*#dm *.dmBody a.u_1756842165:hover | |
| 725 | +{ | |
| 726 | + background-color:var(--color_3) !important; | |
| 727 | + background-image:none !important; | |
| 728 | +} | |
| 729 | +*#dm *.dmBody a.u_1756842165.hover | |
| 730 | +{ | |
| 731 | + background-color:var(--color_3) !important; | |
| 732 | + background-image:none !important; | |
| 733 | +} | |
| 734 | +*#dm *.dmBody a.u_1756842165:hover span.text | |
| 735 | +{ | |
| 736 | + color:var(--color_1) !important; | |
| 737 | +} | |
| 738 | +*#dm *.dmBody a.u_1756842165.hover span.text | |
| 739 | +{ | |
| 740 | + color:var(--color_1) !important; | |
| 741 | +} | |
| 742 | +*#dm *.dmBody a.u_1756842165 span.text | |
| 743 | +{ | |
| 744 | + font-family:'Roboto' !important; | |
| 745 | + font-weight:400 !important; | |
| 746 | + color:var(--color_3) !important; | |
| 747 | +} | |
| 748 | +*#dm *.dmBody div.u_1937526287 | |
| 749 | +{ | |
| 750 | + border-style:solid !important; | |
| 751 | + border-width:2px !important; | |
| 752 | + border-color:var(--color_3) !important; | |
| 753 | +} | |
| 754 | +*#dm *.dmBody div.u_1452815793 | |
| 755 | +{ | |
| 756 | + background-color:rgba(0,0,0,0.05) !important; | |
| 757 | +} | |
| 758 | +*#dm *.dmBody div.u_1840143137 | |
| 759 | +{ | |
| 760 | + background-color:rgba(0,0,0,0.05) !important; | |
| 761 | +} | |
| 762 | +*#dm *.dmBody div.u_1813520727 | |
| 763 | +{ | |
| 764 | + background-color:rgba(0,0,0,0.05) !important; | |
| 765 | +} | |
| 766 | +*#dm *.dmBody div.u_1281514457 .color-overlay | |
| 767 | +{ | |
| 768 | + background-color:rgba(0,0,0,0) !important; | |
| 769 | +} | |
| 770 | +*#dm *.dmBody *.u_1281514457 .flex-direction-nav a:before | |
| 771 | +{ | |
| 772 | + font-size:45px !important; | |
| 773 | +} | |
| 774 | +*#dm *.dmBody *.u_1281514457 .flex-direction-nav a | |
| 775 | +{ | |
| 776 | + width:45px !important; | |
| 777 | + height:45px !important; | |
| 778 | + overflow:visible !important; | |
| 779 | + color:var(--color_3) !important; | |
| 780 | +} | |
| 781 | +*#dm *.dmBody *.u_1713239492:before | |
| 782 | +{ | |
| 783 | + opacity:0.5 !important; | |
| 784 | + background-color:rgb(255,255,255) !important; | |
| 785 | +} | |
| 786 | +*#dm *.dmBody *.u_1713239492.before | |
| 787 | +{ | |
| 788 | + opacity:0.5 !important; | |
| 789 | + background-color:rgb(255,255,255) !important; | |
| 790 | +} | |
| 791 | +*#dm *.dmBody *.u_1713239492>.bgExtraLayerOverlay | |
| 792 | +{ | |
| 793 | + opacity:0.5 !important; | |
| 794 | + background-color:rgb(255,255,255) !important; | |
| 795 | +} | |
| 796 | +*#dm *.dmBody div.u_1486697154 | |
| 797 | +{ | |
| 798 | + border-style:solid !important; | |
| 799 | + border-width:2px !important; | |
| 800 | + border-color:var(--color_3) !important; | |
| 801 | +} | |
| 802 | +*#dm *.dmBody a.u_1331251441 span.text | |
| 803 | +{ | |
| 804 | + text-decoration:none !important; | |
| 805 | + font-weight:400 !important; | |
| 806 | +} | |
| 807 | +*#dm *.dmBody a.u_1331251441:hover span.text | |
| 808 | +{ | |
| 809 | + text-decoration:underline !important; | |
| 810 | + color:var(--color_1) !important; | |
| 811 | +} | |
| 812 | +*#dm *.dmBody a.u_1331251441.hover span.text | |
| 813 | +{ | |
| 814 | + text-decoration:underline !important; | |
| 815 | + color:var(--color_1) !important; | |
| 816 | +} | |
| 817 | +*#dm *.dmBody a.u_1331251441:hover | |
| 818 | +{ | |
| 819 | + background-color:var(--color_3) !important; | |
| 820 | + background-image:none !important; | |
| 821 | +} | |
| 822 | +*#dm *.dmBody a.u_1331251441.hover | |
| 823 | +{ | |
| 824 | + background-color:var(--color_3) !important; | |
| 825 | + background-image:none !important; | |
| 826 | +} | |
| 827 | +*#dm *.dmBody div.u_1884387629 | |
| 828 | +{ | |
| 829 | + background-color:rgba(0,0,0,0.05) !important; | |
| 830 | +} | |
| 831 | +*#dm *.dmBody a.u_1331251441 | |
| 832 | +{ | |
| 833 | + border-style:solid !important; | |
| 834 | + border-width:2px !important; | |
| 835 | + border-color:var(--color_3) !important; | |
| 836 | + background-color:rgba(0,0,0,0) !important; | |
| 837 | + border-radius:20px 20px 20px 20px !important; | |
| 838 | +} | |
| 839 | +*#dm *.dmBody div.u_1748061203 .svg | |
| 840 | +{ | |
| 841 | + color:var(--color_1) !important; | |
| 842 | + fill:var(--color_1) !important; | |
| 843 | +} | |
| 844 | +*#dm *.dmBody a.u_1756842165 | |
| 845 | +{ | |
| 846 | + border-color:var(--color_3) !important; | |
| 847 | + border-style:solid !important; | |
| 848 | + border-width:2px !important; | |
| 849 | + border-radius:20px 20px 20px 20px !important; | |
| 850 | +} | |
| 851 | +*#dm *.dmBody *.u_1079271476 | |
| 852 | +{ | |
| 853 | + background-position:50% 50% !important; | |
| 854 | +} | |
| 855 | +*#dm *.dmBody *.u_1188563749 | |
| 856 | +{ | |
| 857 | + width:100% !important; | |
| 858 | +} | |
| 859 | +*#dm *.dmBody *.u_1167809611 | |
| 860 | +{ | |
| 861 | + background-position:50% 50% !important; | |
| 862 | +} | |
| 863 | +*#dm *.dmBody *.u_1425200428 | |
| 864 | +{ | |
| 865 | + width:100% !important; | |
| 866 | +} | |
| 867 | +*#dm *.dmBody *.u_1663891390 | |
| 868 | +{ | |
| 869 | + width:100% !important; | |
| 870 | +} | |
| 871 | +*#dm *.dmBody div.u_1386150379 hr | |
| 872 | +{ | |
| 873 | + background:linear-gradient(to right,currentColor,transparent) !important; | |
| 874 | + height:2px !important; | |
| 875 | + color:var(--color_1) !important; | |
| 876 | + border:none !important; | |
| 877 | +} | |
| 878 | +*#dm *.dmBody *.u_1525405860 | |
| 879 | +{ | |
| 880 | + width:100% !important; | |
| 881 | +} | |
| 882 | +*#dm *.dmBody *.u_1562201792 | |
| 883 | +{ | |
| 884 | + width:100% !important; | |
| 885 | +} | |
| 886 | +*#dm *.dmBody div.u_1599318515 hr | |
| 887 | +{ | |
| 888 | + background:linear-gradient(to right,currentColor,transparent) !important; | |
| 889 | + height:2px !important; | |
| 890 | + color:var(--color_1) !important; | |
| 891 | + border:none !important; | |
| 892 | +} | |
| 893 | +*#dm *.dmBody div.u_1713239492:before | |
| 894 | +{ | |
| 895 | + background-color:var(--color_1) !important; | |
| 896 | + opacity:0.4 !important; | |
| 897 | +} | |
| 898 | +*#dm *.dmBody div.u_1713239492.before | |
| 899 | +{ | |
| 900 | + background-color:var(--color_1) !important; | |
| 901 | + opacity:0.4 !important; | |
| 902 | +} | |
| 903 | +*#dm *.dmBody div.u_1713239492>.bgExtraLayerOverlay | |
| 904 | +{ | |
| 905 | + background-color:var(--color_1) !important; | |
| 906 | + opacity:0.4 !important; | |
| 907 | +} | |
| 908 | +*#dm *.dmBody div.u_1373323900 | |
| 909 | +{ | |
| 910 | + background-color:rgba(0,0,0,0) !important; | |
| 911 | +} | |
| 912 | +*#dm *.dmBody div.u_1406295359 .svg | |
| 913 | +{ | |
| 914 | + color:var(--color_1) !important; | |
| 915 | + fill:var(--color_1) !important; | |
| 916 | +} | |
| 917 | +*#dm *.dmBody div.u_1746905231 | |
| 918 | +{ | |
| 919 | + background-image:linear-gradient(90deg, rgba(66, 123, 202, 1) 0%, rgba(73, 174, 223, 1) 100%) !important; | |
| 920 | + background-origin:border-box !important; | |
| 921 | +} | |
| 922 | + | |
| 923 | +</style> | |
| 924 | + | |
| 925 | +<style id="pagestyleDevice" type="text/css"> | |
| 926 | + *#dm *.d-page-1716942098 DIV.dmInner | |
| 927 | +{ | |
| 928 | + background-repeat:no-repeat !important; | |
| 929 | + background-size:cover !important; | |
| 930 | + background-attachment:fixed !important; | |
| 931 | + background-position:50% 50% !important; | |
| 932 | +} | |
| 933 | +*#dm *.d-page-1716942098 DIV#dmSlideRightNavRight | |
| 934 | +{ | |
| 935 | + background-repeat:no-repeat !important; | |
| 936 | + background-image:none !important; | |
| 937 | + background-size:cover !important; | |
| 938 | + background-attachment:fixed !important; | |
| 939 | + background-position:50% 50% !important; | |
| 940 | +} | |
| 941 | +*#dm *.dmBody div.u_1867569646 | |
| 942 | +{ | |
| 943 | + height:40px !important; | |
| 944 | +} | |
| 945 | +*#dm *.dmBody a.u_1756842165 span.text | |
| 946 | +{ | |
| 947 | + font-size:20px !important; | |
| 948 | +} | |
| 949 | +*#dm *.dmBody div.u_1937526287 | |
| 950 | +{ | |
| 951 | + margin-left:20px !important; | |
| 952 | + padding-top:0px !important; | |
| 953 | + padding-left:20px !important; | |
| 954 | + padding-bottom:0px !important; | |
| 955 | + margin-top:0px !important; | |
| 956 | + margin-bottom:0px !important; | |
| 957 | + margin-right:20px !important; | |
| 958 | + padding-right:20px !important; | |
| 959 | +} | |
| 960 | +*#dm *.dmBody div.u_1121935101 | |
| 961 | +{ | |
| 962 | + height:600px !important; | |
| 963 | +} | |
| 964 | +@media (min-width:768px) and (max-width:1024px) {} | |
| 965 | +@media (min-width:1025px) {} | |
| 966 | +*#dm *.dmBody div.u_1221610193 | |
| 967 | +{ | |
| 968 | + height:20px !important; | |
| 969 | +} | |
| 970 | +*#dm *.dmBody div.u_1127078365 | |
| 971 | +{ | |
| 972 | + height:20px !important; | |
| 973 | +} | |
| 974 | +*#dm *.dmBody div.u_1288707829 | |
| 975 | +{ | |
| 976 | + height:20px !important; | |
| 977 | +} | |
| 978 | +*#dm *.dmBody div.u_1337411818 | |
| 979 | +{ | |
| 980 | + height:20px !important; | |
| 981 | +} | |
| 982 | +*#dm *.dmBody a.u_1756842165 | |
| 983 | +{ | |
| 984 | + float:none !important; | |
| 985 | + top:0px !important; | |
| 986 | + left:0px !important; | |
| 987 | + width:200px !important; | |
| 988 | + position:relative !important; | |
| 989 | + height:auto !important; | |
| 990 | + padding-top:10px !important; | |
| 991 | + padding-left:7px !important; | |
| 992 | + padding-bottom:10px !important; | |
| 993 | + min-height:40px !important; | |
| 994 | + max-width:100% !important; | |
| 995 | + padding-right:7px !important; | |
| 996 | + min-width:0 !important; | |
| 997 | + text-align:center !important; | |
| 998 | + margin-right:866px !important; | |
| 999 | + margin-left:0px !important; | |
| 1000 | + margin-top:20px !important; | |
| 1001 | + margin-bottom:10px !important; | |
| 1002 | +} | |
| 1003 | +*#dm *.dmBody a.u_1331251441 | |
| 1004 | +{ | |
| 1005 | + float:none !important; | |
| 1006 | + top:0px !important; | |
| 1007 | + left:0 !important; | |
| 1008 | + width:200px !important; | |
| 1009 | + position:relative !important; | |
| 1010 | + height:auto !important; | |
| 1011 | + padding-top:10px !important; | |
| 1012 | + padding-left:7px !important; | |
| 1013 | + padding-bottom:10px !important; | |
| 1014 | + min-height:40px !important; | |
| 1015 | + margin-right:auto !important; | |
| 1016 | + margin-left:auto !important; | |
| 1017 | + max-width:100% !important; | |
| 1018 | + margin-top:10px !important; | |
| 1019 | + margin-bottom:10px !important; | |
| 1020 | + padding-right:7px !important; | |
| 1021 | + min-width:0 !important; | |
| 1022 | + text-align:center !important; | |
| 1023 | +} | |
| 1024 | +*#dm *.dmBody a.u_1331251441 span.text | |
| 1025 | +{ | |
| 1026 | + font-size:18px !important; | |
| 1027 | +} | |
| 1028 | +*#dm *.dmBody div.u_1748061203 | |
| 1029 | +{ | |
| 1030 | + width:90px !important; | |
| 1031 | + height:90px !important; | |
| 1032 | +} | |
| 1033 | +*#dm *.dmBody div.u_1281514457 | |
| 1034 | +{ | |
| 1035 | + height:700px !important; | |
| 1036 | + width:1200px !important; | |
| 1037 | +} | |
| 1038 | +*#dm *.dmBody div.u_1004639188 | |
| 1039 | +{ | |
| 1040 | + float:none !important; | |
| 1041 | + top:0 !important; | |
| 1042 | + left:0 !important; | |
| 1043 | + width:auto !important; | |
| 1044 | + position:relative !important; | |
| 1045 | + height:auto !important; | |
| 1046 | + padding-top:90px !important; | |
| 1047 | + padding-left:40px !important; | |
| 1048 | + padding-bottom:90px !important; | |
| 1049 | + min-height:auto !important; | |
| 1050 | + max-width:100% !important; | |
| 1051 | + padding-right:40px !important; | |
| 1052 | + min-width:0 !important; | |
| 1053 | + text-align:start !important; | |
| 1054 | + background-position:50% 50% !important; | |
| 1055 | + background-attachment:initial !important; | |
| 1056 | + margin-left:0px !important; | |
| 1057 | + margin-top:0px !important; | |
| 1058 | + margin-bottom:0px !important; | |
| 1059 | + margin-right:0px !important; | |
| 1060 | +} | |
| 1061 | +*#dm *.dmBody div.u_1386150379 | |
| 1062 | +{ | |
| 1063 | + width:100px !important; | |
| 1064 | +} | |
| 1065 | +*#dm *.dmBody div.u_1425200428 | |
| 1066 | +{ | |
| 1067 | + float:none !important; | |
| 1068 | + top:0 !important; | |
| 1069 | + left:0 !important; | |
| 1070 | + width:calc(100% - 0px) !important; | |
| 1071 | + position:relative !important; | |
| 1072 | + padding-top:0 !important; | |
| 1073 | + padding-left:0 !important; | |
| 1074 | + padding-bottom:0 !important; | |
| 1075 | + margin-right:0 !important; | |
| 1076 | + margin-left:0 !important; | |
| 1077 | + max-width:100% !important; | |
| 1078 | + margin-top:13px !important; | |
| 1079 | + margin-bottom:0 !important; | |
| 1080 | + padding-right:0 !important; | |
| 1081 | + min-width:25px !important; | |
| 1082 | + text-align:start !important; | |
| 1083 | + height:auto !important; | |
| 1084 | +} | |
| 1085 | +*#dm *.dmBody div.u_1663891390 | |
| 1086 | +{ | |
| 1087 | + float:none !important; | |
| 1088 | + top:0 !important; | |
| 1089 | + left:0 !important; | |
| 1090 | + width:calc(100% - 0px) !important; | |
| 1091 | + position:relative !important; | |
| 1092 | + padding-top:0 !important; | |
| 1093 | + padding-left:0 !important; | |
| 1094 | + padding-bottom:0 !important; | |
| 1095 | + margin-right:auto !important; | |
| 1096 | + margin-left:auto !important; | |
| 1097 | + max-width:100% !important; | |
| 1098 | + margin-top:0 !important; | |
| 1099 | + margin-bottom:0 !important; | |
| 1100 | + padding-right:0 !important; | |
| 1101 | + min-width:25px !important; | |
| 1102 | + text-align:start !important; | |
| 1103 | +} | |
| 1104 | +*#dm *.dmBody div.u_1885054359 | |
| 1105 | +{ | |
| 1106 | + float:none !important; | |
| 1107 | + top:0 !important; | |
| 1108 | + left:0 !important; | |
| 1109 | + width:calc(100% - 0px) !important; | |
| 1110 | + position:relative !important; | |
| 1111 | + height:auto !important; | |
| 1112 | + padding-top:2px !important; | |
| 1113 | + padding-left:0 !important; | |
| 1114 | + padding-bottom:2px !important; | |
| 1115 | + margin-right:auto !important; | |
| 1116 | + margin-left:auto !important; | |
| 1117 | + max-width:100% !important; | |
| 1118 | + margin-top:4.46875px !important; | |
| 1119 | + margin-bottom:8px !important; | |
| 1120 | + padding-right:0 !important; | |
| 1121 | + min-width:25px !important; | |
| 1122 | +} | |
| 1123 | +*#dm *.dmBody div.u_1069114470 | |
| 1124 | +{ | |
| 1125 | + float:none !important; | |
| 1126 | + top:0 !important; | |
| 1127 | + left:0 !important; | |
| 1128 | + width:calc(100% - 0px) !important; | |
| 1129 | + position:relative !important; | |
| 1130 | + height:auto !important; | |
| 1131 | + padding-top:2px !important; | |
| 1132 | + padding-left:0 !important; | |
| 1133 | + padding-bottom:2px !important; | |
| 1134 | + margin-right:0 !important; | |
| 1135 | + margin-left:0 !important; | |
| 1136 | + max-width:170px !important; | |
| 1137 | + margin-top:8px !important; | |
| 1138 | + margin-bottom:0 !important; | |
| 1139 | + padding-right:0 !important; | |
| 1140 | + min-width:25px !important; | |
| 1141 | +} | |
| 1142 | +*#dm *.dmBody div.u_1386150379 | |
| 1143 | +{ | |
| 1144 | + width:100px !important; | |
| 1145 | +} | |
| 1146 | +*#dm *.dmBody div.u_1425200428 | |
| 1147 | +{ | |
| 1148 | + float:none !important; | |
| 1149 | + top:0 !important; | |
| 1150 | + left:0 !important; | |
| 1151 | + width:calc(100% - 0px) !important; | |
| 1152 | + position:relative !important; | |
| 1153 | + padding-top:0 !important; | |
| 1154 | + padding-left:0 !important; | |
| 1155 | + padding-bottom:0 !important; | |
| 1156 | + margin-right:0 !important; | |
| 1157 | + margin-left:0 !important; | |
| 1158 | + max-width:100% !important; | |
| 1159 | + margin-top:13px !important; | |
| 1160 | + margin-bottom:0 !important; | |
| 1161 | + padding-right:0 !important; | |
| 1162 | + min-width:25px !important; | |
| 1163 | + text-align:start !important; | |
| 1164 | + height:auto !important; | |
| 1165 | +} | |
| 1166 | +*#dm *.dmBody div.u_1663891390 | |
| 1167 | +{ | |
| 1168 | + float:none !important; | |
| 1169 | + top:0 !important; | |
| 1170 | + left:0 !important; | |
| 1171 | + width:calc(100% - 0px) !important; | |
| 1172 | + position:relative !important; | |
| 1173 | + padding-top:0 !important; | |
| 1174 | + padding-left:0 !important; | |
| 1175 | + padding-bottom:0 !important; | |
| 1176 | + margin-right:auto !important; | |
| 1177 | + margin-left:auto !important; | |
| 1178 | + max-width:100% !important; | |
| 1179 | + margin-top:0 !important; | |
| 1180 | + margin-bottom:0 !important; | |
| 1181 | + padding-right:0 !important; | |
| 1182 | + min-width:25px !important; | |
| 1183 | + text-align:start !important; | |
| 1184 | +} | |
| 1185 | +*#dm *.dmBody div.u_1885054359 | |
| 1186 | +{ | |
| 1187 | + float:none !important; | |
| 1188 | + top:0 !important; | |
| 1189 | + left:0 !important; | |
| 1190 | + width:calc(100% - 0px) !important; | |
| 1191 | + position:relative !important; | |
| 1192 | + height:auto !important; | |
| 1193 | + padding-top:2px !important; | |
| 1194 | + padding-left:0 !important; | |
| 1195 | + padding-bottom:2px !important; | |
| 1196 | + margin-right:auto !important; | |
| 1197 | + margin-left:auto !important; | |
| 1198 | + max-width:100% !important; | |
| 1199 | + margin-top:4.46875px !important; | |
| 1200 | + margin-bottom:8px !important; | |
| 1201 | + padding-right:0 !important; | |
| 1202 | + min-width:25px !important; | |
| 1203 | +} | |
| 1204 | +*#dm *.dmBody div.u_1069114470 | |
| 1205 | +{ | |
| 1206 | + float:none !important; | |
| 1207 | + top:0 !important; | |
| 1208 | + left:0 !important; | |
| 1209 | + width:calc(100% - 0px) !important; | |
| 1210 | + position:relative !important; | |
| 1211 | + height:auto !important; | |
| 1212 | + padding-top:2px !important; | |
| 1213 | + padding-left:0 !important; | |
| 1214 | + padding-bottom:2px !important; | |
| 1215 | + margin-right:0 !important; | |
| 1216 | + margin-left:0 !important; | |
| 1217 | + max-width:170px !important; | |
| 1218 | + margin-top:8px !important; | |
| 1219 | + margin-bottom:0 !important; | |
| 1220 | + padding-right:0 !important; | |
| 1221 | + min-width:25px !important; | |
| 1222 | +} | |
| 1223 | +*#dm *.dmBody div.u_1599318515 | |
| 1224 | +{ | |
| 1225 | + width:100px !important; | |
| 1226 | +} | |
| 1227 | +*#dm *.dmBody div.u_1025117848 | |
| 1228 | +{ | |
| 1229 | + margin-left:0 !important; | |
| 1230 | + padding-top:2px !important; | |
| 1231 | + padding-left:0 !important; | |
| 1232 | + padding-bottom:2px !important; | |
| 1233 | + margin-top:8px !important; | |
| 1234 | + margin-bottom:0 !important; | |
| 1235 | + margin-right:0 !important; | |
| 1236 | + padding-right:0 !important; | |
| 1237 | +} | |
| 1238 | +*#dm *.dmBody div.u_1962163079 | |
| 1239 | +{ | |
| 1240 | + float:none !important; | |
| 1241 | + top:0 !important; | |
| 1242 | + left:0 !important; | |
| 1243 | + width:calc(100% - 0px) !important; | |
| 1244 | + position:relative !important; | |
| 1245 | + height:auto !important; | |
| 1246 | + padding-top:2px !important; | |
| 1247 | + padding-left:0 !important; | |
| 1248 | + padding-bottom:2px !important; | |
| 1249 | + margin-right:0 !important; | |
| 1250 | + margin-left:0 !important; | |
| 1251 | + max-width:100% !important; | |
| 1252 | + margin-top:13.939px !important; | |
| 1253 | + margin-bottom:8px !important; | |
| 1254 | + padding-right:0 !important; | |
| 1255 | + min-width:25px !important; | |
| 1256 | +} | |
| 1257 | +*#dm *.dmBody div.u_1562201792 | |
| 1258 | +{ | |
| 1259 | + float:none !important; | |
| 1260 | + top:0 !important; | |
| 1261 | + left:0 !important; | |
| 1262 | + width:calc(100% - 0px) !important; | |
| 1263 | + position:relative !important; | |
| 1264 | + padding-top:0 !important; | |
| 1265 | + padding-left:0 !important; | |
| 1266 | + padding-bottom:0 !important; | |
| 1267 | + margin-right:0 !important; | |
| 1268 | + margin-left:0 !important; | |
| 1269 | + max-width:100% !important; | |
| 1270 | + margin-top:0 !important; | |
| 1271 | + justify-content:normal !important; | |
| 1272 | + align-items:normal !important; | |
| 1273 | + margin-bottom:0 !important; | |
| 1274 | + padding-right:0 !important; | |
| 1275 | + min-width:25px !important; | |
| 1276 | + text-align:start !important; | |
| 1277 | +} | |
| 1278 | +*#dm *.dmBody div.u_1599318515 | |
| 1279 | +{ | |
| 1280 | + width:100px !important; | |
| 1281 | +} | |
| 1282 | +*#dm *.dmBody div.u_1025117848 | |
| 1283 | +{ | |
| 1284 | + margin-left:0 !important; | |
| 1285 | + padding-top:2px !important; | |
| 1286 | + padding-left:0 !important; | |
| 1287 | + padding-bottom:2px !important; | |
| 1288 | + margin-top:8px !important; | |
| 1289 | + margin-bottom:0 !important; | |
| 1290 | + margin-right:0 !important; | |
| 1291 | + padding-right:0 !important; | |
| 1292 | +} | |
| 1293 | +*#dm *.dmBody div.u_1962163079 | |
| 1294 | +{ | |
| 1295 | + float:none !important; | |
| 1296 | + top:0 !important; | |
| 1297 | + left:0 !important; | |
| 1298 | + width:calc(100% - 0px) !important; | |
| 1299 | + position:relative !important; | |
| 1300 | + height:auto !important; | |
| 1301 | + padding-top:2px !important; | |
| 1302 | + padding-left:0 !important; | |
| 1303 | + padding-bottom:2px !important; | |
| 1304 | + margin-right:0 !important; | |
| 1305 | + margin-left:0 !important; | |
| 1306 | + max-width:100% !important; | |
| 1307 | + margin-top:13.939px !important; | |
| 1308 | + margin-bottom:8px !important; | |
| 1309 | + padding-right:0 !important; | |
| 1310 | + min-width:25px !important; | |
| 1311 | +} | |
| 1312 | +*#dm *.dmBody div.u_1562201792 | |
| 1313 | +{ | |
| 1314 | + float:none !important; | |
| 1315 | + top:0 !important; | |
| 1316 | + left:0 !important; | |
| 1317 | + width:calc(100% - 0px) !important; | |
| 1318 | + position:relative !important; | |
| 1319 | + padding-top:0 !important; | |
| 1320 | + padding-left:0 !important; | |
| 1321 | + padding-bottom:0 !important; | |
| 1322 | + margin-right:0 !important; | |
| 1323 | + margin-left:0 !important; | |
| 1324 | + max-width:100% !important; | |
| 1325 | + margin-top:0 !important; | |
| 1326 | + justify-content:normal !important; | |
| 1327 | + align-items:normal !important; | |
| 1328 | + margin-bottom:0 !important; | |
| 1329 | + padding-right:0 !important; | |
| 1330 | + min-width:25px !important; | |
| 1331 | + text-align:start !important; | |
| 1332 | +} | |
| 1333 | + | |
| 1334 | +</style> | |
| 1335 | + | |
| 1336 | +<!-- Flex Sections CSS --> | |
| 1337 | + | |
| 1338 | + | |
| 1339 | + | |
| 1340 | + | |
| 1341 | + | |
| 1342 | + | |
| 1343 | + | |
| 1344 | +<style id="globalFontSizeStyle" type="text/css"> | |
| 1345 | + .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-28, .size-28, .size-28 > font { font-size: 28px !important; } | |
| 1346 | +</style> | |
| 1347 | +<style id="pageFontSizeStyle" type="text/css"> | |
| 1348 | +</style> | |
| 1349 | + | |
| 1350 | + | |
| 1351 | + | |
| 1352 | + | |
| 1353 | +<style id="hideAnimFix"> | |
| 1354 | + .dmDesktopBody:not(.editGrid) [data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) [data-anim-extended] { | |
| 1355 | + visibility: hidden; | |
| 1356 | + } | |
| 1357 | + | |
| 1358 | + .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-extended] { | |
| 1359 | + visibility: hidden !important; | |
| 1360 | + } | |
| 1361 | + | |
| 1362 | + #dmRoot:not(.editGrid) .flex-element [data-anim-extended] { | |
| 1363 | + visibility: hidden; | |
| 1364 | + } | |
| 1365 | + | |
| 1366 | +</style> | |
| 1367 | + | |
| 1368 | + | |
| 1369 | + | |
| 1370 | + | |
| 1371 | +<style id="fontFallbacks"> | |
| 1372 | + @font-face { | |
| 1373 | + font-family: "Roboto Fallback"; | |
| 1374 | + src: local('Arial'); | |
| 1375 | + ascent-override: 92.6709%; | |
| 1376 | + descent-override: 24.3871%; | |
| 1377 | + size-adjust: 100.1106%; | |
| 1378 | + line-gap-override: 0%; | |
| 1379 | + }@font-face { | |
| 1380 | + font-family: "Montserrat Fallback"; | |
| 1381 | + src: local('Arial'); | |
| 1382 | + ascent-override: 84.9466%; | |
| 1383 | + descent-override: 22.0264%; | |
| 1384 | + size-adjust: 113.954%; | |
| 1385 | + line-gap-override: 0%; | |
| 1386 | + }@font-face { | |
| 1387 | + font-family: "Lato Fallback"; | |
| 1388 | + src: local('Arial'); | |
| 1389 | + ascent-override: 101.3181%; | |
| 1390 | + descent-override: 21.865%; | |
| 1391 | + size-adjust: 97.4159%; | |
| 1392 | + line-gap-override: 0%; | |
| 1393 | + }@font-face { | |
| 1394 | + font-family: "Pacifico Fallback"; | |
| 1395 | + src: local('Arial'); | |
| 1396 | + ascent-override: 140.9687%; | |
| 1397 | + descent-override: 49.0091%; | |
| 1398 | + size-adjust: 92.4319%; | |
| 1399 | + line-gap-override: 0%; | |
| 1400 | + }@font-face { | |
| 1401 | + font-family: "Courier Prime Fallback"; | |
| 1402 | + src: local('Arial'); | |
| 1403 | + ascent-override: 57.5122%; | |
| 1404 | + descent-override: 25.1616%; | |
| 1405 | + size-adjust: 135.8407%; | |
| 1406 | + line-gap-override: 0%; | |
| 1407 | + }@font-face { | |
| 1408 | + font-family: "Comfortaa Fallback"; | |
| 1409 | + src: local('Arial'); | |
| 1410 | + ascent-override: 74.2135%; | |
| 1411 | + descent-override: 19.7117%; | |
| 1412 | + size-adjust: 118.7115%; | |
| 1413 | + line-gap-override: 0%; | |
| 1414 | + } | |
| 1415 | +</style> | |
| 1416 | + | |
| 1417 | + | |
| 1418 | +<!-- End render the required css and JS in the head section --> | |
| 1419 | + | |
| 1420 | + | |
| 1421 | + | |
| 1422 | + | |
| 1423 | + | |
| 1424 | + | |
| 1425 | +<meta property="og:type" content="website"> | |
| 1426 | +<meta property="og:url" content="https://www.girs.ca/location/scott/rue-marie-flore"> | |
| 1427 | + | |
| 1428 | + <title> | |
| 1429 | + Jumelé à louer à Scott | Rue Marie-Flore | GIRS | |
| 1430 | + </title> | |
| 1431 | + <meta name="description" content="Découvrez nos jumelés à louer à Scott sur la rue Marie-Flore. Cour privée, climatisation, terrasse et milieu de vie paisible."/> | |
| 1432 | + | |
| 1433 | + <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"/> | |
| 1434 | + | |
| 1435 | + <meta name="twitter:card" content="summary"/> | |
| 1436 | + <meta name="twitter:title" content="Jumelé à louer à Scott | Rue Marie-Flore | GIRS"/> | |
| 1437 | + <meta name="twitter:description" content="Découvrez nos jumelés à louer à Scott sur la rue Marie-Flore. Cour privée, climatisation, terrasse et milieu de vie paisible."/> | |
| 1438 | + <meta property="og:description" content="Découvrez nos jumelés à louer à Scott sur la rue Marie-Flore. Cour privée, climatisation, terrasse et milieu de vie paisible."/> | |
| 1439 | + <meta property="og:title" content="Jumelé à louer à Scott | Rue Marie-Flore | GIRS"/> | |
| 1440 | + | |
| 1441 | + | |
| 1442 | + | |
| 1443 | + | |
| 1444 | +<!-- SYS- VVNfRElSRUNUX1BST0RVQ1RJT04= --> | |
| 1445 | +</head> | |
| 1446 | + | |
| 1447 | + | |
| 1448 | + | |
| 1449 | + | |
| 1450 | + | |
| 1451 | + | |
| 1452 | + | |
| 1453 | + | |
| 1454 | + | |
| 1455 | + | |
| 1456 | + | |
| 1457 | + | |
| 1458 | + | |
| 1459 | + | |
| 1460 | + | |
| 1461 | + | |
| 1462 | + | |
| 1463 | + | |
| 1464 | + | |
| 1465 | + | |
| 1466 | + | |
| 1467 | +<body id="dmRoot" data-page-alias="location/scott/rue-marie-flore" class="dmRoot dmDesktopBody fix-mobile-scrolling addCanvasBorder dmResellerSite mac safariFix dmLargeBody responsiveTablet " | |
| 1468 | + style="padding:0;margin:0;" | |
| 1469 | + | |
| 1470 | + > | |
| 1471 | + | |
| 1472 | + | |
| 1473 | + | |
| 1474 | + | |
| 1475 | + | |
| 1476 | + | |
| 1477 | + | |
| 1478 | + | |
| 1479 | + | |
| 1480 | + | |
| 1481 | + | |
| 1482 | + | |
| 1483 | + | |
| 1484 | + | |
| 1485 | + | |
| 1486 | + | |
| 1487 | +<!-- ========= Site Content ========= --> | |
| 1488 | +<div id="dm" class='dmwr'> | |
| 1489 | + | |
| 1490 | + <div class="dm_wrapper standard-var5 widgetStyle-3 standard"> | |
| 1491 | + <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> | |
| 1492 | +</div> | |
| 1493 | +</div> | |
| 1494 | + <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> | |
| 1495 | +</div> | |
| 1496 | + <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">À louer<span class="icon icon-angle-down"></span> | |
| 1497 | +</span> | |
| 1498 | +</a> | |
| 1499 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1500 | +</span> | |
| 1501 | +</a> | |
| 1502 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/scott/rue-amanda-gustave" class="unifiednav__item unav-item dmUDNavigationItem_010101104557 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Amanda-Gustave" data-auto="page-text-style">Rue Amanda-Gustave<span class="icon icon-angle-right"></span> | |
| 1503 | +</span> | |
| 1504 | +</a> | |
| 1505 | +</li> | |
| 1506 | + <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> | |
| 1507 | +</span> | |
| 1508 | +</a> | |
| 1509 | +</li> | |
| 1510 | + <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 dmNavItemSelected dmUDNavigationItem_010101665958 " target="" data-target-page-alias="" aria-current="page" data-auto="selected-page"> <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> | |
| 1511 | +</span> | |
| 1512 | +</a> | |
| 1513 | +</li> | |
| 1514 | +</ul> | |
| 1515 | +</li> | |
| 1516 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1517 | +</span> | |
| 1518 | +</a> | |
| 1519 | + <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> | |
| 1520 | +</span> | |
| 1521 | +</a> | |
| 1522 | +</li> | |
| 1523 | +</ul> | |
| 1524 | +</li> | |
| 1525 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1526 | +</span> | |
| 1527 | +</a> | |
| 1528 | + <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 Érables, Jumelé<span class="icon icon-angle-right"></span> | |
| 1529 | +</span> | |
| 1530 | +</a> | |
| 1531 | +</li> | |
| 1532 | + <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 Érables, Condo<span class="icon icon-angle-right"></span> | |
| 1533 | +</span> | |
| 1534 | +</a> | |
| 1535 | +</li> | |
| 1536 | +</ul> | |
| 1537 | +</li> | |
| 1538 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1539 | +</span> | |
| 1540 | +</a> | |
| 1541 | + <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> | |
| 1542 | +</span> | |
| 1543 | +</a> | |
| 1544 | +</li> | |
| 1545 | +</ul> | |
| 1546 | +</li> | |
| 1547 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1548 | +</span> | |
| 1549 | +</a> | |
| 1550 | + <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> | |
| 1551 | +</span> | |
| 1552 | +</a> | |
| 1553 | +</li> | |
| 1554 | +</ul> | |
| 1555 | +</li> | |
| 1556 | +</ul> | |
| 1557 | +</li> | |
| 1558 | + <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">À vendre<span class="icon icon-angle-down"></span> | |
| 1559 | +</span> | |
| 1560 | +</a> | |
| 1561 | + <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> | |
| 1562 | +</span> | |
| 1563 | +</a> | |
| 1564 | +</li> | |
| 1565 | +</ul> | |
| 1566 | +</li> | |
| 1567 | + <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> | |
| 1568 | +</span> | |
| 1569 | +</a> | |
| 1570 | + <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ésentation au TAL<span class="icon icon-angle-right"></span> | |
| 1571 | +</span> | |
| 1572 | +</a> | |
| 1573 | +</li> | |
| 1574 | +</ul> | |
| 1575 | +</li> | |
| 1576 | + <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étaires<span class="icon icon-angle-down"></span> | |
| 1577 | +</span> | |
| 1578 | +</a> | |
| 1579 | +</li> | |
| 1580 | + <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> | |
| 1581 | +</span> | |
| 1582 | +</a> | |
| 1583 | +</li> | |
| 1584 | +</ul> | |
| 1585 | +</nav> | |
| 1586 | +</div> | |
| 1587 | +</div> | |
| 1588 | +</div> | |
| 1589 | + <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> | |
| 1590 | +<b> <span style="text-decoration-line: underline;"></span> | |
| 1591 | +<span class="font-size-22 lh-1"> <span style="text-decoration-line: underline;"></span> | |
| 1592 | + <div style="text-align: left;"> <span style=""> <span style="text-decoration-line: underline;"></span> | |
| 1593 | +<span style=""> <span style="text-decoration-line: underline;"></span> | |
| 1594 | +<font style="color: rgb(255, 255, 255);"> <span style="text-decoration-line: underline;"></span> | |
| 1595 | +<span style="" class="font-size-22 lh-1"> <span style="text-decoration-line: underline;"></span> | |
| 1596 | +<b style=""> <span style="text-decoration-line: underline;"> <span style="font-weight: 700; font-size: 20px;">Nous contacter</span></span> | |
| 1597 | +</b> | |
| 1598 | +</span> | |
| 1599 | +</font> | |
| 1600 | +</span> | |
| 1601 | +</span> | |
| 1602 | +</div> | |
| 1603 | +</span> | |
| 1604 | +</b> | |
| 1605 | +</font> | |
| 1606 | +</div> | |
| 1607 | +</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 && dm_gaq_push_event('socialLink', 'click', 'Email')"> <span class="dmSocialEmail dm-social-icons-email oneIcon socialHubIcon style8" aria-hidden="true" data-hover-effect=""></span> | |
| 1608 | +</a> | |
| 1609 | + <a href="https://www.facebook.com/gestionimmobiliererivesud/" target="_blank" dm_dont_rewrite_url="true" aria-label="facebook" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Facebook')"> <span class="dmSocialFacebook dm-social-icons-facebook oneIcon socialHubIcon style8" aria-hidden="true" data-hover-effect=""></span> | |
| 1610 | +</a> | |
| 1611 | +</div> | |
| 1612 | +</div> | |
| 1613 | +</div> | |
| 1614 | + <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> | |
| 1615 | +</span> | |
| 1616 | + <span class="text">Appelez-nous</span> | |
| 1617 | +</a> | |
| 1618 | +</div> | |
| 1619 | +</div> | |
| 1620 | +</div> | |
| 1621 | +</div> | |
| 1622 | + <div class="layout-drawer-overlay" id="layout-drawer-overlay"></div> | |
| 1623 | +</div> | |
| 1624 | + <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> | |
| 1625 | +</div> | |
| 1626 | +</div> | |
| 1627 | +</div> | |
| 1628 | +</div> | |
| 1629 | + <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> | |
| 1630 | + <span class="hamburger__slice"></span> | |
| 1631 | + <span class="hamburger__slice"></span> | |
| 1632 | +</button> | |
| 1633 | + <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> | |
| 1634 | + <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 && dm_gaq_push_event('socialLink', 'click', 'Facebook')"> <span class="dmSocialFacebook dm-social-icons-facebook oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> | |
| 1635 | +</a> | |
| 1636 | + <a href="http://linkedin.com/" target="_blank" dm_dont_rewrite_url="true" aria-label="linkedin" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Linkedin')"> <span class="dmSocialLinkedin icon-linkedin oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> | |
| 1637 | +</a> | |
| 1638 | + <a href="mailto:immeubles@gestionirs.com" dm_dont_rewrite_url="true" aria-label="email" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Email')"> <span class="dmSocialEmail dm-social-icons-email oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> | |
| 1639 | +</a> | |
| 1640 | +</div> | |
| 1641 | +</div> | |
| 1642 | +</div> | |
| 1643 | +</div> | |
| 1644 | + <div class="u_1980771558 dmRespCol small-12 large-2 medium-2" id="1980771558"> <span id="1064055669"></span> | |
| 1645 | + <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> | |
| 1646 | +</svg> | |
| 1647 | +</div> | |
| 1648 | +</div> | |
| 1649 | + <div class="u_1016959372 dmRespCol small-12 large-2 medium-2" id="1016959372"> <span id="1845699766"></span> | |
| 1650 | + <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> | |
| 1651 | +</div> | |
| 1652 | +</div> | |
| 1653 | + <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> | |
| 1654 | +</div> | |
| 1655 | +</div> | |
| 1656 | + <div class="u_1522799502 dmRespCol small-12 large-10 medium-10" id="1522799502"> <span id="1481163886"></span> | |
| 1657 | + <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">À louer<span class="icon icon-angle-down"></span> | |
| 1658 | +</span> | |
| 1659 | +</a> | |
| 1660 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1661 | +</span> | |
| 1662 | +</a> | |
| 1663 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/scott/rue-amanda-gustave" class="unifiednav__item unav-item dmUDNavigationItem_010101104557 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Amanda-Gustave" data-auto="page-text-style">Rue Amanda-Gustave<span class="icon icon-angle-right"></span> | |
| 1664 | +</span> | |
| 1665 | +</a> | |
| 1666 | +</li> | |
| 1667 | + <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> | |
| 1668 | +</span> | |
| 1669 | +</a> | |
| 1670 | +</li> | |
| 1671 | + <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 dmNavItemSelected dmUDNavigationItem_010101665958 " target="" data-target-page-alias="" aria-current="page" data-auto="selected-page"> <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> | |
| 1672 | +</span> | |
| 1673 | +</a> | |
| 1674 | +</li> | |
| 1675 | +</ul> | |
| 1676 | +</li> | |
| 1677 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1678 | +</span> | |
| 1679 | +</a> | |
| 1680 | + <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> | |
| 1681 | +</span> | |
| 1682 | +</a> | |
| 1683 | +</li> | |
| 1684 | +</ul> | |
| 1685 | +</li> | |
| 1686 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1687 | +</span> | |
| 1688 | +</a> | |
| 1689 | + <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 Érables, Jumelé<span class="icon icon-angle-right"></span> | |
| 1690 | +</span> | |
| 1691 | +</a> | |
| 1692 | +</li> | |
| 1693 | + <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 Érables, Condo<span class="icon icon-angle-right"></span> | |
| 1694 | +</span> | |
| 1695 | +</a> | |
| 1696 | +</li> | |
| 1697 | +</ul> | |
| 1698 | +</li> | |
| 1699 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1700 | +</span> | |
| 1701 | +</a> | |
| 1702 | + <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> | |
| 1703 | +</span> | |
| 1704 | +</a> | |
| 1705 | +</li> | |
| 1706 | +</ul> | |
| 1707 | +</li> | |
| 1708 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1709 | +</span> | |
| 1710 | +</a> | |
| 1711 | + <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> | |
| 1712 | +</span> | |
| 1713 | +</a> | |
| 1714 | +</li> | |
| 1715 | +</ul> | |
| 1716 | +</li> | |
| 1717 | +</ul> | |
| 1718 | +</li> | |
| 1719 | + <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">À vendre<span class="icon icon-angle-down"></span> | |
| 1720 | +</span> | |
| 1721 | +</a> | |
| 1722 | + <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> | |
| 1723 | +</span> | |
| 1724 | +</a> | |
| 1725 | +</li> | |
| 1726 | +</ul> | |
| 1727 | +</li> | |
| 1728 | + <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> | |
| 1729 | +</span> | |
| 1730 | +</a> | |
| 1731 | + <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ésentation au TAL<span class="icon icon-angle-right"></span> | |
| 1732 | +</span> | |
| 1733 | +</a> | |
| 1734 | +</li> | |
| 1735 | +</ul> | |
| 1736 | +</li> | |
| 1737 | + <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étaires<span class="icon icon-angle-down"></span> | |
| 1738 | +</span> | |
| 1739 | +</a> | |
| 1740 | +</li> | |
| 1741 | + <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> | |
| 1742 | +</span> | |
| 1743 | +</a> | |
| 1744 | +</li> | |
| 1745 | +</ul> | |
| 1746 | +</nav> | |
| 1747 | +</div> | |
| 1748 | +</div> | |
| 1749 | +</div> | |
| 1750 | +</div> | |
| 1751 | +</div> | |
| 1752 | +</div> | |
| 1753 | + <div dmwrapped="true" id="dmFirstContainer" class="dmBody u_dmStyle_template_location/scott/rue-marie-flore 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> | |
| 1754 | +</div> | |
| 1755 | +</div> | |
| 1756 | +</div> | |
| 1757 | + <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/Jumel%C3%A9+Marie+Flore+1920x1080-1920w.jpg" alt="Une maison moderne avec beaucoup de fenêtres est située au sommet d'un champ verdoyant." id="1697979973" class="" width="1920" height="1080" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/Jumel%C3%A9+Marie+Flore+1920x1080.jpg" onerror="handleImageLoadError(this)"/></div> | |
| 1758 | +</div> | |
| 1759 | +</div> | |
| 1760 | +</div> | |
| 1761 | + <div class="dmRespRow" id="1958286401"> <div class="dmRespColsWrapper" id="1911295334"> <div class="dmRespCol large-12 medium-12 small-12" id="1257255836"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3 u_1748061203" data-element-type="graphic" data-widget-type="graphic" id="1748061203"> <a href="/" id="1241589688"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1383326881" class="svg u_1383326881" data-icon-custom="true"> <path d="m7.5078 36.023 1.2344 3.457 41.441-21.695 41.188 21.609 1.1211-3.3984-42.309-22.344z"></path> | |
| 1762 | + <path d="m9.2773 79.992h80.039v6.3555h-80.039z"></path> | |
| 1763 | + <path d="m50.113 19.18-35.93 18.781-0.054688 40.68h25.281l-0.003906-23.707c0-5.8398 4.75-10.59 10.594-10.59 5.8398 0 10.594 4.75 10.594 10.59v23.707h25.281v-40.68zm-24.574 40.852h-5.2852v-5.832h5.2852zm0-7.2383h-5.2852v-5.832h5.2852zm6.6914 7.2383h-5.2852v-5.832h5.2852zm0-7.2383h-5.2852v-5.832h5.2852zm17.066-15.086c-2.7695-0.32031-4.9609-2.5156-5.2852-5.2852h5.2852zm0-6.6875h-5.2852c0.32031-2.7695 2.5156-4.9609 5.2852-5.2812zm1.4062-5.2852c2.7695 0.32031 4.9609 2.5156 5.2812 5.2812h-5.2812zm0 11.973v-5.2852h5.2812c-0.32031 2.7695-2.5117 4.9648-5.2812 5.2852zm22.352 22.324h-5.2852v-5.832h5.2852zm0-7.2383h-5.2852v-5.832h5.2852zm6.6914 7.2383h-5.2852v-5.832h5.2852zm0-7.2383h-5.2852v-5.832h5.2852z"></path> | |
| 1764 | + <path d="m50 45.777c-5.0586 0-9.1562 4.1016-9.1562 9.1562v23.695h18.316l-0.003906-23.695c0-5.0547-4.0977-9.1562-9.1562-9.1562zm-0.70312 15.617h-6.1289v-5.707h6.1289zm0-7.1133h-6.0352c0.5-3.0117 2.9648-5.3594 6.0352-5.6719zm8.1094 11.43c0 0.87891-0.71094 1.5898-1.5898 1.5898s-1.5898-0.71094-1.5898-1.5898c0-0.87891 0.71094-1.5898 1.5898-1.5898s1.5898 0.71094 1.5898 1.5898zm-0.57422-4.3164h-6.1289v-5.707h6.1289zm-6.1289-7.1133v-5.6719c3.0703 0.3125 5.5352 2.6602 6.0352 5.6719z"></path> | |
| 1765 | +</svg> | |
| 1766 | +</a> | |
| 1767 | +</div> | |
| 1768 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1844873187" style="transition: opacity 1s ease-in-out;"> <h1 class="text-align-center"><span style="color: var(--color_2); display: unset;">Rue Marie Flore</span></h1> | |
| 1769 | +</div> | |
| 1770 | +</div> | |
| 1771 | +</div> | |
| 1772 | +</div> | |
| 1773 | + <div class="dmRespRow" id="1299034309"> <div class="dmRespColsWrapper" id="1051852715"> <div class="dmRespCol large-6 medium-6 small-12" id="1199127370"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1692095137" style="transition: opacity 1s ease-in-out;"><p><span style="display: initial;">C’est sur la paisible rue Marie-Flore, à Scott, dans la magnifique région de Chaudière-Appalaches, que vous trouverez votre maison jumelée locative idéale. Parfaitement intégrés à un quartier résidentiel moderne et en pleine croissance, nos jumelés neufs offrent un cadre de vie privilégié, alliant espace, confort et intimité.</span></p><p><span style="display: initial;"><span class="ql-cursor"></span></span></p><p><span style="display: initial;">Chaque unité propose un espace de vie lumineux, bien pensé et entièrement fonctionnel, avec une entrée privée, une cour arrière aménageable, un stationnement extérieur, ainsi qu’un système de climatisation pour un confort optimal en toute saison. Que vous soyez en couple, en famille ou à la recherche de plus d’intimité qu’un appartement traditionnel, ces maisons locatives répondront à vos besoins.</span></p></div> | |
| 1774 | +</div> | |
| 1775 | + <div class="dmRespCol large-6 medium-6 small-12" id="1839002717"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1894702091" style="transition: opacity 1s ease-in-out;"><p><span style="display: initial;">Les jumelés de la rue Marie-Flore sont également situés à proximité des écoles, CPE, parcs, commerces et services essentiels, tout en offrant la tranquillité d’un secteur résidentiel paisible. Vous profiterez d’un environnement parfait pour les familles, les professionnels en télétravail ou les jeunes retraités cherchant à combiner liberté, nature et commodité.</span></p><p><span style="display: initial;"><br/></span></p><p><span style="display: initial;">S’installer dans une maison jumelée à Scott, c’est faire le choix d’un style de vie moderne, où vous pourrez savourer chaque instant, à deux pas des grands axes, tout en étant entouré de verdure.</span></p></div> | |
| 1776 | +</div> | |
| 1777 | +</div> | |
| 1778 | +</div> | |
| 1779 | + <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> | |
| 1780 | +</div> | |
| 1781 | +</div> | |
| 1782 | +</div> | |
| 1783 | + <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> | |
| 1784 | +</div> | |
| 1785 | +</div> | |
| 1786 | + <div class="u_1871439213 dmRespCol small-12 large-8 medium-8" id="1871439213"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1047322935"><p><span style="display: initial;">Chacun de nos jumelées vous offre des extras appréciés, tels qu’un climatiseur mural, une grande terrasse privée donnant sur un espace vert, ainsi qu’une insonorisation supérieure qui vous garantit calme et intimité.</span></p><p><br/></p><p><span style="display: initial;">Les espaces de vie sont vastes, lumineux et bien aménagés, pour vous offrir une ambiance chaleureuse et fonctionnelle. Que vous soyez en couple, en famille ou à la recherche d’un lieu paisible où vous installer, ces jumelés locatifs à Scott sauront répondre à vos besoins en matière de confort, d’espace et de tranquillité.</span></p></div> | |
| 1787 | +</div> | |
| 1788 | +</div> | |
| 1789 | +</div> | |
| 1790 | + <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="1041530532">Un dessin en noir et blanc de trois fleurs poussant dans l'herbe.</title> | |
| 1791 | + <path d="m29.887 27.656c-0.011719-2.3672-1.4492-4.4922-3.6406-5.3906s-4.707-0.38672-6.375 1.2891c-1.6719 1.6797-2.168 4.1992-1.2578 6.3867 0.91016 2.1836 3.043 3.6094 5.4141 3.6094 1.5586-0.003906 3.0508-0.625 4.1523-1.7305 1.0977-1.1055 1.7148-2.6016 1.707-4.1641zm-5.8594 2.7656v0.003906c-1.1133 0.007813-2.1211-0.66016-2.5547-1.6836-0.43359-1.0273-0.20312-2.2109 0.57812-3.0039 0.78516-0.79297 1.9648-1.0352 2.9961-0.61328 1.0312 0.41797 1.707 1.418 1.7148 2.5312 0.007812 1.5195-1.2188 2.7578-2.7344 2.7695zm75.949 45.801v0.003906c-0.011718-0.10937-0.03125-0.21094-0.0625-0.3125-0.023437-0.09375-0.058593-0.1875-0.10156-0.27344-0.046875-0.085937-0.10156-0.16797-0.16406-0.24219-0.10938-0.16016-0.26172-0.29297-0.43359-0.38281-0.09375-0.054687-0.19141-0.10156-0.29297-0.13672-0.039063-0.011718-0.066406-0.039062-0.10547-0.050781h-0.003906c-0.125 0-0.25391-0.015625-0.37891-0.046875-0.039063 0-0.070313 0.019531-0.10938 0.023438v-0.003907c-0.11719 0.011719-0.23828 0.035157-0.35156 0.070313-0.078125 0.023437-0.14844 0.050781-0.22266 0.082031-0.17188 0.097656-0.33203 0.22266-0.47266 0.36328-0.066406 0.082032-0.125 0.16797-0.17578 0.26172-0.054687 0.085937-0.097656 0.17578-0.12891 0.27344-0.019531 0.035157-0.039062 0.074219-0.054687 0.11328-0.85156 3.6523-2.25 7.1562-4.1523 10.387-1.5742-1.8516-4.0781-5.3242-4.3047-8.9883v-0.003906c0-0.011719-0.007813-0.019531-0.007813-0.03125h-0.003906c-0.035157-0.61719-0.44922-1.1484-1.0391-1.3398-0.17188-0.054687-0.35547-0.082031-0.54297-0.078125-0.023438 0-0.042969-0.011718-0.066407-0.007812h0.003907c-0.41406 0.027344-0.80078 0.21484-1.0742 0.52734-1.6953 2.0195-2.9297 4.3828-3.6172 6.9297-0.17188-0.24219-0.33984-0.48438-0.51562-0.72266v-7.5352c1.0977 0.17969 2.2031 0.26563 3.3125 0.26563 3.0156 0.078124 5.9883-0.71875 8.5586-2.3008 5.1523-3.4453 6.457-10.293 6.5117-10.582 0.007812-0.10938 0.007812-0.21875-0.007813-0.32812 0.007813-0.085938 0.007813-0.17188 0-0.26172-0.066406-0.1875-0.14453-0.37109-0.22656-0.55078-0.13672-0.14844-0.27734-0.29297-0.42188-0.42969-0.078125-0.039062-0.15625-0.074218-0.23828-0.10547-0.09375-0.054688-0.19531-0.097656-0.30078-0.13281-0.28906-0.0625-7.1289-1.5234-12.32 1.9219-2.1133 1.5-3.793 3.5312-4.8633 5.8906v-20.953c0.97266-0.37891 1.7773-1.1016 2.2617-2.0273 0.39453 0.13672 0.80859 0.21484 1.2266 0.23438 2.3984 0 4.3438-1.9414 4.3438-4.3438-0.019532-0.41797-0.10156-0.83203-0.24219-1.2266 1.4297-0.73828 2.3281-2.2188 2.3281-3.8281 0-1.6133-0.89844-3.0898-2.3281-3.8281 0.49219-1.5156 0.09375-3.1758-1.0312-4.3008s-2.7891-1.5234-4.3008-1.0312c-0.73828-1.4297-2.2148-2.332-3.8281-2.332s-3.0898 0.90234-3.8281 2.332c-1.5156-0.47266-3.168-0.078125-4.3008 1.0352-0.61719 0.64844-1.0156 1.4805-1.1328 2.3711-1.6914-0.24609-6.3164-0.63672-10.016 1.8242-1.6133 1.1289-2.9375 2.625-3.8633 4.3633v-16.934c0.76562-0.35156 1.3945-0.9375 1.8008-1.6719 1.3516 0.44922 2.8398 0.078125 3.8164-0.96094 0.94531-1.0117 1.2969-2.4414 0.92188-3.7773 1.2344-0.66016 2.0039-1.9492 2.0039-3.3477 0-1.3984-0.76953-2.6836-2.0039-3.3477 0.37109-1.3516 0.007812-2.8008-0.96094-3.8164-1.0117-0.94531-2.4414-1.2969-3.7773-0.92188-0.66406-1.2305-1.9492-2-3.3477-2-1.4023 0-2.6875 0.76953-3.3516 2-1.3516-0.36719-2.7969-0.003906-3.8125 0.96094-0.94531 1.0117-1.2969 2.4453-0.92188 3.7812-1.2344 0.66016-2.0078 1.9492-2.0078 3.3477 0 1.4023 0.77344 2.6914 2.0078 3.3516-0.36719 1.3516-0.003906 2.7969 0.96094 3.8125 0.74219 0.71484 1.7383 1.1172 2.7695 1.1094 0.33984-0.019531 0.67578-0.085937 1-0.1875 0.40234 0.73047 1.0234 1.3125 1.7773 1.6641v6.6016c-0.83594-1.3047-1.9258-2.4297-3.1992-3.3125-4.5-3-10.461-1.7383-10.711-1.6797-0.097657 0.03125-0.19141 0.074219-0.27734 0.125-0.085937 0.027343-0.17188 0.066406-0.25391 0.10938-0.085938 0.066406-0.16406 0.14062-0.23438 0.22266-0.066406 0.0625-0.12891 0.12891-0.1875 0.20312-0.17969 0.23828-0.26562 0.53516-0.24219 0.83203-0.011718 0.097656-0.015625 0.19922-0.007812 0.30078 0.1875 0.95312 0.46094 1.8906 0.81641 2.7969 0.92969 2.5977 2.6367 4.8477 4.8828 6.4453 2.2383 1.3789 4.832 2.0781 7.4609 2.0039 0.65234 0 1.3047-0.035156 1.9531-0.10938v41.98c-2.1797 2.0078-4.0352 4.3398-5.5 6.918-0.96875-6.9727-3.1641-12.711-6.5-16.746-0.011719-0.011719-0.023437-0.015625-0.035156-0.027344h0.003906c-0.10547-0.11328-0.22656-0.21094-0.35938-0.28906-0.050781-0.035156-0.10547-0.066406-0.16016-0.09375-0.089844-0.035156-0.18359-0.0625-0.28125-0.082032-0.11719-0.035156-0.23828-0.050781-0.36328-0.054687-0.035156 0-0.066406-0.015625-0.10156-0.015625-0.054688 0-0.10156 0.03125-0.15625 0.039062h0.003906c-0.21484 0.03125-0.41797 0.10938-0.59375 0.23438-0.050781 0.023437-0.10156 0.050781-0.15234 0.082031-0.023437 0.027343-0.050781 0.058593-0.074218 0.089843-0.074219 0.078126-0.14062 0.16016-0.19922 0.25-0.054687 0.078126-0.10547 0.16016-0.14453 0.24609-0.035156 0.089844-0.0625 0.18359-0.082032 0.27734-0.023437 0.10547-0.039062 0.21094-0.042968 0.32031 0 0.039063-0.019532 0.074219-0.015625 0.11328 0.49219 8.1914-4.0781 16.062-6.9297 20.117h-0.003906c-0.42188-4.0156-0.082031-8.0742 1-11.965 0.007813-0.058594 0.015625-0.12109 0.015625-0.17969 0.019531-0.10156 0.027344-0.20703 0.023438-0.30859-0.003907-0.10938-0.019532-0.21484-0.046876-0.31641-0.007812-0.058594-0.015624-0.11719-0.027343-0.17188-0.011719-0.035156-0.042969-0.0625-0.058594-0.10156-0.046875-0.09375-0.10156-0.1875-0.16797-0.26953-0.054687-0.082031-0.12109-0.15625-0.1875-0.22656-0.070312-0.058594-0.14453-0.11328-0.22266-0.16016-0.09375-0.0625-0.19531-0.11719-0.30078-0.15625-0.035157-0.011718-0.058594-0.039062-0.09375-0.050781-0.054688-0.007812-0.10547-0.011719-0.16016-0.011719-0.11719-0.019531-0.23437-0.027343-0.35156-0.019531-0.09375 0.003907-0.19141 0.019531-0.28125 0.042969-0.066406 0.007812-0.13281 0.015625-0.19531 0.03125-0.066407 0.023438-0.13281 0.070312-0.19922 0.09375l-0.015625 0.007812c-1.9219 0.79297-3.668 1.9648-5.1289 3.4453v-16.375c1.1641 0.16797 2.3438 0.25391 3.5195 0.25391 3.625 0.09375 7.1992-0.86328 10.289-2.7617 6.1992-4.1367 7.7812-12.414 7.8477-12.766 0.007812-0.11328 0.007812-0.22656-0.007813-0.33984 0.007813-0.082032 0.007813-0.16406 0-0.24609-0.070313-0.1875-0.14453-0.375-0.23047-0.55469-0.0625-0.078124-0.12891-0.15234-0.20703-0.21875-0.0625-0.074218-0.13281-0.14453-0.21094-0.20703-0.082032-0.046875-0.17188-0.085937-0.25781-0.11328-0.09375-0.050781-0.1875-0.09375-0.28516-0.125-0.35156-0.074219-8.5938-1.8203-14.793 2.3438v-0.003906c-2.418 1.6875-4.3633 3.9609-5.6562 6.6055v-10.75c1.5352-0.45312 2.793-1.5625 3.4375-3.0312 0.62891 0.26172 1.3047 0.39453 1.9844 0.40234h0.03125c1.8008 0 3.4844-0.89453 4.4922-2.3906 1.0117-1.4922 1.2109-3.3906 0.53516-5.0586 1.9922-0.84766 3.2891-2.8047 3.293-4.9688-0.003907-0.72656-0.15234-1.4453-0.42969-2.1172-0.54688-1.2852-1.5781-2.3047-2.8711-2.8359 0.82812-2.0195 0.36719-4.3359-1.168-5.8867-1.5391-1.5469-3.8555-2.0195-5.8789-1.2031-0.84766-2-2.8125-3.3008-4.9883-3.2969-2.1719 0-4.1367 1.3008-4.9805 3.3047-2.0117-0.79297-4.3008-0.33203-5.8516 1.1758-1.543 1.5312-2.0156 3.8398-1.1992 5.8555-1.9961 0.85547-3.2852 2.8164-3.2852 4.9883 0.003906 2.168 1.2969 4.1289 3.293 4.9844-0.80859 2.0117-0.33984 4.3125 1.1953 5.8477 1.5312 1.5312 3.832 2.0039 5.8477 1.1953 0.63281 1.4609 1.8789 2.5703 3.4062 3.0312v25.922c-1.293-3.418-3.5625-6.3789-6.5273-8.5117-6.1992-4.1328-14.445-2.3945-14.797-2.3164-0.10547 0.03125-0.20312 0.078125-0.30078 0.13281-0.082031 0.027343-0.16406 0.0625-0.24219 0.10547-0.085938 0.066406-0.16406 0.14453-0.23047 0.22656-0.070313 0.0625-0.13281 0.12891-0.19141 0.19922-0.042969 0.082031-0.082031 0.16797-0.10938 0.25391-0.050782 0.097656-0.089844 0.19531-0.12109 0.30078-0.0078125 0.082032-0.0078125 0.16406-0.0039062 0.25-0.015625 0.11328-0.015625 0.22656-0.0039063 0.33984 0.0625 0.35156 1.6445 8.6016 7.8516 12.766h-0.003906c3.0664 1.8867 6.6172 2.8359 10.215 2.7422 1.4961 0.011719 2.9922-0.125 4.4648-0.41016v7.0391c-1.4141 2.1484-2.6094 4.4297-3.5742 6.8164-0.78906-3.0586-1.1641-6.207-1.1133-9.3633 0-0.023438-0.011719-0.042969-0.011719-0.066406h0.003907c-0.023438-0.20703-0.0625-0.41016-0.125-0.60938-0.011719-0.023437-0.007813-0.050781-0.019531-0.078124-0.039063-0.0625-0.085938-0.12109-0.13672-0.17969-0.050781-0.085938-0.11328-0.16797-0.18359-0.24219-0.15234-0.125-0.32031-0.23828-0.5-0.32812-0.097656-0.035157-0.20312-0.058594-0.30859-0.074219-0.066406-0.023438-0.13672-0.039063-0.21094-0.054688-0.035156 0-0.058594 0.011719-0.089844 0.011719-0.054688 0.003906-0.10938 0.007812-0.16797 0.019531-0.33203 0.003907-0.64844 0.125-0.89844 0.34375-3.8164 2.1094-6.9297 5.293-8.9492 9.1562-0.99219-1.8789-2.1602-3.6562-3.4883-5.3125-0.019532-0.023437-0.046875-0.035156-0.066406-0.054687-0.074219-0.074219-0.15625-0.14062-0.24609-0.19922-0.074219-0.0625-0.15234-0.11328-0.23438-0.16016-0.089844-0.039063-0.18359-0.066407-0.27734-0.085938-0.097656-0.03125-0.19922-0.050781-0.30078-0.0625-0.03125 0-0.058594-0.019531-0.089844-0.019531-0.074219 0.011719-0.14453 0.023438-0.21094 0.042969-0.10156 0.011719-0.19922 0.03125-0.29297 0.058593-0.10547 0.039063-0.20703 0.089844-0.30078 0.15234-0.0625 0.027344-0.12109 0.054688-0.17578 0.089844-0.023437 0.019531-0.03125 0.046875-0.054687 0.066406-0.078125 0.074219-0.14453 0.15625-0.20312 0.24609-0.058594 0.074219-0.11328 0.15234-0.16016 0.23828-0.035156 0.085938-0.0625 0.17578-0.082031 0.26562-0.03125 0.10547-0.054687 0.21094-0.0625 0.32031 0 0.027343-0.015625 0.054687-0.015625 0.082031l-0.0039062 16.219c0.023438 0.84766 0.71484 1.5234 1.5625 1.5234s1.543-0.67578 1.5625-1.5234v-11.168c0.65625 1.1367 1.207 2.3242 1.6523 3.5547 0.53516 1.3867 0.78125 2.8711 0.72266 4.3555-0.12891 0.84766 0.45312 1.6406 1.3008 1.7734 0.082031 0.011719 0.16406 0.019531 0.25 0.019531 0.76562 0 1.418-0.55859 1.5391-1.3125 0.14844-1.7891-0.082032-3.5859-0.67969-5.2773 1.4336-3.5859 3.8086-6.7148 6.8711-9.0664 0.30859 4 1.1133 7.9414 2.4023 11.742-0.36328 1.2188-0.54688 2.0078-0.54688 2.0078v-0.003906c-0.19141 0.83984 0.32812 1.6719 1.1641 1.8711 0.11328 0.023437 0.23047 0.039062 0.35156 0.039062 0.72656-0.003906 1.3555-0.50391 1.5195-1.2148 0.007813-0.027343 0.21094-0.91406 0.63281-2.2812 1.1445-3.8828 2.8594-7.5703 5.0938-10.949 1.0664-1.5664 2.3789-2.9531 3.8867-4.1055-0.73047 4.4844-0.65234 9.0625 0.23828 13.52 0.29687 1.5195 0.70703 3.0156 1.2148 4.4727 0.30469 0.80859 1.207 1.2188 2.0156 0.91406 0.80469-0.30469 1.2148-1.2031 0.91016-2.0117-0.36328-1.0742-0.66797-2.168-0.91406-3.2773 1.8359-2.2305 7.8281-10.129 9.1445-19.555 2.3828 5.1641 3.6641 10.766 3.7656 16.449 0 0.085937 0.007813 0.13672 0.011719 0.19922-0.76953 2.293-1.2539 4.6719-1.4414 7.0859-0.03125 0.85938 0.63672 1.5859 1.4961 1.625h0.066407 0.003906c0.83594-0.003906 1.5234-0.66406 1.5586-1.5 0.60547-6.9844 3.8359-13.48 9.043-18.176 0.86328-0.76172 1.7734-1.4648 2.7305-2.0977-0.80078 5.8555-0.41016 11.812 1.1484 17.512-0.26562 1.2109-0.44922 2.4375-0.54688 3.6719 0 0.85156 0.6875 1.543 1.5391 1.5469h0.019531c0.85156-0.007812 1.543-0.6875 1.5664-1.5352 0.12109-1.1797 0.3125-2.3516 0.57422-3.5078 0.66797-3.2578 1.7188-6.4258 3.1328-9.4336 1.6328 5.8906 5.8672 11.699 6.1016 12.012 0.023438 0.03125 0.066407 0.046874 0.089844 0.074218 0.10547 0.12891 0.23438 0.23828 0.37891 0.32031 0.054688 0.035156 0.10547 0.066406 0.16406 0.09375 0.1875 0.089843 0.39453 0.13672 0.60547 0.14062h0.019531 0.007813-0.003907c0.085938 0 0.17188-0.007813 0.25391-0.019532 0.22656-0.042968 0.44141-0.13281 0.62891-0.26953 0.011718-0.007812 0.027344 0 0.039062-0.011719 0.058594-0.058593 0.11719-0.12109 0.16797-0.1875 0.074219-0.066406 0.14062-0.14062 0.19922-0.22266 0.089844-0.17578 0.16406-0.36328 0.22656-0.55469 0.003906-0.18359 0.011719-0.37109 0.015625-0.55859-0.011719-0.058594-0.83594-5.4336 1.3438-13.5 0.67188 0.75781 1.3008 1.5156 1.8711 2.2812 1.0586 1.3711 2.0195 2.8164 2.875 4.3242 1.375 2.3281 2.4062 4.8398 3.0625 7.4609 0.14453 0.73438 0.78906 1.2617 1.5352 1.2656 0.10156 0 0.20312-0.011718 0.30078-0.03125 0.84375-0.16016 1.3984-0.97656 1.2383-1.8242-0.67578-2.7891-1.7422-5.4648-3.168-7.9531 0.25391-2.0117 0.82422-3.9688 1.6992-5.7969 1.0859 2.8242 2.6914 5.418 4.7266 7.6562-0.47656 0.57812-0.99219 1.1211-1.543 1.625-0.17188 0.15625-0.33594 0.32422-0.48828 0.5-0.32422 0.47656-0.35938 1.0898-0.09375 1.5977 0.26953 0.51172 0.79688 0.82812 1.3711 0.83203 0.52344 0 1.0195-0.23828 1.3477-0.64844 1.0156-0.9375 1.9258-1.9805 2.7188-3.1094 1.0078-1.4219 1.8867-2.9297 2.625-4.5078v13.121c0.023438 0.84766 0.71484 1.5234 1.5625 1.5234s1.543-0.67578 1.5625-1.5234v-22.102c-0.003906-0.03125-0.023437-0.070312-0.027344-0.10938zm-11.785-11.023c2.7539-1.8281 6.25-1.8594 8.2695-1.6836-0.62109 1.9258-2 5.1289-4.7305 6.9531-2.7461 1.8242-6.2422 1.8711-8.2656 1.707 0.62109-1.9375 2-5.1562 4.7266-6.9766zm-42.102-35.328c-1.6953-1.2617-2.9844-2.9922-3.707-4.9805-0.082031-0.21484-0.14453-0.39844-0.21094-0.60156 2.3164-0.23828 4.6484 0.26172 6.6602 1.4297 1.8594 1.4062 3.2227 3.3672 3.9023 5.5977-2.3125 0.23047-4.6406-0.27734-6.6484-1.4453zm-13.02 19.035c3.6367-2.4453 8.3359-2.3594 10.762-2.1133-0.71094 2.3398-2.4453 6.7148-6.082 9.1406-3.6602 2.4258-8.3516 2.3555-10.773 2.1133 0.70313-2.3359 2.4297-6.7109 6.0938-9.1406zm-23.461 20.324c-3.6406-2.4453-5.3789-6.8125-6.0898-9.1484 2.4297-0.25 7.1289-0.33594 10.766 2.0859 3.6602 2.4453 5.3867 6.8125 6.0898 9.1445-2.4219 0.25-7.1133 0.33984-10.766-2.082zm14.504-29.938c-1.2578 0-2.2773-1.0195-2.2773-2.2812v-0.60156 0.003906c0-0.52344-0.26172-1.0078-0.69531-1.2969-0.43359-0.29297-0.98438-0.34766-1.4648-0.14844-0.19141 0.082031-0.36328 0.19531-0.51172 0.33984l-0.42187 0.42188c-0.89453 0.89844-2.3477 0.89844-3.2422 0-0.89453-0.89453-0.89453-2.3477 0-3.2422l0.42188-0.42188c0.14453-0.14453 0.26172-0.31641 0.34375-0.51172 0.078125-0.1875 0.11719-0.39453 0.12109-0.59766 0-0.019531-0.011719-0.035156-0.011719-0.054687v-0.003906c-0.003906-0.18359-0.042969-0.36719-0.10938-0.53906-0.070313-0.14844-0.16016-0.28906-0.26953-0.41016-0.027344-0.03125-0.035156-0.070313-0.066406-0.10156v0.003906c-0.14453-0.14453-0.31641-0.25781-0.50391-0.33594-0.19141-0.082031-0.39453-0.12109-0.60156-0.12109h-0.60547c-1.2695 0-2.3008-1.0312-2.3008-2.3008s1.0312-2.3008 2.3008-2.3008h0.60156c0.21094 0 0.41797-0.042969 0.61328-0.125l0.046875-0.035157c0.17188-0.078124 0.32812-0.1875 0.46094-0.32422 0.007813-0.007813 0.015625-0.011719 0.023438-0.015625l0.003906-0.003907c0.042969-0.058593 0.078125-0.12109 0.11328-0.1875 0.16016-0.17969 0.25-0.41016 0.25391-0.64844 0.023437-0.074219 0.035156-0.14844 0.046874-0.22266 0-0.011719-0.007812-0.019531-0.007812-0.03125-0.007812-0.12109-0.035156-0.24609-0.074219-0.36328-0.011719-0.078126-0.027343-0.15625-0.054687-0.23047-0.039063-0.070313-0.085938-0.13672-0.13672-0.19922-0.058594-0.10547-0.12891-0.20312-0.21094-0.29297-0.007813-0.007812-0.011719-0.019531-0.019532-0.027343l-0.38281-0.34766h0.003906c-0.89844-0.89844-0.90625-2.3555-0.011719-3.2617 0.90625-0.875 2.3398-0.87891 3.2539-0.007812l0.42187 0.42188c0.44531 0.44531 1.1172 0.57812 1.6992 0.33984 0.58594-0.24219 0.96484-0.80859 0.96875-1.4414v-0.57422c-0.035156-0.63281 0.19141-1.25 0.625-1.707 0.43359-0.46094 1.0391-0.71875 1.6719-0.71875 0.63281 0 1.2344 0.25781 1.6719 0.71875 0.43359 0.45703 0.66016 1.0742 0.625 1.707v0.57422c0 0.52344 0.26172 1.0078 0.69531 1.2969 0.43359 0.28906 0.98047 0.34375 1.4648 0.14453 0.1875-0.074219 0.36328-0.19141 0.50781-0.33594l0.42188-0.42188v-0.003906c0.89453-0.90625 2.3516-0.91797 3.2578-0.023438 0.90625 0.89063 0.91797 2.3477 0.027343 3.2539l-0.42578 0.39062c-0.007812 0.007812-0.011719 0.019531-0.019531 0.027344h0.003906c-0.12109 0.16406-0.23828 0.33203-0.35156 0.5-0.023437 0.074218-0.039062 0.15234-0.054687 0.23047-0.035156 0.11719-0.0625 0.24219-0.070313 0.36719-0.003906 0.007812-0.003906 0.019531-0.007812 0.027344 0.011719 0.074218 0.023438 0.14844 0.046875 0.22266 0.003906 0.23828 0.09375 0.46875 0.25391 0.64844 0.03125 0.066407 0.070313 0.12891 0.11328 0.19141 0.007813 0.007812 0.015626 0.007812 0.023438 0.015624 0.13281 0.13672 0.28906 0.24609 0.46484 0.32422 0.019531 0.007813 0.03125 0.027344 0.050781 0.03125l-0.003906 0.003907c0.19531 0.082031 0.40234 0.125 0.61328 0.125h0.57422c0.92188-0.011719 1.7578 0.53125 2.1211 1.375 0.12109 0.29687 0.1875 0.61719 0.19141 0.9375-0.007813 1.2695-1.043 2.2891-2.3086 2.2812h-0.57031c-0.20703 0.003906-0.41016 0.042968-0.60156 0.12109-0.1875 0.082031-0.35547 0.19531-0.5 0.33984-0.027344 0.027344-0.035156 0.066406-0.0625 0.10156v-0.003907c-0.24609 0.25781-0.37891 0.59766-0.37891 0.94922 0 0.019531-0.011719 0.035156-0.011719 0.058594 0 0.41797 0.16797 0.81641 0.46484 1.1094l0.41797 0.41797c0.43359 0.42578 0.67969 1.0117 0.67969 1.6211s-0.24609 1.1914-0.67969 1.6211c-0.43359 0.43359-1.0234 0.67578-1.6328 0.67578h-0.011719c-0.60547 0-1.1836-0.24219-1.6016-0.67578l-0.42188-0.42188c-0.44922-0.44922-1.1172-0.58203-1.7031-0.33984-0.58203 0.23828-0.96484 0.80859-0.96875 1.4375v0.60156c-0.003906 0.60938-0.25 1.1953-0.68359 1.6211-0.4375 0.42969-1.0234 0.66797-1.6367 0.66016zm38.375-4.2812h0.003907c2.0117-1.168 4.3398-1.6758 6.6562-1.4453-0.10547 0.32031-0.23438 0.66797-0.38672 1.0312-0.73438 1.8164-1.9531 3.3945-3.5234 4.5664-2.0078 1.168-4.332 1.6758-6.6445 1.4492 0.67578-2.2305 2.0391-4.1914 3.8984-5.6016zm-5.8711-20.27c-0.29297 0.29297-0.45703 0.69141-0.45703 1.1055v0.36719c0 0.90625-1.6289 0.94531-1.6289 0v-0.36719c-0.003906-0.41406-0.16797-0.8125-0.46094-1.1055-0.007812-0.007813-0.015624-0.007813-0.023437-0.015626-0.26172-0.26172-0.60938-0.41016-0.97656-0.41797-0.035156 0-0.066406-0.019532-0.10156-0.019532h0.003906c-0.41406 0-0.80859 0.16797-1.1016 0.45703l-0.25 0.25c-0.32812 0.3125-0.83594 0.33203-1.1797 0.039062-0.32422-0.33203-0.33203-0.85938-0.015625-1.1992l0.26562-0.26953c0.007813-0.007812 0.007813-0.015625 0.015625-0.023437 0.26172-0.26562 0.41406-0.61719 0.42188-0.98828 0-0.03125 0.015625-0.058594 0.015625-0.089844 0-0.41406-0.16797-0.8125-0.45703-1.1055-0.007812-0.007813-0.019531-0.011719-0.027344-0.019531v0.003906c-0.26953-0.26953-0.63281-0.42188-1.0117-0.42578-0.023438 0-0.042969-0.011719-0.0625-0.011719h-0.36328c-0.21875 0.003906-0.42969-0.074219-0.58594-0.22656-0.15625-0.14844-0.24219-0.35938-0.24609-0.57422 0-0.22266 0.085937-0.43359 0.24219-0.58984s0.36719-0.24219 0.58984-0.23828h0.36328c0.39844 0 0.78516-0.15625 1.0703-0.4375 0.007812-0.007813 0.019531-0.011719 0.03125-0.019532 0.28906-0.29297 0.45703-0.6875 0.45703-1.1016 0-0.03125-0.015625-0.058594-0.015625-0.085938v-0.003906c-0.007812-0.37109-0.16016-0.72656-0.42188-0.98828-0.007812-0.007813-0.007812-0.015625-0.015625-0.023437l-0.25391-0.25391 0.003906-0.003906c-0.32031-0.32422-0.33594-0.83594-0.039062-1.1797 0.33594-0.3125 0.85547-0.32031 1.2031-0.015626l0.26953 0.26953c0.14453 0.14453 0.31641 0.26172 0.50781 0.33984 0.48438 0.19531 1.0312 0.14062 1.4648-0.14844s0.69531-0.77344 0.69531-1.2969v-0.375c0-0.94531 1.6328-0.90625 1.6289 0v0.36328c0.003906 0.63281 0.38672 1.1992 0.96875 1.4375 0.58203 0.24219 1.2539 0.10938 1.7031-0.33594l0.25-0.25391c0.32812-0.3125 0.83594-0.32422 1.1797-0.035156 0.32422 0.33203 0.33203 0.85938 0.015624 1.1992l-0.26562 0.26953c-0.007813 0.007813-0.011719 0.015625-0.015626 0.023438-0.13672 0.14062-0.24609 0.30469-0.32031 0.48438-0.0625 0.16016-0.09375 0.32812-0.097656 0.5 0 0.03125-0.019532 0.058593-0.019532 0.089843 0 0.20703 0.039063 0.41016 0.12109 0.60156 0.078125 0.1875 0.19141 0.36328 0.33984 0.50781 0.007812 0.007812 0.019531 0.011718 0.03125 0.019531h-0.003906c0.28906 0.27734 0.67188 0.43359 1.0742 0.43359h0.36328c0.21875-0.007812 0.43359 0.074219 0.59375 0.22656 0.15625 0.15625 0.24609 0.36719 0.24609 0.58594 0 0.22266-0.089844 0.43359-0.24609 0.58594-0.16016 0.15234-0.375 0.23828-0.59375 0.23047h-0.36328c-0.035156 0-0.0625 0.015625-0.09375 0.019531l-0.003906-0.003906c-0.36719 0.007812-0.71875 0.16016-0.98047 0.42188-0.007813 0.007812-0.019532 0.007812-0.023438 0.015625-0.29297 0.29297-0.45703 0.69141-0.46094 1.1055 0 0.03125 0.015626 0.058594 0.019532 0.089844 0.003906 0.37109 0.15625 0.72656 0.41797 0.98828 0.007813 0.007812 0.007813 0.015624 0.015626 0.023437l0.25391 0.25391c0.32812 0.32812 0.33594 0.85938 0.023437 1.1992-0.33594 0.31641-0.85547 0.32812-1.1992 0.023438l-0.26953-0.27344h-0.003906c-0.28906-0.29297-0.6875-0.45703-1.0977-0.46094-0.035157 0-0.066407 0.019532-0.10156 0.019532v0.003906c-0.16797 0.003906-0.33203 0.039062-0.49219 0.097656-0.17969 0.074219-0.34375 0.18359-0.48047 0.32031-0.019531 0.003906-0.03125 0.003906-0.039062 0.011719zm21.852 41.582c-1.0312-1.8008-2.4531-3.3516-4.1602-4.5312-5.168-3.4883-12.004-2.0234-12.301-1.957-0.10547 0.035156-0.20703 0.078124-0.30078 0.13672-0.082031 0.027344-0.16016 0.0625-0.23438 0.10156-0.085937 0.070312-0.16797 0.14844-0.23438 0.23047-0.070312 0.0625-0.12891 0.12891-0.1875 0.20312-0.046875 0.085938-0.085937 0.17578-0.11719 0.26953-0.046875 0.089844-0.082032 0.18359-0.11328 0.28125-0.007812 0.09375-0.007812 0.1875 0 0.27734-0.011718 0.10547-0.015624 0.20703-0.003906 0.3125 0.054688 0.28906 1.3594 7.1406 6.5195 10.586 2.5664 1.582 5.5352 2.3789 8.5508 2.3008 0.86328 0 1.7266-0.054687 2.5859-0.16016v14.484c-0.42578-0.46094-0.83203-0.91797-1.3008-1.3867-0.011719-0.011718-0.03125-0.015625-0.042969-0.027344-0.16797-0.12109-0.34375-0.23047-0.52734-0.32422-0.015624-0.007813-0.027343-0.019532-0.042968-0.023438v-0.003906c-0.074219-0.011719-0.14844-0.023438-0.22266-0.027344-0.10938-0.023437-0.21875-0.039062-0.32813-0.039062-0.10156 0.007812-0.19922 0.027344-0.29297 0.058594-0.21484 0.027343-0.41406 0.12109-0.57031 0.26953-0.0625 0.035156-0.125 0.074219-0.17969 0.11719-0.011719 0.011719-0.015625 0.027344-0.027344 0.039063-0.12109 0.16797-0.23047 0.34766-0.32812 0.53125-0.007813 0.015625-0.019531 0.027343-0.023437 0.042969-1.2812 3.7891-2.0703 7.7266-2.3438 11.715-1.7266-3.1719-3.3789-7.1094-3.1836-10.117-0.003906-0.0625-0.011719-0.12109-0.027344-0.18359 0-0.20312-0.050781-0.40625-0.14844-0.58594-0.039062-0.089843-0.089843-0.17578-0.14844-0.25391-0.0625-0.082031-0.13672-0.16016-0.21875-0.23047-0.039063-0.046876-0.082031-0.089844-0.125-0.12891-0.03125-0.019531-0.066406-0.023437-0.10156-0.042969-0.089843-0.054687-0.1875-0.097656-0.28906-0.12891-0.09375-0.039062-0.19141-0.0625-0.28906-0.082031-0.039063 0-0.070313-0.027344-0.10938-0.03125l-0.003906 0.003906c-0.054687 0.003907-0.10938 0.011719-0.16406 0.023438-0.125 0.003906-0.24609 0.023437-0.36719 0.058593-0.039062 0.011719-0.078125 0.027344-0.11719 0.046876v-0.003907c-0.15625 0.058594-0.30078 0.14453-0.42969 0.25-0.019531 0.015625-0.039062 0.039063-0.058593 0.054688v0.003906c-0.089844 0.066406-0.17188 0.14453-0.24609 0.23047-1.7031 2.5195-3.0703 5.25-4.0703 8.125-0.5625-4.4844-0.33594-9.0312 0.66406-13.438 0.011718-0.074219 0.011718-0.14844 0.007812-0.22266 0.015625-0.10156 0.019532-0.21094 0.011719-0.31641-0.015625-0.10938-0.042969-0.21484-0.085937-0.31641-0.011719-0.070313-0.03125-0.14062-0.054688-0.20703-0.011719-0.019532-0.03125-0.03125-0.039062-0.054688-0.058594-0.09375-0.125-0.17969-0.20313-0.25781-0.10156-0.15625-0.25391-0.27734-0.43359-0.34375-0.089844-0.054688-0.1875-0.10156-0.28906-0.13672-0.023437-0.007813-0.039062-0.023437-0.0625-0.03125v0.003906c-0.078125-0.007812-0.15234-0.011719-0.23047-0.007812-0.23047-0.039063-0.46875-0.007813-0.67969 0.085937-0.054688 0.011719-0.10547 0.027344-0.15625 0.042969-0.027344 0.011719-0.050781 0.03125-0.078125 0.046875s-0.054687 0.027344-0.078125 0.046875h-0.003906c-1.2305 0.62891-2.4141 1.3438-3.543 2.1406v-30.266c0.86719 0.12891 1.7422 0.19531 2.6172 0.19141 2.6328 0.070313 5.2305-0.62891 7.4727-2.0117 1.0117-0.69531 1.9102-1.543 2.6562-2.5195 0.34766 0.39062 0.76562 0.71094 1.2305 0.94922-0.13672 0.39062-0.21875 0.80078-0.23828 1.2148-0.054687 1.3867 0.58203 2.7109 1.6992 3.5312 1.1172 0.82422 2.5703 1.0352 3.875 0.57031 0.48828 0.92578 1.293 1.6484 2.2695 2.0273zm-1.1445 5.0117c-2.0234 0.16406-5.5156 0.12109-8.2617-1.6992-2.7305-1.8242-4.1094-5.0273-4.7344-6.9531 2.0156-0.17188 5.5-0.13281 8.2383 1.7109 2.7461 1.8203 4.1328 5.0156 4.7578 6.9414zm4.0508-18.863h-0.003906c-0.078125 0.1875-0.11719 0.39062-0.11719 0.59766v0.42188c0 0.67578-0.54688 1.2227-1.2227 1.2227s-1.2227-0.54688-1.2227-1.2227v-0.42188c-0.003906-0.62891-0.38672-1.1992-0.96875-1.4375-0.58203-0.24219-1.2539-0.10547-1.6992 0.33984l-0.30078 0.30078v-0.003907c-0.47656 0.47656-1.25 0.47656-1.7266 0-0.47656-0.47656-0.47656-1.25 0-1.7266l0.30078-0.30078c0.007813-0.007813 0.007813-0.019532 0.015626-0.023438 0.26562-0.26172 0.41406-0.61719 0.42187-0.98828 0-0.03125 0.019532-0.058594 0.019532-0.089844-0.003906-0.41406-0.16797-0.80859-0.46094-1.1016-0.007812-0.007812-0.019531-0.011718-0.027344-0.019531v0.003907c-0.14062-0.13281-0.30078-0.24219-0.48047-0.31641-0.16797-0.066406-0.34766-0.10156-0.53125-0.10547-0.023438 0-0.039063-0.011718-0.0625-0.011718h-0.44922l-0.003906-0.003906c-0.67188-0.007813-1.2148-0.55078-1.2227-1.2227 0.003907-0.16406 0.03125-0.32422 0.085938-0.47656 0.20703-0.44531 0.64844-0.73438 1.1367-0.74609h0.45312c0.39844 0.003906 0.78516-0.15234 1.0703-0.43359 0.007813-0.007812 0.019532-0.011719 0.03125-0.019531 0.29297-0.29297 0.45703-0.6875 0.46094-1.0977 0-0.03125-0.015625-0.058594-0.019532-0.085938v-0.003906c-0.003906-0.17188-0.039062-0.34375-0.097656-0.50781-0.078125-0.17578-0.18359-0.33984-0.32031-0.48047-0.007813-0.007813-0.007813-0.019531-0.015625-0.023438l-0.30078-0.30078c-0.47656-0.47656-0.47656-1.25-0.003907-1.7266 0.47656-0.47656 1.25-0.48047 1.7266-0.003907l0.30078 0.30078c0.14453 0.14453 0.32031 0.26172 0.50781 0.33984 0.19141 0.078125 0.39453 0.12109 0.60156 0.12109 0.023438 0 0.042969-0.011719 0.066406-0.011719v-0.003906c0.17969-0.003906 0.35938-0.039063 0.52734-0.10547 0.17969-0.074218 0.34375-0.18359 0.48047-0.31641 0.007812-0.007812 0.019531-0.011719 0.027343-0.019531 0.29297-0.29297 0.46094-0.6875 0.46094-1.1055v-0.45703c0-0.67578 0.54688-1.2227 1.2227-1.2227 0.67188 0 1.2227 0.54688 1.2227 1.2227v0.42969c0 0.20312 0.039063 0.40625 0.12109 0.59766 0.078125 0.19141 0.19141 0.36328 0.33594 0.50781 0.007812 0.007813 0.019531 0.011719 0.027344 0.019531 0.26953 0.26562 0.62891 0.41797 1.0078 0.42188 0.023438 0 0.042969 0.011719 0.066406 0.011719v0.003906c0.41797-0.003906 0.8125-0.16797 1.1094-0.46094l0.30078-0.30078h-0.003906c0.23047-0.22656 0.53906-0.35547 0.86328-0.35547 0.32422 0 0.63672 0.12891 0.86328 0.35547 0.47656 0.47656 0.47656 1.25 0 1.7266l-0.30078 0.30078c-0.007813 0.007813-0.007813 0.015625-0.015626 0.023438-0.13672 0.14062-0.24219 0.30469-0.32031 0.48438-0.058594 0.16016-0.09375 0.32812-0.097656 0.5 0 0.03125-0.019532 0.058594-0.019532 0.089844 0.003907 0.41406 0.16797 0.80859 0.46094 1.1016 0.007812 0.007812 0.019531 0.011719 0.03125 0.019531 0.28516 0.27734 0.66797 0.43359 1.0703 0.43359h0.42578-0.003906c0.66406 0.019531 1.1875 0.55859 1.1875 1.2227 0 0.66016-0.52344 1.2031-1.1875 1.2227h-0.42578c-0.023437 0-0.039062 0.011718-0.0625 0.011718-0.17969 0.003906-0.35938 0.039063-0.53125 0.10938-0.17578 0.074219-0.33984 0.17969-0.47656 0.3125-0.007813 0.007813-0.019532 0.011719-0.027344 0.019531-0.29297 0.29297-0.45703 0.6875-0.46094 1.1016 0 0.03125 0.015626 0.058594 0.019532 0.089844 0.003906 0.37109 0.15625 0.72656 0.41797 0.98828 0.007813 0.007812 0.007813 0.015625 0.015626 0.023438l0.30078 0.30078c0.23438 0.22656 0.37109 0.53906 0.37109 0.86719 0.003907 0.32812-0.125 0.64062-0.35547 0.87109-0.23438 0.23438-0.54688 0.36328-0.875 0.35938s-0.64062-0.14062-0.86719-0.375l-0.30078-0.30078c-0.36719-0.36719-0.89844-0.52734-1.4102-0.42578-0.51172 0.10156-0.9375 0.44922-1.1406 0.93359zm-38.93 43.508c0.023438 0.28906 0.5625 7.1016-3.4102 11.367v0.003906c-0.58594 0.63281-1.5742 0.66797-2.207 0.082032-0.63281-0.58984-0.66797-1.5781-0.082031-2.2109 3.0156-3.2461 2.5898-8.9219 2.5859-8.9766-0.070312-0.85938 0.56641-1.6133 1.4258-1.6836 0.41016-0.042969 0.82422 0.085938 1.1406 0.35547 0.31641 0.26562 0.51562 0.64844 0.54687 1.0625zm13.801-0.16406h-0.003906c0.33984 0.24219 0.56641 0.60938 0.63281 1.0195 0.070312 0.41016-0.03125 0.82812-0.27344 1.1641-2.1758 2.9805-3.3008 6.5977-3.2031 10.289 0.082031 0.85547-0.54297 1.6133-1.3984 1.6992-0.050781 0.007813-0.10156 0.007813-0.15234 0.007813-0.80078 0-1.4688-0.60156-1.5508-1.3984-0.19531-4.4492 1.1328-8.832 3.7695-12.422 0.50391-0.69922 1.4727-0.85938 2.1758-0.35938zm24.262 5c0.19922 0.27344 1.9727 2.8281 1.5391 7.7578h-0.003906c-0.070313 0.80469-0.74609 1.4258-1.5547 1.4258-0.046875 0-0.09375 0-0.14062-0.007812-0.41406-0.035157-0.79688-0.23438-1.0625-0.55078s-0.39453-0.72656-0.35547-1.1406c0.32812-3.7422-0.89844-5.5664-0.95313-5.6445-0.49219-0.70312-0.32812-1.668 0.36719-2.1719 0.6875-0.5 1.6523-0.35156 2.1562 0.33594zm-54.117 1.4141c-0.91016 1.7773-1.0625 3.8477-0.42188 5.7422 0.25781 0.82422-0.19922 1.6992-1.0234 1.957-0.82422 0.25781-1.7031-0.20313-1.9609-1.0273-0.90234-2.7539-0.63672-5.7617 0.74219-8.3125 0.46094-0.72266 1.4141-0.94141 2.1406-0.49219 0.72656 0.44922 0.96094 1.3984 0.52344 2.1328zm30.391-82.73c0.089844 0.18359 0.13281 0.39062 0.125 0.59375 0.003906 0.20312-0.039062 0.40625-0.125 0.59375-0.074219 0.19141-0.19141 0.36328-0.34375 0.5-0.28906 0.29297-0.68359 0.46094-1.0938 0.46875-0.20312-0.011719-0.40234-0.050781-0.59375-0.125-0.19141-0.078125-0.35938-0.19531-0.5-0.34375-0.15234-0.13672-0.26953-0.30859-0.34375-0.5-0.085938-0.1875-0.12891-0.39062-0.125-0.59375-0.007812-0.20312 0.035156-0.41016 0.125-0.59375 0.066406-0.20312 0.18359-0.39062 0.34375-0.53125 0.14062-0.14062 0.3125-0.24609 0.5-0.3125 0.57422-0.25 1.2383-0.125 1.6875 0.3125 0.16016 0.14453 0.27734 0.32812 0.34375 0.53125zm24.344 25.75c0.29297 0.28906 0.45703 0.68359 0.46875 1.0938-0.015625 0.41797-0.18359 0.81641-0.46875 1.125-0.29688 0.28516-0.69141 0.44141-1.1016 0.4375-0.41797 0.015625-0.82422-0.14062-1.1211-0.4375s-0.45703-0.70703-0.4375-1.125c-0.003906-0.41016 0.15234-0.80078 0.4375-1.0938 0.15234-0.15234 0.33203-0.26562 0.53125-0.34375 0.58203-0.22656 1.2422-0.09375 1.6914 0.34375z"></path> | |
| 1792 | +</svg> | |
| 1793 | +</div> | |
| 1794 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1021350580" style="transition: opacity 1s ease-in-out;"><p class="text-align-center"><strong style="display: initial; font-weight: bold;">TERRAIN PRIVÉ</strong></p></div> | |
| 1795 | +</div> | |
| 1796 | + <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="1839541900">Un cube noir et blanc avec une porte et des fenêtres sur fond blanc.</title> | |
| 1797 | + <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> | |
| 1798 | +</svg> | |
| 1799 | +</div> | |
| 1800 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1641948639" style="transition: opacity 1s ease-in-out;"><p class="text-align-center" style="line-height: 1.6; letter-spacing: 0.05em;"><strong style="display: initial;">UNITÉ SPACIEUSE</strong><span style="display: initial;"><br/></span></p></div> | |
| 1801 | +</div> | |
| 1802 | + <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="1085333223">Un dessin en noir et blanc d'un flocon de neige sur fond blanc.</title> | |
| 1803 | + <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> | |
| 1804 | + <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> | |
| 1805 | + <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> | |
| 1806 | + <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> | |
| 1807 | + <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> | |
| 1808 | + <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> | |
| 1809 | + <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> | |
| 1810 | + <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> | |
| 1811 | + <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> | |
| 1812 | + <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> | |
| 1813 | + <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> | |
| 1814 | + <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> | |
| 1815 | + <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> | |
| 1816 | + <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> | |
| 1817 | + <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> | |
| 1818 | + <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> | |
| 1819 | + <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> | |
| 1820 | + <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> | |
| 1821 | + <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> | |
| 1822 | + <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> | |
| 1823 | + <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> | |
| 1824 | + <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> | |
| 1825 | + <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> | |
| 1826 | + <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> | |
| 1827 | +</g> | |
| 1828 | +</svg> | |
| 1829 | +</div> | |
| 1830 | + <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> | |
| 1831 | +</div> | |
| 1832 | +</div> | |
| 1833 | +</div> | |
| 1834 | + <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="1275100718">Un dessin en noir et blanc d'une cuisine avec une cuisinière et des tiroirs.</title> | |
| 1835 | + <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> | |
| 1836 | +</svg> | |
| 1837 | +</div> | |
| 1838 | + <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> | |
| 1839 | +</div> | |
| 1840 | + <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> | |
| 1841 | +</svg> | |
| 1842 | +</a> | |
| 1843 | +</div> | |
| 1844 | + <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> | |
| 1845 | +</div> | |
| 1846 | + <div class="dmRespCol small-12 medium-4 large-4" id="1443466153"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3 u_1406295359" data-element-type="graphic" data-widget-type="graphic" id="1406295359"> <a href="/" id="1950376377" aria-label="Dog_3202789.svg"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1886445913" class="svg u_1886445913" data-icon-custom="true" data-icon-name="Dog_3202789.svg"> <g> <path d="m56.102 84.801-2.5 8 0.10156 0.30078c0.5 1.8984 2.3984 3 4.3008 2.6016 2-0.39844 3.3008-2.3008 2.8984-4.3008l-1.1992-6.1992z"></path> | |
| 1847 | + <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> | |
| 1848 | + <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> | |
| 1849 | + <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> | |
| 1850 | + <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> | |
| 1851 | + <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> | |
| 1852 | + <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> | |
| 1853 | +</g> | |
| 1854 | +</svg> | |
| 1855 | +</a> | |
| 1856 | +</div> | |
| 1857 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1988614463" style="transition: opacity 1s ease-in-out;"><p class="text-align-center"><strong style="color: var(--color_1); display: unset; font-weight: bold;">CHAT ET CHIEN ACCEPTÉ</strong></p><p class="text-align-center"><span style="color: var(--color_1); display: initial; font-style: italic;">(sous conditions)</span></p></div> | |
| 1858 | +</div> | |
| 1859 | +</div> | |
| 1860 | +</div> | |
| 1861 | + <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> | |
| 1862 | +</div> | |
| 1863 | +</div> | |
| 1864 | +</div> | |
| 1865 | + <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ÉS</span></h2> | |
| 1866 | +</div> | |
| 1867 | +</div> | |
| 1868 | + <div class="u_1158007567 dmRespCol small-12 large-8 medium-8" id="1158007567"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1877599422"><p><span style="display: initial; color: var(--color_3);">Les jumelés locatifs de la rue Marie-Flore, à Scott, vous offrent bien plus qu’un simple espace de vie. Chaque unité est dotée de commodités modernes et pratiques qui vous assurent un quotidien simple, confortable et agréable, au cœur de la région de Chaudière-Appalaches.</span></p></div> | |
| 1869 | +</div> | |
| 1870 | +</div> | |
| 1871 | +</div> | |
| 1872 | + <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> | |
| 1873 | +</div> | |
| 1874 | +</div> | |
| 1875 | +</div> | |
| 1876 | + <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> | |
| 1877 | +</div> | |
| 1878 | +</div> | |
| 1879 | +</div> | |
| 1880 | +</div> | |
| 1881 | + <div class="dmRespRow" id="1895177592"> <div class="dmRespColsWrapper" id="1370102391"> <div class="u_1515200283 dmRespCol small-12 large-4 medium-4" id="1515200283"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1766789273"> <h3><span style="display: unset;">Découvrez votre futur jumelé</span></h3> | |
| 1882 | + <h3><span style="display: unset;">grâce à une visite virtuelle</span></h3> | |
| 1883 | +</div> | |
| 1884 | +</div> | |
| 1885 | + <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;">Découvrez l’intérieur chaleureux et moderne de nos jumelés locatifs situés sur la rue Marie-Flore à Scott. Espaces lumineux, matériaux de qualité et aménagements pensés pour votre confort au quotidien. Un lieu où il fait bon vivre, jour après jour.</span></p></div> | |
| 1886 | +</div> | |
| 1887 | +</div> | |
| 1888 | +</div> | |
| 1889 | + <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="1167809611" class="u_1167809611"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Rue+Marie+Flore+vue+cuisine-1920w.png" id="1097806884" alt="Un salon avec parquet et une cuisine en arrière plan." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1668835059"></div> | |
| 1890 | + <div class="slide-inner" id="1098588954"> <div class="text-wrapper" id="1148245757"> <h3 class="slide-title" id="1058699656">Titre de la diapositive</h3> | |
| 1891 | + <div class="slide-text richText" id="1075829754">Écrivez votre légende ici</div> | |
| 1892 | +</div> | |
| 1893 | + <div class="slide-button dmWidget clearfix" id="1726700829"> <span class="iconBg" id="1538895117"> <span class="icon hasFontIcon icon-star" id="1467078269"></span> | |
| 1894 | +</span> | |
| 1895 | + <span class="text" id="1859438938">Bouton</span> | |
| 1896 | +</div> | |
| 1897 | +</div> | |
| 1898 | +</li> | |
| 1899 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1482416682"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Rue+Marie+Flore+vue+cuisine+et+salon-1920w.png" id="1474851129" alt="Une cuisine avec un grand îlot au milieu de la pièce." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1264083724"></div> | |
| 1900 | + <div class="slide-inner" id="1095282158"> <div class="text-wrapper" id="1727406988"> <h3 class="slide-title" id="1734558313">Titre de la diapositive</h3> | |
| 1901 | + <div class="slide-text richText" id="1374381445">Écrivez votre légende ici</div> | |
| 1902 | +</div> | |
| 1903 | + <div class="slide-button dmWidget clearfix" id="1814189908"> <span class="iconBg" id="1127742694"> <span class="icon hasFontIcon icon-star" id="1272889300"></span> | |
| 1904 | +</span> | |
| 1905 | + <span class="text" id="1604457209">Bouton</span> | |
| 1906 | +</div> | |
| 1907 | +</div> | |
| 1908 | +</li> | |
| 1909 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1810034220"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Rue+Marie+Flore+vue+cuisine+et+salle+%C3%A0+manger-1920w.png" id="1092830934" alt="Un salon avec parquet, une chaise et une table." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1183079487"></div> | |
| 1910 | + <div class="slide-inner" id="1878292352"> <div class="text-wrapper" id="1448189788"> <h3 class="slide-title" id="1243862099">Titre de la diapositive</h3> | |
| 1911 | + <div class="slide-text richText" id="1399607864">Écrivez votre légende ici</div> | |
| 1912 | +</div> | |
| 1913 | + <div class="slide-button dmWidget clearfix" id="1242438185"> <span class="iconBg" id="1924027257"> <span class="icon hasFontIcon icon-star" id="1410387252"></span> | |
| 1914 | +</span> | |
| 1915 | + <span class="text" id="1917219721">Bouton</span> | |
| 1916 | +</div> | |
| 1917 | +</div> | |
| 1918 | +</li> | |
| 1919 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1680609517"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Rue+Marie+Flore+vue+salon-1920w.png" id="1864906830" alt="Un salon avec un canapé, une chaise et de grandes fenêtres." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1053438704"></div> | |
| 1920 | + <div class="slide-inner" id="1898743239"> <div class="text-wrapper" id="1574732619"> <h3 class="slide-title" id="1909751541">Titre de la diapositive</h3> | |
| 1921 | + <div class="slide-text richText" id="1187045102">Écrivez votre légende ici</div> | |
| 1922 | +</div> | |
| 1923 | + <div class="slide-button dmWidget clearfix" id="1751977680"> <span class="iconBg" id="1550246996"> <span class="icon hasFontIcon icon-star" id="1085386021"></span> | |
| 1924 | +</span> | |
| 1925 | + <span class="text" id="1106988126">Bouton</span> | |
| 1926 | +</div> | |
| 1927 | +</div> | |
| 1928 | +</li> | |
| 1929 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1003871344"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Rue+Marie+Flore+vue+salle+d-eau-1920w.png" id="1155960273" alt="Une salle de bain avec un lavabo, un miroir et des armoires." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1747185601"></div> | |
| 1930 | + <div class="slide-inner" id="1945347962"> <div class="text-wrapper" id="1850139171"> <h3 class="slide-title" id="1638743182">Titre de la diapositive</h3> | |
| 1931 | + <div class="slide-text richText" id="1470816184">Écrivez votre légende ici</div> | |
| 1932 | +</div> | |
| 1933 | + <div class="slide-button dmWidget clearfix" id="1109631549"> <span class="iconBg" id="1099814581"> <span class="icon hasFontIcon icon-star" id="1130190253"></span> | |
| 1934 | +</span> | |
| 1935 | + <span class="text" id="1786559980">Bouton</span> | |
| 1936 | +</div> | |
| 1937 | +</div> | |
| 1938 | +</li> | |
| 1939 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1433650763"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Rue+Marie+Flore+vue+corridor-1920w.png" id="1117670457" alt="Il y a une horloge sur le mur au dessus des escaliers." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1905875252"></div> | |
| 1940 | + <div class="slide-inner" id="1215585728"> <div class="text-wrapper" id="1445253693"> <h3 class="slide-title" id="1924132444">Titre de la diapositive</h3> | |
| 1941 | + <div class="slide-text richText" id="1780486337">Écrivez votre légende ici</div> | |
| 1942 | +</div> | |
| 1943 | + <div class="slide-button dmWidget clearfix" id="1245101129"> <span class="iconBg" id="1900856220"> <span class="icon hasFontIcon icon-star" id="1399777965"></span> | |
| 1944 | +</span> | |
| 1945 | + <span class="text" id="1385304512">Bouton</span> | |
| 1946 | +</div> | |
| 1947 | +</div> | |
| 1948 | +</li> | |
| 1949 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1880210238"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Rue+Marie+Flore+vue+chambre-1920w.png" id="1691169975" alt="Une chambre avec un lit, des tables de nuit, des lampes et une fenêtre." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1864565232"></div> | |
| 1950 | + <div class="slide-inner" id="1794807621"> <div class="text-wrapper" id="1154728907"> <h3 class="slide-title" id="1475183552">Titre de la diapositive</h3> | |
| 1951 | + <div class="slide-text richText" id="1167063986">Écrivez votre légende ici</div> | |
| 1952 | +</div> | |
| 1953 | + <div class="slide-button dmWidget clearfix" id="1404401106"> <span class="iconBg" id="1879816623"> <span class="icon hasFontIcon icon-star" id="1428842261"></span> | |
| 1954 | +</span> | |
| 1955 | + <span class="text" id="1816618371">Bouton</span> | |
| 1956 | +</div> | |
| 1957 | +</div> | |
| 1958 | +</li> | |
| 1959 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1156598820"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Rue+Marie+Flore+vue+salle+de+bain-1920w.png" id="1419347872" alt="Une salle de bain avec lavabo, WC, douche et miroir." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1448483788"></div> | |
| 1960 | + <div class="slide-inner" id="1167903311"> <div class="text-wrapper" id="1045338939"> <h3 class="slide-title" id="1620928868">Titre de la diapositive</h3> | |
| 1961 | + <div class="slide-text richText" id="1576537528">Écrivez votre légende ici</div> | |
| 1962 | +</div> | |
| 1963 | + <div class="slide-button dmWidget clearfix" id="1918241214"> <span class="iconBg" id="1597914375"> <span class="icon hasFontIcon icon-star" id="1856713464"></span> | |
| 1964 | +</span> | |
| 1965 | + <span class="text" id="1205361539">Bouton</span> | |
| 1966 | +</div> | |
| 1967 | +</div> | |
| 1968 | +</li> | |
| 1969 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1842521349"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Rue+Marie+Flore+vue+patio-1920w.png" id="1664861358" alt="Une terrasse en bois avec une balustrade et une vue sur un champ." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1956701198"></div> | |
| 1970 | + <div class="slide-inner" id="1694837114"> <div class="text-wrapper" id="1821732130"> <h3 class="slide-title" id="1345675845">Titre de la diapositive</h3> | |
| 1971 | + <div class="slide-text richText" id="1124518852">Écrivez votre légende ici</div> | |
| 1972 | +</div> | |
| 1973 | + <div class="slide-button dmWidget clearfix" id="1173256129"> <span class="iconBg" id="1004396412"> <span class="icon hasFontIcon icon-star" id="1869636832"></span> | |
| 1974 | +</span> | |
| 1975 | + <span class="text" id="1713416083">Bouton</span> | |
| 1976 | +</div> | |
| 1977 | +</div> | |
| 1978 | +</li> | |
| 1979 | +</ul> | |
| 1980 | +</div> | |
| 1981 | +</div> | |
| 1982 | +</div> | |
| 1983 | +</div> | |
| 1984 | +</div> | |
| 1985 | + <div class="dmRespRow" id="1237885663"> <div class="dmRespColsWrapper" id="1166559882"> <div class="u_1168029575 dmRespCol small-12 large-5 medium-5" id="1168029575"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1682296294" style="transition: opacity 1s ease-in-out;"> <h2><span style="display: unset;">PLAN D'AMÉNAGEMENT</span></h2> | |
| 1986 | +</div> | |
| 1987 | +</div> | |
| 1988 | + <div class="u_1930945070 dmRespCol small-12 large-7 medium-7" id="1930945070"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1355393245" style="transition: opacity 1s ease-in-out;"><p><span style="display: unset;">Visualisez tout le potentiel de votre futur jumelé grâce à nos plans d’aménagement 3D. Découvrez différentes idées d’aménagement intérieur qui optimisent l’espace et rehaussent votre confort.</span></p></div> | |
| 1989 | +</div> | |
| 1990 | +</div> | |
| 1991 | +</div> | |
| 1992 | + <div class="dmRespRow" id="1684126387"> <div class="dmRespColsWrapper" id="1852791313"> <div class="u_1690692508 dmRespCol small-12 large-2 medium-2" id="1690692508"> <div class="u_1069114470 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1069114470" style="transition: none 0s ease 0s; text-align: left; display: block;"> <h3 class="m-size-22 size-28"><strong class="font-size-28 m-font-size-22" style="display: initial; font-weight: bold; color: var(--color_2);"># 1</strong></h3> | |
| 1993 | +</div> | |
| 1994 | + <div class="dmDividerWrapper clearfix u_1386150379" data-element-type="dDividerId" data-layout="divider-style-1" data-widget-version="2" id="1386150379" layout="divider-gradient-line"><hr class="dmDivider" style="border-width:2px; border-top-style:solid; color:grey;" id="1107837101"/></div> | |
| 1995 | +</div> | |
| 1996 | + <div class="u_1253365649 dmRespCol small-12 large-6 medium-6" id="1253365649"> <div class="u_1663891390 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1663891390"> <a href="/" id="1734682398"><img src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Jumele_Quartier_Marie_Flore_Option_1_Rez_de_Chaussee_Scott-e11287ef-1920w.jpg" alt="Une vue aérienne d'un plan d'étage d'une maison." id="1628591672" class="" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/Jumele_Quartier_Marie_Flore_Option_1_Rez_de_Chaussee_Scott-e11287ef.jpg" width="1920" height="960" data-hover-effect="none" onerror="handleImageLoadError(this)"/></a> | |
| 1997 | +</div> | |
| 1998 | + <div class="dmNewParagraph u_1885054359" data-element-type="paragraph" data-version="5" id="1885054359" style="transition: none 0s ease 0s; text-align: left; display: block;"><p class="text-align-left"><span style="display: unset; font-style: italic; color: var(--color_5);">Rez-de-chaussée</span></p></div> | |
| 1999 | +</div> | |
| 2000 | + <div class="u_1045443564 dmRespCol small-12 large-4 medium-4" id="1045443564"> <div class="u_1425200428 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1425200428"><img src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Jumele_Quartier_Marie_Flore_Option_1_Sous_Sol_Scott-1920w.jpg" alt="Un plan d'étage d'une maison avec deux chambres et une salle de bain" id="1266175169" class="" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/Jumele_Quartier_Marie_Flore_Option_1_Sous_Sol_Scott.jpg" width="1503" height="1080" onerror="handleImageLoadError(this)"/></div> | |
| 2001 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1857600775" style="transition: opacity 1s ease-in-out 0s;"><p class="text-align-left"><span style="display: unset; font-style: italic; color: var(--color_5);">Sous-sol</span></p></div> | |
| 2002 | +</div> | |
| 2003 | +</div> | |
| 2004 | +</div> | |
| 2005 | + <div class="dmRespRow" id="1973179649"> <div class="dmRespColsWrapper" id="1951271427"> <div class="u_1469735570 dmRespCol small-12 large-2 medium-2" id="1469735570"> <div class="dmNewParagraph u_1025117848" data-element-type="paragraph" data-version="5" id="1025117848" style="transition: opacity 1s ease-in-out 0s;"> <h3><strong style="color: var(--color_2); font-weight: bold; display: unset;"># 2</strong></h3> | |
| 2006 | +</div> | |
| 2007 | + <div class="dmDividerWrapper clearfix u_1599318515" data-element-type="dDividerId" data-layout="divider-style-1" data-widget-version="2" id="1599318515" layout="divider-gradient-line"><hr class="dmDivider" style="border-width:2px; border-top-style:solid; color:grey;" id="1088788168"/></div> | |
| 2008 | +</div> | |
| 2009 | + <div class="u_1559001653 dmRespCol small-12 large-6 medium-6" id="1559001653"> <div class="imageWidget align-center u_1525405860" data-element-type="image" data-widget-type="image" id="1525405860"><img src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Jumele_Quartier_Marie_Flore_Option_2_Rez_de_Chaussee_Scott-e50c336e-1920w.jpg" alt="Une vue aérienne d'un plan d'étage d'une maison." id="1598373341" class="" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/Jumele_Quartier_Marie_Flore_Option_2_Rez_de_Chaussee_Scott-e50c336e.jpg" width="1906" height="961" onerror="handleImageLoadError(this)"/></div> | |
| 2010 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1225394204" style="transition: opacity 1s ease-in-out 0s;"><p><span style="display: unset; color: var(--color_5);">Rez-de-chaussée</span></p></div> | |
| 2011 | +</div> | |
| 2012 | + <div class="u_1956971244 dmRespCol small-12 large-4 medium-4" id="1956971244"> <div class="u_1562201792 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1562201792"><img src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Jumele_Quartier_Marie_Flore_Option3_Sous_Sol-1920w.webp" alt="Un plan d'étage d'une maison avec une chambre, une salle de bain et des escaliers." id="1985181306" class="" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/Jumele_Quartier_Marie_Flore_Option3_Sous_Sol.webp" width="1503" height="1080" onerror="handleImageLoadError(this)"/></div> | |
| 2013 | + <div class="dmNewParagraph u_1962163079" data-element-type="paragraph" data-version="5" id="1962163079" style="transition: none 0s ease 0s; text-align: left; display: block;"><p><span style="display: unset; color: var(--color_5);">Sous-sol</span></p></div> | |
| 2014 | +</div> | |
| 2015 | +</div> | |
| 2016 | +</div> | |
| 2017 | + <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> | |
| 2018 | +</span><span style="display: initial;"><br/></span></h2> | |
| 2019 | +</div> | |
| 2020 | + <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ésitez pas à nous contacter pour découvrir tout ce que vous souhaitez savoir sur les logements, les quartiers et tout ce qui s'y trouve. Nous sommes là pour répondre à toutes vos questions.</span> | |
| 2021 | +</span></p></div> | |
| 2022 | + <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> | |
| 2023 | +</span> | |
| 2024 | + <span class="text" id="1591898475">Contactez-nous</span> | |
| 2025 | +</a> | |
| 2026 | +</div> | |
| 2027 | +</div> | |
| 2028 | +</div> | |
| 2029 | + <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> | |
| 2030 | +</div> | |
| 2031 | +</div> | |
| 2032 | +</div> | |
| 2033 | +</div> | |
| 2034 | + <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éciez les balades en nature ou les moments entre amis, la municipalité de Scott saura combler vos envies !</span></h3> | |
| 2035 | +</div> | |
| 2036 | +</div> | |
| 2037 | + <div class="u_1585638891 dmRespCol small-12 large-8 medium-8" id="1585638891"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1871869082"><p><span style="display: initial;">Situés dans la municipalité de Scott, au cœur de la Chaudière-Appalaches, les jumelés de la rue Marie Flore vous offrent un cadre de vie moderne où le confort, la tranquillité et l’accessibilité se rencontrent. Vous vivrez dans un jumelé récent, conçu pour répondre aux besoins d’une clientèle active, à la recherche d’un environnement paisible et fonctionnel.</span></p><p><br/></p><p><span style="display: initial;">Profitez d’un emplacement privilégié, à deux pas de toutes les commodités essentielles : épiceries, restaurants, écoles, CPE, soins personnels et commerces locaux. Grâce à sa localisation stratégique, votre quotidien est simplifié sans compromis sur la qualité de vie. Le secteur vous permet aussi de profiter pleinement de la nature environnante, avec ses espaces verts, ses sentiers et ses lieux parfaits pour relaxer, marcher ou partager du temps en famille. Un équilibre parfait entre vie pratique et bien-être.</span></p></div> | |
| 2038 | +</div> | |
| 2039 | +</div> | |
| 2040 | +</div> | |
| 2041 | + <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.507611" data-lng="-71.090786" data-address="Rue Marie-Flore, 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 Marie-Flore, Scott, Quebec G0S 3G0, Canada" geocompleteaddress="Rue Marie-Flore, 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.090786" lat="46.507611" zoom="13"> <div class="mapContainer" style="height: 100%; width: 100%; overflow: hidden; z-index: 0;"></div> | |
| 2042 | +</div> | |
| 2043 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1364636678" style="transition: opacity 1s ease-in-out;"><p class="text-align-center" style="line-height: normal;"><span style="font-style: italic; display: unset;">Rue Marie Flore à </span><strong style="font-style: italic; display: unset; font-weight: bold;">Scott</strong></p></div> | |
| 2044 | +</div> | |
| 2045 | +</div> | |
| 2046 | +</div> | |
| 2047 | + <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> | |
| 2048 | +</div> | |
| 2049 | +</div> | |
| 2050 | +</div> | |
| 2051 | + <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> | |
| 2052 | +</div> | |
| 2053 | + <div class="bgExtraLayerOverlay"></div> | |
| 2054 | + <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éduit ?</span> | |
| 2055 | +</span></h2> | |
| 2056 | + <h2 class="text-align-center"><span style="color: var(--color_3); display: unset;">Planifiez votre visite dès aujourd'hui !</span><span style="display: initial;"><br/></span></h2> | |
| 2057 | +</div> | |
| 2058 | + <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> | |
| 2059 | +</span> | |
| 2060 | + <span class="text" id="1461344268">JE PLANIFIE !</span> | |
| 2061 | +</a> | |
| 2062 | +</div> | |
| 2063 | +</div> | |
| 2064 | +</div> | |
| 2065 | +</div> | |
| 2066 | +</div> | |
| 2067 | +</div> | |
| 2068 | +</div> | |
| 2069 | + <div class="sticky-widgets-container-global" id="1915928664"></div> | |
| 2070 | + <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> | |
| 2071 | +</div> | |
| 2072 | +</div> | |
| 2073 | +</div> | |
| 2074 | + <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> | |
| 2075 | +</div> | |
| 2076 | + <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> | |
| 2077 | +</div> | |
| 2078 | + <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> | |
| 2079 | +</div> | |
| 2080 | + <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> | |
| 2081 | +</div> | |
| 2082 | +</div> | |
| 2083 | +</div> | |
| 2084 | + <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écialiste en gestion d’immeubles locatifs, notre équipe saura vous accompagner tout au long de vos démarches.</span></p></div> | |
| 2085 | + <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> | |
| 2086 | +</div> | |
| 2087 | + <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> | |
| 2088 | +</div> | |
| 2089 | + <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=" | |
| 2090 | + Accueil | |
| 2091 | + " 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> | |
| 2092 | +</span> | |
| 2093 | +</a> | |
| 2094 | +</li> | |
| 2095 | + <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> | |
| 2096 | +</span> | |
| 2097 | +</a> | |
| 2098 | +</li> | |
| 2099 | +</ul> | |
| 2100 | +</nav> | |
| 2101 | +</div> | |
| 2102 | + <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> | |
| 2103 | +</div> | |
| 2104 | + <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ésentation au TAL<span class="icon icon-angle-down" data-hidden-on-mobile="" data-hidden-on-desktop="" data-hidden-on-tablet=""></span> | |
| 2105 | +</span> | |
| 2106 | +</a> | |
| 2107 | +</li> | |
| 2108 | + <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étaires<span class="icon icon-angle-down" data-hidden-on-mobile="" data-hidden-on-desktop="" data-hidden-on-tablet=""></span> | |
| 2109 | +</span> | |
| 2110 | +</a> | |
| 2111 | +</li> | |
| 2112 | +</ul> | |
| 2113 | +</nav> | |
| 2114 | +</div> | |
| 2115 | + <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> | |
| 2116 | +</div> | |
| 2117 | + <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> | |
| 2118 | +</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> | |
| 2119 | +</div> | |
| 2120 | +</div> | |
| 2121 | +</div> | |
| 2122 | + <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>© 2026 </div> | |
| 2123 | + <div><p class="rteBlock">Gestion Immobilière de la Rive Sud 2025 - Tous droits réservés</p></div> | |
| 2124 | +</div> | |
| 2125 | +</div> | |
| 2126 | +</div> | |
| 2127 | +</div> | |
| 2128 | +</div> | |
| 2129 | +</div> | |
| 2130 | + <div id="1236746004" dmle_extension="powered_by" data-element-type="powered_by" icon="true" surround="false"></div> | |
| 2131 | +</div> | |
| 2132 | +</div> | |
| 2133 | +</div> | |
| 2134 | +</div> | |
| 2135 | +</div> | |
| 2136 | +</div> | |
| 2137 | +</div> | |
| 2138 | +</div> | |
| 2139 | +</div> | |
| 2140 | + | |
| 2141 | + </div> | |
| 2142 | +</div> | |
| 2143 | +<!-- Add full CSS and Javascript before the close tag of the body if needed --> | |
| 2144 | + | |
| 2145 | + | |
| 2146 | + | |
| 2147 | + | |
| 2148 | + | |
| 2149 | + | |
| 2150 | + | |
| 2151 | + | |
| 2152 | + | |
| 2153 | + | |
| 2154 | + | |
| 2155 | + | |
| 2156 | + | |
| 2157 | + | |
| 2158 | + | |
| 2159 | + | |
| 2160 | + | |
| 2161 | + | |
| 2162 | + | |
| 2163 | + | |
| 2164 | + | |
| 2165 | + | |
| 2166 | + | |
| 2167 | + | |
| 2168 | + | |
| 2169 | + | |
| 2170 | + | |
| 2171 | + | |
| 2172 | + | |
| 2173 | + | |
| 2174 | + | |
| 2175 | + | |
| 2176 | + | |
| 2177 | + | |
| 2178 | + | |
| 2179 | + | |
| 2180 | + | |
| 2181 | + | |
| 2182 | +<!-- ========= JS Section ========= --> | |
| 2183 | +<script> | |
| 2184 | + var isWLR = true; | |
| 2185 | + | |
| 2186 | + window.customWidgetsFunctions = {}; | |
| 2187 | + window.customWidgetsStrings = {}; | |
| 2188 | + window.collections = {}; | |
| 2189 | + window.currentLanguage = "FRENCH" | |
| 2190 | + window.isSitePreview = false; | |
| 2191 | +</script> | |
| 2192 | + | |
| 2193 | + | |
| 2194 | + | |
| 2195 | +<script> | |
| 2196 | + window.customWidgetsFunctions["1f5975986930429f819d4cd2154b5c4a~25"] = function (element, data, api) { | |
| 2197 | + null | |
| 2198 | + }; | |
| 2199 | +</script> | |
| 2200 | + | |
| 2201 | + | |
| 2202 | +<script type="text/javascript"> | |
| 2203 | + | |
| 2204 | + var d_version = "production_6688"; | |
| 2205 | + var build = "2026-08-06T08_49_03"; | |
| 2206 | + window['v' + 'ersion'] = d_version; | |
| 2207 | + | |
| 2208 | + function buildEditorParent() { | |
| 2209 | + window.isMultiScreen = true; | |
| 2210 | + window.editorParent = {}; | |
| 2211 | + window.previewParent = {}; | |
| 2212 | + window.assetsCacheQueryParam = "?version=2026-08-06T08_49_03"; | |
| 2213 | + try { | |
| 2214 | + var _p = window.parent; | |
| 2215 | + if (_p && _p.document && _p.$ && _p.$.dmfw) { | |
| 2216 | + window.editorParent = _p; | |
| 2217 | + } else if (_p.isSitePreview) { | |
| 2218 | + window.previewParent = _p; | |
| 2219 | + } | |
| 2220 | + } catch (e) { | |
| 2221 | + | |
| 2222 | + } | |
| 2223 | + } | |
| 2224 | + | |
| 2225 | + buildEditorParent(); | |
| 2226 | +</script> | |
| 2227 | + | |
| 2228 | + | |
| 2229 | +<!-- Load jQuery --> | |
| 2230 | + | |
| 2231 | +<script type="text/javascript" id='d-js-jquery' | |
| 2232 | + src="https://static.cdn-website.com/libs/jquery/jquery-3.7.0.min.js"></script> | |
| 2233 | + | |
| 2234 | +<!-- End Load jQuery --> | |
| 2235 | + | |
| 2236 | + | |
| 2237 | +<!-- Injecting site-wide before scripts --> | |
| 2238 | + | |
| 2239 | +<!-- End Injecting site-wide to the head --> | |
| 2240 | + | |
| 2241 | + | |
| 2242 | + | |
| 2243 | +<script> | |
| 2244 | + var _jquery = window.$; | |
| 2245 | + | |
| 2246 | + var jqueryAliases = ['$', 'jquery', 'jQuery']; | |
| 2247 | + | |
| 2248 | + jqueryAliases.forEach((alias) => { | |
| 2249 | + Object.defineProperty(window, alias, { | |
| 2250 | + get() { | |
| 2251 | + return _jquery; | |
| 2252 | + }, | |
| 2253 | + set() { | |
| 2254 | + console.warn("Trying to over-write the global jquery object!"); | |
| 2255 | + } | |
| 2256 | + }); | |
| 2257 | + }); | |
| 2258 | + window.jQuery.migrateMute = true; | |
| 2259 | +</script> | |
| 2260 | + | |
| 2261 | + | |
| 2262 | + | |
| 2263 | + | |
| 2264 | +<script> | |
| 2265 | + window.cookiesNotificationMarkupPreview = ' <div> <p class=\"rteBlock\">Nous utilisons des cookies pour optimiser votre expérience sur notre site web. Pour en savoir plus, veuillez accéder à la page <a value=\"donnees-personnelles\" label=\"\" type=\"page\" href=\"\/donnees-personnelles\" data-runtime-url=\"\/donnees-personnelles\">Confidentialité<\/a>.<\/p> \n<\/div> \n'; | |
| 2266 | +</script> | |
| 2267 | + | |
| 2268 | +<!-- HEAD RT JS Include --> | |
| 2269 | +<script id='d-js-params'> | |
| 2270 | + window.INSITE = window.INSITE || {}; | |
| 2271 | + window.INSITE.device = "desktop"; | |
| 2272 | + | |
| 2273 | + window.rtCommonProps = {}; | |
| 2274 | + rtCommonProps["rt.ajax.ajaxScriptsFix"] =true; | |
| 2275 | + rtCommonProps["rt.pushnotifs.sslframe.encoded"] = 'aHR0cHM6Ly97c3ViZG9tYWlufS5wdXNoLW5vdGlmcy5jb20='; | |
| 2276 | + rtCommonProps["runtimecollector.url"] = 'https://rtc.multiscreensite.com'; | |
| 2277 | + rtCommonProps["performance.tabletPreview.removeScroll"] = 'false'; | |
| 2278 | + rtCommonProps["inlineEditGrid.snap"] =true; | |
| 2279 | + rtCommonProps["popup.insite.cookie.ttl"] = '0.5'; | |
| 2280 | + rtCommonProps["rt.pushnotifs.force.button"] =true; | |
| 2281 | + rtCommonProps["common.mapbox.token"] = 'pk.JETON_CAVIARDE_LOUKA'; | |
| 2282 | + rtCommonProps["common.mapbox.js.override"] =false; | |
| 2283 | + rtCommonProps["common.here.appId"] = 'iYvDjIQ2quyEu0rg0hLo'; | |
| 2284 | + rtCommonProps["common.here.appCode"] = '1hcIxLJcbybmtBYTD9Z1UA'; | |
| 2285 | + rtCommonProps["isCoverage.test"] =false; | |
| 2286 | + rtCommonProps["ecommerce.ecwid.script"] = 'https://app.multiscreenstore.com/script.js'; | |
| 2287 | + rtCommonProps["common.resources.dist.cdn"] =true; | |
| 2288 | + rtCommonProps["common.build.dist.folder"] = 'production/6688'; | |
| 2289 | + rtCommonProps["common.resources.cdn.host"] = 'https://static.cdn-website.com'; | |
| 2290 | + rtCommonProps["common.resources.folder"] = 'https://static.cdn-website.com/mnlt/production/6688'; | |
| 2291 | + rtCommonProps["common.fonts.api.v2.url"] = 'https://irp.cdn-website.com/fonts/css2?family='; | |
| 2292 | + rtCommonProps["feature.flag.runtime.backgroundSlider.preload.slowly"] =true; | |
| 2293 | + rtCommonProps["feature.flag.runtime.newAnimation.enabled"] =true; | |
| 2294 | + rtCommonProps["feature.flag.runtime.newAnimation.jitAnimation.enabled"] =true; | |
| 2295 | + rtCommonProps["feature.flag.sites.google.analytics.gtag"] =true; | |
| 2296 | + rtCommonProps["feature.flag.runOnReadyNewTask"] =true; | |
| 2297 | + rtCommonProps["isAutomation.test"] =false; | |
| 2298 | + rtCommonProps["booking.cal.api.domain"] = 'api.cal.com'; | |
| 2299 | + | |
| 2300 | + | |
| 2301 | + rtCommonProps['common.mapsProvider'] = 'mapbox'; | |
| 2302 | + | |
| 2303 | + rtCommonProps['common.mapsProvider.version'] = '0.52.0'; | |
| 2304 | + rtCommonProps['common.geocodeProvider'] = 'mapbox'; | |
| 2305 | + rtCommonProps['server.for.resources'] = ''; | |
| 2306 | + rtCommonProps['feature.flag.lazy.widgets'] = true; | |
| 2307 | + rtCommonProps['feature.flag.single.wow'] = false; | |
| 2308 | + rtCommonProps['feature.flag.disallowPopupsInEditor'] = true; | |
| 2309 | + rtCommonProps['feature.flag.mark.anchors'] = true; | |
| 2310 | + rtCommonProps['captcha.public.key'] = '6LffcBsUAAAAAMU-MYacU-6QHY4iDtUEYv_Ppwlz'; | |
| 2311 | + rtCommonProps['captcha.invisible.public.key'] = '6LeiWB8UAAAAAHYnVJM7_-7ap6bXCUNGiv7bBPME'; | |
| 2312 | + rtCommonProps["images.sizes.small"] =160; | |
| 2313 | + rtCommonProps["images.sizes.mobile"] =640; | |
| 2314 | + rtCommonProps["images.sizes.tablet"] =1280; | |
| 2315 | + rtCommonProps["images.sizes.desktop"] =1920; | |
| 2316 | + rtCommonProps["modules.resources.cdn"] =true; | |
| 2317 | + rtCommonProps["import.images.storage.imageCDN"] = 'https://irp.cdn-website.com/'; | |
| 2318 | + rtCommonProps["feature.flag.runtime.inp.threshold"] =150; | |
| 2319 | + rtCommonProps["feature.flag.performance.logs"] =false; | |
| 2320 | + rtCommonProps["site.widget.form.captcha.type"] = 'g_recaptcha'; | |
| 2321 | + rtCommonProps["friendly.captcha.site.key"] = 'FCMGSQG9GVNMFS8K'; | |
| 2322 | + rtCommonProps["cookiebot.mapbox.consent.category"] = 'marketing'; | |
| 2323 | + rtCommonProps["termly.mapbox.consent.category"] = 'performance'; | |
| 2324 | + // feature flags that's used out of runtime module (in legacy files) | |
| 2325 | + rtCommonProps["platform.monolith.personalization.dateTimeCondition.popupMsgAction.moveToclient.enabled"] =true; | |
| 2326 | + | |
| 2327 | + window.rtFlags = {}; | |
| 2328 | + rtFlags["unsuspendEcwidStoreOnRuntime.enabled"] =true; | |
| 2329 | + rtFlags["scripts.widgetCount.enabled"] =true; | |
| 2330 | + rtFlags["fnb.animations.tracking.enabled"] =true; | |
| 2331 | + rtFlags["ecom.ecwidNewUrlStructure.enabled"] = false; | |
| 2332 | + rtFlags["ecom.ecwid.accountPage.emptyBaseUrl.enabled"] = true; | |
| 2333 | + rtFlags["ecom.ecwid.accountPage.repeatOrderRedirect.enabled"] = false; | |
| 2334 | + rtFlags["ecom.ecwid.pages.links.disable.listeners"] = true; | |
| 2335 | + rtFlags["ecom.ecwid.storefrontV3.enabled"] = false; | |
| 2336 | + rtFlags["ecom.ecwid.old.store.fix.facebook.share"] = true; | |
| 2337 | + rtFlags["ecom.monolith.legacy.js.api.disabled.for.new.sites"] = false; | |
| 2338 | + rtFlags["feature.flag.photo.gallery.exact.size"] =true; | |
| 2339 | + rtFlags["geocode.search.localize"] =false; | |
| 2340 | + rtFlags["feature.flag.runtime.newAnimation.asyncInit.setTimeout.enabled"] =false; | |
| 2341 | + rtFlags["twitter.heightLimit.enabled"] = true; | |
| 2342 | + rtFlags["runtime.lottieOverflow"] =false; | |
| 2343 | + rtFlags["runtime.monitoring.sentry.ignoreErrors"] = ""; | |
| 2344 | + rtFlags["streamline.monolith.personalization.supportMultipleConditions.enabled"] =false; | |
| 2345 | + rtFlags["flex.animation.design.panel.layout"] =true; | |
| 2346 | + rtFlags["runtime.cwv.report.cls.enabled"] =false; | |
| 2347 | + rtFlags["runtime.cwv.report.lcp.enabled"] =false; | |
| 2348 | + rtFlags["runtime.lcp.preload.selfheal.enabled"] =true; | |
| 2349 | + rtFlags["runtime.lcp.preload.bootstrap.enabled"] =false; | |
| 2350 | + rtFlags["runtime.lcp.preload.monitor.enabled"] =false; | |
| 2351 | + rtFlags["runtime.customwidget.heightpin.enabled"] =true; | |
| 2352 | + rtFlags["contact.form.useActiveForm"] =true; | |
| 2353 | + rtFlags["contact.form.custom.errors.enabled"] =false; | |
| 2354 | + rtFlags["runtime.ssr.productStore.internal.observer"] =true; | |
| 2355 | + rtFlags["runtime.ssr.productCustomizations"] =true; | |
| 2356 | + rtFlags["runtime.ssr.runtime.filter-sort.newFilterSortWidgetWithOptions.enabled"] =true; | |
| 2357 | + rtFlags["runtime.ssr.ssrSlider.jumpThreshold.enabled"] =true; | |
| 2358 | + rtFlags["runtime.ssr.native.booker.enabled"] =false; | |
| 2359 | + rtFlags["termly.map.consent.overlay.enabled"] =false; | |
| 2360 | +</script> | |
| 2361 | +<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> | |
| 2362 | + | |
| 2363 | +<!-- End of HEAD RT JS Include --> | |
| 2364 | + | |
| 2365 | + | |
| 2366 | + | |
| 2367 | + | |
| 2368 | + | |
| 2369 | + | |
| 2370 | + | |
| 2371 | + | |
| 2372 | + | |
| 2373 | + | |
| 2374 | + | |
| 2375 | + <script src="https://static.cdn-website.com/mnlt/production/6688/_dm/s/rt/dist/scripts/d-js-jquery-migrate.min.js" ></script> | |
| 2376 | + | |
| 2377 | + | |
| 2378 | + | |
| 2379 | + | |
| 2380 | + | |
| 2381 | +<script> | |
| 2382 | + | |
| 2383 | + $(window).bind("orientationchange", function (e) { | |
| 2384 | + $.layoutManager.initLayout(); | |
| 2385 | + | |
| 2386 | + }); | |
| 2387 | + $(document).resize(function () { | |
| 2388 | + | |
| 2389 | + }); | |
| 2390 | +</script> | |
| 2391 | + | |
| 2392 | + | |
| 2393 | + | |
| 2394 | + | |
| 2395 | + | |
| 2396 | + | |
| 2397 | + | |
| 2398 | + | |
| 2399 | + | |
| 2400 | + | |
| 2401 | + | |
| 2402 | + | |
| 2403 | + | |
| 2404 | + | |
| 2405 | + | |
| 2406 | + | |
| 2407 | + | |
| 2408 | + | |
| 2409 | +<script type="text/javascript" id="d_track_sp"> | |
| 2410 | + ;(function(p,l,o,w,i,n,g){if(!p[i]){p.GlobalSnowplowNamespace=p.GlobalSnowplowNamespace||[]; | |
| 2411 | + p.GlobalSnowplowNamespace.push(i);p[i]=function(){(p[i].q=p[i].q||[]).push(arguments) | |
| 2412 | + };p[i].q=p[i].q||[];n=l.createElement(o);g=l.getElementsByTagName(o)[0];n.async=1; | |
| 2413 | + n.src=w;g.parentNode.insertBefore(n,g)}}(window,document,"script","//d32hwlnfiv2gyn.cloudfront.net/sp-2.0.0-dm-0.1.min.js","snowplow")); | |
| 2414 | + window.dmsnowplow = window.snowplow; | |
| 2415 | + | |
| 2416 | + dmsnowplow('newTracker', 'cf', 'd32hwlnfiv2gyn.cloudfront.net', { // Initialise a tracker | |
| 2417 | + appId: '6d6b044d' | |
| 2418 | + }); | |
| 2419 | + | |
| 2420 | + // snowplow queries element styles so we wait until CSS calculations are done. | |
| 2421 | + requestAnimationFrame(() => { | |
| 2422 | + dmsnowplow('trackPageView'); | |
| 2423 | + _dm_insite.forEach((rule) => { | |
| 2424 | + // Specifically in popup only the client knows if it is shown or not so we don't always want to track its impression here | |
| 2425 | + // the tracking is in popup.js | |
| 2426 | + if (rule.actionName !== "popup") { | |
| 2427 | + dmsnowplow('trackStructEvent', 'insite', 'impression', rule.ruleType, rule.ruleId); | |
| 2428 | + } | |
| 2429 | + window?.waitForDeferred?.('dmAjax', () => { | |
| 2430 | + $.DM.events.trigger('event-ruleTriggered', {value: rule}); | |
| 2431 | + }); | |
| 2432 | + }); | |
| 2433 | + }); | |
| 2434 | +</script> | |
| 2435 | + | |
| 2436 | + | |
| 2437 | + | |
| 2438 | +<div style="display:none;" id="P6iryBW0Wu"></div> | |
| 2439 | + | |
| 2440 | +<!-- photoswipe markup --> | |
| 2441 | + | |
| 2442 | + | |
| 2443 | + | |
| 2444 | + | |
| 2445 | + | |
| 2446 | + | |
| 2447 | + | |
| 2448 | + | |
| 2449 | + | |
| 2450 | +<!-- Root element of PhotoSwipe. Must have class pswp. --> | |
| 2451 | +<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true"> | |
| 2452 | + | |
| 2453 | + <!-- Background of PhotoSwipe. | |
| 2454 | + It's a separate element as animating opacity is faster than rgba(). --> | |
| 2455 | + <div class="pswp__bg"></div> | |
| 2456 | + | |
| 2457 | + <!-- Slides wrapper with overflow:hidden. --> | |
| 2458 | + <div class="pswp__scroll-wrap"> | |
| 2459 | + | |
| 2460 | + <!-- Container that holds slides. | |
| 2461 | + PhotoSwipe keeps only 3 of them in the DOM to save memory. | |
| 2462 | + Don't modify these 3 pswp__item elements, data is added later on. --> | |
| 2463 | + <div class="pswp__container"> | |
| 2464 | + <div class="pswp__item"></div> | |
| 2465 | + <div class="pswp__item"></div> | |
| 2466 | + <div class="pswp__item"></div> | |
| 2467 | + </div> | |
| 2468 | + | |
| 2469 | + <!-- Default (PhotoSwipeUI_Default) interface on top of sliding area. Can be changed. --> | |
| 2470 | + <div class="pswp__ui pswp__ui--hidden"> | |
| 2471 | + | |
| 2472 | + <div class="pswp__top-bar"> | |
| 2473 | + | |
| 2474 | + <!-- Controls are self-explanatory. Order can be changed. --> | |
| 2475 | + | |
| 2476 | + <div class="pswp__counter"></div> | |
| 2477 | + | |
| 2478 | + <button class="pswp__button pswp__button--close" title="Fermer (Echap)"></button> | |
| 2479 | + | |
| 2480 | + <button class="pswp__button pswp__button--share" title="Partager"></button> | |
| 2481 | + | |
| 2482 | + <button class="pswp__button pswp__button--fs" title="Passer en mode plein écran"></button> | |
| 2483 | + | |
| 2484 | + <button class="pswp__button pswp__button--zoom" title="Zoom avant / arrière"></button> | |
| 2485 | + | |
| 2486 | + <!-- Preloader demo http://codepen.io/dimsemenov/pen/yyBWoR --> | |
| 2487 | + <!-- element will get class pswp__preloader--active when preloader is running --> | |
| 2488 | + <div class="pswp__preloader"> | |
| 2489 | + <div class="pswp__preloader__icn"> | |
| 2490 | + <div class="pswp__preloader__cut"> | |
| 2491 | + <div class="pswp__preloader__donut"></div> | |
| 2492 | + </div> | |
| 2493 | + </div> | |
| 2494 | + </div> | |
| 2495 | + </div> | |
| 2496 | + | |
| 2497 | + <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"> | |
| 2498 | + <div class="pswp__share-tooltip"></div> | |
| 2499 | + </div> | |
| 2500 | + | |
| 2501 | + <button class="pswp__button pswp__button--arrow--left" title="Précédent (flèche gauche)"> | |
| 2502 | + </button> | |
| 2503 | + | |
| 2504 | + <button class="pswp__button pswp__button--arrow--right" title="Suivant (flèche droite)"> | |
| 2505 | + </button> | |
| 2506 | + | |
| 2507 | + <div class="pswp__caption"> | |
| 2508 | + <div class="pswp__caption__center"></div> | |
| 2509 | + </div> | |
| 2510 | + | |
| 2511 | + </div> | |
| 2512 | + | |
| 2513 | + </div> | |
| 2514 | + | |
| 2515 | +</div> | |
| 2516 | +<div id="fb-root" | |
| 2517 | + data-locale="fr_FR"></div> | |
| 2518 | +<!-- Alias: 6d6b044d --> | |
| 2519 | +<div class="dmPopupMask" id="dmPopupMask"></div> | |
| 2520 | +<div id="dmPopup" class="dmPopup"> | |
| 2521 | + <div class="dmPopupCloseWrapper"> <div class="dmPopupClose dm-common-icons-close oneIcon" onclick="dmHidePopup(event);"></div> </div> | |
| 2522 | + <div class="dmPopupTitle"> <span></span> Share by:</div> | |
| 2523 | + <div class="data"></div> | |
| 2524 | +</div><script id="d_track_personalization"> | |
| 2525 | + window?.waitForDeferred?.('dmAjax', () => { | |
| 2526 | + // Collects client data and updates cookies used by smart sites | |
| 2527 | + window.expireDays = 365; | |
| 2528 | + window.visitLength = 30 * 60000; | |
| 2529 | + $.setCookie("dm_timezone_offset", (new Date()).getTimezoneOffset(), window.expireDays); | |
| 2530 | + setSmartSiteCookiesInternal("dm_this_page_view","dm_last_page_view","dm_total_visits","dm_last_visit"); | |
| 2531 | + }); | |
| 2532 | +</script> | |
| 2533 | +<script type="text/javascript"> | |
| 2534 | + | |
| 2535 | + Parameters.NavigationAreaParams.MoreButtonText = 'MORE'; | |
| 2536 | + | |
| 2537 | + Parameters.NavigationAreaParams.LessButtonText = 'LESS'; | |
| 2538 | + Parameters.HomeLinkText = 'Home'; | |
| 2539 | + </script> | |
| 2540 | +<!-- End Script tags --> | |
| 2541 | +<!-- Site Wide Html Markup --> | |
| 2542 | +<!-- Site Wide Html Markup --> | |
| 2543 | +</body> | |
| 2544 | +</html> | |
added
tests/fixtures/girs/5ad99f2d9b3b3ac779ed.html
+2196 −0
@@ -0,0 +1,2196 @@ | ||
| 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 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | +<script type="text/javascript"> | |
| 46 | + window._currentDevice = 'desktop'; | |
| 47 | + window.Parameters = window.Parameters || { | |
| 48 | + HomeUrl: 'https://www.girs.ca/', | |
| 49 | + | |
| 50 | + 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/saint-isidore/900-rue-semences', | |
| 64 | + InitialPageUuid: '4fff269c0dbc4ba98ccfc0f30ef097da', | |
| 65 | + InitialPageId: '44292039', | |
| 66 | + InitialEncodedPageAlias: 'bG9jYXRpb24vc2FpbnQtaXNpZG9yZS85MDAtcnVlLXNlbWVuY2Vz', | |
| 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érience sur notre site web. Pour en savoir plus, veuillez accéder à la page <a value=\"donnees-personnelles\" label=\"\" type=\"page\" href=\"\/donnees-personnelles\" data-runtime-url=\"\/donnees-personnelles\">Confidentialité<\/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: 'Une erreur est survenue lors de la connexion à la page.<br/> Vérifiez que vous n’êtes pas hors ligne.', | |
| 104 | + password: 'Nom ou mot de passe incorrects', | |
| 105 | + tryAgain: 'Réessayez' | |
| 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: true, | |
| 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: false | |
| 134 | + }; | |
| 135 | + | |
| 136 | + window.Parameters.LayoutID = {}; | |
| 137 | + window.Parameters.LayoutID[window._currentDevice] = 6; | |
| 138 | + window.Parameters.LayoutVariationID = {}; | |
| 139 | + window.Parameters.LayoutVariationID[window._currentDevice] = 5; | |
| 140 | +</script> | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | +<!-- Injecting site-wide to the head --> | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
| 169 | + | |
| 170 | + | |
| 171 | + | |
| 172 | + | |
| 173 | + | |
| 174 | + | |
| 175 | + | |
| 176 | + | |
| 177 | + | |
| 178 | +<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('&'); | |
| 185 | + | |
| 186 | + const expires = 'expires=' + new Date().getTime() + 24 * 60 * 60 * 1000; | |
| 187 | + const domain = 'domain=' + window.location.hostname; | |
| 188 | + const path = "path=/"; | |
| 189 | + | |
| 190 | + 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.cookie | |
| 220 | + .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 submission | |
| 226 | + // 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> | |
| 240 | + | |
| 241 | + | |
| 242 | + | |
| 243 | + | |
| 244 | + | |
| 245 | + | |
| 246 | +<!-- End Injecting site-wide to the head --> | |
| 247 | + | |
| 248 | +<!-- Inject secured cdn script --> | |
| 249 | + | |
| 250 | + | |
| 251 | +<!-- ========= 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 >>> 0 | |
| 260 | + } | |
| 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.serviceWorker | |
| 277 | + .register(serviceWorkerPath, { scope: './' }) | |
| 278 | + .then( | |
| 279 | + function (registration) { | |
| 280 | + // Registration was successful | |
| 281 | + console.log( | |
| 282 | + 'ServiceWorker registration successful with scope: ', | |
| 283 | + registration.scope | |
| 284 | + ); | |
| 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 | + }); | |
| 295 | + | |
| 296 | + // helper function to refresh the page | |
| 297 | + var refreshPage = (function () { | |
| 298 | + var refreshing; | |
| 299 | + return function () { | |
| 300 | + if (refreshing) return; | |
| 301 | + // prevent multiple refreshes | |
| 302 | + 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 loop | |
| 308 | + } | |
| 309 | + } | |
| 310 | + refreshing = true; | |
| 311 | + localStorage.setItem(refreshkey, Date.now()); | |
| 312 | + console.log('refereshing page'); | |
| 313 | + window.location.reload(); | |
| 314 | + }; | |
| 315 | + })(); | |
| 316 | + | |
| 317 | + 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 --> | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
| 340 | +<link rel="canonical" href="https://www.girs.ca/location/saint-isidore/900-rue-semences"> | |
| 341 | + | |
| 342 | +<meta id="view" name="viewport" content="initial-scale=1, minimum-scale=1, maximum-scale=5, viewport-fit=cover"> | |
| 343 | + | |
| 344 | +<meta name="apple-mobile-web-app-capable" content="yes"> | |
| 345 | + | |
| 346 | +<!--Add favorites icons--> | |
| 347 | + | |
| 348 | +<link rel="icon" type="image/x-icon" href="https://irp.cdn-website.com/6d6b044d/site_favicon_16_1673962208002.ico"/> | |
| 349 | + | |
| 350 | +<!-- 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"/> | |
| 354 | + | |
| 355 | + | |
| 356 | + | |
| 357 | +<!-- render the required CSS and JS in the head section --> | |
| 358 | +<script id='d-js-dmapi'> | |
| 359 | + window.SystemID = 'US_DIRECT_PRODUCTION'; | |
| 360 | + | |
| 361 | + 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; | |
| 372 | + | |
| 373 | + 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 | + } | |
| 405 | + | |
| 406 | + if (!window.requestIdleCallback) { | |
| 407 | + window.requestIdleCallback = function (fn) { | |
| 408 | + setTimeout(fn, 0); | |
| 409 | + } | |
| 410 | + } | |
| 411 | +</script> | |
| 412 | + | |
| 413 | +<!-- loadCSS function header.jsp--> | |
| 414 | + | |
| 415 | + | |
| 416 | + | |
| 417 | + | |
| 418 | + | |
| 419 | + | |
| 420 | +<script id="d-js-load-css"> | |
| 421 | +/** | |
| 422 | + * There are a few <link> tags with CSS resource in them that are preloaded in the page | |
| 423 | + * in each of those there is a "onload" handler which invokes the loadCSS callback | |
| 424 | + * 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 threre | |
| 427 | + * is no page css (which may happen on inner pages) then we do not wait for it | |
| 428 | + */ | |
| 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']"); | |
| 440 | + | |
| 441 | + 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; | |
| 446 | + | |
| 447 | + storedGlobalCssLink.disabled = true; | |
| 448 | + loadCssLink(storedGlobalCssLink); | |
| 449 | + | |
| 450 | + if (storedPageCssLink) { | |
| 451 | + storedPageCssLink.disabled = true; | |
| 452 | + loadCssLink(storedPageCssLink); | |
| 453 | + } | |
| 454 | + | |
| 455 | + if(storedWidgetCssLink) { | |
| 456 | + storedWidgetCssLink.disabled = true; | |
| 457 | + loadCssLink(storedWidgetCssLink); | |
| 458 | + } | |
| 459 | + | |
| 460 | + storedRuntimeCssLink.disabled = true; | |
| 461 | + loadCssLink(storedRuntimeCssLink); | |
| 462 | + | |
| 463 | + 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're | |
| 474 | + // 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 | + | |
| 484 | + | |
| 485 | + 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; | |
| 490 | + | |
| 491 | + 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 e | |
| 519 | + } | |
| 520 | + } | |
| 521 | + window.loadCSS = window.loadCSS || loadCSS; | |
| 522 | +})(); | |
| 523 | +</script> | |
| 524 | + | |
| 525 | + | |
| 526 | + | |
| 527 | +<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 = b | |
| 532 | + }).bind(this)) | |
| 533 | + } | |
| 534 | + | |
| 535 | + 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 | + d | |
| 542 | + ? d.promise.then(a) | |
| 543 | + : c && ["complete", "interactive"].includes(document.readyState) | |
| 544 | + ? setTimeout(a, 1) | |
| 545 | + : c | |
| 546 | + ? 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 */ | |
| 552 | + | |
| 553 | +.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 | + | |
| 555 | + | |
| 556 | +</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> | |
| 568 | + | |
| 569 | + | |
| 570 | + | |
| 571 | + | |
| 572 | + | |
| 573 | + | |
| 574 | + | |
| 575 | + | |
| 576 | + | |
| 577 | + | |
| 578 | + | |
| 579 | + | |
| 580 | + | |
| 581 | + | |
| 582 | + | |
| 583 | + | |
| 584 | + | |
| 585 | + | |
| 586 | + | |
| 587 | + | |
| 588 | + | |
| 589 | + | |
| 590 | + | |
| 591 | + | |
| 592 | + | |
| 593 | +<!-- Google Fonts Include --> | |
| 594 | + | |
| 595 | + | |
| 596 | + | |
| 597 | + | |
| 598 | + | |
| 599 | + | |
| 600 | + | |
| 601 | + | |
| 602 | + | |
| 603 | + | |
| 604 | + | |
| 605 | + | |
| 606 | + | |
| 607 | +<!-- loadCSS function fonts.jsp--> | |
| 608 | + | |
| 609 | + | |
| 610 | + | |
| 611 | +<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&subset=latin-ext&display=swap" /> | |
| 612 | + | |
| 613 | + | |
| 614 | + | |
| 615 | + | |
| 616 | + | |
| 617 | +<!-- 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" /> | |
| 619 | + | |
| 620 | +<!-- End of RT CSS Include --> | |
| 621 | + | |
| 622 | +<link type="text/css" rel="stylesheet" href="https://irp.cdn-website.com/WIDGET_CSS/4c80ec77363a3c04fe04b5c3dd9e2743.css" id="widgetCSS" /> | |
| 623 | + | |
| 624 | +<!-- Support `img` size attributes --> | |
| 625 | +<style>img[width][height] { | |
| 626 | + height: auto; | |
| 627 | +}</style> | |
| 628 | + | |
| 629 | +<!-- Support showing sticky element on page only --> | |
| 630 | +<style> | |
| 631 | + body[data-page-alias="location/saint-isidore/900-rue-semences"] #dm [data-show-on-page-only="location/saint-isidore/900-rue-semences"] { | |
| 632 | + display: block !important; | |
| 633 | + } | |
| 634 | +</style> | |
| 635 | + | |
| 636 | +<!-- This is populated in Ajax navigation --> | |
| 637 | +<style id="pageAdditionalWidgetsCss" type="text/css"> | |
| 638 | +</style> | |
| 639 | + | |
| 640 | + | |
| 641 | + | |
| 642 | + | |
| 643 | +<!-- 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" /> | |
| 645 | + | |
| 646 | + | |
| 647 | + | |
| 648 | +<style id="customWidgetStyle" type="text/css"> | |
| 649 | + | |
| 650 | +</style> | |
| 651 | +<style id="innerPagesStyle" type="text/css"> | |
| 652 | + | |
| 653 | +</style> | |
| 654 | + | |
| 655 | + | |
| 656 | +<style | |
| 657 | + id="additionalGlobalCss" type="text/css" | |
| 658 | +> | |
| 659 | +</style> | |
| 660 | + | |
| 661 | +<style id="pagestyle" type="text/css"> | |
| 662 | + *#dm *.dmBody a.span.textonly | |
| 663 | +{ | |
| 664 | + color:rgb(255,255,255) !important; | |
| 665 | +} | |
| 666 | +*#dm *.dmBody div.dmform-error | |
| 667 | +{ | |
| 668 | + font-style:normal !important; | |
| 669 | +} | |
| 670 | +*#dm *.dmBody div.dmforminput textarea | |
| 671 | +{ | |
| 672 | + font-style:italic !important; | |
| 673 | +} | |
| 674 | +*#dm *.dmBody div.dmforminput *.fileUploadLink | |
| 675 | +{ | |
| 676 | + font-style:italic !important; | |
| 677 | +} | |
| 678 | +*#dm *.dmBody div.checkboxwrapper span | |
| 679 | +{ | |
| 680 | + font-style:italic !important; | |
| 681 | +} | |
| 682 | +*#dm *.dmBody div.radiowrapper span | |
| 683 | +{ | |
| 684 | + font-style:italic !important; | |
| 685 | +} | |
| 686 | +*#dm *.dmBody nav.u_1144820115 | |
| 687 | +{ | |
| 688 | + color:black !important; | |
| 689 | +} | |
| 690 | +*#dm *.dmBody *.u_1004639188:before | |
| 691 | +{ | |
| 692 | + opacity:0.5 !important; | |
| 693 | + background-color:rgb(255,255,255) !important; | |
| 694 | +} | |
| 695 | +*#dm *.dmBody *.u_1004639188.before | |
| 696 | +{ | |
| 697 | + opacity:0.5 !important; | |
| 698 | + background-color:rgb(255,255,255) !important; | |
| 699 | +} | |
| 700 | +*#dm *.dmBody *.u_1004639188>.bgExtraLayerOverlay | |
| 701 | +{ | |
| 702 | + opacity:0.5 !important; | |
| 703 | + background-color:rgb(255,255,255) !important; | |
| 704 | +} | |
| 705 | +*#dm *.dmBody div.u_1004639188 | |
| 706 | +{ | |
| 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:before | |
| 713 | +{ | |
| 714 | + background-color:var(--color_1) !important; | |
| 715 | +} | |
| 716 | +*#dm *.dmBody div.u_1004639188.before | |
| 717 | +{ | |
| 718 | + background-color:var(--color_1) !important; | |
| 719 | +} | |
| 720 | +*#dm *.dmBody div.u_1004639188>.bgExtraLayerOverlay | |
| 721 | +{ | |
| 722 | + background-color:var(--color_1) !important; | |
| 723 | +} | |
| 724 | +*#dm *.dmBody a.u_1756842165:hover | |
| 725 | +{ | |
| 726 | + background-color:var(--color_3) !important; | |
| 727 | + background-image:none !important; | |
| 728 | +} | |
| 729 | +*#dm *.dmBody a.u_1756842165.hover | |
| 730 | +{ | |
| 731 | + background-color:var(--color_3) !important; | |
| 732 | + background-image:none !important; | |
| 733 | +} | |
| 734 | +*#dm *.dmBody a.u_1756842165:hover span.text | |
| 735 | +{ | |
| 736 | + color:var(--color_1) !important; | |
| 737 | +} | |
| 738 | +*#dm *.dmBody a.u_1756842165.hover span.text | |
| 739 | +{ | |
| 740 | + color:var(--color_1) !important; | |
| 741 | +} | |
| 742 | +*#dm *.dmBody a.u_1756842165 span.text | |
| 743 | +{ | |
| 744 | + font-family:'Roboto' !important; | |
| 745 | + font-weight:400 !important; | |
| 746 | + color:var(--color_3) !important; | |
| 747 | +} | |
| 748 | +*#dm *.dmBody div.u_1937526287 | |
| 749 | +{ | |
| 750 | + border-style:solid !important; | |
| 751 | + border-width:2px !important; | |
| 752 | + border-color:var(--color_3) !important; | |
| 753 | +} | |
| 754 | +*#dm *.dmBody div.u_1452815793 | |
| 755 | +{ | |
| 756 | + background-color:rgba(0,0,0,0.05) !important; | |
| 757 | +} | |
| 758 | +*#dm *.dmBody div.u_1840143137 | |
| 759 | +{ | |
| 760 | + background-color:rgba(0,0,0,0.05) !important; | |
| 761 | +} | |
| 762 | +*#dm *.dmBody div.u_1813520727 | |
| 763 | +{ | |
| 764 | + background-color:rgba(0,0,0,0.05) !important; | |
| 765 | +} | |
| 766 | +*#dm *.dmBody div.u_1813669443 .svg | |
| 767 | +{ | |
| 768 | + color:var(--color_3) !important; | |
| 769 | + fill:var(--color_3) !important; | |
| 770 | +} | |
| 771 | +*#dm *.dmBody div.u_1465006226 .svg | |
| 772 | +{ | |
| 773 | + color:rgba(255,255,255,1) !important; | |
| 774 | + fill:rgba(255,255,255,1) !important; | |
| 775 | +} | |
| 776 | +*#dm *.dmBody div.u_1419208593 .svg | |
| 777 | +{ | |
| 778 | + color:rgba(255,255,255,1) !important; | |
| 779 | + fill:rgba(255,255,255,1) !important; | |
| 780 | +} | |
| 781 | +*#dm *.dmBody *.u_1713239492:before | |
| 782 | +{ | |
| 783 | + opacity:0.5 !important; | |
| 784 | + background-color:rgb(255,255,255) !important; | |
| 785 | +} | |
| 786 | +*#dm *.dmBody *.u_1713239492.before | |
| 787 | +{ | |
| 788 | + opacity:0.5 !important; | |
| 789 | + background-color:rgb(255,255,255) !important; | |
| 790 | +} | |
| 791 | +*#dm *.dmBody *.u_1713239492>.bgExtraLayerOverlay | |
| 792 | +{ | |
| 793 | + opacity:0.5 !important; | |
| 794 | + background-color:rgb(255,255,255) !important; | |
| 795 | +} | |
| 796 | +*#dm *.dmBody div.u_1486697154 | |
| 797 | +{ | |
| 798 | + border-style:solid !important; | |
| 799 | + border-width:2px !important; | |
| 800 | + border-color:var(--color_3) !important; | |
| 801 | +} | |
| 802 | +*#dm *.dmBody a.u_1331251441 span.text | |
| 803 | +{ | |
| 804 | + text-decoration:none !important; | |
| 805 | + font-weight:400 !important; | |
| 806 | +} | |
| 807 | +*#dm *.dmBody a.u_1331251441:hover span.text | |
| 808 | +{ | |
| 809 | + text-decoration:underline !important; | |
| 810 | + color:var(--color_1) !important; | |
| 811 | +} | |
| 812 | +*#dm *.dmBody a.u_1331251441.hover span.text | |
| 813 | +{ | |
| 814 | + text-decoration:underline !important; | |
| 815 | + color:var(--color_1) !important; | |
| 816 | +} | |
| 817 | +*#dm *.dmBody a.u_1331251441:hover | |
| 818 | +{ | |
| 819 | + background-color:var(--color_3) !important; | |
| 820 | + background-image:none !important; | |
| 821 | +} | |
| 822 | +*#dm *.dmBody a.u_1331251441.hover | |
| 823 | +{ | |
| 824 | + background-color:var(--color_3) !important; | |
| 825 | + background-image:none !important; | |
| 826 | +} | |
| 827 | +*#dm *.dmBody div.u_1884387629 | |
| 828 | +{ | |
| 829 | + background-color:rgba(0,0,0,0.05) !important; | |
| 830 | +} | |
| 831 | +*#dm *.dmBody a.u_1331251441 | |
| 832 | +{ | |
| 833 | + border-style:solid !important; | |
| 834 | + border-width:2px !important; | |
| 835 | + border-color:var(--color_3) !important; | |
| 836 | + background-color:rgba(0,0,0,0) !important; | |
| 837 | + border-radius:20px 20px 20px 20px !important; | |
| 838 | +} | |
| 839 | +*#dm *.dmBody div.u_1742636284 .svg | |
| 840 | +{ | |
| 841 | + color:var(--color_1) !important; | |
| 842 | + fill:var(--color_1) !important; | |
| 843 | +} | |
| 844 | +*#dm *.dmBody a.u_1756842165 | |
| 845 | +{ | |
| 846 | + border-color:var(--color_3) !important; | |
| 847 | + border-style:solid !important; | |
| 848 | + border-width:2px !important; | |
| 849 | + border-radius:20px 20px 20px 20px !important; | |
| 850 | +} | |
| 851 | +*#dm *.dmBody div.u_1713239492:before | |
| 852 | +{ | |
| 853 | + background-color:var(--color_1) !important; | |
| 854 | + opacity:0.4 !important; | |
| 855 | +} | |
| 856 | +*#dm *.dmBody div.u_1713239492.before | |
| 857 | +{ | |
| 858 | + background-color:var(--color_1) !important; | |
| 859 | + opacity:0.4 !important; | |
| 860 | +} | |
| 861 | +*#dm *.dmBody div.u_1713239492>.bgExtraLayerOverlay | |
| 862 | +{ | |
| 863 | + background-color:var(--color_1) !important; | |
| 864 | + opacity:0.4 !important; | |
| 865 | +} | |
| 866 | +*#dm *.dmBody div.u_1746905231 | |
| 867 | +{ | |
| 868 | + background-image:linear-gradient(90deg,rgba(66,123,202,1) 0%,rgba(73,174,223,1) 100%) !important; | |
| 869 | + background-origin:border-box !important; | |
| 870 | +} | |
| 871 | +*#dm *.dmBody div.u_1732757548 | |
| 872 | +{ | |
| 873 | + background-image:linear-gradient(90deg,rgba(66,123,202,1) 0%,rgba(73,174,223,1) 100%) !important; | |
| 874 | + background-origin:border-box !important; | |
| 875 | +} | |
| 876 | +*#dm *.dmBody div.u_1373323900 | |
| 877 | +{ | |
| 878 | + background-image:linear-gradient(90deg,rgba(66,123,202,1) 0%,rgba(73,174,223,1) 100%) !important; | |
| 879 | + background-origin:border-box !important; | |
| 880 | +} | |
| 881 | +*#dm *.dmBody *.u_1114660179 | |
| 882 | +{ | |
| 883 | + width:100% !important; | |
| 884 | +} | |
| 885 | +*#dm *.dmBody nav.u_1737436200 | |
| 886 | +{ | |
| 887 | + color:black !important; | |
| 888 | +} | |
| 889 | +*#dm *.dmBody nav.u_1889817761 | |
| 890 | +{ | |
| 891 | + color:black !important; | |
| 892 | +} | |
| 893 | + | |
| 894 | +</style> | |
| 895 | + | |
| 896 | +<style id="pagestyleDevice" type="text/css"> | |
| 897 | + *#dm *.d-page-1716942098 DIV.dmInner | |
| 898 | +{ | |
| 899 | + background-repeat:no-repeat !important; | |
| 900 | + background-size:cover !important; | |
| 901 | + background-attachment:fixed !important; | |
| 902 | + background-position:50% 50% !important; | |
| 903 | +} | |
| 904 | +*#dm *.d-page-1716942098 DIV#dmSlideRightNavRight | |
| 905 | +{ | |
| 906 | + background-repeat:no-repeat !important; | |
| 907 | + background-image:none !important; | |
| 908 | + background-size:cover !important; | |
| 909 | + background-attachment:fixed !important; | |
| 910 | + background-position:50% 50% !important; | |
| 911 | +} | |
| 912 | +*#dm *.dmBody a.u_1756842165 span.text | |
| 913 | +{ | |
| 914 | + font-size:20px !important; | |
| 915 | +} | |
| 916 | +*#dm *.dmBody div.u_1937526287 | |
| 917 | +{ | |
| 918 | + margin-left:20px !important; | |
| 919 | + padding-top:0px !important; | |
| 920 | + padding-left:20px !important; | |
| 921 | + padding-bottom:0px !important; | |
| 922 | + margin-top:0px !important; | |
| 923 | + margin-bottom:0px !important; | |
| 924 | + margin-right:20px !important; | |
| 925 | + padding-right:20px !important; | |
| 926 | +} | |
| 927 | +*#dm *.dmBody div.u_1121935101 | |
| 928 | +{ | |
| 929 | + height:600px !important; | |
| 930 | +} | |
| 931 | +@media (min-width:768px) and (max-width:1024px) {} | |
| 932 | +@media (min-width:1025px) {} | |
| 933 | +*#dm *.dmBody div.u_1221610193 | |
| 934 | +{ | |
| 935 | + height:20px !important; | |
| 936 | +} | |
| 937 | +*#dm *.dmBody div.u_1127078365 | |
| 938 | +{ | |
| 939 | + height:20px !important; | |
| 940 | +} | |
| 941 | +*#dm *.dmBody div.u_1288707829 | |
| 942 | +{ | |
| 943 | + height:20px !important; | |
| 944 | +} | |
| 945 | +*#dm *.dmBody div.u_1337411818 | |
| 946 | +{ | |
| 947 | + height:20px !important; | |
| 948 | +} | |
| 949 | +*#dm *.dmBody div.u_1486647722 | |
| 950 | +{ | |
| 951 | + float:none !important; | |
| 952 | + top:0px !important; | |
| 953 | + left:0 !important; | |
| 954 | + width:calc(100% - 0px) !important; | |
| 955 | + position:relative !important; | |
| 956 | + height:auto !important; | |
| 957 | + padding-top:2px !important; | |
| 958 | + padding-left:0px !important; | |
| 959 | + padding-bottom:2px !important; | |
| 960 | + min-height:auto !important; | |
| 961 | + margin-right:auto !important; | |
| 962 | + margin-left:auto !important; | |
| 963 | + max-width:100% !important; | |
| 964 | + margin-top:8px !important; | |
| 965 | + margin-bottom:8px !important; | |
| 966 | + padding-right:0px !important; | |
| 967 | + min-width:25px !important; | |
| 968 | +} | |
| 969 | +*#dm *.dmBody a.u_1331251441 | |
| 970 | +{ | |
| 971 | + float:none !important; | |
| 972 | + top:0px !important; | |
| 973 | + left:0 !important; | |
| 974 | + width:200px !important; | |
| 975 | + position:relative !important; | |
| 976 | + height:auto !important; | |
| 977 | + padding-top:10px !important; | |
| 978 | + padding-left:7px !important; | |
| 979 | + padding-bottom:10px !important; | |
| 980 | + min-height:40px !important; | |
| 981 | + margin-right:auto !important; | |
| 982 | + margin-left:auto !important; | |
| 983 | + max-width:100% !important; | |
| 984 | + margin-top:10px !important; | |
| 985 | + margin-bottom:10px !important; | |
| 986 | + padding-right:7px !important; | |
| 987 | + min-width:0 !important; | |
| 988 | + text-align:center !important; | |
| 989 | +} | |
| 990 | +*#dm *.dmBody a.u_1331251441 span.text | |
| 991 | +{ | |
| 992 | + font-size:18px !important; | |
| 993 | +} | |
| 994 | +*#dm *.dmBody div.u_1742636284 | |
| 995 | +{ | |
| 996 | + width:90px !important; | |
| 997 | + height:90px !important; | |
| 998 | +} | |
| 999 | +*#dm *.dmBody div.u_1004639188 | |
| 1000 | +{ | |
| 1001 | + float:none !important; | |
| 1002 | + top:0 !important; | |
| 1003 | + left:0 !important; | |
| 1004 | + width:auto !important; | |
| 1005 | + position:relative !important; | |
| 1006 | + height:auto !important; | |
| 1007 | + padding-top:90px !important; | |
| 1008 | + padding-left:40px !important; | |
| 1009 | + padding-bottom:90px !important; | |
| 1010 | + min-height:auto !important; | |
| 1011 | + max-width:100% !important; | |
| 1012 | + padding-right:40px !important; | |
| 1013 | + min-width:0 !important; | |
| 1014 | + text-align:start !important; | |
| 1015 | + background-position:50% 50% !important; | |
| 1016 | + background-attachment:initial !important; | |
| 1017 | + margin-left:0px !important; | |
| 1018 | + margin-top:0px !important; | |
| 1019 | + margin-bottom:0px !important; | |
| 1020 | + margin-right:0px !important; | |
| 1021 | +} | |
| 1022 | +*#dm *.dmBody div.u_1090431858 | |
| 1023 | +{ | |
| 1024 | + height:800px !important; | |
| 1025 | + important:true !important; | |
| 1026 | + width:1200px !important; | |
| 1027 | +} | |
| 1028 | +*#dm *.dmBody a.u_1756842165 | |
| 1029 | +{ | |
| 1030 | + float:none !important; | |
| 1031 | + top:0px !important; | |
| 1032 | + left:0px !important; | |
| 1033 | + width:200px !important; | |
| 1034 | + position:relative !important; | |
| 1035 | + height:auto !important; | |
| 1036 | + padding-top:10px !important; | |
| 1037 | + padding-left:7px !important; | |
| 1038 | + padding-bottom:10px !important; | |
| 1039 | + min-height:40px !important; | |
| 1040 | + max-width:100% !important; | |
| 1041 | + padding-right:7px !important; | |
| 1042 | + min-width:0 !important; | |
| 1043 | + text-align:center !important; | |
| 1044 | + margin-right:866px !important; | |
| 1045 | + margin-left:0px !important; | |
| 1046 | + margin-top:20px !important; | |
| 1047 | + margin-bottom:10px !important; | |
| 1048 | +} | |
| 1049 | + | |
| 1050 | +</style> | |
| 1051 | + | |
| 1052 | +<!-- Flex Sections CSS --> | |
| 1053 | + | |
| 1054 | + | |
| 1055 | + | |
| 1056 | + | |
| 1057 | + | |
| 1058 | + | |
| 1059 | + | |
| 1060 | +<style id="globalFontSizeStyle" type="text/css"> | |
| 1061 | + .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; } | |
| 1062 | +</style> | |
| 1063 | +<style id="pageFontSizeStyle" type="text/css"> | |
| 1064 | +</style> | |
| 1065 | + | |
| 1066 | + | |
| 1067 | + | |
| 1068 | + | |
| 1069 | +<style id="hideAnimFix"> | |
| 1070 | + .dmDesktopBody:not(.editGrid) [data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) [data-anim-extended] { | |
| 1071 | + visibility: hidden; | |
| 1072 | + } | |
| 1073 | + | |
| 1074 | + .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-extended] { | |
| 1075 | + visibility: hidden !important; | |
| 1076 | + } | |
| 1077 | + | |
| 1078 | + #dmRoot:not(.editGrid) .flex-element [data-anim-extended] { | |
| 1079 | + visibility: hidden; | |
| 1080 | + } | |
| 1081 | + | |
| 1082 | +</style> | |
| 1083 | + | |
| 1084 | + | |
| 1085 | + | |
| 1086 | + | |
| 1087 | +<style id="fontFallbacks"> | |
| 1088 | + @font-face { | |
| 1089 | + font-family: "Roboto Fallback"; | |
| 1090 | + src: local('Arial'); | |
| 1091 | + ascent-override: 92.6709%; | |
| 1092 | + descent-override: 24.3871%; | |
| 1093 | + size-adjust: 100.1106%; | |
| 1094 | + line-gap-override: 0%; | |
| 1095 | + }@font-face { | |
| 1096 | + font-family: "Montserrat Fallback"; | |
| 1097 | + src: local('Arial'); | |
| 1098 | + ascent-override: 84.9466%; | |
| 1099 | + descent-override: 22.0264%; | |
| 1100 | + size-adjust: 113.954%; | |
| 1101 | + line-gap-override: 0%; | |
| 1102 | + }@font-face { | |
| 1103 | + font-family: "Lato Fallback"; | |
| 1104 | + src: local('Arial'); | |
| 1105 | + ascent-override: 101.3181%; | |
| 1106 | + descent-override: 21.865%; | |
| 1107 | + size-adjust: 97.4159%; | |
| 1108 | + line-gap-override: 0%; | |
| 1109 | + }@font-face { | |
| 1110 | + font-family: "Pacifico Fallback"; | |
| 1111 | + src: local('Arial'); | |
| 1112 | + ascent-override: 140.9687%; | |
| 1113 | + descent-override: 49.0091%; | |
| 1114 | + size-adjust: 92.4319%; | |
| 1115 | + line-gap-override: 0%; | |
| 1116 | + }@font-face { | |
| 1117 | + font-family: "Courier Prime Fallback"; | |
| 1118 | + src: local('Arial'); | |
| 1119 | + ascent-override: 57.5122%; | |
| 1120 | + descent-override: 25.1616%; | |
| 1121 | + size-adjust: 135.8407%; | |
| 1122 | + line-gap-override: 0%; | |
| 1123 | + }@font-face { | |
| 1124 | + font-family: "Comfortaa Fallback"; | |
| 1125 | + src: local('Arial'); | |
| 1126 | + ascent-override: 74.2135%; | |
| 1127 | + descent-override: 19.7117%; | |
| 1128 | + size-adjust: 118.7115%; | |
| 1129 | + line-gap-override: 0%; | |
| 1130 | + } | |
| 1131 | +</style> | |
| 1132 | + | |
| 1133 | + | |
| 1134 | +<!-- End render the required css and JS in the head section --> | |
| 1135 | + | |
| 1136 | + | |
| 1137 | + | |
| 1138 | + | |
| 1139 | + | |
| 1140 | + | |
| 1141 | +<meta property="og:type" content="website"> | |
| 1142 | +<meta property="og:url" content="https://www.girs.ca/location/saint-isidore/900-rue-semences"> | |
| 1143 | + | |
| 1144 | + <title> | |
| 1145 | + Gestion Immobilière de la Rive Sud | Saint-Isidore | |
| 1146 | + </title> | |
| 1147 | + <meta name="description" content="Découvrez des appartements modernes à Saint-Isidore, alliant confort &amp; sécurité. Contactez-nous pour plus d'infos!"/> | |
| 1148 | + | |
| 1149 | + <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"/> | |
| 1150 | + | |
| 1151 | + <meta name="twitter:card" content="summary"/> | |
| 1152 | + <meta name="twitter:title" content="Gestion Immobilière de la Rive Sud | Saint-Isidore"/> | |
| 1153 | + <meta name="twitter:description" content="Découvrez des appartements modernes à Saint-Isidore, alliant confort &amp; sécurité. Contactez-nous pour plus d'infos!"/> | |
| 1154 | + <meta property="og:description" content="Découvrez des appartements modernes à Saint-Isidore, alliant confort &amp; sécurité. Contactez-nous pour plus d'infos!"/> | |
| 1155 | + <meta property="og:title" content="Gestion Immobilière de la Rive Sud | Saint-Isidore"/> | |
| 1156 | + | |
| 1157 | + | |
| 1158 | + | |
| 1159 | + | |
| 1160 | +<!-- SYS- VVNfRElSRUNUX1BST0RVQ1RJT04= --> | |
| 1161 | +</head> | |
| 1162 | + | |
| 1163 | + | |
| 1164 | + | |
| 1165 | + | |
| 1166 | + | |
| 1167 | + | |
| 1168 | + | |
| 1169 | + | |
| 1170 | + | |
| 1171 | + | |
| 1172 | + | |
| 1173 | + | |
| 1174 | + | |
| 1175 | + | |
| 1176 | + | |
| 1177 | + | |
| 1178 | + | |
| 1179 | + | |
| 1180 | + | |
| 1181 | + | |
| 1182 | + | |
| 1183 | +<body id="dmRoot" data-page-alias="location/saint-isidore/900-rue-semences" class="dmRoot dmDesktopBody fix-mobile-scrolling addCanvasBorder dmResellerSite dmLargeBody responsiveTablet " | |
| 1184 | + style="padding:0;margin:0;" | |
| 1185 | + | |
| 1186 | + > | |
| 1187 | + | |
| 1188 | + | |
| 1189 | + | |
| 1190 | + | |
| 1191 | + | |
| 1192 | + | |
| 1193 | + | |
| 1194 | + | |
| 1195 | + | |
| 1196 | + | |
| 1197 | + | |
| 1198 | + | |
| 1199 | + | |
| 1200 | + | |
| 1201 | + | |
| 1202 | + | |
| 1203 | +<!-- ========= Site Content ========= --> | |
| 1204 | +<div id="dm" class='dmwr'> | |
| 1205 | + | |
| 1206 | + <div class="dm_wrapper standard-var5 widgetStyle-3 standard"> | |
| 1207 | + <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> | |
| 1208 | +</div> | |
| 1209 | +</div> | |
| 1210 | + <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> | |
| 1211 | +</div> | |
| 1212 | + <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">À louer<span class="icon icon-angle-down"></span> | |
| 1213 | +</span> | |
| 1214 | +</a> | |
| 1215 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1216 | +</span> | |
| 1217 | +</a> | |
| 1218 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/scott/rue-amanda-gustave" class="unifiednav__item unav-item dmUDNavigationItem_010101104557 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Amanda-Gustave" data-auto="page-text-style">Rue Amanda-Gustave<span class="icon icon-angle-right"></span> | |
| 1219 | +</span> | |
| 1220 | +</a> | |
| 1221 | +</li> | |
| 1222 | + <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> | |
| 1223 | +</span> | |
| 1224 | +</a> | |
| 1225 | +</li> | |
| 1226 | + <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> | |
| 1227 | +</span> | |
| 1228 | +</a> | |
| 1229 | +</li> | |
| 1230 | +</ul> | |
| 1231 | +</li> | |
| 1232 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1233 | +</span> | |
| 1234 | +</a> | |
| 1235 | + <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> | |
| 1236 | +</span> | |
| 1237 | +</a> | |
| 1238 | +</li> | |
| 1239 | +</ul> | |
| 1240 | +</li> | |
| 1241 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1242 | +</span> | |
| 1243 | +</a> | |
| 1244 | + <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 Érables, Jumelé<span class="icon icon-angle-right"></span> | |
| 1245 | +</span> | |
| 1246 | +</a> | |
| 1247 | +</li> | |
| 1248 | + <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/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 Érables, Condo<span class="icon icon-angle-right"></span> | |
| 1249 | +</span> | |
| 1250 | +</a> | |
| 1251 | +</li> | |
| 1252 | +</ul> | |
| 1253 | +</li> | |
| 1254 | + <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1255 | +</span> | |
| 1256 | +</a> | |
| 1257 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/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> | |
| 1258 | +</span> | |
| 1259 | +</a> | |
| 1260 | +</li> | |
| 1261 | +</ul> | |
| 1262 | +</li> | |
| 1263 | + <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1264 | +</span> | |
| 1265 | +</a> | |
| 1266 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/saint-isidore/900-rue-semences" class="unifiednav__item unav-item dmNavItemSelected dmUDNavigationItem_010101216837 " target="" data-target-page-alias="" aria-current="page" data-auto="selected-page"> <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> | |
| 1267 | +</span> | |
| 1268 | +</a> | |
| 1269 | +</li> | |
| 1270 | +</ul> | |
| 1271 | +</li> | |
| 1272 | +</ul> | |
| 1273 | +</li> | |
| 1274 | + <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">À vendre<span class="icon icon-angle-down"></span> | |
| 1275 | +</span> | |
| 1276 | +</a> | |
| 1277 | + <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> | |
| 1278 | +</span> | |
| 1279 | +</a> | |
| 1280 | +</li> | |
| 1281 | +</ul> | |
| 1282 | +</li> | |
| 1283 | + <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> | |
| 1284 | +</span> | |
| 1285 | +</a> | |
| 1286 | + <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ésentation au TAL<span class="icon icon-angle-right"></span> | |
| 1287 | +</span> | |
| 1288 | +</a> | |
| 1289 | +</li> | |
| 1290 | +</ul> | |
| 1291 | +</li> | |
| 1292 | + <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étaires<span class="icon icon-angle-down"></span> | |
| 1293 | +</span> | |
| 1294 | +</a> | |
| 1295 | +</li> | |
| 1296 | + <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> | |
| 1297 | +</span> | |
| 1298 | +</a> | |
| 1299 | +</li> | |
| 1300 | +</ul> | |
| 1301 | +</nav> | |
| 1302 | +</div> | |
| 1303 | +</div> | |
| 1304 | +</div> | |
| 1305 | + <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> | |
| 1306 | +<b> <span style="text-decoration-line: underline;"></span> | |
| 1307 | +<span class="font-size-22 lh-1"> <span style="text-decoration-line: underline;"></span> | |
| 1308 | + <div style="text-align: left;"> <span style=""> <span style="text-decoration-line: underline;"></span> | |
| 1309 | +<span style=""> <span style="text-decoration-line: underline;"></span> | |
| 1310 | +<font style="color: rgb(255, 255, 255);"> <span style="text-decoration-line: underline;"></span> | |
| 1311 | +<span style="" class="font-size-22 lh-1"> <span style="text-decoration-line: underline;"></span> | |
| 1312 | +<b style=""> <span style="text-decoration-line: underline;"> <span style="font-weight: 700; font-size: 20px;">Nous contacter</span></span> | |
| 1313 | +</b> | |
| 1314 | +</span> | |
| 1315 | +</font> | |
| 1316 | +</span> | |
| 1317 | +</span> | |
| 1318 | +</div> | |
| 1319 | +</span> | |
| 1320 | +</b> | |
| 1321 | +</font> | |
| 1322 | +</div> | |
| 1323 | +</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 && dm_gaq_push_event('socialLink', 'click', 'Email')"> <span class="dmSocialEmail dm-social-icons-email oneIcon socialHubIcon style8" aria-hidden="true" data-hover-effect=""></span> | |
| 1324 | +</a> | |
| 1325 | + <a href="https://www.facebook.com/gestionimmobiliererivesud/" target="_blank" dm_dont_rewrite_url="true" aria-label="facebook" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Facebook')"> <span class="dmSocialFacebook dm-social-icons-facebook oneIcon socialHubIcon style8" aria-hidden="true" data-hover-effect=""></span> | |
| 1326 | +</a> | |
| 1327 | +</div> | |
| 1328 | +</div> | |
| 1329 | +</div> | |
| 1330 | + <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> | |
| 1331 | +</span> | |
| 1332 | + <span class="text">Appelez-nous</span> | |
| 1333 | +</a> | |
| 1334 | +</div> | |
| 1335 | +</div> | |
| 1336 | +</div> | |
| 1337 | +</div> | |
| 1338 | + <div class="layout-drawer-overlay" id="layout-drawer-overlay"></div> | |
| 1339 | +</div> | |
| 1340 | + <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> | |
| 1341 | +</div> | |
| 1342 | +</div> | |
| 1343 | +</div> | |
| 1344 | +</div> | |
| 1345 | + <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> | |
| 1346 | + <span class="hamburger__slice"></span> | |
| 1347 | + <span class="hamburger__slice"></span> | |
| 1348 | +</button> | |
| 1349 | + <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> | |
| 1350 | + <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 && dm_gaq_push_event('socialLink', 'click', 'Facebook')"> <span class="dmSocialFacebook dm-social-icons-facebook oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> | |
| 1351 | +</a> | |
| 1352 | + <a href="http://linkedin.com/" target="_blank" dm_dont_rewrite_url="true" aria-label="linkedin" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Linkedin')"> <span class="dmSocialLinkedin icon-linkedin oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> | |
| 1353 | +</a> | |
| 1354 | + <a href="mailto:immeubles@gestionirs.com" dm_dont_rewrite_url="true" aria-label="email" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Email')"> <span class="dmSocialEmail dm-social-icons-email oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> | |
| 1355 | +</a> | |
| 1356 | +</div> | |
| 1357 | +</div> | |
| 1358 | +</div> | |
| 1359 | +</div> | |
| 1360 | + <div class="u_1980771558 dmRespCol small-12 large-2 medium-2" id="1980771558"> <span id="1064055669"></span> | |
| 1361 | + <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> | |
| 1362 | +</svg> | |
| 1363 | +</div> | |
| 1364 | +</div> | |
| 1365 | + <div class="u_1016959372 dmRespCol small-12 large-2 medium-2" id="1016959372"> <span id="1845699766"></span> | |
| 1366 | + <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> | |
| 1367 | +</div> | |
| 1368 | +</div> | |
| 1369 | + <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> | |
| 1370 | +</div> | |
| 1371 | +</div> | |
| 1372 | + <div class="u_1522799502 dmRespCol small-12 large-10 medium-10" id="1522799502"> <span id="1481163886"></span> | |
| 1373 | + <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">À louer<span class="icon icon-angle-down"></span> | |
| 1374 | +</span> | |
| 1375 | +</a> | |
| 1376 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1377 | +</span> | |
| 1378 | +</a> | |
| 1379 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/scott/rue-amanda-gustave" class="unifiednav__item unav-item dmUDNavigationItem_010101104557 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Amanda-Gustave" data-auto="page-text-style">Rue Amanda-Gustave<span class="icon icon-angle-right"></span> | |
| 1380 | +</span> | |
| 1381 | +</a> | |
| 1382 | +</li> | |
| 1383 | + <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> | |
| 1384 | +</span> | |
| 1385 | +</a> | |
| 1386 | +</li> | |
| 1387 | + <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> | |
| 1388 | +</span> | |
| 1389 | +</a> | |
| 1390 | +</li> | |
| 1391 | +</ul> | |
| 1392 | +</li> | |
| 1393 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1394 | +</span> | |
| 1395 | +</a> | |
| 1396 | + <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> | |
| 1397 | +</span> | |
| 1398 | +</a> | |
| 1399 | +</li> | |
| 1400 | +</ul> | |
| 1401 | +</li> | |
| 1402 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1403 | +</span> | |
| 1404 | +</a> | |
| 1405 | + <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 Érables, Jumelé<span class="icon icon-angle-right"></span> | |
| 1406 | +</span> | |
| 1407 | +</a> | |
| 1408 | +</li> | |
| 1409 | + <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/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 Érables, Condo<span class="icon icon-angle-right"></span> | |
| 1410 | +</span> | |
| 1411 | +</a> | |
| 1412 | +</li> | |
| 1413 | +</ul> | |
| 1414 | +</li> | |
| 1415 | + <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1416 | +</span> | |
| 1417 | +</a> | |
| 1418 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/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> | |
| 1419 | +</span> | |
| 1420 | +</a> | |
| 1421 | +</li> | |
| 1422 | +</ul> | |
| 1423 | +</li> | |
| 1424 | + <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1425 | +</span> | |
| 1426 | +</a> | |
| 1427 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/saint-isidore/900-rue-semences" class="unifiednav__item unav-item dmNavItemSelected dmUDNavigationItem_010101216837 " target="" data-target-page-alias="" aria-current="page" data-auto="selected-page"> <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> | |
| 1428 | +</span> | |
| 1429 | +</a> | |
| 1430 | +</li> | |
| 1431 | +</ul> | |
| 1432 | +</li> | |
| 1433 | +</ul> | |
| 1434 | +</li> | |
| 1435 | + <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">À vendre<span class="icon icon-angle-down"></span> | |
| 1436 | +</span> | |
| 1437 | +</a> | |
| 1438 | + <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> | |
| 1439 | +</span> | |
| 1440 | +</a> | |
| 1441 | +</li> | |
| 1442 | +</ul> | |
| 1443 | +</li> | |
| 1444 | + <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> | |
| 1445 | +</span> | |
| 1446 | +</a> | |
| 1447 | + <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ésentation au TAL<span class="icon icon-angle-right"></span> | |
| 1448 | +</span> | |
| 1449 | +</a> | |
| 1450 | +</li> | |
| 1451 | +</ul> | |
| 1452 | +</li> | |
| 1453 | + <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étaires<span class="icon icon-angle-down"></span> | |
| 1454 | +</span> | |
| 1455 | +</a> | |
| 1456 | +</li> | |
| 1457 | + <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> | |
| 1458 | +</span> | |
| 1459 | +</a> | |
| 1460 | +</li> | |
| 1461 | +</ul> | |
| 1462 | +</nav> | |
| 1463 | +</div> | |
| 1464 | +</div> | |
| 1465 | +</div> | |
| 1466 | +</div> | |
| 1467 | +</div> | |
| 1468 | +</div> | |
| 1469 | + <div dmwrapped="true" id="dmFirstContainer" class="dmBody u_dmStyle_template_location/saint-isidore/900-rue-semences 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="1654430544"> <div class="dmRespColsWrapper" id="1597722405"> <div class="dmRespCol large-12 medium-12 small-12" id="1047687780"> <div class="imageWidget align-center u_1114660179" data-element-type="image" data-widget-type="image" id="1114660179"><img src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/8plex+La+Guadeloupe-1920w.jpg" alt="" id="1161812109" class="" width="1920" height="1080" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/8plex+La+Guadeloupe.jpg" onerror="handleImageLoadError(this)"/></div> | |
| 1470 | +</div> | |
| 1471 | +</div> | |
| 1472 | +</div> | |
| 1473 | + <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âtiments et un arbre.</title> | |
| 1474 | + <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> | |
| 1475 | +</svg> | |
| 1476 | +</div> | |
| 1477 | + <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);">900 Rue des Semences</strong></h1> | |
| 1478 | +</div> | |
| 1479 | +</div> | |
| 1480 | +</div> | |
| 1481 | +</div> | |
| 1482 | + <div class="dmRespRow" id="1299034309"> <div class="dmRespColsWrapper" id="1051852715"> <div class="dmRespCol large-6 medium-6 small-12" id="1199127370"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1692095137" style="transition: opacity 1s ease-in-out;"><p style="line-height: 1.5;"><span style="display: initial;">Situés dans la dynamique municipalité de Saint-Isidore, au cœur de la Chaudière-Appalaches, nos logements locatifs modernes vous offrent un cadre de vie équilibré, alliant confort, accessibilité et tranquillité. À proximité immédiate de Lévis et de l’autoroute 73, vous profitez d’un emplacement stratégique, idéal pour le quotidien comme pour le travail.</span></p><p style="line-height: 1.5;"><span style="display: initial;"><br/></span></p><p style="line-height: 1.5;"><span style="display: initial;">Pensés pour répondre aux besoins d’aujourd’hui, nos appartements de type 4 ½ proposent des espaces de vie fonctionnels, lumineux et bien aménagés. Chaque unité est conçue pour offrir un maximum de confort, avec des matériaux de qualité et une configuration adaptée à différents styles de vie.</span></p></div> | |
| 1483 | +</div> | |
| 1484 | + <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.5;"><span style="display: initial;">Que vous soyez seul, en couple ou en famille, ces logements s’intègrent parfaitement à votre réalité. Leur conception moderne mise sur la luminosité naturelle, l’optimisation des espaces et une atmosphère chaleureuse, propice au bien-être au quotidien.</span></p><p style="line-height: 1.5;"><span style="display: initial;"><br/></span></p><p style="line-height: 1.5;"><span style="display: initial;">À proximité des écoles, CPE, commerces et services essentiels, vous bénéficiez d’un environnement pratique et sécuritaire. Vivre à Saint-Isidore, c’est profiter d’un secteur en pleine croissance, où la tranquillité résidentielle rencontre la proximité des grands centres.</span></p><p style="line-height: 1.5;"><span style="display: initial;"><br/></span></p><p style="line-height: 1.5;"><span style="display: initial;">En choisissant Gestion Immobilière de la Rive Sud, vous optez pour un milieu de vie accessible, confortable et adapté à vos besoins.</span></p></div> | |
| 1485 | +</div> | |
| 1486 | +</div> | |
| 1487 | +</div> | |
| 1488 | + <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> | |
| 1489 | +</div> | |
| 1490 | +</div> | |
| 1491 | +</div> | |
| 1492 | + <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> | |
| 1493 | +</div> | |
| 1494 | +</div> | |
| 1495 | + <div class="u_1871439213 dmRespCol small-12 large-8 medium-8" id="1871439213"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1047322935"><p style="line-height: 1.5;"><span style="font-weight:400;display:initial;font-family:Montserrat, 'Montserrat Fallback';">Votre appartement locatif sur la municipalité de Saint-Isidore a été conçu pour offrir un confort moderne et une qualité de vie supérieure. Chaque logement propose des matériaux haut de gamme, une thermopompe pour un confort optimal en toute saison et une insonorisation soignée assurant tranquillité et bien-être.</span></p><p style="line-height: 1.5;"><span style="font-weight:400;display:initial;font-family:Montserrat, 'Montserrat Fallback';"><br/></span></p><p style="line-height: 1.5;"><span style="font-weight:400;display:initial;font-family:Montserrat, 'Montserrat Fallback';">Les espaces de vie sont lumineux, fonctionnels et bien aménagés, avec un balcon privé permettant de profiter pleinement de l’extérieur. Un environnement pensé pour allier confort, modernité et qualité au quotidien.</span></p></div> | |
| 1496 | +</div> | |
| 1497 | +</div> | |
| 1498 | +</div> | |
| 1499 | + <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êtres et une balustrade.</title> | |
| 1500 | + <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> | |
| 1501 | +</svg> | |
| 1502 | +</div> | |
| 1503 | + <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É</strong></p></div> | |
| 1504 | +</div> | |
| 1505 | + <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êtres sur fond blanc.</title> | |
| 1506 | + <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> | |
| 1507 | +</svg> | |
| 1508 | +</div> | |
| 1509 | + <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É SPACIEUSE</strong><span style="display: initial;"><br/></span></p></div> | |
| 1510 | +</div> | |
| 1511 | + <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> | |
| 1512 | + <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> | |
| 1513 | + <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> | |
| 1514 | + <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> | |
| 1515 | + <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> | |
| 1516 | + <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> | |
| 1517 | + <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> | |
| 1518 | + <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> | |
| 1519 | + <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> | |
| 1520 | + <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> | |
| 1521 | + <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> | |
| 1522 | + <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> | |
| 1523 | + <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> | |
| 1524 | + <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> | |
| 1525 | + <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> | |
| 1526 | + <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> | |
| 1527 | + <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> | |
| 1528 | + <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> | |
| 1529 | + <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> | |
| 1530 | + <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> | |
| 1531 | + <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> | |
| 1532 | + <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> | |
| 1533 | + <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> | |
| 1534 | + <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> | |
| 1535 | + <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> | |
| 1536 | +</g> | |
| 1537 | +</svg> | |
| 1538 | +</div> | |
| 1539 | + <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> | |
| 1540 | +</div> | |
| 1541 | +</div> | |
| 1542 | +</div> | |
| 1543 | + <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ère et des tiroirs.</title> | |
| 1544 | + <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> | |
| 1545 | +</svg> | |
| 1546 | +</div> | |
| 1547 | + <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="font-weight: bold; display: unset;">CUISINE AVEC ILOT</strong></p><p class="text-align-center"><strong style="font-weight: bold; display: unset;">EN QUARTZ</strong></p></div> | |
| 1548 | +</div> | |
| 1549 | + <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> | |
| 1550 | +</svg> | |
| 1551 | +</a> | |
| 1552 | +</div> | |
| 1553 | + <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> | |
| 1554 | +</div> | |
| 1555 | + <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> | |
| 1556 | + <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> | |
| 1557 | + <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> | |
| 1558 | + <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> | |
| 1559 | + <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> | |
| 1560 | + <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> | |
| 1561 | + <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> | |
| 1562 | +</g> | |
| 1563 | +</svg> | |
| 1564 | +</a> | |
| 1565 | +</div> | |
| 1566 | + <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É</strong></p><p class="text-align-center"><span style="color: var(--color_1); display: initial; font-style: italic;">(sous conditions)</span></p></div> | |
| 1567 | +</div> | |
| 1568 | +</div> | |
| 1569 | +</div> | |
| 1570 | + <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> | |
| 1571 | +</div> | |
| 1572 | +</div> | |
| 1573 | +</div> | |
| 1574 | + <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ÉS</span></h2> | |
| 1575 | +</div> | |
| 1576 | +</div> | |
| 1577 | + <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 style="line-height: 1.5;"><span style="color:var(--color_3);font-weight:400;display:initial;font-family:Montserrat, 'Montserrat Fallback';">Vivre dans ce projet résidentiel à Saint-Isidore, c’est profiter d’un environnement moderne pensé pour votre confort et votre tranquillité. Plus qu’un simple logement, c’est un milieu de vie qui combine praticité, sécurité et qualité au quotidien.</span></p><p style="line-height: 1.5;"><span style="font-weight:400;display:initial;font-family:Montserrat, 'Montserrat Fallback';"><br/></span></p><p style="line-height: 1.5;"><span style="color:var(--color_3);font-weight:400;display:initial;font-family:Montserrat, 'Montserrat Fallback';">Les logements offrent des espaces bien aménagés et des commodités qui facilitent la vie de tous les jours, comme l’internet illimité, un environnement sécuritaire et des stationnements adaptés aux véhicules électriques. Tout a été réfléchi pour répondre aux besoins d’aujourd’hui.</span></p></div> | |
| 1578 | +</div> | |
| 1579 | +</div> | |
| 1580 | +</div> | |
| 1581 | + <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ône en noir et blanc d'un éclair dans un carré.</title> | |
| 1582 | + <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> | |
| 1583 | +</svg> | |
| 1584 | +</div> | |
| 1585 | + <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);">DEUX STATIONNEMENTS</strong></p><p class="text-align-center"><strong style="font-weight: bold; display: initial; color: var(--color_3);"><span class="ql-cursor"></span>INCLUS</strong></p></div> | |
| 1586 | +</div> | |
| 1587 | + <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ône en noir et blanc d'un signal wifi sur fond blanc.</title> | |
| 1588 | + <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> | |
| 1589 | + <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> | |
| 1590 | + <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> | |
| 1591 | + <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> | |
| 1592 | +</g> | |
| 1593 | +</svg> | |
| 1594 | +</div> | |
| 1595 | + <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> | |
| 1596 | + </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É</strong></p></div> | |
| 1597 | +</div> | |
| 1598 | + <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> | |
| 1599 | + <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> | |
| 1600 | + <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> | |
| 1601 | +</svg> | |
| 1602 | +</div> | |
| 1603 | + <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ÉCURISÉ</strong></p></div> | |
| 1604 | +</div> | |
| 1605 | +</div> | |
| 1606 | +</div> | |
| 1607 | + <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> | |
| 1608 | +</div> | |
| 1609 | +</div> | |
| 1610 | +</div> | |
| 1611 | + <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> | |
| 1612 | +</div> | |
| 1613 | +</div> | |
| 1614 | +</div> | |
| 1615 | +</div> | |
| 1616 | + <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écouvrez votre futur condo</span></h3> | |
| 1617 | + <h3 class="size-25 m-size-20"><span style="display: unset;" class="font-size-25 m-font-size-20">grâce à une visite virtuelle</span></h3> | |
| 1618 | +</div> | |
| 1619 | +</div> | |
| 1620 | + <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 style="line-height: 1.5;"><span style="font-weight:400;display:unset;font-family:Montserrat, 'Montserrat Fallback';">Les appartements de ce projet résidentiel à Saint-Isidore se trouvent dans un immeuble moderne conçu avec des matériaux haut de gamme. Chaque logement a été pensé avec un souci du détail, afin d’offrir des espaces harmonieux, durables et confortables au quotidien.</span></p></div> | |
| 1621 | +</div> | |
| 1622 | +</div> | |
| 1623 | +</div> | |
| 1624 | + <div class="dmRespRow" id="1836880168"> <div class="dmRespColsWrapper" id="1478197164"> <div class="dmRespCol large-12 medium-12 small-12" id="1227292607"> <div id="1090431858" dmle_extension="ssrimageslider" data-element-type="ssrimageslider" class="u_1090431858"><span id="ssrWrap-1090431858" ><style data-styled="true" data-styled-version="5.3.11">@media all{.dNQHPD{height:100%;-webkit-align-items:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;background-repeat:no-repeat;background-size:100%;position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;gap:20px;}}/*!sc*/ | |
| 1625 | +@media all{.fOgKIx{height:100%;width:100%;box-sizing:border-box;}}/*!sc*/ | |
| 1626 | +@media all{.bcOvLo{width:100%;height:100%;position:relative;overflow:hidden;}}/*!sc*/ | |
| 1627 | +@media (max-width:767px){.bcOvLo{width:100%;}}/*!sc*/ | |
| 1628 | +@media all{.gDtRCy{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;position:absolute;left:0;top:0;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;right:-200%;bottom:0;-webkit-transform:translateX(-0%);-ms-transform:translateX(-0%);transform:translateX(-0%);-webkit-transition:-webkit-transform 1s ease-in-out;-webkit-transition:transform 1s ease-in-out;transition:transform 1s ease-in-out;}}/*!sc*/ | |
| 1629 | +@media all{.bElkjm{position:relative;-webkit-flex:1;-ms-flex:1;flex:1;}}/*!sc*/ | |
| 1630 | +@media all{.edjuHe{position:absolute;top:0;bottom:0;left:0;right:0;}}/*!sc*/ | |
| 1631 | +@media (max-width:767px){.edjuHe{left:0;right:0;}}/*!sc*/ | |
| 1632 | +@media all{.clxWl{width:100%;height:100%;position:relative;display:block;overflow:hidden;}}/*!sc*/ | |
| 1633 | +@media all{.dFlTLH{background-color:#eee;overflow:hidden;position:absolute;left:0;bottom:0;top:0;right:0;}}/*!sc*/ | |
| 1634 | +@media all{.gYpBap{position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(0,0,0,0);}}/*!sc*/ | |
| 1635 | +@media all{.fdFhQF{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;visibility:visible;position:absolute;left:0;bottom:0;top:0;right:0;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding:20px;text-align:center;}}/*!sc*/ | |
| 1636 | +@media all{.eHyebB{object-fit:cover;display:block;width:100%;height:100%;}}/*!sc*/ | |
| 1637 | +@media all{.hRoyAR{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;visibility:hidden;position:absolute;left:0;bottom:0;top:0;right:0;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding:20px;text-align:center;}}/*!sc*/ | |
| 1638 | +@media all{.kvocQb{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:20px;}}/*!sc*/ | |
| 1639 | +@media (max-width:767px){.kvocQb{overflow-x:auto;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}}/*!sc*/ | |
| 1640 | +data-styled.g2[id="sc-gEvEer"]{content:"dNQHPD,fOgKIx,bcOvLo,gDtRCy,bElkjm,edjuHe,clxWl,dFlTLH,gYpBap,fdFhQF,eHyebB,hRoyAR,kvocQb,"}/*!sc*/ | |
| 1641 | +@media all{.fECgwp{object-fit:cover;display:block;width:100%;height:100%;}}/*!sc*/ | |
| 1642 | +data-styled.g4[id="sc-fqkvVR"]{content:"fECgwp,"}/*!sc*/ | |
| 1643 | +@media all{#dm#dm#dm .fxFKCm.fxFKCm{padding:unset;background-color:transparent;border:unset;cursor:pointer;aspect-ratio:1 / 1;pointer-events:auto;background-size:cover;background-position:center;border-style:solid;-webkit-flex-basis:80px;-ms-flex-preferred-size:80px;flex-basis:80px;-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-shrink:1;-ms-flex-negative:1;flex-shrink:1;width:revert;background-origin:border-box;background-image:url(https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Saint-Isidore-cuisine+-1920w.jpg);border-bottom-color:rgba(0,0,0,0);border-top-width:4px;border-right-width:4px;border-left-color:rgba(0,0,0,0);border-bottom-width:4px;border-top-color:rgba(0,0,0,0);border-right-color:rgba(0,0,0,0);border-left-width:4px;}}/*!sc*/ | |
| 1644 | +@media (max-width:767px){#dm#dm#dm .fxFKCm.fxFKCm{-webkit-flex-basis:80px;-ms-flex-preferred-size:80px;flex-basis:80px;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;}}/*!sc*/ | |
| 1645 | +@media all{#dm#dm#dm .hvEGuY.hvEGuY{padding:unset;background-color:transparent;border:unset;cursor:pointer;aspect-ratio:1 / 1;pointer-events:auto;background-size:cover;background-position:center;border-width:4px;border-color:transparent;border-style:solid;-webkit-flex-basis:80px;-ms-flex-preferred-size:80px;flex-basis:80px;-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-shrink:1;-ms-flex-negative:1;flex-shrink:1;width:revert;background-origin:border-box;background-image:url(https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Saint-Isidore-espace-de-vie-1920w.jpg);}}/*!sc*/ | |
| 1646 | +@media (max-width:767px){#dm#dm#dm .hvEGuY.hvEGuY{-webkit-flex-basis:80px;-ms-flex-preferred-size:80px;flex-basis:80px;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;}}/*!sc*/ | |
| 1647 | +@media all{#dm#dm#dm .ejXZcs.ejXZcs{padding:unset;background-color:transparent;border:unset;cursor:pointer;aspect-ratio:1 / 1;pointer-events:auto;background-size:cover;background-position:center;border-width:4px;border-color:transparent;border-style:solid;-webkit-flex-basis:80px;-ms-flex-preferred-size:80px;flex-basis:80px;-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-shrink:1;-ms-flex-negative:1;flex-shrink:1;width:revert;background-origin:border-box;background-image:url(https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Saint-Isidore-salle-de-bain-1920w.jpg);}}/*!sc*/ | |
| 1648 | +@media (max-width:767px){#dm#dm#dm .ejXZcs.ejXZcs{-webkit-flex-basis:80px;-ms-flex-preferred-size:80px;flex-basis:80px;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;}}/*!sc*/ | |
| 1649 | +data-styled.g14[id="sc-jlZhew"]{content:"fxFKCm,hvEGuY,ejXZcs,"}/*!sc*/ | |
| 1650 | +</style><div style="height:100%;overflow:hidden" data-auto="slider-wrapper" class="sc-gEvEer d-ext-mediaSlider-slidesContainer"><div data-auto="actual-slider" class="sc-gEvEer dNQHPD"><div data-auto="slider-slides-container" class="sc-gEvEer fOgKIx"><div class="sc-gEvEer bcOvLo"><div data-auto="slider-filmRole" class="sc-gEvEer gDtRCy"><div data-auto="slideSlot 0 slideSlotActive" class="sc-gEvEer bElkjm d-ext-mediaSlider-slidesContainer__slide--active"><div class="sc-gEvEer edjuHe"><div data-auto="ssr-slide-64112" class="sc-gEvEer clxWl"><div data-grab="slide-media-container" class="sc-gEvEer dFlTLH"><img data-grab="slide-media" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Saint-Isidore-cuisine+-1920w.jpg" class="sc-fqkvVR fECgwp"/><div data-grab="slide-overlay" class="sc-gEvEer gYpBap"></div></div><div class="sc-gEvEer fdFhQF animated fadeInUp d-ext-mediaSlider-slide__contentContainer" data-grab="slideContentContainer"></div></div></div></div><div data-auto="slideSlot 1" class="sc-gEvEer bElkjm d-ext-mediaSlider-slidesContainer__slide"><div class="sc-gEvEer edjuHe"><div data-auto="ssr-slide-54024" class="sc-gEvEer clxWl"><div data-grab="slide-media-container" class="sc-gEvEer dFlTLH"><div data-grab="slide-media" class="sc-gEvEer eHyebB"></div><div data-grab="slide-overlay" class="sc-gEvEer gYpBap"></div></div><div class="sc-gEvEer hRoyAR d-ext-mediaSlider-slide__contentContainer" data-grab="slideContentContainer"></div></div></div></div><div data-auto="slideSlot 2" class="sc-gEvEer bElkjm d-ext-mediaSlider-slidesContainer__slide"><div class="sc-gEvEer edjuHe"><div data-auto="ssr-slide-16388" class="sc-gEvEer clxWl"><div data-grab="slide-media-container" class="sc-gEvEer dFlTLH"><div data-grab="slide-media" class="sc-gEvEer eHyebB"></div><div data-grab="slide-overlay" class="sc-gEvEer gYpBap"></div></div><div class="sc-gEvEer hRoyAR d-ext-mediaSlider-slide__contentContainer" data-grab="slideContentContainer"></div></div></div></div></div></div></div><div class="sc-gEvEer"><div data-auto="pagination-bullets-base-container" data-grab="pagination-container thumbs-container" class="sc-gEvEer kvocQb"><button data-grab="pagination-button-thumb active" data-auto="pagination-button-thumb 0 active" aria-label="go to slide 1" type="button" class="sc-jlZhew fxFKCm"></button><button data-grab="pagination-button-thumb" data-auto="pagination-button-thumb 1" aria-label="go to slide 2" type="button" class="sc-jlZhew hvEGuY"></button><button data-grab="pagination-button-thumb" data-auto="pagination-button-thumb 2" aria-label="go to slide 3" type="button" class="sc-jlZhew ejXZcs"></button></div></div></div></div><script data-role="hydration">;window?.waitForDeferred?.('ssrLibrariesLoaded', () => {window.SSRRuntime.RuntimeReactHelpers.initiateWidget({"type":"SSR_IMAGE_SLIDER","props":{"layout":"LAYOUT_4","autoPagination":{"on":true,"intervalInSeconds":7,"pauseOnHover":false},"slidesData":[{"uuid":"64112","media":{"imgSrc":"https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Saint-Isidore-cuisine+-1920w.jpg","alt":null,"vidSrc":null,"lazy":false,"type":"IMAGE"},"showButton":false},{"uuid":"54024","media":{"imgSrc":"https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Saint-Isidore-espace-de-vie-1920w.jpg","alt":null,"vidSrc":null,"lazy":false,"type":"IMAGE"},"button":{"text":"Bouton"},"showButton":false},{"uuid":"16388","media":{"imgSrc":"https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Saint-Isidore-salle-de-bain-1920w.jpg","alt":null,"vidSrc":null,"lazy":false,"type":"IMAGE"},"button":{"text":"Bouton"},"showButton":false}],"paginationType":null,"animationType":"slide","contentAnimationTypeCssClass":"fadeInUp","bindingSource":null,"paginationShow":"always","arrowStyle":"arrow_thin","slotsInFrame":null,"_styles":{"slide_title":{"common":{"fontWeight":"700"}},"slide_overlay":{"common":{"background-color":"rgba(0, 0, 0, 0)"}},"pagination_buttonThumbActive":{"common":{"border-bottom-color":"rgba(0, 0, 0, 0)","border-top-width":"4px","border-right-width":"4px","border-left-color":"rgba(0, 0, 0, 0)","border-bottom-width":"4px","border-top-color":"rgba(0, 0, 0, 0)","border-right-color":"rgba(0, 0, 0, 0)","border-width":null,"border-color":null,"border-style":"solid","border-left-width":"4px"}},"layoutSpecificStyles":{}},"widgetId":"1090431858"},"id":"1090431858"}, false)});</script></span></div> | |
| 1651 | +</div> | |
| 1652 | +</div> | |
| 1653 | +</div> | |
| 1654 | + <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> | |
| 1655 | +</span><span style="display: initial;"><br/></span></h2> | |
| 1656 | +</div> | |
| 1657 | + <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ésitez pas à nous contacter pour découvrir tout ce que vous souhaitez savoir sur les logements, les quartiers et tout ce qui s'y trouve. Nous sommes là pour répondre à toutes vos questions.</span> | |
| 1658 | +</span></p></div> | |
| 1659 | + <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> | |
| 1660 | +</span> | |
| 1661 | + <span class="text" id="1591898475">Contactez-nous</span> | |
| 1662 | +</a> | |
| 1663 | +</div> | |
| 1664 | +</div> | |
| 1665 | +</div> | |
| 1666 | + <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> | |
| 1667 | +</div> | |
| 1668 | +</div> | |
| 1669 | +</div> | |
| 1670 | +</div> | |
| 1671 | + <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;">Un milieu de vie qui s’adapte à votre style de vie</span></h3> | |
| 1672 | +</div> | |
| 1673 | +</div> | |
| 1674 | + <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 style="line-height: 1.5;"><span style="font-weight:400;display:initial;font-family:Montserrat, 'Montserrat Fallback';">Situé dans la municipalité de La Guadeloupe, au cœur de la Beauce dans la région de Chaudière-Appalaches, ce projet locatif vous propose un milieu de vie moderne où confort et tranquillité se rencontrent.</span></p><p style="line-height: 1.5;"><span style="font-weight:400;display:initial;font-family:Montserrat, 'Montserrat Fallback';"><br/></span></p><p style="line-height: 1.5;"><span style="font-weight:400;display:initial;font-family:Montserrat, 'Montserrat Fallback';">À proximité des commerces, services et installations locales, l’emplacement facilite votre quotidien tout en offrant un environnement paisible. Entouré de nature et d’espaces ouverts, c’est l’endroit idéal pour profiter d’une qualité de vie équilibrée entre commodités et tranquillité.</span></p></div> | |
| 1675 | +</div> | |
| 1676 | +</div> | |
| 1677 | +</div> | |
| 1678 | + <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="45.962881" data-lng="-70.914404" data-address="26e Avenue, La Guadeloupe, Québec G0M 1G0, 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="26e Avenue, La Guadeloupe, Québec G0M 1G0, Canada" geocompleteaddress="26e Avenue, La Guadeloupe, Québec G0M 1G0, 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="-70.914404" lat="45.962881" zoom="13"> <div class="mapContainer" style="height: 100%; width: 100%; overflow: hidden; z-index: 0;"></div> | |
| 1679 | +</div> | |
| 1680 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1364636678" style="transition: opacity 1s ease-in-out;"><p class="text-align-center" style="line-height: normal;"><span style="display: unset; font-style: italic;"><span style="display: unset; font-style: italic;">26e Avenue sur la municipalité de</span> | |
| 1681 | +</span><strong style="display: unset; font-style: italic; font-weight: bold;">La Guadeloupe</strong></p></div> | |
| 1682 | +</div> | |
| 1683 | +</div> | |
| 1684 | +</div> | |
| 1685 | + <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> | |
| 1686 | +</div> | |
| 1687 | +</div> | |
| 1688 | +</div> | |
| 1689 | + <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> | |
| 1690 | +</div> | |
| 1691 | + <div class="bgExtraLayerOverlay"></div> | |
| 1692 | + <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éduit ?</span> | |
| 1693 | +</span></h2> | |
| 1694 | + <h2 class="text-align-center"><span style="color: var(--color_3); display: unset;">Planifiez votre visite dès aujourd'hui !</span><span style="display: initial;"><br/></span></h2> | |
| 1695 | +</div> | |
| 1696 | + <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> | |
| 1697 | +</span> | |
| 1698 | + <span class="text" id="1461344268">JE PLANIFIE !</span> | |
| 1699 | +</a> | |
| 1700 | +</div> | |
| 1701 | +</div> | |
| 1702 | +</div> | |
| 1703 | +</div> | |
| 1704 | +</div> | |
| 1705 | +</div> | |
| 1706 | +</div> | |
| 1707 | + <div class="sticky-widgets-container-global" id="1915928664"></div> | |
| 1708 | + <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> | |
| 1709 | +</div> | |
| 1710 | +</div> | |
| 1711 | +</div> | |
| 1712 | + <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> | |
| 1713 | +</div> | |
| 1714 | + <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> | |
| 1715 | +</div> | |
| 1716 | + <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> | |
| 1717 | +</div> | |
| 1718 | + <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> | |
| 1719 | +</div> | |
| 1720 | +</div> | |
| 1721 | +</div> | |
| 1722 | + <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écialiste en gestion d’immeubles locatifs, notre équipe saura vous accompagner tout au long de vos démarches.</span></p></div> | |
| 1723 | + <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> | |
| 1724 | +</div> | |
| 1725 | + <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> | |
| 1726 | +</div> | |
| 1727 | + <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=" | |
| 1728 | + Accueil | |
| 1729 | + " 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> | |
| 1730 | +</span> | |
| 1731 | +</a> | |
| 1732 | +</li> | |
| 1733 | + <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> | |
| 1734 | +</span> | |
| 1735 | +</a> | |
| 1736 | +</li> | |
| 1737 | +</ul> | |
| 1738 | +</nav> | |
| 1739 | +</div> | |
| 1740 | + <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> | |
| 1741 | +</div> | |
| 1742 | + <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ésentation au TAL<span class="icon icon-angle-down" data-hidden-on-mobile="" data-hidden-on-desktop="" data-hidden-on-tablet=""></span> | |
| 1743 | +</span> | |
| 1744 | +</a> | |
| 1745 | +</li> | |
| 1746 | + <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étaires<span class="icon icon-angle-down" data-hidden-on-mobile="" data-hidden-on-desktop="" data-hidden-on-tablet=""></span> | |
| 1747 | +</span> | |
| 1748 | +</a> | |
| 1749 | +</li> | |
| 1750 | +</ul> | |
| 1751 | +</nav> | |
| 1752 | +</div> | |
| 1753 | + <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> | |
| 1754 | +</div> | |
| 1755 | + <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> | |
| 1756 | +</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> | |
| 1757 | +</div> | |
| 1758 | +</div> | |
| 1759 | +</div> | |
| 1760 | + <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>© 2026 </div> | |
| 1761 | + <div><p class="rteBlock">Gestion Immobilière de la Rive Sud 2025 - Tous droits réservés</p></div> | |
| 1762 | +</div> | |
| 1763 | +</div> | |
| 1764 | +</div> | |
| 1765 | +</div> | |
| 1766 | +</div> | |
| 1767 | +</div> | |
| 1768 | + <div id="1236746004" dmle_extension="powered_by" data-element-type="powered_by" icon="true" surround="false"></div> | |
| 1769 | +</div> | |
| 1770 | +</div> | |
| 1771 | +</div> | |
| 1772 | +</div> | |
| 1773 | +</div> | |
| 1774 | +</div> | |
| 1775 | +</div> | |
| 1776 | +</div> | |
| 1777 | +</div> | |
| 1778 | + | |
| 1779 | + </div> | |
| 1780 | +</div> | |
| 1781 | +<!-- Add full CSS and Javascript before the close tag of the body if needed --> | |
| 1782 | + | |
| 1783 | + | |
| 1784 | + | |
| 1785 | + | |
| 1786 | + | |
| 1787 | + | |
| 1788 | + | |
| 1789 | + | |
| 1790 | + | |
| 1791 | + | |
| 1792 | + | |
| 1793 | + | |
| 1794 | + | |
| 1795 | + | |
| 1796 | + | |
| 1797 | + | |
| 1798 | + | |
| 1799 | + | |
| 1800 | + | |
| 1801 | + | |
| 1802 | + | |
| 1803 | + | |
| 1804 | + | |
| 1805 | + | |
| 1806 | + | |
| 1807 | + | |
| 1808 | + | |
| 1809 | + | |
| 1810 | + | |
| 1811 | + | |
| 1812 | + | |
| 1813 | + | |
| 1814 | + | |
| 1815 | + | |
| 1816 | + | |
| 1817 | + | |
| 1818 | + | |
| 1819 | + | |
| 1820 | +<!-- ========= JS Section ========= --> | |
| 1821 | +<script> | |
| 1822 | + var isWLR = true; | |
| 1823 | + | |
| 1824 | + window.customWidgetsFunctions = {}; | |
| 1825 | + window.customWidgetsStrings = {}; | |
| 1826 | + window.collections = {}; | |
| 1827 | + window.currentLanguage = "FRENCH" | |
| 1828 | + window.isSitePreview = false; | |
| 1829 | +</script> | |
| 1830 | + | |
| 1831 | + | |
| 1832 | + | |
| 1833 | +<script> | |
| 1834 | + window.customWidgetsFunctions["1f5975986930429f819d4cd2154b5c4a~25"] = function (element, data, api) { | |
| 1835 | + null | |
| 1836 | + }; | |
| 1837 | +</script> | |
| 1838 | + | |
| 1839 | + | |
| 1840 | +<script type="text/javascript"> | |
| 1841 | + | |
| 1842 | + var d_version = "production_6688"; | |
| 1843 | + var build = "2026-08-06T08_49_03"; | |
| 1844 | + window['v' + 'ersion'] = d_version; | |
| 1845 | + | |
| 1846 | + function buildEditorParent() { | |
| 1847 | + window.isMultiScreen = true; | |
| 1848 | + window.editorParent = {}; | |
| 1849 | + window.previewParent = {}; | |
| 1850 | + window.assetsCacheQueryParam = "?version=2026-08-06T08_49_03"; | |
| 1851 | + try { | |
| 1852 | + var _p = window.parent; | |
| 1853 | + if (_p && _p.document && _p.$ && _p.$.dmfw) { | |
| 1854 | + window.editorParent = _p; | |
| 1855 | + } else if (_p.isSitePreview) { | |
| 1856 | + window.previewParent = _p; | |
| 1857 | + } | |
| 1858 | + } catch (e) { | |
| 1859 | + | |
| 1860 | + } | |
| 1861 | + } | |
| 1862 | + | |
| 1863 | + buildEditorParent(); | |
| 1864 | +</script> | |
| 1865 | + | |
| 1866 | + | |
| 1867 | +<!-- Load jQuery --> | |
| 1868 | + | |
| 1869 | +<script type="text/javascript" id='d-js-jquery' | |
| 1870 | + src="https://static.cdn-website.com/libs/jquery/jquery-3.7.0.min.js"></script> | |
| 1871 | + | |
| 1872 | +<!-- End Load jQuery --> | |
| 1873 | + | |
| 1874 | + | |
| 1875 | +<!-- Injecting site-wide before scripts --> | |
| 1876 | + | |
| 1877 | +<!-- End Injecting site-wide to the head --> | |
| 1878 | + | |
| 1879 | + | |
| 1880 | + | |
| 1881 | +<script> | |
| 1882 | + var _jquery = window.$; | |
| 1883 | + | |
| 1884 | + var jqueryAliases = ['$', 'jquery', 'jQuery']; | |
| 1885 | + | |
| 1886 | + jqueryAliases.forEach((alias) => { | |
| 1887 | + Object.defineProperty(window, alias, { | |
| 1888 | + get() { | |
| 1889 | + return _jquery; | |
| 1890 | + }, | |
| 1891 | + set() { | |
| 1892 | + console.warn("Trying to over-write the global jquery object!"); | |
| 1893 | + } | |
| 1894 | + }); | |
| 1895 | + }); | |
| 1896 | + window.jQuery.migrateMute = true; | |
| 1897 | +</script> | |
| 1898 | + | |
| 1899 | + | |
| 1900 | + | |
| 1901 | + | |
| 1902 | +<script> | |
| 1903 | + window.cookiesNotificationMarkupPreview = ' <div> <p class=\"rteBlock\">Nous utilisons des cookies pour optimiser votre expérience sur notre site web. Pour en savoir plus, veuillez accéder à la page <a value=\"donnees-personnelles\" label=\"\" type=\"page\" href=\"\/donnees-personnelles\" data-runtime-url=\"\/donnees-personnelles\">Confidentialité<\/a>.<\/p> \n<\/div> \n'; | |
| 1904 | +</script> | |
| 1905 | + | |
| 1906 | +<!-- HEAD RT JS Include --> | |
| 1907 | +<script id='d-js-params'> | |
| 1908 | + window.INSITE = window.INSITE || {}; | |
| 1909 | + window.INSITE.device = "desktop"; | |
| 1910 | + | |
| 1911 | + window.rtCommonProps = {}; | |
| 1912 | + rtCommonProps["rt.ajax.ajaxScriptsFix"] =true; | |
| 1913 | + rtCommonProps["rt.pushnotifs.sslframe.encoded"] = 'aHR0cHM6Ly97c3ViZG9tYWlufS5wdXNoLW5vdGlmcy5jb20='; | |
| 1914 | + rtCommonProps["runtimecollector.url"] = 'https://rtc.multiscreensite.com'; | |
| 1915 | + rtCommonProps["performance.tabletPreview.removeScroll"] = 'false'; | |
| 1916 | + rtCommonProps["inlineEditGrid.snap"] =true; | |
| 1917 | + rtCommonProps["popup.insite.cookie.ttl"] = '0.5'; | |
| 1918 | + rtCommonProps["rt.pushnotifs.force.button"] =true; | |
| 1919 | + rtCommonProps["common.mapbox.token"] = 'pk.JETON_CAVIARDE_LOUKA'; | |
| 1920 | + rtCommonProps["common.mapbox.js.override"] =false; | |
| 1921 | + rtCommonProps["common.here.appId"] = 'iYvDjIQ2quyEu0rg0hLo'; | |
| 1922 | + rtCommonProps["common.here.appCode"] = '1hcIxLJcbybmtBYTD9Z1UA'; | |
| 1923 | + rtCommonProps["isCoverage.test"] =false; | |
| 1924 | + rtCommonProps["ecommerce.ecwid.script"] = 'https://app.multiscreenstore.com/script.js'; | |
| 1925 | + rtCommonProps["common.resources.dist.cdn"] =true; | |
| 1926 | + rtCommonProps["common.build.dist.folder"] = 'production/6688'; | |
| 1927 | + rtCommonProps["common.resources.cdn.host"] = 'https://static.cdn-website.com'; | |
| 1928 | + rtCommonProps["common.resources.folder"] = 'https://static.cdn-website.com/mnlt/production/6688'; | |
| 1929 | + rtCommonProps["common.fonts.api.v2.url"] = 'https://irp.cdn-website.com/fonts/css2?family='; | |
| 1930 | + rtCommonProps["feature.flag.runtime.backgroundSlider.preload.slowly"] =true; | |
| 1931 | + rtCommonProps["feature.flag.runtime.newAnimation.enabled"] =true; | |
| 1932 | + rtCommonProps["feature.flag.runtime.newAnimation.jitAnimation.enabled"] =true; | |
| 1933 | + rtCommonProps["feature.flag.sites.google.analytics.gtag"] =true; | |
| 1934 | + rtCommonProps["feature.flag.runOnReadyNewTask"] =true; | |
| 1935 | + rtCommonProps["isAutomation.test"] =false; | |
| 1936 | + rtCommonProps["booking.cal.api.domain"] = 'api.cal.com'; | |
| 1937 | + | |
| 1938 | + | |
| 1939 | + rtCommonProps['common.mapsProvider'] = 'mapbox'; | |
| 1940 | + | |
| 1941 | + rtCommonProps['common.mapsProvider.version'] = '0.52.0'; | |
| 1942 | + rtCommonProps['common.geocodeProvider'] = 'mapbox'; | |
| 1943 | + rtCommonProps['server.for.resources'] = ''; | |
| 1944 | + rtCommonProps['feature.flag.lazy.widgets'] = true; | |
| 1945 | + rtCommonProps['feature.flag.single.wow'] = false; | |
| 1946 | + rtCommonProps['feature.flag.disallowPopupsInEditor'] = true; | |
| 1947 | + rtCommonProps['feature.flag.mark.anchors'] = true; | |
| 1948 | + rtCommonProps['captcha.public.key'] = '6LffcBsUAAAAAMU-MYacU-6QHY4iDtUEYv_Ppwlz'; | |
| 1949 | + rtCommonProps['captcha.invisible.public.key'] = '6LeiWB8UAAAAAHYnVJM7_-7ap6bXCUNGiv7bBPME'; | |
| 1950 | + rtCommonProps["images.sizes.small"] =160; | |
| 1951 | + rtCommonProps["images.sizes.mobile"] =640; | |
| 1952 | + rtCommonProps["images.sizes.tablet"] =1280; | |
| 1953 | + rtCommonProps["images.sizes.desktop"] =1920; | |
| 1954 | + rtCommonProps["modules.resources.cdn"] =true; | |
| 1955 | + rtCommonProps["import.images.storage.imageCDN"] = 'https://irp.cdn-website.com/'; | |
| 1956 | + rtCommonProps["feature.flag.runtime.inp.threshold"] =150; | |
| 1957 | + rtCommonProps["feature.flag.performance.logs"] =false; | |
| 1958 | + rtCommonProps["site.widget.form.captcha.type"] = 'g_recaptcha'; | |
| 1959 | + rtCommonProps["friendly.captcha.site.key"] = 'FCMGSQG9GVNMFS8K'; | |
| 1960 | + rtCommonProps["cookiebot.mapbox.consent.category"] = 'marketing'; | |
| 1961 | + rtCommonProps["termly.mapbox.consent.category"] = 'performance'; | |
| 1962 | + // feature flags that's used out of runtime module (in legacy files) | |
| 1963 | + rtCommonProps["platform.monolith.personalization.dateTimeCondition.popupMsgAction.moveToclient.enabled"] =true; | |
| 1964 | + | |
| 1965 | + window.rtFlags = {}; | |
| 1966 | + rtFlags["unsuspendEcwidStoreOnRuntime.enabled"] =true; | |
| 1967 | + rtFlags["scripts.widgetCount.enabled"] =true; | |
| 1968 | + rtFlags["fnb.animations.tracking.enabled"] =true; | |
| 1969 | + rtFlags["ecom.ecwidNewUrlStructure.enabled"] = false; | |
| 1970 | + rtFlags["ecom.ecwid.accountPage.emptyBaseUrl.enabled"] = true; | |
| 1971 | + rtFlags["ecom.ecwid.accountPage.repeatOrderRedirect.enabled"] = false; | |
| 1972 | + rtFlags["ecom.ecwid.pages.links.disable.listeners"] = true; | |
| 1973 | + rtFlags["ecom.ecwid.storefrontV3.enabled"] = false; | |
| 1974 | + rtFlags["ecom.ecwid.old.store.fix.facebook.share"] = true; | |
| 1975 | + rtFlags["ecom.monolith.legacy.js.api.disabled.for.new.sites"] = false; | |
| 1976 | + rtFlags["feature.flag.photo.gallery.exact.size"] =true; | |
| 1977 | + rtFlags["geocode.search.localize"] =false; | |
| 1978 | + rtFlags["feature.flag.runtime.newAnimation.asyncInit.setTimeout.enabled"] =false; | |
| 1979 | + rtFlags["twitter.heightLimit.enabled"] = true; | |
| 1980 | + rtFlags["runtime.lottieOverflow"] =false; | |
| 1981 | + rtFlags["runtime.monitoring.sentry.ignoreErrors"] = ""; | |
| 1982 | + rtFlags["streamline.monolith.personalization.supportMultipleConditions.enabled"] =false; | |
| 1983 | + rtFlags["flex.animation.design.panel.layout"] =true; | |
| 1984 | + rtFlags["runtime.cwv.report.cls.enabled"] =false; | |
| 1985 | + rtFlags["runtime.cwv.report.lcp.enabled"] =false; | |
| 1986 | + rtFlags["runtime.lcp.preload.selfheal.enabled"] =true; | |
| 1987 | + rtFlags["runtime.lcp.preload.bootstrap.enabled"] =false; | |
| 1988 | + rtFlags["runtime.lcp.preload.monitor.enabled"] =false; | |
| 1989 | + rtFlags["runtime.customwidget.heightpin.enabled"] =true; | |
| 1990 | + rtFlags["contact.form.useActiveForm"] =true; | |
| 1991 | + rtFlags["contact.form.custom.errors.enabled"] =false; | |
| 1992 | + rtFlags["runtime.ssr.productStore.internal.observer"] =true; | |
| 1993 | + rtFlags["runtime.ssr.productCustomizations"] =true; | |
| 1994 | + rtFlags["runtime.ssr.runtime.filter-sort.newFilterSortWidgetWithOptions.enabled"] =true; | |
| 1995 | + rtFlags["runtime.ssr.ssrSlider.jumpThreshold.enabled"] =true; | |
| 1996 | + rtFlags["runtime.ssr.native.booker.enabled"] =false; | |
| 1997 | + rtFlags["termly.map.consent.overlay.enabled"] =false; | |
| 1998 | +</script> | |
| 1999 | +<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> | |
| 2000 | + | |
| 2001 | +<!-- End of HEAD RT JS Include --> | |
| 2002 | + | |
| 2003 | + | |
| 2004 | + | |
| 2005 | + | |
| 2006 | + | |
| 2007 | + | |
| 2008 | + | |
| 2009 | + | |
| 2010 | + | |
| 2011 | + | |
| 2012 | + | |
| 2013 | + <script src="https://static.cdn-website.com/mnlt/production/6688/_dm/s/rt/dist/scripts/d-js-jquery-migrate.min.js" ></script> | |
| 2014 | + | |
| 2015 | + | |
| 2016 | + | |
| 2017 | + | |
| 2018 | + | |
| 2019 | +<script> | |
| 2020 | + | |
| 2021 | + $(window).bind("orientationchange", function (e) { | |
| 2022 | + $.layoutManager.initLayout(); | |
| 2023 | + | |
| 2024 | + }); | |
| 2025 | + $(document).resize(function () { | |
| 2026 | + | |
| 2027 | + }); | |
| 2028 | +</script> | |
| 2029 | + | |
| 2030 | + | |
| 2031 | + | |
| 2032 | + | |
| 2033 | + | |
| 2034 | + | |
| 2035 | + | |
| 2036 | + | |
| 2037 | + | |
| 2038 | + | |
| 2039 | + | |
| 2040 | + | |
| 2041 | + | |
| 2042 | + | |
| 2043 | + | |
| 2044 | + | |
| 2045 | + | |
| 2046 | + | |
| 2047 | +<script type="text/javascript" id="d_track_sp"> | |
| 2048 | + ;(function(p,l,o,w,i,n,g){if(!p[i]){p.GlobalSnowplowNamespace=p.GlobalSnowplowNamespace||[]; | |
| 2049 | + p.GlobalSnowplowNamespace.push(i);p[i]=function(){(p[i].q=p[i].q||[]).push(arguments) | |
| 2050 | + };p[i].q=p[i].q||[];n=l.createElement(o);g=l.getElementsByTagName(o)[0];n.async=1; | |
| 2051 | + n.src=w;g.parentNode.insertBefore(n,g)}}(window,document,"script","//d32hwlnfiv2gyn.cloudfront.net/sp-2.0.0-dm-0.1.min.js","snowplow")); | |
| 2052 | + window.dmsnowplow = window.snowplow; | |
| 2053 | + | |
| 2054 | + dmsnowplow('newTracker', 'cf', 'd32hwlnfiv2gyn.cloudfront.net', { // Initialise a tracker | |
| 2055 | + appId: '6d6b044d' | |
| 2056 | + }); | |
| 2057 | + | |
| 2058 | + // snowplow queries element styles so we wait until CSS calculations are done. | |
| 2059 | + requestAnimationFrame(() => { | |
| 2060 | + dmsnowplow('trackPageView'); | |
| 2061 | + _dm_insite.forEach((rule) => { | |
| 2062 | + // Specifically in popup only the client knows if it is shown or not so we don't always want to track its impression here | |
| 2063 | + // the tracking is in popup.js | |
| 2064 | + if (rule.actionName !== "popup") { | |
| 2065 | + dmsnowplow('trackStructEvent', 'insite', 'impression', rule.ruleType, rule.ruleId); | |
| 2066 | + } | |
| 2067 | + window?.waitForDeferred?.('dmAjax', () => { | |
| 2068 | + $.DM.events.trigger('event-ruleTriggered', {value: rule}); | |
| 2069 | + }); | |
| 2070 | + }); | |
| 2071 | + }); | |
| 2072 | +</script> | |
| 2073 | + | |
| 2074 | + | |
| 2075 | + | |
| 2076 | +<div style="display:none;" id="P6iryBW0Wu"></div> | |
| 2077 | + | |
| 2078 | +<!-- photoswipe markup --> | |
| 2079 | + | |
| 2080 | + | |
| 2081 | + | |
| 2082 | + | |
| 2083 | + | |
| 2084 | + | |
| 2085 | + | |
| 2086 | + | |
| 2087 | + | |
| 2088 | +<!-- Root element of PhotoSwipe. Must have class pswp. --> | |
| 2089 | +<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true"> | |
| 2090 | + | |
| 2091 | + <!-- Background of PhotoSwipe. | |
| 2092 | + It's a separate element as animating opacity is faster than rgba(). --> | |
| 2093 | + <div class="pswp__bg"></div> | |
| 2094 | + | |
| 2095 | + <!-- Slides wrapper with overflow:hidden. --> | |
| 2096 | + <div class="pswp__scroll-wrap"> | |
| 2097 | + | |
| 2098 | + <!-- Container that holds slides. | |
| 2099 | + PhotoSwipe keeps only 3 of them in the DOM to save memory. | |
| 2100 | + Don't modify these 3 pswp__item elements, data is added later on. --> | |
| 2101 | + <div class="pswp__container"> | |
| 2102 | + <div class="pswp__item"></div> | |
| 2103 | + <div class="pswp__item"></div> | |
| 2104 | + <div class="pswp__item"></div> | |
| 2105 | + </div> | |
| 2106 | + | |
| 2107 | + <!-- Default (PhotoSwipeUI_Default) interface on top of sliding area. Can be changed. --> | |
| 2108 | + <div class="pswp__ui pswp__ui--hidden"> | |
| 2109 | + | |
| 2110 | + <div class="pswp__top-bar"> | |
| 2111 | + | |
| 2112 | + <!-- Controls are self-explanatory. Order can be changed. --> | |
| 2113 | + | |
| 2114 | + <div class="pswp__counter"></div> | |
| 2115 | + | |
| 2116 | + <button class="pswp__button pswp__button--close" title="Fermer (Echap)"></button> | |
| 2117 | + | |
| 2118 | + <button class="pswp__button pswp__button--share" title="Partager"></button> | |
| 2119 | + | |
| 2120 | + <button class="pswp__button pswp__button--fs" title="Passer en mode plein écran"></button> | |
| 2121 | + | |
| 2122 | + <button class="pswp__button pswp__button--zoom" title="Zoom avant / arrière"></button> | |
| 2123 | + | |
| 2124 | + <!-- Preloader demo http://codepen.io/dimsemenov/pen/yyBWoR --> | |
| 2125 | + <!-- element will get class pswp__preloader--active when preloader is running --> | |
| 2126 | + <div class="pswp__preloader"> | |
| 2127 | + <div class="pswp__preloader__icn"> | |
| 2128 | + <div class="pswp__preloader__cut"> | |
| 2129 | + <div class="pswp__preloader__donut"></div> | |
| 2130 | + </div> | |
| 2131 | + </div> | |
| 2132 | + </div> | |
| 2133 | + </div> | |
| 2134 | + | |
| 2135 | + <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"> | |
| 2136 | + <div class="pswp__share-tooltip"></div> | |
| 2137 | + </div> | |
| 2138 | + | |
| 2139 | + <button class="pswp__button pswp__button--arrow--left" title="Précédent (flèche gauche)"> | |
| 2140 | + </button> | |
| 2141 | + | |
| 2142 | + <button class="pswp__button pswp__button--arrow--right" title="Suivant (flèche droite)"> | |
| 2143 | + </button> | |
| 2144 | + | |
| 2145 | + <div class="pswp__caption"> | |
| 2146 | + <div class="pswp__caption__center"></div> | |
| 2147 | + </div> | |
| 2148 | + | |
| 2149 | + </div> | |
| 2150 | + | |
| 2151 | + </div> | |
| 2152 | + | |
| 2153 | +</div> | |
| 2154 | +<div id="fb-root" | |
| 2155 | + data-locale="fr_FR"></div> | |
| 2156 | +<!-- Alias: 6d6b044d --> | |
| 2157 | +<div class="dmPopupMask" id="dmPopupMask"></div> | |
| 2158 | +<div id="dmPopup" class="dmPopup"> | |
| 2159 | + <div class="dmPopupCloseWrapper"> <div class="dmPopupClose dm-common-icons-close oneIcon" onclick="dmHidePopup(event);"></div> </div> | |
| 2160 | + <div class="dmPopupTitle"> <span></span> Share by:</div> | |
| 2161 | + <div class="data"></div> | |
| 2162 | +</div><script id="d_track_personalization"> | |
| 2163 | + window?.waitForDeferred?.('dmAjax', () => { | |
| 2164 | + // Collects client data and updates cookies used by smart sites | |
| 2165 | + window.expireDays = 365; | |
| 2166 | + window.visitLength = 30 * 60000; | |
| 2167 | + $.setCookie("dm_timezone_offset", (new Date()).getTimezoneOffset(), window.expireDays); | |
| 2168 | + setSmartSiteCookiesInternal("dm_this_page_view","dm_last_page_view","dm_total_visits","dm_last_visit"); | |
| 2169 | + }); | |
| 2170 | +</script> | |
| 2171 | +<script type="text/javascript"> | |
| 2172 | + | |
| 2173 | + Parameters.NavigationAreaParams.MoreButtonText = 'MORE'; | |
| 2174 | + | |
| 2175 | + Parameters.NavigationAreaParams.LessButtonText = 'LESS'; | |
| 2176 | + Parameters.HomeLinkText = 'Home'; | |
| 2177 | + </script> | |
| 2178 | +<div><script type="text/javascript"> | |
| 2179 | + try{ | |
| 2180 | + if (globalThis.parent){ | |
| 2181 | + var parentFlags = globalThis.parent._flags; | |
| 2182 | + var parentStrings = globalThis.parent.dmStr; | |
| 2183 | + | |
| 2184 | + } | |
| 2185 | + } catch(e) {} | |
| 2186 | + _flags = window._flags || {};_flags = {...parentFlags,..._flags,...{"runtime.ssr.accordion.scroll.height.fix":true,"runtime.ssr.add.render":true,"runtime.ssr.booking.dryrun.for.default.staffmember":false,"runtime.ssr.checkbox.customizations":true,"runtime.ssr.ecom.productStore.connectedWidgets.init.listener.from.rt.mobx.store":false,"runtime.ssr.enabled":true,"runtime.ssr.file.customizations":true,"runtime.ssr.initial-props-in-data-attribute":true,"runtime.ssr.lazyHydrate":true,"runtime.ssr.log.showHydrationDiff":false,"runtime.ssr.log.showHydrationErrors":true,"runtime.ssr.native.booker.enabled":false,"runtime.ssr.non-view-media-server-placeholder":true,"runtime.ssr.productCustomizations":true,"runtime.ssr.productStore.internal.observer":true,"runtime.ssr.render.overrideMarkup":true,"runtime.ssr.runtime.filter-sort.newFilterSortWidgetWithOptions.enabled":true,"runtime.ssr.script-fetch-priority-low":false,"runtime.ssr.search.layout.enabled":true,"runtime.ssr.slider-dev-logging":false,"runtime.ssr.slider-reOrderSelectedToBeFirst":true,"runtime.ssr.slider.alternative.animation.to.reduce.cls.enabled":true,"runtime.ssr.slider.image.fillAvailableSpace.enabled":true,"runtime.ssr.ssrAddToCart.snipcart.new.api.addProduct.enabled":true,"runtime.ssr.ssrSlider.jumpThreshold.enabled":true,"runtime.ssr.ssrSlider.multiplePaginationPerLayout.enabled":true,"runtime.ssr.ssrSlider.slideCleanWrap.enabled":true,"runtime.ssr.widget.migration.addtocart":false,"runtime.ssr.widget.migration.options.variations":false}} | |
| 2187 | + | |
| 2188 | + | |
| 2189 | + var dmStr = {...parentStrings,...dmStr,...{"key.runtime":"some value","placeholder.add-content":"Add Content","second.key":"value2","widget.addtocart.title":"Add to cart","rt.advancedFormInput.requiredMessage":"Obligatoire","ui.ed.breadcrumbs.empty.message":"Il n'y a aucune page visible à afficher dans les breadcrumbs. Ce message n'apparaîtra pas sur votre site publié en ligne.","ui.ed.ssr.orderConfirmation.content.intro.label":"Introduction à la confirmation","ui.ed.ssr.orderConfirmation.content.intro.with":"Avec","ui.ed.ssr.orderConfirmation.content.intro.without":"Sans","ui.runtimessr.addtocart.subscribe.title":"Abonnez-vous maintenant","ui.runtimessr.addtocart.subscribe.tooltip.text":"Testez le processus de paiement de votre abonnement. Pour cela, publiez votre site et utilisez sa version en ligne. ","ui.runtimessr.advancedFormInput.requiredMessage":"Obligatoire","ui.runtimessr.calbooking.back.button":"Retour","ui.runtimessr.calbooking.booking.title":"{eventTitle} entre {staffMemberName} et {attendeeNames}","ui.runtimessr.calbooking.cancelBooking.cancelButton":"Annuler le rendez-vous","ui.runtimessr.calbooking.cancelBooking.cancelling":"Annulation...","ui.runtimessr.calbooking.cancelBooking.cancelling.placeholder":"Pourquoi annulez-vous ?","ui.runtimessr.calbooking.cancelBooking.reason":"Motif de l'annulation (facultatif)","ui.runtimessr.calbooking.cancelBooking.title":"Annuler ce rendez-vous ?","ui.runtimessr.calbooking.canceledBooking.title":"Ce rendez-vous est annulé","ui.runtimessr.calbooking.confirmation.dryRun.note":"Revenez plus tard ou contactez-nous pour plus d'informations","ui.runtimessr.calbooking.confirmation.dryRun.title":"Ce site n'accepte pas encore de réservations","ui.runtimessr.calbooking.confirmation.pending.subtitle":"Nous attendons maintenant la confirmation de notre équipe.","ui.runtimessr.calbooking.confirmation.pending.title":"Votre demande de réservation a été envoyée","ui.runtimessr.calbooking.confirmation.preview.note":"Rendez-vous sur le site en direct, dans son domaine actuel, pour effectuer une réservation.","ui.runtimessr.calbooking.confirmation.preview.title":"Vous ne pouvez pas créer de rendez-vous en mode aperçu","ui.runtimessr.calbooking.confirmation.success.back":"Retour","ui.runtimessr.calbooking.confirmation.success.cancel":"Annuler","ui.runtimessr.calbooking.confirmation.success.change":"Vous avez besoin d'un changement ?","ui.runtimessr.calbooking.confirmation.success.description":"Nous avons envoyé un courriel à tous les participants avec les détails.","ui.runtimessr.calbooking.confirmation.success.host":"Hôte","ui.runtimessr.calbooking.confirmation.success.or":"ou","ui.runtimessr.calbooking.confirmation.success.reschedule":"Reprogrammer","ui.runtimessr.calbooking.confirmation.success.title":"Cette réunion est prévue","ui.runtimessr.calbooking.confirmation.success.videoCallLink":"Appel vidéo","ui.runtimessr.calbooking.confirmation.success.what":"Ce qu'il faut faire","ui.runtimessr.calbooking.confirmation.success.when":"Quand","ui.runtimessr.calbooking.confirmation.success.where":"Où","ui.runtimessr.calbooking.confirmation.success.who":"Qui","ui.runtimessr.calbooking.duration.minutes":"{duration} min","ui.runtimessr.calbooking.markup.eventType":"Consultation gratuite","ui.runtimessr.calbooking.markup.userName":"John Smith","ui.runtimessr.calbooking.meta.price.free":"gratuit(e)","ui.runtimessr.calbooking.meta.price.includes.tax":"La taxe {taxPercentage} est incluse.","ui.runtimessr.calbooking.meta.price.might.change":"Le prix total peut varier en fonction de votre lieu de résidence","ui.runtimessr.calbooking.paid.booking.next.step.button":"Suivant","ui.runtimessr.calbooking.reschedule.booking":"Reprogrammer la réservation","ui.runtimessr.collectionSearch.noResults":"Aucun résultat.","ui.runtimessr.fileupload.error.upload_failed":"Échec du téléchargement","ui.runtimessr.filtersort.less-filters":"Moins de filtres ({count})","ui.runtimessr.filtersort.more-filters":"Plus de filtres ({count})","ui.runtimessr.priceOptions.option.oneTimeOnly":"Achat unique","ui.runtimessr.productCustomizations.errors.checkbox.exactlyChoices":"Choisissez exactement {exact} choix","ui.runtimessr.productCustomizations.errors.checkbox.maxChoices":"Choisissez jusqu'à {max} choix","ui.runtimessr.productCustomizations.errors.checkbox.minChoices":"Choisissez au moins {min} choix","ui.runtimessr.productCustomizations.errors.checkbox.required":"Choisissez au moins une option","ui.runtimessr.productCustomizations.errors.file.maxFiles":"Téléversez jusqu'à {max} fichiers","ui.runtimessr.productCustomizations.errors.required":"Ce champ est obligatoire","ui.runtimessr.productCustomizations.noCustomizations":"Ce produit n'est pas personnalisable. Ce widget n'apparaîtra pas sur le site en ligne.","ui.runtimessr.productCustomizations.quantity.decrementAriaLabel":"Diminuer la quantité de {label}","ui.runtimessr.productCustomizations.quantity.incrementAriaLabel":"Augmenter la quantité de {label}","ui.runtimessr.productCustomizations.quantity.stepperAriaLabel":"Quantité pour {label}","ui.runtimessr.productPrice.omnibus.last.price":"Prix le plus bas au cours des derniers {period} jours - {displayedPrice}","ui.runtimessr.productPrice.omnibus.total.price.might.change":"Le prix total peut varier en fonction de votre lieu de résidence","ui.runtimessr.productPrice.omnibus.vat":"Inclut {vatPercentage}% taxe","ui.runtimessr.productPriceOptions.autoRenew":"Renouvellement automatique jusqu'à annulation","ui.runtimessr.productPriceOptions.expiresAfter":"Expire après","ui.runtimessr.productPriceOptions.frequency.monthly":"Mois","ui.runtimessr.productPriceOptions.frequency.weekly":"Semaine","ui.runtimessr.productPriceOptions.frequency.yearly":"Année","ui.runtimessr.productPriceOptions.frequencyPlural.monthly":"mois","ui.runtimessr.productPriceOptions.frequencyPlural.weekly":"semaines","ui.runtimessr.productPriceOptions.frequencyPlural.yearly":"Années","ui.runtimessr.productPriceOptions.title":"Options de prix","ui.runtimessr.staffMemberSelection.anyoneAvailable":"Toute personne disponible","widget.addtocart.disabledText.placeHolder":"Rupture de stock","widget.filtersort.clear-all":"Effacer tout","widget.filtersort.filter-by.title":"Filtrer par","widget.filtersort.sort-by.title":"Classer par","widget.filtersort.title":"Filtrer et trier"}} | |
| 2190 | + | |
| 2191 | +</script> | |
| 2192 | + <script id="ssr-static" fetchpriority="low" type="module" src="https://ms-cdn.multiscreensite.com/runtime-react/35/res/js/runtime-react.js"></script></div><!-- End Script tags --> | |
| 2193 | +<!-- Site Wide Html Markup --> | |
| 2194 | +<!-- Site Wide Html Markup --> | |
| 2195 | +</body> | |
| 2196 | +</html> | |
added
tests/fixtures/girs/5b7505829c934d0f7b25.html
+2247 −0
@@ -0,0 +1,2247 @@ | ||
| 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 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | +<script type="text/javascript"> | |
| 46 | + window._currentDevice = 'desktop'; | |
| 47 | + window.Parameters = window.Parameters || { | |
| 48 | + HomeUrl: 'https://www.girs.ca/', | |
| 49 | + | |
| 50 | + 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érience sur notre site web. Pour en savoir plus, veuillez accéder à la page <a value=\"donnees-personnelles\" label=\"\" type=\"page\" href=\"\/donnees-personnelles\" data-runtime-url=\"\/donnees-personnelles\">Confidentialité<\/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: false | |
| 134 | + }; | |
| 135 | + | |
| 136 | + window.Parameters.LayoutID = {}; | |
| 137 | + window.Parameters.LayoutID[window._currentDevice] = 6; | |
| 138 | + window.Parameters.LayoutVariationID = {}; | |
| 139 | + window.Parameters.LayoutVariationID[window._currentDevice] = 5; | |
| 140 | +</script> | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | +<!-- Injecting site-wide to the head --> | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
| 169 | + | |
| 170 | + | |
| 171 | + | |
| 172 | + | |
| 173 | + | |
| 174 | + | |
| 175 | + | |
| 176 | + | |
| 177 | + | |
| 178 | +<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('&'); | |
| 185 | + | |
| 186 | + const expires = 'expires=' + new Date().getTime() + 24 * 60 * 60 * 1000; | |
| 187 | + const domain = 'domain=' + window.location.hostname; | |
| 188 | + const path = "path=/"; | |
| 189 | + | |
| 190 | + 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.cookie | |
| 220 | + .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 submission | |
| 226 | + // 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> | |
| 240 | + | |
| 241 | + | |
| 242 | + | |
| 243 | + | |
| 244 | + | |
| 245 | + | |
| 246 | +<!-- End Injecting site-wide to the head --> | |
| 247 | + | |
| 248 | +<!-- Inject secured cdn script --> | |
| 249 | + | |
| 250 | + | |
| 251 | +<!-- ========= 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 >>> 0 | |
| 260 | + } | |
| 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.serviceWorker | |
| 277 | + .register(serviceWorkerPath, { scope: './' }) | |
| 278 | + .then( | |
| 279 | + function (registration) { | |
| 280 | + // Registration was successful | |
| 281 | + console.log( | |
| 282 | + 'ServiceWorker registration successful with scope: ', | |
| 283 | + registration.scope | |
| 284 | + ); | |
| 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 | + }); | |
| 295 | + | |
| 296 | + // helper function to refresh the page | |
| 297 | + var refreshPage = (function () { | |
| 298 | + var refreshing; | |
| 299 | + return function () { | |
| 300 | + if (refreshing) return; | |
| 301 | + // prevent multiple refreshes | |
| 302 | + 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 loop | |
| 308 | + } | |
| 309 | + } | |
| 310 | + refreshing = true; | |
| 311 | + localStorage.setItem(refreshkey, Date.now()); | |
| 312 | + console.log('refereshing page'); | |
| 313 | + window.location.reload(); | |
| 314 | + }; | |
| 315 | + })(); | |
| 316 | + | |
| 317 | + 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 --> | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
| 340 | +<link rel="canonical" href="https://www.girs.ca/location/scott/rue-amanda-gustave"> | |
| 341 | + | |
| 342 | +<meta id="view" name="viewport" content="initial-scale=1, minimum-scale=1, maximum-scale=5, viewport-fit=cover"> | |
| 343 | + | |
| 344 | +<meta name="apple-mobile-web-app-capable" content="yes"> | |
| 345 | + | |
| 346 | +<!--Add favorites icons--> | |
| 347 | + | |
| 348 | +<link rel="icon" type="image/x-icon" href="https://irp.cdn-website.com/6d6b044d/site_favicon_16_1673962208002.ico"/> | |
| 349 | + | |
| 350 | +<!-- 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"/> | |
| 354 | + | |
| 355 | + | |
| 356 | + | |
| 357 | +<!-- render the required CSS and JS in the head section --> | |
| 358 | +<script id='d-js-dmapi'> | |
| 359 | + window.SystemID = 'US_DIRECT_PRODUCTION'; | |
| 360 | + | |
| 361 | + 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; | |
| 372 | + | |
| 373 | + 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 | + } | |
| 405 | + | |
| 406 | + if (!window.requestIdleCallback) { | |
| 407 | + window.requestIdleCallback = function (fn) { | |
| 408 | + setTimeout(fn, 0); | |
| 409 | + } | |
| 410 | + } | |
| 411 | +</script> | |
| 412 | + | |
| 413 | +<!-- loadCSS function header.jsp--> | |
| 414 | + | |
| 415 | + | |
| 416 | + | |
| 417 | + | |
| 418 | + | |
| 419 | + | |
| 420 | +<script id="d-js-load-css"> | |
| 421 | +/** | |
| 422 | + * There are a few <link> tags with CSS resource in them that are preloaded in the page | |
| 423 | + * in each of those there is a "onload" handler which invokes the loadCSS callback | |
| 424 | + * 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 threre | |
| 427 | + * is no page css (which may happen on inner pages) then we do not wait for it | |
| 428 | + */ | |
| 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']"); | |
| 440 | + | |
| 441 | + 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; | |
| 446 | + | |
| 447 | + storedGlobalCssLink.disabled = true; | |
| 448 | + loadCssLink(storedGlobalCssLink); | |
| 449 | + | |
| 450 | + if (storedPageCssLink) { | |
| 451 | + storedPageCssLink.disabled = true; | |
| 452 | + loadCssLink(storedPageCssLink); | |
| 453 | + } | |
| 454 | + | |
| 455 | + if(storedWidgetCssLink) { | |
| 456 | + storedWidgetCssLink.disabled = true; | |
| 457 | + loadCssLink(storedWidgetCssLink); | |
| 458 | + } | |
| 459 | + | |
| 460 | + storedRuntimeCssLink.disabled = true; | |
| 461 | + loadCssLink(storedRuntimeCssLink); | |
| 462 | + | |
| 463 | + 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're | |
| 474 | + // 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 | + | |
| 484 | + | |
| 485 | + 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; | |
| 490 | + | |
| 491 | + 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 e | |
| 519 | + } | |
| 520 | + } | |
| 521 | + window.loadCSS = window.loadCSS || loadCSS; | |
| 522 | +})(); | |
| 523 | +</script> | |
| 524 | + | |
| 525 | + | |
| 526 | + | |
| 527 | +<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 = b | |
| 532 | + }).bind(this)) | |
| 533 | + } | |
| 534 | + | |
| 535 | + 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 | + d | |
| 542 | + ? d.promise.then(a) | |
| 543 | + : c && ["complete", "interactive"].includes(document.readyState) | |
| 544 | + ? setTimeout(a, 1) | |
| 545 | + : c | |
| 546 | + ? 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 */ | |
| 552 | + | |
| 553 | +.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 | + | |
| 555 | + | |
| 556 | +</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> | |
| 568 | + | |
| 569 | + | |
| 570 | + | |
| 571 | + | |
| 572 | + | |
| 573 | + | |
| 574 | + | |
| 575 | + | |
| 576 | + | |
| 577 | + | |
| 578 | + | |
| 579 | + | |
| 580 | + | |
| 581 | + | |
| 582 | + | |
| 583 | + | |
| 584 | + | |
| 585 | + | |
| 586 | + | |
| 587 | + | |
| 588 | + | |
| 589 | + | |
| 590 | + | |
| 591 | + | |
| 592 | + | |
| 593 | +<!-- Google Fonts Include --> | |
| 594 | + | |
| 595 | + | |
| 596 | + | |
| 597 | + | |
| 598 | + | |
| 599 | + | |
| 600 | + | |
| 601 | + | |
| 602 | + | |
| 603 | + | |
| 604 | + | |
| 605 | + | |
| 606 | + | |
| 607 | +<!-- loadCSS function fonts.jsp--> | |
| 608 | + | |
| 609 | + | |
| 610 | + | |
| 611 | +<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&subset=latin-ext&display=swap" /> | |
| 612 | + | |
| 613 | + | |
| 614 | + | |
| 615 | + | |
| 616 | + | |
| 617 | +<!-- 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" /> | |
| 619 | + | |
| 620 | +<!-- End of RT CSS Include --> | |
| 621 | + | |
| 622 | +<link type="text/css" rel="stylesheet" href="https://irp.cdn-website.com/WIDGET_CSS/b3f900cc909110f5df2a6191c01d29f5.css" id="widgetCSS" /> | |
| 623 | + | |
| 624 | +<!-- Support `img` size attributes --> | |
| 625 | +<style>img[width][height] { | |
| 626 | + height: auto; | |
| 627 | +}</style> | |
| 628 | + | |
| 629 | +<!-- 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> | |
| 635 | + | |
| 636 | +<!-- This is populated in Ajax navigation --> | |
| 637 | +<style id="pageAdditionalWidgetsCss" type="text/css"> | |
| 638 | +</style> | |
| 639 | + | |
| 640 | + | |
| 641 | + | |
| 642 | + | |
| 643 | +<!-- 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" /> | |
| 645 | + | |
| 646 | + | |
| 647 | + | |
| 648 | +<style id="customWidgetStyle" type="text/css"> | |
| 649 | + | |
| 650 | +</style> | |
| 651 | +<style id="innerPagesStyle" type="text/css"> | |
| 652 | + | |
| 653 | +</style> | |
| 654 | + | |
| 655 | + | |
| 656 | +<style | |
| 657 | + id="additionalGlobalCss" type="text/css" | |
| 658 | +> | |
| 659 | +</style> | |
| 660 | + | |
| 661 | +<style id="pagestyle" type="text/css"> | |
| 662 | + *#dm *.dmBody a.span.textonly | |
| 663 | +{ | |
| 664 | + color:rgb(255,255,255) !important; | |
| 665 | +} | |
| 666 | +*#dm *.dmBody div.dmform-error | |
| 667 | +{ | |
| 668 | + font-style:normal !important; | |
| 669 | +} | |
| 670 | +*#dm *.dmBody div.dmforminput textarea | |
| 671 | +{ | |
| 672 | + font-style:italic !important; | |
| 673 | +} | |
| 674 | +*#dm *.dmBody div.dmforminput *.fileUploadLink | |
| 675 | +{ | |
| 676 | + font-style:italic !important; | |
| 677 | +} | |
| 678 | +*#dm *.dmBody div.checkboxwrapper span | |
| 679 | +{ | |
| 680 | + font-style:italic !important; | |
| 681 | +} | |
| 682 | +*#dm *.dmBody div.radiowrapper span | |
| 683 | +{ | |
| 684 | + font-style:italic !important; | |
| 685 | +} | |
| 686 | +*#dm *.dmBody nav.u_1144820115 | |
| 687 | +{ | |
| 688 | + color:black !important; | |
| 689 | +} | |
| 690 | +*#dm *.dmBody *.u_1004639188:before | |
| 691 | +{ | |
| 692 | + opacity:0.5 !important; | |
| 693 | + background-color:rgb(255,255,255) !important; | |
| 694 | +} | |
| 695 | +*#dm *.dmBody *.u_1004639188.before | |
| 696 | +{ | |
| 697 | + opacity:0.5 !important; | |
| 698 | + background-color:rgb(255,255,255) !important; | |
| 699 | +} | |
| 700 | +*#dm *.dmBody *.u_1004639188>.bgExtraLayerOverlay | |
| 701 | +{ | |
| 702 | + opacity:0.5 !important; | |
| 703 | + background-color:rgb(255,255,255) !important; | |
| 704 | +} | |
| 705 | +*#dm *.dmBody div.u_1004639188 | |
| 706 | +{ | |
| 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:before | |
| 713 | +{ | |
| 714 | + background-color:var(--color_1) !important; | |
| 715 | +} | |
| 716 | +*#dm *.dmBody div.u_1004639188.before | |
| 717 | +{ | |
| 718 | + background-color:var(--color_1) !important; | |
| 719 | +} | |
| 720 | +*#dm *.dmBody div.u_1004639188>.bgExtraLayerOverlay | |
| 721 | +{ | |
| 722 | + background-color:var(--color_1) !important; | |
| 723 | +} | |
| 724 | +*#dm *.dmBody a.u_1756842165:hover | |
| 725 | +{ | |
| 726 | + background-color:var(--color_3) !important; | |
| 727 | + background-image:none !important; | |
| 728 | +} | |
| 729 | +*#dm *.dmBody a.u_1756842165.hover | |
| 730 | +{ | |
| 731 | + background-color:var(--color_3) !important; | |
| 732 | + background-image:none !important; | |
| 733 | +} | |
| 734 | +*#dm *.dmBody a.u_1756842165:hover span.text | |
| 735 | +{ | |
| 736 | + color:var(--color_1) !important; | |
| 737 | +} | |
| 738 | +*#dm *.dmBody a.u_1756842165.hover span.text | |
| 739 | +{ | |
| 740 | + color:var(--color_1) !important; | |
| 741 | +} | |
| 742 | +*#dm *.dmBody a.u_1756842165 span.text | |
| 743 | +{ | |
| 744 | + font-family:'Roboto' !important; | |
| 745 | + font-weight:400 !important; | |
| 746 | + color:var(--color_3) !important; | |
| 747 | +} | |
| 748 | +*#dm *.dmBody div.u_1937526287 | |
| 749 | +{ | |
| 750 | + border-style:solid !important; | |
| 751 | + border-width:2px !important; | |
| 752 | + border-color:var(--color_3) !important; | |
| 753 | +} | |
| 754 | +*#dm *.dmBody *.u_1188563749 | |
| 755 | +{ | |
| 756 | + width:100% !important; | |
| 757 | +} | |
| 758 | +*#dm *.dmBody div.u_1452815793 | |
| 759 | +{ | |
| 760 | + background-color:rgba(0,0,0,0.05) !important; | |
| 761 | +} | |
| 762 | +*#dm *.dmBody div.u_1840143137 | |
| 763 | +{ | |
| 764 | + background-color:rgba(0,0,0,0.05) !important; | |
| 765 | +} | |
| 766 | +*#dm *.dmBody div.u_1813520727 | |
| 767 | +{ | |
| 768 | + background-color:rgba(0,0,0,0.05) !important; | |
| 769 | +} | |
| 770 | +*#dm *.dmBody div.u_1813669443 .svg | |
| 771 | +{ | |
| 772 | + color:var(--color_3) !important; | |
| 773 | + fill:var(--color_3) !important; | |
| 774 | +} | |
| 775 | +*#dm *.dmBody div.u_1465006226 .svg | |
| 776 | +{ | |
| 777 | + color:rgba(255,255,255,1) !important; | |
| 778 | + fill:rgba(255,255,255,1) !important; | |
| 779 | +} | |
| 780 | +*#dm *.dmBody div.u_1419208593 .svg | |
| 781 | +{ | |
| 782 | + color:rgba(255,255,255,1) !important; | |
| 783 | + fill:rgba(255,255,255,1) !important; | |
| 784 | +} | |
| 785 | +*#dm *.dmBody div.u_1281514457 .color-overlay | |
| 786 | +{ | |
| 787 | + background-color:rgba(0,0,0,0) !important; | |
| 788 | +} | |
| 789 | +*#dm *.dmBody *.u_1281514457 .flex-direction-nav a:before | |
| 790 | +{ | |
| 791 | + font-size:45px !important; | |
| 792 | +} | |
| 793 | +*#dm *.dmBody *.u_1281514457 .flex-direction-nav a | |
| 794 | +{ | |
| 795 | + width:45px !important; | |
| 796 | + height:45px !important; | |
| 797 | + overflow:visible !important; | |
| 798 | + color:var(--color_3) !important; | |
| 799 | +} | |
| 800 | +*#dm *.dmBody *.u_1713239492:before | |
| 801 | +{ | |
| 802 | + opacity:0.5 !important; | |
| 803 | + background-color:rgb(255,255,255) !important; | |
| 804 | +} | |
| 805 | +*#dm *.dmBody *.u_1713239492.before | |
| 806 | +{ | |
| 807 | + opacity:0.5 !important; | |
| 808 | + background-color:rgb(255,255,255) !important; | |
| 809 | +} | |
| 810 | +*#dm *.dmBody *.u_1713239492>.bgExtraLayerOverlay | |
| 811 | +{ | |
| 812 | + opacity:0.5 !important; | |
| 813 | + background-color:rgb(255,255,255) !important; | |
| 814 | +} | |
| 815 | +*#dm *.dmBody div.u_1486697154 | |
| 816 | +{ | |
| 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.text | |
| 822 | +{ | |
| 823 | + text-decoration:none !important; | |
| 824 | + font-weight:400 !important; | |
| 825 | +} | |
| 826 | +*#dm *.dmBody a.u_1331251441:hover span.text | |
| 827 | +{ | |
| 828 | + text-decoration:underline !important; | |
| 829 | + color:var(--color_1) !important; | |
| 830 | +} | |
| 831 | +*#dm *.dmBody a.u_1331251441.hover span.text | |
| 832 | +{ | |
| 833 | + text-decoration:underline !important; | |
| 834 | + color:var(--color_1) !important; | |
| 835 | +} | |
| 836 | +*#dm *.dmBody a.u_1331251441:hover | |
| 837 | +{ | |
| 838 | + background-color:var(--color_3) !important; | |
| 839 | + background-image:none !important; | |
| 840 | +} | |
| 841 | +*#dm *.dmBody a.u_1331251441.hover | |
| 842 | +{ | |
| 843 | + background-color:var(--color_3) !important; | |
| 844 | + background-image:none !important; | |
| 845 | +} | |
| 846 | +*#dm *.dmBody div.u_1884387629 | |
| 847 | +{ | |
| 848 | + background-color:rgba(0,0,0,0.05) !important; | |
| 849 | +} | |
| 850 | +*#dm *.dmBody a.u_1331251441 | |
| 851 | +{ | |
| 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 .svg | |
| 859 | +{ | |
| 860 | + color:var(--color_1) !important; | |
| 861 | + fill:var(--color_1) !important; | |
| 862 | +} | |
| 863 | +*#dm *.dmBody a.u_1756842165 | |
| 864 | +{ | |
| 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:before | |
| 871 | +{ | |
| 872 | + background-color:var(--color_1) !important; | |
| 873 | + opacity:0.4 !important; | |
| 874 | +} | |
| 875 | +*#dm *.dmBody div.u_1713239492.before | |
| 876 | +{ | |
| 877 | + background-color:var(--color_1) !important; | |
| 878 | + opacity:0.4 !important; | |
| 879 | +} | |
| 880 | +*#dm *.dmBody div.u_1713239492>.bgExtraLayerOverlay | |
| 881 | +{ | |
| 882 | + background-color:var(--color_1) !important; | |
| 883 | + opacity:0.4 !important; | |
| 884 | +} | |
| 885 | +*#dm *.dmBody div.u_1746905231 | |
| 886 | +{ | |
| 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_1732757548 | |
| 891 | +{ | |
| 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_1373323900 | |
| 896 | +{ | |
| 897 | + background-image:linear-gradient(90deg, rgba(66, 123, 202, 1) 0%, rgba(73, 174, 223, 1) 100%) !important; | |
| 898 | + background-origin:border-box !important; | |
| 899 | +} | |
| 900 | + | |
| 901 | +</style> | |
| 902 | + | |
| 903 | +<style id="pagestyleDevice" type="text/css"> | |
| 904 | + *#dm *.d-page-1716942098 DIV.dmInner | |
| 905 | +{ | |
| 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#dmSlideRightNavRight | |
| 912 | +{ | |
| 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_1867569646 | |
| 920 | +{ | |
| 921 | + height:40px !important; | |
| 922 | +} | |
| 923 | +*#dm *.dmBody a.u_1756842165 span.text | |
| 924 | +{ | |
| 925 | + font-size:20px !important; | |
| 926 | +} | |
| 927 | +*#dm *.dmBody div.u_1937526287 | |
| 928 | +{ | |
| 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_1121935101 | |
| 939 | +{ | |
| 940 | + height:600px !important; | |
| 941 | +} | |
| 942 | +@media (min-width:768px) and (max-width:1024px) {} | |
| 943 | +@media (min-width:1025px) {} | |
| 944 | +*#dm *.dmBody div.u_1221610193 | |
| 945 | +{ | |
| 946 | + height:20px !important; | |
| 947 | +} | |
| 948 | +*#dm *.dmBody div.u_1127078365 | |
| 949 | +{ | |
| 950 | + height:20px !important; | |
| 951 | +} | |
| 952 | +*#dm *.dmBody div.u_1288707829 | |
| 953 | +{ | |
| 954 | + height:20px !important; | |
| 955 | +} | |
| 956 | +*#dm *.dmBody div.u_1337411818 | |
| 957 | +{ | |
| 958 | + height:20px !important; | |
| 959 | +} | |
| 960 | +*#dm *.dmBody div.u_1486647722 | |
| 961 | +{ | |
| 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_1331251441 | |
| 981 | +{ | |
| 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.text | |
| 1002 | +{ | |
| 1003 | + font-size:18px !important; | |
| 1004 | +} | |
| 1005 | +*#dm *.dmBody div.u_1742636284 | |
| 1006 | +{ | |
| 1007 | + width:90px !important; | |
| 1008 | + height:90px !important; | |
| 1009 | +} | |
| 1010 | +*#dm *.dmBody div.u_1004639188 | |
| 1011 | +{ | |
| 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_1281514457 | |
| 1034 | +{ | |
| 1035 | + height:700px !important; | |
| 1036 | + width:1200px !important; | |
| 1037 | +} | |
| 1038 | +*#dm *.dmBody a.u_1756842165 | |
| 1039 | +{ | |
| 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 | +} | |
| 1059 | + | |
| 1060 | +</style> | |
| 1061 | + | |
| 1062 | +<!-- Flex Sections CSS --> | |
| 1063 | + | |
| 1064 | + | |
| 1065 | + | |
| 1066 | + | |
| 1067 | + | |
| 1068 | + | |
| 1069 | + | |
| 1070 | +<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> | |
| 1075 | + | |
| 1076 | + | |
| 1077 | + | |
| 1078 | + | |
| 1079 | +<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 | + } | |
| 1083 | + | |
| 1084 | + .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-extended] { | |
| 1085 | + visibility: hidden !important; | |
| 1086 | + } | |
| 1087 | + | |
| 1088 | + #dmRoot:not(.editGrid) .flex-element [data-anim-extended] { | |
| 1089 | + visibility: hidden; | |
| 1090 | + } | |
| 1091 | + | |
| 1092 | +</style> | |
| 1093 | + | |
| 1094 | + | |
| 1095 | + | |
| 1096 | + | |
| 1097 | +<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> | |
| 1142 | + | |
| 1143 | + | |
| 1144 | +<!-- End render the required css and JS in the head section --> | |
| 1145 | + | |
| 1146 | + | |
| 1147 | + | |
| 1148 | + | |
| 1149 | + | |
| 1150 | + | |
| 1151 | +<meta property="og:type" content="website"> | |
| 1152 | +<meta property="og:url" content="https://www.girs.ca/location/scott/rue-amanda-gustave"> | |
| 1153 | + | |
| 1154 | + <title> | |
| 1155 | + Appartements à louer à Scott | GIRS | |
| 1156 | + </title> | |
| 1157 | + <meta name="description" content="Découvrez des appartements 4½ et 5½ à louer, balcon privé, climatisation, internet illimité et cadre de vie paisible."/> | |
| 1158 | + | |
| 1159 | + <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"/> | |
| 1160 | + | |
| 1161 | + <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"/> | |
| 1166 | + | |
| 1167 | + | |
| 1168 | + | |
| 1169 | + | |
| 1170 | +<!-- SYS- VVNfRElSRUNUX1BST0RVQ1RJT04= --> | |
| 1171 | +</head> | |
| 1172 | + | |
| 1173 | + | |
| 1174 | + | |
| 1175 | + | |
| 1176 | + | |
| 1177 | + | |
| 1178 | + | |
| 1179 | + | |
| 1180 | + | |
| 1181 | + | |
| 1182 | + | |
| 1183 | + | |
| 1184 | + | |
| 1185 | + | |
| 1186 | + | |
| 1187 | + | |
| 1188 | + | |
| 1189 | + | |
| 1190 | + | |
| 1191 | + | |
| 1192 | + | |
| 1193 | +<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 | + > | |
| 1197 | + | |
| 1198 | + | |
| 1199 | + | |
| 1200 | + | |
| 1201 | + | |
| 1202 | + | |
| 1203 | + | |
| 1204 | + | |
| 1205 | + | |
| 1206 | + | |
| 1207 | + | |
| 1208 | + | |
| 1209 | + | |
| 1210 | + | |
| 1211 | + | |
| 1212 | + | |
| 1213 | +<!-- ========= 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">À 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è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é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é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 Érables, Jumelé<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 É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è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è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">À 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é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é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 && dm_gaq_push_event('socialLink', 'click', 'Email')"> <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 && dm_gaq_push_event('socialLink', 'click', 'Facebook')"> <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 && dm_gaq_push_event('socialLink', 'click', 'Facebook')"> <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 && dm_gaq_push_event('socialLink', 'click', 'Linkedin')"> <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 && dm_gaq_push_event('socialLink', 'click', 'Email')"> <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">À 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è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é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é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 Érables, Jumelé<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 É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è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è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">À 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é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é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â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é dans la charmante municipalité de Scott, au cœur de la région de Chaudière-Appalaches, Place Évo est un projet immobilier moderne conç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é. Vous profiterez d’espaces de vie généreux, insonorisés, d’un balcon privé et d’un système de climatisation, garantissant une qualité 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éalement situés à proximité des services et commodités essentielles, nos logements vous permettent de simplifier votre quotidien et de consacrer plus de temps à 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çus pour répondre à vos attentes. Offrant des</span> | |
| 1499 | +</span><strong style="display: initial; font-weight: bold;">4 ½ et 5 ½</strong> | |
| 1500 | + <span style="display: initial;">modernes, ils allient confort, luminosité et fonctionnalité, s’adaptant parfaitement à 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 Évo, situé sur la rue Amanda Gustave, vous offre un cadre de vie paisible tout en restant proche des services essentiels. À quelques pas d’un CPE, d’une école et de plusieurs commerces, vous bénéficiez d’un environnement pratique et sé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 Évo, vous profitez du meilleur des deux mondes : la tranquillité et la beauté de la nature, tout en restant à proximité de la ville. Vivez l’équilibre parfait entre confort, accessibilité et qualité 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 a été pensé pour vous offrir une qualité de vie incomparable, avec des petits plus qui font toute la différence. Profitez d’un espace moderne et raffiné, doté d’une thermopompe pour un confort optimal en toute saison, d’une insonorisation supérieure garantissant une tranquillité inégalée, et d’un grand balcon privé pour savourer pleinement chaque moment de détente. </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èce a été conçue pour être spacieuse, lumineuse et fonctionnelle, afin de créer un environnement où vous vous sentirez bien chez vous, jour aprè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ê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É</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ê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É 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è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É</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É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 à Place Évo, c’est choisir un espace de vie conçu pour votre confort et votre tranquillité d’esprit. Bien plus qu’un appartement, c’est un cadre moderne qui allie praticité, sécurité et bien-être au quotidien. </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’espaces intelligemment aménagés et de commodités recherchées qui simplifient votre routine. Que ce soit pour le télétravail avec internet illimité, la sécurité de votre famille dans un environnement entièrement sécurisé, ou encore le stationnement adapté aux véhicules électriques, tout a été pensé pour répondre à vos besoins. </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ône en noir et blanc d'un éclair dans un carré.</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ÉHICULES É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ô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É</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ÉCURISÉ</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é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âce à 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 Évo sont dans un immeuble moderne et haut de gamme. Les logements ont été conçus avec un souci du détail pour que tous les éléments soient de qualité 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">Écrivez votre lé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">Écrivez votre lé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">Écrivez votre lé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">Écrivez votre lé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">Écrivez votre lé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">Écrivez votre lé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">Écrivez votre lé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ésitez pas à nous contacter pour découvrir tout ce que vous souhaitez savoir sur les logements, les quartiers et tout ce qui s'y trouve. Nous sommes là pour répondre à 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éciez les balades en nature ou les moments entre amis, Place É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é au cœur de la région de Chaudière-Appalaches, dans la municipalité de Scott, Place Évo vous propose un environnement où confort et qualité de vie se rencontrent. Offrez-vous le privilège de vivre dans un immeuble locatif moderne, au sein d’une communauté dynamique et accueillante. </span> | |
| 1739 | +</span></p><p><span style="display: initial;"><br/></span></p><p><span class="" style="display: initial;"><span style="display: initial;">À proximité de toutes les commodités essentielles : restaurants, épiceries, salons de coiffure et bien plus ! Place Évo bénéficie d’un emplacement stratégique qui facilite votre quotidien. </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’est pas tout ! Ici, la tranquillité et la nature sont à portée de main. Profitez d’un cadre paisible pour vous détendre, respirer l’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étente au soleil, ces grands espaces vous offrent un véritable havre de paix. </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 à </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éduit ?</span> | |
| 1758 | +</span></h2> | |
| 1759 | + <h2 class="text-align-center"><span style="color: var(--color_3); display: unset;">Planifiez votre visite dè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écialiste en gestion d’immeubles locatifs, notre équipe saura vous accompagner tout au long de vos dé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 | + Accueil | |
| 1794 | + " 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é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é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>© 2026 </div> | |
| 1826 | + <div><p class="rteBlock">Gestion Immobilière de la Rive Sud 2025 - Tous droits réservé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> | |
| 1843 | + | |
| 1844 | + </div> | |
| 1845 | +</div> | |
| 1846 | +<!-- Add full CSS and Javascript before the close tag of the body if needed --> | |
| 1847 | + | |
| 1848 | + | |
| 1849 | + | |
| 1850 | + | |
| 1851 | + | |
| 1852 | + | |
| 1853 | + | |
| 1854 | + | |
| 1855 | + | |
| 1856 | + | |
| 1857 | + | |
| 1858 | + | |
| 1859 | + | |
| 1860 | + | |
| 1861 | + | |
| 1862 | + | |
| 1863 | + | |
| 1864 | + | |
| 1865 | + | |
| 1866 | + | |
| 1867 | + | |
| 1868 | + | |
| 1869 | + | |
| 1870 | + | |
| 1871 | + | |
| 1872 | + | |
| 1873 | + | |
| 1874 | + | |
| 1875 | + | |
| 1876 | + | |
| 1877 | + | |
| 1878 | + | |
| 1879 | + | |
| 1880 | + | |
| 1881 | + | |
| 1882 | + | |
| 1883 | + | |
| 1884 | + | |
| 1885 | +<!-- ========= JS Section ========= --> | |
| 1886 | +<script> | |
| 1887 | + var isWLR = true; | |
| 1888 | + | |
| 1889 | + window.customWidgetsFunctions = {}; | |
| 1890 | + window.customWidgetsStrings = {}; | |
| 1891 | + window.collections = {}; | |
| 1892 | + window.currentLanguage = "FRENCH" | |
| 1893 | + window.isSitePreview = false; | |
| 1894 | +</script> | |
| 1895 | + | |
| 1896 | + | |
| 1897 | + | |
| 1898 | +<script> | |
| 1899 | + window.customWidgetsFunctions["1f5975986930429f819d4cd2154b5c4a~25"] = function (element, data, api) { | |
| 1900 | + null | |
| 1901 | + }; | |
| 1902 | +</script> | |
| 1903 | + | |
| 1904 | + | |
| 1905 | +<script type="text/javascript"> | |
| 1906 | + | |
| 1907 | + var d_version = "production_6688"; | |
| 1908 | + var build = "2026-08-06T08_49_03"; | |
| 1909 | + window['v' + 'ersion'] = d_version; | |
| 1910 | + | |
| 1911 | + 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) { | |
| 1924 | + | |
| 1925 | + } | |
| 1926 | + } | |
| 1927 | + | |
| 1928 | + buildEditorParent(); | |
| 1929 | +</script> | |
| 1930 | + | |
| 1931 | + | |
| 1932 | +<!-- Load jQuery --> | |
| 1933 | + | |
| 1934 | +<script type="text/javascript" id='d-js-jquery' | |
| 1935 | + src="https://static.cdn-website.com/libs/jquery/jquery-3.7.0.min.js"></script> | |
| 1936 | + | |
| 1937 | +<!-- End Load jQuery --> | |
| 1938 | + | |
| 1939 | + | |
| 1940 | +<!-- Injecting site-wide before scripts --> | |
| 1941 | + | |
| 1942 | +<!-- End Injecting site-wide to the head --> | |
| 1943 | + | |
| 1944 | + | |
| 1945 | + | |
| 1946 | +<script> | |
| 1947 | + var _jquery = window.$; | |
| 1948 | + | |
| 1949 | + var jqueryAliases = ['$', 'jquery', 'jQuery']; | |
| 1950 | + | |
| 1951 | + 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> | |
| 1963 | + | |
| 1964 | + | |
| 1965 | + | |
| 1966 | + | |
| 1967 | +<script> | |
| 1968 | + window.cookiesNotificationMarkupPreview = ' <div> <p class=\"rteBlock\">Nous utilisons des cookies pour optimiser votre expérience sur notre site web. Pour en savoir plus, veuillez accéder à la page <a value=\"donnees-personnelles\" label=\"\" type=\"page\" href=\"\/donnees-personnelles\" data-runtime-url=\"\/donnees-personnelles\">Confidentialité<\/a>.<\/p> \n<\/div> \n'; | |
| 1969 | +</script> | |
| 1970 | + | |
| 1971 | +<!-- HEAD RT JS Include --> | |
| 1972 | +<script id='d-js-params'> | |
| 1973 | + window.INSITE = window.INSITE || {}; | |
| 1974 | + window.INSITE.device = "desktop"; | |
| 1975 | + | |
| 1976 | + 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'; | |
| 2002 | + | |
| 2003 | + | |
| 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; | |
| 2029 | + | |
| 2030 | + 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> | |
| 2065 | + | |
| 2066 | +<!-- End of HEAD RT JS Include --> | |
| 2067 | + | |
| 2068 | + | |
| 2069 | + | |
| 2070 | + | |
| 2071 | + | |
| 2072 | + | |
| 2073 | + | |
| 2074 | + | |
| 2075 | + | |
| 2076 | + | |
| 2077 | + | |
| 2078 | + <script src="https://static.cdn-website.com/mnlt/production/6688/_dm/s/rt/dist/scripts/d-js-jquery-migrate.min.js" ></script> | |
| 2079 | + | |
| 2080 | + | |
| 2081 | + | |
| 2082 | + | |
| 2083 | + | |
| 2084 | +<script> | |
| 2085 | + | |
| 2086 | + $(window).bind("orientationchange", function (e) { | |
| 2087 | + $.layoutManager.initLayout(); | |
| 2088 | + | |
| 2089 | + }); | |
| 2090 | + $(document).resize(function () { | |
| 2091 | + | |
| 2092 | + }); | |
| 2093 | +</script> | |
| 2094 | + | |
| 2095 | + | |
| 2096 | + | |
| 2097 | + | |
| 2098 | + | |
| 2099 | + | |
| 2100 | + | |
| 2101 | + | |
| 2102 | + | |
| 2103 | + | |
| 2104 | + | |
| 2105 | + | |
| 2106 | + | |
| 2107 | + | |
| 2108 | + | |
| 2109 | + | |
| 2110 | + | |
| 2111 | + | |
| 2112 | +<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; | |
| 2118 | + | |
| 2119 | + dmsnowplow('newTracker', 'cf', 'd32hwlnfiv2gyn.cloudfront.net', { // Initialise a tracker | |
| 2120 | + appId: '6d6b044d' | |
| 2121 | + }); | |
| 2122 | + | |
| 2123 | + // 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 here | |
| 2128 | + // the tracking is in popup.js | |
| 2129 | + 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> | |
| 2138 | + | |
| 2139 | + | |
| 2140 | + | |
| 2141 | +<div style="display:none;" id="P6iryBW0Wu"></div> | |
| 2142 | + | |
| 2143 | +<!-- photoswipe markup --> | |
| 2144 | + | |
| 2145 | + | |
| 2146 | + | |
| 2147 | + | |
| 2148 | + | |
| 2149 | + | |
| 2150 | + | |
| 2151 | + | |
| 2152 | + | |
| 2153 | +<!-- Root element of PhotoSwipe. Must have class pswp. --> | |
| 2154 | +<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true"> | |
| 2155 | + | |
| 2156 | + <!-- Background of PhotoSwipe. | |
| 2157 | + It's a separate element as animating opacity is faster than rgba(). --> | |
| 2158 | + <div class="pswp__bg"></div> | |
| 2159 | + | |
| 2160 | + <!-- Slides wrapper with overflow:hidden. --> | |
| 2161 | + <div class="pswp__scroll-wrap"> | |
| 2162 | + | |
| 2163 | + <!-- 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> | |
| 2171 | + | |
| 2172 | + <!-- Default (PhotoSwipeUI_Default) interface on top of sliding area. Can be changed. --> | |
| 2173 | + <div class="pswp__ui pswp__ui--hidden"> | |
| 2174 | + | |
| 2175 | + <div class="pswp__top-bar"> | |
| 2176 | + | |
| 2177 | + <!-- Controls are self-explanatory. Order can be changed. --> | |
| 2178 | + | |
| 2179 | + <div class="pswp__counter"></div> | |
| 2180 | + | |
| 2181 | + <button class="pswp__button pswp__button--close" title="Fermer (Echap)"></button> | |
| 2182 | + | |
| 2183 | + <button class="pswp__button pswp__button--share" title="Partager"></button> | |
| 2184 | + | |
| 2185 | + <button class="pswp__button pswp__button--fs" title="Passer en mode plein écran"></button> | |
| 2186 | + | |
| 2187 | + <button class="pswp__button pswp__button--zoom" title="Zoom avant / arrière"></button> | |
| 2188 | + | |
| 2189 | + <!-- 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> | |
| 2199 | + | |
| 2200 | + <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"> | |
| 2201 | + <div class="pswp__share-tooltip"></div> | |
| 2202 | + </div> | |
| 2203 | + | |
| 2204 | + <button class="pswp__button pswp__button--arrow--left" title="Précédent (flèche gauche)"> | |
| 2205 | + </button> | |
| 2206 | + | |
| 2207 | + <button class="pswp__button pswp__button--arrow--right" title="Suivant (flèche droite)"> | |
| 2208 | + </button> | |
| 2209 | + | |
| 2210 | + <div class="pswp__caption"> | |
| 2211 | + <div class="pswp__caption__center"></div> | |
| 2212 | + </div> | |
| 2213 | + | |
| 2214 | + </div> | |
| 2215 | + | |
| 2216 | + </div> | |
| 2217 | + | |
| 2218 | +</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 sites | |
| 2230 | + 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> | |
added
tests/fixtures/girs/621c380b5d5e39a26786.txt
+0 −0
added
tests/fixtures/girs/66f44c3992697dfaff0c.html
+2173 −0
@@ -0,0 +1,2173 @@ | ||
| 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 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | +<script type="text/javascript"> | |
| 46 | + window._currentDevice = 'desktop'; | |
| 47 | + window.Parameters = window.Parameters || { | |
| 48 | + HomeUrl: 'https://www.girs.ca/', | |
| 49 | + | |
| 50 | + 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/new-richmond/avenue-erables-condo', | |
| 64 | + InitialPageUuid: '73b689964a1e4622a54f72fb23a27689', | |
| 65 | + InitialPageId: '43685314', | |
| 66 | + InitialEncodedPageAlias: 'bG9jYXRpb24vbmV3LXJpY2htb25kL2F2ZW51ZS1lcmFibGVzLWNvbmRv', | |
| 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érience sur notre site web. Pour en savoir plus, veuillez accéder à la page <a value=\"donnees-personnelles\" label=\"\" type=\"page\" href=\"\/donnees-personnelles\" data-runtime-url=\"\/donnees-personnelles\">Confidentialité<\/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: false | |
| 134 | + }; | |
| 135 | + | |
| 136 | + window.Parameters.LayoutID = {}; | |
| 137 | + window.Parameters.LayoutID[window._currentDevice] = 6; | |
| 138 | + window.Parameters.LayoutVariationID = {}; | |
| 139 | + window.Parameters.LayoutVariationID[window._currentDevice] = 5; | |
| 140 | +</script> | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | +<!-- Injecting site-wide to the head --> | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
| 169 | + | |
| 170 | + | |
| 171 | + | |
| 172 | + | |
| 173 | + | |
| 174 | + | |
| 175 | + | |
| 176 | + | |
| 177 | + | |
| 178 | +<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('&'); | |
| 185 | + | |
| 186 | + const expires = 'expires=' + new Date().getTime() + 24 * 60 * 60 * 1000; | |
| 187 | + const domain = 'domain=' + window.location.hostname; | |
| 188 | + const path = "path=/"; | |
| 189 | + | |
| 190 | + 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.cookie | |
| 220 | + .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 submission | |
| 226 | + // 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> | |
| 240 | + | |
| 241 | + | |
| 242 | + | |
| 243 | + | |
| 244 | + | |
| 245 | + | |
| 246 | +<!-- End Injecting site-wide to the head --> | |
| 247 | + | |
| 248 | +<!-- Inject secured cdn script --> | |
| 249 | + | |
| 250 | + | |
| 251 | +<!-- ========= 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 >>> 0 | |
| 260 | + } | |
| 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.serviceWorker | |
| 277 | + .register(serviceWorkerPath, { scope: './' }) | |
| 278 | + .then( | |
| 279 | + function (registration) { | |
| 280 | + // Registration was successful | |
| 281 | + console.log( | |
| 282 | + 'ServiceWorker registration successful with scope: ', | |
| 283 | + registration.scope | |
| 284 | + ); | |
| 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 | + }); | |
| 295 | + | |
| 296 | + // helper function to refresh the page | |
| 297 | + var refreshPage = (function () { | |
| 298 | + var refreshing; | |
| 299 | + return function () { | |
| 300 | + if (refreshing) return; | |
| 301 | + // prevent multiple refreshes | |
| 302 | + 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 loop | |
| 308 | + } | |
| 309 | + } | |
| 310 | + refreshing = true; | |
| 311 | + localStorage.setItem(refreshkey, Date.now()); | |
| 312 | + console.log('refereshing page'); | |
| 313 | + window.location.reload(); | |
| 314 | + }; | |
| 315 | + })(); | |
| 316 | + | |
| 317 | + 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 --> | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
| 340 | +<link rel="canonical" href="https://www.girs.ca/location/new-richmond/avenue-erables-condo"> | |
| 341 | + | |
| 342 | +<meta id="view" name="viewport" content="initial-scale=1, minimum-scale=1, maximum-scale=5, viewport-fit=cover"> | |
| 343 | + | |
| 344 | +<meta name="apple-mobile-web-app-capable" content="yes"> | |
| 345 | + | |
| 346 | +<!--Add favorites icons--> | |
| 347 | + | |
| 348 | +<link rel="icon" type="image/x-icon" href="https://irp.cdn-website.com/6d6b044d/site_favicon_16_1673962208002.ico"/> | |
| 349 | + | |
| 350 | +<!-- 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"/> | |
| 354 | + | |
| 355 | + | |
| 356 | + | |
| 357 | +<!-- render the required CSS and JS in the head section --> | |
| 358 | +<script id='d-js-dmapi'> | |
| 359 | + window.SystemID = 'US_DIRECT_PRODUCTION'; | |
| 360 | + | |
| 361 | + 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; | |
| 372 | + | |
| 373 | + 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 | + } | |
| 405 | + | |
| 406 | + if (!window.requestIdleCallback) { | |
| 407 | + window.requestIdleCallback = function (fn) { | |
| 408 | + setTimeout(fn, 0); | |
| 409 | + } | |
| 410 | + } | |
| 411 | +</script> | |
| 412 | + | |
| 413 | +<!-- loadCSS function header.jsp--> | |
| 414 | + | |
| 415 | + | |
| 416 | + | |
| 417 | + | |
| 418 | + | |
| 419 | + | |
| 420 | +<script id="d-js-load-css"> | |
| 421 | +/** | |
| 422 | + * There are a few <link> tags with CSS resource in them that are preloaded in the page | |
| 423 | + * in each of those there is a "onload" handler which invokes the loadCSS callback | |
| 424 | + * 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 threre | |
| 427 | + * is no page css (which may happen on inner pages) then we do not wait for it | |
| 428 | + */ | |
| 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']"); | |
| 440 | + | |
| 441 | + 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; | |
| 446 | + | |
| 447 | + storedGlobalCssLink.disabled = true; | |
| 448 | + loadCssLink(storedGlobalCssLink); | |
| 449 | + | |
| 450 | + if (storedPageCssLink) { | |
| 451 | + storedPageCssLink.disabled = true; | |
| 452 | + loadCssLink(storedPageCssLink); | |
| 453 | + } | |
| 454 | + | |
| 455 | + if(storedWidgetCssLink) { | |
| 456 | + storedWidgetCssLink.disabled = true; | |
| 457 | + loadCssLink(storedWidgetCssLink); | |
| 458 | + } | |
| 459 | + | |
| 460 | + storedRuntimeCssLink.disabled = true; | |
| 461 | + loadCssLink(storedRuntimeCssLink); | |
| 462 | + | |
| 463 | + 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're | |
| 474 | + // 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 | + | |
| 484 | + | |
| 485 | + 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; | |
| 490 | + | |
| 491 | + 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 e | |
| 519 | + } | |
| 520 | + } | |
| 521 | + window.loadCSS = window.loadCSS || loadCSS; | |
| 522 | +})(); | |
| 523 | +</script> | |
| 524 | + | |
| 525 | + | |
| 526 | + | |
| 527 | +<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 = b | |
| 532 | + }).bind(this)) | |
| 533 | + } | |
| 534 | + | |
| 535 | + 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 | + d | |
| 542 | + ? d.promise.then(a) | |
| 543 | + : c && ["complete", "interactive"].includes(document.readyState) | |
| 544 | + ? setTimeout(a, 1) | |
| 545 | + : c | |
| 546 | + ? 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 */ | |
| 552 | + | |
| 553 | +.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 | + | |
| 555 | + | |
| 556 | +</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> | |
| 568 | + | |
| 569 | + | |
| 570 | + | |
| 571 | + | |
| 572 | + | |
| 573 | + | |
| 574 | + | |
| 575 | + | |
| 576 | + | |
| 577 | + | |
| 578 | + | |
| 579 | + | |
| 580 | + | |
| 581 | + | |
| 582 | + | |
| 583 | + | |
| 584 | + | |
| 585 | + | |
| 586 | + | |
| 587 | + | |
| 588 | + | |
| 589 | + | |
| 590 | + | |
| 591 | + | |
| 592 | + | |
| 593 | +<!-- Google Fonts Include --> | |
| 594 | + | |
| 595 | + | |
| 596 | + | |
| 597 | + | |
| 598 | + | |
| 599 | + | |
| 600 | + | |
| 601 | + | |
| 602 | + | |
| 603 | + | |
| 604 | + | |
| 605 | + | |
| 606 | + | |
| 607 | +<!-- loadCSS function fonts.jsp--> | |
| 608 | + | |
| 609 | + | |
| 610 | + | |
| 611 | +<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&subset=latin-ext&display=swap" /> | |
| 612 | + | |
| 613 | + | |
| 614 | + | |
| 615 | + | |
| 616 | + | |
| 617 | +<!-- 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" /> | |
| 619 | + | |
| 620 | +<!-- End of RT CSS Include --> | |
| 621 | + | |
| 622 | +<link type="text/css" rel="stylesheet" href="https://irp.cdn-website.com/WIDGET_CSS/b3f900cc909110f5df2a6191c01d29f5.css" id="widgetCSS" /> | |
| 623 | + | |
| 624 | +<!-- Support `img` size attributes --> | |
| 625 | +<style>img[width][height] { | |
| 626 | + height: auto; | |
| 627 | +}</style> | |
| 628 | + | |
| 629 | +<!-- Support showing sticky element on page only --> | |
| 630 | +<style> | |
| 631 | + body[data-page-alias="location/new-richmond/avenue-erables-condo"] #dm [data-show-on-page-only="location/new-richmond/avenue-erables-condo"] { | |
| 632 | + display: block !important; | |
| 633 | + } | |
| 634 | +</style> | |
| 635 | + | |
| 636 | +<!-- This is populated in Ajax navigation --> | |
| 637 | +<style id="pageAdditionalWidgetsCss" type="text/css"> | |
| 638 | +</style> | |
| 639 | + | |
| 640 | + | |
| 641 | + | |
| 642 | + | |
| 643 | +<!-- 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" /> | |
| 645 | + | |
| 646 | + | |
| 647 | + | |
| 648 | +<style id="customWidgetStyle" type="text/css"> | |
| 649 | + | |
| 650 | +</style> | |
| 651 | +<style id="innerPagesStyle" type="text/css"> | |
| 652 | + | |
| 653 | +</style> | |
| 654 | + | |
| 655 | + | |
| 656 | +<style | |
| 657 | + id="additionalGlobalCss" type="text/css" | |
| 658 | +> | |
| 659 | +</style> | |
| 660 | + | |
| 661 | +<style id="pagestyle" type="text/css"> | |
| 662 | + *#dm *.dmBody a.span.textonly | |
| 663 | +{ | |
| 664 | + color:rgb(255,255,255) !important; | |
| 665 | +} | |
| 666 | +*#dm *.dmBody div.dmform-error | |
| 667 | +{ | |
| 668 | + font-style:normal !important; | |
| 669 | +} | |
| 670 | +*#dm *.dmBody div.dmforminput textarea | |
| 671 | +{ | |
| 672 | + font-style:italic !important; | |
| 673 | +} | |
| 674 | +*#dm *.dmBody div.dmforminput *.fileUploadLink | |
| 675 | +{ | |
| 676 | + font-style:italic !important; | |
| 677 | +} | |
| 678 | +*#dm *.dmBody div.checkboxwrapper span | |
| 679 | +{ | |
| 680 | + font-style:italic !important; | |
| 681 | +} | |
| 682 | +*#dm *.dmBody div.radiowrapper span | |
| 683 | +{ | |
| 684 | + font-style:italic !important; | |
| 685 | +} | |
| 686 | +*#dm *.dmBody nav.u_1144820115 | |
| 687 | +{ | |
| 688 | + color:black !important; | |
| 689 | +} | |
| 690 | +*#dm *.dmBody *.u_1004639188:before | |
| 691 | +{ | |
| 692 | + opacity:0.5 !important; | |
| 693 | + background-color:rgb(255,255,255) !important; | |
| 694 | +} | |
| 695 | +*#dm *.dmBody *.u_1004639188.before | |
| 696 | +{ | |
| 697 | + opacity:0.5 !important; | |
| 698 | + background-color:rgb(255,255,255) !important; | |
| 699 | +} | |
| 700 | +*#dm *.dmBody *.u_1004639188>.bgExtraLayerOverlay | |
| 701 | +{ | |
| 702 | + opacity:0.5 !important; | |
| 703 | + background-color:rgb(255,255,255) !important; | |
| 704 | +} | |
| 705 | +*#dm *.dmBody div.u_1004639188 | |
| 706 | +{ | |
| 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:before | |
| 713 | +{ | |
| 714 | + background-color:var(--color_1) !important; | |
| 715 | +} | |
| 716 | +*#dm *.dmBody div.u_1004639188.before | |
| 717 | +{ | |
| 718 | + background-color:var(--color_1) !important; | |
| 719 | +} | |
| 720 | +*#dm *.dmBody div.u_1004639188>.bgExtraLayerOverlay | |
| 721 | +{ | |
| 722 | + background-color:var(--color_1) !important; | |
| 723 | +} | |
| 724 | +*#dm *.dmBody a.u_1756842165:hover | |
| 725 | +{ | |
| 726 | + background-color:var(--color_3) !important; | |
| 727 | + background-image:none !important; | |
| 728 | +} | |
| 729 | +*#dm *.dmBody a.u_1756842165.hover | |
| 730 | +{ | |
| 731 | + background-color:var(--color_3) !important; | |
| 732 | + background-image:none !important; | |
| 733 | +} | |
| 734 | +*#dm *.dmBody a.u_1756842165:hover span.text | |
| 735 | +{ | |
| 736 | + color:var(--color_1) !important; | |
| 737 | +} | |
| 738 | +*#dm *.dmBody a.u_1756842165.hover span.text | |
| 739 | +{ | |
| 740 | + color:var(--color_1) !important; | |
| 741 | +} | |
| 742 | +*#dm *.dmBody a.u_1756842165 span.text | |
| 743 | +{ | |
| 744 | + font-family:'Roboto' !important; | |
| 745 | + font-weight:400 !important; | |
| 746 | + color:var(--color_3) !important; | |
| 747 | +} | |
| 748 | +*#dm *.dmBody div.u_1937526287 | |
| 749 | +{ | |
| 750 | + border-style:solid !important; | |
| 751 | + border-width:2px !important; | |
| 752 | + border-color:var(--color_3) !important; | |
| 753 | +} | |
| 754 | +*#dm *.dmBody div.u_1452815793 | |
| 755 | +{ | |
| 756 | + background-color:rgba(0,0,0,0.05) !important; | |
| 757 | +} | |
| 758 | +*#dm *.dmBody div.u_1840143137 | |
| 759 | +{ | |
| 760 | + background-color:rgba(0,0,0,0.05) !important; | |
| 761 | +} | |
| 762 | +*#dm *.dmBody div.u_1813520727 | |
| 763 | +{ | |
| 764 | + background-color:rgba(0,0,0,0.05) !important; | |
| 765 | +} | |
| 766 | +*#dm *.dmBody div.u_1281514457 .color-overlay | |
| 767 | +{ | |
| 768 | + background-color:rgba(0,0,0,0) !important; | |
| 769 | +} | |
| 770 | +*#dm *.dmBody *.u_1281514457 .flex-direction-nav a:before | |
| 771 | +{ | |
| 772 | + font-size:45px !important; | |
| 773 | +} | |
| 774 | +*#dm *.dmBody *.u_1281514457 .flex-direction-nav a | |
| 775 | +{ | |
| 776 | + width:45px !important; | |
| 777 | + height:45px !important; | |
| 778 | + overflow:visible !important; | |
| 779 | + color:var(--color_3) !important; | |
| 780 | +} | |
| 781 | +*#dm *.dmBody *.u_1713239492:before | |
| 782 | +{ | |
| 783 | + opacity:0.5 !important; | |
| 784 | + background-color:rgb(255,255,255) !important; | |
| 785 | +} | |
| 786 | +*#dm *.dmBody *.u_1713239492.before | |
| 787 | +{ | |
| 788 | + opacity:0.5 !important; | |
| 789 | + background-color:rgb(255,255,255) !important; | |
| 790 | +} | |
| 791 | +*#dm *.dmBody *.u_1713239492>.bgExtraLayerOverlay | |
| 792 | +{ | |
| 793 | + opacity:0.5 !important; | |
| 794 | + background-color:rgb(255,255,255) !important; | |
| 795 | +} | |
| 796 | +*#dm *.dmBody div.u_1486697154 | |
| 797 | +{ | |
| 798 | + border-style:solid !important; | |
| 799 | + border-width:2px !important; | |
| 800 | + border-color:var(--color_3) !important; | |
| 801 | +} | |
| 802 | +*#dm *.dmBody a.u_1331251441 span.text | |
| 803 | +{ | |
| 804 | + text-decoration:none !important; | |
| 805 | + font-weight:400 !important; | |
| 806 | +} | |
| 807 | +*#dm *.dmBody a.u_1331251441:hover span.text | |
| 808 | +{ | |
| 809 | + text-decoration:underline !important; | |
| 810 | + color:var(--color_1) !important; | |
| 811 | +} | |
| 812 | +*#dm *.dmBody a.u_1331251441.hover span.text | |
| 813 | +{ | |
| 814 | + text-decoration:underline !important; | |
| 815 | + color:var(--color_1) !important; | |
| 816 | +} | |
| 817 | +*#dm *.dmBody a.u_1331251441:hover | |
| 818 | +{ | |
| 819 | + background-color:var(--color_3) !important; | |
| 820 | + background-image:none !important; | |
| 821 | +} | |
| 822 | +*#dm *.dmBody a.u_1331251441.hover | |
| 823 | +{ | |
| 824 | + background-color:var(--color_3) !important; | |
| 825 | + background-image:none !important; | |
| 826 | +} | |
| 827 | +*#dm *.dmBody div.u_1884387629 | |
| 828 | +{ | |
| 829 | + background-color:rgba(0,0,0,0.05) !important; | |
| 830 | +} | |
| 831 | +*#dm *.dmBody a.u_1331251441 | |
| 832 | +{ | |
| 833 | + border-style:solid !important; | |
| 834 | + border-width:2px !important; | |
| 835 | + border-color:var(--color_3) !important; | |
| 836 | + background-color:rgba(0,0,0,0) !important; | |
| 837 | + border-radius:20px 20px 20px 20px !important; | |
| 838 | +} | |
| 839 | +*#dm *.dmBody div.u_1748061203 .svg | |
| 840 | +{ | |
| 841 | + color:var(--color_1) !important; | |
| 842 | + fill:var(--color_1) !important; | |
| 843 | +} | |
| 844 | +*#dm *.dmBody a.u_1756842165 | |
| 845 | +{ | |
| 846 | + border-color:var(--color_3) !important; | |
| 847 | + border-style:solid !important; | |
| 848 | + border-width:2px !important; | |
| 849 | + border-radius:20px 20px 20px 20px !important; | |
| 850 | +} | |
| 851 | +*#dm *.dmBody *.u_1079271476 | |
| 852 | +{ | |
| 853 | + background-position:50% 50% !important; | |
| 854 | +} | |
| 855 | +*#dm *.dmBody *.u_1188563749 | |
| 856 | +{ | |
| 857 | + width:100% !important; | |
| 858 | +} | |
| 859 | +*#dm *.dmBody div.u_1713239492:before | |
| 860 | +{ | |
| 861 | + background-color:var(--color_1) !important; | |
| 862 | + opacity:0.4 !important; | |
| 863 | +} | |
| 864 | +*#dm *.dmBody div.u_1713239492.before | |
| 865 | +{ | |
| 866 | + background-color:var(--color_1) !important; | |
| 867 | + opacity:0.4 !important; | |
| 868 | +} | |
| 869 | +*#dm *.dmBody div.u_1713239492>.bgExtraLayerOverlay | |
| 870 | +{ | |
| 871 | + background-color:var(--color_1) !important; | |
| 872 | + opacity:0.4 !important; | |
| 873 | +} | |
| 874 | +*#dm *.dmBody div.u_1746905231 | |
| 875 | +{ | |
| 876 | + background-image:linear-gradient(90deg,rgba(66,123,202,1) 0%,rgba(73,174,223,1) 100%) !important; | |
| 877 | + background-origin:border-box !important; | |
| 878 | +} | |
| 879 | +*#dm *.dmBody div.u_1373323900 | |
| 880 | +{ | |
| 881 | + background-image:linear-gradient(90deg, rgba(66, 123, 202, 1) 0%, rgba(73, 174, 223, 1) 100%) !important; | |
| 882 | + background-origin:border-box !important; | |
| 883 | +} | |
| 884 | + | |
| 885 | +</style> | |
| 886 | + | |
| 887 | +<style id="pagestyleDevice" type="text/css"> | |
| 888 | + *#dm *.d-page-1716942098 DIV.dmInner | |
| 889 | +{ | |
| 890 | + background-repeat:no-repeat !important; | |
| 891 | + background-size:cover !important; | |
| 892 | + background-attachment:fixed !important; | |
| 893 | + background-position:50% 50% !important; | |
| 894 | +} | |
| 895 | +*#dm *.d-page-1716942098 DIV#dmSlideRightNavRight | |
| 896 | +{ | |
| 897 | + background-repeat:no-repeat !important; | |
| 898 | + background-image:none !important; | |
| 899 | + background-size:cover !important; | |
| 900 | + background-attachment:fixed !important; | |
| 901 | + background-position:50% 50% !important; | |
| 902 | +} | |
| 903 | +*#dm *.dmBody div.u_1867569646 | |
| 904 | +{ | |
| 905 | + height:40px !important; | |
| 906 | +} | |
| 907 | +*#dm *.dmBody a.u_1756842165 span.text | |
| 908 | +{ | |
| 909 | + font-size:20px !important; | |
| 910 | +} | |
| 911 | +*#dm *.dmBody div.u_1937526287 | |
| 912 | +{ | |
| 913 | + margin-left:20px !important; | |
| 914 | + padding-top:0px !important; | |
| 915 | + padding-left:20px !important; | |
| 916 | + padding-bottom:0px !important; | |
| 917 | + margin-top:0px !important; | |
| 918 | + margin-bottom:0px !important; | |
| 919 | + margin-right:20px !important; | |
| 920 | + padding-right:20px !important; | |
| 921 | +} | |
| 922 | +*#dm *.dmBody div.u_1121935101 | |
| 923 | +{ | |
| 924 | + height:600px !important; | |
| 925 | +} | |
| 926 | +@media (min-width:768px) and (max-width:1024px) {} | |
| 927 | +@media (min-width:1025px) {} | |
| 928 | +*#dm *.dmBody div.u_1221610193 | |
| 929 | +{ | |
| 930 | + height:20px !important; | |
| 931 | +} | |
| 932 | +*#dm *.dmBody div.u_1127078365 | |
| 933 | +{ | |
| 934 | + height:20px !important; | |
| 935 | +} | |
| 936 | +*#dm *.dmBody div.u_1288707829 | |
| 937 | +{ | |
| 938 | + height:20px !important; | |
| 939 | +} | |
| 940 | +*#dm *.dmBody div.u_1337411818 | |
| 941 | +{ | |
| 942 | + height:20px !important; | |
| 943 | +} | |
| 944 | +*#dm *.dmBody a.u_1756842165 | |
| 945 | +{ | |
| 946 | + float:none !important; | |
| 947 | + top:0px !important; | |
| 948 | + left:0px !important; | |
| 949 | + width:200px !important; | |
| 950 | + position:relative !important; | |
| 951 | + height:auto !important; | |
| 952 | + padding-top:10px !important; | |
| 953 | + padding-left:7px !important; | |
| 954 | + padding-bottom:10px !important; | |
| 955 | + min-height:40px !important; | |
| 956 | + max-width:100% !important; | |
| 957 | + padding-right:7px !important; | |
| 958 | + min-width:0 !important; | |
| 959 | + text-align:center !important; | |
| 960 | + margin-right:866px !important; | |
| 961 | + margin-left:0px !important; | |
| 962 | + margin-top:20px !important; | |
| 963 | + margin-bottom:10px !important; | |
| 964 | +} | |
| 965 | +*#dm *.dmBody a.u_1331251441 | |
| 966 | +{ | |
| 967 | + float:none !important; | |
| 968 | + top:0px !important; | |
| 969 | + left:0 !important; | |
| 970 | + width:200px !important; | |
| 971 | + position:relative !important; | |
| 972 | + height:auto !important; | |
| 973 | + padding-top:10px !important; | |
| 974 | + padding-left:7px !important; | |
| 975 | + padding-bottom:10px !important; | |
| 976 | + min-height:40px !important; | |
| 977 | + margin-right:auto !important; | |
| 978 | + margin-left:auto !important; | |
| 979 | + max-width:100% !important; | |
| 980 | + margin-top:10px !important; | |
| 981 | + margin-bottom:10px !important; | |
| 982 | + padding-right:7px !important; | |
| 983 | + min-width:0 !important; | |
| 984 | + text-align:center !important; | |
| 985 | +} | |
| 986 | +*#dm *.dmBody a.u_1331251441 span.text | |
| 987 | +{ | |
| 988 | + font-size:18px !important; | |
| 989 | +} | |
| 990 | +*#dm *.dmBody div.u_1748061203 | |
| 991 | +{ | |
| 992 | + width:90px !important; | |
| 993 | + height:90px !important; | |
| 994 | +} | |
| 995 | +*#dm *.dmBody div.u_1281514457 | |
| 996 | +{ | |
| 997 | + height:700px !important; | |
| 998 | + width:1200px !important; | |
| 999 | +} | |
| 1000 | +*#dm *.dmBody div.u_1004639188 | |
| 1001 | +{ | |
| 1002 | + float:none !important; | |
| 1003 | + top:0 !important; | |
| 1004 | + left:0 !important; | |
| 1005 | + width:auto !important; | |
| 1006 | + position:relative !important; | |
| 1007 | + height:auto !important; | |
| 1008 | + padding-top:90px !important; | |
| 1009 | + padding-left:40px !important; | |
| 1010 | + padding-bottom:90px !important; | |
| 1011 | + min-height:auto !important; | |
| 1012 | + max-width:100% !important; | |
| 1013 | + padding-right:40px !important; | |
| 1014 | + min-width:0 !important; | |
| 1015 | + text-align:start !important; | |
| 1016 | + background-position:50% 50% !important; | |
| 1017 | + background-attachment:initial !important; | |
| 1018 | + margin-left:0px !important; | |
| 1019 | + margin-top:0px !important; | |
| 1020 | + margin-bottom:0px !important; | |
| 1021 | + margin-right:0px !important; | |
| 1022 | +} | |
| 1023 | + | |
| 1024 | +</style> | |
| 1025 | + | |
| 1026 | +<!-- Flex Sections CSS --> | |
| 1027 | + | |
| 1028 | + | |
| 1029 | + | |
| 1030 | + | |
| 1031 | + | |
| 1032 | + | |
| 1033 | + | |
| 1034 | +<style id="globalFontSizeStyle" type="text/css"> | |
| 1035 | + .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-28, .size-28, .size-28 > font { font-size: 28px !important; } | |
| 1036 | +</style> | |
| 1037 | +<style id="pageFontSizeStyle" type="text/css"> | |
| 1038 | +</style> | |
| 1039 | + | |
| 1040 | + | |
| 1041 | + | |
| 1042 | + | |
| 1043 | +<style id="hideAnimFix"> | |
| 1044 | + .dmDesktopBody:not(.editGrid) [data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) [data-anim-extended] { | |
| 1045 | + visibility: hidden; | |
| 1046 | + } | |
| 1047 | + | |
| 1048 | + .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-extended] { | |
| 1049 | + visibility: hidden !important; | |
| 1050 | + } | |
| 1051 | + | |
| 1052 | + #dmRoot:not(.editGrid) .flex-element [data-anim-extended] { | |
| 1053 | + visibility: hidden; | |
| 1054 | + } | |
| 1055 | + | |
| 1056 | +</style> | |
| 1057 | + | |
| 1058 | + | |
| 1059 | + | |
| 1060 | + | |
| 1061 | +<style id="fontFallbacks"> | |
| 1062 | + @font-face { | |
| 1063 | + font-family: "Roboto Fallback"; | |
| 1064 | + src: local('Arial'); | |
| 1065 | + ascent-override: 92.6709%; | |
| 1066 | + descent-override: 24.3871%; | |
| 1067 | + size-adjust: 100.1106%; | |
| 1068 | + line-gap-override: 0%; | |
| 1069 | + }@font-face { | |
| 1070 | + font-family: "Montserrat Fallback"; | |
| 1071 | + src: local('Arial'); | |
| 1072 | + ascent-override: 84.9466%; | |
| 1073 | + descent-override: 22.0264%; | |
| 1074 | + size-adjust: 113.954%; | |
| 1075 | + line-gap-override: 0%; | |
| 1076 | + }@font-face { | |
| 1077 | + font-family: "Lato Fallback"; | |
| 1078 | + src: local('Arial'); | |
| 1079 | + ascent-override: 101.3181%; | |
| 1080 | + descent-override: 21.865%; | |
| 1081 | + size-adjust: 97.4159%; | |
| 1082 | + line-gap-override: 0%; | |
| 1083 | + }@font-face { | |
| 1084 | + font-family: "Pacifico Fallback"; | |
| 1085 | + src: local('Arial'); | |
| 1086 | + ascent-override: 140.9687%; | |
| 1087 | + descent-override: 49.0091%; | |
| 1088 | + size-adjust: 92.4319%; | |
| 1089 | + line-gap-override: 0%; | |
| 1090 | + }@font-face { | |
| 1091 | + font-family: "Courier Prime Fallback"; | |
| 1092 | + src: local('Arial'); | |
| 1093 | + ascent-override: 57.5122%; | |
| 1094 | + descent-override: 25.1616%; | |
| 1095 | + size-adjust: 135.8407%; | |
| 1096 | + line-gap-override: 0%; | |
| 1097 | + }@font-face { | |
| 1098 | + font-family: "Comfortaa Fallback"; | |
| 1099 | + src: local('Arial'); | |
| 1100 | + ascent-override: 74.2135%; | |
| 1101 | + descent-override: 19.7117%; | |
| 1102 | + size-adjust: 118.7115%; | |
| 1103 | + line-gap-override: 0%; | |
| 1104 | + } | |
| 1105 | +</style> | |
| 1106 | + | |
| 1107 | + | |
| 1108 | +<!-- End render the required css and JS in the head section --> | |
| 1109 | + | |
| 1110 | + | |
| 1111 | + | |
| 1112 | + | |
| 1113 | + | |
| 1114 | + | |
| 1115 | +<meta property="og:type" content="website"> | |
| 1116 | +<meta property="og:url" content="https://www.girs.ca/location/new-richmond/avenue-erables-condo"> | |
| 1117 | + | |
| 1118 | + <title> | |
| 1119 | + Condo 4 ½ à louer à New Richmond | Avenue des Érables | |
| 1120 | + </title> | |
| 1121 | + <meta name="description" content="Découvrez nos condos 4 ½ à louer à New Richmond sur l’avenue des Érables. Balcon privé, climatisation et cadre de vie paisible."/> | |
| 1122 | + | |
| 1123 | + <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"/> | |
| 1124 | + | |
| 1125 | + <meta name="twitter:card" content="summary"/> | |
| 1126 | + <meta name="twitter:title" content="Condo 4 ½ à louer à New Richmond | Avenue des Érables"/> | |
| 1127 | + <meta name="twitter:description" content="Découvrez nos condos 4 ½ à louer à New Richmond sur l’avenue des Érables. Balcon privé, climatisation et cadre de vie paisible."/> | |
| 1128 | + <meta property="og:description" content="Découvrez nos condos 4 ½ à louer à New Richmond sur l’avenue des Érables. Balcon privé, climatisation et cadre de vie paisible."/> | |
| 1129 | + <meta property="og:title" content="Condo 4 ½ à louer à New Richmond | Avenue des Érables"/> | |
| 1130 | + | |
| 1131 | + | |
| 1132 | + | |
| 1133 | + | |
| 1134 | +<!-- SYS- VVNfRElSRUNUX1BST0RVQ1RJT04= --> | |
| 1135 | +</head> | |
| 1136 | + | |
| 1137 | + | |
| 1138 | + | |
| 1139 | + | |
| 1140 | + | |
| 1141 | + | |
| 1142 | + | |
| 1143 | + | |
| 1144 | + | |
| 1145 | + | |
| 1146 | + | |
| 1147 | + | |
| 1148 | + | |
| 1149 | + | |
| 1150 | + | |
| 1151 | + | |
| 1152 | + | |
| 1153 | + | |
| 1154 | + | |
| 1155 | + | |
| 1156 | + | |
| 1157 | +<body id="dmRoot" data-page-alias="location/new-richmond/avenue-erables-condo" class="dmRoot dmDesktopBody fix-mobile-scrolling addCanvasBorder dmResellerSite dmLargeBody responsiveTablet " | |
| 1158 | + style="padding:0;margin:0;" | |
| 1159 | + | |
| 1160 | + > | |
| 1161 | + | |
| 1162 | + | |
| 1163 | + | |
| 1164 | + | |
| 1165 | + | |
| 1166 | + | |
| 1167 | + | |
| 1168 | + | |
| 1169 | + | |
| 1170 | + | |
| 1171 | + | |
| 1172 | + | |
| 1173 | + | |
| 1174 | + | |
| 1175 | + | |
| 1176 | + | |
| 1177 | +<!-- ========= Site Content ========= --> | |
| 1178 | +<div id="dm" class='dmwr'> | |
| 1179 | + | |
| 1180 | + <div class="dm_wrapper standard-var5 widgetStyle-3 standard"> | |
| 1181 | + <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> | |
| 1182 | +</div> | |
| 1183 | +</div> | |
| 1184 | + <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> | |
| 1185 | +</div> | |
| 1186 | + <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">À louer<span class="icon icon-angle-down"></span> | |
| 1187 | +</span> | |
| 1188 | +</a> | |
| 1189 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1190 | +</span> | |
| 1191 | +</a> | |
| 1192 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/scott/rue-amanda-gustave" class="unifiednav__item unav-item dmUDNavigationItem_010101104557 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Amanda-Gustave" data-auto="page-text-style">Rue Amanda-Gustave<span class="icon icon-angle-right"></span> | |
| 1193 | +</span> | |
| 1194 | +</a> | |
| 1195 | +</li> | |
| 1196 | + <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> | |
| 1197 | +</span> | |
| 1198 | +</a> | |
| 1199 | +</li> | |
| 1200 | + <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> | |
| 1201 | +</span> | |
| 1202 | +</a> | |
| 1203 | +</li> | |
| 1204 | +</ul> | |
| 1205 | +</li> | |
| 1206 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1207 | +</span> | |
| 1208 | +</a> | |
| 1209 | + <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> | |
| 1210 | +</span> | |
| 1211 | +</a> | |
| 1212 | +</li> | |
| 1213 | +</ul> | |
| 1214 | +</li> | |
| 1215 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1216 | +</span> | |
| 1217 | +</a> | |
| 1218 | + <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 Érables, Jumelé<span class="icon icon-angle-right"></span> | |
| 1219 | +</span> | |
| 1220 | +</a> | |
| 1221 | +</li> | |
| 1222 | + <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 dmNavItemSelected dmUDNavigationItem_010101963466 " target="" data-target-page-alias="" aria-current="page" data-auto="selected-page"> <span class="nav-item-text " data-link-text="Avenue des Érables, Condo" data-auto="page-text-style">Avenue des Érables, Condo<span class="icon icon-angle-right"></span> | |
| 1223 | +</span> | |
| 1224 | +</a> | |
| 1225 | +</li> | |
| 1226 | +</ul> | |
| 1227 | +</li> | |
| 1228 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1229 | +</span> | |
| 1230 | +</a> | |
| 1231 | + <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> | |
| 1232 | +</span> | |
| 1233 | +</a> | |
| 1234 | +</li> | |
| 1235 | +</ul> | |
| 1236 | +</li> | |
| 1237 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1238 | +</span> | |
| 1239 | +</a> | |
| 1240 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/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> | |
| 1241 | +</span> | |
| 1242 | +</a> | |
| 1243 | +</li> | |
| 1244 | +</ul> | |
| 1245 | +</li> | |
| 1246 | +</ul> | |
| 1247 | +</li> | |
| 1248 | + <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">À vendre<span class="icon icon-angle-down"></span> | |
| 1249 | +</span> | |
| 1250 | +</a> | |
| 1251 | + <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> | |
| 1252 | +</span> | |
| 1253 | +</a> | |
| 1254 | +</li> | |
| 1255 | +</ul> | |
| 1256 | +</li> | |
| 1257 | + <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> | |
| 1258 | +</span> | |
| 1259 | +</a> | |
| 1260 | + <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ésentation au TAL<span class="icon icon-angle-right"></span> | |
| 1261 | +</span> | |
| 1262 | +</a> | |
| 1263 | +</li> | |
| 1264 | +</ul> | |
| 1265 | +</li> | |
| 1266 | + <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étaires<span class="icon icon-angle-down"></span> | |
| 1267 | +</span> | |
| 1268 | +</a> | |
| 1269 | +</li> | |
| 1270 | + <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> | |
| 1271 | +</span> | |
| 1272 | +</a> | |
| 1273 | +</li> | |
| 1274 | +</ul> | |
| 1275 | +</nav> | |
| 1276 | +</div> | |
| 1277 | +</div> | |
| 1278 | +</div> | |
| 1279 | + <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> | |
| 1280 | +<b> <span style="text-decoration-line: underline;"></span> | |
| 1281 | +<span class="font-size-22 lh-1"> <span style="text-decoration-line: underline;"></span> | |
| 1282 | + <div style="text-align: left;"> <span style=""> <span style="text-decoration-line: underline;"></span> | |
| 1283 | +<span style=""> <span style="text-decoration-line: underline;"></span> | |
| 1284 | +<font style="color: rgb(255, 255, 255);"> <span style="text-decoration-line: underline;"></span> | |
| 1285 | +<span style="" class="font-size-22 lh-1"> <span style="text-decoration-line: underline;"></span> | |
| 1286 | +<b style=""> <span style="text-decoration-line: underline;"> <span style="font-weight: 700; font-size: 20px;">Nous contacter</span></span> | |
| 1287 | +</b> | |
| 1288 | +</span> | |
| 1289 | +</font> | |
| 1290 | +</span> | |
| 1291 | +</span> | |
| 1292 | +</div> | |
| 1293 | +</span> | |
| 1294 | +</b> | |
| 1295 | +</font> | |
| 1296 | +</div> | |
| 1297 | +</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 && dm_gaq_push_event('socialLink', 'click', 'Email')"> <span class="dmSocialEmail dm-social-icons-email oneIcon socialHubIcon style8" aria-hidden="true" data-hover-effect=""></span> | |
| 1298 | +</a> | |
| 1299 | + <a href="https://www.facebook.com/gestionimmobiliererivesud/" target="_blank" dm_dont_rewrite_url="true" aria-label="facebook" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Facebook')"> <span class="dmSocialFacebook dm-social-icons-facebook oneIcon socialHubIcon style8" aria-hidden="true" data-hover-effect=""></span> | |
| 1300 | +</a> | |
| 1301 | +</div> | |
| 1302 | +</div> | |
| 1303 | +</div> | |
| 1304 | + <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> | |
| 1305 | +</span> | |
| 1306 | + <span class="text">Appelez-nous</span> | |
| 1307 | +</a> | |
| 1308 | +</div> | |
| 1309 | +</div> | |
| 1310 | +</div> | |
| 1311 | +</div> | |
| 1312 | + <div class="layout-drawer-overlay" id="layout-drawer-overlay"></div> | |
| 1313 | +</div> | |
| 1314 | + <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> | |
| 1315 | +</div> | |
| 1316 | +</div> | |
| 1317 | +</div> | |
| 1318 | +</div> | |
| 1319 | + <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> | |
| 1320 | + <span class="hamburger__slice"></span> | |
| 1321 | + <span class="hamburger__slice"></span> | |
| 1322 | +</button> | |
| 1323 | + <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> | |
| 1324 | + <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 && dm_gaq_push_event('socialLink', 'click', 'Facebook')"> <span class="dmSocialFacebook dm-social-icons-facebook oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> | |
| 1325 | +</a> | |
| 1326 | + <a href="http://linkedin.com/" target="_blank" dm_dont_rewrite_url="true" aria-label="linkedin" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Linkedin')"> <span class="dmSocialLinkedin icon-linkedin oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> | |
| 1327 | +</a> | |
| 1328 | + <a href="mailto:immeubles@gestionirs.com" dm_dont_rewrite_url="true" aria-label="email" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Email')"> <span class="dmSocialEmail dm-social-icons-email oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> | |
| 1329 | +</a> | |
| 1330 | +</div> | |
| 1331 | +</div> | |
| 1332 | +</div> | |
| 1333 | +</div> | |
| 1334 | + <div class="u_1980771558 dmRespCol small-12 large-2 medium-2" id="1980771558"> <span id="1064055669"></span> | |
| 1335 | + <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> | |
| 1336 | +</svg> | |
| 1337 | +</div> | |
| 1338 | +</div> | |
| 1339 | + <div class="u_1016959372 dmRespCol small-12 large-2 medium-2" id="1016959372"> <span id="1845699766"></span> | |
| 1340 | + <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> | |
| 1341 | +</div> | |
| 1342 | +</div> | |
| 1343 | + <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> | |
| 1344 | +</div> | |
| 1345 | +</div> | |
| 1346 | + <div class="u_1522799502 dmRespCol small-12 large-10 medium-10" id="1522799502"> <span id="1481163886"></span> | |
| 1347 | + <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">À louer<span class="icon icon-angle-down"></span> | |
| 1348 | +</span> | |
| 1349 | +</a> | |
| 1350 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1351 | +</span> | |
| 1352 | +</a> | |
| 1353 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/scott/rue-amanda-gustave" class="unifiednav__item unav-item dmUDNavigationItem_010101104557 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Amanda-Gustave" data-auto="page-text-style">Rue Amanda-Gustave<span class="icon icon-angle-right"></span> | |
| 1354 | +</span> | |
| 1355 | +</a> | |
| 1356 | +</li> | |
| 1357 | + <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> | |
| 1358 | +</span> | |
| 1359 | +</a> | |
| 1360 | +</li> | |
| 1361 | + <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> | |
| 1362 | +</span> | |
| 1363 | +</a> | |
| 1364 | +</li> | |
| 1365 | +</ul> | |
| 1366 | +</li> | |
| 1367 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1368 | +</span> | |
| 1369 | +</a> | |
| 1370 | + <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> | |
| 1371 | +</span> | |
| 1372 | +</a> | |
| 1373 | +</li> | |
| 1374 | +</ul> | |
| 1375 | +</li> | |
| 1376 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1377 | +</span> | |
| 1378 | +</a> | |
| 1379 | + <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 Érables, Jumelé<span class="icon icon-angle-right"></span> | |
| 1380 | +</span> | |
| 1381 | +</a> | |
| 1382 | +</li> | |
| 1383 | + <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 dmNavItemSelected dmUDNavigationItem_010101963466 " target="" data-target-page-alias="" aria-current="page" data-auto="selected-page"> <span class="nav-item-text " data-link-text="Avenue des Érables, Condo" data-auto="page-text-style">Avenue des Érables, Condo<span class="icon icon-angle-right"></span> | |
| 1384 | +</span> | |
| 1385 | +</a> | |
| 1386 | +</li> | |
| 1387 | +</ul> | |
| 1388 | +</li> | |
| 1389 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1390 | +</span> | |
| 1391 | +</a> | |
| 1392 | + <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> | |
| 1393 | +</span> | |
| 1394 | +</a> | |
| 1395 | +</li> | |
| 1396 | +</ul> | |
| 1397 | +</li> | |
| 1398 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1399 | +</span> | |
| 1400 | +</a> | |
| 1401 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/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> | |
| 1402 | +</span> | |
| 1403 | +</a> | |
| 1404 | +</li> | |
| 1405 | +</ul> | |
| 1406 | +</li> | |
| 1407 | +</ul> | |
| 1408 | +</li> | |
| 1409 | + <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">À vendre<span class="icon icon-angle-down"></span> | |
| 1410 | +</span> | |
| 1411 | +</a> | |
| 1412 | + <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> | |
| 1413 | +</span> | |
| 1414 | +</a> | |
| 1415 | +</li> | |
| 1416 | +</ul> | |
| 1417 | +</li> | |
| 1418 | + <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> | |
| 1419 | +</span> | |
| 1420 | +</a> | |
| 1421 | + <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ésentation au TAL<span class="icon icon-angle-right"></span> | |
| 1422 | +</span> | |
| 1423 | +</a> | |
| 1424 | +</li> | |
| 1425 | +</ul> | |
| 1426 | +</li> | |
| 1427 | + <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étaires<span class="icon icon-angle-down"></span> | |
| 1428 | +</span> | |
| 1429 | +</a> | |
| 1430 | +</li> | |
| 1431 | + <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> | |
| 1432 | +</span> | |
| 1433 | +</a> | |
| 1434 | +</li> | |
| 1435 | +</ul> | |
| 1436 | +</nav> | |
| 1437 | +</div> | |
| 1438 | +</div> | |
| 1439 | +</div> | |
| 1440 | +</div> | |
| 1441 | +</div> | |
| 1442 | +</div> | |
| 1443 | + <div dmwrapped="true" id="dmFirstContainer" class="dmBody u_dmStyle_template_location/new-richmond/avenue-erables-condo 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> | |
| 1444 | +</div> | |
| 1445 | +</div> | |
| 1446 | +</div> | |
| 1447 | + <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/6+logements+-+New+Richmond-1920w.png" alt="Une vue aérienne d'un quartier résidentiel recouvert de neige." id="1697979973" class="" width="1920" height="1080" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/6+logements+-+New+Richmond.png" onerror="handleImageLoadError(this)"/></div> | |
| 1448 | +</div> | |
| 1449 | +</div> | |
| 1450 | +</div> | |
| 1451 | + <div class="dmRespRow" id="1958286401"> <div class="dmRespColsWrapper" id="1911295334"> <div class="dmRespCol large-12 medium-12 small-12" id="1257255836"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3 u_1748061203" data-element-type="graphic" data-widget-type="graphic" id="1748061203"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1383326881" class="svg u_1383326881" data-icon-custom="true" data-icon-name="buildings_7524287.svg"> <title id="1767762771">Une silhouette noire et blanche d'une ville avec trois bâtiments et un arbre.</title> | |
| 1452 | + <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> | |
| 1453 | +</svg> | |
| 1454 | +</div> | |
| 1455 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1844873187" style="transition: opacity 1s ease-in-out;"> <h1 class="text-align-center"><span style="display: unset; color: var(--color_2);">Avenue des Érables</span></h1> | |
| 1456 | +</div> | |
| 1457 | +</div> | |
| 1458 | +</div> | |
| 1459 | +</div> | |
| 1460 | + <div class="dmRespRow" id="1299034309"> <div class="dmRespColsWrapper" id="1051852715"> <div class="dmRespCol large-6 medium-6 small-12" id="1199127370"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1692095137" style="transition: opacity 1s ease-in-out;"><p><span class="" style="display: initial;"><span style="display: initial;">Situés sur l’avenue des Érables, dans la charmante municipalité de New Richmond,</span> | |
| 1461 | +</span><strong style="display: initial; font-weight: bold;">nos condos locatifs 4 ½</strong><span class="" style="display: initial;"> <span style="display: initial;">vous offrent un cadre de vie exceptionnel, alliant calme résidentiel, confort moderne et proximité des services. Ces logements spacieux ont été conçus pour répondre aux besoins des locataires d’aujourd’hui, dans un environnement inspiré par la mer, la nature et la qualité de vie gaspésienne.</span></span></p><p><span style="display: initial;"><br/></span></p><p><span style="display: initial;">Chaque unité se distingue par une luminosité naturelle abondante, une insonorisation supérieure, un balcon privé ainsi qu’un système de climatisation mural, assurant votre bien-être en toute saison. Les pièces sont aménagées avec soin pour offrir un espace fonctionnel, esthétique et durable, parfaitement adapté à un quotidien confortable.</span></p></div> | |
| 1462 | +</div> | |
| 1463 | + <div class="dmRespCol large-6 medium-6 small-12" id="1839002717"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1894702091" style="transition: opacity 1s ease-in-out;"><p><span style="display: initial;">Profitez d’un emplacement stratégique, à proximité des commerces, écoles, CPE, restaurants, services de santé et à quelques minutes seulement des plages et activités de plein air qui font la renommée de la région. Que vous soyez seul, en couple ou avec un enfant, vous apprécierez un quartier paisible, sécuritaire et bien desservi.</span></p><p><br/></p><p><span style="display: initial;">Choisir un condo locatif sur l’avenue des Érables à New Richmond, c’est opter pour un style de vie équilibré, où tranquillité, nature et commodités se côtoient harmonieusement. Offrez-vous le confort d’un milieu de vie pensé pour durer, avec Gestion Immobilière Sud.</span></p></div> | |
| 1464 | +</div> | |
| 1465 | +</div> | |
| 1466 | +</div> | |
| 1467 | + <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> | |
| 1468 | +</div> | |
| 1469 | +</div> | |
| 1470 | +</div> | |
| 1471 | + <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> | |
| 1472 | +</div> | |
| 1473 | +</div> | |
| 1474 | + <div class="u_1871439213 dmRespCol small-12 large-8 medium-8" id="1871439213"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1047322935"><p><span style="display: initial;">Nos logements sont conçus pour vous offrir un milieu de vie agréable, fonctionnel et chaleureux, où chaque détail compte. Que ce soit pour relaxer après une journée bien remplie ou pour accueillir vos proches, nos espaces de vie sont pensés pour s’adapter à votre quotidien.</span></p><p><br/></p><p><span style="display: initial;">Profitez de pièces spacieuses et lumineuses, d’un aménagement intelligent, d’une insonorisation de qualité supérieure, et de commodités modernes qui rehaussent votre confort.</span></p></div> | |
| 1475 | +</div> | |
| 1476 | +</div> | |
| 1477 | +</div> | |
| 1478 | + <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="1295215168">Un dessin en noir et blanc d'un balcon avec deux fenêtres et une balustrade.</title> | |
| 1479 | + <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> | |
| 1480 | +</svg> | |
| 1481 | +</div> | |
| 1482 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1021350580" style="transition: opacity 1s ease-in-out;"><p class="text-align-center"><strong style="display: initial; font-weight: bold;">BALCON PRIVÉ</strong></p></div> | |
| 1483 | +</div> | |
| 1484 | + <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="1246500624">Un cube noir et blanc avec une porte et des fenêtres sur fond blanc.</title> | |
| 1485 | + <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> | |
| 1486 | +</svg> | |
| 1487 | +</div> | |
| 1488 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1641948639" style="transition: opacity 1s ease-in-out;"><p style="letter-spacing: 0.05em; line-height: 1.6;" class="text-align-center"><strong style="display: initial;">UNITÉS SPACIEUSES</strong><span style="display: initial;"><br/></span></p></div> | |
| 1489 | +</div> | |
| 1490 | + <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="1729709395">Un dessin en noir et blanc d'un flocon de neige sur fond blanc.</title> | |
| 1491 | + <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> | |
| 1492 | + <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> | |
| 1493 | + <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> | |
| 1494 | + <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> | |
| 1495 | + <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> | |
| 1496 | + <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> | |
| 1497 | + <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> | |
| 1498 | + <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> | |
| 1499 | + <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> | |
| 1500 | + <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> | |
| 1501 | + <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> | |
| 1502 | + <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> | |
| 1503 | + <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> | |
| 1504 | + <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> | |
| 1505 | + <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> | |
| 1506 | + <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> | |
| 1507 | + <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> | |
| 1508 | + <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> | |
| 1509 | + <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> | |
| 1510 | + <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> | |
| 1511 | + <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> | |
| 1512 | + <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> | |
| 1513 | + <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> | |
| 1514 | + <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> | |
| 1515 | +</g> | |
| 1516 | +</svg> | |
| 1517 | +</div> | |
| 1518 | + <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> | |
| 1519 | +</div> | |
| 1520 | +</div> | |
| 1521 | +</div> | |
| 1522 | + <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="1733542849">Un dessin en noir et blanc d'une maison avec deux portes.</title> | |
| 1523 | + <path d="m89.062 75.141v-45.828c0-0.61719-0.36328-1.1758-0.92188-1.4258l-37.5-16.812c-0.40625-0.17969-0.87109-0.17969-1.2773 0l-37.5 16.812c-0.5625 0.25-0.92578 0.80859-0.92578 1.4258v45.828c-4.4258 0.74609-7.8125 4.5977-7.8125 9.2344 0 1.2852 0.25781 2.543 0.76562 3.7383 0.25391 0.59375 0.82812 0.94922 1.4375 0.94922 0.20312 0 0.41016-0.039062 0.61328-0.125 0.79688-0.33984 1.1641-1.2539 0.82422-2.0508-0.33984-0.80469-0.51562-1.6484-0.51562-2.5117 0-3.4453 2.8047-6.25 6.25-6.25s6.25 2.8047 6.25 6.25c0 0.86328 0.69922 1.5625 1.5625 1.5625 0.36719 0 0.73047 0.046875 1.0781 0.13281 0.11719 0.027344 0.22266 0.078126 0.33594 0.11328 0.22656 0.074218 0.45313 0.14844 0.66406 0.25391 0.125 0.0625 0.23828 0.14453 0.35547 0.21484 0.18359 0.11328 0.36328 0.22656 0.52734 0.36719 0.11328 0.09375 0.21484 0.20312 0.32031 0.30859 0.10547 0.10938 0.20312 0.22266 0.30078 0.34375 0.007813 0.078125 0.039063 0.14844 0.058594 0.22266 0.023437 0.082031 0.027344 0.16797 0.0625 0.24219 0.050781 0.10938 0.125 0.19922 0.19531 0.29297 0.046874 0.0625 0.082031 0.13281 0.13672 0.1875 0.09375 0.089843 0.20703 0.15234 0.32031 0.21484 0.058593 0.035157 0.10547 0.082031 0.16797 0.10547 0.18359 0.078125 0.38672 0.12109 0.59766 0.12109h49.125c0.21094 0 0.41406-0.042969 0.59766-0.12109 0.0625-0.027344 0.10938-0.074219 0.16797-0.10938 0.11328-0.066406 0.22656-0.125 0.32031-0.21484 0.054688-0.054687 0.089844-0.125 0.13672-0.1875 0.070312-0.09375 0.14844-0.18359 0.19531-0.29297 0.035157-0.074218 0.042969-0.16016 0.0625-0.24219 0.019532-0.074219 0.050782-0.14453 0.058594-0.22266 0.097656-0.11719 0.19531-0.23438 0.30078-0.34375 0.10547-0.10547 0.20703-0.21484 0.32031-0.30859 0.16406-0.13672 0.34375-0.25391 0.52734-0.36719 0.11719-0.074219 0.23047-0.15625 0.35547-0.21484 0.21094-0.10547 0.4375-0.17969 0.66406-0.25391 0.11328-0.035157 0.21875-0.085938 0.33594-0.11328 0.35547-0.082031 0.71875-0.12891 1.0859-0.12891 0.86328 0 1.5625-0.69922 1.5625-1.5625 0-3.4453 2.8047-6.25 6.25-6.25s6.25 2.8047 6.25 6.25c0 0.86328-0.17578 1.7109-0.51562 2.5117-0.33984 0.79297 0.03125 1.7109 0.82422 2.0508 0.19922 0.085938 0.40625 0.125 0.61328 0.125 0.60547 0 1.1836-0.35547 1.4375-0.94922 0.50781-1.1953 0.76562-2.4531 0.76562-3.7383 0-4.6367-3.3867-8.4883-7.8125-9.2344zm-40.625 10.797h-21.438v-46.016h21.438zm24.562 0h-21.438v-46.016h21.438zm12.938-10.809c-0.035156 0.007813-0.070312 0.019532-0.10938 0.027344-0.42969 0.078125-0.85156 0.18359-1.2578 0.31641-0.074218 0.023438-0.14844 0.054688-0.22266 0.082032-0.375 0.13281-0.73828 0.28906-1.0898 0.46875-0.050781 0.027343-0.10156 0.046874-0.15234 0.074218-0.375 0.19922-0.73047 0.42969-1.0742 0.67578-0.074219 0.054687-0.15234 0.10937-0.22656 0.16797-0.33594 0.25781-0.66016 0.53516-0.96094 0.83594-0.027344 0.027344-0.050781 0.054687-0.074219 0.082031-0.27734 0.28906-0.53516 0.59375-0.77344 0.91406-0.050782 0.070312-0.10547 0.13672-0.15625 0.21094-0.24219 0.34375-0.46094 0.69922-0.65625 1.0742-0.039063 0.074218-0.074219 0.15234-0.10938 0.22656-0.17188 0.35547-0.32812 0.72266-0.45703 1.1055-0.015626 0.046875-0.035157 0.09375-0.050782 0.14062-0.13281 0.41016-0.22656 0.83594-0.30078 1.2734-0.007813 0.050781-0.027344 0.09375-0.035156 0.14453-0.046875 0.007812-0.089844 0.027343-0.13672 0.039062-0.41797 0.085938-0.82812 0.19922-1.2188 0.35156-0.042969 0.015625-0.082031 0.039062-0.12109 0.054687-0.21484 0.085938-0.42578 0.17578-0.62891 0.28125v-45.316c0-0.86328-0.69922-1.5625-1.5625-1.5625h-49.125c-0.86328 0-1.5625 0.69922-1.5625 1.5625v45.316c-0.20312-0.10547-0.41797-0.19531-0.62891-0.28125-0.042969-0.015625-0.082032-0.039062-0.12109-0.054687-0.39453-0.15234-0.80469-0.26172-1.2188-0.35156-0.046875-0.007812-0.089844-0.03125-0.13672-0.039062-0.007812-0.050781-0.027343-0.09375-0.035156-0.14453-0.074219-0.43359-0.16797-0.85938-0.30078-1.2734-0.015625-0.046875-0.035156-0.09375-0.050782-0.14062-0.12891-0.37891-0.28125-0.74609-0.45703-1.1055-0.035156-0.074218-0.070312-0.15234-0.10938-0.22656-0.19531-0.375-0.41406-0.73047-0.65625-1.0742-0.050781-0.070313-0.10547-0.14062-0.15625-0.21094-0.23828-0.32031-0.49609-0.62891-0.77344-0.91406-0.027344-0.027344-0.046875-0.054687-0.074219-0.082031-0.30078-0.30078-0.62109-0.57422-0.96094-0.83594-0.074218-0.058594-0.14844-0.11328-0.22656-0.16797-0.34375-0.24609-0.69922-0.47656-1.0742-0.67578-0.050781-0.027344-0.10156-0.046875-0.15234-0.074218-0.35156-0.17969-0.71484-0.33594-1.0898-0.46875-0.074219-0.027344-0.14453-0.054688-0.22266-0.082032-0.40625-0.13281-0.82813-0.23828-1.2578-0.31641-0.039063-0.003906-0.074219-0.019531-0.10938-0.027344v-44.805l35.938-16.113 35.938 16.113z"></path> | |
| 1524 | +</svg> | |
| 1525 | +</div> | |
| 1526 | + <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="color: var(--color_1); display: initial; font-weight: bold;">LOCATION DE</strong> | |
| 1527 | + </p><p class="text-align-center"><strong style="color: var(--color_1); display: initial; font-weight: bold;"><span class="ql-cursor"></span>CABANON POSSIBLE</strong> | |
| 1528 | + </p></div> | |
| 1529 | +</div> | |
| 1530 | + <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> | |
| 1531 | +</svg> | |
| 1532 | +</a> | |
| 1533 | +</div> | |
| 1534 | + <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> | |
| 1535 | +</div> | |
| 1536 | + <div class="dmRespCol small-12 medium-4 large-4" id="1443466153"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3" data-element-type="graphic" data-widget-type="graphic" id="1406295359"> <a href="/" id="1950376377" aria-label="Dog_3202789.svg"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1886445913" class="svg u_1886445913" data-icon-custom="true" data-icon-name="Dog_3202789.svg"> <g> <path d="m56.102 84.801-2.5 8 0.10156 0.30078c0.5 1.8984 2.3984 3 4.3008 2.6016 2-0.39844 3.3008-2.3008 2.8984-4.3008l-1.1992-6.1992z"></path> | |
| 1537 | + <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> | |
| 1538 | + <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> | |
| 1539 | + <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> | |
| 1540 | + <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> | |
| 1541 | + <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> | |
| 1542 | + <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> | |
| 1543 | +</g> | |
| 1544 | +</svg> | |
| 1545 | +</a> | |
| 1546 | +</div> | |
| 1547 | + <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="display: initial; font-weight: bold;">CHAT ET CHIEN ACCEPTÉ</strong></p><p class="text-align-center"><span style="display: initial; font-style: italic;">(sous conditions)</span></p></div> | |
| 1548 | +</div> | |
| 1549 | +</div> | |
| 1550 | +</div> | |
| 1551 | + <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> | |
| 1552 | +</div> | |
| 1553 | +</div> | |
| 1554 | +</div> | |
| 1555 | + <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ÉS</span></h2> | |
| 1556 | +</div> | |
| 1557 | +</div> | |
| 1558 | + <div class="u_1158007567 dmRespCol small-12 large-8 medium-8" id="1158007567"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1877599422"><p><span style="display: initial; color: var(--color_3);">Situés sur l'avenue des Érables, dans un secteur paisible de New Richmond, nos condos locatifs vous offrent un emplacement stratégique qui allie tranquillité résidentielle et proximité des services essentiels.</span></p><p><br/></p><p><span style="display: initial; color: var(--color_3);">Profitez d’un accès rapide à tout ce qui simplifie votre quotidien : épiceries, pharmacies, restaurants, centre de santé, écoles, commerces de proximité et installations sportives. Vous êtes également à quelques minutes seulement des plages de la baie des Chaleurs, de la piste cyclable et des nombreux attraits touristiques de la région.</span></p></div> | |
| 1559 | +</div> | |
| 1560 | +</div> | |
| 1561 | +</div> | |
| 1562 | + <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> | |
| 1563 | +</div> | |
| 1564 | +</div> | |
| 1565 | +</div> | |
| 1566 | + <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> | |
| 1567 | +</div> | |
| 1568 | +</div> | |
| 1569 | +</div> | |
| 1570 | +</div> | |
| 1571 | + <div class="dmRespRow" id="1895177592"> <div class="dmRespColsWrapper" id="1370102391"> <div class="u_1515200283 dmRespCol small-12 large-4 medium-4" id="1515200283"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1766789273"> <h3><span style="display: unset;">Découvrez votre futur condo</span></h3> | |
| 1572 | + <h3><span style="display: unset;">grâce à une visite virtuelle</span></h3> | |
| 1573 | +</div> | |
| 1574 | +</div> | |
| 1575 | + <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;">Plongez au cœur de votre futur chez-vous grâce à notre visite virtuelle immersive. Explorez chaque pièce, admirez la luminosité, les matériaux de qualité et l’agencement bien pensé de nos condos locatifs à New Richmond.</span></p></div> | |
| 1576 | +</div> | |
| 1577 | +</div> | |
| 1578 | +</div> | |
| 1579 | + <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="1493447722"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/New+Richmond+-+condo+cuisine-1920w.png" id="1912014656" alt="Une cuisine avec des armoires en bois, un évier et un réfrigérateur." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1611844467"></div> | |
| 1580 | + <div class="slide-inner" id="1625798695"> <div class="text-wrapper" id="1387894175"> <h3 class="slide-title" id="1924977746">Titre de la diapositive</h3> | |
| 1581 | + <div class="slide-text richText" id="1973569585">Écrivez votre légende ici</div> | |
| 1582 | +</div> | |
| 1583 | + <div class="slide-button dmWidget clearfix" id="1579864610"> <span class="iconBg" id="1740780733"> <span class="icon hasFontIcon icon-star" id="1321202663"></span> | |
| 1584 | +</span> | |
| 1585 | + <span class="text" id="1041484667">Bouton</span> | |
| 1586 | +</div> | |
| 1587 | +</div> | |
| 1588 | +</li> | |
| 1589 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1414108521"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/New+Richmond+-+condo+coin+repas-1920w.png" id="1967688183" alt="Une grande pièce vide avec du parquet et des murs blancs." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1712580871"></div> | |
| 1590 | + <div class="slide-inner" id="1420660034"> <div class="text-wrapper" id="1795343532"> <h3 class="slide-title" id="1324271498">Titre de la diapositive</h3> | |
| 1591 | + <div class="slide-text richText" id="1240918583">Écrivez votre légende ici</div> | |
| 1592 | +</div> | |
| 1593 | + <div class="slide-button dmWidget clearfix" id="1827740667"> <span class="iconBg" id="1003670167"> <span class="icon hasFontIcon icon-star" id="1151851898"></span> | |
| 1594 | +</span> | |
| 1595 | + <span class="text" id="1415871361">Bouton</span> | |
| 1596 | +</div> | |
| 1597 | +</div> | |
| 1598 | +</li> | |
| 1599 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1675890739"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/New+Richmond+-+condo+chambre-1920w.png" id="1664658731" alt="Une chambre vide avec parquet et deux placards." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1326800232"></div> | |
| 1600 | + <div class="slide-inner" id="1783531629"> <div class="text-wrapper" id="1452778553"> <h3 class="slide-title" id="1389100054">Titre de la diapositive</h3> | |
| 1601 | + <div class="slide-text richText" id="1117081539">Écrivez votre légende ici</div> | |
| 1602 | +</div> | |
| 1603 | + <div class="slide-button dmWidget clearfix" id="1474060137"> <span class="iconBg" id="1140757531"> <span class="icon hasFontIcon icon-star" id="1451074448"></span> | |
| 1604 | +</span> | |
| 1605 | + <span class="text" id="1239181311">Bouton</span> | |
| 1606 | +</div> | |
| 1607 | +</div> | |
| 1608 | +</li> | |
| 1609 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1422912999"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/New+Richmond+-+condo+chambre+2-1920w.png" id="1217979913" alt="Une chambre vide avec parquet et un placard." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1739436454"></div> | |
| 1610 | + <div class="slide-inner" id="1341508309"> <div class="text-wrapper" id="1941688196"> <h3 class="slide-title" id="1853968520">Titre de la diapositive</h3> | |
| 1611 | + <div class="slide-text richText" id="1830273994">Écrivez votre légende ici</div> | |
| 1612 | +</div> | |
| 1613 | + <div class="slide-button dmWidget clearfix" id="1282593389"> <span class="iconBg" id="1743975459"> <span class="icon hasFontIcon icon-star" id="1766064879"></span> | |
| 1614 | +</span> | |
| 1615 | + <span class="text" id="1896781194">Bouton</span> | |
| 1616 | +</div> | |
| 1617 | +</div> | |
| 1618 | +</li> | |
| 1619 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1450831231"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/New+Richmond+-+condo+sdb-1920w.png" id="1031006214" alt="Une salle de bain avec toilettes, lavabo et baignoire" onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1420933760"></div> | |
| 1620 | + <div class="slide-inner" id="1599661848"> <div class="text-wrapper" id="1389138687"> <h3 class="slide-title" id="1783261756">Titre de la diapositive</h3> | |
| 1621 | + <div class="slide-text richText" id="1451530553">Écrivez votre légende ici</div> | |
| 1622 | +</div> | |
| 1623 | + <div class="slide-button dmWidget clearfix" id="1466198380"> <span class="iconBg" id="1926133358"> <span class="icon hasFontIcon icon-star" id="1845015134"></span> | |
| 1624 | +</span> | |
| 1625 | + <span class="text" id="1542588635">Bouton</span> | |
| 1626 | +</div> | |
| 1627 | +</div> | |
| 1628 | +</li> | |
| 1629 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1786347795"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/New+Richmond+-+condo+cellier-1920w.png" id="1681507872" alt="Il y a une laveuse et une sécheuse dans la buanderie." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1245673364"></div> | |
| 1630 | + <div class="slide-inner" id="1524380389"> <div class="text-wrapper" id="1065736716"> <h3 class="slide-title" id="1607865392">Titre de la diapositive</h3> | |
| 1631 | + <div class="slide-text richText" id="1497643782">Écrivez votre légende ici</div> | |
| 1632 | +</div> | |
| 1633 | + <div class="slide-button dmWidget clearfix" id="1866136160"> <span class="iconBg" id="1416808867"> <span class="icon hasFontIcon icon-star" id="1836577845"></span> | |
| 1634 | +</span> | |
| 1635 | + <span class="text" id="1392400591">Bouton</span> | |
| 1636 | +</div> | |
| 1637 | +</div> | |
| 1638 | +</li> | |
| 1639 | +</ul> | |
| 1640 | +</div> | |
| 1641 | +</div> | |
| 1642 | +</div> | |
| 1643 | +</div> | |
| 1644 | +</div> | |
| 1645 | + <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> | |
| 1646 | +</span><span style="display: initial;"><br/></span></h2> | |
| 1647 | +</div> | |
| 1648 | + <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ésitez pas à nous contacter pour découvrir tout ce que vous souhaitez savoir sur les logements, les quartiers et tout ce qui s'y trouve. Nous sommes là pour répondre à toutes vos questions.</span> | |
| 1649 | +</span></p></div> | |
| 1650 | + <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> | |
| 1651 | +</span> | |
| 1652 | + <span class="text" id="1591898475">Contactez-nous</span> | |
| 1653 | +</a> | |
| 1654 | +</div> | |
| 1655 | +</div> | |
| 1656 | +</div> | |
| 1657 | + <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> | |
| 1658 | +</div> | |
| 1659 | +</div> | |
| 1660 | +</div> | |
| 1661 | +</div> | |
| 1662 | + <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;">Entre mer et montagnes, New Richmond vous offre une qualité de vie exceptionnelle au quotidien</span></h3> | |
| 1663 | +</div> | |
| 1664 | +</div> | |
| 1665 | + <div class="u_1585638891 dmRespCol small-12 large-8 medium-8" id="1585638891"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1871869082"><p><span style="display: initial;">Nichée entre les eaux paisibles de la baie des Chaleurs et les collines verdoyantes de la Gaspésie, New Richmond est une destination de choix pour celles et ceux qui recherchent un cadre de vie équilibré, sain et inspirant.</span></p><p><span style="display: initial;"><br/></span></p><p><span style="display: initial;">Vivre dans le quartier de l'avenue des Érables, c’est profiter d’un environnement résidentiel calme, à proximité des commerces, écoles, services de santé, plages, sentiers et espaces verts. Que vous aimiez les sports nautiques, les randonnées, les sorties en vélo ou simplement relaxer en bord de mer, tout est à portée de main.</span></p><p><br/></p><p><span style="display: initial;">Vous serez charmé par l’esprit de communauté chaleureux, les paysages à couper le souffle et la tranquillité qu’offre ce coin de Gaspésie. Un quartier où la nature et le confort se rencontrent, pour un mode de vie tout simplement exceptionnel.</span></p></div> | |
| 1666 | +</div> | |
| 1667 | +</div> | |
| 1668 | +</div> | |
| 1669 | + <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="48.166286" data-lng="-65.854985" data-address="Avenue Des Erables, New Richmond, Quebec G0C 2B0, 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="Avenue Des Erables, New Richmond, Quebec G0C 2B0, Canada" geocompleteaddress="Avenue Des Erables, New Richmond, Quebec G0C 2B0, 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="-65.854985" lat="48.166286" zoom="13"> <div class="mapContainer" style="height: 100%; width: 100%; overflow: hidden; z-index: 0;"></div> | |
| 1670 | +</div> | |
| 1671 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1364636678" style="transition: opacity 1s ease-in-out;"><p class="text-align-center" style="line-height: normal;"><span class="" style="font-style: italic; display: unset;"><span style="font-style: italic; display: unset;">125 à 134 avenue des Érables à</span> | |
| 1672 | +</span><strong style="font-style: italic; display: unset; font-weight: bold;">Carleton-sur-Mer</strong></p></div> | |
| 1673 | +</div> | |
| 1674 | +</div> | |
| 1675 | +</div> | |
| 1676 | + <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> | |
| 1677 | +</div> | |
| 1678 | +</div> | |
| 1679 | +</div> | |
| 1680 | + <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> | |
| 1681 | +</div> | |
| 1682 | + <div class="bgExtraLayerOverlay"></div> | |
| 1683 | + <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éduit ?</span> | |
| 1684 | +</span></h2> | |
| 1685 | + <h2 class="text-align-center"><span style="color: var(--color_3); display: unset;">Planifiez votre visite dès aujourd'hui !</span><span style="display: initial;"><br/></span></h2> | |
| 1686 | +</div> | |
| 1687 | + <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> | |
| 1688 | +</span> | |
| 1689 | + <span class="text" id="1461344268">JE PLANIFIE !</span> | |
| 1690 | +</a> | |
| 1691 | +</div> | |
| 1692 | +</div> | |
| 1693 | +</div> | |
| 1694 | +</div> | |
| 1695 | +</div> | |
| 1696 | +</div> | |
| 1697 | +</div> | |
| 1698 | + <div class="sticky-widgets-container-global" id="1915928664"></div> | |
| 1699 | + <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> | |
| 1700 | +</div> | |
| 1701 | +</div> | |
| 1702 | +</div> | |
| 1703 | + <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> | |
| 1704 | +</div> | |
| 1705 | + <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> | |
| 1706 | +</div> | |
| 1707 | + <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> | |
| 1708 | +</div> | |
| 1709 | + <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> | |
| 1710 | +</div> | |
| 1711 | +</div> | |
| 1712 | +</div> | |
| 1713 | + <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écialiste en gestion d’immeubles locatifs, notre équipe saura vous accompagner tout au long de vos démarches.</span></p></div> | |
| 1714 | + <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> | |
| 1715 | +</div> | |
| 1716 | + <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> | |
| 1717 | +</div> | |
| 1718 | + <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=" | |
| 1719 | + Accueil | |
| 1720 | + " 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> | |
| 1721 | +</span> | |
| 1722 | +</a> | |
| 1723 | +</li> | |
| 1724 | + <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> | |
| 1725 | +</span> | |
| 1726 | +</a> | |
| 1727 | +</li> | |
| 1728 | +</ul> | |
| 1729 | +</nav> | |
| 1730 | +</div> | |
| 1731 | + <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> | |
| 1732 | +</div> | |
| 1733 | + <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ésentation au TAL<span class="icon icon-angle-down" data-hidden-on-mobile="" data-hidden-on-desktop="" data-hidden-on-tablet=""></span> | |
| 1734 | +</span> | |
| 1735 | +</a> | |
| 1736 | +</li> | |
| 1737 | + <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étaires<span class="icon icon-angle-down" data-hidden-on-mobile="" data-hidden-on-desktop="" data-hidden-on-tablet=""></span> | |
| 1738 | +</span> | |
| 1739 | +</a> | |
| 1740 | +</li> | |
| 1741 | +</ul> | |
| 1742 | +</nav> | |
| 1743 | +</div> | |
| 1744 | + <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> | |
| 1745 | +</div> | |
| 1746 | + <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> | |
| 1747 | +</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> | |
| 1748 | +</div> | |
| 1749 | +</div> | |
| 1750 | +</div> | |
| 1751 | + <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>© 2026 </div> | |
| 1752 | + <div><p class="rteBlock">Gestion Immobilière de la Rive Sud 2025 - Tous droits réservés</p></div> | |
| 1753 | +</div> | |
| 1754 | +</div> | |
| 1755 | +</div> | |
| 1756 | +</div> | |
| 1757 | +</div> | |
| 1758 | +</div> | |
| 1759 | + <div id="1236746004" dmle_extension="powered_by" data-element-type="powered_by" icon="true" surround="false"></div> | |
| 1760 | +</div> | |
| 1761 | +</div> | |
| 1762 | +</div> | |
| 1763 | +</div> | |
| 1764 | +</div> | |
| 1765 | +</div> | |
| 1766 | +</div> | |
| 1767 | +</div> | |
| 1768 | +</div> | |
| 1769 | + | |
| 1770 | + </div> | |
| 1771 | +</div> | |
| 1772 | +<!-- Add full CSS and Javascript before the close tag of the body if needed --> | |
| 1773 | + | |
| 1774 | + | |
| 1775 | + | |
| 1776 | + | |
| 1777 | + | |
| 1778 | + | |
| 1779 | + | |
| 1780 | + | |
| 1781 | + | |
| 1782 | + | |
| 1783 | + | |
| 1784 | + | |
| 1785 | + | |
| 1786 | + | |
| 1787 | + | |
| 1788 | + | |
| 1789 | + | |
| 1790 | + | |
| 1791 | + | |
| 1792 | + | |
| 1793 | + | |
| 1794 | + | |
| 1795 | + | |
| 1796 | + | |
| 1797 | + | |
| 1798 | + | |
| 1799 | + | |
| 1800 | + | |
| 1801 | + | |
| 1802 | + | |
| 1803 | + | |
| 1804 | + | |
| 1805 | + | |
| 1806 | + | |
| 1807 | + | |
| 1808 | + | |
| 1809 | + | |
| 1810 | + | |
| 1811 | +<!-- ========= JS Section ========= --> | |
| 1812 | +<script> | |
| 1813 | + var isWLR = true; | |
| 1814 | + | |
| 1815 | + window.customWidgetsFunctions = {}; | |
| 1816 | + window.customWidgetsStrings = {}; | |
| 1817 | + window.collections = {}; | |
| 1818 | + window.currentLanguage = "FRENCH" | |
| 1819 | + window.isSitePreview = false; | |
| 1820 | +</script> | |
| 1821 | + | |
| 1822 | + | |
| 1823 | + | |
| 1824 | +<script> | |
| 1825 | + window.customWidgetsFunctions["1f5975986930429f819d4cd2154b5c4a~25"] = function (element, data, api) { | |
| 1826 | + null | |
| 1827 | + }; | |
| 1828 | +</script> | |
| 1829 | + | |
| 1830 | + | |
| 1831 | +<script type="text/javascript"> | |
| 1832 | + | |
| 1833 | + var d_version = "production_6688"; | |
| 1834 | + var build = "2026-08-06T08_49_03"; | |
| 1835 | + window['v' + 'ersion'] = d_version; | |
| 1836 | + | |
| 1837 | + function buildEditorParent() { | |
| 1838 | + window.isMultiScreen = true; | |
| 1839 | + window.editorParent = {}; | |
| 1840 | + window.previewParent = {}; | |
| 1841 | + window.assetsCacheQueryParam = "?version=2026-08-06T08_49_03"; | |
| 1842 | + try { | |
| 1843 | + var _p = window.parent; | |
| 1844 | + if (_p && _p.document && _p.$ && _p.$.dmfw) { | |
| 1845 | + window.editorParent = _p; | |
| 1846 | + } else if (_p.isSitePreview) { | |
| 1847 | + window.previewParent = _p; | |
| 1848 | + } | |
| 1849 | + } catch (e) { | |
| 1850 | + | |
| 1851 | + } | |
| 1852 | + } | |
| 1853 | + | |
| 1854 | + buildEditorParent(); | |
| 1855 | +</script> | |
| 1856 | + | |
| 1857 | + | |
| 1858 | +<!-- Load jQuery --> | |
| 1859 | + | |
| 1860 | +<script type="text/javascript" id='d-js-jquery' | |
| 1861 | + src="https://static.cdn-website.com/libs/jquery/jquery-3.7.0.min.js"></script> | |
| 1862 | + | |
| 1863 | +<!-- End Load jQuery --> | |
| 1864 | + | |
| 1865 | + | |
| 1866 | +<!-- Injecting site-wide before scripts --> | |
| 1867 | + | |
| 1868 | +<!-- End Injecting site-wide to the head --> | |
| 1869 | + | |
| 1870 | + | |
| 1871 | + | |
| 1872 | +<script> | |
| 1873 | + var _jquery = window.$; | |
| 1874 | + | |
| 1875 | + var jqueryAliases = ['$', 'jquery', 'jQuery']; | |
| 1876 | + | |
| 1877 | + jqueryAliases.forEach((alias) => { | |
| 1878 | + Object.defineProperty(window, alias, { | |
| 1879 | + get() { | |
| 1880 | + return _jquery; | |
| 1881 | + }, | |
| 1882 | + set() { | |
| 1883 | + console.warn("Trying to over-write the global jquery object!"); | |
| 1884 | + } | |
| 1885 | + }); | |
| 1886 | + }); | |
| 1887 | + window.jQuery.migrateMute = true; | |
| 1888 | +</script> | |
| 1889 | + | |
| 1890 | + | |
| 1891 | + | |
| 1892 | + | |
| 1893 | +<script> | |
| 1894 | + window.cookiesNotificationMarkupPreview = ' <div> <p class=\"rteBlock\">Nous utilisons des cookies pour optimiser votre expérience sur notre site web. Pour en savoir plus, veuillez accéder à la page <a value=\"donnees-personnelles\" label=\"\" type=\"page\" href=\"\/donnees-personnelles\" data-runtime-url=\"\/donnees-personnelles\">Confidentialité<\/a>.<\/p> \n<\/div> \n'; | |
| 1895 | +</script> | |
| 1896 | + | |
| 1897 | +<!-- HEAD RT JS Include --> | |
| 1898 | +<script id='d-js-params'> | |
| 1899 | + window.INSITE = window.INSITE || {}; | |
| 1900 | + window.INSITE.device = "desktop"; | |
| 1901 | + | |
| 1902 | + window.rtCommonProps = {}; | |
| 1903 | + rtCommonProps["rt.ajax.ajaxScriptsFix"] =true; | |
| 1904 | + rtCommonProps["rt.pushnotifs.sslframe.encoded"] = 'aHR0cHM6Ly97c3ViZG9tYWlufS5wdXNoLW5vdGlmcy5jb20='; | |
| 1905 | + rtCommonProps["runtimecollector.url"] = 'https://rtc.multiscreensite.com'; | |
| 1906 | + rtCommonProps["performance.tabletPreview.removeScroll"] = 'false'; | |
| 1907 | + rtCommonProps["inlineEditGrid.snap"] =true; | |
| 1908 | + rtCommonProps["popup.insite.cookie.ttl"] = '0.5'; | |
| 1909 | + rtCommonProps["rt.pushnotifs.force.button"] =true; | |
| 1910 | + rtCommonProps["common.mapbox.token"] = 'pk.JETON_CAVIARDE_LOUKA'; | |
| 1911 | + rtCommonProps["common.mapbox.js.override"] =false; | |
| 1912 | + rtCommonProps["common.here.appId"] = 'iYvDjIQ2quyEu0rg0hLo'; | |
| 1913 | + rtCommonProps["common.here.appCode"] = '1hcIxLJcbybmtBYTD9Z1UA'; | |
| 1914 | + rtCommonProps["isCoverage.test"] =false; | |
| 1915 | + rtCommonProps["ecommerce.ecwid.script"] = 'https://app.multiscreenstore.com/script.js'; | |
| 1916 | + rtCommonProps["common.resources.dist.cdn"] =true; | |
| 1917 | + rtCommonProps["common.build.dist.folder"] = 'production/6688'; | |
| 1918 | + rtCommonProps["common.resources.cdn.host"] = 'https://static.cdn-website.com'; | |
| 1919 | + rtCommonProps["common.resources.folder"] = 'https://static.cdn-website.com/mnlt/production/6688'; | |
| 1920 | + rtCommonProps["common.fonts.api.v2.url"] = 'https://irp.cdn-website.com/fonts/css2?family='; | |
| 1921 | + rtCommonProps["feature.flag.runtime.backgroundSlider.preload.slowly"] =true; | |
| 1922 | + rtCommonProps["feature.flag.runtime.newAnimation.enabled"] =true; | |
| 1923 | + rtCommonProps["feature.flag.runtime.newAnimation.jitAnimation.enabled"] =true; | |
| 1924 | + rtCommonProps["feature.flag.sites.google.analytics.gtag"] =true; | |
| 1925 | + rtCommonProps["feature.flag.runOnReadyNewTask"] =true; | |
| 1926 | + rtCommonProps["isAutomation.test"] =false; | |
| 1927 | + rtCommonProps["booking.cal.api.domain"] = 'api.cal.com'; | |
| 1928 | + | |
| 1929 | + | |
| 1930 | + rtCommonProps['common.mapsProvider'] = 'mapbox'; | |
| 1931 | + | |
| 1932 | + rtCommonProps['common.mapsProvider.version'] = '0.52.0'; | |
| 1933 | + rtCommonProps['common.geocodeProvider'] = 'mapbox'; | |
| 1934 | + rtCommonProps['server.for.resources'] = ''; | |
| 1935 | + rtCommonProps['feature.flag.lazy.widgets'] = true; | |
| 1936 | + rtCommonProps['feature.flag.single.wow'] = false; | |
| 1937 | + rtCommonProps['feature.flag.disallowPopupsInEditor'] = true; | |
| 1938 | + rtCommonProps['feature.flag.mark.anchors'] = true; | |
| 1939 | + rtCommonProps['captcha.public.key'] = '6LffcBsUAAAAAMU-MYacU-6QHY4iDtUEYv_Ppwlz'; | |
| 1940 | + rtCommonProps['captcha.invisible.public.key'] = '6LeiWB8UAAAAAHYnVJM7_-7ap6bXCUNGiv7bBPME'; | |
| 1941 | + rtCommonProps["images.sizes.small"] =160; | |
| 1942 | + rtCommonProps["images.sizes.mobile"] =640; | |
| 1943 | + rtCommonProps["images.sizes.tablet"] =1280; | |
| 1944 | + rtCommonProps["images.sizes.desktop"] =1920; | |
| 1945 | + rtCommonProps["modules.resources.cdn"] =true; | |
| 1946 | + rtCommonProps["import.images.storage.imageCDN"] = 'https://irp.cdn-website.com/'; | |
| 1947 | + rtCommonProps["feature.flag.runtime.inp.threshold"] =150; | |
| 1948 | + rtCommonProps["feature.flag.performance.logs"] =false; | |
| 1949 | + rtCommonProps["site.widget.form.captcha.type"] = 'g_recaptcha'; | |
| 1950 | + rtCommonProps["friendly.captcha.site.key"] = 'FCMGSQG9GVNMFS8K'; | |
| 1951 | + rtCommonProps["cookiebot.mapbox.consent.category"] = 'marketing'; | |
| 1952 | + rtCommonProps["termly.mapbox.consent.category"] = 'performance'; | |
| 1953 | + // feature flags that's used out of runtime module (in legacy files) | |
| 1954 | + rtCommonProps["platform.monolith.personalization.dateTimeCondition.popupMsgAction.moveToclient.enabled"] =true; | |
| 1955 | + | |
| 1956 | + window.rtFlags = {}; | |
| 1957 | + rtFlags["unsuspendEcwidStoreOnRuntime.enabled"] =true; | |
| 1958 | + rtFlags["scripts.widgetCount.enabled"] =true; | |
| 1959 | + rtFlags["fnb.animations.tracking.enabled"] =true; | |
| 1960 | + rtFlags["ecom.ecwidNewUrlStructure.enabled"] = false; | |
| 1961 | + rtFlags["ecom.ecwid.accountPage.emptyBaseUrl.enabled"] = true; | |
| 1962 | + rtFlags["ecom.ecwid.accountPage.repeatOrderRedirect.enabled"] = false; | |
| 1963 | + rtFlags["ecom.ecwid.pages.links.disable.listeners"] = true; | |
| 1964 | + rtFlags["ecom.ecwid.storefrontV3.enabled"] = false; | |
| 1965 | + rtFlags["ecom.ecwid.old.store.fix.facebook.share"] = true; | |
| 1966 | + rtFlags["ecom.monolith.legacy.js.api.disabled.for.new.sites"] = false; | |
| 1967 | + rtFlags["feature.flag.photo.gallery.exact.size"] =true; | |
| 1968 | + rtFlags["geocode.search.localize"] =false; | |
| 1969 | + rtFlags["feature.flag.runtime.newAnimation.asyncInit.setTimeout.enabled"] =false; | |
| 1970 | + rtFlags["twitter.heightLimit.enabled"] = true; | |
| 1971 | + rtFlags["runtime.lottieOverflow"] =false; | |
| 1972 | + rtFlags["runtime.monitoring.sentry.ignoreErrors"] = ""; | |
| 1973 | + rtFlags["streamline.monolith.personalization.supportMultipleConditions.enabled"] =false; | |
| 1974 | + rtFlags["flex.animation.design.panel.layout"] =true; | |
| 1975 | + rtFlags["runtime.cwv.report.cls.enabled"] =false; | |
| 1976 | + rtFlags["runtime.cwv.report.lcp.enabled"] =false; | |
| 1977 | + rtFlags["runtime.lcp.preload.selfheal.enabled"] =true; | |
| 1978 | + rtFlags["runtime.lcp.preload.bootstrap.enabled"] =false; | |
| 1979 | + rtFlags["runtime.lcp.preload.monitor.enabled"] =false; | |
| 1980 | + rtFlags["runtime.customwidget.heightpin.enabled"] =true; | |
| 1981 | + rtFlags["contact.form.useActiveForm"] =true; | |
| 1982 | + rtFlags["contact.form.custom.errors.enabled"] =false; | |
| 1983 | + rtFlags["runtime.ssr.productStore.internal.observer"] =true; | |
| 1984 | + rtFlags["runtime.ssr.productCustomizations"] =true; | |
| 1985 | + rtFlags["runtime.ssr.runtime.filter-sort.newFilterSortWidgetWithOptions.enabled"] =true; | |
| 1986 | + rtFlags["runtime.ssr.ssrSlider.jumpThreshold.enabled"] =true; | |
| 1987 | + rtFlags["runtime.ssr.native.booker.enabled"] =false; | |
| 1988 | + rtFlags["termly.map.consent.overlay.enabled"] =false; | |
| 1989 | +</script> | |
| 1990 | +<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> | |
| 1991 | + | |
| 1992 | +<!-- End of HEAD RT JS Include --> | |
| 1993 | + | |
| 1994 | + | |
| 1995 | + | |
| 1996 | + | |
| 1997 | + | |
| 1998 | + | |
| 1999 | + | |
| 2000 | + | |
| 2001 | + | |
| 2002 | + | |
| 2003 | + | |
| 2004 | + <script src="https://static.cdn-website.com/mnlt/production/6688/_dm/s/rt/dist/scripts/d-js-jquery-migrate.min.js" ></script> | |
| 2005 | + | |
| 2006 | + | |
| 2007 | + | |
| 2008 | + | |
| 2009 | + | |
| 2010 | +<script> | |
| 2011 | + | |
| 2012 | + $(window).bind("orientationchange", function (e) { | |
| 2013 | + $.layoutManager.initLayout(); | |
| 2014 | + | |
| 2015 | + }); | |
| 2016 | + $(document).resize(function () { | |
| 2017 | + | |
| 2018 | + }); | |
| 2019 | +</script> | |
| 2020 | + | |
| 2021 | + | |
| 2022 | + | |
| 2023 | + | |
| 2024 | + | |
| 2025 | + | |
| 2026 | + | |
| 2027 | + | |
| 2028 | + | |
| 2029 | + | |
| 2030 | + | |
| 2031 | + | |
| 2032 | + | |
| 2033 | + | |
| 2034 | + | |
| 2035 | + | |
| 2036 | + | |
| 2037 | + | |
| 2038 | +<script type="text/javascript" id="d_track_sp"> | |
| 2039 | + ;(function(p,l,o,w,i,n,g){if(!p[i]){p.GlobalSnowplowNamespace=p.GlobalSnowplowNamespace||[]; | |
| 2040 | + p.GlobalSnowplowNamespace.push(i);p[i]=function(){(p[i].q=p[i].q||[]).push(arguments) | |
| 2041 | + };p[i].q=p[i].q||[];n=l.createElement(o);g=l.getElementsByTagName(o)[0];n.async=1; | |
| 2042 | + n.src=w;g.parentNode.insertBefore(n,g)}}(window,document,"script","//d32hwlnfiv2gyn.cloudfront.net/sp-2.0.0-dm-0.1.min.js","snowplow")); | |
| 2043 | + window.dmsnowplow = window.snowplow; | |
| 2044 | + | |
| 2045 | + dmsnowplow('newTracker', 'cf', 'd32hwlnfiv2gyn.cloudfront.net', { // Initialise a tracker | |
| 2046 | + appId: '6d6b044d' | |
| 2047 | + }); | |
| 2048 | + | |
| 2049 | + // snowplow queries element styles so we wait until CSS calculations are done. | |
| 2050 | + requestAnimationFrame(() => { | |
| 2051 | + dmsnowplow('trackPageView'); | |
| 2052 | + _dm_insite.forEach((rule) => { | |
| 2053 | + // Specifically in popup only the client knows if it is shown or not so we don't always want to track its impression here | |
| 2054 | + // the tracking is in popup.js | |
| 2055 | + if (rule.actionName !== "popup") { | |
| 2056 | + dmsnowplow('trackStructEvent', 'insite', 'impression', rule.ruleType, rule.ruleId); | |
| 2057 | + } | |
| 2058 | + window?.waitForDeferred?.('dmAjax', () => { | |
| 2059 | + $.DM.events.trigger('event-ruleTriggered', {value: rule}); | |
| 2060 | + }); | |
| 2061 | + }); | |
| 2062 | + }); | |
| 2063 | +</script> | |
| 2064 | + | |
| 2065 | + | |
| 2066 | + | |
| 2067 | +<div style="display:none;" id="P6iryBW0Wu"></div> | |
| 2068 | + | |
| 2069 | +<!-- photoswipe markup --> | |
| 2070 | + | |
| 2071 | + | |
| 2072 | + | |
| 2073 | + | |
| 2074 | + | |
| 2075 | + | |
| 2076 | + | |
| 2077 | + | |
| 2078 | + | |
| 2079 | +<!-- Root element of PhotoSwipe. Must have class pswp. --> | |
| 2080 | +<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true"> | |
| 2081 | + | |
| 2082 | + <!-- Background of PhotoSwipe. | |
| 2083 | + It's a separate element as animating opacity is faster than rgba(). --> | |
| 2084 | + <div class="pswp__bg"></div> | |
| 2085 | + | |
| 2086 | + <!-- Slides wrapper with overflow:hidden. --> | |
| 2087 | + <div class="pswp__scroll-wrap"> | |
| 2088 | + | |
| 2089 | + <!-- Container that holds slides. | |
| 2090 | + PhotoSwipe keeps only 3 of them in the DOM to save memory. | |
| 2091 | + Don't modify these 3 pswp__item elements, data is added later on. --> | |
| 2092 | + <div class="pswp__container"> | |
| 2093 | + <div class="pswp__item"></div> | |
| 2094 | + <div class="pswp__item"></div> | |
| 2095 | + <div class="pswp__item"></div> | |
| 2096 | + </div> | |
| 2097 | + | |
| 2098 | + <!-- Default (PhotoSwipeUI_Default) interface on top of sliding area. Can be changed. --> | |
| 2099 | + <div class="pswp__ui pswp__ui--hidden"> | |
| 2100 | + | |
| 2101 | + <div class="pswp__top-bar"> | |
| 2102 | + | |
| 2103 | + <!-- Controls are self-explanatory. Order can be changed. --> | |
| 2104 | + | |
| 2105 | + <div class="pswp__counter"></div> | |
| 2106 | + | |
| 2107 | + <button class="pswp__button pswp__button--close" title="Fermer (Echap)"></button> | |
| 2108 | + | |
| 2109 | + <button class="pswp__button pswp__button--share" title="Partager"></button> | |
| 2110 | + | |
| 2111 | + <button class="pswp__button pswp__button--fs" title="Passer en mode plein écran"></button> | |
| 2112 | + | |
| 2113 | + <button class="pswp__button pswp__button--zoom" title="Zoom avant / arrière"></button> | |
| 2114 | + | |
| 2115 | + <!-- Preloader demo http://codepen.io/dimsemenov/pen/yyBWoR --> | |
| 2116 | + <!-- element will get class pswp__preloader--active when preloader is running --> | |
| 2117 | + <div class="pswp__preloader"> | |
| 2118 | + <div class="pswp__preloader__icn"> | |
| 2119 | + <div class="pswp__preloader__cut"> | |
| 2120 | + <div class="pswp__preloader__donut"></div> | |
| 2121 | + </div> | |
| 2122 | + </div> | |
| 2123 | + </div> | |
| 2124 | + </div> | |
| 2125 | + | |
| 2126 | + <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"> | |
| 2127 | + <div class="pswp__share-tooltip"></div> | |
| 2128 | + </div> | |
| 2129 | + | |
| 2130 | + <button class="pswp__button pswp__button--arrow--left" title="Précédent (flèche gauche)"> | |
| 2131 | + </button> | |
| 2132 | + | |
| 2133 | + <button class="pswp__button pswp__button--arrow--right" title="Suivant (flèche droite)"> | |
| 2134 | + </button> | |
| 2135 | + | |
| 2136 | + <div class="pswp__caption"> | |
| 2137 | + <div class="pswp__caption__center"></div> | |
| 2138 | + </div> | |
| 2139 | + | |
| 2140 | + </div> | |
| 2141 | + | |
| 2142 | + </div> | |
| 2143 | + | |
| 2144 | +</div> | |
| 2145 | +<div id="fb-root" | |
| 2146 | + data-locale="fr_FR"></div> | |
| 2147 | +<!-- Alias: 6d6b044d --> | |
| 2148 | +<div class="dmPopupMask" id="dmPopupMask"></div> | |
| 2149 | +<div id="dmPopup" class="dmPopup"> | |
| 2150 | + <div class="dmPopupCloseWrapper"> <div class="dmPopupClose dm-common-icons-close oneIcon" onclick="dmHidePopup(event);"></div> </div> | |
| 2151 | + <div class="dmPopupTitle"> <span></span> Share by:</div> | |
| 2152 | + <div class="data"></div> | |
| 2153 | +</div><script id="d_track_personalization"> | |
| 2154 | + window?.waitForDeferred?.('dmAjax', () => { | |
| 2155 | + // Collects client data and updates cookies used by smart sites | |
| 2156 | + window.expireDays = 365; | |
| 2157 | + window.visitLength = 30 * 60000; | |
| 2158 | + $.setCookie("dm_timezone_offset", (new Date()).getTimezoneOffset(), window.expireDays); | |
| 2159 | + setSmartSiteCookiesInternal("dm_this_page_view","dm_last_page_view","dm_total_visits","dm_last_visit"); | |
| 2160 | + }); | |
| 2161 | +</script> | |
| 2162 | +<script type="text/javascript"> | |
| 2163 | + | |
| 2164 | + Parameters.NavigationAreaParams.MoreButtonText = 'MORE'; | |
| 2165 | + | |
| 2166 | + Parameters.NavigationAreaParams.LessButtonText = 'LESS'; | |
| 2167 | + Parameters.HomeLinkText = 'Home'; | |
| 2168 | + </script> | |
| 2169 | +<!-- End Script tags --> | |
| 2170 | +<!-- Site Wide Html Markup --> | |
| 2171 | +<!-- Site Wide Html Markup --> | |
| 2172 | +</body> | |
| 2173 | +</html> | |
added
tests/fixtures/girs/7ae120cab6b362557b29.html
+2208 −0
@@ -0,0 +1,2208 @@ | ||
| 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 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | +<script type="text/javascript"> | |
| 46 | + window._currentDevice = 'desktop'; | |
| 47 | + window.Parameters = window.Parameters || { | |
| 48 | + HomeUrl: 'https://www.girs.ca/', | |
| 49 | + | |
| 50 | + 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/new-richmond/avenue-erables', | |
| 64 | + InitialPageUuid: 'a1273829ccb54e88822a859e3653d93f', | |
| 65 | + InitialPageId: '43685129', | |
| 66 | + InitialEncodedPageAlias: 'bG9jYXRpb24vbmV3LXJpY2htb25kL2F2ZW51ZS1lcmFibGVz', | |
| 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érience sur notre site web. Pour en savoir plus, veuillez accéder à la page <a value=\"donnees-personnelles\" label=\"\" type=\"page\" href=\"\/donnees-personnelles\" data-runtime-url=\"\/donnees-personnelles\">Confidentialité<\/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: false | |
| 134 | + }; | |
| 135 | + | |
| 136 | + window.Parameters.LayoutID = {}; | |
| 137 | + window.Parameters.LayoutID[window._currentDevice] = 6; | |
| 138 | + window.Parameters.LayoutVariationID = {}; | |
| 139 | + window.Parameters.LayoutVariationID[window._currentDevice] = 5; | |
| 140 | +</script> | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | +<!-- Injecting site-wide to the head --> | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
| 169 | + | |
| 170 | + | |
| 171 | + | |
| 172 | + | |
| 173 | + | |
| 174 | + | |
| 175 | + | |
| 176 | + | |
| 177 | + | |
| 178 | +<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('&'); | |
| 185 | + | |
| 186 | + const expires = 'expires=' + new Date().getTime() + 24 * 60 * 60 * 1000; | |
| 187 | + const domain = 'domain=' + window.location.hostname; | |
| 188 | + const path = "path=/"; | |
| 189 | + | |
| 190 | + 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.cookie | |
| 220 | + .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 submission | |
| 226 | + // 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> | |
| 240 | + | |
| 241 | + | |
| 242 | + | |
| 243 | + | |
| 244 | + | |
| 245 | + | |
| 246 | +<!-- End Injecting site-wide to the head --> | |
| 247 | + | |
| 248 | +<!-- Inject secured cdn script --> | |
| 249 | + | |
| 250 | + | |
| 251 | +<!-- ========= 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 >>> 0 | |
| 260 | + } | |
| 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.serviceWorker | |
| 277 | + .register(serviceWorkerPath, { scope: './' }) | |
| 278 | + .then( | |
| 279 | + function (registration) { | |
| 280 | + // Registration was successful | |
| 281 | + console.log( | |
| 282 | + 'ServiceWorker registration successful with scope: ', | |
| 283 | + registration.scope | |
| 284 | + ); | |
| 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 | + }); | |
| 295 | + | |
| 296 | + // helper function to refresh the page | |
| 297 | + var refreshPage = (function () { | |
| 298 | + var refreshing; | |
| 299 | + return function () { | |
| 300 | + if (refreshing) return; | |
| 301 | + // prevent multiple refreshes | |
| 302 | + 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 loop | |
| 308 | + } | |
| 309 | + } | |
| 310 | + refreshing = true; | |
| 311 | + localStorage.setItem(refreshkey, Date.now()); | |
| 312 | + console.log('refereshing page'); | |
| 313 | + window.location.reload(); | |
| 314 | + }; | |
| 315 | + })(); | |
| 316 | + | |
| 317 | + 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 --> | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
| 340 | +<link rel="canonical" href="https://www.girs.ca/location/new-richmond/avenue-erables"> | |
| 341 | + | |
| 342 | +<meta id="view" name="viewport" content="initial-scale=1, minimum-scale=1, maximum-scale=5, viewport-fit=cover"> | |
| 343 | + | |
| 344 | +<meta name="apple-mobile-web-app-capable" content="yes"> | |
| 345 | + | |
| 346 | +<!--Add favorites icons--> | |
| 347 | + | |
| 348 | +<link rel="icon" type="image/x-icon" href="https://irp.cdn-website.com/6d6b044d/site_favicon_16_1673962208002.ico"/> | |
| 349 | + | |
| 350 | +<!-- 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"/> | |
| 354 | + | |
| 355 | + | |
| 356 | + | |
| 357 | +<!-- render the required CSS and JS in the head section --> | |
| 358 | +<script id='d-js-dmapi'> | |
| 359 | + window.SystemID = 'US_DIRECT_PRODUCTION'; | |
| 360 | + | |
| 361 | + 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; | |
| 372 | + | |
| 373 | + 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 | + } | |
| 405 | + | |
| 406 | + if (!window.requestIdleCallback) { | |
| 407 | + window.requestIdleCallback = function (fn) { | |
| 408 | + setTimeout(fn, 0); | |
| 409 | + } | |
| 410 | + } | |
| 411 | +</script> | |
| 412 | + | |
| 413 | +<!-- loadCSS function header.jsp--> | |
| 414 | + | |
| 415 | + | |
| 416 | + | |
| 417 | + | |
| 418 | + | |
| 419 | + | |
| 420 | +<script id="d-js-load-css"> | |
| 421 | +/** | |
| 422 | + * There are a few <link> tags with CSS resource in them that are preloaded in the page | |
| 423 | + * in each of those there is a "onload" handler which invokes the loadCSS callback | |
| 424 | + * 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 threre | |
| 427 | + * is no page css (which may happen on inner pages) then we do not wait for it | |
| 428 | + */ | |
| 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']"); | |
| 440 | + | |
| 441 | + 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; | |
| 446 | + | |
| 447 | + storedGlobalCssLink.disabled = true; | |
| 448 | + loadCssLink(storedGlobalCssLink); | |
| 449 | + | |
| 450 | + if (storedPageCssLink) { | |
| 451 | + storedPageCssLink.disabled = true; | |
| 452 | + loadCssLink(storedPageCssLink); | |
| 453 | + } | |
| 454 | + | |
| 455 | + if(storedWidgetCssLink) { | |
| 456 | + storedWidgetCssLink.disabled = true; | |
| 457 | + loadCssLink(storedWidgetCssLink); | |
| 458 | + } | |
| 459 | + | |
| 460 | + storedRuntimeCssLink.disabled = true; | |
| 461 | + loadCssLink(storedRuntimeCssLink); | |
| 462 | + | |
| 463 | + 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're | |
| 474 | + // 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 | + | |
| 484 | + | |
| 485 | + 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; | |
| 490 | + | |
| 491 | + 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 e | |
| 519 | + } | |
| 520 | + } | |
| 521 | + window.loadCSS = window.loadCSS || loadCSS; | |
| 522 | +})(); | |
| 523 | +</script> | |
| 524 | + | |
| 525 | + | |
| 526 | + | |
| 527 | +<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 = b | |
| 532 | + }).bind(this)) | |
| 533 | + } | |
| 534 | + | |
| 535 | + 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 | + d | |
| 542 | + ? d.promise.then(a) | |
| 543 | + : c && ["complete", "interactive"].includes(document.readyState) | |
| 544 | + ? setTimeout(a, 1) | |
| 545 | + : c | |
| 546 | + ? 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 */ | |
| 552 | + | |
| 553 | +.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 | + | |
| 555 | + | |
| 556 | +</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> | |
| 568 | + | |
| 569 | + | |
| 570 | + | |
| 571 | + | |
| 572 | + | |
| 573 | + | |
| 574 | + | |
| 575 | + | |
| 576 | + | |
| 577 | + | |
| 578 | + | |
| 579 | + | |
| 580 | + | |
| 581 | + | |
| 582 | + | |
| 583 | + | |
| 584 | + | |
| 585 | + | |
| 586 | + | |
| 587 | + | |
| 588 | + | |
| 589 | + | |
| 590 | + | |
| 591 | + | |
| 592 | + | |
| 593 | +<!-- Google Fonts Include --> | |
| 594 | + | |
| 595 | + | |
| 596 | + | |
| 597 | + | |
| 598 | + | |
| 599 | + | |
| 600 | + | |
| 601 | + | |
| 602 | + | |
| 603 | + | |
| 604 | + | |
| 605 | + | |
| 606 | + | |
| 607 | +<!-- loadCSS function fonts.jsp--> | |
| 608 | + | |
| 609 | + | |
| 610 | + | |
| 611 | +<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&subset=latin-ext&display=swap" /> | |
| 612 | + | |
| 613 | + | |
| 614 | + | |
| 615 | + | |
| 616 | + | |
| 617 | +<!-- 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" /> | |
| 619 | + | |
| 620 | +<!-- End of RT CSS Include --> | |
| 621 | + | |
| 622 | +<link type="text/css" rel="stylesheet" href="https://irp.cdn-website.com/WIDGET_CSS/b3f900cc909110f5df2a6191c01d29f5.css" id="widgetCSS" /> | |
| 623 | + | |
| 624 | +<!-- Support `img` size attributes --> | |
| 625 | +<style>img[width][height] { | |
| 626 | + height: auto; | |
| 627 | +}</style> | |
| 628 | + | |
| 629 | +<!-- Support showing sticky element on page only --> | |
| 630 | +<style> | |
| 631 | + body[data-page-alias="location/new-richmond/avenue-erables"] #dm [data-show-on-page-only="location/new-richmond/avenue-erables"] { | |
| 632 | + display: block !important; | |
| 633 | + } | |
| 634 | +</style> | |
| 635 | + | |
| 636 | +<!-- This is populated in Ajax navigation --> | |
| 637 | +<style id="pageAdditionalWidgetsCss" type="text/css"> | |
| 638 | +</style> | |
| 639 | + | |
| 640 | + | |
| 641 | + | |
| 642 | + | |
| 643 | +<!-- 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" /> | |
| 645 | + | |
| 646 | + | |
| 647 | + | |
| 648 | +<style id="customWidgetStyle" type="text/css"> | |
| 649 | + | |
| 650 | +</style> | |
| 651 | +<style id="innerPagesStyle" type="text/css"> | |
| 652 | + | |
| 653 | +</style> | |
| 654 | + | |
| 655 | + | |
| 656 | +<style | |
| 657 | + id="additionalGlobalCss" type="text/css" | |
| 658 | +> | |
| 659 | +</style> | |
| 660 | + | |
| 661 | +<style id="pagestyle" type="text/css"> | |
| 662 | + *#dm *.dmBody a.span.textonly | |
| 663 | +{ | |
| 664 | + color:rgb(255,255,255) !important; | |
| 665 | +} | |
| 666 | +*#dm *.dmBody div.dmform-error | |
| 667 | +{ | |
| 668 | + font-style:normal !important; | |
| 669 | +} | |
| 670 | +*#dm *.dmBody div.dmforminput textarea | |
| 671 | +{ | |
| 672 | + font-style:italic !important; | |
| 673 | +} | |
| 674 | +*#dm *.dmBody div.dmforminput *.fileUploadLink | |
| 675 | +{ | |
| 676 | + font-style:italic !important; | |
| 677 | +} | |
| 678 | +*#dm *.dmBody div.checkboxwrapper span | |
| 679 | +{ | |
| 680 | + font-style:italic !important; | |
| 681 | +} | |
| 682 | +*#dm *.dmBody div.radiowrapper span | |
| 683 | +{ | |
| 684 | + font-style:italic !important; | |
| 685 | +} | |
| 686 | +*#dm *.dmBody nav.u_1144820115 | |
| 687 | +{ | |
| 688 | + color:black !important; | |
| 689 | +} | |
| 690 | +*#dm *.dmBody *.u_1004639188:before | |
| 691 | +{ | |
| 692 | + opacity:0.5 !important; | |
| 693 | + background-color:rgb(255,255,255) !important; | |
| 694 | +} | |
| 695 | +*#dm *.dmBody *.u_1004639188.before | |
| 696 | +{ | |
| 697 | + opacity:0.5 !important; | |
| 698 | + background-color:rgb(255,255,255) !important; | |
| 699 | +} | |
| 700 | +*#dm *.dmBody *.u_1004639188>.bgExtraLayerOverlay | |
| 701 | +{ | |
| 702 | + opacity:0.5 !important; | |
| 703 | + background-color:rgb(255,255,255) !important; | |
| 704 | +} | |
| 705 | +*#dm *.dmBody div.u_1004639188 | |
| 706 | +{ | |
| 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:before | |
| 713 | +{ | |
| 714 | + background-color:var(--color_1) !important; | |
| 715 | +} | |
| 716 | +*#dm *.dmBody div.u_1004639188.before | |
| 717 | +{ | |
| 718 | + background-color:var(--color_1) !important; | |
| 719 | +} | |
| 720 | +*#dm *.dmBody div.u_1004639188>.bgExtraLayerOverlay | |
| 721 | +{ | |
| 722 | + background-color:var(--color_1) !important; | |
| 723 | +} | |
| 724 | +*#dm *.dmBody a.u_1756842165:hover | |
| 725 | +{ | |
| 726 | + background-color:var(--color_3) !important; | |
| 727 | + background-image:none !important; | |
| 728 | +} | |
| 729 | +*#dm *.dmBody a.u_1756842165.hover | |
| 730 | +{ | |
| 731 | + background-color:var(--color_3) !important; | |
| 732 | + background-image:none !important; | |
| 733 | +} | |
| 734 | +*#dm *.dmBody a.u_1756842165:hover span.text | |
| 735 | +{ | |
| 736 | + color:var(--color_1) !important; | |
| 737 | +} | |
| 738 | +*#dm *.dmBody a.u_1756842165.hover span.text | |
| 739 | +{ | |
| 740 | + color:var(--color_1) !important; | |
| 741 | +} | |
| 742 | +*#dm *.dmBody a.u_1756842165 span.text | |
| 743 | +{ | |
| 744 | + font-family:'Roboto' !important; | |
| 745 | + font-weight:400 !important; | |
| 746 | + color:var(--color_3) !important; | |
| 747 | +} | |
| 748 | +*#dm *.dmBody div.u_1937526287 | |
| 749 | +{ | |
| 750 | + border-style:solid !important; | |
| 751 | + border-width:2px !important; | |
| 752 | + border-color:var(--color_3) !important; | |
| 753 | +} | |
| 754 | +*#dm *.dmBody div.u_1452815793 | |
| 755 | +{ | |
| 756 | + background-color:rgba(0,0,0,0.05) !important; | |
| 757 | +} | |
| 758 | +*#dm *.dmBody div.u_1840143137 | |
| 759 | +{ | |
| 760 | + background-color:rgba(0,0,0,0.05) !important; | |
| 761 | +} | |
| 762 | +*#dm *.dmBody div.u_1813520727 | |
| 763 | +{ | |
| 764 | + background-color:rgba(0,0,0,0.05) !important; | |
| 765 | +} | |
| 766 | +*#dm *.dmBody div.u_1281514457 .color-overlay | |
| 767 | +{ | |
| 768 | + background-color:rgba(0,0,0,0) !important; | |
| 769 | +} | |
| 770 | +*#dm *.dmBody *.u_1281514457 .flex-direction-nav a:before | |
| 771 | +{ | |
| 772 | + font-size:45px !important; | |
| 773 | +} | |
| 774 | +*#dm *.dmBody *.u_1281514457 .flex-direction-nav a | |
| 775 | +{ | |
| 776 | + width:45px !important; | |
| 777 | + height:45px !important; | |
| 778 | + overflow:visible !important; | |
| 779 | + color:var(--color_3) !important; | |
| 780 | +} | |
| 781 | +*#dm *.dmBody *.u_1713239492:before | |
| 782 | +{ | |
| 783 | + opacity:0.5 !important; | |
| 784 | + background-color:rgb(255,255,255) !important; | |
| 785 | +} | |
| 786 | +*#dm *.dmBody *.u_1713239492.before | |
| 787 | +{ | |
| 788 | + opacity:0.5 !important; | |
| 789 | + background-color:rgb(255,255,255) !important; | |
| 790 | +} | |
| 791 | +*#dm *.dmBody *.u_1713239492>.bgExtraLayerOverlay | |
| 792 | +{ | |
| 793 | + opacity:0.5 !important; | |
| 794 | + background-color:rgb(255,255,255) !important; | |
| 795 | +} | |
| 796 | +*#dm *.dmBody div.u_1486697154 | |
| 797 | +{ | |
| 798 | + border-style:solid !important; | |
| 799 | + border-width:2px !important; | |
| 800 | + border-color:var(--color_3) !important; | |
| 801 | +} | |
| 802 | +*#dm *.dmBody a.u_1331251441 span.text | |
| 803 | +{ | |
| 804 | + text-decoration:none !important; | |
| 805 | + font-weight:400 !important; | |
| 806 | +} | |
| 807 | +*#dm *.dmBody a.u_1331251441:hover span.text | |
| 808 | +{ | |
| 809 | + text-decoration:underline !important; | |
| 810 | + color:var(--color_1) !important; | |
| 811 | +} | |
| 812 | +*#dm *.dmBody a.u_1331251441.hover span.text | |
| 813 | +{ | |
| 814 | + text-decoration:underline !important; | |
| 815 | + color:var(--color_1) !important; | |
| 816 | +} | |
| 817 | +*#dm *.dmBody a.u_1331251441:hover | |
| 818 | +{ | |
| 819 | + background-color:var(--color_3) !important; | |
| 820 | + background-image:none !important; | |
| 821 | +} | |
| 822 | +*#dm *.dmBody a.u_1331251441.hover | |
| 823 | +{ | |
| 824 | + background-color:var(--color_3) !important; | |
| 825 | + background-image:none !important; | |
| 826 | +} | |
| 827 | +*#dm *.dmBody div.u_1884387629 | |
| 828 | +{ | |
| 829 | + background-color:rgba(0,0,0,0.05) !important; | |
| 830 | +} | |
| 831 | +*#dm *.dmBody a.u_1331251441 | |
| 832 | +{ | |
| 833 | + border-style:solid !important; | |
| 834 | + border-width:2px !important; | |
| 835 | + border-color:var(--color_3) !important; | |
| 836 | + background-color:rgba(0,0,0,0) !important; | |
| 837 | + border-radius:20px 20px 20px 20px !important; | |
| 838 | +} | |
| 839 | +*#dm *.dmBody div.u_1748061203 .svg | |
| 840 | +{ | |
| 841 | + color:var(--color_1) !important; | |
| 842 | + fill:var(--color_1) !important; | |
| 843 | +} | |
| 844 | +*#dm *.dmBody a.u_1756842165 | |
| 845 | +{ | |
| 846 | + border-color:var(--color_3) !important; | |
| 847 | + border-style:solid !important; | |
| 848 | + border-width:2px !important; | |
| 849 | + border-radius:20px 20px 20px 20px !important; | |
| 850 | +} | |
| 851 | +*#dm *.dmBody *.u_1079271476 | |
| 852 | +{ | |
| 853 | + background-position:50% 50% !important; | |
| 854 | +} | |
| 855 | +*#dm *.dmBody *.u_1188563749 | |
| 856 | +{ | |
| 857 | + width:100% !important; | |
| 858 | +} | |
| 859 | +*#dm *.dmBody div.u_1713239492:before | |
| 860 | +{ | |
| 861 | + background-color:var(--color_1) !important; | |
| 862 | + opacity:0.4 !important; | |
| 863 | +} | |
| 864 | +*#dm *.dmBody div.u_1713239492.before | |
| 865 | +{ | |
| 866 | + background-color:var(--color_1) !important; | |
| 867 | + opacity:0.4 !important; | |
| 868 | +} | |
| 869 | +*#dm *.dmBody div.u_1713239492>.bgExtraLayerOverlay | |
| 870 | +{ | |
| 871 | + background-color:var(--color_1) !important; | |
| 872 | + opacity:0.4 !important; | |
| 873 | +} | |
| 874 | +*#dm *.dmBody div.u_1746905231 | |
| 875 | +{ | |
| 876 | + background-image:linear-gradient(90deg,rgba(66,123,202,1) 0%,rgba(73,174,223,1) 100%) !important; | |
| 877 | + background-origin:border-box !important; | |
| 878 | +} | |
| 879 | +*#dm *.dmBody div.u_1373323900 | |
| 880 | +{ | |
| 881 | + background-image:linear-gradient(90deg, rgba(66, 123, 202, 1) 0%, rgba(73, 174, 223, 1) 100%) !important; | |
| 882 | + background-origin:border-box !important; | |
| 883 | +} | |
| 884 | + | |
| 885 | +</style> | |
| 886 | + | |
| 887 | +<style id="pagestyleDevice" type="text/css"> | |
| 888 | + *#dm *.d-page-1716942098 DIV.dmInner | |
| 889 | +{ | |
| 890 | + background-repeat:no-repeat !important; | |
| 891 | + background-size:cover !important; | |
| 892 | + background-attachment:fixed !important; | |
| 893 | + background-position:50% 50% !important; | |
| 894 | +} | |
| 895 | +*#dm *.d-page-1716942098 DIV#dmSlideRightNavRight | |
| 896 | +{ | |
| 897 | + background-repeat:no-repeat !important; | |
| 898 | + background-image:none !important; | |
| 899 | + background-size:cover !important; | |
| 900 | + background-attachment:fixed !important; | |
| 901 | + background-position:50% 50% !important; | |
| 902 | +} | |
| 903 | +*#dm *.dmBody div.u_1867569646 | |
| 904 | +{ | |
| 905 | + height:40px !important; | |
| 906 | +} | |
| 907 | +*#dm *.dmBody a.u_1756842165 span.text | |
| 908 | +{ | |
| 909 | + font-size:20px !important; | |
| 910 | +} | |
| 911 | +*#dm *.dmBody div.u_1937526287 | |
| 912 | +{ | |
| 913 | + margin-left:20px !important; | |
| 914 | + padding-top:0px !important; | |
| 915 | + padding-left:20px !important; | |
| 916 | + padding-bottom:0px !important; | |
| 917 | + margin-top:0px !important; | |
| 918 | + margin-bottom:0px !important; | |
| 919 | + margin-right:20px !important; | |
| 920 | + padding-right:20px !important; | |
| 921 | +} | |
| 922 | +*#dm *.dmBody div.u_1121935101 | |
| 923 | +{ | |
| 924 | + height:600px !important; | |
| 925 | +} | |
| 926 | +@media (min-width:768px) and (max-width:1024px) {} | |
| 927 | +@media (min-width:1025px) {} | |
| 928 | +*#dm *.dmBody div.u_1221610193 | |
| 929 | +{ | |
| 930 | + height:20px !important; | |
| 931 | +} | |
| 932 | +*#dm *.dmBody div.u_1127078365 | |
| 933 | +{ | |
| 934 | + height:20px !important; | |
| 935 | +} | |
| 936 | +*#dm *.dmBody div.u_1288707829 | |
| 937 | +{ | |
| 938 | + height:20px !important; | |
| 939 | +} | |
| 940 | +*#dm *.dmBody div.u_1337411818 | |
| 941 | +{ | |
| 942 | + height:20px !important; | |
| 943 | +} | |
| 944 | +*#dm *.dmBody a.u_1756842165 | |
| 945 | +{ | |
| 946 | + float:none !important; | |
| 947 | + top:0px !important; | |
| 948 | + left:0px !important; | |
| 949 | + width:200px !important; | |
| 950 | + position:relative !important; | |
| 951 | + height:auto !important; | |
| 952 | + padding-top:10px !important; | |
| 953 | + padding-left:7px !important; | |
| 954 | + padding-bottom:10px !important; | |
| 955 | + min-height:40px !important; | |
| 956 | + max-width:100% !important; | |
| 957 | + padding-right:7px !important; | |
| 958 | + min-width:0 !important; | |
| 959 | + text-align:center !important; | |
| 960 | + margin-right:866px !important; | |
| 961 | + margin-left:0px !important; | |
| 962 | + margin-top:20px !important; | |
| 963 | + margin-bottom:10px !important; | |
| 964 | +} | |
| 965 | +*#dm *.dmBody a.u_1331251441 | |
| 966 | +{ | |
| 967 | + float:none !important; | |
| 968 | + top:0px !important; | |
| 969 | + left:0 !important; | |
| 970 | + width:200px !important; | |
| 971 | + position:relative !important; | |
| 972 | + height:auto !important; | |
| 973 | + padding-top:10px !important; | |
| 974 | + padding-left:7px !important; | |
| 975 | + padding-bottom:10px !important; | |
| 976 | + min-height:40px !important; | |
| 977 | + margin-right:auto !important; | |
| 978 | + margin-left:auto !important; | |
| 979 | + max-width:100% !important; | |
| 980 | + margin-top:10px !important; | |
| 981 | + margin-bottom:10px !important; | |
| 982 | + padding-right:7px !important; | |
| 983 | + min-width:0 !important; | |
| 984 | + text-align:center !important; | |
| 985 | +} | |
| 986 | +*#dm *.dmBody a.u_1331251441 span.text | |
| 987 | +{ | |
| 988 | + font-size:18px !important; | |
| 989 | +} | |
| 990 | +*#dm *.dmBody div.u_1748061203 | |
| 991 | +{ | |
| 992 | + width:90px !important; | |
| 993 | + height:90px !important; | |
| 994 | +} | |
| 995 | +*#dm *.dmBody div.u_1281514457 | |
| 996 | +{ | |
| 997 | + height:700px !important; | |
| 998 | + width:1200px !important; | |
| 999 | +} | |
| 1000 | +*#dm *.dmBody div.u_1004639188 | |
| 1001 | +{ | |
| 1002 | + float:none !important; | |
| 1003 | + top:0 !important; | |
| 1004 | + left:0 !important; | |
| 1005 | + width:auto !important; | |
| 1006 | + position:relative !important; | |
| 1007 | + height:auto !important; | |
| 1008 | + padding-top:90px !important; | |
| 1009 | + padding-left:40px !important; | |
| 1010 | + padding-bottom:90px !important; | |
| 1011 | + min-height:auto !important; | |
| 1012 | + max-width:100% !important; | |
| 1013 | + padding-right:40px !important; | |
| 1014 | + min-width:0 !important; | |
| 1015 | + text-align:start !important; | |
| 1016 | + background-position:50% 50% !important; | |
| 1017 | + background-attachment:initial !important; | |
| 1018 | + margin-left:0px !important; | |
| 1019 | + margin-top:0px !important; | |
| 1020 | + margin-bottom:0px !important; | |
| 1021 | + margin-right:0px !important; | |
| 1022 | +} | |
| 1023 | +*#dm *.dmBody div.u_1713239492 .videobgframe | |
| 1024 | +{ | |
| 1025 | + object-position:50% 50% !important; | |
| 1026 | + object-fit:cover !important; | |
| 1027 | +} | |
| 1028 | + | |
| 1029 | +</style> | |
| 1030 | + | |
| 1031 | +<!-- Flex Sections CSS --> | |
| 1032 | + | |
| 1033 | + | |
| 1034 | + | |
| 1035 | + | |
| 1036 | + | |
| 1037 | + | |
| 1038 | + | |
| 1039 | +<style id="globalFontSizeStyle" type="text/css"> | |
| 1040 | + .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-28, .size-28, .size-28 > font { font-size: 28px !important; } | |
| 1041 | +</style> | |
| 1042 | +<style id="pageFontSizeStyle" type="text/css"> | |
| 1043 | +</style> | |
| 1044 | + | |
| 1045 | + | |
| 1046 | + | |
| 1047 | + | |
| 1048 | +<style id="hideAnimFix"> | |
| 1049 | + .dmDesktopBody:not(.editGrid) [data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) [data-anim-extended] { | |
| 1050 | + visibility: hidden; | |
| 1051 | + } | |
| 1052 | + | |
| 1053 | + .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-extended] { | |
| 1054 | + visibility: hidden !important; | |
| 1055 | + } | |
| 1056 | + | |
| 1057 | + #dmRoot:not(.editGrid) .flex-element [data-anim-extended] { | |
| 1058 | + visibility: hidden; | |
| 1059 | + } | |
| 1060 | + | |
| 1061 | +</style> | |
| 1062 | + | |
| 1063 | + | |
| 1064 | + | |
| 1065 | + | |
| 1066 | +<style id="fontFallbacks"> | |
| 1067 | + @font-face { | |
| 1068 | + font-family: "Roboto Fallback"; | |
| 1069 | + src: local('Arial'); | |
| 1070 | + ascent-override: 92.6709%; | |
| 1071 | + descent-override: 24.3871%; | |
| 1072 | + size-adjust: 100.1106%; | |
| 1073 | + line-gap-override: 0%; | |
| 1074 | + }@font-face { | |
| 1075 | + font-family: "Montserrat Fallback"; | |
| 1076 | + src: local('Arial'); | |
| 1077 | + ascent-override: 84.9466%; | |
| 1078 | + descent-override: 22.0264%; | |
| 1079 | + size-adjust: 113.954%; | |
| 1080 | + line-gap-override: 0%; | |
| 1081 | + }@font-face { | |
| 1082 | + font-family: "Lato Fallback"; | |
| 1083 | + src: local('Arial'); | |
| 1084 | + ascent-override: 101.3181%; | |
| 1085 | + descent-override: 21.865%; | |
| 1086 | + size-adjust: 97.4159%; | |
| 1087 | + line-gap-override: 0%; | |
| 1088 | + }@font-face { | |
| 1089 | + font-family: "Pacifico Fallback"; | |
| 1090 | + src: local('Arial'); | |
| 1091 | + ascent-override: 140.9687%; | |
| 1092 | + descent-override: 49.0091%; | |
| 1093 | + size-adjust: 92.4319%; | |
| 1094 | + line-gap-override: 0%; | |
| 1095 | + }@font-face { | |
| 1096 | + font-family: "Courier Prime Fallback"; | |
| 1097 | + src: local('Arial'); | |
| 1098 | + ascent-override: 57.5122%; | |
| 1099 | + descent-override: 25.1616%; | |
| 1100 | + size-adjust: 135.8407%; | |
| 1101 | + line-gap-override: 0%; | |
| 1102 | + }@font-face { | |
| 1103 | + font-family: "Comfortaa Fallback"; | |
| 1104 | + src: local('Arial'); | |
| 1105 | + ascent-override: 74.2135%; | |
| 1106 | + descent-override: 19.7117%; | |
| 1107 | + size-adjust: 118.7115%; | |
| 1108 | + line-gap-override: 0%; | |
| 1109 | + } | |
| 1110 | +</style> | |
| 1111 | + | |
| 1112 | + | |
| 1113 | +<!-- End render the required css and JS in the head section --> | |
| 1114 | + | |
| 1115 | + | |
| 1116 | + | |
| 1117 | + | |
| 1118 | + | |
| 1119 | + | |
| 1120 | +<meta property="og:type" content="website"> | |
| 1121 | +<meta property="og:url" content="https://www.girs.ca/location/new-richmond/avenue-erables"> | |
| 1122 | + | |
| 1123 | + <title> | |
| 1124 | + Projet Émi à New Richmond | Jumelés à louer | GIRS | |
| 1125 | + </title> | |
| 1126 | + <meta name="description" content="Découvrez le Projet Émi à New Richmond : jumelés 3 chambres à louer, terrasse, climatisation et cadre de vie paisible en Gaspésie."/> | |
| 1127 | + | |
| 1128 | + <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"/> | |
| 1129 | + | |
| 1130 | + <meta name="twitter:card" content="summary"/> | |
| 1131 | + <meta name="twitter:title" content="Projet Émi à New Richmond | Jumelés à louer | GIRS"/> | |
| 1132 | + <meta name="twitter:description" content="Découvrez le Projet Émi à New Richmond : jumelés 3 chambres à louer, terrasse, climatisation et cadre de vie paisible en Gaspésie."/> | |
| 1133 | + <meta property="og:description" content="Découvrez le Projet Émi à New Richmond : jumelés 3 chambres à louer, terrasse, climatisation et cadre de vie paisible en Gaspésie."/> | |
| 1134 | + <meta property="og:title" content="Projet Émi à New Richmond | Jumelés à louer | GIRS"/> | |
| 1135 | + | |
| 1136 | + | |
| 1137 | + | |
| 1138 | + | |
| 1139 | +<!-- SYS- VVNfRElSRUNUX1BST0RVQ1RJT04= --> | |
| 1140 | +</head> | |
| 1141 | + | |
| 1142 | + | |
| 1143 | + | |
| 1144 | + | |
| 1145 | + | |
| 1146 | + | |
| 1147 | + | |
| 1148 | + | |
| 1149 | + | |
| 1150 | + | |
| 1151 | + | |
| 1152 | + | |
| 1153 | + | |
| 1154 | + | |
| 1155 | + | |
| 1156 | + | |
| 1157 | + | |
| 1158 | + | |
| 1159 | + | |
| 1160 | + | |
| 1161 | + | |
| 1162 | +<body id="dmRoot" data-page-alias="location/new-richmond/avenue-erables" class="dmRoot dmDesktopBody fix-mobile-scrolling addCanvasBorder dmResellerSite dmLargeBody responsiveTablet " | |
| 1163 | + style="padding:0;margin:0;" | |
| 1164 | + | |
| 1165 | + > | |
| 1166 | + | |
| 1167 | + | |
| 1168 | + | |
| 1169 | + | |
| 1170 | + | |
| 1171 | + | |
| 1172 | + | |
| 1173 | + | |
| 1174 | + | |
| 1175 | + | |
| 1176 | + | |
| 1177 | + | |
| 1178 | + | |
| 1179 | + | |
| 1180 | + | |
| 1181 | + | |
| 1182 | +<!-- ========= Site Content ========= --> | |
| 1183 | +<div id="dm" class='dmwr'> | |
| 1184 | + | |
| 1185 | + <div class="dm_wrapper standard-var5 widgetStyle-3 standard"> | |
| 1186 | + <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> | |
| 1187 | +</div> | |
| 1188 | +</div> | |
| 1189 | + <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> | |
| 1190 | +</div> | |
| 1191 | + <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">À louer<span class="icon icon-angle-down"></span> | |
| 1192 | +</span> | |
| 1193 | +</a> | |
| 1194 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1195 | +</span> | |
| 1196 | +</a> | |
| 1197 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/scott/rue-amanda-gustave" class="unifiednav__item unav-item dmUDNavigationItem_010101104557 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Amanda-Gustave" data-auto="page-text-style">Rue Amanda-Gustave<span class="icon icon-angle-right"></span> | |
| 1198 | +</span> | |
| 1199 | +</a> | |
| 1200 | +</li> | |
| 1201 | + <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> | |
| 1202 | +</span> | |
| 1203 | +</a> | |
| 1204 | +</li> | |
| 1205 | + <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> | |
| 1206 | +</span> | |
| 1207 | +</a> | |
| 1208 | +</li> | |
| 1209 | +</ul> | |
| 1210 | +</li> | |
| 1211 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1212 | +</span> | |
| 1213 | +</a> | |
| 1214 | + <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> | |
| 1215 | +</span> | |
| 1216 | +</a> | |
| 1217 | +</li> | |
| 1218 | +</ul> | |
| 1219 | +</li> | |
| 1220 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1221 | +</span> | |
| 1222 | +</a> | |
| 1223 | + <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 dmNavItemSelected dmUDNavigationItem_010101253082 " target="" data-target-page-alias="" aria-current="page" data-auto="selected-page"> <span class="nav-item-text " data-link-text="Avenue des Érables, Jumelé" data-auto="page-text-style">Avenue des Érables, Jumelé<span class="icon icon-angle-right"></span> | |
| 1224 | +</span> | |
| 1225 | +</a> | |
| 1226 | +</li> | |
| 1227 | + <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 Érables, Condo<span class="icon icon-angle-right"></span> | |
| 1228 | +</span> | |
| 1229 | +</a> | |
| 1230 | +</li> | |
| 1231 | +</ul> | |
| 1232 | +</li> | |
| 1233 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1234 | +</span> | |
| 1235 | +</a> | |
| 1236 | + <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> | |
| 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/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ères-Appalaches<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/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> | |
| 1246 | +</span> | |
| 1247 | +</a> | |
| 1248 | +</li> | |
| 1249 | +</ul> | |
| 1250 | +</li> | |
| 1251 | +</ul> | |
| 1252 | +</li> | |
| 1253 | + <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">À vendre<span class="icon icon-angle-down"></span> | |
| 1254 | +</span> | |
| 1255 | +</a> | |
| 1256 | + <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> | |
| 1257 | +</span> | |
| 1258 | +</a> | |
| 1259 | +</li> | |
| 1260 | +</ul> | |
| 1261 | +</li> | |
| 1262 | + <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> | |
| 1263 | +</span> | |
| 1264 | +</a> | |
| 1265 | + <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ésentation au TAL<span class="icon icon-angle-right"></span> | |
| 1266 | +</span> | |
| 1267 | +</a> | |
| 1268 | +</li> | |
| 1269 | +</ul> | |
| 1270 | +</li> | |
| 1271 | + <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étaires<span class="icon icon-angle-down"></span> | |
| 1272 | +</span> | |
| 1273 | +</a> | |
| 1274 | +</li> | |
| 1275 | + <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> | |
| 1276 | +</span> | |
| 1277 | +</a> | |
| 1278 | +</li> | |
| 1279 | +</ul> | |
| 1280 | +</nav> | |
| 1281 | +</div> | |
| 1282 | +</div> | |
| 1283 | +</div> | |
| 1284 | + <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> | |
| 1285 | +<b> <span style="text-decoration-line: underline;"></span> | |
| 1286 | +<span class="font-size-22 lh-1"> <span style="text-decoration-line: underline;"></span> | |
| 1287 | + <div style="text-align: left;"> <span style=""> <span style="text-decoration-line: underline;"></span> | |
| 1288 | +<span style=""> <span style="text-decoration-line: underline;"></span> | |
| 1289 | +<font style="color: rgb(255, 255, 255);"> <span style="text-decoration-line: underline;"></span> | |
| 1290 | +<span style="" class="font-size-22 lh-1"> <span style="text-decoration-line: underline;"></span> | |
| 1291 | +<b style=""> <span style="text-decoration-line: underline;"> <span style="font-weight: 700; font-size: 20px;">Nous contacter</span></span> | |
| 1292 | +</b> | |
| 1293 | +</span> | |
| 1294 | +</font> | |
| 1295 | +</span> | |
| 1296 | +</span> | |
| 1297 | +</div> | |
| 1298 | +</span> | |
| 1299 | +</b> | |
| 1300 | +</font> | |
| 1301 | +</div> | |
| 1302 | +</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 && dm_gaq_push_event('socialLink', 'click', 'Email')"> <span class="dmSocialEmail dm-social-icons-email oneIcon socialHubIcon style8" aria-hidden="true" data-hover-effect=""></span> | |
| 1303 | +</a> | |
| 1304 | + <a href="https://www.facebook.com/gestionimmobiliererivesud/" target="_blank" dm_dont_rewrite_url="true" aria-label="facebook" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Facebook')"> <span class="dmSocialFacebook dm-social-icons-facebook oneIcon socialHubIcon style8" aria-hidden="true" data-hover-effect=""></span> | |
| 1305 | +</a> | |
| 1306 | +</div> | |
| 1307 | +</div> | |
| 1308 | +</div> | |
| 1309 | + <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> | |
| 1310 | +</span> | |
| 1311 | + <span class="text">Appelez-nous</span> | |
| 1312 | +</a> | |
| 1313 | +</div> | |
| 1314 | +</div> | |
| 1315 | +</div> | |
| 1316 | +</div> | |
| 1317 | + <div class="layout-drawer-overlay" id="layout-drawer-overlay"></div> | |
| 1318 | +</div> | |
| 1319 | + <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> | |
| 1320 | +</div> | |
| 1321 | +</div> | |
| 1322 | +</div> | |
| 1323 | +</div> | |
| 1324 | + <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> | |
| 1325 | + <span class="hamburger__slice"></span> | |
| 1326 | + <span class="hamburger__slice"></span> | |
| 1327 | +</button> | |
| 1328 | + <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> | |
| 1329 | + <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 && dm_gaq_push_event('socialLink', 'click', 'Facebook')"> <span class="dmSocialFacebook dm-social-icons-facebook oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> | |
| 1330 | +</a> | |
| 1331 | + <a href="http://linkedin.com/" target="_blank" dm_dont_rewrite_url="true" aria-label="linkedin" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Linkedin')"> <span class="dmSocialLinkedin icon-linkedin oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> | |
| 1332 | +</a> | |
| 1333 | + <a href="mailto:immeubles@gestionirs.com" dm_dont_rewrite_url="true" aria-label="email" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Email')"> <span class="dmSocialEmail dm-social-icons-email oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> | |
| 1334 | +</a> | |
| 1335 | +</div> | |
| 1336 | +</div> | |
| 1337 | +</div> | |
| 1338 | +</div> | |
| 1339 | + <div class="u_1980771558 dmRespCol small-12 large-2 medium-2" id="1980771558"> <span id="1064055669"></span> | |
| 1340 | + <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> | |
| 1341 | +</svg> | |
| 1342 | +</div> | |
| 1343 | +</div> | |
| 1344 | + <div class="u_1016959372 dmRespCol small-12 large-2 medium-2" id="1016959372"> <span id="1845699766"></span> | |
| 1345 | + <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> | |
| 1346 | +</div> | |
| 1347 | +</div> | |
| 1348 | + <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> | |
| 1349 | +</div> | |
| 1350 | +</div> | |
| 1351 | + <div class="u_1522799502 dmRespCol small-12 large-10 medium-10" id="1522799502"> <span id="1481163886"></span> | |
| 1352 | + <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">À louer<span class="icon icon-angle-down"></span> | |
| 1353 | +</span> | |
| 1354 | +</a> | |
| 1355 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1356 | +</span> | |
| 1357 | +</a> | |
| 1358 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/scott/rue-amanda-gustave" class="unifiednav__item unav-item dmUDNavigationItem_010101104557 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Amanda-Gustave" data-auto="page-text-style">Rue Amanda-Gustave<span class="icon icon-angle-right"></span> | |
| 1359 | +</span> | |
| 1360 | +</a> | |
| 1361 | +</li> | |
| 1362 | + <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> | |
| 1363 | +</span> | |
| 1364 | +</a> | |
| 1365 | +</li> | |
| 1366 | + <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> | |
| 1367 | +</span> | |
| 1368 | +</a> | |
| 1369 | +</li> | |
| 1370 | +</ul> | |
| 1371 | +</li> | |
| 1372 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1373 | +</span> | |
| 1374 | +</a> | |
| 1375 | + <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> | |
| 1376 | +</span> | |
| 1377 | +</a> | |
| 1378 | +</li> | |
| 1379 | +</ul> | |
| 1380 | +</li> | |
| 1381 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1382 | +</span> | |
| 1383 | +</a> | |
| 1384 | + <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 dmNavItemSelected dmUDNavigationItem_010101253082 " target="" data-target-page-alias="" aria-current="page" data-auto="selected-page"> <span class="nav-item-text " data-link-text="Avenue des Érables, Jumelé" data-auto="page-text-style">Avenue des Érables, Jumelé<span class="icon icon-angle-right"></span> | |
| 1385 | +</span> | |
| 1386 | +</a> | |
| 1387 | +</li> | |
| 1388 | + <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 Érables, Condo<span class="icon icon-angle-right"></span> | |
| 1389 | +</span> | |
| 1390 | +</a> | |
| 1391 | +</li> | |
| 1392 | +</ul> | |
| 1393 | +</li> | |
| 1394 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1395 | +</span> | |
| 1396 | +</a> | |
| 1397 | + <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> | |
| 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/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ères-Appalaches<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/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> | |
| 1407 | +</span> | |
| 1408 | +</a> | |
| 1409 | +</li> | |
| 1410 | +</ul> | |
| 1411 | +</li> | |
| 1412 | +</ul> | |
| 1413 | +</li> | |
| 1414 | + <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">À vendre<span class="icon icon-angle-down"></span> | |
| 1415 | +</span> | |
| 1416 | +</a> | |
| 1417 | + <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> | |
| 1418 | +</span> | |
| 1419 | +</a> | |
| 1420 | +</li> | |
| 1421 | +</ul> | |
| 1422 | +</li> | |
| 1423 | + <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> | |
| 1424 | +</span> | |
| 1425 | +</a> | |
| 1426 | + <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ésentation au TAL<span class="icon icon-angle-right"></span> | |
| 1427 | +</span> | |
| 1428 | +</a> | |
| 1429 | +</li> | |
| 1430 | +</ul> | |
| 1431 | +</li> | |
| 1432 | + <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étaires<span class="icon icon-angle-down"></span> | |
| 1433 | +</span> | |
| 1434 | +</a> | |
| 1435 | +</li> | |
| 1436 | + <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> | |
| 1437 | +</span> | |
| 1438 | +</a> | |
| 1439 | +</li> | |
| 1440 | +</ul> | |
| 1441 | +</nav> | |
| 1442 | +</div> | |
| 1443 | +</div> | |
| 1444 | +</div> | |
| 1445 | +</div> | |
| 1446 | +</div> | |
| 1447 | +</div> | |
| 1448 | + <div dmwrapped="true" id="dmFirstContainer" class="dmBody u_dmStyle_template_location/new-richmond/avenue-erables 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> | |
| 1449 | +</div> | |
| 1450 | +</div> | |
| 1451 | +</div> | |
| 1452 | + <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/Jumel%C3%A9+New+Richmond-1920w.png" alt="Une maison avec le numéro 80 sur le côté." id="1697979973" class="" width="1920" height="1080" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/Jumel%C3%A9+New+Richmond.png" onerror="handleImageLoadError(this)"/></div> | |
| 1453 | +</div> | |
| 1454 | +</div> | |
| 1455 | +</div> | |
| 1456 | + <div class="dmRespRow" id="1958286401"> <div class="dmRespColsWrapper" id="1911295334"> <div class="dmRespCol large-12 medium-12 small-12" id="1257255836"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3 u_1748061203" data-element-type="graphic" data-widget-type="graphic" id="1748061203"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1383326881" class="svg u_1383326881" data-icon-custom="true" data-icon-name="House_7707095.svg"> <title id="1926024343">Une silhouette noire et blanche d'une maison sur fond blanc.</title> | |
| 1457 | + <path d="m7.5078 36.023 1.2344 3.457 41.441-21.695 41.188 21.609 1.1211-3.3984-42.309-22.344z"></path> | |
| 1458 | + <path d="m9.2773 79.992h80.039v6.3555h-80.039z"></path> | |
| 1459 | + <path d="m50.113 19.18-35.93 18.781-0.054688 40.68h25.281l-0.003906-23.707c0-5.8398 4.75-10.59 10.594-10.59 5.8398 0 10.594 4.75 10.594 10.59v23.707h25.281v-40.68zm-24.574 40.852h-5.2852v-5.832h5.2852zm0-7.2383h-5.2852v-5.832h5.2852zm6.6914 7.2383h-5.2852v-5.832h5.2852zm0-7.2383h-5.2852v-5.832h5.2852zm17.066-15.086c-2.7695-0.32031-4.9609-2.5156-5.2852-5.2852h5.2852zm0-6.6875h-5.2852c0.32031-2.7695 2.5156-4.9609 5.2852-5.2812zm1.4062-5.2852c2.7695 0.32031 4.9609 2.5156 5.2812 5.2812h-5.2812zm0 11.973v-5.2852h5.2812c-0.32031 2.7695-2.5117 4.9648-5.2812 5.2852zm22.352 22.324h-5.2852v-5.832h5.2852zm0-7.2383h-5.2852v-5.832h5.2852zm6.6914 7.2383h-5.2852v-5.832h5.2852zm0-7.2383h-5.2852v-5.832h5.2852z"></path> | |
| 1460 | + <path d="m50 45.777c-5.0586 0-9.1562 4.1016-9.1562 9.1562v23.695h18.316l-0.003906-23.695c0-5.0547-4.0977-9.1562-9.1562-9.1562zm-0.70312 15.617h-6.1289v-5.707h6.1289zm0-7.1133h-6.0352c0.5-3.0117 2.9648-5.3594 6.0352-5.6719zm8.1094 11.43c0 0.87891-0.71094 1.5898-1.5898 1.5898s-1.5898-0.71094-1.5898-1.5898c0-0.87891 0.71094-1.5898 1.5898-1.5898s1.5898 0.71094 1.5898 1.5898zm-0.57422-4.3164h-6.1289v-5.707h6.1289zm-6.1289-7.1133v-5.6719c3.0703 0.3125 5.5352 2.6602 6.0352 5.6719z"></path> | |
| 1461 | +</svg> | |
| 1462 | +</div> | |
| 1463 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1844873187" style="transition: opacity 1s ease-in-out;"> <h1 class="text-align-center"><span style="color: var(--color_2); display: unset;">Avenue des Érables</span></h1> | |
| 1464 | +</div> | |
| 1465 | +</div> | |
| 1466 | +</div> | |
| 1467 | +</div> | |
| 1468 | + <div class="dmRespRow" id="1299034309"> <div class="dmRespColsWrapper" id="1051852715"> <div class="dmRespCol large-6 medium-6 small-12" id="1199127370"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1692095137" style="transition: opacity 1s ease-in-out;"><p><span style="display: initial;">Découvrez nos jumelés locatifs situés à New Richmond, au cœur de la magnifique région de la Gaspésie, sur la rive nord de la baie des Chaleurs. Offrant un équilibre parfait entre nature, espace et proximité des services, ces maisons locatives sont idéales pour ceux qui souhaitent profiter d’un cadre de vie paisible, sans compromis sur le confort et l’accessibilité.</span></p><p><br/></p><p><span style="display: initial;">Chaque jumelé propose trois chambres spacieuses, une grande cuisine bien aménagée, une salle de bain fonctionnelle, ainsi qu’une entrée privée et une terrasse extérieure, parfaite pour profiter des journées ensoleillées. Les espaces de vie sont lumineux, bien pensés et conçus pour offrir un maximum de confort, que vous soyez en couple, en famille ou jeune retraité.</span></p></div> | |
| 1469 | +</div> | |
| 1470 | + <div class="dmRespCol large-6 medium-6 small-12" id="1839002717"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1894702091" style="transition: opacity 1s ease-in-out;"><p><span style="display: initial;">Situés à proximité des commerces, restaurants, écoles, services de santé et à quelques minutes des activités de plein air et des plages de la baie, ces jumelés vous permettent de profiter d’un milieu de vie pratique, serein et entouré de nature.</span></p><p><br/></p><p><span style="display: initial;">Avec Gestion Immobilière Sud (GIRS), trouvez votre jumelé locatif idéal à New Richmond, et laissez vous séduire par un style de vie inspiré par la mer, la tranquillité et l’esprit gaspésien.</span></p></div> | |
| 1471 | +</div> | |
| 1472 | +</div> | |
| 1473 | +</div> | |
| 1474 | + <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> | |
| 1475 | +</div> | |
| 1476 | +</div> | |
| 1477 | +</div> | |
| 1478 | + <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> | |
| 1479 | +</div> | |
| 1480 | +</div> | |
| 1481 | + <div class="u_1871439213 dmRespCol small-12 large-8 medium-8" id="1871439213"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1047322935"><p><span style="display: initial;">Nos logements sont conçus pour vous offrir un milieu de vie agréable, fonctionnel et chaleureux, où chaque détail compte. Que ce soit pour relaxer après une journée bien remplie ou pour accueillir vos proches, nos espaces de vie sont pensés pour s’adapter à votre quotidien.</span></p><p><br/></p><p><span style="display: initial;">Profitez de pièces spacieuses et lumineuses, d’un aménagement intelligent, d’une insonorisation de qualité supérieure, et de commodités modernes qui rehaussent votre confort.</span></p></div> | |
| 1482 | +</div> | |
| 1483 | +</div> | |
| 1484 | +</div> | |
| 1485 | + <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" data-icon-name="Garden_7722097.svg"> <title id="1247362376">Un dessin en noir et blanc de trois fleurs poussant dans l'herbe.</title> | |
| 1486 | + <path d="m29.887 27.656c-0.011719-2.3672-1.4492-4.4922-3.6406-5.3906s-4.707-0.38672-6.375 1.2891c-1.6719 1.6797-2.168 4.1992-1.2578 6.3867 0.91016 2.1836 3.043 3.6094 5.4141 3.6094 1.5586-0.003906 3.0508-0.625 4.1523-1.7305 1.0977-1.1055 1.7148-2.6016 1.707-4.1641zm-5.8594 2.7656v0.003906c-1.1133 0.007813-2.1211-0.66016-2.5547-1.6836-0.43359-1.0273-0.20312-2.2109 0.57812-3.0039 0.78516-0.79297 1.9648-1.0352 2.9961-0.61328 1.0312 0.41797 1.707 1.418 1.7148 2.5312 0.007812 1.5195-1.2188 2.7578-2.7344 2.7695zm75.949 45.801v0.003906c-0.011718-0.10937-0.03125-0.21094-0.0625-0.3125-0.023437-0.09375-0.058593-0.1875-0.10156-0.27344-0.046875-0.085937-0.10156-0.16797-0.16406-0.24219-0.10938-0.16016-0.26172-0.29297-0.43359-0.38281-0.09375-0.054687-0.19141-0.10156-0.29297-0.13672-0.039063-0.011718-0.066406-0.039062-0.10547-0.050781h-0.003906c-0.125 0-0.25391-0.015625-0.37891-0.046875-0.039063 0-0.070313 0.019531-0.10938 0.023438v-0.003907c-0.11719 0.011719-0.23828 0.035157-0.35156 0.070313-0.078125 0.023437-0.14844 0.050781-0.22266 0.082031-0.17188 0.097656-0.33203 0.22266-0.47266 0.36328-0.066406 0.082032-0.125 0.16797-0.17578 0.26172-0.054687 0.085937-0.097656 0.17578-0.12891 0.27344-0.019531 0.035157-0.039062 0.074219-0.054687 0.11328-0.85156 3.6523-2.25 7.1562-4.1523 10.387-1.5742-1.8516-4.0781-5.3242-4.3047-8.9883v-0.003906c0-0.011719-0.007813-0.019531-0.007813-0.03125h-0.003906c-0.035157-0.61719-0.44922-1.1484-1.0391-1.3398-0.17188-0.054687-0.35547-0.082031-0.54297-0.078125-0.023438 0-0.042969-0.011718-0.066407-0.007812h0.003907c-0.41406 0.027344-0.80078 0.21484-1.0742 0.52734-1.6953 2.0195-2.9297 4.3828-3.6172 6.9297-0.17188-0.24219-0.33984-0.48438-0.51562-0.72266v-7.5352c1.0977 0.17969 2.2031 0.26563 3.3125 0.26563 3.0156 0.078124 5.9883-0.71875 8.5586-2.3008 5.1523-3.4453 6.457-10.293 6.5117-10.582 0.007812-0.10938 0.007812-0.21875-0.007813-0.32812 0.007813-0.085938 0.007813-0.17188 0-0.26172-0.066406-0.1875-0.14453-0.37109-0.22656-0.55078-0.13672-0.14844-0.27734-0.29297-0.42188-0.42969-0.078125-0.039062-0.15625-0.074218-0.23828-0.10547-0.09375-0.054688-0.19531-0.097656-0.30078-0.13281-0.28906-0.0625-7.1289-1.5234-12.32 1.9219-2.1133 1.5-3.793 3.5312-4.8633 5.8906v-20.953c0.97266-0.37891 1.7773-1.1016 2.2617-2.0273 0.39453 0.13672 0.80859 0.21484 1.2266 0.23438 2.3984 0 4.3438-1.9414 4.3438-4.3438-0.019532-0.41797-0.10156-0.83203-0.24219-1.2266 1.4297-0.73828 2.3281-2.2188 2.3281-3.8281 0-1.6133-0.89844-3.0898-2.3281-3.8281 0.49219-1.5156 0.09375-3.1758-1.0312-4.3008s-2.7891-1.5234-4.3008-1.0312c-0.73828-1.4297-2.2148-2.332-3.8281-2.332s-3.0898 0.90234-3.8281 2.332c-1.5156-0.47266-3.168-0.078125-4.3008 1.0352-0.61719 0.64844-1.0156 1.4805-1.1328 2.3711-1.6914-0.24609-6.3164-0.63672-10.016 1.8242-1.6133 1.1289-2.9375 2.625-3.8633 4.3633v-16.934c0.76562-0.35156 1.3945-0.9375 1.8008-1.6719 1.3516 0.44922 2.8398 0.078125 3.8164-0.96094 0.94531-1.0117 1.2969-2.4414 0.92188-3.7773 1.2344-0.66016 2.0039-1.9492 2.0039-3.3477 0-1.3984-0.76953-2.6836-2.0039-3.3477 0.37109-1.3516 0.007812-2.8008-0.96094-3.8164-1.0117-0.94531-2.4414-1.2969-3.7773-0.92188-0.66406-1.2305-1.9492-2-3.3477-2-1.4023 0-2.6875 0.76953-3.3516 2-1.3516-0.36719-2.7969-0.003906-3.8125 0.96094-0.94531 1.0117-1.2969 2.4453-0.92188 3.7812-1.2344 0.66016-2.0078 1.9492-2.0078 3.3477 0 1.4023 0.77344 2.6914 2.0078 3.3516-0.36719 1.3516-0.003906 2.7969 0.96094 3.8125 0.74219 0.71484 1.7383 1.1172 2.7695 1.1094 0.33984-0.019531 0.67578-0.085937 1-0.1875 0.40234 0.73047 1.0234 1.3125 1.7773 1.6641v6.6016c-0.83594-1.3047-1.9258-2.4297-3.1992-3.3125-4.5-3-10.461-1.7383-10.711-1.6797-0.097657 0.03125-0.19141 0.074219-0.27734 0.125-0.085937 0.027343-0.17188 0.066406-0.25391 0.10938-0.085938 0.066406-0.16406 0.14062-0.23438 0.22266-0.066406 0.0625-0.12891 0.12891-0.1875 0.20312-0.17969 0.23828-0.26562 0.53516-0.24219 0.83203-0.011718 0.097656-0.015625 0.19922-0.007812 0.30078 0.1875 0.95312 0.46094 1.8906 0.81641 2.7969 0.92969 2.5977 2.6367 4.8477 4.8828 6.4453 2.2383 1.3789 4.832 2.0781 7.4609 2.0039 0.65234 0 1.3047-0.035156 1.9531-0.10938v41.98c-2.1797 2.0078-4.0352 4.3398-5.5 6.918-0.96875-6.9727-3.1641-12.711-6.5-16.746-0.011719-0.011719-0.023437-0.015625-0.035156-0.027344h0.003906c-0.10547-0.11328-0.22656-0.21094-0.35938-0.28906-0.050781-0.035156-0.10547-0.066406-0.16016-0.09375-0.089844-0.035156-0.18359-0.0625-0.28125-0.082032-0.11719-0.035156-0.23828-0.050781-0.36328-0.054687-0.035156 0-0.066406-0.015625-0.10156-0.015625-0.054688 0-0.10156 0.03125-0.15625 0.039062h0.003906c-0.21484 0.03125-0.41797 0.10938-0.59375 0.23438-0.050781 0.023437-0.10156 0.050781-0.15234 0.082031-0.023437 0.027343-0.050781 0.058593-0.074218 0.089843-0.074219 0.078126-0.14062 0.16016-0.19922 0.25-0.054687 0.078126-0.10547 0.16016-0.14453 0.24609-0.035156 0.089844-0.0625 0.18359-0.082032 0.27734-0.023437 0.10547-0.039062 0.21094-0.042968 0.32031 0 0.039063-0.019532 0.074219-0.015625 0.11328 0.49219 8.1914-4.0781 16.062-6.9297 20.117h-0.003906c-0.42188-4.0156-0.082031-8.0742 1-11.965 0.007813-0.058594 0.015625-0.12109 0.015625-0.17969 0.019531-0.10156 0.027344-0.20703 0.023438-0.30859-0.003907-0.10938-0.019532-0.21484-0.046876-0.31641-0.007812-0.058594-0.015624-0.11719-0.027343-0.17188-0.011719-0.035156-0.042969-0.0625-0.058594-0.10156-0.046875-0.09375-0.10156-0.1875-0.16797-0.26953-0.054687-0.082031-0.12109-0.15625-0.1875-0.22656-0.070312-0.058594-0.14453-0.11328-0.22266-0.16016-0.09375-0.0625-0.19531-0.11719-0.30078-0.15625-0.035157-0.011718-0.058594-0.039062-0.09375-0.050781-0.054688-0.007812-0.10547-0.011719-0.16016-0.011719-0.11719-0.019531-0.23437-0.027343-0.35156-0.019531-0.09375 0.003907-0.19141 0.019531-0.28125 0.042969-0.066406 0.007812-0.13281 0.015625-0.19531 0.03125-0.066407 0.023438-0.13281 0.070312-0.19922 0.09375l-0.015625 0.007812c-1.9219 0.79297-3.668 1.9648-5.1289 3.4453v-16.375c1.1641 0.16797 2.3438 0.25391 3.5195 0.25391 3.625 0.09375 7.1992-0.86328 10.289-2.7617 6.1992-4.1367 7.7812-12.414 7.8477-12.766 0.007812-0.11328 0.007812-0.22656-0.007813-0.33984 0.007813-0.082032 0.007813-0.16406 0-0.24609-0.070313-0.1875-0.14453-0.375-0.23047-0.55469-0.0625-0.078124-0.12891-0.15234-0.20703-0.21875-0.0625-0.074218-0.13281-0.14453-0.21094-0.20703-0.082032-0.046875-0.17188-0.085937-0.25781-0.11328-0.09375-0.050781-0.1875-0.09375-0.28516-0.125-0.35156-0.074219-8.5938-1.8203-14.793 2.3438v-0.003906c-2.418 1.6875-4.3633 3.9609-5.6562 6.6055v-10.75c1.5352-0.45312 2.793-1.5625 3.4375-3.0312 0.62891 0.26172 1.3047 0.39453 1.9844 0.40234h0.03125c1.8008 0 3.4844-0.89453 4.4922-2.3906 1.0117-1.4922 1.2109-3.3906 0.53516-5.0586 1.9922-0.84766 3.2891-2.8047 3.293-4.9688-0.003907-0.72656-0.15234-1.4453-0.42969-2.1172-0.54688-1.2852-1.5781-2.3047-2.8711-2.8359 0.82812-2.0195 0.36719-4.3359-1.168-5.8867-1.5391-1.5469-3.8555-2.0195-5.8789-1.2031-0.84766-2-2.8125-3.3008-4.9883-3.2969-2.1719 0-4.1367 1.3008-4.9805 3.3047-2.0117-0.79297-4.3008-0.33203-5.8516 1.1758-1.543 1.5312-2.0156 3.8398-1.1992 5.8555-1.9961 0.85547-3.2852 2.8164-3.2852 4.9883 0.003906 2.168 1.2969 4.1289 3.293 4.9844-0.80859 2.0117-0.33984 4.3125 1.1953 5.8477 1.5312 1.5312 3.832 2.0039 5.8477 1.1953 0.63281 1.4609 1.8789 2.5703 3.4062 3.0312v25.922c-1.293-3.418-3.5625-6.3789-6.5273-8.5117-6.1992-4.1328-14.445-2.3945-14.797-2.3164-0.10547 0.03125-0.20312 0.078125-0.30078 0.13281-0.082031 0.027343-0.16406 0.0625-0.24219 0.10547-0.085938 0.066406-0.16406 0.14453-0.23047 0.22656-0.070313 0.0625-0.13281 0.12891-0.19141 0.19922-0.042969 0.082031-0.082031 0.16797-0.10938 0.25391-0.050782 0.097656-0.089844 0.19531-0.12109 0.30078-0.0078125 0.082032-0.0078125 0.16406-0.0039062 0.25-0.015625 0.11328-0.015625 0.22656-0.0039063 0.33984 0.0625 0.35156 1.6445 8.6016 7.8516 12.766h-0.003906c3.0664 1.8867 6.6172 2.8359 10.215 2.7422 1.4961 0.011719 2.9922-0.125 4.4648-0.41016v7.0391c-1.4141 2.1484-2.6094 4.4297-3.5742 6.8164-0.78906-3.0586-1.1641-6.207-1.1133-9.3633 0-0.023438-0.011719-0.042969-0.011719-0.066406h0.003907c-0.023438-0.20703-0.0625-0.41016-0.125-0.60938-0.011719-0.023437-0.007813-0.050781-0.019531-0.078124-0.039063-0.0625-0.085938-0.12109-0.13672-0.17969-0.050781-0.085938-0.11328-0.16797-0.18359-0.24219-0.15234-0.125-0.32031-0.23828-0.5-0.32812-0.097656-0.035157-0.20312-0.058594-0.30859-0.074219-0.066406-0.023438-0.13672-0.039063-0.21094-0.054688-0.035156 0-0.058594 0.011719-0.089844 0.011719-0.054688 0.003906-0.10938 0.007812-0.16797 0.019531-0.33203 0.003907-0.64844 0.125-0.89844 0.34375-3.8164 2.1094-6.9297 5.293-8.9492 9.1562-0.99219-1.8789-2.1602-3.6562-3.4883-5.3125-0.019532-0.023437-0.046875-0.035156-0.066406-0.054687-0.074219-0.074219-0.15625-0.14062-0.24609-0.19922-0.074219-0.0625-0.15234-0.11328-0.23438-0.16016-0.089844-0.039063-0.18359-0.066407-0.27734-0.085938-0.097656-0.03125-0.19922-0.050781-0.30078-0.0625-0.03125 0-0.058594-0.019531-0.089844-0.019531-0.074219 0.011719-0.14453 0.023438-0.21094 0.042969-0.10156 0.011719-0.19922 0.03125-0.29297 0.058593-0.10547 0.039063-0.20703 0.089844-0.30078 0.15234-0.0625 0.027344-0.12109 0.054688-0.17578 0.089844-0.023437 0.019531-0.03125 0.046875-0.054687 0.066406-0.078125 0.074219-0.14453 0.15625-0.20312 0.24609-0.058594 0.074219-0.11328 0.15234-0.16016 0.23828-0.035156 0.085938-0.0625 0.17578-0.082031 0.26562-0.03125 0.10547-0.054687 0.21094-0.0625 0.32031 0 0.027343-0.015625 0.054687-0.015625 0.082031l-0.0039062 16.219c0.023438 0.84766 0.71484 1.5234 1.5625 1.5234s1.543-0.67578 1.5625-1.5234v-11.168c0.65625 1.1367 1.207 2.3242 1.6523 3.5547 0.53516 1.3867 0.78125 2.8711 0.72266 4.3555-0.12891 0.84766 0.45312 1.6406 1.3008 1.7734 0.082031 0.011719 0.16406 0.019531 0.25 0.019531 0.76562 0 1.418-0.55859 1.5391-1.3125 0.14844-1.7891-0.082032-3.5859-0.67969-5.2773 1.4336-3.5859 3.8086-6.7148 6.8711-9.0664 0.30859 4 1.1133 7.9414 2.4023 11.742-0.36328 1.2188-0.54688 2.0078-0.54688 2.0078v-0.003906c-0.19141 0.83984 0.32812 1.6719 1.1641 1.8711 0.11328 0.023437 0.23047 0.039062 0.35156 0.039062 0.72656-0.003906 1.3555-0.50391 1.5195-1.2148 0.007813-0.027343 0.21094-0.91406 0.63281-2.2812 1.1445-3.8828 2.8594-7.5703 5.0938-10.949 1.0664-1.5664 2.3789-2.9531 3.8867-4.1055-0.73047 4.4844-0.65234 9.0625 0.23828 13.52 0.29687 1.5195 0.70703 3.0156 1.2148 4.4727 0.30469 0.80859 1.207 1.2188 2.0156 0.91406 0.80469-0.30469 1.2148-1.2031 0.91016-2.0117-0.36328-1.0742-0.66797-2.168-0.91406-3.2773 1.8359-2.2305 7.8281-10.129 9.1445-19.555 2.3828 5.1641 3.6641 10.766 3.7656 16.449 0 0.085937 0.007813 0.13672 0.011719 0.19922-0.76953 2.293-1.2539 4.6719-1.4414 7.0859-0.03125 0.85938 0.63672 1.5859 1.4961 1.625h0.066407 0.003906c0.83594-0.003906 1.5234-0.66406 1.5586-1.5 0.60547-6.9844 3.8359-13.48 9.043-18.176 0.86328-0.76172 1.7734-1.4648 2.7305-2.0977-0.80078 5.8555-0.41016 11.812 1.1484 17.512-0.26562 1.2109-0.44922 2.4375-0.54688 3.6719 0 0.85156 0.6875 1.543 1.5391 1.5469h0.019531c0.85156-0.007812 1.543-0.6875 1.5664-1.5352 0.12109-1.1797 0.3125-2.3516 0.57422-3.5078 0.66797-3.2578 1.7188-6.4258 3.1328-9.4336 1.6328 5.8906 5.8672 11.699 6.1016 12.012 0.023438 0.03125 0.066407 0.046874 0.089844 0.074218 0.10547 0.12891 0.23438 0.23828 0.37891 0.32031 0.054688 0.035156 0.10547 0.066406 0.16406 0.09375 0.1875 0.089843 0.39453 0.13672 0.60547 0.14062h0.019531 0.007813-0.003907c0.085938 0 0.17188-0.007813 0.25391-0.019532 0.22656-0.042968 0.44141-0.13281 0.62891-0.26953 0.011718-0.007812 0.027344 0 0.039062-0.011719 0.058594-0.058593 0.11719-0.12109 0.16797-0.1875 0.074219-0.066406 0.14062-0.14062 0.19922-0.22266 0.089844-0.17578 0.16406-0.36328 0.22656-0.55469 0.003906-0.18359 0.011719-0.37109 0.015625-0.55859-0.011719-0.058594-0.83594-5.4336 1.3438-13.5 0.67188 0.75781 1.3008 1.5156 1.8711 2.2812 1.0586 1.3711 2.0195 2.8164 2.875 4.3242 1.375 2.3281 2.4062 4.8398 3.0625 7.4609 0.14453 0.73438 0.78906 1.2617 1.5352 1.2656 0.10156 0 0.20312-0.011718 0.30078-0.03125 0.84375-0.16016 1.3984-0.97656 1.2383-1.8242-0.67578-2.7891-1.7422-5.4648-3.168-7.9531 0.25391-2.0117 0.82422-3.9688 1.6992-5.7969 1.0859 2.8242 2.6914 5.418 4.7266 7.6562-0.47656 0.57812-0.99219 1.1211-1.543 1.625-0.17188 0.15625-0.33594 0.32422-0.48828 0.5-0.32422 0.47656-0.35938 1.0898-0.09375 1.5977 0.26953 0.51172 0.79688 0.82812 1.3711 0.83203 0.52344 0 1.0195-0.23828 1.3477-0.64844 1.0156-0.9375 1.9258-1.9805 2.7188-3.1094 1.0078-1.4219 1.8867-2.9297 2.625-4.5078v13.121c0.023438 0.84766 0.71484 1.5234 1.5625 1.5234s1.543-0.67578 1.5625-1.5234v-22.102c-0.003906-0.03125-0.023437-0.070312-0.027344-0.10938zm-11.785-11.023c2.7539-1.8281 6.25-1.8594 8.2695-1.6836-0.62109 1.9258-2 5.1289-4.7305 6.9531-2.7461 1.8242-6.2422 1.8711-8.2656 1.707 0.62109-1.9375 2-5.1562 4.7266-6.9766zm-42.102-35.328c-1.6953-1.2617-2.9844-2.9922-3.707-4.9805-0.082031-0.21484-0.14453-0.39844-0.21094-0.60156 2.3164-0.23828 4.6484 0.26172 6.6602 1.4297 1.8594 1.4062 3.2227 3.3672 3.9023 5.5977-2.3125 0.23047-4.6406-0.27734-6.6484-1.4453zm-13.02 19.035c3.6367-2.4453 8.3359-2.3594 10.762-2.1133-0.71094 2.3398-2.4453 6.7148-6.082 9.1406-3.6602 2.4258-8.3516 2.3555-10.773 2.1133 0.70313-2.3359 2.4297-6.7109 6.0938-9.1406zm-23.461 20.324c-3.6406-2.4453-5.3789-6.8125-6.0898-9.1484 2.4297-0.25 7.1289-0.33594 10.766 2.0859 3.6602 2.4453 5.3867 6.8125 6.0898 9.1445-2.4219 0.25-7.1133 0.33984-10.766-2.082zm14.504-29.938c-1.2578 0-2.2773-1.0195-2.2773-2.2812v-0.60156 0.003906c0-0.52344-0.26172-1.0078-0.69531-1.2969-0.43359-0.29297-0.98438-0.34766-1.4648-0.14844-0.19141 0.082031-0.36328 0.19531-0.51172 0.33984l-0.42187 0.42188c-0.89453 0.89844-2.3477 0.89844-3.2422 0-0.89453-0.89453-0.89453-2.3477 0-3.2422l0.42188-0.42188c0.14453-0.14453 0.26172-0.31641 0.34375-0.51172 0.078125-0.1875 0.11719-0.39453 0.12109-0.59766 0-0.019531-0.011719-0.035156-0.011719-0.054687v-0.003906c-0.003906-0.18359-0.042969-0.36719-0.10938-0.53906-0.070313-0.14844-0.16016-0.28906-0.26953-0.41016-0.027344-0.03125-0.035156-0.070313-0.066406-0.10156v0.003906c-0.14453-0.14453-0.31641-0.25781-0.50391-0.33594-0.19141-0.082031-0.39453-0.12109-0.60156-0.12109h-0.60547c-1.2695 0-2.3008-1.0312-2.3008-2.3008s1.0312-2.3008 2.3008-2.3008h0.60156c0.21094 0 0.41797-0.042969 0.61328-0.125l0.046875-0.035157c0.17188-0.078124 0.32812-0.1875 0.46094-0.32422 0.007813-0.007813 0.015625-0.011719 0.023438-0.015625l0.003906-0.003907c0.042969-0.058593 0.078125-0.12109 0.11328-0.1875 0.16016-0.17969 0.25-0.41016 0.25391-0.64844 0.023437-0.074219 0.035156-0.14844 0.046874-0.22266 0-0.011719-0.007812-0.019531-0.007812-0.03125-0.007812-0.12109-0.035156-0.24609-0.074219-0.36328-0.011719-0.078126-0.027343-0.15625-0.054687-0.23047-0.039063-0.070313-0.085938-0.13672-0.13672-0.19922-0.058594-0.10547-0.12891-0.20312-0.21094-0.29297-0.007813-0.007812-0.011719-0.019531-0.019532-0.027343l-0.38281-0.34766h0.003906c-0.89844-0.89844-0.90625-2.3555-0.011719-3.2617 0.90625-0.875 2.3398-0.87891 3.2539-0.007812l0.42187 0.42188c0.44531 0.44531 1.1172 0.57812 1.6992 0.33984 0.58594-0.24219 0.96484-0.80859 0.96875-1.4414v-0.57422c-0.035156-0.63281 0.19141-1.25 0.625-1.707 0.43359-0.46094 1.0391-0.71875 1.6719-0.71875 0.63281 0 1.2344 0.25781 1.6719 0.71875 0.43359 0.45703 0.66016 1.0742 0.625 1.707v0.57422c0 0.52344 0.26172 1.0078 0.69531 1.2969 0.43359 0.28906 0.98047 0.34375 1.4648 0.14453 0.1875-0.074219 0.36328-0.19141 0.50781-0.33594l0.42188-0.42188v-0.003906c0.89453-0.90625 2.3516-0.91797 3.2578-0.023438 0.90625 0.89063 0.91797 2.3477 0.027343 3.2539l-0.42578 0.39062c-0.007812 0.007812-0.011719 0.019531-0.019531 0.027344h0.003906c-0.12109 0.16406-0.23828 0.33203-0.35156 0.5-0.023437 0.074218-0.039062 0.15234-0.054687 0.23047-0.035156 0.11719-0.0625 0.24219-0.070313 0.36719-0.003906 0.007812-0.003906 0.019531-0.007812 0.027344 0.011719 0.074218 0.023438 0.14844 0.046875 0.22266 0.003906 0.23828 0.09375 0.46875 0.25391 0.64844 0.03125 0.066407 0.070313 0.12891 0.11328 0.19141 0.007813 0.007812 0.015626 0.007812 0.023438 0.015624 0.13281 0.13672 0.28906 0.24609 0.46484 0.32422 0.019531 0.007813 0.03125 0.027344 0.050781 0.03125l-0.003906 0.003907c0.19531 0.082031 0.40234 0.125 0.61328 0.125h0.57422c0.92188-0.011719 1.7578 0.53125 2.1211 1.375 0.12109 0.29687 0.1875 0.61719 0.19141 0.9375-0.007813 1.2695-1.043 2.2891-2.3086 2.2812h-0.57031c-0.20703 0.003906-0.41016 0.042968-0.60156 0.12109-0.1875 0.082031-0.35547 0.19531-0.5 0.33984-0.027344 0.027344-0.035156 0.066406-0.0625 0.10156v-0.003907c-0.24609 0.25781-0.37891 0.59766-0.37891 0.94922 0 0.019531-0.011719 0.035156-0.011719 0.058594 0 0.41797 0.16797 0.81641 0.46484 1.1094l0.41797 0.41797c0.43359 0.42578 0.67969 1.0117 0.67969 1.6211s-0.24609 1.1914-0.67969 1.6211c-0.43359 0.43359-1.0234 0.67578-1.6328 0.67578h-0.011719c-0.60547 0-1.1836-0.24219-1.6016-0.67578l-0.42188-0.42188c-0.44922-0.44922-1.1172-0.58203-1.7031-0.33984-0.58203 0.23828-0.96484 0.80859-0.96875 1.4375v0.60156c-0.003906 0.60938-0.25 1.1953-0.68359 1.6211-0.4375 0.42969-1.0234 0.66797-1.6367 0.66016zm38.375-4.2812h0.003907c2.0117-1.168 4.3398-1.6758 6.6562-1.4453-0.10547 0.32031-0.23438 0.66797-0.38672 1.0312-0.73438 1.8164-1.9531 3.3945-3.5234 4.5664-2.0078 1.168-4.332 1.6758-6.6445 1.4492 0.67578-2.2305 2.0391-4.1914 3.8984-5.6016zm-5.8711-20.27c-0.29297 0.29297-0.45703 0.69141-0.45703 1.1055v0.36719c0 0.90625-1.6289 0.94531-1.6289 0v-0.36719c-0.003906-0.41406-0.16797-0.8125-0.46094-1.1055-0.007812-0.007813-0.015624-0.007813-0.023437-0.015626-0.26172-0.26172-0.60938-0.41016-0.97656-0.41797-0.035156 0-0.066406-0.019532-0.10156-0.019532h0.003906c-0.41406 0-0.80859 0.16797-1.1016 0.45703l-0.25 0.25c-0.32812 0.3125-0.83594 0.33203-1.1797 0.039062-0.32422-0.33203-0.33203-0.85938-0.015625-1.1992l0.26562-0.26953c0.007813-0.007812 0.007813-0.015625 0.015625-0.023437 0.26172-0.26562 0.41406-0.61719 0.42188-0.98828 0-0.03125 0.015625-0.058594 0.015625-0.089844 0-0.41406-0.16797-0.8125-0.45703-1.1055-0.007812-0.007813-0.019531-0.011719-0.027344-0.019531v0.003906c-0.26953-0.26953-0.63281-0.42188-1.0117-0.42578-0.023438 0-0.042969-0.011719-0.0625-0.011719h-0.36328c-0.21875 0.003906-0.42969-0.074219-0.58594-0.22656-0.15625-0.14844-0.24219-0.35938-0.24609-0.57422 0-0.22266 0.085937-0.43359 0.24219-0.58984s0.36719-0.24219 0.58984-0.23828h0.36328c0.39844 0 0.78516-0.15625 1.0703-0.4375 0.007812-0.007813 0.019531-0.011719 0.03125-0.019532 0.28906-0.29297 0.45703-0.6875 0.45703-1.1016 0-0.03125-0.015625-0.058594-0.015625-0.085938v-0.003906c-0.007812-0.37109-0.16016-0.72656-0.42188-0.98828-0.007812-0.007813-0.007812-0.015625-0.015625-0.023437l-0.25391-0.25391 0.003906-0.003906c-0.32031-0.32422-0.33594-0.83594-0.039062-1.1797 0.33594-0.3125 0.85547-0.32031 1.2031-0.015626l0.26953 0.26953c0.14453 0.14453 0.31641 0.26172 0.50781 0.33984 0.48438 0.19531 1.0312 0.14062 1.4648-0.14844s0.69531-0.77344 0.69531-1.2969v-0.375c0-0.94531 1.6328-0.90625 1.6289 0v0.36328c0.003906 0.63281 0.38672 1.1992 0.96875 1.4375 0.58203 0.24219 1.2539 0.10938 1.7031-0.33594l0.25-0.25391c0.32812-0.3125 0.83594-0.32422 1.1797-0.035156 0.32422 0.33203 0.33203 0.85938 0.015624 1.1992l-0.26562 0.26953c-0.007813 0.007813-0.011719 0.015625-0.015626 0.023438-0.13672 0.14062-0.24609 0.30469-0.32031 0.48438-0.0625 0.16016-0.09375 0.32812-0.097656 0.5 0 0.03125-0.019532 0.058593-0.019532 0.089843 0 0.20703 0.039063 0.41016 0.12109 0.60156 0.078125 0.1875 0.19141 0.36328 0.33984 0.50781 0.007812 0.007812 0.019531 0.011718 0.03125 0.019531h-0.003906c0.28906 0.27734 0.67188 0.43359 1.0742 0.43359h0.36328c0.21875-0.007812 0.43359 0.074219 0.59375 0.22656 0.15625 0.15625 0.24609 0.36719 0.24609 0.58594 0 0.22266-0.089844 0.43359-0.24609 0.58594-0.16016 0.15234-0.375 0.23828-0.59375 0.23047h-0.36328c-0.035156 0-0.0625 0.015625-0.09375 0.019531l-0.003906-0.003906c-0.36719 0.007812-0.71875 0.16016-0.98047 0.42188-0.007813 0.007812-0.019532 0.007812-0.023438 0.015625-0.29297 0.29297-0.45703 0.69141-0.46094 1.1055 0 0.03125 0.015626 0.058594 0.019532 0.089844 0.003906 0.37109 0.15625 0.72656 0.41797 0.98828 0.007813 0.007812 0.007813 0.015624 0.015626 0.023437l0.25391 0.25391c0.32812 0.32812 0.33594 0.85938 0.023437 1.1992-0.33594 0.31641-0.85547 0.32812-1.1992 0.023438l-0.26953-0.27344h-0.003906c-0.28906-0.29297-0.6875-0.45703-1.0977-0.46094-0.035157 0-0.066407 0.019532-0.10156 0.019532v0.003906c-0.16797 0.003906-0.33203 0.039062-0.49219 0.097656-0.17969 0.074219-0.34375 0.18359-0.48047 0.32031-0.019531 0.003906-0.03125 0.003906-0.039062 0.011719zm21.852 41.582c-1.0312-1.8008-2.4531-3.3516-4.1602-4.5312-5.168-3.4883-12.004-2.0234-12.301-1.957-0.10547 0.035156-0.20703 0.078124-0.30078 0.13672-0.082031 0.027344-0.16016 0.0625-0.23438 0.10156-0.085937 0.070312-0.16797 0.14844-0.23438 0.23047-0.070312 0.0625-0.12891 0.12891-0.1875 0.20312-0.046875 0.085938-0.085937 0.17578-0.11719 0.26953-0.046875 0.089844-0.082032 0.18359-0.11328 0.28125-0.007812 0.09375-0.007812 0.1875 0 0.27734-0.011718 0.10547-0.015624 0.20703-0.003906 0.3125 0.054688 0.28906 1.3594 7.1406 6.5195 10.586 2.5664 1.582 5.5352 2.3789 8.5508 2.3008 0.86328 0 1.7266-0.054687 2.5859-0.16016v14.484c-0.42578-0.46094-0.83203-0.91797-1.3008-1.3867-0.011719-0.011718-0.03125-0.015625-0.042969-0.027344-0.16797-0.12109-0.34375-0.23047-0.52734-0.32422-0.015624-0.007813-0.027343-0.019532-0.042968-0.023438v-0.003906c-0.074219-0.011719-0.14844-0.023438-0.22266-0.027344-0.10938-0.023437-0.21875-0.039062-0.32813-0.039062-0.10156 0.007812-0.19922 0.027344-0.29297 0.058594-0.21484 0.027343-0.41406 0.12109-0.57031 0.26953-0.0625 0.035156-0.125 0.074219-0.17969 0.11719-0.011719 0.011719-0.015625 0.027344-0.027344 0.039063-0.12109 0.16797-0.23047 0.34766-0.32812 0.53125-0.007813 0.015625-0.019531 0.027343-0.023437 0.042969-1.2812 3.7891-2.0703 7.7266-2.3438 11.715-1.7266-3.1719-3.3789-7.1094-3.1836-10.117-0.003906-0.0625-0.011719-0.12109-0.027344-0.18359 0-0.20312-0.050781-0.40625-0.14844-0.58594-0.039062-0.089843-0.089843-0.17578-0.14844-0.25391-0.0625-0.082031-0.13672-0.16016-0.21875-0.23047-0.039063-0.046876-0.082031-0.089844-0.125-0.12891-0.03125-0.019531-0.066406-0.023437-0.10156-0.042969-0.089843-0.054687-0.1875-0.097656-0.28906-0.12891-0.09375-0.039062-0.19141-0.0625-0.28906-0.082031-0.039063 0-0.070313-0.027344-0.10938-0.03125l-0.003906 0.003906c-0.054687 0.003907-0.10938 0.011719-0.16406 0.023438-0.125 0.003906-0.24609 0.023437-0.36719 0.058593-0.039062 0.011719-0.078125 0.027344-0.11719 0.046876v-0.003907c-0.15625 0.058594-0.30078 0.14453-0.42969 0.25-0.019531 0.015625-0.039062 0.039063-0.058593 0.054688v0.003906c-0.089844 0.066406-0.17188 0.14453-0.24609 0.23047-1.7031 2.5195-3.0703 5.25-4.0703 8.125-0.5625-4.4844-0.33594-9.0312 0.66406-13.438 0.011718-0.074219 0.011718-0.14844 0.007812-0.22266 0.015625-0.10156 0.019532-0.21094 0.011719-0.31641-0.015625-0.10938-0.042969-0.21484-0.085937-0.31641-0.011719-0.070313-0.03125-0.14062-0.054688-0.20703-0.011719-0.019532-0.03125-0.03125-0.039062-0.054688-0.058594-0.09375-0.125-0.17969-0.20313-0.25781-0.10156-0.15625-0.25391-0.27734-0.43359-0.34375-0.089844-0.054688-0.1875-0.10156-0.28906-0.13672-0.023437-0.007813-0.039062-0.023437-0.0625-0.03125v0.003906c-0.078125-0.007812-0.15234-0.011719-0.23047-0.007812-0.23047-0.039063-0.46875-0.007813-0.67969 0.085937-0.054688 0.011719-0.10547 0.027344-0.15625 0.042969-0.027344 0.011719-0.050781 0.03125-0.078125 0.046875s-0.054687 0.027344-0.078125 0.046875h-0.003906c-1.2305 0.62891-2.4141 1.3438-3.543 2.1406v-30.266c0.86719 0.12891 1.7422 0.19531 2.6172 0.19141 2.6328 0.070313 5.2305-0.62891 7.4727-2.0117 1.0117-0.69531 1.9102-1.543 2.6562-2.5195 0.34766 0.39062 0.76562 0.71094 1.2305 0.94922-0.13672 0.39062-0.21875 0.80078-0.23828 1.2148-0.054687 1.3867 0.58203 2.7109 1.6992 3.5312 1.1172 0.82422 2.5703 1.0352 3.875 0.57031 0.48828 0.92578 1.293 1.6484 2.2695 2.0273zm-1.1445 5.0117c-2.0234 0.16406-5.5156 0.12109-8.2617-1.6992-2.7305-1.8242-4.1094-5.0273-4.7344-6.9531 2.0156-0.17188 5.5-0.13281 8.2383 1.7109 2.7461 1.8203 4.1328 5.0156 4.7578 6.9414zm4.0508-18.863h-0.003906c-0.078125 0.1875-0.11719 0.39062-0.11719 0.59766v0.42188c0 0.67578-0.54688 1.2227-1.2227 1.2227s-1.2227-0.54688-1.2227-1.2227v-0.42188c-0.003906-0.62891-0.38672-1.1992-0.96875-1.4375-0.58203-0.24219-1.2539-0.10547-1.6992 0.33984l-0.30078 0.30078v-0.003907c-0.47656 0.47656-1.25 0.47656-1.7266 0-0.47656-0.47656-0.47656-1.25 0-1.7266l0.30078-0.30078c0.007813-0.007813 0.007813-0.019532 0.015626-0.023438 0.26562-0.26172 0.41406-0.61719 0.42187-0.98828 0-0.03125 0.019532-0.058594 0.019532-0.089844-0.003906-0.41406-0.16797-0.80859-0.46094-1.1016-0.007812-0.007812-0.019531-0.011718-0.027344-0.019531v0.003907c-0.14062-0.13281-0.30078-0.24219-0.48047-0.31641-0.16797-0.066406-0.34766-0.10156-0.53125-0.10547-0.023438 0-0.039063-0.011718-0.0625-0.011718h-0.44922l-0.003906-0.003906c-0.67188-0.007813-1.2148-0.55078-1.2227-1.2227 0.003907-0.16406 0.03125-0.32422 0.085938-0.47656 0.20703-0.44531 0.64844-0.73438 1.1367-0.74609h0.45312c0.39844 0.003906 0.78516-0.15234 1.0703-0.43359 0.007813-0.007812 0.019532-0.011719 0.03125-0.019531 0.29297-0.29297 0.45703-0.6875 0.46094-1.0977 0-0.03125-0.015625-0.058594-0.019532-0.085938v-0.003906c-0.003906-0.17188-0.039062-0.34375-0.097656-0.50781-0.078125-0.17578-0.18359-0.33984-0.32031-0.48047-0.007813-0.007813-0.007813-0.019531-0.015625-0.023438l-0.30078-0.30078c-0.47656-0.47656-0.47656-1.25-0.003907-1.7266 0.47656-0.47656 1.25-0.48047 1.7266-0.003907l0.30078 0.30078c0.14453 0.14453 0.32031 0.26172 0.50781 0.33984 0.19141 0.078125 0.39453 0.12109 0.60156 0.12109 0.023438 0 0.042969-0.011719 0.066406-0.011719v-0.003906c0.17969-0.003906 0.35938-0.039063 0.52734-0.10547 0.17969-0.074218 0.34375-0.18359 0.48047-0.31641 0.007812-0.007812 0.019531-0.011719 0.027343-0.019531 0.29297-0.29297 0.46094-0.6875 0.46094-1.1055v-0.45703c0-0.67578 0.54688-1.2227 1.2227-1.2227 0.67188 0 1.2227 0.54688 1.2227 1.2227v0.42969c0 0.20312 0.039063 0.40625 0.12109 0.59766 0.078125 0.19141 0.19141 0.36328 0.33594 0.50781 0.007812 0.007813 0.019531 0.011719 0.027344 0.019531 0.26953 0.26562 0.62891 0.41797 1.0078 0.42188 0.023438 0 0.042969 0.011719 0.066406 0.011719v0.003906c0.41797-0.003906 0.8125-0.16797 1.1094-0.46094l0.30078-0.30078h-0.003906c0.23047-0.22656 0.53906-0.35547 0.86328-0.35547 0.32422 0 0.63672 0.12891 0.86328 0.35547 0.47656 0.47656 0.47656 1.25 0 1.7266l-0.30078 0.30078c-0.007813 0.007813-0.007813 0.015625-0.015626 0.023438-0.13672 0.14062-0.24219 0.30469-0.32031 0.48438-0.058594 0.16016-0.09375 0.32812-0.097656 0.5 0 0.03125-0.019532 0.058594-0.019532 0.089844 0.003907 0.41406 0.16797 0.80859 0.46094 1.1016 0.007812 0.007812 0.019531 0.011719 0.03125 0.019531 0.28516 0.27734 0.66797 0.43359 1.0703 0.43359h0.42578-0.003906c0.66406 0.019531 1.1875 0.55859 1.1875 1.2227 0 0.66016-0.52344 1.2031-1.1875 1.2227h-0.42578c-0.023437 0-0.039062 0.011718-0.0625 0.011718-0.17969 0.003906-0.35938 0.039063-0.53125 0.10938-0.17578 0.074219-0.33984 0.17969-0.47656 0.3125-0.007813 0.007813-0.019532 0.011719-0.027344 0.019531-0.29297 0.29297-0.45703 0.6875-0.46094 1.1016 0 0.03125 0.015626 0.058594 0.019532 0.089844 0.003906 0.37109 0.15625 0.72656 0.41797 0.98828 0.007813 0.007812 0.007813 0.015625 0.015626 0.023438l0.30078 0.30078c0.23438 0.22656 0.37109 0.53906 0.37109 0.86719 0.003907 0.32812-0.125 0.64062-0.35547 0.87109-0.23438 0.23438-0.54688 0.36328-0.875 0.35938s-0.64062-0.14062-0.86719-0.375l-0.30078-0.30078c-0.36719-0.36719-0.89844-0.52734-1.4102-0.42578-0.51172 0.10156-0.9375 0.44922-1.1406 0.93359zm-38.93 43.508c0.023438 0.28906 0.5625 7.1016-3.4102 11.367v0.003906c-0.58594 0.63281-1.5742 0.66797-2.207 0.082032-0.63281-0.58984-0.66797-1.5781-0.082031-2.2109 3.0156-3.2461 2.5898-8.9219 2.5859-8.9766-0.070312-0.85938 0.56641-1.6133 1.4258-1.6836 0.41016-0.042969 0.82422 0.085938 1.1406 0.35547 0.31641 0.26562 0.51562 0.64844 0.54687 1.0625zm13.801-0.16406h-0.003906c0.33984 0.24219 0.56641 0.60938 0.63281 1.0195 0.070312 0.41016-0.03125 0.82812-0.27344 1.1641-2.1758 2.9805-3.3008 6.5977-3.2031 10.289 0.082031 0.85547-0.54297 1.6133-1.3984 1.6992-0.050781 0.007813-0.10156 0.007813-0.15234 0.007813-0.80078 0-1.4688-0.60156-1.5508-1.3984-0.19531-4.4492 1.1328-8.832 3.7695-12.422 0.50391-0.69922 1.4727-0.85938 2.1758-0.35938zm24.262 5c0.19922 0.27344 1.9727 2.8281 1.5391 7.7578h-0.003906c-0.070313 0.80469-0.74609 1.4258-1.5547 1.4258-0.046875 0-0.09375 0-0.14062-0.007812-0.41406-0.035157-0.79688-0.23438-1.0625-0.55078s-0.39453-0.72656-0.35547-1.1406c0.32812-3.7422-0.89844-5.5664-0.95313-5.6445-0.49219-0.70312-0.32812-1.668 0.36719-2.1719 0.6875-0.5 1.6523-0.35156 2.1562 0.33594zm-54.117 1.4141c-0.91016 1.7773-1.0625 3.8477-0.42188 5.7422 0.25781 0.82422-0.19922 1.6992-1.0234 1.957-0.82422 0.25781-1.7031-0.20313-1.9609-1.0273-0.90234-2.7539-0.63672-5.7617 0.74219-8.3125 0.46094-0.72266 1.4141-0.94141 2.1406-0.49219 0.72656 0.44922 0.96094 1.3984 0.52344 2.1328zm30.391-82.73c0.089844 0.18359 0.13281 0.39062 0.125 0.59375 0.003906 0.20312-0.039062 0.40625-0.125 0.59375-0.074219 0.19141-0.19141 0.36328-0.34375 0.5-0.28906 0.29297-0.68359 0.46094-1.0938 0.46875-0.20312-0.011719-0.40234-0.050781-0.59375-0.125-0.19141-0.078125-0.35938-0.19531-0.5-0.34375-0.15234-0.13672-0.26953-0.30859-0.34375-0.5-0.085938-0.1875-0.12891-0.39062-0.125-0.59375-0.007812-0.20312 0.035156-0.41016 0.125-0.59375 0.066406-0.20312 0.18359-0.39062 0.34375-0.53125 0.14062-0.14062 0.3125-0.24609 0.5-0.3125 0.57422-0.25 1.2383-0.125 1.6875 0.3125 0.16016 0.14453 0.27734 0.32812 0.34375 0.53125zm24.344 25.75c0.29297 0.28906 0.45703 0.68359 0.46875 1.0938-0.015625 0.41797-0.18359 0.81641-0.46875 1.125-0.29688 0.28516-0.69141 0.44141-1.1016 0.4375-0.41797 0.015625-0.82422-0.14062-1.1211-0.4375s-0.45703-0.70703-0.4375-1.125c-0.003906-0.41016 0.15234-0.80078 0.4375-1.0938 0.15234-0.15234 0.33203-0.26562 0.53125-0.34375 0.58203-0.22656 1.2422-0.09375 1.6914 0.34375z"></path> | |
| 1487 | +</svg> | |
| 1488 | +</div> | |
| 1489 | + <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="color: var(--color_1); font-weight: bold; display: initial;">TERRAIN PRIVÉ</strong></p></div> | |
| 1490 | +</div> | |
| 1491 | + <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="1945689351">Un cube noir et blanc avec une porte et des fenêtres sur fond blanc.</title> | |
| 1492 | + <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> | |
| 1493 | +</svg> | |
| 1494 | +</div> | |
| 1495 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1641948639" style="transition: opacity 1s ease-in-out;"><p style="letter-spacing: 0.05em; line-height: 1.6;" class="text-align-center"><strong style="display: initial;">UNITÉS SPACIEUSES</strong><span style="display: initial;"><br/></span></p></div> | |
| 1496 | +</div> | |
| 1497 | + <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="1728717536">Un dessin en noir et blanc d'un flocon de neige sur fond blanc.</title> | |
| 1498 | + <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> | |
| 1499 | + <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> | |
| 1500 | + <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> | |
| 1501 | + <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> | |
| 1502 | + <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> | |
| 1503 | + <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> | |
| 1504 | + <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> | |
| 1505 | + <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> | |
| 1506 | + <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> | |
| 1507 | + <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> | |
| 1508 | + <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> | |
| 1509 | + <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> | |
| 1510 | + <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> | |
| 1511 | + <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> | |
| 1512 | + <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> | |
| 1513 | + <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> | |
| 1514 | + <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> | |
| 1515 | + <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> | |
| 1516 | + <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> | |
| 1517 | + <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> | |
| 1518 | + <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> | |
| 1519 | + <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> | |
| 1520 | + <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> | |
| 1521 | + <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> | |
| 1522 | +</g> | |
| 1523 | +</svg> | |
| 1524 | +</div> | |
| 1525 | + <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> | |
| 1526 | +</div> | |
| 1527 | +</div> | |
| 1528 | +</div> | |
| 1529 | + <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" data-icon-name="Parking_7761385.svg"> <title id="1040182452">La lettre p est dans un carré sur fond blanc.</title> | |
| 1530 | + <path d="m53.125 21.875h-12.5c-1.7266 0-3.125 1.3984-3.125 3.125v50c0 1.7266 1.3984 3.125 3.125 3.125s3.125-1.3984 3.125-3.125v-21.875h9.375c8.6133 0 15.625-7.0117 15.625-15.625s-7.0117-15.625-15.625-15.625zm0 25h-9.375v-18.75h9.375c5.168 0 9.375 4.207 9.375 9.375s-4.207 9.375-9.375 9.375zm18.75-40.625h-43.75c-12.062 0-21.875 9.8125-21.875 21.875v43.75c0 12.062 9.8125 21.875 21.875 21.875h43.75c12.062 0 21.875-9.8125 21.875-21.875v-43.75c0-12.062-9.8125-21.875-21.875-21.875zm15.625 65.625c0 8.6133-7.0117 15.625-15.625 15.625h-43.75c-8.6133 0-15.625-7.0117-15.625-15.625v-43.75c0-8.6133 7.0117-15.625 15.625-15.625h43.75c8.6133 0 15.625 7.0117 15.625 15.625z"></path> | |
| 1531 | +</svg> | |
| 1532 | +</div> | |
| 1533 | + <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="font-weight: bold; display: initial; color: var(--color_1);">STATIONNEMENT</strong></p></div> | |
| 1534 | +</div> | |
| 1535 | + <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> | |
| 1536 | +</svg> | |
| 1537 | +</a> | |
| 1538 | +</div> | |
| 1539 | + <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> | |
| 1540 | +</div> | |
| 1541 | + <div class="dmRespCol small-12 medium-4 large-4" id="1443466153"> <div class="graphicWidget graphicWidgetV2 graphicWidgetV3" data-element-type="graphic" data-widget-type="graphic" id="1406295359"> <a href="/" id="1950376377" aria-label="Dog_3202789.svg"> <svg width="100%" height="100%" version="1.1" viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" id="1886445913" class="svg u_1886445913" data-icon-custom="true" data-icon-name="Dog_3202789.svg"> <g> <path d="m56.102 84.801-2.5 8 0.10156 0.30078c0.5 1.8984 2.3984 3 4.3008 2.6016 2-0.39844 3.3008-2.3008 2.8984-4.3008l-1.1992-6.1992z"></path> | |
| 1542 | + <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> | |
| 1543 | + <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> | |
| 1544 | + <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> | |
| 1545 | + <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> | |
| 1546 | + <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> | |
| 1547 | + <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> | |
| 1548 | +</g> | |
| 1549 | +</svg> | |
| 1550 | +</a> | |
| 1551 | +</div> | |
| 1552 | + <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="display: initial; font-weight: bold;">CHAT ET CHIEN ACCEPTÉ</strong></p><p class="text-align-center"><span style="display: initial; font-style: italic;">(sous conditions)</span></p></div> | |
| 1553 | +</div> | |
| 1554 | +</div> | |
| 1555 | +</div> | |
| 1556 | + <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> | |
| 1557 | +</div> | |
| 1558 | +</div> | |
| 1559 | +</div> | |
| 1560 | + <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ÉS</span></h2> | |
| 1561 | +</div> | |
| 1562 | +</div> | |
| 1563 | + <div class="u_1158007567 dmRespCol small-12 large-8 medium-8" id="1158007567"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1877599422"><p><span style="color: var(--color_3); display: initial;">Situés sur l'avenue de l'Érable, dans un secteur paisible de New Richmond, nos jumelés locatifs vous offrent un emplacement stratégique qui allie tranquillité résidentielle et proximité des services essentiels.</span></p><p><br/></p><p><span style="color: var(--color_3); display: initial;">Profitez d’un accès rapide à tout ce qui simplifie votre quotidien : épiceries, pharmacies, restaurants, centre de santé, écoles, commerces de proximité et installations sportives. Vous êtes également à quelques minutes seulement des plages de la baie des Chaleurs, de la piste cyclable et des nombreux attraits touristiques de la région.</span></p></div> | |
| 1564 | +</div> | |
| 1565 | +</div> | |
| 1566 | +</div> | |
| 1567 | + <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> | |
| 1568 | +</div> | |
| 1569 | +</div> | |
| 1570 | +</div> | |
| 1571 | + <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> | |
| 1572 | +</div> | |
| 1573 | +</div> | |
| 1574 | +</div> | |
| 1575 | +</div> | |
| 1576 | + <div class="dmRespRow" id="1895177592"> <div class="dmRespColsWrapper" id="1370102391"> <div class="u_1515200283 dmRespCol small-12 large-4 medium-4" id="1515200283"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1766789273"> <h3><span style="display: unset;">Découvrez votre futur jumelé</span></h3> | |
| 1577 | + <h3><span style="display: unset;">grâce à une visite virtuelle</span></h3> | |
| 1578 | +</div> | |
| 1579 | +</div> | |
| 1580 | + <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;">Plongez au cœur de votre futur chez-vous grâce à notre visite virtuelle immersive. Explorez chaque pièce, admirez la luminosité, les matériaux de qualité et l’agencement bien pensé de nos jumelés locatifs à New Richmond.</span></p></div> | |
| 1581 | +</div> | |
| 1582 | +</div> | |
| 1583 | +</div> | |
| 1584 | + <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="1405649320"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Jumel%C3%A9+New+Richmond+-+Cuisine+repas-1920w.png" id="1785623152" alt="Une cuisine avec un grand îlot au milieu et une salle à manger en arrière-plan." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1047988713"></div> | |
| 1585 | + <div class="slide-inner" id="1033663943"> <div class="text-wrapper" id="1116334688"> <h3 class="slide-title" id="1113765567">Titre de la diapositive</h3> | |
| 1586 | + <div class="slide-text richText" id="1544279324">Écrivez votre légende ici</div> | |
| 1587 | +</div> | |
| 1588 | + <div class="slide-button dmWidget clearfix" id="1167028437"> <span class="iconBg" id="1845620587"> <span class="icon hasFontIcon icon-star" id="1944804105"></span> | |
| 1589 | +</span> | |
| 1590 | + <span class="text" id="1856154389">Bouton</span> | |
| 1591 | +</div> | |
| 1592 | +</div> | |
| 1593 | +</li> | |
| 1594 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1785102729"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Jumel%C3%A9+New+Richmond+-+Cuisine-1920w.png" id="1927703088" alt="Un salon avec une cuisine, une salle à manger et des chaises à bascule." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1923953706"></div> | |
| 1595 | + <div class="slide-inner" id="1696462044"> <div class="text-wrapper" id="1802481059"> <h3 class="slide-title" id="1593072604">Titre de la diapositive</h3> | |
| 1596 | + <div class="slide-text richText" id="1233675848">Écrivez votre légende ici</div> | |
| 1597 | +</div> | |
| 1598 | + <div class="slide-button dmWidget clearfix" id="1884949822"> <span class="iconBg" id="1474118241"> <span class="icon hasFontIcon icon-star" id="1910355648"></span> | |
| 1599 | +</span> | |
| 1600 | + <span class="text" id="1026564721">Bouton</span> | |
| 1601 | +</div> | |
| 1602 | +</div> | |
| 1603 | +</li> | |
| 1604 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1074900950"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Jumel%C3%A9+New+Richmond+-+SDB-1920w.png" id="1494407731" alt="Une salle de bain avec WC, lavabo et rideau de douche." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1923898101"></div> | |
| 1605 | + <div class="slide-inner" id="1723180317"> <div class="text-wrapper" id="1771689726"> <h3 class="slide-title" id="1299005715">Titre de la diapositive</h3> | |
| 1606 | + <div class="slide-text richText" id="1172501669">Écrivez votre légende ici</div> | |
| 1607 | +</div> | |
| 1608 | + <div class="slide-button dmWidget clearfix" id="1877317026"> <span class="iconBg" id="1960420785"> <span class="icon hasFontIcon icon-star" id="1989132366"></span> | |
| 1609 | +</span> | |
| 1610 | + <span class="text" id="1369701180">Bouton</span> | |
| 1611 | +</div> | |
| 1612 | +</div> | |
| 1613 | +</li> | |
| 1614 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1925321715"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Jumel%C3%A9+New+Richmond+-+entr%C3%A9e-1920w.png" id="1942552860" alt="Un ensemble d'escaliers menant au deuxième étage d'une maison." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1909971547"></div> | |
| 1615 | + <div class="slide-inner" id="1539587119"> <div class="text-wrapper" id="1133524090"> <h3 class="slide-title" id="1624631389">Titre de la diapositive</h3> | |
| 1616 | + <div class="slide-text richText" id="1141707422">Écrivez votre légende ici</div> | |
| 1617 | +</div> | |
| 1618 | + <div class="slide-button dmWidget clearfix" id="1959884047"> <span class="iconBg" id="1471188667"> <span class="icon hasFontIcon icon-star" id="1064512613"></span> | |
| 1619 | +</span> | |
| 1620 | + <span class="text" id="1881696344">Bouton</span> | |
| 1621 | +</div> | |
| 1622 | +</div> | |
| 1623 | +</li> | |
| 1624 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1059620788"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Jumel%C3%A9+New+Richmond+-+lavage-1920w.png" id="1349850658" alt="Une buanderie avec une laveuse et une sécheuse dans un placard" onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1348875300"></div> | |
| 1625 | + <div class="slide-inner" id="1247955453"> <div class="text-wrapper" id="1769680340"> <h3 class="slide-title" id="1460937906">Titre de la diapositive</h3> | |
| 1626 | + <div class="slide-text richText" id="1238065047">Écrivez votre légende ici</div> | |
| 1627 | +</div> | |
| 1628 | + <div class="slide-button dmWidget clearfix" id="1277602767"> <span class="iconBg" id="1255537450"> <span class="icon hasFontIcon icon-star" id="1402300907"></span> | |
| 1629 | +</span> | |
| 1630 | + <span class="text" id="1254889087">Bouton</span> | |
| 1631 | +</div> | |
| 1632 | +</div> | |
| 1633 | +</li> | |
| 1634 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1743348925"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Jumel%C3%A9+New+Richmond+-+Chambre-1920w.png" id="1014171569" alt="Une chambre avec un lit, une table de chevet et une fenêtre." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1876745655"></div> | |
| 1635 | + <div class="slide-inner" id="1349878596"> <div class="text-wrapper" id="1236649132"> <h3 class="slide-title" id="1253646941">Titre de la diapositive</h3> | |
| 1636 | + <div class="slide-text richText" id="1771481178">Écrivez votre légende ici</div> | |
| 1637 | +</div> | |
| 1638 | + <div class="slide-button dmWidget clearfix" id="1761799647"> <span class="iconBg" id="1773826891"> <span class="icon hasFontIcon icon-star" id="1843513536"></span> | |
| 1639 | +</span> | |
| 1640 | + <span class="text" id="1583495493">Bouton</span> | |
| 1641 | +</div> | |
| 1642 | +</div> | |
| 1643 | +</li> | |
| 1644 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1579650047"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Jumel%C3%A9+New+Richmond+-+Chambre+2-1920w.png" id="1153140849" alt="Une chambre avec un lit et une fenêtre avec des rideaux roses." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1929377450"></div> | |
| 1645 | + <div class="slide-inner" id="1069539375"> <div class="text-wrapper" id="1322374565"> <h3 class="slide-title" id="1867020129">Titre de la diapositive</h3> | |
| 1646 | + <div class="slide-text richText" id="1610949999">Écrivez votre légende ici</div> | |
| 1647 | +</div> | |
| 1648 | + <div class="slide-button dmWidget clearfix" id="1820851518"> <span class="iconBg" id="1873970228"> <span class="icon hasFontIcon icon-star" id="1259619720"></span> | |
| 1649 | +</span> | |
| 1650 | + <span class="text" id="1689624147">Bouton</span> | |
| 1651 | +</div> | |
| 1652 | +</div> | |
| 1653 | +</li> | |
| 1654 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1058947730"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Jumel%C3%A9+New+Richmond+-+Chambre+3-1920w.png" id="1496504930" alt="Une chambre avec un lit, une commode et un placard." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1647401266"></div> | |
| 1655 | + <div class="slide-inner" id="1562178913"> <div class="text-wrapper" id="1201768417"> <h3 class="slide-title" id="1659751113">Titre de la diapositive</h3> | |
| 1656 | + <div class="slide-text richText" id="1284482041">Écrivez votre légende ici</div> | |
| 1657 | +</div> | |
| 1658 | + <div class="slide-button dmWidget clearfix" id="1282487593"> <span class="iconBg" id="1082830285"> <span class="icon hasFontIcon icon-star" id="1016157249"></span> | |
| 1659 | +</span> | |
| 1660 | + <span class="text" id="1321396295">Bouton</span> | |
| 1661 | +</div> | |
| 1662 | +</div> | |
| 1663 | +</li> | |
| 1664 | + <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1965894508"><img dm="true" src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/GIRS+-+Site+Internet+1440x1080-1920w.png" id="1678597002" alt="Une maison blanche avec une terrasse en bois et des escaliers est située au sommet d'un champ verdoyant luxuriant." onerror="handleImageLoadError(this)"/> <div class="color-overlay" id="1853127574"></div> | |
| 1665 | + <div class="slide-inner" id="1082252524"> <div class="text-wrapper" id="1687157569"> <h3 class="slide-title" id="1507140684">Titre de la diapositive</h3> | |
| 1666 | + <div class="slide-text richText" id="1362058528">Écrivez votre légende ici</div> | |
| 1667 | +</div> | |
| 1668 | + <div class="slide-button dmWidget clearfix" id="1208322173"> <span class="iconBg" id="1883691630"> <span class="icon hasFontIcon icon-star" id="1429234723"></span> | |
| 1669 | +</span> | |
| 1670 | + <span class="text" id="1673934697">Bouton</span> | |
| 1671 | +</div> | |
| 1672 | +</div> | |
| 1673 | +</li> | |
| 1674 | +</ul> | |
| 1675 | +</div> | |
| 1676 | +</div> | |
| 1677 | +</div> | |
| 1678 | +</div> | |
| 1679 | +</div> | |
| 1680 | + <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> | |
| 1681 | +</span><span style="display: initial;"><br/></span></h2> | |
| 1682 | +</div> | |
| 1683 | + <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ésitez pas à nous contacter pour découvrir tout ce que vous souhaitez savoir sur les logements, les quartiers et tout ce qui s'y trouve. Nous sommes là pour répondre à toutes vos questions.</span> | |
| 1684 | +</span></p></div> | |
| 1685 | + <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> | |
| 1686 | +</span> | |
| 1687 | + <span class="text" id="1591898475">Contactez-nous</span> | |
| 1688 | +</a> | |
| 1689 | +</div> | |
| 1690 | +</div> | |
| 1691 | +</div> | |
| 1692 | + <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> | |
| 1693 | +</div> | |
| 1694 | +</div> | |
| 1695 | +</div> | |
| 1696 | +</div> | |
| 1697 | + <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;">Entre mer et montagnes, New Richmond vous offre une qualité de vie exceptionnelle au quotidien</span></h3> | |
| 1698 | +</div> | |
| 1699 | +</div> | |
| 1700 | + <div class="u_1585638891 dmRespCol small-12 large-8 medium-8" id="1585638891"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1871869082"><p><span style="display: initial;">Nichée entre les eaux paisibles de la baie des Chaleurs et les collines verdoyantes de la Gaspésie, New Richmond est une destination de choix pour celles et ceux qui recherchent un cadre de vie équilibré, sain et inspirant.</span></p><p><span style="display: initial;"><br/></span></p><p><span style="display: initial;">Vivre dans le quartier de l'avenue des Érables, c’est profiter d’un environnement résidentiel calme, à proximité des commerces, écoles, services de santé, plages, sentiers et espaces verts. Que vous aimiez les sports nautiques, les randonnées, les sorties en vélo ou simplement relaxer en bord de mer, tout est à portée de main.</span></p><p><br/></p><p><span style="display: initial;">Vous serez charmé par l’esprit de communauté chaleureux, les paysages à couper le souffle et la tranquillité qu’offre ce coin de Gaspésie. Un quartier où la nature et le confort se rencontrent, pour un mode de vie tout simplement exceptionnel.</span></p></div> | |
| 1701 | +</div> | |
| 1702 | +</div> | |
| 1703 | +</div> | |
| 1704 | + <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="48.166286" data-lng="-65.854985" data-address="Avenue Des Erables, New Richmond, Quebec G0C 2B0, 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="Avenue Des Erables, New Richmond, Quebec G0C 2B0, Canada" geocompleteaddress="Avenue Des Erables, New Richmond, Quebec G0C 2B0, 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="-65.854985" lat="48.166286" zoom="13"> <div class="mapContainer" style="height: 100%; width: 100%; overflow: hidden; z-index: 0;"></div> | |
| 1705 | +</div> | |
| 1706 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1364636678" style="transition: opacity 1s ease-in-out;"><p class="text-align-center" style="line-height: normal;"><span class="" style="font-style: italic; display: unset;"><span style="font-style: italic; display: unset;">125 à 134 rue des Érables à</span> | |
| 1707 | +</span><strong style="font-style: italic; display: unset; font-weight: bold;">Carleton-sur-Mer</strong></p></div> | |
| 1708 | +</div> | |
| 1709 | +</div> | |
| 1710 | +</div> | |
| 1711 | + <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> | |
| 1712 | +</div> | |
| 1713 | +</div> | |
| 1714 | +</div> | |
| 1715 | + <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> | |
| 1716 | +</div> | |
| 1717 | + <div class="bgExtraLayerOverlay"></div> | |
| 1718 | + <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éduit ?</span> | |
| 1719 | +</span></h2> | |
| 1720 | + <h2 class="text-align-center"><span style="color: var(--color_3); display: unset;">Planifiez votre visite dès aujourd'hui !</span><span style="display: initial;"><br/></span></h2> | |
| 1721 | +</div> | |
| 1722 | + <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> | |
| 1723 | +</span> | |
| 1724 | + <span class="text" id="1461344268">JE PLANIFIE !</span> | |
| 1725 | +</a> | |
| 1726 | +</div> | |
| 1727 | +</div> | |
| 1728 | +</div> | |
| 1729 | +</div> | |
| 1730 | +</div> | |
| 1731 | +</div> | |
| 1732 | +</div> | |
| 1733 | + <div class="sticky-widgets-container-global" id="1915928664"></div> | |
| 1734 | + <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> | |
| 1735 | +</div> | |
| 1736 | +</div> | |
| 1737 | +</div> | |
| 1738 | + <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> | |
| 1739 | +</div> | |
| 1740 | + <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> | |
| 1741 | +</div> | |
| 1742 | + <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> | |
| 1743 | +</div> | |
| 1744 | + <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> | |
| 1745 | +</div> | |
| 1746 | +</div> | |
| 1747 | +</div> | |
| 1748 | + <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écialiste en gestion d’immeubles locatifs, notre équipe saura vous accompagner tout au long de vos démarches.</span></p></div> | |
| 1749 | + <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> | |
| 1750 | +</div> | |
| 1751 | + <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> | |
| 1752 | +</div> | |
| 1753 | + <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=" | |
| 1754 | + Accueil | |
| 1755 | + " 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> | |
| 1756 | +</span> | |
| 1757 | +</a> | |
| 1758 | +</li> | |
| 1759 | + <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> | |
| 1760 | +</span> | |
| 1761 | +</a> | |
| 1762 | +</li> | |
| 1763 | +</ul> | |
| 1764 | +</nav> | |
| 1765 | +</div> | |
| 1766 | + <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> | |
| 1767 | +</div> | |
| 1768 | + <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ésentation au TAL<span class="icon icon-angle-down" data-hidden-on-mobile="" data-hidden-on-desktop="" data-hidden-on-tablet=""></span> | |
| 1769 | +</span> | |
| 1770 | +</a> | |
| 1771 | +</li> | |
| 1772 | + <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étaires<span class="icon icon-angle-down" data-hidden-on-mobile="" data-hidden-on-desktop="" data-hidden-on-tablet=""></span> | |
| 1773 | +</span> | |
| 1774 | +</a> | |
| 1775 | +</li> | |
| 1776 | +</ul> | |
| 1777 | +</nav> | |
| 1778 | +</div> | |
| 1779 | + <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> | |
| 1780 | +</div> | |
| 1781 | + <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> | |
| 1782 | +</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> | |
| 1783 | +</div> | |
| 1784 | +</div> | |
| 1785 | +</div> | |
| 1786 | + <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>© 2026 </div> | |
| 1787 | + <div><p class="rteBlock">Gestion Immobilière de la Rive Sud 2025 - Tous droits réservés</p></div> | |
| 1788 | +</div> | |
| 1789 | +</div> | |
| 1790 | +</div> | |
| 1791 | +</div> | |
| 1792 | +</div> | |
| 1793 | +</div> | |
| 1794 | + <div id="1236746004" dmle_extension="powered_by" data-element-type="powered_by" icon="true" surround="false"></div> | |
| 1795 | +</div> | |
| 1796 | +</div> | |
| 1797 | +</div> | |
| 1798 | +</div> | |
| 1799 | +</div> | |
| 1800 | +</div> | |
| 1801 | +</div> | |
| 1802 | +</div> | |
| 1803 | +</div> | |
| 1804 | + | |
| 1805 | + </div> | |
| 1806 | +</div> | |
| 1807 | +<!-- Add full CSS and Javascript before the close tag of the body if needed --> | |
| 1808 | + | |
| 1809 | + | |
| 1810 | + | |
| 1811 | + | |
| 1812 | + | |
| 1813 | + | |
| 1814 | + | |
| 1815 | + | |
| 1816 | + | |
| 1817 | + | |
| 1818 | + | |
| 1819 | + | |
| 1820 | + | |
| 1821 | + | |
| 1822 | + | |
| 1823 | + | |
| 1824 | + | |
| 1825 | + | |
| 1826 | + | |
| 1827 | + | |
| 1828 | + | |
| 1829 | + | |
| 1830 | + | |
| 1831 | + | |
| 1832 | + | |
| 1833 | + | |
| 1834 | + | |
| 1835 | + | |
| 1836 | + | |
| 1837 | + | |
| 1838 | + | |
| 1839 | + | |
| 1840 | + | |
| 1841 | + | |
| 1842 | + | |
| 1843 | + | |
| 1844 | + | |
| 1845 | + | |
| 1846 | +<!-- ========= JS Section ========= --> | |
| 1847 | +<script> | |
| 1848 | + var isWLR = true; | |
| 1849 | + | |
| 1850 | + window.customWidgetsFunctions = {}; | |
| 1851 | + window.customWidgetsStrings = {}; | |
| 1852 | + window.collections = {}; | |
| 1853 | + window.currentLanguage = "FRENCH" | |
| 1854 | + window.isSitePreview = false; | |
| 1855 | +</script> | |
| 1856 | + | |
| 1857 | + | |
| 1858 | + | |
| 1859 | +<script> | |
| 1860 | + window.customWidgetsFunctions["1f5975986930429f819d4cd2154b5c4a~25"] = function (element, data, api) { | |
| 1861 | + null | |
| 1862 | + }; | |
| 1863 | +</script> | |
| 1864 | + | |
| 1865 | + | |
| 1866 | +<script type="text/javascript"> | |
| 1867 | + | |
| 1868 | + var d_version = "production_6688"; | |
| 1869 | + var build = "2026-08-06T08_49_03"; | |
| 1870 | + window['v' + 'ersion'] = d_version; | |
| 1871 | + | |
| 1872 | + function buildEditorParent() { | |
| 1873 | + window.isMultiScreen = true; | |
| 1874 | + window.editorParent = {}; | |
| 1875 | + window.previewParent = {}; | |
| 1876 | + window.assetsCacheQueryParam = "?version=2026-08-06T08_49_03"; | |
| 1877 | + try { | |
| 1878 | + var _p = window.parent; | |
| 1879 | + if (_p && _p.document && _p.$ && _p.$.dmfw) { | |
| 1880 | + window.editorParent = _p; | |
| 1881 | + } else if (_p.isSitePreview) { | |
| 1882 | + window.previewParent = _p; | |
| 1883 | + } | |
| 1884 | + } catch (e) { | |
| 1885 | + | |
| 1886 | + } | |
| 1887 | + } | |
| 1888 | + | |
| 1889 | + buildEditorParent(); | |
| 1890 | +</script> | |
| 1891 | + | |
| 1892 | + | |
| 1893 | +<!-- Load jQuery --> | |
| 1894 | + | |
| 1895 | +<script type="text/javascript" id='d-js-jquery' | |
| 1896 | + src="https://static.cdn-website.com/libs/jquery/jquery-3.7.0.min.js"></script> | |
| 1897 | + | |
| 1898 | +<!-- End Load jQuery --> | |
| 1899 | + | |
| 1900 | + | |
| 1901 | +<!-- Injecting site-wide before scripts --> | |
| 1902 | + | |
| 1903 | +<!-- End Injecting site-wide to the head --> | |
| 1904 | + | |
| 1905 | + | |
| 1906 | + | |
| 1907 | +<script> | |
| 1908 | + var _jquery = window.$; | |
| 1909 | + | |
| 1910 | + var jqueryAliases = ['$', 'jquery', 'jQuery']; | |
| 1911 | + | |
| 1912 | + jqueryAliases.forEach((alias) => { | |
| 1913 | + Object.defineProperty(window, alias, { | |
| 1914 | + get() { | |
| 1915 | + return _jquery; | |
| 1916 | + }, | |
| 1917 | + set() { | |
| 1918 | + console.warn("Trying to over-write the global jquery object!"); | |
| 1919 | + } | |
| 1920 | + }); | |
| 1921 | + }); | |
| 1922 | + window.jQuery.migrateMute = true; | |
| 1923 | +</script> | |
| 1924 | + | |
| 1925 | + | |
| 1926 | + | |
| 1927 | + | |
| 1928 | +<script> | |
| 1929 | + window.cookiesNotificationMarkupPreview = ' <div> <p class=\"rteBlock\">Nous utilisons des cookies pour optimiser votre expérience sur notre site web. Pour en savoir plus, veuillez accéder à la page <a value=\"donnees-personnelles\" label=\"\" type=\"page\" href=\"\/donnees-personnelles\" data-runtime-url=\"\/donnees-personnelles\">Confidentialité<\/a>.<\/p> \n<\/div> \n'; | |
| 1930 | +</script> | |
| 1931 | + | |
| 1932 | +<!-- HEAD RT JS Include --> | |
| 1933 | +<script id='d-js-params'> | |
| 1934 | + window.INSITE = window.INSITE || {}; | |
| 1935 | + window.INSITE.device = "desktop"; | |
| 1936 | + | |
| 1937 | + window.rtCommonProps = {}; | |
| 1938 | + rtCommonProps["rt.ajax.ajaxScriptsFix"] =true; | |
| 1939 | + rtCommonProps["rt.pushnotifs.sslframe.encoded"] = 'aHR0cHM6Ly97c3ViZG9tYWlufS5wdXNoLW5vdGlmcy5jb20='; | |
| 1940 | + rtCommonProps["runtimecollector.url"] = 'https://rtc.multiscreensite.com'; | |
| 1941 | + rtCommonProps["performance.tabletPreview.removeScroll"] = 'false'; | |
| 1942 | + rtCommonProps["inlineEditGrid.snap"] =true; | |
| 1943 | + rtCommonProps["popup.insite.cookie.ttl"] = '0.5'; | |
| 1944 | + rtCommonProps["rt.pushnotifs.force.button"] =true; | |
| 1945 | + rtCommonProps["common.mapbox.token"] = 'pk.JETON_CAVIARDE_LOUKA'; | |
| 1946 | + rtCommonProps["common.mapbox.js.override"] =false; | |
| 1947 | + rtCommonProps["common.here.appId"] = 'iYvDjIQ2quyEu0rg0hLo'; | |
| 1948 | + rtCommonProps["common.here.appCode"] = '1hcIxLJcbybmtBYTD9Z1UA'; | |
| 1949 | + rtCommonProps["isCoverage.test"] =false; | |
| 1950 | + rtCommonProps["ecommerce.ecwid.script"] = 'https://app.multiscreenstore.com/script.js'; | |
| 1951 | + rtCommonProps["common.resources.dist.cdn"] =true; | |
| 1952 | + rtCommonProps["common.build.dist.folder"] = 'production/6688'; | |
| 1953 | + rtCommonProps["common.resources.cdn.host"] = 'https://static.cdn-website.com'; | |
| 1954 | + rtCommonProps["common.resources.folder"] = 'https://static.cdn-website.com/mnlt/production/6688'; | |
| 1955 | + rtCommonProps["common.fonts.api.v2.url"] = 'https://irp.cdn-website.com/fonts/css2?family='; | |
| 1956 | + rtCommonProps["feature.flag.runtime.backgroundSlider.preload.slowly"] =true; | |
| 1957 | + rtCommonProps["feature.flag.runtime.newAnimation.enabled"] =true; | |
| 1958 | + rtCommonProps["feature.flag.runtime.newAnimation.jitAnimation.enabled"] =true; | |
| 1959 | + rtCommonProps["feature.flag.sites.google.analytics.gtag"] =true; | |
| 1960 | + rtCommonProps["feature.flag.runOnReadyNewTask"] =true; | |
| 1961 | + rtCommonProps["isAutomation.test"] =false; | |
| 1962 | + rtCommonProps["booking.cal.api.domain"] = 'api.cal.com'; | |
| 1963 | + | |
| 1964 | + | |
| 1965 | + rtCommonProps['common.mapsProvider'] = 'mapbox'; | |
| 1966 | + | |
| 1967 | + rtCommonProps['common.mapsProvider.version'] = '0.52.0'; | |
| 1968 | + rtCommonProps['common.geocodeProvider'] = 'mapbox'; | |
| 1969 | + rtCommonProps['server.for.resources'] = ''; | |
| 1970 | + rtCommonProps['feature.flag.lazy.widgets'] = true; | |
| 1971 | + rtCommonProps['feature.flag.single.wow'] = false; | |
| 1972 | + rtCommonProps['feature.flag.disallowPopupsInEditor'] = true; | |
| 1973 | + rtCommonProps['feature.flag.mark.anchors'] = true; | |
| 1974 | + rtCommonProps['captcha.public.key'] = '6LffcBsUAAAAAMU-MYacU-6QHY4iDtUEYv_Ppwlz'; | |
| 1975 | + rtCommonProps['captcha.invisible.public.key'] = '6LeiWB8UAAAAAHYnVJM7_-7ap6bXCUNGiv7bBPME'; | |
| 1976 | + rtCommonProps["images.sizes.small"] =160; | |
| 1977 | + rtCommonProps["images.sizes.mobile"] =640; | |
| 1978 | + rtCommonProps["images.sizes.tablet"] =1280; | |
| 1979 | + rtCommonProps["images.sizes.desktop"] =1920; | |
| 1980 | + rtCommonProps["modules.resources.cdn"] =true; | |
| 1981 | + rtCommonProps["import.images.storage.imageCDN"] = 'https://irp.cdn-website.com/'; | |
| 1982 | + rtCommonProps["feature.flag.runtime.inp.threshold"] =150; | |
| 1983 | + rtCommonProps["feature.flag.performance.logs"] =false; | |
| 1984 | + rtCommonProps["site.widget.form.captcha.type"] = 'g_recaptcha'; | |
| 1985 | + rtCommonProps["friendly.captcha.site.key"] = 'FCMGSQG9GVNMFS8K'; | |
| 1986 | + rtCommonProps["cookiebot.mapbox.consent.category"] = 'marketing'; | |
| 1987 | + rtCommonProps["termly.mapbox.consent.category"] = 'performance'; | |
| 1988 | + // feature flags that's used out of runtime module (in legacy files) | |
| 1989 | + rtCommonProps["platform.monolith.personalization.dateTimeCondition.popupMsgAction.moveToclient.enabled"] =true; | |
| 1990 | + | |
| 1991 | + window.rtFlags = {}; | |
| 1992 | + rtFlags["unsuspendEcwidStoreOnRuntime.enabled"] =true; | |
| 1993 | + rtFlags["scripts.widgetCount.enabled"] =true; | |
| 1994 | + rtFlags["fnb.animations.tracking.enabled"] =true; | |
| 1995 | + rtFlags["ecom.ecwidNewUrlStructure.enabled"] = false; | |
| 1996 | + rtFlags["ecom.ecwid.accountPage.emptyBaseUrl.enabled"] = true; | |
| 1997 | + rtFlags["ecom.ecwid.accountPage.repeatOrderRedirect.enabled"] = false; | |
| 1998 | + rtFlags["ecom.ecwid.pages.links.disable.listeners"] = true; | |
| 1999 | + rtFlags["ecom.ecwid.storefrontV3.enabled"] = false; | |
| 2000 | + rtFlags["ecom.ecwid.old.store.fix.facebook.share"] = true; | |
| 2001 | + rtFlags["ecom.monolith.legacy.js.api.disabled.for.new.sites"] = false; | |
| 2002 | + rtFlags["feature.flag.photo.gallery.exact.size"] =true; | |
| 2003 | + rtFlags["geocode.search.localize"] =false; | |
| 2004 | + rtFlags["feature.flag.runtime.newAnimation.asyncInit.setTimeout.enabled"] =false; | |
| 2005 | + rtFlags["twitter.heightLimit.enabled"] = true; | |
| 2006 | + rtFlags["runtime.lottieOverflow"] =false; | |
| 2007 | + rtFlags["runtime.monitoring.sentry.ignoreErrors"] = ""; | |
| 2008 | + rtFlags["streamline.monolith.personalization.supportMultipleConditions.enabled"] =false; | |
| 2009 | + rtFlags["flex.animation.design.panel.layout"] =true; | |
| 2010 | + rtFlags["runtime.cwv.report.cls.enabled"] =false; | |
| 2011 | + rtFlags["runtime.cwv.report.lcp.enabled"] =false; | |
| 2012 | + rtFlags["runtime.lcp.preload.selfheal.enabled"] =true; | |
| 2013 | + rtFlags["runtime.lcp.preload.bootstrap.enabled"] =false; | |
| 2014 | + rtFlags["runtime.lcp.preload.monitor.enabled"] =false; | |
| 2015 | + rtFlags["runtime.customwidget.heightpin.enabled"] =true; | |
| 2016 | + rtFlags["contact.form.useActiveForm"] =true; | |
| 2017 | + rtFlags["contact.form.custom.errors.enabled"] =false; | |
| 2018 | + rtFlags["runtime.ssr.productStore.internal.observer"] =true; | |
| 2019 | + rtFlags["runtime.ssr.productCustomizations"] =true; | |
| 2020 | + rtFlags["runtime.ssr.runtime.filter-sort.newFilterSortWidgetWithOptions.enabled"] =true; | |
| 2021 | + rtFlags["runtime.ssr.ssrSlider.jumpThreshold.enabled"] =true; | |
| 2022 | + rtFlags["runtime.ssr.native.booker.enabled"] =false; | |
| 2023 | + rtFlags["termly.map.consent.overlay.enabled"] =false; | |
| 2024 | +</script> | |
| 2025 | +<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> | |
| 2026 | + | |
| 2027 | +<!-- End of HEAD RT JS Include --> | |
| 2028 | + | |
| 2029 | + | |
| 2030 | + | |
| 2031 | + | |
| 2032 | + | |
| 2033 | + | |
| 2034 | + | |
| 2035 | + | |
| 2036 | + | |
| 2037 | + | |
| 2038 | + | |
| 2039 | + <script src="https://static.cdn-website.com/mnlt/production/6688/_dm/s/rt/dist/scripts/d-js-jquery-migrate.min.js" ></script> | |
| 2040 | + | |
| 2041 | + | |
| 2042 | + | |
| 2043 | + | |
| 2044 | + | |
| 2045 | +<script> | |
| 2046 | + | |
| 2047 | + $(window).bind("orientationchange", function (e) { | |
| 2048 | + $.layoutManager.initLayout(); | |
| 2049 | + | |
| 2050 | + }); | |
| 2051 | + $(document).resize(function () { | |
| 2052 | + | |
| 2053 | + }); | |
| 2054 | +</script> | |
| 2055 | + | |
| 2056 | + | |
| 2057 | + | |
| 2058 | + | |
| 2059 | + | |
| 2060 | + | |
| 2061 | + | |
| 2062 | + | |
| 2063 | + | |
| 2064 | + | |
| 2065 | + | |
| 2066 | + | |
| 2067 | + | |
| 2068 | + | |
| 2069 | + | |
| 2070 | + | |
| 2071 | + | |
| 2072 | + | |
| 2073 | +<script type="text/javascript" id="d_track_sp"> | |
| 2074 | + ;(function(p,l,o,w,i,n,g){if(!p[i]){p.GlobalSnowplowNamespace=p.GlobalSnowplowNamespace||[]; | |
| 2075 | + p.GlobalSnowplowNamespace.push(i);p[i]=function(){(p[i].q=p[i].q||[]).push(arguments) | |
| 2076 | + };p[i].q=p[i].q||[];n=l.createElement(o);g=l.getElementsByTagName(o)[0];n.async=1; | |
| 2077 | + n.src=w;g.parentNode.insertBefore(n,g)}}(window,document,"script","//d32hwlnfiv2gyn.cloudfront.net/sp-2.0.0-dm-0.1.min.js","snowplow")); | |
| 2078 | + window.dmsnowplow = window.snowplow; | |
| 2079 | + | |
| 2080 | + dmsnowplow('newTracker', 'cf', 'd32hwlnfiv2gyn.cloudfront.net', { // Initialise a tracker | |
| 2081 | + appId: '6d6b044d' | |
| 2082 | + }); | |
| 2083 | + | |
| 2084 | + // snowplow queries element styles so we wait until CSS calculations are done. | |
| 2085 | + requestAnimationFrame(() => { | |
| 2086 | + dmsnowplow('trackPageView'); | |
| 2087 | + _dm_insite.forEach((rule) => { | |
| 2088 | + // Specifically in popup only the client knows if it is shown or not so we don't always want to track its impression here | |
| 2089 | + // the tracking is in popup.js | |
| 2090 | + if (rule.actionName !== "popup") { | |
| 2091 | + dmsnowplow('trackStructEvent', 'insite', 'impression', rule.ruleType, rule.ruleId); | |
| 2092 | + } | |
| 2093 | + window?.waitForDeferred?.('dmAjax', () => { | |
| 2094 | + $.DM.events.trigger('event-ruleTriggered', {value: rule}); | |
| 2095 | + }); | |
| 2096 | + }); | |
| 2097 | + }); | |
| 2098 | +</script> | |
| 2099 | + | |
| 2100 | + | |
| 2101 | + | |
| 2102 | +<div style="display:none;" id="P6iryBW0Wu"></div> | |
| 2103 | + | |
| 2104 | +<!-- photoswipe markup --> | |
| 2105 | + | |
| 2106 | + | |
| 2107 | + | |
| 2108 | + | |
| 2109 | + | |
| 2110 | + | |
| 2111 | + | |
| 2112 | + | |
| 2113 | + | |
| 2114 | +<!-- Root element of PhotoSwipe. Must have class pswp. --> | |
| 2115 | +<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true"> | |
| 2116 | + | |
| 2117 | + <!-- Background of PhotoSwipe. | |
| 2118 | + It's a separate element as animating opacity is faster than rgba(). --> | |
| 2119 | + <div class="pswp__bg"></div> | |
| 2120 | + | |
| 2121 | + <!-- Slides wrapper with overflow:hidden. --> | |
| 2122 | + <div class="pswp__scroll-wrap"> | |
| 2123 | + | |
| 2124 | + <!-- Container that holds slides. | |
| 2125 | + PhotoSwipe keeps only 3 of them in the DOM to save memory. | |
| 2126 | + Don't modify these 3 pswp__item elements, data is added later on. --> | |
| 2127 | + <div class="pswp__container"> | |
| 2128 | + <div class="pswp__item"></div> | |
| 2129 | + <div class="pswp__item"></div> | |
| 2130 | + <div class="pswp__item"></div> | |
| 2131 | + </div> | |
| 2132 | + | |
| 2133 | + <!-- Default (PhotoSwipeUI_Default) interface on top of sliding area. Can be changed. --> | |
| 2134 | + <div class="pswp__ui pswp__ui--hidden"> | |
| 2135 | + | |
| 2136 | + <div class="pswp__top-bar"> | |
| 2137 | + | |
| 2138 | + <!-- Controls are self-explanatory. Order can be changed. --> | |
| 2139 | + | |
| 2140 | + <div class="pswp__counter"></div> | |
| 2141 | + | |
| 2142 | + <button class="pswp__button pswp__button--close" title="Fermer (Echap)"></button> | |
| 2143 | + | |
| 2144 | + <button class="pswp__button pswp__button--share" title="Partager"></button> | |
| 2145 | + | |
| 2146 | + <button class="pswp__button pswp__button--fs" title="Passer en mode plein écran"></button> | |
| 2147 | + | |
| 2148 | + <button class="pswp__button pswp__button--zoom" title="Zoom avant / arrière"></button> | |
| 2149 | + | |
| 2150 | + <!-- Preloader demo http://codepen.io/dimsemenov/pen/yyBWoR --> | |
| 2151 | + <!-- element will get class pswp__preloader--active when preloader is running --> | |
| 2152 | + <div class="pswp__preloader"> | |
| 2153 | + <div class="pswp__preloader__icn"> | |
| 2154 | + <div class="pswp__preloader__cut"> | |
| 2155 | + <div class="pswp__preloader__donut"></div> | |
| 2156 | + </div> | |
| 2157 | + </div> | |
| 2158 | + </div> | |
| 2159 | + </div> | |
| 2160 | + | |
| 2161 | + <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"> | |
| 2162 | + <div class="pswp__share-tooltip"></div> | |
| 2163 | + </div> | |
| 2164 | + | |
| 2165 | + <button class="pswp__button pswp__button--arrow--left" title="Précédent (flèche gauche)"> | |
| 2166 | + </button> | |
| 2167 | + | |
| 2168 | + <button class="pswp__button pswp__button--arrow--right" title="Suivant (flèche droite)"> | |
| 2169 | + </button> | |
| 2170 | + | |
| 2171 | + <div class="pswp__caption"> | |
| 2172 | + <div class="pswp__caption__center"></div> | |
| 2173 | + </div> | |
| 2174 | + | |
| 2175 | + </div> | |
| 2176 | + | |
| 2177 | + </div> | |
| 2178 | + | |
| 2179 | +</div> | |
| 2180 | +<div id="fb-root" | |
| 2181 | + data-locale="fr_FR"></div> | |
| 2182 | +<!-- Alias: 6d6b044d --> | |
| 2183 | +<div class="dmPopupMask" id="dmPopupMask"></div> | |
| 2184 | +<div id="dmPopup" class="dmPopup"> | |
| 2185 | + <div class="dmPopupCloseWrapper"> <div class="dmPopupClose dm-common-icons-close oneIcon" onclick="dmHidePopup(event);"></div> </div> | |
| 2186 | + <div class="dmPopupTitle"> <span></span> Share by:</div> | |
| 2187 | + <div class="data"></div> | |
| 2188 | +</div><script id="d_track_personalization"> | |
| 2189 | + window?.waitForDeferred?.('dmAjax', () => { | |
| 2190 | + // Collects client data and updates cookies used by smart sites | |
| 2191 | + window.expireDays = 365; | |
| 2192 | + window.visitLength = 30 * 60000; | |
| 2193 | + $.setCookie("dm_timezone_offset", (new Date()).getTimezoneOffset(), window.expireDays); | |
| 2194 | + setSmartSiteCookiesInternal("dm_this_page_view","dm_last_page_view","dm_total_visits","dm_last_visit"); | |
| 2195 | + }); | |
| 2196 | +</script> | |
| 2197 | +<script type="text/javascript"> | |
| 2198 | + | |
| 2199 | + Parameters.NavigationAreaParams.MoreButtonText = 'MORE'; | |
| 2200 | + | |
| 2201 | + Parameters.NavigationAreaParams.LessButtonText = 'LESS'; | |
| 2202 | + Parameters.HomeLinkText = 'Home'; | |
| 2203 | + </script> | |
| 2204 | +<!-- End Script tags --> | |
| 2205 | +<!-- Site Wide Html Markup --> | |
| 2206 | +<!-- Site Wide Html Markup --> | |
| 2207 | +</body> | |
| 2208 | +</html> | |
added
tests/fixtures/girs/99bfd8c9cd71e5eb8354.html
+2046 −0
@@ -0,0 +1,2046 @@ | ||
| 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 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | +<script type="text/javascript"> | |
| 46 | + window._currentDevice = 'desktop'; | |
| 47 | + window.Parameters = window.Parameters || { | |
| 48 | + HomeUrl: 'https://www.girs.ca/', | |
| 49 | + | |
| 50 | + 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', | |
| 64 | + InitialPageUuid: 'd5acfbce75a448de9b0cff6e93c3119e', | |
| 65 | + InitialPageId: '44292042', | |
| 66 | + InitialEncodedPageAlias: 'bG9jYXRpb24vc2NvdHQ=', | |
| 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érience sur notre site web. Pour en savoir plus, veuillez accéder à la page <a value=\"donnees-personnelles\" label=\"\" type=\"page\" href=\"\/donnees-personnelles\" data-runtime-url=\"\/donnees-personnelles\">Confidentialité<\/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: false | |
| 134 | + }; | |
| 135 | + | |
| 136 | + window.Parameters.LayoutID = {}; | |
| 137 | + window.Parameters.LayoutID[window._currentDevice] = 6; | |
| 138 | + window.Parameters.LayoutVariationID = {}; | |
| 139 | + window.Parameters.LayoutVariationID[window._currentDevice] = 5; | |
| 140 | +</script> | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | +<!-- Injecting site-wide to the head --> | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
| 169 | + | |
| 170 | + | |
| 171 | + | |
| 172 | + | |
| 173 | + | |
| 174 | + | |
| 175 | + | |
| 176 | + | |
| 177 | + | |
| 178 | +<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('&'); | |
| 185 | + | |
| 186 | + const expires = 'expires=' + new Date().getTime() + 24 * 60 * 60 * 1000; | |
| 187 | + const domain = 'domain=' + window.location.hostname; | |
| 188 | + const path = "path=/"; | |
| 189 | + | |
| 190 | + 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.cookie | |
| 220 | + .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 submission | |
| 226 | + // 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> | |
| 240 | + | |
| 241 | + | |
| 242 | + | |
| 243 | + | |
| 244 | + | |
| 245 | + | |
| 246 | +<!-- End Injecting site-wide to the head --> | |
| 247 | + | |
| 248 | +<!-- Inject secured cdn script --> | |
| 249 | + | |
| 250 | + | |
| 251 | +<!-- ========= 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 >>> 0 | |
| 260 | + } | |
| 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.serviceWorker | |
| 277 | + .register(serviceWorkerPath, { scope: './' }) | |
| 278 | + .then( | |
| 279 | + function (registration) { | |
| 280 | + // Registration was successful | |
| 281 | + console.log( | |
| 282 | + 'ServiceWorker registration successful with scope: ', | |
| 283 | + registration.scope | |
| 284 | + ); | |
| 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 | + }); | |
| 295 | + | |
| 296 | + // helper function to refresh the page | |
| 297 | + var refreshPage = (function () { | |
| 298 | + var refreshing; | |
| 299 | + return function () { | |
| 300 | + if (refreshing) return; | |
| 301 | + // prevent multiple refreshes | |
| 302 | + 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 loop | |
| 308 | + } | |
| 309 | + } | |
| 310 | + refreshing = true; | |
| 311 | + localStorage.setItem(refreshkey, Date.now()); | |
| 312 | + console.log('refereshing page'); | |
| 313 | + window.location.reload(); | |
| 314 | + }; | |
| 315 | + })(); | |
| 316 | + | |
| 317 | + 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 --> | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
| 340 | +<link rel="canonical" href="https://www.girs.ca/location/scott"> | |
| 341 | + | |
| 342 | +<meta id="view" name="viewport" content="initial-scale=1, minimum-scale=1, maximum-scale=5, viewport-fit=cover"> | |
| 343 | + | |
| 344 | +<meta name="apple-mobile-web-app-capable" content="yes"> | |
| 345 | + | |
| 346 | +<!--Add favorites icons--> | |
| 347 | + | |
| 348 | +<link rel="icon" type="image/x-icon" href="https://irp.cdn-website.com/6d6b044d/site_favicon_16_1673962208002.ico"/> | |
| 349 | + | |
| 350 | +<!-- 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"/> | |
| 354 | + | |
| 355 | + | |
| 356 | + | |
| 357 | +<!-- render the required CSS and JS in the head section --> | |
| 358 | +<script id='d-js-dmapi'> | |
| 359 | + window.SystemID = 'US_DIRECT_PRODUCTION'; | |
| 360 | + | |
| 361 | + 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; | |
| 372 | + | |
| 373 | + 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 | + } | |
| 405 | + | |
| 406 | + if (!window.requestIdleCallback) { | |
| 407 | + window.requestIdleCallback = function (fn) { | |
| 408 | + setTimeout(fn, 0); | |
| 409 | + } | |
| 410 | + } | |
| 411 | +</script> | |
| 412 | + | |
| 413 | +<!-- loadCSS function header.jsp--> | |
| 414 | + | |
| 415 | + | |
| 416 | + | |
| 417 | + | |
| 418 | + | |
| 419 | + | |
| 420 | +<script id="d-js-load-css"> | |
| 421 | +/** | |
| 422 | + * There are a few <link> tags with CSS resource in them that are preloaded in the page | |
| 423 | + * in each of those there is a "onload" handler which invokes the loadCSS callback | |
| 424 | + * 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 threre | |
| 427 | + * is no page css (which may happen on inner pages) then we do not wait for it | |
| 428 | + */ | |
| 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']"); | |
| 440 | + | |
| 441 | + 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; | |
| 446 | + | |
| 447 | + storedGlobalCssLink.disabled = true; | |
| 448 | + loadCssLink(storedGlobalCssLink); | |
| 449 | + | |
| 450 | + if (storedPageCssLink) { | |
| 451 | + storedPageCssLink.disabled = true; | |
| 452 | + loadCssLink(storedPageCssLink); | |
| 453 | + } | |
| 454 | + | |
| 455 | + if(storedWidgetCssLink) { | |
| 456 | + storedWidgetCssLink.disabled = true; | |
| 457 | + loadCssLink(storedWidgetCssLink); | |
| 458 | + } | |
| 459 | + | |
| 460 | + storedRuntimeCssLink.disabled = true; | |
| 461 | + loadCssLink(storedRuntimeCssLink); | |
| 462 | + | |
| 463 | + 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're | |
| 474 | + // 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 | + | |
| 484 | + | |
| 485 | + 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; | |
| 490 | + | |
| 491 | + 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 e | |
| 519 | + } | |
| 520 | + } | |
| 521 | + window.loadCSS = window.loadCSS || loadCSS; | |
| 522 | +})(); | |
| 523 | +</script> | |
| 524 | + | |
| 525 | + | |
| 526 | + | |
| 527 | +<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 = b | |
| 532 | + }).bind(this)) | |
| 533 | + } | |
| 534 | + | |
| 535 | + 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 | + d | |
| 542 | + ? d.promise.then(a) | |
| 543 | + : c && ["complete", "interactive"].includes(document.readyState) | |
| 544 | + ? setTimeout(a, 1) | |
| 545 | + : c | |
| 546 | + ? 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 */ | |
| 552 | + | |
| 553 | +.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 | + | |
| 555 | + | |
| 556 | +</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> | |
| 568 | + | |
| 569 | + | |
| 570 | + | |
| 571 | + | |
| 572 | + | |
| 573 | + | |
| 574 | + | |
| 575 | + | |
| 576 | + | |
| 577 | + | |
| 578 | + | |
| 579 | + | |
| 580 | + | |
| 581 | + | |
| 582 | + | |
| 583 | + | |
| 584 | + | |
| 585 | + | |
| 586 | + | |
| 587 | + | |
| 588 | + | |
| 589 | + | |
| 590 | + | |
| 591 | + | |
| 592 | + | |
| 593 | +<!-- Google Fonts Include --> | |
| 594 | + | |
| 595 | + | |
| 596 | + | |
| 597 | + | |
| 598 | + | |
| 599 | + | |
| 600 | + | |
| 601 | + | |
| 602 | + | |
| 603 | + | |
| 604 | + | |
| 605 | + | |
| 606 | + | |
| 607 | +<!-- loadCSS function fonts.jsp--> | |
| 608 | + | |
| 609 | + | |
| 610 | + | |
| 611 | +<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&subset=latin-ext&display=swap" /> | |
| 612 | + | |
| 613 | + | |
| 614 | + | |
| 615 | + | |
| 616 | + | |
| 617 | +<!-- 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" /> | |
| 619 | + | |
| 620 | +<!-- End of RT CSS Include --> | |
| 621 | + | |
| 622 | +<link type="text/css" rel="stylesheet" href="https://irp.cdn-website.com/WIDGET_CSS/2408fc1880f23edd0853f9ea8b379505.css" id="widgetCSS" /> | |
| 623 | + | |
| 624 | +<!-- Support `img` size attributes --> | |
| 625 | +<style>img[width][height] { | |
| 626 | + height: auto; | |
| 627 | +}</style> | |
| 628 | + | |
| 629 | +<!-- Support showing sticky element on page only --> | |
| 630 | +<style> | |
| 631 | + body[data-page-alias="location/scott"] #dm [data-show-on-page-only="location/scott"] { | |
| 632 | + display: block !important; | |
| 633 | + } | |
| 634 | +</style> | |
| 635 | + | |
| 636 | +<!-- This is populated in Ajax navigation --> | |
| 637 | +<style id="pageAdditionalWidgetsCss" type="text/css"> | |
| 638 | +</style> | |
| 639 | + | |
| 640 | + | |
| 641 | + | |
| 642 | + | |
| 643 | +<!-- 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" /> | |
| 645 | + | |
| 646 | + | |
| 647 | + | |
| 648 | +<style id="customWidgetStyle" type="text/css"> | |
| 649 | + | |
| 650 | +</style> | |
| 651 | +<style id="innerPagesStyle" type="text/css"> | |
| 652 | + | |
| 653 | +</style> | |
| 654 | + | |
| 655 | + | |
| 656 | +<style | |
| 657 | + id="additionalGlobalCss" type="text/css" | |
| 658 | +> | |
| 659 | +</style> | |
| 660 | + | |
| 661 | +<style id="pagestyle" type="text/css"> | |
| 662 | + *#dm *.dmBody div.u_1190857192 input:not([type="submit"]) | |
| 663 | +{ | |
| 664 | + background-color:var(--color_3) !important; | |
| 665 | + border-bottom-style:solid !important; | |
| 666 | + border-bottom-width:0 !important; | |
| 667 | +} | |
| 668 | +*#dm *.dmBody div.u_1190857192 textarea | |
| 669 | +{ | |
| 670 | + background-color:var(--color_3) !important; | |
| 671 | + border-bottom-style:solid !important; | |
| 672 | + border-bottom-width:0 !important; | |
| 673 | +} | |
| 674 | +*#dm *.dmBody div.u_1190857192 select | |
| 675 | +{ | |
| 676 | + background-color:var(--color_3) !important; | |
| 677 | + border-bottom-style:solid !important; | |
| 678 | + border-bottom-width:0 !important; | |
| 679 | +} | |
| 680 | +*#dm *.dmBody div.u_1190857192 .dmforminput label:not(.for-checkable):not(.custom-contact-checkable) | |
| 681 | +{ | |
| 682 | + color:var(--color_3) !important; | |
| 683 | +} | |
| 684 | +*#dm *.dmBody div.u_1190857192 .m-recaptcha | |
| 685 | +{ | |
| 686 | + color:var(--color_3) !important; | |
| 687 | +} | |
| 688 | +*#dm *.dmBody *.u_1190857192 .dmformsubmit | |
| 689 | +{ | |
| 690 | + float:LEFT !important; | |
| 691 | + text-align:CENTER !important; | |
| 692 | +} | |
| 693 | +*#dm *.dmBody *.u_1190857192 .dmwidget-title | |
| 694 | +{ | |
| 695 | + text-align:CENTER !important; | |
| 696 | +} | |
| 697 | +*#dm *.dmBody div.u_1190857192 .dmwidget-title | |
| 698 | +{ | |
| 699 | + color:var(--color_3) !important; | |
| 700 | +} | |
| 701 | +*#dm *.dmBody div.u_1190857192 .contact-checkable-container img | |
| 702 | +{ | |
| 703 | + box-shadow:none !important; | |
| 704 | +} | |
| 705 | +*#dm *.dmBody div.u_1190857192 .dmformsubmit | |
| 706 | +{ | |
| 707 | + background-color:var(--color_1) !important; | |
| 708 | +} | |
| 709 | +*#dm *.dmBody div.u_1190857192 .dmformsubmit:hover | |
| 710 | +{ | |
| 711 | + background-color:var(--color_3) !important; | |
| 712 | + background-image:none !important; | |
| 713 | +} | |
| 714 | +*#dm *.dmBody div.u_1190857192 .dmformsubmit.hover | |
| 715 | +{ | |
| 716 | + background-color:var(--color_3) !important; | |
| 717 | + background-image:none !important; | |
| 718 | +} | |
| 719 | +*#dm *.dmBody div.u_1190857192 | |
| 720 | +{ | |
| 721 | + border-style:solid !important; | |
| 722 | + border-width:0 !important; | |
| 723 | +}*#dm *.dmBody nav.u_1661947310 { color:white !important; } | |
| 724 | + | |
| 725 | +*#dm *.dmBody *.u_1340870343 { width:100% !important; } | |
| 726 | + | |
| 727 | +*#dm *.dmBody *.u_1306107430:before { | |
| 728 | + opacity:0.5 !important; | |
| 729 | + background-color:rgb(255,255,255) !important; | |
| 730 | +} | |
| 731 | + | |
| 732 | +*#dm *.dmBody *.u_1306107430.before { | |
| 733 | + opacity:0.5 !important; | |
| 734 | + background-color:rgb(255,255,255) !important; | |
| 735 | +} | |
| 736 | + | |
| 737 | +*#dm *.dmBody *.u_1306107430>.bgExtraLayerOverlay { | |
| 738 | + opacity:0.5 !important; | |
| 739 | + background-color:rgb(255,255,255) !important; | |
| 740 | +} | |
| 741 | + | |
| 742 | +*#dm *.dmBody div.u_1306107430 { | |
| 743 | + background-color:rgba(0,0,0,0) !important; | |
| 744 | + background-repeat:no-repeat !important; | |
| 745 | + background-image:url(https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/pexels-photo-101808-2880w.jpeg) !important; | |
| 746 | + background-size:cover !important; | |
| 747 | +} | |
| 748 | + | |
| 749 | +*#dm *.dmBody div.u_1306107430:before { background-color:var(--color_1) !important; } | |
| 750 | + | |
| 751 | +*#dm *.dmBody div.u_1306107430.before { background-color:var(--color_1) !important; } | |
| 752 | + | |
| 753 | +*#dm *.dmBody div.u_1306107430>.bgExtraLayerOverlay { background-color:var(--color_1) !important; } | |
| 754 | + | |
| 755 | +*#dm *.dmBody a.u_1984578540:hover { | |
| 756 | + background-color:var(--color_3) !important; | |
| 757 | + background-image:none !important; | |
| 758 | +} | |
| 759 | + | |
| 760 | +*#dm *.dmBody a.u_1984578540.hover { | |
| 761 | + background-color:var(--color_3) !important; | |
| 762 | + background-image:none !important; | |
| 763 | +} | |
| 764 | + | |
| 765 | +*#dm *.dmBody a.u_1984578540:hover span.text { color:var(--color_1) !important; } | |
| 766 | + | |
| 767 | +*#dm *.dmBody a.u_1984578540.hover span.text { color:var(--color_1) !important; } | |
| 768 | + | |
| 769 | +*#dm *.dmBody a.u_1984578540 span.text { | |
| 770 | + font-family:'Roboto' !important; | |
| 771 | + font-weight:400 !important; | |
| 772 | + color:var(--color_3) !important; | |
| 773 | +} | |
| 774 | + | |
| 775 | +*#dm *.dmBody div.u_1055536653 { | |
| 776 | + border-style:solid !important; | |
| 777 | + border-width:2px !important; | |
| 778 | + border-color:var(--color_3) !important; | |
| 779 | +} | |
| 780 | + | |
| 781 | +*#dm *.dmBody div.u_1372977652 hr { | |
| 782 | + background:linear-gradient(to right,currentColor,transparent) !important; | |
| 783 | + height:2px !important; | |
| 784 | + color:var(--color_1) !important; | |
| 785 | + border:none !important; | |
| 786 | +} | |
| 787 | + | |
| 788 | +*#dm *.dmBody div.u_1876421869 hr { | |
| 789 | + color:var(--color_1) !important; | |
| 790 | + border:none !important; | |
| 791 | + background:linear-gradient(to right,currentColor,transparent) !important; | |
| 792 | + height:2px !important; | |
| 793 | +} | |
| 794 | + | |
| 795 | +*#dm *.dmBody div.u_1375670237 hr { | |
| 796 | + color:var(--color_1) !important; | |
| 797 | + border:none !important; | |
| 798 | + background:linear-gradient(to right,currentColor,transparent) !important; | |
| 799 | + height:2px !important; | |
| 800 | +} | |
| 801 | + | |
| 802 | +*#dm *.dmBody a.u_1984578540 { | |
| 803 | + border-color:var(--color_3) !important; | |
| 804 | + border-style:solid !important; | |
| 805 | + border-width:2px !important; | |
| 806 | + border-radius:20px 20px 20px 20px !important; | |
| 807 | +} | |
| 808 | + | |
| 809 | +*#dm *.dmBody *.u_1765310117 { display:block !important; } | |
| 810 | + | |
| 811 | +*#dm *.dmBody *.u_1601549965 { display:block !important; } | |
| 812 | + | |
| 813 | +*#dm *.dmBody *.u_1996674756 { display:block !important; } | |
| 814 | + | |
| 815 | + | |
| 816 | +</style> | |
| 817 | + | |
| 818 | +<style id="pagestyleDevice" type="text/css"> | |
| 819 | + *#dm *.dmBody div.u_1190857192 .dmformsubmit { width:200px !important; } | |
| 820 | + | |
| 821 | +*#dm *.dmBody div.u_1190857192 .dmwidget-title { font-size:28px !important; } | |
| 822 | + | |
| 823 | +*#dm *.dmBody div.u_1190857192 { | |
| 824 | + margin-left:0 !important; | |
| 825 | + padding-top:0 !important; | |
| 826 | + padding-left:0 !important; | |
| 827 | + padding-bottom:0 !important; | |
| 828 | + margin-top:0 !important; | |
| 829 | + margin-bottom:0 !important; | |
| 830 | + margin-right:0 !important; | |
| 831 | + padding-right:20px !important; | |
| 832 | + display:block !important; | |
| 833 | + float:none !important; | |
| 834 | + top:0 !important; | |
| 835 | + left:0 !important; | |
| 836 | + width:calc(100% - 0px) !important; | |
| 837 | + position:relative !important; | |
| 838 | + height:auto !important; | |
| 839 | + max-width:100% !important; | |
| 840 | + min-width:25px !important; | |
| 841 | + text-align:start !important; | |
| 842 | +}*#dm *.dmBody div.u_1372977652 { width:100px !important; } | |
| 843 | + | |
| 844 | +*#dm *.dmBody div.u_1443273326 { | |
| 845 | + margin-left:0 !important; | |
| 846 | + padding-top:2px !important; | |
| 847 | + padding-left:0 !important; | |
| 848 | + padding-bottom:2px !important; | |
| 849 | + margin-top:8px !important; | |
| 850 | + margin-bottom:8px !important; | |
| 851 | + margin-right:0 !important; | |
| 852 | + padding-right:0 !important; | |
| 853 | +} | |
| 854 | + | |
| 855 | +*#dm *.dmBody div.u_1340870343 { | |
| 856 | + float:none !important; | |
| 857 | + top:0 !important; | |
| 858 | + left:0 !important; | |
| 859 | + width:calc(100% - 0px) !important; | |
| 860 | + position:relative !important; | |
| 861 | + height:auto !important; | |
| 862 | + padding-top:0 !important; | |
| 863 | + padding-left:0 !important; | |
| 864 | + padding-bottom:0 !important; | |
| 865 | + margin-right:auto !important; | |
| 866 | + margin-left:auto !important; | |
| 867 | + max-width:100% !important; | |
| 868 | + margin-top:0 !important; | |
| 869 | + margin-bottom:0 !important; | |
| 870 | + padding-right:0 !important; | |
| 871 | + min-width:25px !important; | |
| 872 | + text-align:start !important; | |
| 873 | +} | |
| 874 | + | |
| 875 | + | |
| 876 | +*#dm *.dmBody *.u_1994385402 .photoGalleryThumbs .image-container a { padding-top:300px !important; } | |
| 877 | + | |
| 878 | +*#dm *.dmBody *.u_1994385402 .photoGalleryThumbs { padding:10px !important; } | |
| 879 | + | |
| 880 | +*#dm *.dmBody *.u_1994385402 .layout-container { padding:10px !important; }*#dm *.dmBody *.u_1994385402 .photoGalleryViewAll { padding:0 10px !important; } | |
| 881 | + | |
| 882 | +*#dm *.dmBody div.u_1750032124 { | |
| 883 | + display:block !important; | |
| 884 | + float:none !important; | |
| 885 | + top:0px !important; | |
| 886 | + left:0px !important; | |
| 887 | + width:100% !important; | |
| 888 | + position:relative !important; | |
| 889 | + height:auto !important; | |
| 890 | + padding-top:2px !important; | |
| 891 | + padding-left:0px !important; | |
| 892 | + padding-bottom:2px !important; | |
| 893 | + min-height:auto !important; | |
| 894 | + margin-right:auto !important; | |
| 895 | + margin-left:0 !important; | |
| 896 | + max-width:100% !important; | |
| 897 | + margin-top:8px !important; | |
| 898 | + margin-bottom:8px !important; | |
| 899 | + padding-right:0px !important; | |
| 900 | + min-width:0 !important; | |
| 901 | +} | |
| 902 | + | |
| 903 | +*#dm *.dmBody div.u_1055536653 { | |
| 904 | + margin-left:20px !important; | |
| 905 | + padding-top:0px !important; | |
| 906 | + padding-left:20px !important; | |
| 907 | + padding-bottom:0px !important; | |
| 908 | + margin-top:0px !important; | |
| 909 | + margin-bottom:0px !important; | |
| 910 | + margin-right:20px !important; | |
| 911 | + padding-right:20px !important; | |
| 912 | +} | |
| 913 | + | |
| 914 | +*#dm *.dmBody div.u_1145454822 { | |
| 915 | + padding-top:100px !important; | |
| 916 | + padding-left:0px !important; | |
| 917 | + padding-bottom:40px !important; | |
| 918 | + padding-right:0px !important; | |
| 919 | + width:auto !important; | |
| 920 | + float:none !important; | |
| 921 | + top:0 !important; | |
| 922 | + left:0 !important; | |
| 923 | + position:relative !important; | |
| 924 | + height:auto !important; | |
| 925 | + margin-right:0px !important; | |
| 926 | + margin-left:0px !important; | |
| 927 | + max-width:100% !important; | |
| 928 | + margin-top:0px !important; | |
| 929 | + margin-bottom:0px !important; | |
| 930 | + min-width:0 !important; | |
| 931 | + text-align:start !important; | |
| 932 | +} | |
| 933 | + | |
| 934 | +*#dm *.dmBody div.u_1876421869 { | |
| 935 | + width:100px !important; | |
| 936 | + display:block !important; | |
| 937 | + float:none !important; | |
| 938 | + top:0px !important; | |
| 939 | + left:0px !important; | |
| 940 | + position:relative !important; | |
| 941 | + height:auto !important; | |
| 942 | + padding-top:0px !important; | |
| 943 | + padding-left:0px !important; | |
| 944 | + padding-bottom:0px !important; | |
| 945 | + min-height:auto !important; | |
| 946 | + margin-right:auto !important; | |
| 947 | + margin-left:0 !important; | |
| 948 | + max-width:100% !important; | |
| 949 | + margin-top:0px !important; | |
| 950 | + margin-bottom:0px !important; | |
| 951 | + padding-right:0px !important; | |
| 952 | + min-width:0 !important; | |
| 953 | + text-align:start !important; | |
| 954 | +} | |
| 955 | + | |
| 956 | +*#dm *.dmBody div.u_1673285928 { | |
| 957 | + margin-left:0px !important; | |
| 958 | + padding-top:10px !important; | |
| 959 | + padding-left:40px !important; | |
| 960 | + padding-bottom:10px !important; | |
| 961 | + margin-top:0px !important; | |
| 962 | + margin-bottom:0px !important; | |
| 963 | + margin-right:0px !important; | |
| 964 | + padding-right:40px !important; | |
| 965 | + width:auto !important; | |
| 966 | +} | |
| 967 | + | |
| 968 | +*#dm *.dmBody div.u_1375670237 { | |
| 969 | + width:100px !important; | |
| 970 | + display:block !important; | |
| 971 | + float:none !important; | |
| 972 | + top:0px !important; | |
| 973 | + left:0px !important; | |
| 974 | + position:relative !important; | |
| 975 | + height:auto !important; | |
| 976 | + padding-top:0px !important; | |
| 977 | + padding-left:0px !important; | |
| 978 | + padding-bottom:0px !important; | |
| 979 | + min-height:auto !important; | |
| 980 | + margin-right:auto !important; | |
| 981 | + margin-left:0 !important; | |
| 982 | + max-width:100% !important; | |
| 983 | + margin-top:0px !important; | |
| 984 | + margin-bottom:0px !important; | |
| 985 | + padding-right:0px !important; | |
| 986 | + min-width:0 !important; | |
| 987 | + text-align:start !important; | |
| 988 | +} | |
| 989 | + | |
| 990 | +*#dm *.dmBody div.u_1565367189 { | |
| 991 | + margin-left:0px !important; | |
| 992 | + padding-top:10px !important; | |
| 993 | + padding-left:0px !important; | |
| 994 | + padding-bottom:5px !important; | |
| 995 | + margin-top:0px !important; | |
| 996 | + margin-bottom:0px !important; | |
| 997 | + margin-right:0px !important; | |
| 998 | + padding-right:0px !important; | |
| 999 | + width:auto !important; | |
| 1000 | +} | |
| 1001 | + | |
| 1002 | +*#dm *.dmBody div.u_1761309989 { | |
| 1003 | + margin-left:0px !important; | |
| 1004 | + padding-top:5px !important; | |
| 1005 | + padding-left:0px !important; | |
| 1006 | + padding-bottom:10px !important; | |
| 1007 | + margin-top:0px !important; | |
| 1008 | + margin-bottom:0px !important; | |
| 1009 | + margin-right:0px !important; | |
| 1010 | + padding-right:0px !important; | |
| 1011 | + width:auto !important; | |
| 1012 | +} | |
| 1013 | + | |
| 1014 | +*#dm *.dmBody div.u_1306107430 { | |
| 1015 | + float:none !important; | |
| 1016 | + top:0 !important; | |
| 1017 | + left:0 !important; | |
| 1018 | + width:auto !important; | |
| 1019 | + position:relative !important; | |
| 1020 | + height:auto !important; | |
| 1021 | + padding-top:100px !important; | |
| 1022 | + padding-left:40px !important; | |
| 1023 | + padding-bottom:100px !important; | |
| 1024 | + min-height:auto !important; | |
| 1025 | + margin-right:0px !important; | |
| 1026 | + margin-left:0px !important; | |
| 1027 | + max-width:100% !important; | |
| 1028 | + margin-top:0px !important; | |
| 1029 | + margin-bottom:0px !important; | |
| 1030 | + padding-right:40px !important; | |
| 1031 | + min-width:0 !important; | |
| 1032 | + text-align:start !important; | |
| 1033 | + background-position:50% 50% !important; | |
| 1034 | + background-attachment:initial !important; | |
| 1035 | +} | |
| 1036 | + | |
| 1037 | +*#dm *.dmBody a.u_1984578540 { | |
| 1038 | + float:none !important; | |
| 1039 | + top:0px !important; | |
| 1040 | + left:0px !important; | |
| 1041 | + width:200px !important; | |
| 1042 | + position:relative !important; | |
| 1043 | + height:auto !important; | |
| 1044 | + padding-top:10px !important; | |
| 1045 | + padding-left:7px !important; | |
| 1046 | + padding-bottom:10px !important; | |
| 1047 | + min-height:50px !important; | |
| 1048 | + max-width:100% !important; | |
| 1049 | + padding-right:7px !important; | |
| 1050 | + min-width:0 !important; | |
| 1051 | + text-align:center !important; | |
| 1052 | + margin-right:866px !important; | |
| 1053 | + margin-left:0px !important; | |
| 1054 | + margin-top:20px !important; | |
| 1055 | + margin-bottom:10px !important; | |
| 1056 | +} | |
| 1057 | + | |
| 1058 | +*#dm *.dmBody a.u_1984578540 span.text { font-size:18px !important; } | |
| 1059 | + | |
| 1060 | +*#dm *.dmBody div.u_1994385402 .caption-button { | |
| 1061 | + width:200px !important; | |
| 1062 | + height:40px !important; | |
| 1063 | +} | |
| 1064 | + | |
| 1065 | + | |
| 1066 | +</style> | |
| 1067 | + | |
| 1068 | +<!-- Flex Sections CSS --> | |
| 1069 | + | |
| 1070 | + | |
| 1071 | + | |
| 1072 | + | |
| 1073 | + | |
| 1074 | + | |
| 1075 | + | |
| 1076 | +<style id="globalFontSizeStyle" type="text/css"> | |
| 1077 | + .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-40, .size-40, .size-40 > font { font-size: 40px !important; }.font-size-28, .size-28, .size-28 > font { font-size: 28px !important; } | |
| 1078 | +</style> | |
| 1079 | +<style id="pageFontSizeStyle" type="text/css"> | |
| 1080 | +</style> | |
| 1081 | + | |
| 1082 | + | |
| 1083 | + | |
| 1084 | + | |
| 1085 | +<style id="hideAnimFix"> | |
| 1086 | + .dmDesktopBody:not(.editGrid) [data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) [data-anim-extended] { | |
| 1087 | + visibility: hidden; | |
| 1088 | + } | |
| 1089 | + | |
| 1090 | + .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-extended] { | |
| 1091 | + visibility: hidden !important; | |
| 1092 | + } | |
| 1093 | + | |
| 1094 | + #dmRoot:not(.editGrid) .flex-element [data-anim-extended] { | |
| 1095 | + visibility: hidden; | |
| 1096 | + } | |
| 1097 | + | |
| 1098 | +</style> | |
| 1099 | + | |
| 1100 | + | |
| 1101 | + | |
| 1102 | + | |
| 1103 | +<style id="fontFallbacks"> | |
| 1104 | + @font-face { | |
| 1105 | + font-family: "Roboto Fallback"; | |
| 1106 | + src: local('Arial'); | |
| 1107 | + ascent-override: 92.6709%; | |
| 1108 | + descent-override: 24.3871%; | |
| 1109 | + size-adjust: 100.1106%; | |
| 1110 | + line-gap-override: 0%; | |
| 1111 | + }@font-face { | |
| 1112 | + font-family: "Montserrat Fallback"; | |
| 1113 | + src: local('Arial'); | |
| 1114 | + ascent-override: 84.9466%; | |
| 1115 | + descent-override: 22.0264%; | |
| 1116 | + size-adjust: 113.954%; | |
| 1117 | + line-gap-override: 0%; | |
| 1118 | + }@font-face { | |
| 1119 | + font-family: "Lato Fallback"; | |
| 1120 | + src: local('Arial'); | |
| 1121 | + ascent-override: 101.3181%; | |
| 1122 | + descent-override: 21.865%; | |
| 1123 | + size-adjust: 97.4159%; | |
| 1124 | + line-gap-override: 0%; | |
| 1125 | + }@font-face { | |
| 1126 | + font-family: "Pacifico Fallback"; | |
| 1127 | + src: local('Arial'); | |
| 1128 | + ascent-override: 140.9687%; | |
| 1129 | + descent-override: 49.0091%; | |
| 1130 | + size-adjust: 92.4319%; | |
| 1131 | + line-gap-override: 0%; | |
| 1132 | + }@font-face { | |
| 1133 | + font-family: "Courier Prime Fallback"; | |
| 1134 | + src: local('Arial'); | |
| 1135 | + ascent-override: 57.5122%; | |
| 1136 | + descent-override: 25.1616%; | |
| 1137 | + size-adjust: 135.8407%; | |
| 1138 | + line-gap-override: 0%; | |
| 1139 | + }@font-face { | |
| 1140 | + font-family: "Comfortaa Fallback"; | |
| 1141 | + src: local('Arial'); | |
| 1142 | + ascent-override: 74.2135%; | |
| 1143 | + descent-override: 19.7117%; | |
| 1144 | + size-adjust: 118.7115%; | |
| 1145 | + line-gap-override: 0%; | |
| 1146 | + } | |
| 1147 | +</style> | |
| 1148 | + | |
| 1149 | + | |
| 1150 | +<!-- End render the required css and JS in the head section --> | |
| 1151 | + | |
| 1152 | + | |
| 1153 | + | |
| 1154 | + | |
| 1155 | + | |
| 1156 | + | |
| 1157 | +<meta property="og:type" content="website"> | |
| 1158 | +<meta property="og:url" content="https://www.girs.ca/location/scott"> | |
| 1159 | + | |
| 1160 | + <title> | |
| 1161 | + Appartement à louer à Scott | GIRS | |
| 1162 | + </title> | |
| 1163 | + <meta name="keywords" content="Appartements à louer Québec, Appartements à louer Rive-Sud, 3½, 4½, 5½, Jumelés à louer Québec, Jumelés à louer Rive-Sud,"/> | |
| 1164 | + <meta name="description" content="Trouvez un appartement à louer à Scott avec GIRS. Découvrez nos 4½, 5½ et jumelés dans des secteurs recherchés et bien situés."/> | |
| 1165 | + | |
| 1166 | + <meta name="twitter:card" content="summary"/> | |
| 1167 | + <meta name="twitter:title" content="Appartement à louer à Scott | GIRS"/> | |
| 1168 | + <meta name="twitter:description" content="Trouvez un appartement à louer à Scott avec GIRS. Découvrez nos 4½, 5½ et jumelés dans des secteurs recherchés et bien situés."/> | |
| 1169 | + <meta property="og:description" content="Trouvez un appartement à louer à Scott avec GIRS. Découvrez nos 4½, 5½ et jumelés dans des secteurs recherchés et bien situés."/> | |
| 1170 | + <meta property="og:title" content="Appartement à louer à Scott | GIRS"/> | |
| 1171 | + | |
| 1172 | + | |
| 1173 | + | |
| 1174 | + | |
| 1175 | +<!-- SYS- VVNfRElSRUNUX1BST0RVQ1RJT04= --> | |
| 1176 | +</head> | |
| 1177 | + | |
| 1178 | + | |
| 1179 | + | |
| 1180 | + | |
| 1181 | + | |
| 1182 | + | |
| 1183 | + | |
| 1184 | + | |
| 1185 | + | |
| 1186 | + | |
| 1187 | + | |
| 1188 | + | |
| 1189 | + | |
| 1190 | + | |
| 1191 | + | |
| 1192 | + | |
| 1193 | + | |
| 1194 | + | |
| 1195 | + | |
| 1196 | + | |
| 1197 | + | |
| 1198 | +<body id="dmRoot" data-page-alias="location/scott" class="dmRoot dmDesktopBody fix-mobile-scrolling addCanvasBorder dmResellerSite dmLargeBody responsiveTablet " | |
| 1199 | + style="padding:0;margin:0;" | |
| 1200 | + | |
| 1201 | + > | |
| 1202 | + | |
| 1203 | + | |
| 1204 | + | |
| 1205 | + | |
| 1206 | + | |
| 1207 | + | |
| 1208 | + | |
| 1209 | + | |
| 1210 | + | |
| 1211 | + | |
| 1212 | + | |
| 1213 | + | |
| 1214 | + | |
| 1215 | + | |
| 1216 | + | |
| 1217 | + | |
| 1218 | +<!-- ========= Site Content ========= --> | |
| 1219 | +<div id="dm" class='dmwr'> | |
| 1220 | + | |
| 1221 | + <div class="dm_wrapper standard-var5 widgetStyle-3 standard"> | |
| 1222 | + <div dmwrapped="true" id="1901957768" class="dm-home-page" themewaschanged="true" desktop-global-classes="" tablet-global-classes="" mobile-global-classes="header-over-content"> <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> | |
| 1223 | +</div> | |
| 1224 | +</div> | |
| 1225 | + <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> | |
| 1226 | +</div> | |
| 1227 | + <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">À louer<span class="icon icon-angle-down"></span> | |
| 1228 | +</span> | |
| 1229 | +</a> | |
| 1230 | + <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 dmNavItemSelected dmUDNavigationItem_010101940735 unifiednav__item_has-sub-nav" target="" data-target-page-alias="" aria-current="page" data-auto="selected-page"> <span class="nav-item-text " data-link-text="Scott, Chaudières-Appalaches" data-auto="page-text-style">Scott, Chaudières-Appalaches<span class="icon icon-angle-right"></span> | |
| 1231 | +</span> | |
| 1232 | +</a> | |
| 1233 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/scott/rue-amanda-gustave" class="unifiednav__item unav-item dmUDNavigationItem_010101104557 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Amanda-Gustave" data-auto="page-text-style">Rue Amanda-Gustave<span class="icon icon-angle-right"></span> | |
| 1234 | +</span> | |
| 1235 | +</a> | |
| 1236 | +</li> | |
| 1237 | + <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> | |
| 1238 | +</span> | |
| 1239 | +</a> | |
| 1240 | +</li> | |
| 1241 | + <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> | |
| 1242 | +</span> | |
| 1243 | +</a> | |
| 1244 | +</li> | |
| 1245 | +</ul> | |
| 1246 | +</li> | |
| 1247 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1248 | +</span> | |
| 1249 | +</a> | |
| 1250 | + <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> | |
| 1251 | +</span> | |
| 1252 | +</a> | |
| 1253 | +</li> | |
| 1254 | +</ul> | |
| 1255 | +</li> | |
| 1256 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1257 | +</span> | |
| 1258 | +</a> | |
| 1259 | + <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 Érables, Jumelé<span class="icon icon-angle-right"></span> | |
| 1260 | +</span> | |
| 1261 | +</a> | |
| 1262 | +</li> | |
| 1263 | + <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 Érables, Condo<span class="icon icon-angle-right"></span> | |
| 1264 | +</span> | |
| 1265 | +</a> | |
| 1266 | +</li> | |
| 1267 | +</ul> | |
| 1268 | +</li> | |
| 1269 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1270 | +</span> | |
| 1271 | +</a> | |
| 1272 | + <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> | |
| 1273 | +</span> | |
| 1274 | +</a> | |
| 1275 | +</li> | |
| 1276 | +</ul> | |
| 1277 | +</li> | |
| 1278 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1279 | +</span> | |
| 1280 | +</a> | |
| 1281 | + <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> | |
| 1282 | +</span> | |
| 1283 | +</a> | |
| 1284 | +</li> | |
| 1285 | +</ul> | |
| 1286 | +</li> | |
| 1287 | +</ul> | |
| 1288 | +</li> | |
| 1289 | + <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">À vendre<span class="icon icon-angle-down"></span> | |
| 1290 | +</span> | |
| 1291 | +</a> | |
| 1292 | + <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> | |
| 1293 | +</span> | |
| 1294 | +</a> | |
| 1295 | +</li> | |
| 1296 | +</ul> | |
| 1297 | +</li> | |
| 1298 | + <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> | |
| 1299 | +</span> | |
| 1300 | +</a> | |
| 1301 | + <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ésentation au TAL<span class="icon icon-angle-right"></span> | |
| 1302 | +</span> | |
| 1303 | +</a> | |
| 1304 | +</li> | |
| 1305 | +</ul> | |
| 1306 | +</li> | |
| 1307 | + <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étaires<span class="icon icon-angle-down"></span> | |
| 1308 | +</span> | |
| 1309 | +</a> | |
| 1310 | +</li> | |
| 1311 | + <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> | |
| 1312 | +</span> | |
| 1313 | +</a> | |
| 1314 | +</li> | |
| 1315 | +</ul> | |
| 1316 | +</nav> | |
| 1317 | +</div> | |
| 1318 | +</div> | |
| 1319 | +</div> | |
| 1320 | + <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> | |
| 1321 | +<b> <span style="text-decoration-line: underline;"></span> | |
| 1322 | +<span class="font-size-22 lh-1"> <span style="text-decoration-line: underline;"></span> | |
| 1323 | + <div style="text-align: left;"> <span style=""> <span style="text-decoration-line: underline;"></span> | |
| 1324 | +<span style=""> <span style="text-decoration-line: underline;"></span> | |
| 1325 | +<font style="color: rgb(255, 255, 255);"> <span style="text-decoration-line: underline;"></span> | |
| 1326 | +<span style="" class="font-size-22 lh-1"> <span style="text-decoration-line: underline;"></span> | |
| 1327 | +<b style=""> <span style="text-decoration-line: underline;"> <span style="font-weight: 700; font-size: 20px;">Nous contacter</span></span> | |
| 1328 | +</b> | |
| 1329 | +</span> | |
| 1330 | +</font> | |
| 1331 | +</span> | |
| 1332 | +</span> | |
| 1333 | +</div> | |
| 1334 | +</span> | |
| 1335 | +</b> | |
| 1336 | +</font> | |
| 1337 | +</div> | |
| 1338 | +</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 && dm_gaq_push_event('socialLink', 'click', 'Email')"> <span class="dmSocialEmail dm-social-icons-email oneIcon socialHubIcon style8" aria-hidden="true" data-hover-effect=""></span> | |
| 1339 | +</a> | |
| 1340 | + <a href="https://www.facebook.com/gestionimmobiliererivesud/" target="_blank" dm_dont_rewrite_url="true" aria-label="facebook" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Facebook')"> <span class="dmSocialFacebook dm-social-icons-facebook oneIcon socialHubIcon style8" aria-hidden="true" data-hover-effect=""></span> | |
| 1341 | +</a> | |
| 1342 | +</div> | |
| 1343 | +</div> | |
| 1344 | +</div> | |
| 1345 | + <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> | |
| 1346 | +</span> | |
| 1347 | + <span class="text">Appelez-nous</span> | |
| 1348 | +</a> | |
| 1349 | +</div> | |
| 1350 | +</div> | |
| 1351 | +</div> | |
| 1352 | +</div> | |
| 1353 | + <div class="layout-drawer-overlay" id="layout-drawer-overlay"></div> | |
| 1354 | +</div> | |
| 1355 | + <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> | |
| 1356 | +</div> | |
| 1357 | +</div> | |
| 1358 | +</div> | |
| 1359 | +</div> | |
| 1360 | + <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> | |
| 1361 | + <span class="hamburger__slice"></span> | |
| 1362 | + <span class="hamburger__slice"></span> | |
| 1363 | +</button> | |
| 1364 | + <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> | |
| 1365 | + <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 && dm_gaq_push_event('socialLink', 'click', 'Facebook')"> <span class="dmSocialFacebook dm-social-icons-facebook oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> | |
| 1366 | +</a> | |
| 1367 | + <a href="http://linkedin.com/" target="_blank" dm_dont_rewrite_url="true" aria-label="linkedin" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Linkedin')"> <span class="dmSocialLinkedin icon-linkedin oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> | |
| 1368 | +</a> | |
| 1369 | + <a href="mailto:immeubles@gestionirs.com" dm_dont_rewrite_url="true" aria-label="email" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Email')"> <span class="dmSocialEmail dm-social-icons-email oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> | |
| 1370 | +</a> | |
| 1371 | +</div> | |
| 1372 | +</div> | |
| 1373 | +</div> | |
| 1374 | +</div> | |
| 1375 | + <div class="u_1980771558 dmRespCol small-12 large-2 medium-2" id="1980771558"> <span id="1064055669"></span> | |
| 1376 | + <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> | |
| 1377 | +</svg> | |
| 1378 | +</div> | |
| 1379 | +</div> | |
| 1380 | + <div class="u_1016959372 dmRespCol small-12 large-2 medium-2" id="1016959372"> <span id="1845699766"></span> | |
| 1381 | + <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> | |
| 1382 | +</div> | |
| 1383 | +</div> | |
| 1384 | + <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> | |
| 1385 | +</div> | |
| 1386 | +</div> | |
| 1387 | + <div class="u_1522799502 dmRespCol small-12 large-10 medium-10" id="1522799502"> <span id="1481163886"></span> | |
| 1388 | + <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">À louer<span class="icon icon-angle-down"></span> | |
| 1389 | +</span> | |
| 1390 | +</a> | |
| 1391 | + <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 dmNavItemSelected dmUDNavigationItem_010101940735 unifiednav__item_has-sub-nav" target="" data-target-page-alias="" aria-current="page" data-auto="selected-page"> <span class="nav-item-text " data-link-text="Scott, Chaudières-Appalaches" data-auto="page-text-style">Scott, Chaudières-Appalaches<span class="icon icon-angle-right"></span> | |
| 1392 | +</span> | |
| 1393 | +</a> | |
| 1394 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/scott/rue-amanda-gustave" class="unifiednav__item unav-item dmUDNavigationItem_010101104557 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Amanda-Gustave" data-auto="page-text-style">Rue Amanda-Gustave<span class="icon icon-angle-right"></span> | |
| 1395 | +</span> | |
| 1396 | +</a> | |
| 1397 | +</li> | |
| 1398 | + <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> | |
| 1399 | +</span> | |
| 1400 | +</a> | |
| 1401 | +</li> | |
| 1402 | + <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> | |
| 1403 | +</span> | |
| 1404 | +</a> | |
| 1405 | +</li> | |
| 1406 | +</ul> | |
| 1407 | +</li> | |
| 1408 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1409 | +</span> | |
| 1410 | +</a> | |
| 1411 | + <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> | |
| 1412 | +</span> | |
| 1413 | +</a> | |
| 1414 | +</li> | |
| 1415 | +</ul> | |
| 1416 | +</li> | |
| 1417 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1418 | +</span> | |
| 1419 | +</a> | |
| 1420 | + <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 Érables, Jumelé<span class="icon icon-angle-right"></span> | |
| 1421 | +</span> | |
| 1422 | +</a> | |
| 1423 | +</li> | |
| 1424 | + <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 Érables, Condo<span class="icon icon-angle-right"></span> | |
| 1425 | +</span> | |
| 1426 | +</a> | |
| 1427 | +</li> | |
| 1428 | +</ul> | |
| 1429 | +</li> | |
| 1430 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1431 | +</span> | |
| 1432 | +</a> | |
| 1433 | + <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> | |
| 1434 | +</span> | |
| 1435 | +</a> | |
| 1436 | +</li> | |
| 1437 | +</ul> | |
| 1438 | +</li> | |
| 1439 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1440 | +</span> | |
| 1441 | +</a> | |
| 1442 | + <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> | |
| 1443 | +</span> | |
| 1444 | +</a> | |
| 1445 | +</li> | |
| 1446 | +</ul> | |
| 1447 | +</li> | |
| 1448 | +</ul> | |
| 1449 | +</li> | |
| 1450 | + <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">À vendre<span class="icon icon-angle-down"></span> | |
| 1451 | +</span> | |
| 1452 | +</a> | |
| 1453 | + <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> | |
| 1454 | +</span> | |
| 1455 | +</a> | |
| 1456 | +</li> | |
| 1457 | +</ul> | |
| 1458 | +</li> | |
| 1459 | + <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> | |
| 1460 | +</span> | |
| 1461 | +</a> | |
| 1462 | + <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ésentation au TAL<span class="icon icon-angle-right"></span> | |
| 1463 | +</span> | |
| 1464 | +</a> | |
| 1465 | +</li> | |
| 1466 | +</ul> | |
| 1467 | +</li> | |
| 1468 | + <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étaires<span class="icon icon-angle-down"></span> | |
| 1469 | +</span> | |
| 1470 | +</a> | |
| 1471 | +</li> | |
| 1472 | + <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> | |
| 1473 | +</span> | |
| 1474 | +</a> | |
| 1475 | +</li> | |
| 1476 | +</ul> | |
| 1477 | +</nav> | |
| 1478 | +</div> | |
| 1479 | +</div> | |
| 1480 | +</div> | |
| 1481 | +</div> | |
| 1482 | +</div> | |
| 1483 | +</div> | |
| 1484 | + <div dmwrapped="true" id="dmFirstContainer" class="dmBody u_dmStyle_template_location/scott dm-home-page" themewaschanged="true" desktop-global-classes="" tablet-global-classes="" mobile-global-classes="header-over-content"> <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="u_1145454822 dmRespRow hide-for-small" id="1145454822"> <div class="dmRespColsWrapper" id="1291196359"> <div class="u_1375163423 dmRespCol small-12 large-8 medium-8" id="1375163423"> <div class="dmNewParagraph u_1443273326" data-element-type="paragraph" data-version="5" id="1443273326" style="transition: opacity 1s ease-in-out 0s;"> <h1 class="m-size-32 size-40" style="line-height: 1.5;"><span class="font-size-40 m-font-size-32" style="color: var(--color_2); display: unset;">Trouver votre futur appartement à louer, ici.</span></h1> | |
| 1485 | +</div> | |
| 1486 | + <div class="dmDividerWrapper clearfix u_1372977652" data-element-type="dDividerId" data-layout="divider-style-1" data-widget-version="2" id="1372977652" layout="divider-gradient-line"><hr class="dmDivider" style="border-width:2px; border-top-style:solid; color:grey;" id="1520123226"/></div> | |
| 1487 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1876016552" style="transition: opacity 1s ease-in-out 0s;"><p style="line-height: 1.5;"><strong style="font-weight: bold; display: initial;">Vous êtes à la recherche d'un logement à louer ?</strong></p><p style="line-height: 1.5;"><span style="color:var(--color_1);font-weight:400;display:initial;font-family:Lato, 'Lato Fallback';"><br/></span></p><p style="line-height: 1.5;"><span style="display: initial;">Qu'il soit composé d'un jardin ou non, situé en étage ou rez-de-chaussée, 3½, 4½ ou 5½, il y a obligatoirement l'appartement de vos rêves parmi toutes nos offres. Nous sommes spécialisées en gestion d'immeubles locatifs sur la Rive Sud de Québec, nos conseillers sont la pour vous accompagner tout au long de vos démarches. </span></p></div> | |
| 1488 | +</div> | |
| 1489 | + <div class="u_1539379069 dmRespCol small-12 large-4 medium-4" id="1539379069"> <div class="u_1340870343 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1340870343"><img src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Illustration_louer_acheter-1920w.jpg" id="1363938193" class="" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/Illustration_louer_acheter.jpg" width="981" height="899" alt="Une femme est assise sur un canapé en train d'utiliser un ordinateur portable." onerror="handleImageLoadError(this)"/></div> | |
| 1490 | +</div> | |
| 1491 | +</div> | |
| 1492 | +</div> | |
| 1493 | + <div class="dmRespRow u_1761309989" id="1761309989"> <div class="dmRespColsWrapper" id="1330653759"> <div class="dmRespCol large-12 medium-12 small-12" id="1454310403"> <div class="dmNewParagraph u_1750032124" data-element-type="paragraph" data-version="5" id="1750032124" style="transition: opacity 1s ease-in-out; text-align: left;"> <h2 class="text-align-left" style="line-height: 1.5;"><span style="display: unset;">Municipalité de Scott</span></h2> | |
| 1494 | +</div> | |
| 1495 | + <div class="u_1876421869 dmDividerWrapper clearfix" data-element-type="dDividerId" data-layout="divider-style-1" data-widget-version="2" id="1876421869" layout="divider-gradient-line"><hr class="dmDivider" style="border-width:2px; border-top-style:solid; color:grey;" id="1135832568"/></div> | |
| 1496 | +</div> | |
| 1497 | +</div> | |
| 1498 | +</div> | |
| 1499 | + <div class="dmRespRow u_1673285928" id="1673285928"> <div class="dmRespColsWrapper" id="1659151924"> <div class="dmRespCol large-12 medium-12 small-12" id="1301508103"> <div class="dmPhotoGallery newPhotoGallery dmPhotoGalleryResp u_1994385402 photo-gallery-done text-layout-bottom captionAlignment-center_left photoGallery" galleryoptionsparams="{thumbnailsPerRow: 3, rowsToShow: 3, imageScaleMethod: true}" data-desktop-layout="square" data-desktop-columns="3" data-element-type="dPhotoGalleryId" data-desktop-text-layout="bottom" id="1994385402" data-desktop-caption-alignment="center_left" data-rows-to-show="100" data-image-hover-effect="zoomout" data-image-animation="none" data-link-gallery="true" data-placeholder="false" data-auto-adjust-columns="true"> <div class="dmPhotoGalleryHolder clearfix gallery shadowEffectToChildren gallery4inArow" id="1362986591"></div> | |
| 1500 | + <div class="layout-container square"> <div class="photogallery-row " data-index=""> <div class="photogallery-column column-3" data-index="0"> <div index="0" class="photoGalleryThumbs animated " data-index="0"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" aria-labelledby="1022844888" data-dm-force-device="mobile" class="u_1988214151" data-image-url="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/6+logements+1080x1080.jpg" style="background-image: url('https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/6+logements+1080x1080-640w.jpg');"><img id="1268742530" data-src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/6+logements+1080x1080-1920w.jpg" alt="Un grand bâtiment blanc avec des balcons et des escaliers" aria-labelledby="1022844888" onerror="handleImageLoadError(this)"/></a> | |
| 1501 | +</div> | |
| 1502 | + <div id="1765310117" class="caption-container u_1765310117" style="display:none"> <span class="caption-inner"> <h3 id="1022844888" class="caption-title u_1022844888">Rue Jean-Baptiste</h3> | |
| 1503 | + <div id="1585353509" class="caption-text u_1585353509"><p class="rteBlock"><span style="color:var(--color_2)"><strong>Appartements 4½ </strong></span></p></div> | |
| 1504 | + <a id="1501477206" class="caption-button dmWidget clearfix u_1501477206" href="/location/scott/rue-jean-baptiste" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> | |
| 1505 | +</span> | |
| 1506 | + <span class="text">Découvrir</span> | |
| 1507 | +</a> | |
| 1508 | +</span> | |
| 1509 | +</div> | |
| 1510 | +</div> | |
| 1511 | +</div> | |
| 1512 | +</div> | |
| 1513 | + <div class="photogallery-column column-3" data-index="1"> <div index="1" class="photoGalleryThumbs animated " data-index="1"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" aria-labelledby="1895376806" data-dm-force-device="mobile" class="u_1415457352" data-image-url="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/Jumel%C3%A9+1080x1080.jpg" style="background-image: url('https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Jumel%C3%A9+1080x1080-640w.jpg');"><img id="1852179754" data-src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Jumel%C3%A9+1080x1080-1920w.jpg" alt="Une maison blanche et noire avec un ciel bleu en arrière-plan" aria-labelledby="1895376806" onerror="handleImageLoadError(this)"/></a> | |
| 1514 | +</div> | |
| 1515 | + <div id="1601549965" class="caption-container u_1601549965" style=""> <span class="caption-inner"> <h3 id="1895376806" class="caption-title u_1895376806">Quartier Marie Flore</h3> | |
| 1516 | + <div id="1260693610" class="caption-text u_1260693610"><p class="rteBlock"><span style="color:var(--color_2)"><strong>Jumelés avec 3 ou 4 chambres</strong></span></p></div> | |
| 1517 | + <a id="1468565374" class="caption-button dmWidget clearfix u_1468565374" href="/location/scott/rue-marie-flore" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> | |
| 1518 | +</span> | |
| 1519 | + <span class="text">Découvrir</span> | |
| 1520 | +</a> | |
| 1521 | +</span> | |
| 1522 | +</div> | |
| 1523 | +</div> | |
| 1524 | +</div> | |
| 1525 | +</div> | |
| 1526 | + <div class="photogallery-column column-3" data-index="2"> <div index="2" class="photoGalleryThumbs animated " data-index="2"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" aria-labelledby="1019026370" data-dm-force-device="mobile" class="u_1227012482" data-image-url="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/Place+%C3%89vo+1080x1080.jpg" style="background-image: url('https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Place+%C3%89vo+1080x1080-640w.jpg');"><img id="1900184026" data-src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/Place+%C3%89vo+1080x1080-1920w.jpg" alt="Un grand immeuble d'appartements avec un parking devant" aria-labelledby="1019026370" onerror="handleImageLoadError(this)"/></a> | |
| 1527 | +</div> | |
| 1528 | + <div id="1996674756" class="caption-container u_1996674756" style="display:none"> <span class="caption-inner"> <h3 id="1019026370" class="caption-title u_1019026370">Rue Amanda-Gustave</h3> | |
| 1529 | + <div id="1273356074" class="caption-text u_1273356074"><p class="rteBlock"><span style="color:var(--color_2)"><strong>Appartements 4½ ou 5½</strong></span></p></div> | |
| 1530 | + <a id="1605314134" class="caption-button dmWidget clearfix u_1605314134" href="/location/scott/rue-amanda-gustave" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> | |
| 1531 | +</span> | |
| 1532 | + <span class="text">Découvrir</span> | |
| 1533 | +</a> | |
| 1534 | +</span> | |
| 1535 | +</div> | |
| 1536 | +</div> | |
| 1537 | +</div> | |
| 1538 | +</div> | |
| 1539 | +</div> | |
| 1540 | +</div> | |
| 1541 | +</div> | |
| 1542 | +</div> | |
| 1543 | +</div> | |
| 1544 | +</div> | |
| 1545 | + <div class="dmRespRow u_1565367189" id="1565367189"> <div class="dmRespColsWrapper" id="1545736585"> <div class="dmRespCol large-12 medium-12 small-12" id="1373039357"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1894922190" style="transition: opacity 1s ease-in-out;"> <h2 class="text-align-left" style="line-height: 1.5;"><span style="display: unset;">Une municipalité en plein essor au cœur de la Chaudière-Appalaches</span></h2> | |
| 1546 | +</div> | |
| 1547 | + <div class="u_1375670237 dmDividerWrapper clearfix" data-element-type="dDividerId" data-layout="divider-style-1" data-widget-version="2" id="1375670237" layout="divider-gradient-line"><hr class="dmDivider" style="border-width:2px; border-top-style:solid; color:grey;" id="1697928632"/></div> | |
| 1548 | +</div> | |
| 1549 | +</div> | |
| 1550 | +</div> | |
| 1551 | + <div class="dmRespRow" id="1353677494"> <div class="dmRespColsWrapper" id="1489703227"> <div class="dmRespCol large-12 medium-12 small-12" id="1683820907"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1651159524"><p style="line-height: 1.5;"><span style="display: initial; font-weight: normal;">Située dans la région de Chaudière-Appalaches, la municipalité de Scott se distingue par son développement dynamique, sa qualité de vie et son emplacement stratégique. Limitrophe à Sainte-Marie, Scott permet d’accéder facilement à toutes les commodités essentielles : centres commerciaux, restaurants, écoles, cliniques, pharmacies et services municipaux.</span></p><p style="line-height: 1.5;"><span style="display: initial; font-weight: normal;"><br/></span></p><p style="line-height: 1.5;"><span style="display: initial; font-weight: normal;">Bénéficiant d’une proximité immédiate avec l’autoroute 73, Scott est également très bien connectée aux grands axes routiers, facilitant les déplacements vers Québec et les villes environnantes. Cette accessibilité en fait un lieu prisé pour les familles et les professionnels.</span></p><p style="line-height: 1.5;"><span style="display: initial; font-weight: normal;"><br/></span></p><p style="line-height: 1.5;"><span style="display: initial; font-weight: normal;">La municipalité connaît une croissance soutenue et s’équipe pour l’avenir : une nouvelle caserne incendie, une école en construction ainsi qu’un centre de la petite enfance (CPE) viennent bonifier l’offre de services de proximité, dans un environnement sécuritaire et convivial.</span></p><p style="line-height: 1.5;"><span style="display: initial; font-weight: normal;"><br/></span></p><p style="line-height: 1.5;"><span style="display: initial; font-weight: normal;">Avec son cadre naturel paisible, ses espaces verts, et son esprit communautaire, Scott représente un choix judicieux pour celles et ceux qui souhaitent vivre dans un milieu familial, moderne et bien desservi.</span></p></div> | |
| 1552 | +</div> | |
| 1553 | +</div> | |
| 1554 | +</div> | |
| 1555 | + <div class="u_1306107430 dmRespRow hide-for-small hasBackgroundOverlay" id="1306107430"> <div class="dmRespColsWrapper" id="1866389458"> <div class="u_1055536653 dmRespCol small-12 medium-12 large-12" id="1055536653"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1587282634" 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> | |
| 1556 | +</span><span style="display: initial;"><br/></span></h2> | |
| 1557 | +</div> | |
| 1558 | + <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1738572659" 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ésitez pas à nous contacter pour découvrir tout ce que vous souhaitez savoir sur les logements, les quartiers et tout ce qui s'y trouve. Nous sommes là pour répondre à toutes vos questions.</span> | |
| 1559 | +</span></p></div> | |
| 1560 | + <a data-display-type="block" class="u_1984578540 align-center dmButtonLink dmWidget dmWwr default dmOnlyButton dmDefaultGradient flexButton button_2" file="false" href="/contact" data-element-type="dButtonLinkId" id="1984578540"> <span class="iconBg" aria-hidden="true" id="1850805978"> <span class="icon hasFontIcon icon-star" id="1361455540"></span> | |
| 1561 | +</span> | |
| 1562 | + <span class="text" id="1716003195">Contactez-nous</span> | |
| 1563 | +</a> | |
| 1564 | +</div> | |
| 1565 | +</div> | |
| 1566 | +</div> | |
| 1567 | +</div> | |
| 1568 | +</div> | |
| 1569 | +</div> | |
| 1570 | +</div> | |
| 1571 | + <div class="sticky-widgets-container-global" id="1915928664"></div> | |
| 1572 | + <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> | |
| 1573 | +</div> | |
| 1574 | +</div> | |
| 1575 | +</div> | |
| 1576 | + <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> | |
| 1577 | +</div> | |
| 1578 | + <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> | |
| 1579 | +</div> | |
| 1580 | + <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> | |
| 1581 | +</div> | |
| 1582 | + <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> | |
| 1583 | +</div> | |
| 1584 | +</div> | |
| 1585 | +</div> | |
| 1586 | + <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écialiste en gestion d’immeubles locatifs, notre équipe saura vous accompagner tout au long de vos démarches.</span></p></div> | |
| 1587 | + <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> | |
| 1588 | +</div> | |
| 1589 | + <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> | |
| 1590 | +</div> | |
| 1591 | + <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=" | |
| 1592 | + Accueil | |
| 1593 | + " 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> | |
| 1594 | +</span> | |
| 1595 | +</a> | |
| 1596 | +</li> | |
| 1597 | + <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> | |
| 1598 | +</span> | |
| 1599 | +</a> | |
| 1600 | +</li> | |
| 1601 | +</ul> | |
| 1602 | +</nav> | |
| 1603 | +</div> | |
| 1604 | + <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> | |
| 1605 | +</div> | |
| 1606 | + <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ésentation au TAL<span class="icon icon-angle-down" data-hidden-on-mobile="" data-hidden-on-desktop="" data-hidden-on-tablet=""></span> | |
| 1607 | +</span> | |
| 1608 | +</a> | |
| 1609 | +</li> | |
| 1610 | + <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étaires<span class="icon icon-angle-down" data-hidden-on-mobile="" data-hidden-on-desktop="" data-hidden-on-tablet=""></span> | |
| 1611 | +</span> | |
| 1612 | +</a> | |
| 1613 | +</li> | |
| 1614 | +</ul> | |
| 1615 | +</nav> | |
| 1616 | +</div> | |
| 1617 | + <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> | |
| 1618 | +</div> | |
| 1619 | + <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> | |
| 1620 | +</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> | |
| 1621 | +</div> | |
| 1622 | +</div> | |
| 1623 | +</div> | |
| 1624 | + <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>© 2026 </div> | |
| 1625 | + <div><p class="rteBlock">Gestion Immobilière de la Rive Sud 2025 - Tous droits réservés</p></div> | |
| 1626 | +</div> | |
| 1627 | +</div> | |
| 1628 | +</div> | |
| 1629 | +</div> | |
| 1630 | +</div> | |
| 1631 | +</div> | |
| 1632 | + <div id="1236746004" dmle_extension="powered_by" data-element-type="powered_by" icon="true" surround="false"></div> | |
| 1633 | +</div> | |
| 1634 | +</div> | |
| 1635 | +</div> | |
| 1636 | +</div> | |
| 1637 | +</div> | |
| 1638 | +</div> | |
| 1639 | +</div> | |
| 1640 | +</div> | |
| 1641 | +</div> | |
| 1642 | + | |
| 1643 | + </div> | |
| 1644 | +</div> | |
| 1645 | +<!-- Add full CSS and Javascript before the close tag of the body if needed --> | |
| 1646 | + | |
| 1647 | + | |
| 1648 | + | |
| 1649 | + | |
| 1650 | + | |
| 1651 | + | |
| 1652 | + | |
| 1653 | + | |
| 1654 | + | |
| 1655 | + | |
| 1656 | + | |
| 1657 | + | |
| 1658 | + | |
| 1659 | + | |
| 1660 | + | |
| 1661 | + | |
| 1662 | + | |
| 1663 | + | |
| 1664 | + | |
| 1665 | + | |
| 1666 | + | |
| 1667 | + | |
| 1668 | + | |
| 1669 | + | |
| 1670 | + | |
| 1671 | + | |
| 1672 | + | |
| 1673 | + | |
| 1674 | + | |
| 1675 | + | |
| 1676 | + | |
| 1677 | + | |
| 1678 | + | |
| 1679 | + | |
| 1680 | + | |
| 1681 | + | |
| 1682 | + | |
| 1683 | + | |
| 1684 | +<!-- ========= JS Section ========= --> | |
| 1685 | +<script> | |
| 1686 | + var isWLR = true; | |
| 1687 | + | |
| 1688 | + window.customWidgetsFunctions = {}; | |
| 1689 | + window.customWidgetsStrings = {}; | |
| 1690 | + window.collections = {}; | |
| 1691 | + window.currentLanguage = "FRENCH" | |
| 1692 | + window.isSitePreview = false; | |
| 1693 | +</script> | |
| 1694 | + | |
| 1695 | + | |
| 1696 | + | |
| 1697 | +<script> | |
| 1698 | + window.customWidgetsFunctions["1f5975986930429f819d4cd2154b5c4a~25"] = function (element, data, api) { | |
| 1699 | + null | |
| 1700 | + }; | |
| 1701 | +</script> | |
| 1702 | + | |
| 1703 | + | |
| 1704 | +<script type="text/javascript"> | |
| 1705 | + | |
| 1706 | + var d_version = "production_6688"; | |
| 1707 | + var build = "2026-08-06T08_49_03"; | |
| 1708 | + window['v' + 'ersion'] = d_version; | |
| 1709 | + | |
| 1710 | + function buildEditorParent() { | |
| 1711 | + window.isMultiScreen = true; | |
| 1712 | + window.editorParent = {}; | |
| 1713 | + window.previewParent = {}; | |
| 1714 | + window.assetsCacheQueryParam = "?version=2026-08-06T08_49_03"; | |
| 1715 | + try { | |
| 1716 | + var _p = window.parent; | |
| 1717 | + if (_p && _p.document && _p.$ && _p.$.dmfw) { | |
| 1718 | + window.editorParent = _p; | |
| 1719 | + } else if (_p.isSitePreview) { | |
| 1720 | + window.previewParent = _p; | |
| 1721 | + } | |
| 1722 | + } catch (e) { | |
| 1723 | + | |
| 1724 | + } | |
| 1725 | + } | |
| 1726 | + | |
| 1727 | + buildEditorParent(); | |
| 1728 | +</script> | |
| 1729 | + | |
| 1730 | + | |
| 1731 | +<!-- Load jQuery --> | |
| 1732 | + | |
| 1733 | +<script type="text/javascript" id='d-js-jquery' | |
| 1734 | + src="https://static.cdn-website.com/libs/jquery/jquery-3.7.0.min.js"></script> | |
| 1735 | + | |
| 1736 | +<!-- End Load jQuery --> | |
| 1737 | + | |
| 1738 | + | |
| 1739 | +<!-- Injecting site-wide before scripts --> | |
| 1740 | + | |
| 1741 | +<!-- End Injecting site-wide to the head --> | |
| 1742 | + | |
| 1743 | + | |
| 1744 | + | |
| 1745 | +<script> | |
| 1746 | + var _jquery = window.$; | |
| 1747 | + | |
| 1748 | + var jqueryAliases = ['$', 'jquery', 'jQuery']; | |
| 1749 | + | |
| 1750 | + jqueryAliases.forEach((alias) => { | |
| 1751 | + Object.defineProperty(window, alias, { | |
| 1752 | + get() { | |
| 1753 | + return _jquery; | |
| 1754 | + }, | |
| 1755 | + set() { | |
| 1756 | + console.warn("Trying to over-write the global jquery object!"); | |
| 1757 | + } | |
| 1758 | + }); | |
| 1759 | + }); | |
| 1760 | + window.jQuery.migrateMute = true; | |
| 1761 | +</script> | |
| 1762 | + | |
| 1763 | + | |
| 1764 | + | |
| 1765 | + | |
| 1766 | +<script> | |
| 1767 | + window.cookiesNotificationMarkupPreview = ' <div> <p class=\"rteBlock\">Nous utilisons des cookies pour optimiser votre expérience sur notre site web. Pour en savoir plus, veuillez accéder à la page <a value=\"donnees-personnelles\" label=\"\" type=\"page\" href=\"\/donnees-personnelles\" data-runtime-url=\"\/donnees-personnelles\">Confidentialité<\/a>.<\/p> \n<\/div> \n'; | |
| 1768 | +</script> | |
| 1769 | + | |
| 1770 | +<!-- HEAD RT JS Include --> | |
| 1771 | +<script id='d-js-params'> | |
| 1772 | + window.INSITE = window.INSITE || {}; | |
| 1773 | + window.INSITE.device = "desktop"; | |
| 1774 | + | |
| 1775 | + window.rtCommonProps = {}; | |
| 1776 | + rtCommonProps["rt.ajax.ajaxScriptsFix"] =true; | |
| 1777 | + rtCommonProps["rt.pushnotifs.sslframe.encoded"] = 'aHR0cHM6Ly97c3ViZG9tYWlufS5wdXNoLW5vdGlmcy5jb20='; | |
| 1778 | + rtCommonProps["runtimecollector.url"] = 'https://rtc.multiscreensite.com'; | |
| 1779 | + rtCommonProps["performance.tabletPreview.removeScroll"] = 'false'; | |
| 1780 | + rtCommonProps["inlineEditGrid.snap"] =true; | |
| 1781 | + rtCommonProps["popup.insite.cookie.ttl"] = '0.5'; | |
| 1782 | + rtCommonProps["rt.pushnotifs.force.button"] =true; | |
| 1783 | + rtCommonProps["common.mapbox.token"] = 'pk.JETON_CAVIARDE_LOUKA'; | |
| 1784 | + rtCommonProps["common.mapbox.js.override"] =false; | |
| 1785 | + rtCommonProps["common.here.appId"] = 'iYvDjIQ2quyEu0rg0hLo'; | |
| 1786 | + rtCommonProps["common.here.appCode"] = '1hcIxLJcbybmtBYTD9Z1UA'; | |
| 1787 | + rtCommonProps["isCoverage.test"] =false; | |
| 1788 | + rtCommonProps["ecommerce.ecwid.script"] = 'https://app.multiscreenstore.com/script.js'; | |
| 1789 | + rtCommonProps["common.resources.dist.cdn"] =true; | |
| 1790 | + rtCommonProps["common.build.dist.folder"] = 'production/6688'; | |
| 1791 | + rtCommonProps["common.resources.cdn.host"] = 'https://static.cdn-website.com'; | |
| 1792 | + rtCommonProps["common.resources.folder"] = 'https://static.cdn-website.com/mnlt/production/6688'; | |
| 1793 | + rtCommonProps["common.fonts.api.v2.url"] = 'https://irp.cdn-website.com/fonts/css2?family='; | |
| 1794 | + rtCommonProps["feature.flag.runtime.backgroundSlider.preload.slowly"] =true; | |
| 1795 | + rtCommonProps["feature.flag.runtime.newAnimation.enabled"] =true; | |
| 1796 | + rtCommonProps["feature.flag.runtime.newAnimation.jitAnimation.enabled"] =true; | |
| 1797 | + rtCommonProps["feature.flag.sites.google.analytics.gtag"] =true; | |
| 1798 | + rtCommonProps["feature.flag.runOnReadyNewTask"] =true; | |
| 1799 | + rtCommonProps["isAutomation.test"] =false; | |
| 1800 | + rtCommonProps["booking.cal.api.domain"] = 'api.cal.com'; | |
| 1801 | + | |
| 1802 | + | |
| 1803 | + rtCommonProps['common.mapsProvider'] = 'mapbox'; | |
| 1804 | + | |
| 1805 | + rtCommonProps['common.mapsProvider.version'] = '0.52.0'; | |
| 1806 | + rtCommonProps['common.geocodeProvider'] = 'mapbox'; | |
| 1807 | + rtCommonProps['server.for.resources'] = ''; | |
| 1808 | + rtCommonProps['feature.flag.lazy.widgets'] = true; | |
| 1809 | + rtCommonProps['feature.flag.single.wow'] = false; | |
| 1810 | + rtCommonProps['feature.flag.disallowPopupsInEditor'] = true; | |
| 1811 | + rtCommonProps['feature.flag.mark.anchors'] = true; | |
| 1812 | + rtCommonProps['captcha.public.key'] = '6LffcBsUAAAAAMU-MYacU-6QHY4iDtUEYv_Ppwlz'; | |
| 1813 | + rtCommonProps['captcha.invisible.public.key'] = '6LeiWB8UAAAAAHYnVJM7_-7ap6bXCUNGiv7bBPME'; | |
| 1814 | + rtCommonProps["images.sizes.small"] =160; | |
| 1815 | + rtCommonProps["images.sizes.mobile"] =640; | |
| 1816 | + rtCommonProps["images.sizes.tablet"] =1280; | |
| 1817 | + rtCommonProps["images.sizes.desktop"] =1920; | |
| 1818 | + rtCommonProps["modules.resources.cdn"] =true; | |
| 1819 | + rtCommonProps["import.images.storage.imageCDN"] = 'https://irp.cdn-website.com/'; | |
| 1820 | + rtCommonProps["feature.flag.runtime.inp.threshold"] =150; | |
| 1821 | + rtCommonProps["feature.flag.performance.logs"] =false; | |
| 1822 | + rtCommonProps["site.widget.form.captcha.type"] = 'g_recaptcha'; | |
| 1823 | + rtCommonProps["friendly.captcha.site.key"] = 'FCMGSQG9GVNMFS8K'; | |
| 1824 | + rtCommonProps["cookiebot.mapbox.consent.category"] = 'marketing'; | |
| 1825 | + rtCommonProps["termly.mapbox.consent.category"] = 'performance'; | |
| 1826 | + // feature flags that's used out of runtime module (in legacy files) | |
| 1827 | + rtCommonProps["platform.monolith.personalization.dateTimeCondition.popupMsgAction.moveToclient.enabled"] =true; | |
| 1828 | + | |
| 1829 | + window.rtFlags = {}; | |
| 1830 | + rtFlags["unsuspendEcwidStoreOnRuntime.enabled"] =true; | |
| 1831 | + rtFlags["scripts.widgetCount.enabled"] =true; | |
| 1832 | + rtFlags["fnb.animations.tracking.enabled"] =true; | |
| 1833 | + rtFlags["ecom.ecwidNewUrlStructure.enabled"] = false; | |
| 1834 | + rtFlags["ecom.ecwid.accountPage.emptyBaseUrl.enabled"] = true; | |
| 1835 | + rtFlags["ecom.ecwid.accountPage.repeatOrderRedirect.enabled"] = false; | |
| 1836 | + rtFlags["ecom.ecwid.pages.links.disable.listeners"] = true; | |
| 1837 | + rtFlags["ecom.ecwid.storefrontV3.enabled"] = false; | |
| 1838 | + rtFlags["ecom.ecwid.old.store.fix.facebook.share"] = true; | |
| 1839 | + rtFlags["ecom.monolith.legacy.js.api.disabled.for.new.sites"] = false; | |
| 1840 | + rtFlags["feature.flag.photo.gallery.exact.size"] =true; | |
| 1841 | + rtFlags["geocode.search.localize"] =false; | |
| 1842 | + rtFlags["feature.flag.runtime.newAnimation.asyncInit.setTimeout.enabled"] =false; | |
| 1843 | + rtFlags["twitter.heightLimit.enabled"] = true; | |
| 1844 | + rtFlags["runtime.lottieOverflow"] =false; | |
| 1845 | + rtFlags["runtime.monitoring.sentry.ignoreErrors"] = ""; | |
| 1846 | + rtFlags["streamline.monolith.personalization.supportMultipleConditions.enabled"] =false; | |
| 1847 | + rtFlags["flex.animation.design.panel.layout"] =true; | |
| 1848 | + rtFlags["runtime.cwv.report.cls.enabled"] =false; | |
| 1849 | + rtFlags["runtime.cwv.report.lcp.enabled"] =false; | |
| 1850 | + rtFlags["runtime.lcp.preload.selfheal.enabled"] =true; | |
| 1851 | + rtFlags["runtime.lcp.preload.bootstrap.enabled"] =false; | |
| 1852 | + rtFlags["runtime.lcp.preload.monitor.enabled"] =false; | |
| 1853 | + rtFlags["runtime.customwidget.heightpin.enabled"] =true; | |
| 1854 | + rtFlags["contact.form.useActiveForm"] =true; | |
| 1855 | + rtFlags["contact.form.custom.errors.enabled"] =false; | |
| 1856 | + rtFlags["runtime.ssr.productStore.internal.observer"] =true; | |
| 1857 | + rtFlags["runtime.ssr.productCustomizations"] =true; | |
| 1858 | + rtFlags["runtime.ssr.runtime.filter-sort.newFilterSortWidgetWithOptions.enabled"] =true; | |
| 1859 | + rtFlags["runtime.ssr.ssrSlider.jumpThreshold.enabled"] =true; | |
| 1860 | + rtFlags["runtime.ssr.native.booker.enabled"] =false; | |
| 1861 | + rtFlags["termly.map.consent.overlay.enabled"] =false; | |
| 1862 | +</script> | |
| 1863 | +<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> | |
| 1864 | + | |
| 1865 | +<!-- End of HEAD RT JS Include --> | |
| 1866 | + | |
| 1867 | + | |
| 1868 | + | |
| 1869 | + | |
| 1870 | + | |
| 1871 | + | |
| 1872 | + | |
| 1873 | + | |
| 1874 | + | |
| 1875 | + | |
| 1876 | + | |
| 1877 | + <script src="https://static.cdn-website.com/mnlt/production/6688/_dm/s/rt/dist/scripts/d-js-jquery-migrate.min.js" ></script> | |
| 1878 | + | |
| 1879 | + | |
| 1880 | + | |
| 1881 | + | |
| 1882 | + | |
| 1883 | +<script> | |
| 1884 | + | |
| 1885 | + $(window).bind("orientationchange", function (e) { | |
| 1886 | + $.layoutManager.initLayout(); | |
| 1887 | + | |
| 1888 | + }); | |
| 1889 | + $(document).resize(function () { | |
| 1890 | + | |
| 1891 | + }); | |
| 1892 | +</script> | |
| 1893 | + | |
| 1894 | + | |
| 1895 | + | |
| 1896 | + | |
| 1897 | + | |
| 1898 | + | |
| 1899 | + | |
| 1900 | + | |
| 1901 | + | |
| 1902 | + | |
| 1903 | + | |
| 1904 | + | |
| 1905 | + | |
| 1906 | + | |
| 1907 | + | |
| 1908 | + | |
| 1909 | + | |
| 1910 | + | |
| 1911 | +<script type="text/javascript" id="d_track_sp"> | |
| 1912 | + ;(function(p,l,o,w,i,n,g){if(!p[i]){p.GlobalSnowplowNamespace=p.GlobalSnowplowNamespace||[]; | |
| 1913 | + p.GlobalSnowplowNamespace.push(i);p[i]=function(){(p[i].q=p[i].q||[]).push(arguments) | |
| 1914 | + };p[i].q=p[i].q||[];n=l.createElement(o);g=l.getElementsByTagName(o)[0];n.async=1; | |
| 1915 | + n.src=w;g.parentNode.insertBefore(n,g)}}(window,document,"script","//d32hwlnfiv2gyn.cloudfront.net/sp-2.0.0-dm-0.1.min.js","snowplow")); | |
| 1916 | + window.dmsnowplow = window.snowplow; | |
| 1917 | + | |
| 1918 | + dmsnowplow('newTracker', 'cf', 'd32hwlnfiv2gyn.cloudfront.net', { // Initialise a tracker | |
| 1919 | + appId: '6d6b044d' | |
| 1920 | + }); | |
| 1921 | + | |
| 1922 | + // snowplow queries element styles so we wait until CSS calculations are done. | |
| 1923 | + requestAnimationFrame(() => { | |
| 1924 | + dmsnowplow('trackPageView'); | |
| 1925 | + _dm_insite.forEach((rule) => { | |
| 1926 | + // Specifically in popup only the client knows if it is shown or not so we don't always want to track its impression here | |
| 1927 | + // the tracking is in popup.js | |
| 1928 | + if (rule.actionName !== "popup") { | |
| 1929 | + dmsnowplow('trackStructEvent', 'insite', 'impression', rule.ruleType, rule.ruleId); | |
| 1930 | + } | |
| 1931 | + window?.waitForDeferred?.('dmAjax', () => { | |
| 1932 | + $.DM.events.trigger('event-ruleTriggered', {value: rule}); | |
| 1933 | + }); | |
| 1934 | + }); | |
| 1935 | + }); | |
| 1936 | +</script> | |
| 1937 | + | |
| 1938 | + | |
| 1939 | + | |
| 1940 | +<div style="display:none;" id="P6iryBW0Wu"></div> | |
| 1941 | + | |
| 1942 | +<!-- photoswipe markup --> | |
| 1943 | + | |
| 1944 | + | |
| 1945 | + | |
| 1946 | + | |
| 1947 | + | |
| 1948 | + | |
| 1949 | + | |
| 1950 | + | |
| 1951 | + | |
| 1952 | +<!-- Root element of PhotoSwipe. Must have class pswp. --> | |
| 1953 | +<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true"> | |
| 1954 | + | |
| 1955 | + <!-- Background of PhotoSwipe. | |
| 1956 | + It's a separate element as animating opacity is faster than rgba(). --> | |
| 1957 | + <div class="pswp__bg"></div> | |
| 1958 | + | |
| 1959 | + <!-- Slides wrapper with overflow:hidden. --> | |
| 1960 | + <div class="pswp__scroll-wrap"> | |
| 1961 | + | |
| 1962 | + <!-- Container that holds slides. | |
| 1963 | + PhotoSwipe keeps only 3 of them in the DOM to save memory. | |
| 1964 | + Don't modify these 3 pswp__item elements, data is added later on. --> | |
| 1965 | + <div class="pswp__container"> | |
| 1966 | + <div class="pswp__item"></div> | |
| 1967 | + <div class="pswp__item"></div> | |
| 1968 | + <div class="pswp__item"></div> | |
| 1969 | + </div> | |
| 1970 | + | |
| 1971 | + <!-- Default (PhotoSwipeUI_Default) interface on top of sliding area. Can be changed. --> | |
| 1972 | + <div class="pswp__ui pswp__ui--hidden"> | |
| 1973 | + | |
| 1974 | + <div class="pswp__top-bar"> | |
| 1975 | + | |
| 1976 | + <!-- Controls are self-explanatory. Order can be changed. --> | |
| 1977 | + | |
| 1978 | + <div class="pswp__counter"></div> | |
| 1979 | + | |
| 1980 | + <button class="pswp__button pswp__button--close" title="Fermer (Echap)"></button> | |
| 1981 | + | |
| 1982 | + <button class="pswp__button pswp__button--share" title="Partager"></button> | |
| 1983 | + | |
| 1984 | + <button class="pswp__button pswp__button--fs" title="Passer en mode plein écran"></button> | |
| 1985 | + | |
| 1986 | + <button class="pswp__button pswp__button--zoom" title="Zoom avant / arrière"></button> | |
| 1987 | + | |
| 1988 | + <!-- Preloader demo http://codepen.io/dimsemenov/pen/yyBWoR --> | |
| 1989 | + <!-- element will get class pswp__preloader--active when preloader is running --> | |
| 1990 | + <div class="pswp__preloader"> | |
| 1991 | + <div class="pswp__preloader__icn"> | |
| 1992 | + <div class="pswp__preloader__cut"> | |
| 1993 | + <div class="pswp__preloader__donut"></div> | |
| 1994 | + </div> | |
| 1995 | + </div> | |
| 1996 | + </div> | |
| 1997 | + </div> | |
| 1998 | + | |
| 1999 | + <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"> | |
| 2000 | + <div class="pswp__share-tooltip"></div> | |
| 2001 | + </div> | |
| 2002 | + | |
| 2003 | + <button class="pswp__button pswp__button--arrow--left" title="Précédent (flèche gauche)"> | |
| 2004 | + </button> | |
| 2005 | + | |
| 2006 | + <button class="pswp__button pswp__button--arrow--right" title="Suivant (flèche droite)"> | |
| 2007 | + </button> | |
| 2008 | + | |
| 2009 | + <div class="pswp__caption"> | |
| 2010 | + <div class="pswp__caption__center"></div> | |
| 2011 | + </div> | |
| 2012 | + | |
| 2013 | + </div> | |
| 2014 | + | |
| 2015 | + </div> | |
| 2016 | + | |
| 2017 | +</div> | |
| 2018 | +<div id="fb-root" | |
| 2019 | + data-locale="fr_FR"></div> | |
| 2020 | +<!-- Alias: 6d6b044d --> | |
| 2021 | +<div class="dmPopupMask" id="dmPopupMask"></div> | |
| 2022 | +<div id="dmPopup" class="dmPopup"> | |
| 2023 | + <div class="dmPopupCloseWrapper"> <div class="dmPopupClose dm-common-icons-close oneIcon" onclick="dmHidePopup(event);"></div> </div> | |
| 2024 | + <div class="dmPopupTitle"> <span></span> Share by:</div> | |
| 2025 | + <div class="data"></div> | |
| 2026 | +</div><script id="d_track_personalization"> | |
| 2027 | + window?.waitForDeferred?.('dmAjax', () => { | |
| 2028 | + // Collects client data and updates cookies used by smart sites | |
| 2029 | + window.expireDays = 365; | |
| 2030 | + window.visitLength = 30 * 60000; | |
| 2031 | + $.setCookie("dm_timezone_offset", (new Date()).getTimezoneOffset(), window.expireDays); | |
| 2032 | + setSmartSiteCookiesInternal("dm_this_page_view","dm_last_page_view","dm_total_visits","dm_last_visit"); | |
| 2033 | + }); | |
| 2034 | +</script> | |
| 2035 | +<script type="text/javascript"> | |
| 2036 | + | |
| 2037 | + Parameters.NavigationAreaParams.MoreButtonText = 'MORE'; | |
| 2038 | + | |
| 2039 | + Parameters.NavigationAreaParams.LessButtonText = 'LESS'; | |
| 2040 | + Parameters.HomeLinkText = 'Home'; | |
| 2041 | + </script> | |
| 2042 | +<!-- End Script tags --> | |
| 2043 | +<!-- Site Wide Html Markup --> | |
| 2044 | +<!-- Site Wide Html Markup --> | |
| 2045 | +</body> | |
| 2046 | +</html> | |
added
tests/fixtures/girs/expected.json
+117 −0
@@ -0,0 +1,117 @@ | ||
| 1 | +{ | |
| 2 | + "count": 8, | |
| 3 | + "listings": [ | |
| 4 | + { | |
| 5 | + "uid": "girs:carleton-sur-mer-rue-comeau", | |
| 6 | + "url": "https://www.girs.ca/location/carleton-sur-mer/rue-comeau", | |
| 7 | + "title": "Rue Comeau — Carleton-sur-Mer", | |
| 8 | + "address": "Rue Comeau", | |
| 9 | + "sector": "", | |
| 10 | + "city": "Carleton-sur-Mer", | |
| 11 | + "unit_type": "", | |
| 12 | + "price": null, | |
| 13 | + "availability": "", | |
| 14 | + "area_sqft": null, | |
| 15 | + "n_images": 10, | |
| 16 | + "n_amenities": 6 | |
| 17 | + }, | |
| 18 | + { | |
| 19 | + "uid": "girs:guadeloupe-26-avenue", | |
| 20 | + "url": "https://www.girs.ca/location/guadeloupe/26-avenue", | |
| 21 | + "title": "26e avenue — La Guadeloupe", | |
| 22 | + "address": "26e avenue", | |
| 23 | + "sector": "", | |
| 24 | + "city": "La Guadeloupe", | |
| 25 | + "unit_type": "", | |
| 26 | + "price": null, | |
| 27 | + "availability": "", | |
| 28 | + "area_sqft": null, | |
| 29 | + "n_images": 6, | |
| 30 | + "n_amenities": 9 | |
| 31 | + }, | |
| 32 | + { | |
| 33 | + "uid": "girs:new-richmond-avenue-erables", | |
| 34 | + "url": "https://www.girs.ca/location/new-richmond/avenue-erables", | |
| 35 | + "title": "Avenue des Érables, Jumelé — New Richmond", | |
| 36 | + "address": "Avenue des Érables", | |
| 37 | + "sector": "", | |
| 38 | + "city": "New Richmond", | |
| 39 | + "unit_type": "", | |
| 40 | + "price": null, | |
| 41 | + "availability": "", | |
| 42 | + "area_sqft": null, | |
| 43 | + "n_images": 11, | |
| 44 | + "n_amenities": 6 | |
| 45 | + }, | |
| 46 | + { | |
| 47 | + "uid": "girs:new-richmond-avenue-erables-condo", | |
| 48 | + "url": "https://www.girs.ca/location/new-richmond/avenue-erables-condo", | |
| 49 | + "title": "Avenue des Érables, Condo — New Richmond", | |
| 50 | + "address": "Avenue des Érables", | |
| 51 | + "sector": "", | |
| 52 | + "city": "New Richmond", | |
| 53 | + "unit_type": "4½", | |
| 54 | + "price": null, | |
| 55 | + "availability": "", | |
| 56 | + "area_sqft": null, | |
| 57 | + "n_images": 8, | |
| 58 | + "n_amenities": 6 | |
| 59 | + }, | |
| 60 | + { | |
| 61 | + "uid": "girs:saint-isidore-900-rue-semences", | |
| 62 | + "url": "https://www.girs.ca/location/saint-isidore/900-rue-semences", | |
| 63 | + "title": "900 Rue des Semences — Saint-Isidore", | |
| 64 | + "address": "900 Rue des Semences", | |
| 65 | + "sector": "", | |
| 66 | + "city": "Saint-Isidore", | |
| 67 | + "unit_type": "4½", | |
| 68 | + "price": null, | |
| 69 | + "availability": "", | |
| 70 | + "area_sqft": null, | |
| 71 | + "n_images": 5, | |
| 72 | + "n_amenities": 9 | |
| 73 | + }, | |
| 74 | + { | |
| 75 | + "uid": "girs:scott-rue-amanda-gustave", | |
| 76 | + "url": "https://www.girs.ca/location/scott/rue-amanda-gustave", | |
| 77 | + "title": "Rue Amanda-Gustave — Scott", | |
| 78 | + "address": "Rue Amanda-Gustave", | |
| 79 | + "sector": "", | |
| 80 | + "city": "Scott", | |
| 81 | + "unit_type": "", | |
| 82 | + "price": null, | |
| 83 | + "availability": "", | |
| 84 | + "area_sqft": null, | |
| 85 | + "n_images": 9, | |
| 86 | + "n_amenities": 9 | |
| 87 | + }, | |
| 88 | + { | |
| 89 | + "uid": "girs:scott-rue-jean-baptiste", | |
| 90 | + "url": "https://www.girs.ca/location/scott/rue-jean-baptiste", | |
| 91 | + "title": "Rue Jean-Baptiste — Scott", | |
| 92 | + "address": "Rue Jean-Baptiste", | |
| 93 | + "sector": "", | |
| 94 | + "city": "Scott", | |
| 95 | + "unit_type": "4½", | |
| 96 | + "price": null, | |
| 97 | + "availability": "", | |
| 98 | + "area_sqft": null, | |
| 99 | + "n_images": 9, | |
| 100 | + "n_amenities": 9 | |
| 101 | + }, | |
| 102 | + { | |
| 103 | + "uid": "girs:scott-rue-marie-flore", | |
| 104 | + "url": "https://www.girs.ca/location/scott/rue-marie-flore", | |
| 105 | + "title": "Rue Marie Flore — Scott", | |
| 106 | + "address": "Rue Marie Flore", | |
| 107 | + "sector": "", | |
| 108 | + "city": "Scott", | |
| 109 | + "unit_type": "", | |
| 110 | + "price": null, | |
| 111 | + "availability": "", | |
| 112 | + "area_sqft": null, | |
| 113 | + "n_images": 12, | |
| 114 | + "n_amenities": 6 | |
| 115 | + } | |
| 116 | + ] | |
| 117 | +} | |
| \ No newline at end of file | ||
added
tests/fixtures/girs/f0f9fe23cad5491e7524.html
+1554 −0
@@ -0,0 +1,2198 @@ | ||
| 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 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | +<script type="text/javascript"> | |
| 46 | + window._currentDevice = 'desktop'; | |
| 47 | + window.Parameters = window.Parameters || { | |
| 48 | + HomeUrl: 'https://www.girs.ca/', | |
| 49 | + | |
| 50 | + 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/guadeloupe/26-avenue', | |
| 64 | + InitialPageUuid: '889969ef4a644fbe869c82963cd3468e', | |
| 65 | + InitialPageId: '44292038', | |
| 66 | + InitialEncodedPageAlias: 'bG9jYXRpb24vZ3VhZGVsb3VwZS8yNi1hdmVudWU=', | |
| 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érience sur notre site web. Pour en savoir plus, veuillez accéder à la page <a value=\"donnees-personnelles\" label=\"\" type=\"page\" href=\"\/donnees-personnelles\" data-runtime-url=\"\/donnees-personnelles\">Confidentialité<\/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: true, | |
| 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: false | |
| 134 | + }; | |
| 135 | + | |
| 136 | + window.Parameters.LayoutID = {}; | |
| 137 | + window.Parameters.LayoutID[window._currentDevice] = 6; | |
| 138 | + window.Parameters.LayoutVariationID = {}; | |
| 139 | + window.Parameters.LayoutVariationID[window._currentDevice] = 5; | |
| 140 | +</script> | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | +<!-- Injecting site-wide to the head --> | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
| 169 | + | |
| 170 | + | |
| 171 | + | |
| 172 | + | |
| 173 | + | |
| 174 | + | |
| 175 | + | |
| 176 | + | |
| 177 | + | |
| 178 | +<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('&'); | |
| 185 | + | |
| 186 | + const expires = 'expires=' + new Date().getTime() + 24 * 60 * 60 * 1000; | |
| 187 | + const domain = 'domain=' + window.location.hostname; | |
| 188 | + const path = "path=/"; | |
| 189 | + | |
| 190 | + 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.cookie | |
| 220 | + .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 submission | |
| 226 | + // 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> | |
| 240 | + | |
| 241 | + | |
| 242 | + | |
| 243 | + | |
| 244 | + | |
| 245 | + | |
| 246 | +<!-- End Injecting site-wide to the head --> | |
| 247 | + | |
| 248 | +<!-- Inject secured cdn script --> | |
| 249 | + | |
| 250 | + | |
| 251 | +<!-- ========= 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 >>> 0 | |
| 260 | + } | |
| 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.serviceWorker | |
| 277 | + .register(serviceWorkerPath, { scope: './' }) | |
| 278 | + .then( | |
| 279 | + function (registration) { | |
| 280 | + // Registration was successful | |
| 281 | + console.log( | |
| 282 | + 'ServiceWorker registration successful with scope: ', | |
| 283 | + registration.scope | |
| 284 | + ); | |
| 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 | + }); | |
| 295 | + | |
| 296 | + // helper function to refresh the page | |
| 297 | + var refreshPage = (function () { | |
| 298 | + var refreshing; | |
| 299 | + return function () { | |
| 300 | + if (refreshing) return; | |
| 301 | + // prevent multiple refreshes | |
| 302 | + 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 loop | |
| 308 | + } | |
| 309 | + } | |
| 310 | + refreshing = true; | |
| 311 | + localStorage.setItem(refreshkey, Date.now()); | |
| 312 | + console.log('refereshing page'); | |
| 313 | + window.location.reload(); | |
| 314 | + }; | |
| 315 | + })(); | |
| 316 | + | |
| 317 | + 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 --> | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
| 340 | +<link rel="canonical" href="https://www.girs.ca/location/guadeloupe/26-avenue"> | |
| 341 | + | |
| 342 | +<meta id="view" name="viewport" content="initial-scale=1, minimum-scale=1, maximum-scale=5, viewport-fit=cover"> | |
| 343 | + | |
| 344 | +<meta name="apple-mobile-web-app-capable" content="yes"> | |
| 345 | + | |
| 346 | +<!--Add favorites icons--> | |
| 347 | + | |
| 348 | +<link rel="icon" type="image/x-icon" href="https://irp.cdn-website.com/6d6b044d/site_favicon_16_1673962208002.ico"/> | |
| 349 | + | |
| 350 | +<!-- 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"/> | |
| 354 | + | |
| 355 | + | |
| 356 | + | |
| 357 | +<!-- render the required CSS and JS in the head section --> | |
| 358 | +<script id='d-js-dmapi'> | |
| 359 | + window.SystemID = 'US_DIRECT_PRODUCTION'; | |
| 360 | + | |
| 361 | + 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; | |
| 372 | + | |
| 373 | + 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 | + } | |
| 405 | + | |
| 406 | + if (!window.requestIdleCallback) { | |
| 407 | + window.requestIdleCallback = function (fn) { | |
| 408 | + setTimeout(fn, 0); | |
| 409 | + } | |
| 410 | + } | |
| 411 | +</script> | |
| 412 | + | |
| 413 | +<!-- loadCSS function header.jsp--> | |
| 414 | + | |
| 415 | + | |
| 416 | + | |
| 417 | + | |
| 418 | + | |
| 419 | + | |
| 420 | +<script id="d-js-load-css"> | |
| 421 | +/** | |
| 422 | + * There are a few <link> tags with CSS resource in them that are preloaded in the page | |
| 423 | + * in each of those there is a "onload" handler which invokes the loadCSS callback | |
| 424 | + * 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 threre | |
| 427 | + * is no page css (which may happen on inner pages) then we do not wait for it | |
| 428 | + */ | |
| 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']"); | |
| 440 | + | |
| 441 | + 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; | |
| 446 | + | |
| 447 | + storedGlobalCssLink.disabled = true; | |
| 448 | + loadCssLink(storedGlobalCssLink); | |
| 449 | + | |
| 450 | + if (storedPageCssLink) { | |
| 451 | + storedPageCssLink.disabled = true; | |
| 452 | + loadCssLink(storedPageCssLink); | |
| 453 | + } | |
| 454 | + | |
| 455 | + if(storedWidgetCssLink) { | |
| 456 | + storedWidgetCssLink.disabled = true; | |
| 457 | + loadCssLink(storedWidgetCssLink); | |
| 458 | + } | |
| 459 | + | |
| 460 | + storedRuntimeCssLink.disabled = true; | |
| 461 | + loadCssLink(storedRuntimeCssLink); | |
| 462 | + | |
| 463 | + 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're | |
| 474 | + // 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 | + | |
| 484 | + | |
| 485 | + 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; | |
| 490 | + | |
| 491 | + 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 e | |
| 519 | + } | |
| 520 | + } | |
| 521 | + window.loadCSS = window.loadCSS || loadCSS; | |
| 522 | +})(); | |
| 523 | +</script> | |
| 524 | + | |
| 525 | + | |
| 526 | + | |
| 527 | +<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 = b | |
| 532 | + }).bind(this)) | |
| 533 | + } | |
| 534 | + | |
| 535 | + 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 | + d | |
| 542 | + ? d.promise.then(a) | |
| 543 | + : c && ["complete", "interactive"].includes(document.readyState) | |
| 544 | + ? setTimeout(a, 1) | |
| 545 | + : c | |
| 546 | + ? 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 */ | |
| 552 | + | |
| 553 | +.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 | + | |
| 555 | + | |
| 556 | +</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> | |
| 568 | + | |
| 569 | + | |
| 570 | + | |
| 571 | + | |
| 572 | + | |
| 573 | + | |
| 574 | + | |
| 575 | + | |
| 576 | + | |
| 577 | + | |
| 578 | + | |
| 579 | + | |
| 580 | + | |
| 581 | + | |
| 582 | + | |
| 583 | + | |
| 584 | + | |
| 585 | + | |
| 586 | + | |
| 587 | + | |
| 588 | + | |
| 589 | + | |
| 590 | + | |
| 591 | + | |
| 592 | + | |
| 593 | +<!-- Google Fonts Include --> | |
| 594 | + | |
| 595 | + | |
| 596 | + | |
| 597 | + | |
| 598 | + | |
| 599 | + | |
| 600 | + | |
| 601 | + | |
| 602 | + | |
| 603 | + | |
| 604 | + | |
| 605 | + | |
| 606 | + | |
| 607 | +<!-- loadCSS function fonts.jsp--> | |
| 608 | + | |
| 609 | + | |
| 610 | + | |
| 611 | +<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&subset=latin-ext&display=swap" /> | |
| 612 | + | |
| 613 | + | |
| 614 | + | |
| 615 | + | |
| 616 | + | |
| 617 | +<!-- 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" /> | |
| 619 | + | |
| 620 | +<!-- End of RT CSS Include --> | |
| 621 | + | |
| 622 | +<link type="text/css" rel="stylesheet" href="https://irp.cdn-website.com/WIDGET_CSS/4c80ec77363a3c04fe04b5c3dd9e2743.css" id="widgetCSS" /> | |
| 623 | + | |
| 624 | +<!-- Support `img` size attributes --> | |
| 625 | +<style>img[width][height] { | |
| 626 | + height: auto; | |
| 627 | +}</style> | |
| 628 | + | |
| 629 | +<!-- Support showing sticky element on page only --> | |
| 630 | +<style> | |
| 631 | + body[data-page-alias="location/guadeloupe/26-avenue"] #dm [data-show-on-page-only="location/guadeloupe/26-avenue"] { | |
| 632 | + display: block !important; | |
| 633 | + } | |
| 634 | +</style> | |
| 635 | + | |
| 636 | +<!-- This is populated in Ajax navigation --> | |
| 637 | +<style id="pageAdditionalWidgetsCss" type="text/css"> | |
| 638 | +</style> | |
| 639 | + | |
| 640 | + | |
| 641 | + | |
| 642 | + | |
| 643 | +<!-- 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" /> | |
| 645 | + | |
| 646 | + | |
| 647 | + | |
| 648 | +<style id="customWidgetStyle" type="text/css"> | |
| 649 | + | |
| 650 | +</style> | |
| 651 | +<style id="innerPagesStyle" type="text/css"> | |
| 652 | + | |
| 653 | +</style> | |
| 654 | + | |
| 655 | + | |
| 656 | +<style | |
| 657 | + id="additionalGlobalCss" type="text/css" | |
| 658 | +> | |
| 659 | +</style> | |
| 660 | + | |
| 661 | +<style id="pagestyle" type="text/css"> | |
| 662 | + *#dm *.dmBody a.span.textonly | |
| 663 | +{ | |
| 664 | + color:rgb(255,255,255) !important; | |
| 665 | +} | |
| 666 | +*#dm *.dmBody div.dmform-error | |
| 667 | +{ | |
| 668 | + font-style:normal !important; | |
| 669 | +} | |
| 670 | +*#dm *.dmBody div.dmforminput textarea | |
| 671 | +{ | |
| 672 | + font-style:italic !important; | |
| 673 | +} | |
| 674 | +*#dm *.dmBody div.dmforminput *.fileUploadLink | |
| 675 | +{ | |
| 676 | + font-style:italic !important; | |
| 677 | +} | |
| 678 | +*#dm *.dmBody div.checkboxwrapper span | |
| 679 | +{ | |
| 680 | + font-style:italic !important; | |
| 681 | +} | |
| 682 | +*#dm *.dmBody div.radiowrapper span | |
| 683 | +{ | |
| 684 | + font-style:italic !important; | |
| 685 | +} | |
| 686 | +*#dm *.dmBody nav.u_1144820115 | |
| 687 | +{ | |
| 688 | + color:black !important; | |
| 689 | +} | |
| 690 | +*#dm *.dmBody *.u_1004639188:before | |
| 691 | +{ | |
| 692 | + opacity:0.5 !important; | |
| 693 | + background-color:rgb(255,255,255) !important; | |
| 694 | +} | |
| 695 | +*#dm *.dmBody *.u_1004639188.before | |
| 696 | +{ | |
| 697 | + opacity:0.5 !important; | |
| 698 | + background-color:rgb(255,255,255) !important; | |
| 699 | +} | |
| 700 | +*#dm *.dmBody *.u_1004639188>.bgExtraLayerOverlay | |
| 701 | +{ | |
| 702 | + opacity:0.5 !important; | |
| 703 | + background-color:rgb(255,255,255) !important; | |
| 704 | +} | |
| 705 | +*#dm *.dmBody div.u_1004639188 | |
| 706 | +{ | |
| 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:before | |
| 713 | +{ | |
| 714 | + background-color:var(--color_1) !important; | |
| 715 | +} | |
| 716 | +*#dm *.dmBody div.u_1004639188.before | |
| 717 | +{ | |
| 718 | + background-color:var(--color_1) !important; | |
| 719 | +} | |
| 720 | +*#dm *.dmBody div.u_1004639188>.bgExtraLayerOverlay | |
| 721 | +{ | |
| 722 | + background-color:var(--color_1) !important; | |
| 723 | +} | |
| 724 | +*#dm *.dmBody a.u_1756842165:hover | |
| 725 | +{ | |
| 726 | + background-color:var(--color_3) !important; | |
| 727 | + background-image:none !important; | |
| 728 | +} | |
| 729 | +*#dm *.dmBody a.u_1756842165.hover | |
| 730 | +{ | |
| 731 | + background-color:var(--color_3) !important; | |
| 732 | + background-image:none !important; | |
| 733 | +} | |
| 734 | +*#dm *.dmBody a.u_1756842165:hover span.text | |
| 735 | +{ | |
| 736 | + color:var(--color_1) !important; | |
| 737 | +} | |
| 738 | +*#dm *.dmBody a.u_1756842165.hover span.text | |
| 739 | +{ | |
| 740 | + color:var(--color_1) !important; | |
| 741 | +} | |
| 742 | +*#dm *.dmBody a.u_1756842165 span.text | |
| 743 | +{ | |
| 744 | + font-family:'Roboto' !important; | |
| 745 | + font-weight:400 !important; | |
| 746 | + color:var(--color_3) !important; | |
| 747 | +} | |
| 748 | +*#dm *.dmBody div.u_1937526287 | |
| 749 | +{ | |
| 750 | + border-style:solid !important; | |
| 751 | + border-width:2px !important; | |
| 752 | + border-color:var(--color_3) !important; | |
| 753 | +} | |
| 754 | +*#dm *.dmBody div.u_1452815793 | |
| 755 | +{ | |
| 756 | + background-color:rgba(0,0,0,0.05) !important; | |
| 757 | +} | |
| 758 | +*#dm *.dmBody div.u_1840143137 | |
| 759 | +{ | |
| 760 | + background-color:rgba(0,0,0,0.05) !important; | |
| 761 | +} | |
| 762 | +*#dm *.dmBody div.u_1813520727 | |
| 763 | +{ | |
| 764 | + background-color:rgba(0,0,0,0.05) !important; | |
| 765 | +} | |
| 766 | +*#dm *.dmBody div.u_1813669443 .svg | |
| 767 | +{ | |
| 768 | + color:var(--color_3) !important; | |
| 769 | + fill:var(--color_3) !important; | |
| 770 | +} | |
| 771 | +*#dm *.dmBody div.u_1465006226 .svg | |
| 772 | +{ | |
| 773 | + color:rgba(255,255,255,1) !important; | |
| 774 | + fill:rgba(255,255,255,1) !important; | |
| 775 | +} | |
| 776 | +*#dm *.dmBody div.u_1419208593 .svg | |
| 777 | +{ | |
| 778 | + color:rgba(255,255,255,1) !important; | |
| 779 | + fill:rgba(255,255,255,1) !important; | |
| 780 | +} | |
| 781 | +*#dm *.dmBody *.u_1713239492:before | |
| 782 | +{ | |
| 783 | + opacity:0.5 !important; | |
| 784 | + background-color:rgb(255,255,255) !important; | |
| 785 | +} | |
| 786 | +*#dm *.dmBody *.u_1713239492.before | |
| 787 | +{ | |
| 788 | + opacity:0.5 !important; | |
| 789 | + background-color:rgb(255,255,255) !important; | |
| 790 | +} | |
| 791 | +*#dm *.dmBody *.u_1713239492>.bgExtraLayerOverlay | |
| 792 | +{ | |
| 793 | + opacity:0.5 !important; | |
| 794 | + background-color:rgb(255,255,255) !important; | |
| 795 | +} | |
| 796 | +*#dm *.dmBody div.u_1486697154 | |
| 797 | +{ | |
| 798 | + border-style:solid !important; | |
| 799 | + border-width:2px !important; | |
| 800 | + border-color:var(--color_3) !important; | |
| 801 | +} | |
| 802 | +*#dm *.dmBody a.u_1331251441 span.text | |
| 803 | +{ | |
| 804 | + text-decoration:none !important; | |
| 805 | + font-weight:400 !important; | |
| 806 | +} | |
| 807 | +*#dm *.dmBody a.u_1331251441:hover span.text | |
| 808 | +{ | |
| 809 | + text-decoration:underline !important; | |
| 810 | + color:var(--color_1) !important; | |
| 811 | +} | |
| 812 | +*#dm *.dmBody a.u_1331251441.hover span.text | |
| 813 | +{ | |
| 814 | + text-decoration:underline !important; | |
| 815 | + color:var(--color_1) !important; | |
| 816 | +} | |
| 817 | +*#dm *.dmBody a.u_1331251441:hover | |
| 818 | +{ | |
| 819 | + background-color:var(--color_3) !important; | |
| 820 | + background-image:none !important; | |
| 821 | +} | |
| 822 | +*#dm *.dmBody a.u_1331251441.hover | |
| 823 | +{ | |
| 824 | + background-color:var(--color_3) !important; | |
| 825 | + background-image:none !important; | |
| 826 | +} | |
| 827 | +*#dm *.dmBody div.u_1884387629 | |
| 828 | +{ | |
| 829 | + background-color:rgba(0,0,0,0.05) !important; | |
| 830 | +} | |
| 831 | +*#dm *.dmBody a.u_1331251441 | |
| 832 | +{ | |
| 833 | + border-style:solid !important; | |
| 834 | + border-width:2px !important; | |
| 835 | + border-color:var(--color_3) !important; | |
| 836 | + background-color:rgba(0,0,0,0) !important; | |
| 837 | + border-radius:20px 20px 20px 20px !important; | |
| 838 | +} | |
| 839 | +*#dm *.dmBody div.u_1742636284 .svg | |
| 840 | +{ | |
| 841 | + color:var(--color_1) !important; | |
| 842 | + fill:var(--color_1) !important; | |
| 843 | +} | |
| 844 | +*#dm *.dmBody a.u_1756842165 | |
| 845 | +{ | |
| 846 | + border-color:var(--color_3) !important; | |
| 847 | + border-style:solid !important; | |
| 848 | + border-width:2px !important; | |
| 849 | + border-radius:20px 20px 20px 20px !important; | |
| 850 | +} | |
| 851 | +*#dm *.dmBody div.u_1713239492:before | |
| 852 | +{ | |
| 853 | + background-color:var(--color_1) !important; | |
| 854 | + opacity:0.4 !important; | |
| 855 | +} | |
| 856 | +*#dm *.dmBody div.u_1713239492.before | |
| 857 | +{ | |
| 858 | + background-color:var(--color_1) !important; | |
| 859 | + opacity:0.4 !important; | |
| 860 | +} | |
| 861 | +*#dm *.dmBody div.u_1713239492>.bgExtraLayerOverlay | |
| 862 | +{ | |
| 863 | + background-color:var(--color_1) !important; | |
| 864 | + opacity:0.4 !important; | |
| 865 | +} | |
| 866 | +*#dm *.dmBody div.u_1746905231 | |
| 867 | +{ | |
| 868 | + background-image:linear-gradient(90deg,rgba(66,123,202,1) 0%,rgba(73,174,223,1) 100%) !important; | |
| 869 | + background-origin:border-box !important; | |
| 870 | +} | |
| 871 | +*#dm *.dmBody div.u_1732757548 | |
| 872 | +{ | |
| 873 | + background-image:linear-gradient(90deg,rgba(66,123,202,1) 0%,rgba(73,174,223,1) 100%) !important; | |
| 874 | + background-origin:border-box !important; | |
| 875 | +} | |
| 876 | +*#dm *.dmBody div.u_1373323900 | |
| 877 | +{ | |
| 878 | + background-image:linear-gradient(90deg,rgba(66,123,202,1) 0%,rgba(73,174,223,1) 100%) !important; | |
| 879 | + background-origin:border-box !important; | |
| 880 | +} | |
| 881 | +*#dm *.dmBody *.u_1114660179 | |
| 882 | +{ | |
| 883 | + width:100% !important; | |
| 884 | +} | |
| 885 | +*#dm *.dmBody nav.u_1737436200 | |
| 886 | +{ | |
| 887 | + color:black !important; | |
| 888 | +} | |
| 889 | +*#dm *.dmBody nav.u_1889817761 | |
| 890 | +{ | |
| 891 | + color:black !important; | |
| 892 | +} | |
| 893 | + | |
| 894 | +</style> | |
| 895 | + | |
| 896 | +<style id="pagestyleDevice" type="text/css"> | |
| 897 | + *#dm *.d-page-1716942098 DIV.dmInner | |
| 898 | +{ | |
| 899 | + background-repeat:no-repeat !important; | |
| 900 | + background-size:cover !important; | |
| 901 | + background-attachment:fixed !important; | |
| 902 | + background-position:50% 50% !important; | |
| 903 | +} | |
| 904 | +*#dm *.d-page-1716942098 DIV#dmSlideRightNavRight | |
| 905 | +{ | |
| 906 | + background-repeat:no-repeat !important; | |
| 907 | + background-image:none !important; | |
| 908 | + background-size:cover !important; | |
| 909 | + background-attachment:fixed !important; | |
| 910 | + background-position:50% 50% !important; | |
| 911 | +} | |
| 912 | +*#dm *.dmBody a.u_1756842165 span.text | |
| 913 | +{ | |
| 914 | + font-size:20px !important; | |
| 915 | +} | |
| 916 | +*#dm *.dmBody div.u_1937526287 | |
| 917 | +{ | |
| 918 | + margin-left:20px !important; | |
| 919 | + padding-top:0px !important; | |
| 920 | + padding-left:20px !important; | |
| 921 | + padding-bottom:0px !important; | |
| 922 | + margin-top:0px !important; | |
| 923 | + margin-bottom:0px !important; | |
| 924 | + margin-right:20px !important; | |
| 925 | + padding-right:20px !important; | |
| 926 | +} | |
| 927 | +*#dm *.dmBody div.u_1121935101 | |
| 928 | +{ | |
| 929 | + height:600px !important; | |
| 930 | +} | |
| 931 | +@media (min-width:768px) and (max-width:1024px) {} | |
| 932 | +@media (min-width:1025px) {} | |
| 933 | +*#dm *.dmBody div.u_1221610193 | |
| 934 | +{ | |
| 935 | + height:20px !important; | |
| 936 | +} | |
| 937 | +*#dm *.dmBody div.u_1127078365 | |
| 938 | +{ | |
| 939 | + height:20px !important; | |
| 940 | +} | |
| 941 | +*#dm *.dmBody div.u_1288707829 | |
| 942 | +{ | |
| 943 | + height:20px !important; | |
| 944 | +} | |
| 945 | +*#dm *.dmBody div.u_1337411818 | |
| 946 | +{ | |
| 947 | + height:20px !important; | |
| 948 | +} | |
| 949 | +*#dm *.dmBody div.u_1486647722 | |
| 950 | +{ | |
| 951 | + float:none !important; | |
| 952 | + top:0px !important; | |
| 953 | + left:0 !important; | |
| 954 | + width:calc(100% - 0px) !important; | |
| 955 | + position:relative !important; | |
| 956 | + height:auto !important; | |
| 957 | + padding-top:2px !important; | |
| 958 | + padding-left:0px !important; | |
| 959 | + padding-bottom:2px !important; | |
| 960 | + min-height:auto !important; | |
| 961 | + margin-right:auto !important; | |
| 962 | + margin-left:auto !important; | |
| 963 | + max-width:100% !important; | |
| 964 | + margin-top:8px !important; | |
| 965 | + margin-bottom:8px !important; | |
| 966 | + padding-right:0px !important; | |
| 967 | + min-width:25px !important; | |
| 968 | +} | |
| 969 | +*#dm *.dmBody a.u_1331251441 | |
| 970 | +{ | |
| 971 | + float:none !important; | |
| 972 | + top:0px !important; | |
| 973 | + left:0 !important; | |
| 974 | + width:200px !important; | |
| 975 | + position:relative !important; | |
| 976 | + height:auto !important; | |
| 977 | + padding-top:10px !important; | |
| 978 | + padding-left:7px !important; | |
| 979 | + padding-bottom:10px !important; | |
| 980 | + min-height:40px !important; | |
| 981 | + margin-right:auto !important; | |
| 982 | + margin-left:auto !important; | |
| 983 | + max-width:100% !important; | |
| 984 | + margin-top:10px !important; | |
| 985 | + margin-bottom:10px !important; | |
| 986 | + padding-right:7px !important; | |
| 987 | + min-width:0 !important; | |
| 988 | + text-align:center !important; | |
| 989 | +} | |
| 990 | +*#dm *.dmBody a.u_1331251441 span.text | |
| 991 | +{ | |
| 992 | + font-size:18px !important; | |
| 993 | +} | |
| 994 | +*#dm *.dmBody div.u_1742636284 | |
| 995 | +{ | |
| 996 | + width:90px !important; | |
| 997 | + height:90px !important; | |
| 998 | +} | |
| 999 | +*#dm *.dmBody div.u_1004639188 | |
| 1000 | +{ | |
| 1001 | + float:none !important; | |
| 1002 | + top:0 !important; | |
| 1003 | + left:0 !important; | |
| 1004 | + width:auto !important; | |
| 1005 | + position:relative !important; | |
| 1006 | + height:auto !important; | |
| 1007 | + padding-top:90px !important; | |
| 1008 | + padding-left:40px !important; | |
| 1009 | + padding-bottom:90px !important; | |
| 1010 | + min-height:auto !important; | |
| 1011 | + max-width:100% !important; | |
| 1012 | + padding-right:40px !important; | |
| 1013 | + min-width:0 !important; | |
| 1014 | + text-align:start !important; | |
| 1015 | + background-position:50% 50% !important; | |
| 1016 | + background-attachment:initial !important; | |
| 1017 | + margin-left:0px !important; | |
| 1018 | + margin-top:0px !important; | |
| 1019 | + margin-bottom:0px !important; | |
| 1020 | + margin-right:0px !important; | |
| 1021 | +} | |
| 1022 | +*#dm *.dmBody div.u_1090431858 | |
| 1023 | +{ | |
| 1024 | + height:800px !important; | |
| 1025 | + important:true !important; | |
| 1026 | + width:1200px !important; | |
| 1027 | +} | |
| 1028 | +*#dm *.dmBody a.u_1756842165 | |
| 1029 | +{ | |
| 1030 | + float:none !important; | |
| 1031 | + top:0px !important; | |
| 1032 | + left:0px !important; | |
| 1033 | + width:200px !important; | |
| 1034 | + position:relative !important; | |
| 1035 | + height:auto !important; | |
| 1036 | + padding-top:10px !important; | |
| 1037 | + padding-left:7px !important; | |
| 1038 | + padding-bottom:10px !important; | |
| 1039 | + min-height:40px !important; | |
| 1040 | + max-width:100% !important; | |
| 1041 | + padding-right:7px !important; | |
| 1042 | + min-width:0 !important; | |
| 1043 | + text-align:center !important; | |
| 1044 | + margin-right:866px !important; | |
| 1045 | + margin-left:0px !important; | |
| 1046 | + margin-top:20px !important; | |
| 1047 | + margin-bottom:10px !important; | |
| 1048 | +} | |
| 1049 | + | |
| 1050 | +</style> | |
| 1051 | + | |
| 1052 | +<!-- Flex Sections CSS --> | |
| 1053 | + | |
| 1054 | + | |
| 1055 | + | |
| 1056 | + | |
| 1057 | + | |
| 1058 | + | |
| 1059 | + | |
| 1060 | +<style id="globalFontSizeStyle" type="text/css"> | |
| 1061 | + .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; } | |
| 1062 | +</style> | |
| 1063 | +<style id="pageFontSizeStyle" type="text/css"> | |
| 1064 | +</style> | |
| 1065 | + | |
| 1066 | + | |
| 1067 | + | |
| 1068 | + | |
| 1069 | +<style id="hideAnimFix"> | |
| 1070 | + .dmDesktopBody:not(.editGrid) [data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) [data-anim-extended] { | |
| 1071 | + visibility: hidden; | |
| 1072 | + } | |
| 1073 | + | |
| 1074 | + .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-extended] { | |
| 1075 | + visibility: hidden !important; | |
| 1076 | + } | |
| 1077 | + | |
| 1078 | + #dmRoot:not(.editGrid) .flex-element [data-anim-extended] { | |
| 1079 | + visibility: hidden; | |
| 1080 | + } | |
| 1081 | + | |
| 1082 | +</style> | |
| 1083 | + | |
| 1084 | + | |
| 1085 | + | |
| 1086 | + | |
| 1087 | +<style id="fontFallbacks"> | |
| 1088 | + @font-face { | |
| 1089 | + font-family: "Roboto Fallback"; | |
| 1090 | + src: local('Arial'); | |
| 1091 | + ascent-override: 92.6709%; | |
| 1092 | + descent-override: 24.3871%; | |
| 1093 | + size-adjust: 100.1106%; | |
| 1094 | + line-gap-override: 0%; | |
| 1095 | + }@font-face { | |
| 1096 | + font-family: "Montserrat Fallback"; | |
| 1097 | + src: local('Arial'); | |
| 1098 | + ascent-override: 84.9466%; | |
| 1099 | + descent-override: 22.0264%; | |
| 1100 | + size-adjust: 113.954%; | |
| 1101 | + line-gap-override: 0%; | |
| 1102 | + }@font-face { | |
| 1103 | + font-family: "Lato Fallback"; | |
| 1104 | + src: local('Arial'); | |
| 1105 | + ascent-override: 101.3181%; | |
| 1106 | + descent-override: 21.865%; | |
| 1107 | + size-adjust: 97.4159%; | |
| 1108 | + line-gap-override: 0%; | |
| 1109 | + }@font-face { | |
| 1110 | + font-family: "Pacifico Fallback"; | |
| 1111 | + src: local('Arial'); | |
| 1112 | + ascent-override: 140.9687%; | |
| 1113 | + descent-override: 49.0091%; | |
| 1114 | + size-adjust: 92.4319%; | |
| 1115 | + line-gap-override: 0%; | |
| 1116 | + }@font-face { | |
| 1117 | + font-family: "Courier Prime Fallback"; | |
| 1118 | + src: local('Arial'); | |
| 1119 | + ascent-override: 57.5122%; | |
| 1120 | + descent-override: 25.1616%; | |
| 1121 | + size-adjust: 135.8407%; | |
| 1122 | + line-gap-override: 0%; | |
| 1123 | + }@font-face { | |
| 1124 | + font-family: "Comfortaa Fallback"; | |
| 1125 | + src: local('Arial'); | |
| 1126 | + ascent-override: 74.2135%; | |
| 1127 | + descent-override: 19.7117%; | |
| 1128 | + size-adjust: 118.7115%; | |
| 1129 | + line-gap-override: 0%; | |
| 1130 | + } | |
| 1131 | +</style> | |
| 1132 | + | |
| 1133 | + | |
| 1134 | +<!-- End render the required css and JS in the head section --> | |
| 1135 | + | |
| 1136 | + | |
| 1137 | + | |
| 1138 | + | |
| 1139 | + | |
| 1140 | + | |
| 1141 | +<meta property="og:type" content="website"> | |
| 1142 | +<meta property="og:url" content="https://www.girs.ca/location/guadeloupe/26-avenue"> | |
| 1143 | + | |
| 1144 | + <title> | |
| 1145 | + Appartement à louer La Guadeloupe | GIRS | |
| 1146 | + </title> | |
| 1147 | + <meta name="description" content="Découvrez nos logements 3½, 4½ et 5½ à louer à La Guadeloupe. Appartements modernes, matériaux haut de gamme et milieu de vie paisible."/> | |
| 1148 | + | |
| 1149 | + <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"/> | |
| 1150 | + | |
| 1151 | + <meta name="twitter:card" content="summary"/> | |
| 1152 | + <meta name="twitter:title" content="Appartement à louer La Guadeloupe | GIRS"/> | |
| 1153 | + <meta name="twitter:description" content="Découvrez nos logements 3½, 4½ et 5½ à louer à La Guadeloupe. Appartements modernes, matériaux haut de gamme et milieu de vie paisible."/> | |
| 1154 | + <meta property="og:description" content="Découvrez nos logements 3½, 4½ et 5½ à louer à La Guadeloupe. Appartements modernes, matériaux haut de gamme et milieu de vie paisible."/> | |
| 1155 | + <meta property="og:title" content="Appartement à louer La Guadeloupe | GIRS"/> | |
| 1156 | + | |
| 1157 | + | |
| 1158 | + | |
| 1159 | + | |
| 1160 | +<!-- SYS- VVNfRElSRUNUX1BST0RVQ1RJT04= --> | |
| 1161 | +</head> | |
| 1162 | + | |
| 1163 | + | |
| 1164 | + | |
| 1165 | + | |
| 1166 | + | |
| 1167 | + | |
| 1168 | + | |
| 1169 | + | |
| 1170 | + | |
| 1171 | + | |
| 1172 | + | |
| 1173 | + | |
| 1174 | + | |
| 1175 | + | |
| 1176 | + | |
| 1177 | + | |
| 1178 | + | |
| 1179 | + | |
| 1180 | + | |
| 1181 | + | |
| 1182 | + | |
| 1183 | +<body id="dmRoot" data-page-alias="location/guadeloupe/26-avenue" class="dmRoot dmDesktopBody fix-mobile-scrolling addCanvasBorder dmResellerSite dmLargeBody responsiveTablet " | |
| 1184 | + style="padding:0;margin:0;" | |
| 1185 | + | |
| 1186 | + > | |
| 1187 | + | |
| 1188 | + | |
| 1189 | + | |
| 1190 | + | |
| 1191 | + | |
| 1192 | + | |
| 1193 | + | |
| 1194 | + | |
| 1195 | + | |
| 1196 | + | |
| 1197 | + | |
| 1198 | + | |
| 1199 | + | |
| 1200 | + | |
| 1201 | + | |
| 1202 | + | |
| 1203 | +<!-- ========= Site Content ========= --> | |
| 1204 | +<div id="dm" class='dmwr'> | |
| 1205 | + | |
| 1206 | + <div class="dm_wrapper standard-var5 widgetStyle-3 standard"> | |
| 1207 | + <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> | |
| 1208 | +</div> | |
| 1209 | +</div> | |
| 1210 | + <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> | |
| 1211 | +</div> | |
| 1212 | + <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">À louer<span class="icon icon-angle-down"></span> | |
| 1213 | +</span> | |
| 1214 | +</a> | |
| 1215 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1216 | +</span> | |
| 1217 | +</a> | |
| 1218 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/scott/rue-amanda-gustave" class="unifiednav__item unav-item dmUDNavigationItem_010101104557 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Amanda-Gustave" data-auto="page-text-style">Rue Amanda-Gustave<span class="icon icon-angle-right"></span> | |
| 1219 | +</span> | |
| 1220 | +</a> | |
| 1221 | +</li> | |
| 1222 | + <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> | |
| 1223 | +</span> | |
| 1224 | +</a> | |
| 1225 | +</li> | |
| 1226 | + <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> | |
| 1227 | +</span> | |
| 1228 | +</a> | |
| 1229 | +</li> | |
| 1230 | +</ul> | |
| 1231 | +</li> | |
| 1232 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1233 | +</span> | |
| 1234 | +</a> | |
| 1235 | + <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> | |
| 1236 | +</span> | |
| 1237 | +</a> | |
| 1238 | +</li> | |
| 1239 | +</ul> | |
| 1240 | +</li> | |
| 1241 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1242 | +</span> | |
| 1243 | +</a> | |
| 1244 | + <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 Érables, Jumelé<span class="icon icon-angle-right"></span> | |
| 1245 | +</span> | |
| 1246 | +</a> | |
| 1247 | +</li> | |
| 1248 | + <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/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 Érables, Condo<span class="icon icon-angle-right"></span> | |
| 1249 | +</span> | |
| 1250 | +</a> | |
| 1251 | +</li> | |
| 1252 | +</ul> | |
| 1253 | +</li> | |
| 1254 | + <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1255 | +</span> | |
| 1256 | +</a> | |
| 1257 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/guadeloupe/26-avenue" class="unifiednav__item unav-item dmNavItemSelected dmUDNavigationItem_010101612522 " target="" data-target-page-alias="" aria-current="page" data-auto="selected-page"> <span class="nav-item-text " data-link-text="26e avenue" data-auto="page-text-style">26e avenue<span class="icon icon-angle-right"></span> | |
| 1258 | +</span> | |
| 1259 | +</a> | |
| 1260 | +</li> | |
| 1261 | +</ul> | |
| 1262 | +</li> | |
| 1263 | + <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1264 | +</span> | |
| 1265 | +</a> | |
| 1266 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/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> | |
| 1267 | +</span> | |
| 1268 | +</a> | |
| 1269 | +</li> | |
| 1270 | +</ul> | |
| 1271 | +</li> | |
| 1272 | +</ul> | |
| 1273 | +</li> | |
| 1274 | + <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">À vendre<span class="icon icon-angle-down"></span> | |
| 1275 | +</span> | |
| 1276 | +</a> | |
| 1277 | + <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> | |
| 1278 | +</span> | |
| 1279 | +</a> | |
| 1280 | +</li> | |
| 1281 | +</ul> | |
| 1282 | +</li> | |
| 1283 | + <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> | |
| 1284 | +</span> | |
| 1285 | +</a> | |
| 1286 | + <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ésentation au TAL<span class="icon icon-angle-right"></span> | |
| 1287 | +</span> | |
| 1288 | +</a> | |
| 1289 | +</li> | |
| 1290 | +</ul> | |
| 1291 | +</li> | |
| 1292 | + <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étaires<span class="icon icon-angle-down"></span> | |
| 1293 | +</span> | |
| 1294 | +</a> | |
| 1295 | +</li> | |
| 1296 | + <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> | |
| 1297 | +</span> | |
| 1298 | +</a> | |
| 1299 | +</li> | |
| 1300 | +</ul> | |
| 1301 | +</nav> | |
| 1302 | +</div> | |
| 1303 | +</div> | |
| 1304 | +</div> | |
| 1305 | + <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> | |
| 1306 | +<b> <span style="text-decoration-line: underline;"></span> | |
| 1307 | +<span class="font-size-22 lh-1"> <span style="text-decoration-line: underline;"></span> | |
| 1308 | + <div style="text-align: left;"> <span style=""> <span style="text-decoration-line: underline;"></span> | |
| 1309 | +<span style=""> <span style="text-decoration-line: underline;"></span> | |
| 1310 | +<font style="color: rgb(255, 255, 255);"> <span style="text-decoration-line: underline;"></span> | |
| 1311 | +<span style="" class="font-size-22 lh-1"> <span style="text-decoration-line: underline;"></span> | |
| 1312 | +<b style=""> <span style="text-decoration-line: underline;"> <span style="font-weight: 700; font-size: 20px;">Nous contacter</span></span> | |
| 1313 | +</b> | |
| 1314 | +</span> | |
| 1315 | +</font> | |
| 1316 | +</span> | |
| 1317 | +</span> | |
| 1318 | +</div> | |
| 1319 | +</span> | |
| 1320 | +</b> | |
| 1321 | +</font> | |
| 1322 | +</div> | |
| 1323 | +</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 && dm_gaq_push_event('socialLink', 'click', 'Email')"> <span class="dmSocialEmail dm-social-icons-email oneIcon socialHubIcon style8" aria-hidden="true" data-hover-effect=""></span> | |
| 1324 | +</a> | |
| 1325 | + <a href="https://www.facebook.com/gestionimmobiliererivesud/" target="_blank" dm_dont_rewrite_url="true" aria-label="facebook" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Facebook')"> <span class="dmSocialFacebook dm-social-icons-facebook oneIcon socialHubIcon style8" aria-hidden="true" data-hover-effect=""></span> | |
| 1326 | +</a> | |
| 1327 | +</div> | |
| 1328 | +</div> | |
| 1329 | +</div> | |
| 1330 | + <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> | |
| 1331 | +</span> | |
| 1332 | + <span class="text">Appelez-nous</span> | |
| 1333 | +</a> | |
| 1334 | +</div> | |
| 1335 | +</div> | |
| 1336 | +</div> | |
| 1337 | +</div> | |
| 1338 | + <div class="layout-drawer-overlay" id="layout-drawer-overlay"></div> | |
| 1339 | +</div> | |
| 1340 | + <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> | |
| 1341 | +</div> | |
| 1342 | +</div> | |
| 1343 | +</div> | |
| 1344 | +</div> | |
| 1345 | + <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> | |
| 1346 | + <span class="hamburger__slice"></span> | |
| 1347 | + <span class="hamburger__slice"></span> | |
| 1348 | +</button> | |
| 1349 | + <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> | |
| 1350 | + <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 && dm_gaq_push_event('socialLink', 'click', 'Facebook')"> <span class="dmSocialFacebook dm-social-icons-facebook oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> | |
| 1351 | +</a> | |
| 1352 | + <a href="http://linkedin.com/" target="_blank" dm_dont_rewrite_url="true" aria-label="linkedin" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Linkedin')"> <span class="dmSocialLinkedin icon-linkedin oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> | |
| 1353 | +</a> | |
| 1354 | + <a href="mailto:immeubles@gestionirs.com" dm_dont_rewrite_url="true" aria-label="email" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Email')"> <span class="dmSocialEmail dm-social-icons-email oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> | |
| 1355 | +</a> | |
| 1356 | +</div> | |
| 1357 | +</div> | |
| 1358 | +</div> | |
| 1359 | +</div> | |
| 1360 | + <div class="u_1980771558 dmRespCol small-12 large-2 medium-2" id="1980771558"> <span id="1064055669"></span> | |
| 1361 | + <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> | |
| 1362 | +</svg> | |
| 1363 | +</div> | |
| 1364 | +</div> | |
| 1365 | + <div class="u_1016959372 dmRespCol small-12 large-2 medium-2" id="1016959372"> <span id="1845699766"></span> | |
| 1366 | + <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> | |
| 1367 | +</div> | |
| 1368 | +</div> | |
| 1369 | + <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> | |
| 1370 | +</div> | |
| 1371 | +</div> | |
| 1372 | + <div class="u_1522799502 dmRespCol small-12 large-10 medium-10" id="1522799502"> <span id="1481163886"></span> | |
| 1373 | + <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">À louer<span class="icon icon-angle-down"></span> | |
| 1374 | +</span> | |
| 1375 | +</a> | |
| 1376 | + <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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1377 | +</span> | |
| 1378 | +</a> | |
| 1379 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/scott/rue-amanda-gustave" class="unifiednav__item unav-item dmUDNavigationItem_010101104557 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="Rue Amanda-Gustave" data-auto="page-text-style">Rue Amanda-Gustave<span class="icon icon-angle-right"></span> | |
| 1380 | +</span> | |
| 1381 | +</a> | |
| 1382 | +</li> | |
| 1383 | + <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> | |
| 1384 | +</span> | |
| 1385 | +</a> | |
| 1386 | +</li> | |
| 1387 | + <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> | |
| 1388 | +</span> | |
| 1389 | +</a> | |
| 1390 | +</li> | |
| 1391 | +</ul> | |
| 1392 | +</li> | |
| 1393 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1394 | +</span> | |
| 1395 | +</a> | |
| 1396 | + <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> | |
| 1397 | +</span> | |
| 1398 | +</a> | |
| 1399 | +</li> | |
| 1400 | +</ul> | |
| 1401 | +</li> | |
| 1402 | + <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ésie<span class="icon icon-angle-right"></span> | |
| 1403 | +</span> | |
| 1404 | +</a> | |
| 1405 | + <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 Érables, Jumelé<span class="icon icon-angle-right"></span> | |
| 1406 | +</span> | |
| 1407 | +</a> | |
| 1408 | +</li> | |
| 1409 | + <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/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 Érables, Condo<span class="icon icon-angle-right"></span> | |
| 1410 | +</span> | |
| 1411 | +</a> | |
| 1412 | +</li> | |
| 1413 | +</ul> | |
| 1414 | +</li> | |
| 1415 | + <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1416 | +</span> | |
| 1417 | +</a> | |
| 1418 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/guadeloupe/26-avenue" class="unifiednav__item unav-item dmNavItemSelected dmUDNavigationItem_010101612522 " target="" data-target-page-alias="" aria-current="page" data-auto="selected-page"> <span class="nav-item-text " data-link-text="26e avenue" data-auto="page-text-style">26e avenue<span class="icon icon-angle-right"></span> | |
| 1419 | +</span> | |
| 1420 | +</a> | |
| 1421 | +</li> | |
| 1422 | +</ul> | |
| 1423 | +</li> | |
| 1424 | + <li role="menuitem" aria-haspopup="true" aria-expanded="false" data-sub-nav-menu="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/location/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ères-Appalaches<span class="icon icon-angle-right"></span> | |
| 1425 | +</span> | |
| 1426 | +</a> | |
| 1427 | + <ul role="menu" class="unifiednav__container unifiednav__container_sub-nav unav-sub" data-depth="1" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="2"> <a href="/location/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> | |
| 1428 | +</span> | |
| 1429 | +</a> | |
| 1430 | +</li> | |
| 1431 | +</ul> | |
| 1432 | +</li> | |
| 1433 | +</ul> | |
| 1434 | +</li> | |
| 1435 | + <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">À vendre<span class="icon icon-angle-down"></span> | |
| 1436 | +</span> | |
| 1437 | +</a> | |
| 1438 | + <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> | |
| 1439 | +</span> | |
| 1440 | +</a> | |
| 1441 | +</li> | |
| 1442 | +</ul> | |
| 1443 | +</li> | |
| 1444 | + <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> | |
| 1445 | +</span> | |
| 1446 | +</a> | |
| 1447 | + <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ésentation au TAL<span class="icon icon-angle-right"></span> | |
| 1448 | +</span> | |
| 1449 | +</a> | |
| 1450 | +</li> | |
| 1451 | +</ul> | |
| 1452 | +</li> | |
| 1453 | + <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étaires<span class="icon icon-angle-down"></span> | |
| 1454 | +</span> | |
| 1455 | +</a> | |
| 1456 | +</li> | |
| 1457 | + <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> | |
| 1458 | +</span> | |
| 1459 | +</a> | |
| 1460 | +</li> | |
| 1461 | +</ul> | |
| 1462 | +</nav> | |
| 1463 | +</div> | |
| 1464 | +</div> | |
| 1465 | +</div> | |
| 1466 | +</div> | |
| 1467 | +</div> | |
| 1468 | +</div> | |
| 1469 | + <div dmwrapped="true" id="dmFirstContainer" class="dmBody u_dmStyle_template_location/guadeloupe/26-avenue 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="1654430544"> <div class="dmRespColsWrapper" id="1597722405"> <div class="dmRespCol large-12 medium-12 small-12" id="1047687780"> <div class="imageWidget align-center u_1114660179" data-element-type="image" data-widget-type="image" id="1114660179"><img src="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/opt/8plex+La+Guadeloupe-1920w.jpg" alt="" id="1161812109" class="" width="1920" height="1080" data-dm-image-path="https://irp.cdn-website.com/6d6b044d/dms3rep/multi/8plex+La+Guadeloupe.jpg" onerror="handleImageLoadError(this)"/></div> | |
| 1470 | +</div> | |
| 1471 | +</div> | |
| 1472 | +</div> | |
| 1473 | + <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âtiments et un arbre.</title> | |
| 1474 | + <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> | |
| 1475 | +</svg> | |
| 1476 | +</div> | |
| 1477 | + <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="color: var(--color_2); display: unset; font-weight: bold;">26e avenue</strong></h1> | |
| 1478 | +</div> | |
| 1479 | +</div> | |
| 1480 | +</div> | |
| 1481 | +</div> | |
| 1482 | + <div class="dmRespRow" id="1299034309"> <div class="dmRespColsWrapper" id="1051852715"> <div class="dmRespCol large-6 medium-6 small-12" id="1199127370"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1692095137" style="transition: opacity 1s ease-in-out;"><p style="line-height: 1.5;"><span style="font-weight:400;display:initial;font-family:Montserrat, 'Montserrat Fallback';">Situé dans la municipalité de La Guadeloupe, au cœur de la Beauce dans la région de Chaudière-Appalaches, ce projet résidentiel moderne a été conçu pour offrir un cadre de vie confortable, paisible et parfaitement adapté aux besoins d’aujourd’hui.</span></p><p style="line-height: 1.5;"><span style="font-weight:400;display:initial;font-family:Montserrat, 'Montserrat Fallback';"><br/></span></p><p style="line-height: 1.5;"><span style="font-weight:400;display:initial;font-family:Montserrat, 'Montserrat Fallback';">Les appartements se distinguent par la qualité supérieure de leurs matériaux et par des espaces de vie soigneusement pensés. Offrant des logements 3½, 4½ et 5½, chaque unité propose un environnement lumineux et fonctionnel, idéal pour profiter pleinement de son chez-soi. <br/>Les logements comprennent des pièces bien dimensionnées, des finitions haut de gamme ainsi que des espaces extérieurs privés permettant de profiter pleinement des belles saisons.</span></p></div> | |
| 1483 | +</div> | |
| 1484 | + <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.5;"><span style="font-weight:400;display:initial;font-family:Montserrat, 'Montserrat Fallback';">Situé dans un secteur calme et recherché, le projet permet également de profiter d’un accès rapide aux services essentiels de la municipalité et des villes avoisinantes. Commerces, restaurants, écoles, installations sportives et services de proximité sont facilement accessibles, simplifiant le quotidien des résidents.</span></p><p style="line-height: 1.5;"><span style="font-weight:400;display:initial;font-family:Montserrat, 'Montserrat Fallback';"><br/></span></p><p style="line-height: 1.5;"><span style="font-weight:400;display:initial;font-family:Montserrat, 'Montserrat Fallback';">Que vous soyez une personne seule, un couple ou une famille, ces appartements modernes offrent un milieu de vie équilibré où confort, tranquillité et qualité de construction se rencontrent.</span></p><p style="line-height: 1.5;"><span style="font-weight:400;display:initial;font-family:Montserrat, 'Montserrat Fallback';"><br/></span></p><p style="line-height: 1.5;"><span style="font-weight:400;display:initial;font-family:Montserrat, 'Montserrat Fallback';">En choisissant de vous établir à La Guadeloupe, vous profitez d’un environnement accueillant typique de la Beauce, combinant proximité des services, nature et esprit communautaire, pour une qualité de vie exceptionnelle.</span></p></div> | |
| 1485 | +</div> | |
| 1486 | +</div> | |
| 1487 | +</div> | |
| 1488 | + <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> | |
| 1489 | +</div> | |
| 1490 | +</div> | |
| 1491 | +</div> | |
| 1492 | + <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> | |
| 1493 | +</div> | |
| 1494 | +</div> | |
| 1495 | + <div class="u_1871439213 dmRespCol small-12 large-8 medium-8" id="1871439213"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1047322935"><p style="line-height: 1.5;"><span style="font-weight:400;display:initial;font-family:Montserrat, 'Montserrat Fallback';">Votre appartement locatif à La Guadeloupe a été conçu pour offrir un confort moderne et une qualité de vie supérieure. Chaque logement propose des matériaux haut de gamme, une thermopompe pour un confort optimal en toute saison et une insonorisation soignée assurant tranquillité et bien-être.</span></p><p style="line-height: 1.5;"><span style="font-weight:400;display:initial;font-family:Montserrat, 'Montserrat Fallback';"><br/></span></p><p style="line-height: 1.5;"><span style="font-weight:400;display:initial;font-family:Montserrat, 'Montserrat Fallback';">Les espaces de vie sont lumineux, fonctionnels et bien aménagés, avec un balcon privé permettant de profiter pleinement de l’extérieur. Un environnement pensé pour allier confort, modernité et qualité au quotidien.</span></p></div> | |
| 1496 | +</div> | |
| 1497 | +</div> | |
| 1498 | +</div> | |
| 1499 | + <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êtres et une balustrade.</title> | |
| 1500 | + <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> | |
| 1501 | +</svg> | |
| 1502 | +</div> | |
| 1503 | + <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É</strong></p></div> | |
| 1504 | +</div> | |
| 1505 | + <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êtres sur fond blanc.</title> | |
| 1506 | + <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> | |
| 1507 | +</svg> | |
| 1508 | +</div> | |
| 1509 | + <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É SPACIEUSE</strong><span style="display: initial;"><br/></span></p></div> | |
| 1510 | +</div> | |
| 1511 | + <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> | |
| 1512 | + <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> | |
| 1513 | + <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> | |
| 1514 | + <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> | |
| 1515 | + <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> | |
| 1516 | + <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> | |
| 1517 | + <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> | |
| 1518 | + <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> | |
| 1519 | + <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> | |
| 1520 | + <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> | |
| 1521 | + <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> | |
| 1522 | + <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> | |
| 1523 | + <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> | |
| 1524 | + <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> | |
| 1525 | + <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> | |
| 1526 | + <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> | |
| 1527 | + <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> | |
| 1528 | + <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> | |
| 1529 | + <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> | |
| 1530 | + <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> | |
| 1531 | + <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> | |
| 1532 | + <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> | |
| 1533 | + <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> | |
| 1534 | + <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> | |
| 1535 | + <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> | |
| 1536 | +</g> | |
| 1537 | +</svg> | |
| 1538 | +</div> | |
| 1539 | + <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> | |
| 1540 | +</div> | |
| 1541 | +</div> | |
| 1542 | +</div> | |
| 1543 | + <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ère et des tiroirs.</title> | |
| 1544 | + <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> | |
| 1545 | +</svg> | |
| 1546 | +</div> | |
| 1547 | + <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> | |
| 1548 | +</div> | |
| 1549 | + <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> | |
| 1550 | +</svg> | |
| 1551 | +</a> | |
| 1552 | +</div> | |
| 1553 | + <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> | |
| 1554 | +</div> | |
Diff truncated — file too large.