SPB Git

spb/lou-ka Public

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

HTML 99.7%

Mission 1b (lots 2-3) — audit et mise à niveau de 10 connecteurs + correctifs normalisation

Connecteurs : brio, brivia_1sp, brochu, capreit, cogir, contraste, copley,
cromwell, denux, devimco — fixtures + tests + rapports d'audit.

Faits saillants :
- cogir : collision d'uid corrigée (283 annonces au lieu de 270), annonces
  fantômes « liste d'attente » exclues
- capreit : lat/lng 100 %, fiches derrière cache detail (sync 75 s -> 0,4 s)
- devimco : adresses 84 % -> 100 %, superficie structurée
- contraste : commodités 0 % -> 100 %, faux « 0 $/mois » supprimés
- brivia_1sp : API AJAX des plans découverte (dispo réelle, superficies)

normalize.py : négations chauffage/éclairage, « chiens non permis » -> pets
conditions, options payantes neutralisées (optionnel/en sus), stationnement
mixte int+ext, étage restreint aux commodités, refrigerator/cooling anglais.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
simon-pierre boucher committed 2 days ago (Aug 8, 2026) parent 20eaa72

Showing 82 changed files with +19,369 and −167

modified louka/connectors/brio.py +25 −4
@@ -20,7 +20,8 @@ BASE = "https://immeublesbrio.com"
20 20 HOME_URL = f"{BASE}/"
21 21 LIST_URL = f"{BASE}/appartements-a-louer-val-belair/"
22 22 SECTOR = "Val-Bélair"
23 ADDRESS = "boulevard Pie-XI, Val-Bélair"
23 +# Adresse civique affichée sur la page Contactez-nous (« Visitez-nous »)
24 +ADDRESS = "1105, rue des Rigoles, Québec, QC G3K 0M7"
24 25
25 26
26 27 class BrioConnector(BaseConnector):
@@ -28,9 +29,12 @@ class BrioConnector(BaseConnector):
28 29 request_delay = 0.6
29 30
30 31 def fetch(self) -> list[Listing]:
31 # 1) Prix « à partir de » par type, affichés sur la page d'accueil
32 # (ex. « 3½ à partir de 1500$ »)
32 + # 1) Page d'accueil : prix « à partir de » par type (ex. « 3½ à
33 + # partir de 1500$ »), services de l'immeuble (blurbs Divi) et
34 + # contact (téléphone/courriel de l'en-tête).
33 35 type_prices: dict[str, tuple[float | None, str]] = {}
36 + services: list[str] = []
37 + contact: dict = {}
34 38 try:
35 39 home = self.get(HOME_URL).text
36 40 home_txt = re.sub(r"<[^>]+>", " ", home)
@@ -38,6 +42,18 @@ class BrioConnector(BaseConnector):
38 42 home_txt):
39 43 label = f"{m.group(1)}½ à partir de {m.group(2).strip()}$"
40 44 type_prices[m.group(1)] = (parse_price(f"{m.group(2)}$"), label)
45 + hsoup = BeautifulSoup(home, "html.parser")
46 + # Services de l'immeuble (Wifi, ascenseur, stationnement…)
47 + services = [h.get_text(" ", strip=True)
48 + for h in hsoup.select(".et_pb_blurb .et_pb_module_header")
49 + if h.get_text(strip=True)][:12]
50 + # Contact : courriel (lien mailto:) + téléphone (en-tête)
51 + mail = hsoup.select_one('a[href^="mailto:"]')
52 + if mail:
53 + contact["email"] = mail["href"].removeprefix("mailto:").strip()
54 + m = re.search(r"\b(\d{3})[-.\s](\d{3})[-.\s](\d{4})\b", home_txt)
55 + if m:
56 + contact["phone"] = f"{m.group(1)}-{m.group(2)}-{m.group(3)}"
41 57 except Exception:
42 58 pass
43 59
@@ -104,6 +120,10 @@ class BrioConnector(BaseConnector):
104 120 images.extend(gallery)
105 121 images = list(dict.fromkeys(images))
106 122
123 + details: dict = {}
124 + if contact:
125 + details["contact"] = dict(contact)
126 +
107 127 listings.append(Listing(
108 128 source=self.source_id,
109 129 external_id=f"appartement-{num}",
@@ -117,7 +137,8 @@ class BrioConnector(BaseConnector):
117 137 price_label=price_label,
118 138 availability="Disponible",
119 139 description=description,
120 amenities=amenities,
140 + amenities=amenities + services,
141 + details=details,
121 142 images=images,
122 143 ))
123 144 except Exception:
modified louka/connectors/brivia_1sp.py +161 −10
@@ -3,15 +3,18 @@
3 3 # Auteur : Simon-Pierre Boucher — contact@spboucher.ai
4 4 # connectors/brivia_1sp.py : connecteur 1 Square Phillips (Groupe Brivia)
5 5 # (1squarephillips.ca/locatif — tour locative au centre-ville de Montréal,
6 # 1205 rue du Square-Phillips, Ville-Marie). Le site n'affiche pas
7 # d'inventaire unité par unité : la page /locatif présente les trois
8 # typologies offertes (Studio / 1 Chambre / 2 Chambres) avec loyer
9 # "à partir de" -> une annonce par typologie, photos tirées des pages
10 # /locatif et /galerie.
6 +# 1205 rue du Square-Phillips, Ville-Marie). La page /locatif présente les
7 +# trois typologies offertes (Studio / 1 Chambre / 2 Chambres) avec loyer
8 +# "à partir de" -> une annonce par typologie (uid stables). L'inventaire
9 +# unité par unité est exposé par l'API AJAX des plans (2022/php/
10 +# ajax_load_unit_selector/_floor/_unit.php, phase=rental) : on y lit les
11 +# unités réellement disponibles (« onsale »), leur étage, leur superficie
12 +# (pi²) et le plan — utilisés pour enrichir chaque typologie.
11 13 # -----------------------------------------------------------------------------
12 14 from __future__ import annotations
13 15
14 16 import re
17 +import time
15 18
16 19 from bs4 import BeautifulSoup
17 20
@@ -21,32 +24,109 @@ from .base import BaseConnector
21 24 BASE = "https://www.1squarephillips.ca"
22 25 LOCATIF_URL = f"{BASE}/locatif"
23 26 GALERIE_URL = f"{BASE}/galerie"
27 +PLANS_AJAX = f"{BASE}/2022/php/"
24 28
25 ADDRESS = "1205, rue du Square-Phillips, Montréal"
29 +# Adresse du pied de page (avec code postal)
30 +ADDRESS = "1205, rue du Square-Phillips, Montréal, QC H3B 3C9"
26 31
27 32 _TYPE_MAP = {"studio": "Studio", "1 chambre": "3½", "2 chambres": "4½",
28 33 "3 chambres": "5½"}
34 +# Typologie -> data-type de l'API des plans (phase locative)
35 +_PLAN_TYPE = {"studio": 11, "1 chambre": 12, "2 chambres": 13}
29 36
30 37 DESCRIPTION = ("Condos locatifs de luxe au centre-ville de Montréal, formule "
31 38 "tout inclus : électroménagers, climatisation, chauffage, "
32 39 "électricité, eau chaude et Wi-Fi.")
33 40
41 +# Repli si la section « Caractéristiques » du site devenait illisible
34 42 AMENITIES = ["Tout inclus (électricité, chauffage, climatisation, eau chaude, "
35 43 "Wi-Fi)", "Électroménagers inclus", "Piscine, sauna et bain "
36 44 "vapeur", "Salles d'entraînement", "Espace de cotravail",
37 45 "Salle de cinéma", "Terrasse", "Gardien 24 h", "Lounge du 21e "
38 46 "étage", "Stationnement souterrain"]
39 47
48 +_ONSALE_RE = re.compile(r'id="unit(\d+)" class="unit onsale"')
49 +_FLOOR_RE = re.compile(r'data-floor="(\d+)"')
50 +_AREA_RE = re.compile(r"Superficie\s*</span><span>([\d\s ,]+)\s*pi", re.I)
51 +_BALCONY_RE = re.compile(r"Balcon\s*</span><span>([\d\s ,]+)\s*pi", re.I)
52 +
40 53
41 54 def _unit_type(label: str) -> str:
42 55 key = re.sub(r"\s+", " ", (label or "").strip().lower())
43 56 return _TYPE_MAP.get(key, label.strip())
44 57
45 58
59 +def _num(txt: str) -> float | None:
60 + try:
61 + return float(re.sub(r"[\s ,]", "", txt))
62 + except (TypeError, ValueError):
63 + return None
64 +
65 +
46 66 class Brivia1SPConnector(BaseConnector):
47 67 source_id = "brivia_1sp"
48 68 request_delay = 0.6
69 + max_unit_details = 150 # plafond de fiches unité par sync
70 +
71 + # -- helpers ---------------------------------------------------------------
72 + def _post_json(self, path: str, data: dict) -> dict:
73 + """POST throttlé vers l'API AJAX des plans (réponses JSON)."""
74 + wait = self.request_delay - (time.time() - self._last_request)
75 + if wait > 0:
76 + time.sleep(wait)
77 + resp = self.session.post(PLANS_AJAX + path, data=data,
78 + timeout=self.timeout)
79 + self._last_request = time.time()
80 + resp.raise_for_status()
81 + return resp.json()
82 +
83 + def _fetch_unit(self, unit: str) -> dict:
84 + """Fiche d'une unité (type, étage, superficie, plan) via l'API."""
85 + d = self._post_json("ajax_load_plans_unit.php",
86 + {"lang": "fr", "phase": "rental", "unit": unit})
87 + html = d.get("unit_details") or ""
88 + out: dict = {"unit": unit, "type": int(d.get("type") or 0),
89 + "floor": int(d.get("floor") or 0)}
90 + m = _AREA_RE.search(html)
91 + if m:
92 + out["area_sqft"] = _num(m.group(1))
93 + m = _BALCONY_RE.search(html)
94 + if m:
95 + out["balcony_sqft"] = _num(m.group(1))
96 + # « 1 chambre / 1 salle de bain »
97 + m = re.search(r'<p class="uppercase">([^<]+)</p>', html)
98 + if m:
99 + out["rooms"] = m.group(1).strip()
100 + m = re.search(r"<h3>\s*Plan\s*([^<]+)</h3>", html)
101 + if m:
102 + out["plan"] = m.group(1).strip()
103 + m = re.search(r'<img src="([^"]+)"', d.get("unit_plan") or "")
104 + if m:
105 + out["plan_img"] = m.group(1)
106 + return out
49 107
108 + def _rental_units(self) -> dict[int, list[dict]]:
109 + """Unités disponibles (« onsale ») par type (11/12/13), via l'API."""
110 + sel = self._post_json("ajax_load_unit_selector.php",
111 + {"lang": "fr", "phase": "rental"})
112 + floors = sorted({int(f) for f in
113 + _FLOOR_RE.findall(sel.get("unit_selector") or "")})
114 + onsale: list[str] = []
115 + for f in floors[:40]:
116 + d = self._post_json("ajax_load_plans_floor.php",
117 + {"lang": "fr", "phase": "rental",
118 + "type": 11, "floor": f})
119 + onsale.extend(_ONSALE_RE.findall(d.get("floor") or ""))
120 + by_type: dict[int, list[dict]] = {}
121 + for u in onsale[: self.max_unit_details]:
122 + # la fiche d'une unité (plan) est immuable -> clé de cache fixe
123 + info = self.detail(f"unit-{u}", "plan-v1",
124 + lambda u=u: self._fetch_unit(u))
125 + if info.get("unit"):
126 + by_type.setdefault(int(info.get("type") or 0), []).append(info)
127 + return by_type
128 +
129 + # -- fetch -----------------------------------------------------------------
50 130 def fetch(self) -> list[Listing]:
51 131 listings: list[Listing] = []
52 132 try:
@@ -63,6 +143,27 @@ class Brivia1SPConnector(BaseConnector):
63 143 pass
64 144 images = list(dict.fromkeys(images))[:30]
65 145
146 + # Caractéristiques réelles de l'immeuble (section .features)
147 + amenities = self._collect_features(soup) or list(AMENITIES)
148 +
149 + # Contact structuré (liens tel:/mailto: du pied de page)
150 + contact: dict = {}
151 + tel = soup.select_one('a[href^="tel:"]')
152 + if tel:
153 + digits = re.sub(r"\D", "", tel["href"])[-10:]
154 + if len(digits) == 10:
155 + contact["phone"] = f"{digits[:3]}-{digits[3:6]}-{digits[6:]}"
156 + mail = soup.select_one('a[href^="mailto:"]')
157 + if mail:
158 + contact["email"] = mail["href"].removeprefix("mailto:").strip()
159 +
160 + # Inventaire unité par unité (API AJAX des plans, phase locative)
161 + inventory: dict[int, list[dict]] = {}
162 + try:
163 + inventory = self._rental_units()
164 + except Exception:
165 + pass
166 +
66 167 # Typologies (ul.grid3cols : h4 = type, p = "à partir de X $/mois")
67 168 for li in soup.select("ul.grid3cols li"):
68 169 try:
@@ -77,6 +178,39 @@ class Brivia1SPConnector(BaseConnector):
77 178 continue
78 179 type_slug = re.sub(r"[^a-z0-9]+", "-",
79 180 typology.lower()).strip("-")
181 +
182 + # Enrichissement avec les unités disponibles de la typologie
183 + tkey = re.sub(r"\s+", " ", typology.strip().lower())
184 + units = sorted(inventory.get(_PLAN_TYPE.get(tkey, -1), []),
185 + key=lambda u: u["unit"])
186 + availability = "Disponible (tour locative en location)"
187 + description = DESCRIPTION
188 + area = None
189 + unit_images: list[str] = []
190 + if units:
191 + n = len(units)
192 + availability = (f"{n} unité{'s' if n > 1 else ''} "
193 + f"disponible{'s' if n > 1 else ''}")
194 + areas = [u["area_sqft"] for u in units
195 + if u.get("area_sqft")]
196 + area = min(areas) if areas else None
197 + # nota : pas de mention « étage N » ici, sinon la
198 + # normalisation centrale déduirait un faux details.floor
199 + dispo = ", ".join(
200 + f"unité {u['unit']}"
201 + + (f" ({u['area_sqft']:.0f} pi²"
202 + + (f" + balcon {u['balcony_sqft']:.0f} pi²"
203 + if u.get("balcony_sqft") else "") + ")"
204 + if u.get("area_sqft") else "")
205 + for u in units)
206 + description = f"{DESCRIPTION} Unités disponibles : {dispo}."
207 + unit_images = [u["plan_img"] for u in units
208 + if u.get("plan_img")]
209 +
210 + details: dict = {}
211 + if contact:
212 + details["contact"] = dict(contact)
213 +
80 214 listings.append(Listing(
81 215 source=self.source_id,
82 216 external_id=f"1sp-{type_slug}",
@@ -88,15 +222,32 @@ class Brivia1SPConnector(BaseConnector):
88 222 unit_type=_unit_type(typology),
89 223 price=parse_price(price_label),
90 224 price_label=price_label,
91 availability="Disponible (tour locative en location)",
92 description=DESCRIPTION,
93 amenities=AMENITIES,
94 images=images,
225 + availability=availability,
226 + area_sqft=area,
227 + description=description,
228 + amenities=amenities,
229 + details=details,
230 + images=list(dict.fromkeys(unit_images + images))[:40],
95 231 ))
96 232 except Exception:
97 233 continue
98 234 return listings
99 235
236 + @staticmethod
237 + def _collect_features(soup: BeautifulSoup) -> list[str]:
238 + """Caractéristiques de l'immeuble (section .features, div.back)."""
239 + out: list[str] = []
240 + for el in soup.select("section.features li div.back"):
241 + t = re.sub(r"\s+", " ", el.get_text(" ", strip=True))
242 + if t and t not in out:
243 + out.append(t)
244 + if out:
245 + # inclusions énoncées dans l'intro de la page locatif
246 + out.insert(0, "Tout inclus (électricité, chauffage, climatisation, "
247 + "eau chaude, Wi-Fi)")
248 + out.insert(1, "Électroménagers inclus")
249 + return out[:40]
250 +
100 251 @staticmethod
101 252 def _collect_images(html: str) -> list[str]:
102 253 """Images pleine taille du site (perspectives + galerie)."""
modified louka/connectors/brochu.py +96 −25
@@ -8,6 +8,7 @@
8 8 # -----------------------------------------------------------------------------
9 9 from __future__ import annotations
10 10
11 +import hashlib
11 12 import re
12 13
13 14 from bs4 import BeautifulSoup
@@ -27,6 +28,17 @@ ADDR_RE = re.compile(
27 28 r"(?:\s*\(Qu[ée]bec\))?(?:\s*,?\s*[A-Z]\d[A-Z]\s?\d[A-Z]\d)?", re.I)
28 29 IMG_RE = re.compile(r"https://groupeimmobilierbrochu\.com/wp-content/uploads/"
29 30 r'[^"\s\\)]+\.(?:jpe?g|png|webp|avif)', re.I)
31 +PHONE_RE = re.compile(r"\b(\d{3})[\s.\-](\d{3})[\s.\-](\d{4})\b")
32 +
33 +
34 +def _decode_cfemail(hexstr: str) -> str:
35 + """Décode un courriel protégé Cloudflare (attribut data-cfemail)."""
36 + try:
37 + raw = bytes.fromhex(hexstr)
38 + key = raw[0]
39 + return bytes(b ^ key for b in raw[1:]).decode("utf-8")
40 + except Exception:
41 + return ""
30 42
31 43
32 44 class BrochuConnector(BaseConnector):
@@ -86,45 +98,104 @@ class BrochuConnector(BaseConnector):
86 98 city = infer_city(sector,
87 99 default="Québec" if "saules" in key else "Québec")
88 100
89 # Page projet : adresse, photos, description
90 address, images, desc = "", [], ""
91 try:
92 detail = self.get(url).text
93 dsoup = BeautifulSoup(detail, "html.parser")
94 dtext = re.sub(r"\s+", " ", dsoup.get_text(" ", strip=True))
95 m = ADDR_RE.search(dtext)
96 if m:
97 address = m.group(0).strip().rstrip(",")
98 images = [u for u in dict.fromkeys(IMG_RE.findall(detail))
99 if not re.search(r"logo|icon|favicon|cropped-|"
100 r"-\d{2,3}x\d{2,3}\.", u, re.I)][:25]
101 og = dsoup.find("meta", attrs={"property": "og:description"})
102 if og and og.get("content"):
103 desc = og["content"].strip()[:600]
104 if not desc:
105 h = dsoup.find(["h2", "h3"],
106 string=re.compile("qualité|confort", re.I))
107 if h:
108 desc = h.get_text(" ", strip=True)[:600]
109 except Exception:
110 pass
101 + # Page projet : adresse, dispo, description, commodités,
102 + # contact, photos — via le cache BD des pages détail
103 + # (revisitée seulement si la carte liste a changé)
104 + card_key = hashlib.sha1(
105 + f"{label}|{sector}|{name}|{bold}|{'|'.join(ps)}"
106 + .encode("utf-8")).hexdigest()
107 + d = self.detail(slug, card_key,
108 + lambda url=url: self._fetch_detail(url))
109 +
110 + if d.get("availability"):
111 + availability = d["availability"]
112 +
113 + details: dict = {}
114 + contact = {k: d[k] for k in ("phone", "email") if d.get(k)}
115 + if contact:
116 + details["contact"] = contact
111 117
112 118 listings.append(Listing(
113 119 source=self.source_id,
114 120 external_id=slug,
115 121 url=url,
116 122 title=name,
117 address=address,
123 + address=d.get("address", ""),
118 124 sector=sector,
119 125 city=city,
120 126 unit_type=unit_type,
121 127 price=parse_price(price_label),
122 128 price_label=price_label,
123 129 availability=availability,
124 description=desc or bold,
125 images=images,
130 + description=d.get("description") or bold,
131 + amenities=d.get("amenities") or [],
132 + details=details,
133 + images=d.get("images") or [],
126 134 ))
127 135 except Exception:
128 136 continue
129 137
130 138 return listings
139 +
140 + def _fetch_detail(self, url: str) -> dict:
141 + """Extrait les champs riches d'une page projet (thème UIkit).
142 +
143 + Adresse (lien Google Maps), disponibilité (encadré Statut),
144 + description + commodités (colonne principale), contact (téléphone
145 + affiché + courriel protégé Cloudflare décodé), photos.
146 + """
147 + out: dict = {}
148 + try:
149 + detail = self.get(url).text
150 + except Exception:
151 + return out
152 + dsoup = BeautifulSoup(detail, "html.parser")
153 +
154 + # adresse : lien Google Maps du projet (hors pied de page, qui porte
155 + # l'adresse du bureau du Groupe Brochu), sinon regex globale
156 + for maps in dsoup.select('a[href*="maps"]'):
157 + if maps.find_parent("footer"):
158 + continue
159 + addr = re.sub(r"\s+", " ", maps.get_text(" ", strip=True)).strip()
160 + if re.search(r"\d", addr):
161 + out["address"] = addr
162 + break
163 + if not out.get("address"):
164 + dtext = re.sub(r"\s+", " ", dsoup.get_text(" ", strip=True))
165 + m = ADDR_RE.search(dtext)
166 + if m:
167 + out["address"] = m.group(0).strip().rstrip(",")
168 +
169 + # disponibilité : encadré « Statut » (uk-alert-primary)
170 + alert = dsoup.select_one("div.uk-alert-primary p")
171 + if alert:
172 + out["availability"] = alert.get_text(" ", strip=True)
173 +
174 + # colonne principale : description (h3 + p) et commodités (li)
175 + main = dsoup.select_one('div[class*="uk-width-3-5"]')
176 + if main:
177 + paras = [p.get_text(" ", strip=True) for p in main.find_all("p")
178 + if p.get_text(strip=True)]
179 + desc = " ".join(paras)
180 + out["description"] = re.sub(r"\s+", " ", desc).strip()[:900]
181 + out["amenities"] = [li.get_text(" ", strip=True)
182 + for li in main.select("li")
183 + if li.get_text(strip=True)][:25]
184 +
185 + # contact : téléphone affiché dans l'encadré Statut + courriel
186 + # protégé Cloudflare (data-cfemail, décodable)
187 + panel = dsoup.select_one("div.uk-panel.uk-background-muted")
188 + m = PHONE_RE.search(panel.get_text(" ", strip=True) if panel else "")
189 + if m:
190 + out["phone"] = f"{m.group(1)}-{m.group(2)}-{m.group(3)}"
191 + cf = (panel.select_one("[data-cfemail]") if panel else None) or \
192 + dsoup.select_one("[data-cfemail]")
193 + if cf:
194 + email = _decode_cfemail(cf.get("data-cfemail", ""))
195 + if email:
196 + out["email"] = email
197 +
198 + out["images"] = [u for u in dict.fromkeys(IMG_RE.findall(detail))
199 + if not re.search(r"logo|icon|favicon|cropped-|"
200 + r"-\d{2,3}x\d{2,3}\.", u, re.I)][:25]
201 + return out
modified louka/connectors/capreit.py +99 −53
@@ -11,6 +11,7 @@
11 11 # -----------------------------------------------------------------------------
12 12 from __future__ import annotations
13 13
14 +import hashlib
14 15 import re
15 16
16 17 from bs4 import BeautifulSoup
@@ -105,6 +106,18 @@ class CapreitConnector(BaseConnector):
105 106 title = (p.get("title") or "").strip()
106 107 address = (p.get("address") or "").strip()
107 108 feed_city = (p.get("city") or "").strip()
109 + # adresse complète : rue + ville + code postal (tous fournis au flux)
110 + postal = (p.get("postal_code") or "").strip()
111 + if address and feed_city:
112 + address = f"{address}, {feed_city}" + (f", QC {postal}"
113 + if postal else "")
114 + # coordonnées GPS du flux
115 + try:
116 + lat = float(p["latitude"]) if p.get("latitude") else None
117 + lng = float(p["longitude"]) if p.get("longitude") else None
118 + except (TypeError, ValueError):
119 + lat = lng = None
120 + incentive = (p.get("incentive") or "").strip()
108 121 # secteur : ville précise du flux (ex. Beauport) sinon intersection
109 122 city_key = self._city_key(feed_city)
110 123 if city_key in _GM_CITIES:
@@ -118,60 +131,22 @@ class CapreitConnector(BaseConnector):
118 131 sector = feed_city
119 132 city = infer_city(sector, default="Québec")
120 133
121 desc, amenities, images, rows = "", [], [], []
122 try:
123 page = self.get(url).text
124 soup = BeautifulSoup(page, "html.parser")
134 + # fiche propriété (rendu serveur) via le cache BD : revisitée
135 + # seulement quand la ligne du flux change
136 + feed_key = hashlib.sha1("|".join(
137 + str(p.get(k)) for k in
138 + ("id", "min_rent", "earliest_date", "vacancy_message",
139 + "price_range", "has_vacancies", "units_count", "incentive")
140 + ).encode("utf-8")).hexdigest()
141 + d = self.detail(pid, feed_key, lambda: self._fetch_property(url))
142 + desc = d.get("desc", "")
143 + amenities = d.get("amenities", [])
144 + images = d.get("images", [])
145 + rows = d.get("rows", [])
125 146
126 # galerie photos (héro + blocs JSON de la page)
127 for u in _IMG_RE.findall(page):
128 if _SKIP_IMG.search(u):
129 continue
130 if u not in images:
131 images.append(u)
132 images = images[: self.max_images]
133
134 # commodités (listes à icônes)
135 seen = set()
136 for li in soup.select("li"):
137 if not li.find("div", class_="icon"):
138 continue
139 t = li.get_text(" ", strip=True)
140 if t and len(t) < 60 and t not in seen:
141 seen.add(t)
142 amenities.append(t)
143 amenities = amenities[:25]
144
145 # description (« Caractéristiques de l'immeuble »)
146 h = soup.find(["h2", "h3"], string=re.compile(
147 "Caractéristiques de l['’]immeuble"))
148 if h:
149 nxt = h.find_next(["p", "div"])
150 if nxt:
151 desc = nxt.get_text(" ", strip=True)[:600]
152
153 # types d'unités disponibles
154 for li in soup.select("li.property-options-list-item"):
155 avail_el = li.select_one(
156 ".property-options-list-item-availability")
157 price_el = li.select_one(
158 ".property-options-list-item-price")
159 details = [d.get_text(" ", strip=True)
160 for d in li.select(".property-options-item")]
161 unit_raw = details[0] if details else ""
162 sqft = details[1] if len(details) > 1 else ""
163 if li.get("data-available") == "false":
164 continue
165 rows.append({
166 "unit_raw": unit_raw,
167 "sqft": sqft,
168 "price": price_el.get_text(" ", strip=True)
169 if price_el else "",
170 "avail": avail_el.get_text(" ", strip=True)
171 if avail_el else "",
172 })
173 except Exception:
174 pass
147 + # promotion du flux (ex. « 1 mois de loyer gratuit »)
148 + if incentive:
149 + desc = f"Promotion : {incentive}. {desc}".strip()
175 150
176 151 out: list[Listing] = []
177 152 if rows:
@@ -195,10 +170,17 @@ class CapreitConnector(BaseConnector):
195 170 description=" — ".join(x for x in [desc, r["sqft"]] if x)[:600],
196 171 amenities=amenities,
197 172 images=images,
173 + lat=lat,
174 + lng=lng,
198 175 ))
199 176 else:
200 177 # repli : annonce par propriété avec le prix plancher du flux
201 178 min_rent = p.get("min_rent")
179 + # date de disponibilité structurée du flux (ex. 20260201)
180 + avail_date = None
181 + ed = str(p.get("earliest_date") or "")
182 + if re.fullmatch(r"20\d{6}", ed):
183 + avail_date = f"{ed[:4]}-{ed[4:6]}-{ed[6:]}"
202 184 out.append(Listing(
203 185 source=self.source_id,
204 186 external_id=pid,
@@ -212,8 +194,72 @@ class CapreitConnector(BaseConnector):
212 194 price=float(min_rent) if min_rent else None,
213 195 price_label=p.get("price_range") or "",
214 196 availability=p.get("vacancy_message") or "",
197 + availability_date=avail_date,
215 198 description=desc,
216 199 amenities=amenities,
217 200 images=images,
201 + lat=lat,
202 + lng=lng,
218 203 ))
219 204 return out
205 +
206 + def _fetch_property(self, url: str) -> dict:
207 + """Scrape la fiche propriété : galerie, commodités, description,
208 + et une ligne par type d'unité disponible (« Vos options »)."""
209 + out: dict = {"desc": "", "amenities": [], "images": [], "rows": []}
210 + try:
211 + page = self.get(url).text
212 + except Exception:
213 + return out
214 + soup = BeautifulSoup(page, "html.parser")
215 +
216 + # galerie photos (héro + blocs JSON de la page)
217 + images: list[str] = []
218 + for u in _IMG_RE.findall(page):
219 + if _SKIP_IMG.search(u):
220 + continue
221 + if u not in images:
222 + images.append(u)
223 + out["images"] = images[: self.max_images]
224 +
225 + # commodités (listes à icônes)
226 + amenities: list[str] = []
227 + seen = set()
228 + for li in soup.select("li"):
229 + if not li.find("div", class_="icon"):
230 + continue
231 + t = li.get_text(" ", strip=True)
232 + if t and len(t) < 60 and t not in seen:
233 + seen.add(t)
234 + amenities.append(t)
235 + out["amenities"] = amenities[:25]
236 +
237 + # description (« Caractéristiques de l'immeuble »)
238 + h = soup.find(["h2", "h3"], string=re.compile(
239 + "Caractéristiques de l['’]immeuble"))
240 + if h:
241 + nxt = h.find_next(["p", "div"])
242 + if nxt:
243 + out["desc"] = nxt.get_text(" ", strip=True)[:600]
244 +
245 + # types d'unités disponibles
246 + for li in soup.select("li.property-options-list-item"):
247 + avail_el = li.select_one(
248 + ".property-options-list-item-availability")
249 + price_el = li.select_one(
250 + ".property-options-list-item-price")
251 + details = [d.get_text(" ", strip=True)
252 + for d in li.select(".property-options-item")]
253 + unit_raw = details[0] if details else ""
254 + sqft = details[1] if len(details) > 1 else ""
255 + if li.get("data-available") == "false":
256 + continue
257 + out["rows"].append({
258 + "unit_raw": unit_raw,
259 + "sqft": sqft,
260 + "price": price_el.get_text(" ", strip=True)
261 + if price_el else "",
262 + "avail": avail_el.get_text(" ", strip=True)
263 + if avail_el else "",
264 + })
265 + return out
modified louka/connectors/cogir.py +83 −16
@@ -13,12 +13,26 @@
13 13 from __future__ import annotations
14 14
15 15 import re
16 +from urllib.parse import unquote
16 17
17 18 from bs4 import BeautifulSoup
18 19
19 20 from ..schema import Listing, infer_city, normalize_unit_type, parse_price
20 21 from .base import BaseConnector
21 22
23 +
24 +def _dedup_address(raw: str) -> str:
25 + """Retire les segments dupliqués des adresses Cogir
26 + (« 1769 Rue Careau, Québec, QC, Québec, Québec G1M 0E6 »)."""
27 + parts, seen = [], set()
28 + for seg in (s.strip() for s in (raw or "").split(",")):
29 + key = seg.lower()
30 + if not seg or key in seen:
31 + continue
32 + seen.add(key)
33 + parts.append(seg)
34 + return ", ".join(parts)
35 +
22 36 BASE = "https://www.cogir.net"
23 37 LIST_URL = f"{BASE}/gestion-immeubles-residentiels.html"
24 38
@@ -124,13 +138,20 @@ class CogirConnector(BaseConnector):
124 138 address = addr_el.get_text(" ", strip=True)
125 139 address = re.sub(r"Coordonnées complètes.*|Visite virtuelle.*",
126 140 "", address).strip(" »")
141 + address = _dedup_address(address)
127 142
128 # description
143 + # description (+ éventuelle section « Promotion » en tête)
129 144 desc = ""
130 145 d_h2 = soup.find("h2", string=re.compile("Description", re.I))
131 146 if d_h2 and d_h2.find_parent():
132 147 desc = d_h2.find_parent().get_text(" ", strip=True)
133 148 desc = re.sub(r"^Description\s*", "", desc)[:600]
149 + p_h2 = soup.find("h2", string=re.compile(r"^\s*Promotion", re.I))
150 + if p_h2 and p_h2.find_parent():
151 + promo = p_h2.find_parent().get_text(" ", strip=True)
152 + promo = re.sub(r"^Promotion\s*", "", promo).strip()[:200]
153 + if promo:
154 + desc = f"Promotion : {promo}. {desc}".strip()[:700]
134 155
135 156 # exclusion aînés / étudiantes / commercial
136 157 if _EXCLUDE_RE.search(name) or _EXCLUDE_RE.search(desc[:200]):
@@ -157,6 +178,22 @@ class CogirConnector(BaseConnector):
157 178 images.append(absu)
158 179 images = images[: self.max_images]
159 180
181 + # contact de l'immeuble (liens tel:/mailto:, hors pied de page
182 + # corporatif info@cogir.net / 1-866-671-6381)
183 + contact: dict = {}
184 + for a in soup.select('a[href^="tel:"]'):
185 + digits = re.sub(r"\D", "", a.get("href", ""))[-10:]
186 + if len(digits) == 10 and not digits.startswith("866"):
187 + contact["phone"] = (f"{digits[:3]}-{digits[3:6]}-"
188 + f"{digits[6:]}")
189 + break
190 + for a in soup.select('a[href^="mailto:"]'):
191 + email = unquote(a["href"].removeprefix("mailto:")).strip()
192 + if email and email.lower() != "info@cogir.net":
193 + contact["email"] = email
194 + break
195 + details_extra = {"contact": contact} if contact else {}
196 +
160 197 if b["slug"] in _GM_SLUGS:
161 198 sector, city = _GM_SLUGS[b["slug"]]
162 199 else:
@@ -171,31 +208,59 @@ class CogirConnector(BaseConnector):
171 208 url = f"{BASE}/{b['path']}"
172 209
173 210 # 2) Une annonce par modèle du tableau « Modèles disponibles »
211 + # (#tableModele : colType / colModele / colPrix). Les modèles
212 + # marqués « Pas disponible » ou « Liste d'attente » sont exclus.
174 213 rows = []
175 for tr in soup.select("table tr"):
214 + table = soup.select_one("table#tableModele") or soup.find("table")
215 + for tr in table.select("tbody tr") if table else []:
216 + typ_el = tr.select_one("td.colType")
217 + mod_el = tr.select_one("td.colModele")
218 + prix_el = tr.select_one("td.colPrix")
176 219 tds = tr.select("td")
177 if not tds:
220 + typ = (typ_el.get_text(" ", strip=True) if typ_el
221 + else (tds[0].get_text(" ", strip=True) if tds else ""))
222 + modele = mod_el.get_text(" ", strip=True) if mod_el else ""
223 + # certains immeubles mettent « À partir de » dans colModele
224 + if re.fullmatch(r"à partir de\s*", modele, re.I):
225 + modele = ""
226 + if prix_el is not None:
227 + price_txt = prix_el.get_text(" ", strip=True)
228 + else:
229 + price_txt = next((td.get_text(" ", strip=True)
230 + for td in tds[1:]
231 + if "$" in td.get_text()), "")
232 + if not typ or not re.match(
233 + r"^\d\s*1/2|^\d\s*½|^Studio|^Loft|^Penthouse",
234 + typ, re.I):
178 235 continue
179 typ = tds[0].get_text(" ", strip=True)
180 price_txt = ""
181 for td in tds[1:]:
182 t = td.get_text(" ", strip=True)
183 if "$" in t:
184 price_txt = t
185 break
186 if typ and (re.match(r"^\d\s*1/2|^\d\s*½|^Studio|^Loft", typ,
187 re.I)):
188 rows.append((typ, price_txt))
236 + if re.search(r"pas disponible|liste d'attente", price_txt,
237 + re.I):
238 + continue # modèle affiché mais non offert
239 + price_txt = re.sub(r"à partir de", "", price_txt, flags=re.I)
240 + rows.append((typ, modele, price_txt.strip()))
189 241
190 242 if rows:
191 for typ, price_txt in rows:
243 + seen_ext: set[str] = set()
244 + for typ, modele, price_txt in rows:
192 245 ut = normalize_unit_type(typ)
193 246 ext = f"{b['id']}-{re.sub(r'[^a-z0-9]+', '', ut.lower()) or 'u'}"
247 + if ext in seen_ext:
248 + # 2e modèle du même type (ex. « 3 1/2 + den ») :
249 + # suffixe du nom de modèle pour un uid unique
250 + suffix = re.sub(r"[^a-z0-9]+", "-",
251 + modele.lower()).strip("-")
252 + ext = f"{ext}-{suffix or len(seen_ext)}"
253 + if ext in seen_ext:
254 + continue
255 + seen_ext.add(ext)
256 + label = (f"{ut} ({modele})"
257 + if modele and modele.lower() != typ.lower()
258 + else ut)
194 259 listings.append(Listing(
195 260 source=self.source_id,
196 261 external_id=ext,
197 262 url=url,
198 title=f"{name}{ut}",
263 + title=f"{name}{label}",
199 264 address=address,
200 265 sector=sector,
201 266 city=city,
@@ -203,9 +268,10 @@ class CogirConnector(BaseConnector):
203 268 price=parse_price(price_txt),
204 269 price_label=(f"À partir de {price_txt}"
205 270 if price_txt else ""),
206 availability="",
271 + availability="Disponible" if price_txt else "",
207 272 description=desc,
208 273 amenities=amenities,
274 + details=dict(details_extra),
209 275 images=images,
210 276 ))
211 277 else:
@@ -223,6 +289,7 @@ class CogirConnector(BaseConnector):
223 289 availability="",
224 290 description=desc,
225 291 amenities=amenities,
292 + details=dict(details_extra),
226 293 images=images,
227 294 ))
228 295
modified louka/connectors/contraste.py +58 −2
@@ -25,6 +25,13 @@ ALLOWED_CITIES = {"quebec", "québec", "levis", "lévis"}
25 25 ADDR_RE = re.compile(
26 26 r"\d{1,5}[^,<>]{2,60},\s*[^,<>]{2,40},\s*Qu[ée]bec(?:,\s*[A-Z]\d[A-Z]\s?\d[A-Z]\d)?"
27 27 )
28 +# Adresse courte des pages « projet » (ex. « 2784 ave Sasseville ») : un
29 +# titre Elementor qui commence par un numéro civique + type de voie.
30 +ADDR_SHORT_RE = re.compile(
31 + r"^\d{1,5}\s+(?:rue|av(?:e|enue)?\.?|boul(?:evard)?\.?|ch(?:emin)?\.?|"
32 + r"all[ée]e|place|c[ôo]te|montée|route)\b.{2,50}$", re.I)
33 +PHONE_RE = re.compile(r"\(?\b([2-9]\d{2})\)?[\s.\-]?(\d{3})[\s.\-](\d{4})\b")
34 +EMAIL_RE = re.compile(r"\b[\w.+-]+@[\w-]+\.[\w.]+\b")
28 35
29 36
30 37 class ContrasteConnector(BaseConnector):
@@ -72,8 +79,10 @@ class ContrasteConnector(BaseConnector):
72 79
73 80 # Adresse civique de l'immeuble (bloc Elementor)
74 81 address = sector = ""
75 for el in bsoup.select(".elementor-heading-title"):
76 m = ADDR_RE.search(el.get_text(" ", strip=True))
82 + headings = [el.get_text(" ", strip=True)
83 + for el in bsoup.select(".elementor-heading-title")]
84 + for h in headings:
85 + m = ADDR_RE.search(h)
77 86 if m:
78 87 address = m.group(0).strip()
79 88 break
@@ -81,6 +90,13 @@ class ContrasteConnector(BaseConnector):
81 90 m = ADDR_RE.search(html)
82 91 if m:
83 92 address = m.group(0).strip()
93 + if not address:
94 + # Pages « projet » (Ellipse, Émergence II…) : adresse courte
95 + # sans ville dans le hero.
96 + for h in headings:
97 + if ADDR_SHORT_RE.match(h):
98 + address = h.strip()
99 + break
84 100 if address:
85 101 parts = [p.strip() for p in address.split(",")]
86 102 if len(parts) >= 2:
@@ -93,6 +109,23 @@ class ContrasteConnector(BaseConnector):
93 109 if og and og.get("content"):
94 110 desc = og["content"].strip()[:600]
95 111
112 + # CARACTÉRISTIQUES de l'immeuble (répéteur JetEngine) :
113 + # inclusions, animaux, stationnement… — texte source fidèle.
114 + bldg_amenities = [el.get_text(" ", strip=True) for el in bsoup.select(
115 + ".jet-listing-dynamic-repeater__item span")]
116 + bldg_amenities = [a for a in dict.fromkeys(bldg_amenities) if a][:25]
117 +
118 + # Contact « Pour prendre rendez-vous » (pages projet)
119 + contact: dict = {}
120 + for h in headings:
121 + m = EMAIL_RE.search(h)
122 + if m and not contact.get("email"):
123 + contact["email"] = m.group(0)
124 + m = PHONE_RE.search(h)
125 + if m and not contact.get("phone"):
126 + contact["phone"] = f"{m.group(1)}-{m.group(2)}-{m.group(3)}"
127 + details = {"contact": contact} if contact else {}
128 +
96 129 for unit in bsoup.select("div.building-stack-unit"):
97 130 try:
98 131 pid = unit.get("data-pid") or ""
@@ -119,7 +152,27 @@ class ContrasteConnector(BaseConnector):
119 152 avail_el = unit.select_one(".building-stack-available-soon")
120 153 availability = (avail_el.get_text(" ", strip=True)
121 154 if avail_el else "Disponible")
155 + # data-price="0" = prix non affiché sur la carte
156 + if price_raw in ("", "0"):
157 + price_raw = ""
122 158 price_label = f"{price_raw}$/mois" if price_raw else ""
159 +
160 + # data-size est toujours « 0 » chez Contraste (non rempli) ;
161 + # on ne le prend que s'il devient plausible un jour.
162 + area = None
163 + try:
164 + size = float(unit.get("data-size") or 0)
165 + if 80 <= size <= 20000:
166 + area = size
167 + except (TypeError, ValueError):
168 + pass
169 +
170 + # Type de bâtiment (ex. « Maison de ville ») exposé en data-*
171 + amenities = list(bldg_amenities)
172 + housing = (unit.get("data-housing-type") or "").strip()
173 + if housing:
174 + amenities.append(housing)
175 +
123 176 listings.append(Listing(
124 177 source=self.source_id,
125 178 external_id=f"{slug}-{pid}",
@@ -132,7 +185,10 @@ class ContrasteConnector(BaseConnector):
132 185 price=parse_price(price_label),
133 186 price_label=price_label,
134 187 availability=availability,
188 + area_sqft=area,
135 189 description=desc,
190 + amenities=amenities,
191 + details=dict(details),
136 192 images=images,
137 193 ))
138 194 except Exception:
modified louka/connectors/copley.py +107 −14
@@ -10,6 +10,7 @@
10 10 # -----------------------------------------------------------------------------
11 11 from __future__ import annotations
12 12
13 +import hashlib
13 14 import re
14 15
15 16 from bs4 import BeautifulSoup
@@ -78,25 +79,81 @@ class CopleyConnector(BaseConnector):
78 79 if new == 0 and page_no > 1:
79 80 break
80 81
81 # 2) Fiches détaillées : toutes les photos + description
82 + # 2) Fiches détaillées (avec cache BD) : photos, description,
83 + # commodités, disponibilité, chauffage/climatisation/stationnement
82 84 for i, lst in enumerate(listings.values()):
83 85 if i >= self.max_details:
84 86 break
87 + key = hashlib.sha1("|".join([
88 + lst.price_label, lst.availability, lst.unit_type,
89 + str(lst.area_sqft),
90 + ]).encode("utf-8")).hexdigest()
85 91 try:
86 detail = self.get(lst.url).text
92 + payload = self.detail(lst.external_id, key,
93 + lambda u=lst.url: self._fetch_detail(u))
87 94 except Exception:
88 95 continue
89 imgs = [u for u in dict.fromkeys(IMG_RE.findall(detail))
90 if "-p-" not in u # variantes responsive
91 and not re.search(r"logo|icon|favicon|comingsoon", u, re.I)]
92 lst.images = imgs[:30]
93 dsoup = BeautifulSoup(detail, "html.parser")
94 rich = dsoup.select_one(".w-richtext")
95 if rich:
96 lst.description = rich.get_text(" ", strip=True)[:600]
96 + if payload.get("images"):
97 + lst.images = payload["images"]
98 + if payload.get("description"):
99 + lst.description = payload["description"]
100 + if payload.get("amenities"):
101 + lst.amenities = list(dict.fromkeys(
102 + lst.amenities + payload["amenities"]))
103 + if payload.get("availability"):
104 + lst.availability = payload["availability"]
105 + if payload.get("details"):
106 + lst.details = payload["details"]
97 107
98 108 return list(listings.values())
99 109
110 + # -- fiche détaillée ---------------------------------------------------------
111 + def _fetch_detail(self, url: str) -> dict:
112 + detail = self.get(url).text
113 + payload: dict = {}
114 + imgs = [u for u in dict.fromkeys(IMG_RE.findall(detail))
115 + if "-p-" not in u # variantes responsive
116 + and not re.search(r"logo|icon|favicon|comingsoon", u, re.I)]
117 + payload["images"] = imgs[:30]
118 + dsoup = BeautifulSoup(detail, "html.parser")
119 + rich = dsoup.select_one(".property-header_description, .w-richtext")
120 + if rich:
121 + payload["description"] = rich.get_text(" ", strip=True)[:600]
122 +
123 + # Commodités : liste d'icônes (Laundry, Balcony, Pool, Gym…) +
124 + # caractéristiques principales (Heating/Cooling/Parking/Backyard)
125 + amenities = [d.get_text(" ", strip=True)
126 + for d in dsoup.select(".property-header_features-item")]
127 + details: dict = {}
128 + for item in dsoup.select(".main-features_item"):
129 + lab_el = item.select_one(".text-weight-medium")
130 + val_el = item.select_one(".text-color-grey50")
131 + lab = lab_el.get_text(" ", strip=True) if lab_el else ""
132 + val = val_el.get_text(" ", strip=True) if val_el else ""
133 + if not lab:
134 + continue
135 + amenities.append(f"{lab}: {val}" if val else lab)
136 + low = lab.lower()
137 + if low == "cooling" and val and val.lower() not in ("no", "none"):
138 + details["ac"] = True # « Central Air » etc. (structuré)
139 + elif low == "parking":
140 + details["parking"] = {"available": True}
141 + payload["amenities"] = list(dict.fromkeys(a for a in amenities if a))[:25]
142 + if details:
143 + payload["details"] = details
144 +
145 + # Disponibilité : fil d'Ariane — la variante avec date (« Available
146 + # Jun 2026 ») est prioritaire sur le simple « Available ».
147 + bc = dsoup.select_one(".property-header_breadcrumb")
148 + if bc:
149 + tags = [t.get_text(" ", strip=True)
150 + for t in bc.select(".property_availability-tag")]
151 + tags = [t for t in tags if t]
152 + dated = next((t for t in tags
153 + if re.search(r"available\s+\S", t, re.I)), "")
154 + payload["availability"] = dated or (tags[0] if tags else "")
155 + return payload
156 +
100 157 # -- parsing d'une carte ---------------------------------------------------
101 158 def _parse_card(self, it) -> Listing | None:
102 159 link = it.select_one("a.property_item-link")
@@ -124,8 +181,33 @@ class CopleyConnector(BaseConnector):
124 181 return None
125 182 title = (fields.get("title") or [""])[0]
126 183 bedrooms = (fields.get("bedrooms") or [""])[0]
184 + bathrooms = (fields.get("bathrooms") or [""])[0]
127 185 available = (fields.get("available") or [""])[0].strip().lower()
128 186
187 + # Superficie : bloc « 1573 sqft » (structuré, sans fs-cmsfilter-field)
188 + area = None
189 + for md in it.select(".property_meta-details"):
190 + t = md.get_text(" ", strip=True)
191 + m2 = re.match(r"^([\d,]+)\s*sqft$", t, re.I)
192 + if m2:
193 + try:
194 + val = float(m2.group(1).replace(",", ""))
195 + if 80 <= val <= 20000:
196 + area = val
197 + except ValueError:
198 + pass
199 + break
200 +
201 + # Coordonnées embarquées pour le JS de la carte
202 + lat = lng = None
203 + lat_el = it.select_one(".data---latitude")
204 + lng_el = it.select_one(".data---longitude")
205 + try:
206 + lat = float(lat_el.get_text(strip=True)) if lat_el else None
207 + lng = float(lng_el.get_text(strip=True)) if lng_el else None
208 + except (TypeError, ValueError):
209 + lat = lng = None
210 +
129 211 price = None
130 212 price_label = ""
131 213 price_el = it.select_one(".property_item-price-text")
@@ -150,19 +232,30 @@ class CopleyConnector(BaseConnector):
150 232 img = it.select_one("img.property_image")
151 233 images = [img["src"]] if img and img.get("src") else []
152 234
235 + # Bandeau de la carte (« Available ») — la fiche précisera la date
236 + avail_el = it.select_one("a > .text-block")
237 + availability = (avail_el.get_text(" ", strip=True) if avail_el
238 + else ("Disponible" if available == "true" else ""))
239 +
240 + amenities = []
241 + if bathrooms:
242 + amenities.append(f"{bathrooms} salle(s) de bain")
243 +
153 244 return Listing(
154 245 source=self.source_id,
155 246 external_id=slug,
156 247 url=f"{BASE}/properties/{slug}",
157 248 title=title or slug.replace("-", " ").title(),
158 address=title,
249 + address=f"{title}, {city}, QC" if title else "",
159 250 sector=sector,
160 251 city=city,
161 252 unit_type=_bedrooms_to_type(bedrooms),
162 253 price=price,
163 254 price_label=price_label,
164 # le champ « available » du CMS n'est pas fiable au niveau carte
165 availability="Disponible" if available == "true" else "",
166 amenities=[],
255 + availability=availability,
256 + area_sqft=area,
257 + amenities=amenities,
167 258 images=images,
259 + lat=lat,
260 + lng=lng,
168 261 )
modified louka/connectors/cromwell.py +81 −23
@@ -10,6 +10,7 @@
10 10 # -----------------------------------------------------------------------------
11 11 from __future__ import annotations
12 12
13 +import hashlib
13 14 import re
14 15
15 16 from bs4 import BeautifulSoup
@@ -92,38 +93,95 @@ class CromwellConnector(BaseConnector):
92 93 break
93 94 url = nxt["href"]
94 95
95 # 2) Fiches détaillées : photos, description, statut, type exact
96 + # 2) Fiches détaillées (avec cache BD) : photos, description, statut,
97 + # type exact, caractéristiques complètes, secteur
96 98 for i, lst in enumerate(listings.values()):
97 99 if i >= self.max_details:
98 100 break
101 + key = hashlib.sha1("|".join([
102 + lst.title, lst.price_label, lst.address,
103 + ";".join(lst.amenities),
104 + ]).encode("utf-8")).hexdigest()
99 105 try:
100 detail = self.get(lst.url).text
106 + payload = self.detail(lst.external_id, key,
107 + lambda u=lst.url: self._fetch_detail(u))
101 108 except Exception:
102 109 continue
103 imgs = [u for u in dict.fromkeys(IMG_RE.findall(detail))
104 if not re.search(r"logo|favicon|icon|-\d+x\d+\.", u, re.I)]
105 if imgs:
106 lst.images = imgs[:30]
107 dsoup = BeautifulSoup(detail, "html.parser")
108 og = dsoup.find("meta", attrs={"property": "og:description"})
109 desc_el = dsoup.select_one("#property-description-wrap .block-content-wrap")
110 if desc_el:
111 lst.description = desc_el.get_text(" ", strip=True)[:600]
112 elif og and og.get("content"):
113 lst.description = og["content"].strip()[:600]
114 labels = [a.get_text(" ", strip=True)
115 for a in dsoup.select(".property-labels-wrap a")]
116 labels = list(dict.fromkeys(l for l in labels if l))
117 if labels:
118 lst.availability = ", ".join(labels)[:120].title()
119 # type exact (« 1 Bedroom (3 1/2) ») dans le bloc Détails
120 for li in dsoup.select(".detail-wrap li"):
121 txt = li.get_text(" ", strip=True)
122 if txt.lower().startswith("property type"):
123 lst.unit_type = _unit_type(txt, "") or lst.unit_type
110 + if payload.get("images"):
111 + lst.images = payload["images"]
112 + if payload.get("description"):
113 + lst.description = payload["description"]
114 + if payload.get("availability"):
115 + lst.availability = payload["availability"]
116 + if payload.get("unit_type"):
117 + lst.unit_type = payload["unit_type"]
118 + if payload.get("amenities"):
119 + lst.amenities = list(dict.fromkeys(
120 + lst.amenities + payload["amenities"]))
121 + if payload.get("sector") and not lst.sector:
122 + lst.sector = payload["sector"]
124 123
125 124 return list(listings.values())
126 125
126 + # -- fiche détaillée (thème Houzez) ------------------------------------------
127 + def _fetch_detail(self, url: str) -> dict:
128 + detail = self.get(url).text
129 + payload: dict = {}
130 + imgs = [u for u in dict.fromkeys(IMG_RE.findall(detail))
131 + if not re.search(r"logo|favicon|icon|-\d+x\d+\.", u, re.I)]
132 + if imgs:
133 + payload["images"] = imgs[:30]
134 + dsoup = BeautifulSoup(detail, "html.parser")
135 + og = dsoup.find("meta", attrs={"property": "og:description"})
136 + desc_el = dsoup.select_one("#property-description-wrap .block-content-wrap")
137 + if desc_el:
138 + payload["description"] = desc_el.get_text(" ", strip=True)[:600]
139 + elif og and og.get("content"):
140 + payload["description"] = og["content"].strip()[:600]
141 + labels = [a.get_text(" ", strip=True)
142 + for a in dsoup.select(".property-labels-wrap a")]
143 + labels = list(dict.fromkeys(l for l in labels if l))
144 + if labels:
145 + payload["availability"] = ", ".join(labels)[:120].title()
146 +
147 + # Bloc Détails : type exact (« 1 Bedroom (3 1/2) »), salles de bain,
148 + # statut (repli si aucune étiquette)
149 + for li in dsoup.select(".detail-wrap li"):
150 + txt = li.get_text(" ", strip=True)
151 + low = txt.lower()
152 + if low.startswith("property type"):
153 + ut = _unit_type(txt, "")
154 + if ut:
155 + payload["unit_type"] = ut
156 + elif low.startswith("bathroom"):
157 + m = re.search(r"[\d.]+", txt)
158 + if m:
159 + payload.setdefault("amenities", []).append(
160 + f"{m.group(0)} Bathroom(s)")
161 + elif low.startswith("property status") and not labels:
162 + status = txt.split(None, 2)[-1] if len(txt.split()) > 2 else ""
163 + if status:
164 + payload["availability"] = status.title()
165 +
166 + # Caractéristiques complètes (Features : Elevator, Heating, Hot
167 + # Water, Laundry Room, Parking…) — plus riches que la carte liste
168 + feats = [li.get_text(" ", strip=True)
169 + for li in dsoup.select(".property-features-wrap li")]
170 + feats = [f for f in dict.fromkeys(feats) if f][:25]
171 + if feats:
172 + payload["amenities"] = payload.get("amenities", []) + feats
173 +
174 + # Bloc Adresse : « City/ Ville: Montreal, Plateau Mont-Royal »
175 + for li in dsoup.select(".property-address-wrap li"):
176 + txt = li.get_text(" ", strip=True)
177 + m = re.match(r"(?:City|Ville)[^:]*:\s*(.+)$", txt, re.I)
178 + if m:
179 + parts = [p.strip() for p in m.group(1).split(",")]
180 + if len(parts) >= 2 and parts[1]:
181 + payload["sector"] = parts[1]
182 + break
183 + return payload
184 +
127 185 # -- parsing d'une carte ---------------------------------------------------
128 186 def _parse_card(self, it) -> Listing | None:
129 187 a = it.select_one('a[href*="/property/"]')
modified louka/connectors/denux.py +46 −6
@@ -119,8 +119,28 @@ class DenuxConnector(BaseConnector):
119 119 if sector.lower() in ("", city.lower(), "montreal", "montréal"):
120 120 sector = ""
121 121
122 details = b.get("details") or {}
123 description = _clean(details.get("overview") or "")[:600]
122 + bdetails = b.get("details") or {}
123 + description = _clean(bdetails.get("overview") or "")[:600]
124 +
125 + # Champs structurés de l'API Lift System (jamais devinés du texte)
126 + pets = None
127 + if isinstance(b.get("pet_friendly"), bool):
128 + pets = "oui" if b["pet_friendly"] else "non"
129 + details: dict = {}
130 + contact = b.get("contact") or {}
131 + cinfo = {}
132 + if _clean(contact.get("phone") or ""):
133 + cinfo["phone"] = _clean(contact["phone"])
134 + if _clean(contact.get("email") or ""):
135 + cinfo["email"] = _clean(contact["email"])
136 + if cinfo:
137 + details["contact"] = cinfo
138 + parking = b.get("parking") or {}
139 + if parking.get("indoor") or parking.get("outdoor"):
140 + details["parking"] = {
141 + "available": True,
142 + "type": "intérieur" if parking.get("indoor") else "extérieur",
143 + }
124 144
125 145 geo = b.get("geocode") or {}
126 146 try:
@@ -148,20 +168,31 @@ class DenuxConnector(BaseConnector):
148 168
149 169 # Détails par suite (ul.suite-info) indexés par data-suite-id
150 170 info_by_id: dict[str, dict[str, str]] = {}
171 + photos_by_id: dict[str, list[str]] = {}
151 172 for ul in soup.select("ul.suite-info[data-suite-id]"):
173 + sid = ul.get("data-suite-id") or ""
152 174 fields: dict[str, str] = {}
153 175 for li in ul.select("li.info-block"):
154 176 lab = li.select_one(".label")
155 177 val = li.select_one(".info")
156 178 if not (lab and val):
157 179 continue
180 + label = lab.get_text(strip=True).lower()
181 + # Photos propres à la suite (liens « View » de la galerie)
182 + if "photo" in label:
183 + urls = [a.get("href") or "" for a in val.select("a")]
184 + urls = [u for u in dict.fromkeys(urls)
185 + if u.startswith("http")]
186 + if urls:
187 + photos_by_id[sid] = urls[:25]
188 + continue
158 189 # Le champ « Availability » contient un lien + un modal de
159 190 # formulaire : ne garder que le libellé du lien.
160 191 link = val.select_one("a.open-suite-modal")
161 192 text = (link.get_text(" ", strip=True) if link
162 193 else val.get_text(" ", strip=True))
163 fields[lab.get_text(strip=True).lower()] = text[:80].strip()
164 info_by_id[ul.get("data-suite-id") or ""] = fields
194 + fields[label] = text[:80].strip()
195 + info_by_id[sid] = fields
165 196
166 197 results: list[Listing] = []
167 198 for div in soup.select("div.suite[data-suite-id]"):
@@ -213,6 +244,12 @@ class DenuxConnector(BaseConnector):
213 244 availability = info.get("availability", "") or \
214 245 _clean(b.get("availability_status_label") or "")
215 246
247 + # Commodités de l'immeuble + salles de bain de la suite
248 + suite_amenities = list(amenities)
249 + baths = (info.get("bathrooms") or "").strip()
250 + if baths and re.match(r"^[\d.]+$", baths):
251 + suite_amenities.append(f"{baths} salle(s) de bain")
252 +
216 253 results.append(Listing(
217 254 source=self.source_id,
218 255 external_id=str(sid),
@@ -225,9 +262,12 @@ class DenuxConnector(BaseConnector):
225 262 price=price,
226 263 price_label=price_label,
227 264 availability=availability,
265 + pets=pets,
228 266 description=description,
229 amenities=amenities,
230 images=images,
267 + amenities=suite_amenities,
268 + details={k: dict(v) if isinstance(v, dict) else v
269 + for k, v in details.items()},
270 + images=photos_by_id.get(sid) or images,
231 271 lat=lat,
232 272 lng=lng,
233 273 ))
modified louka/connectors/devimco.py +75 −4
@@ -12,10 +12,12 @@
12 12 # -----------------------------------------------------------------------------
13 13 from __future__ import annotations
14 14
15 +import html as htmllib
15 16 import re
16 17 import time
18 +import urllib.parse
17 19
18 from ..schema import Listing
20 +from ..schema import Listing, normalize_unit_type
19 21 from .base import BaseConnector
20 22
21 23 BASE = "https://devimco.com"
@@ -47,6 +49,40 @@ def _unit_type(bedrooms: str) -> str:
47 49 return "Studio" if n == 0 else f"{n + 2}½"
48 50
49 51
52 +# Jetons de la liste `inclusions` de l'API Planpoint -> details canoniques.
53 +# Champ structuré côté source (liste séparée par des virgules), donc mappé
54 +# explicitement ; un jeton absent = inconnu (jamais False).
55 +_INCLUSION_TOKENS = {
56 + "heating": ("inclusions", "heating"),
57 + "electricity": ("inclusions", "electricity"),
58 + "hot water": ("inclusions", "hot_water"),
59 + "internet": ("inclusions", "internet"),
60 + "cable": ("inclusions", "cable"),
61 + "stove": ("appliances", "stove"),
62 + "refrigerator": ("appliances", "fridge"),
63 + "fridge": ("appliances", "fridge"),
64 + "dishwasher": ("appliances", "dishwasher"),
65 + "air conditioning": (None, "ac"),
66 + "balcony": (None, "balcony"),
67 +}
68 +
69 +
70 +def _details_from_inclusions(tokens: list[str]) -> dict:
71 + """« internet, electricity, heating, stove, refrigerator… » -> details."""
72 + details: dict = {}
73 + lows = [t.lower() for t in tokens]
74 + for tok in lows:
75 + for key, (group, name) in _INCLUSION_TOKENS.items():
76 + if key in tok:
77 + if group:
78 + details.setdefault(group, {})[name] = True
79 + else:
80 + details[name] = True
81 + if "washer" in " ".join(lows) and "dryer" in " ".join(lows):
82 + details.setdefault("appliances", {})["washer_dryer"] = True
83 + return details
84 +
85 +
50 86 class DevimcoConnector(BaseConnector):
51 87 source_id = "devimco"
52 88 request_delay = 0.6
@@ -103,10 +139,21 @@ class DevimcoConnector(BaseConnector):
103 139 PLANPOINT_FIND,
104 140 {"namespace": m.group(1), "hostName": m.group(2)})]
105 141
142 + # Adresse affichée sur la page Devimco (lien Google Maps) : repli
143 + # pour les phases dont l'API Planpoint n'a pas d'adresse
144 + # (ex. Maestria Tour B, Hexagone 2).
145 + page_address = ""
146 + m = re.search(r"google\.[a-z.]+/maps/search/\?[^\"']*query=([^\"'&]+)",
147 + html)
148 + if m:
149 + page_address = htmllib.unescape(
150 + urllib.parse.unquote(m.group(1))).strip()
151 +
106 152 city, sector = SECTORS.get(sector_slug, ("Montréal", sector_slug))
107 153 for project in projects:
108 154 try:
109 out.extend(self._parse_units(project, proj_url, city, sector))
155 + out.extend(self._parse_units(project, proj_url, city, sector,
156 + page_address))
110 157 except Exception:
111 158 continue
112 159 return out
@@ -121,11 +168,14 @@ class DevimcoConnector(BaseConnector):
121 168 return resp.json() or {}
122 169
123 170 def _parse_units(self, project: dict, proj_url: str,
124 city: str, sector: str) -> list[Listing]:
171 + city: str, sector: str,
172 + page_address: str = "") -> list[Listing]:
125 173 out: list[Listing] = []
126 174 namespace = project.get("namespace") or ""
127 175 name = project.get("name") or namespace
128 176 address = (project.get("address") or "").split(", Quebec")[0]
177 + if not address:
178 + address = page_address
129 179 lat, lng = project.get("lat"), project.get("lng") or project.get("lon")
130 180 for floor in project.get("floors") or []:
131 181 floor_name = floor.get("name") or ""
@@ -155,6 +205,24 @@ class DevimcoConnector(BaseConnector):
155 205 availability = "Disponible"
156 206 if u.get("deliveryDate"):
157 207 availability = f"Disponible : {u['deliveryDate']}"
208 +
209 + # Superficie structurée de l'API (sinon None)
210 + area = None
211 + try:
212 + if sqft and 80 <= float(sqft) <= 20000:
213 + area = float(sqft)
214 + except (TypeError, ValueError):
215 + pass
216 +
217 + # Meublé : booléen explicite de l'API
218 + furnished = (bool(u["furnished"])
219 + if isinstance(u.get("furnished"), bool)
220 + else None)
221 +
222 + # Type exact « 3.5 » de l'API, sinon via nb de chambres
223 + unit_type = (normalize_unit_type(str(u.get("type") or ""))
224 + or _unit_type(u.get("bedrooms") or ""))
225 +
158 226 out.append(Listing(
159 227 source=self.source_id,
160 228 external_id=u.get("_id") or f"{namespace}-{unit_name}",
@@ -163,14 +231,17 @@ class DevimcoConnector(BaseConnector):
163 231 address=address,
164 232 sector=sector,
165 233 city=city,
166 unit_type=_unit_type(u.get("bedrooms") or ""),
234 + unit_type=unit_type,
167 235 price=float(price)
168 236 if 100 <= float(price) <= 20000 else None,
169 237 price_label=f"{int(price)} $/mois",
170 238 availability=availability,
239 + area_sqft=area,
240 + furnished=furnished,
171 241 description=(f"Étage {floor_name} — "
172 242 f"{u.get('orientation') or ''}").strip(" —"),
173 243 amenities=list(dict.fromkeys(amenities)),
244 + details=_details_from_inclusions(inclusions),
174 245 images=list(dict.fromkeys(images)),
175 246 lat=float(lat) if lat else None,
176 247 lng=float(lng) if lng else None,
modified louka/normalize.py +31 −10
@@ -265,18 +265,20 @@ def parse_area_sqft(raw: str) -> float | None:
265 265
266 266 _AMENITY_RULES: dict[str, tuple[str, str | None]] = {
267 267 # inclusions
268 "heating": (r"chauffage|chauffe[e]? |heating|heat included", r"chauffage non inclus|sans chauffage"),
269 "electricity": (r"electricite|hydro inclus|electricity", r"electricite non incluse?"),
268 + "heating": (r"chauffage|chauffe[e]? |chauffe[e]?$|heating|heat included",
269 + r"chauffage non inclus|sans chauffage|non chauffe|pas chauffe"),
270 + "electricity": (r"electricite|hydro inclus|electricity|eclaire\b",
271 + r"electricite non incluse?|non eclaire"),
270 272 "hot_water": (r"eau chaude|hot water", r"eau chaude non incluse?"),
271 273 "internet": (r"internet|wi[- ]?fi", r"internet non inclus"),
272 274 "cable": (r"\bcable\b|television|telus|videotron|bell fibe", None),
273 275 # électroménagers
274 "fridge": (r"refrigerateur|\bfrigo\b|\bfridge\b|electromenagers?( inclus)?|appliances", None),
276 + "fridge": (r"refrigerateur|refrigerator|\bfrigo\b|\bfridge\b|electromenagers?( inclus)?|appliances", None),
275 277 "stove": (r"cuisiniere|\bstove\b|\bfour\b|plaques? de cuisson", None),
276 278 "dishwasher": (r"lave[- ]vaisselle|dishwasher", None),
277 279 "washer_dryer": (r"laveuse[- /]secheuse|laveuse et secheuse|washer|dryer", r"entrees? (?:de )?laveuse|entrees? laveuse[- /]secheuse|washer.{0,10}hookup"),
278 280 "washer_dryer_hookup": (r"entrees? (?:de )?laveuse|entrees? laveuse[- /]secheuse|sorties? laveuse|washer.{0,10}hookups?", None),
279 "ac": (r"climatis|air climatise|\ba/?c\b|air conditioning|thermopompe", None),
281 + "ac": (r"climatis|air climatise|\ba/?c\b|air conditioning|central air|cooling\s*:|thermopompe", None),
280 282 # immeuble
281 283 "elevator": (r"ascenseur|elevator", None),
282 284 "balcony": (r"balcon|terrasse|patio|loggia", None),
@@ -293,7 +295,11 @@ _PETS_YES_RE = re.compile(
293 295 _PETS_NO_RE = re.compile(
294 296 r"(?:pas d.?animaux|aucun animal|animaux (?:refuses|interdits|non admis|non acceptes|non autorises|non permis))|no pets?")
295 297 _PETS_COND_RE = re.compile(
296 r"animaux (?:sous conditions?|sur approbation)|petits? animaux|petits? chiens?|chats? (?:seulement|acceptes)\b|cats? only|avec restrictions")
298 + r"animaux (?:sous conditions?|sur approbation)|petits? animaux|petits? chiens?"
299 + r"|chats? (?:seulement|acceptes|autorises|admis)\b|cats? only|avec restrictions"
300 + r"|(?:animaux|chats?|chiens?|pets?)[^|.]{0,30}sous conditions?"
301 + r"|chiens?[^|.]{0,30}(?:pas|non|ne sont pas) (?:permis|admis|acceptes)"
302 + r"|no dogs?\b")
297 303 _SMOKING_NO_RE = re.compile(r"non[- ]fumeurs?|sans fumee|smoke[- ]free|no smoking|interdiction de fumer")
298 304 _SMOKING_YES_RE = re.compile(r"fumeurs? (?:accepte|permis|autorise)")
299 305
@@ -307,6 +313,15 @@ _EMAIL_RE = re.compile(r"\b[\w.+-]+@[\w-]+\.[\w.]+\b")
307 313
308 314 _FLOOR_RE = re.compile(r"(\d{1,2})\s*(?:e|er|eme|ieme|th|nd|rd|st)?\s*etage|etage\s*:?\s*(\d{1,2})|(\d{1,2})(?:e|er|eme)\s+et")
309 315
316 +# Segments à neutraliser avant le matching : options payantes (« sur demande »,
317 +# « en option », « en sus », « optionnel ») et fiches techniques (« Heating:
318 +# Forced Air » décrit le type de chauffage, pas son inclusion). Retirés du
319 +# texte, jamais interprétés. Bornés par « | » (séparateur d'items) ou « . ».
320 +_NEUTRAL_RE = re.compile(
321 + r"electromenagers?[^|.]{0,50}(?:sur demande|en option|selon|\$)[^|.]*"
322 + r"|[^|.]*(?:\boptionnel(?:le)?s?\b|en option|en sus|moyennant frais)[^|.]*"
323 + r"|heating\s*:[^|.]*")
324 +
310 325
311 326 def extract_details(amenities: list[str], description: str = "",
312 327 title: str = "") -> dict:
@@ -320,6 +335,7 @@ def extract_details(amenities: list[str], description: str = "",
320 335 desc = _key(description or "")
321 336 all_text = " | ".join(items + ([desc] if desc else []) +
322 337 ([_key(title)] if title else []))
338 + all_text = _NEUTRAL_RE.sub(" ", all_text)
323 339 if not all_text.strip(" |"):
324 340 return {}
325 341
@@ -368,12 +384,16 @@ def extract_details(amenities: list[str], description: str = "",
368 384 if "furnished_kw" in flags:
369 385 details["furnished"] = flags["furnished_kw"]
370 386
371 # stationnement
387 + # stationnement (« intérieur et extérieur » possible)
372 388 if flags.get("parking_kw"):
373 389 parking: dict = {"available": True}
374 if _PARKING_INT_RE.search(all_text):
390 + p_int = bool(_PARKING_INT_RE.search(all_text))
391 + p_ext = bool(_PARKING_EXT_RE.search(all_text))
392 + if p_int and p_ext:
393 + parking["type"] = "intérieur et extérieur"
394 + elif p_int:
375 395 parking["type"] = "intérieur"
376 elif _PARKING_EXT_RE.search(all_text):
396 + elif p_ext:
377 397 parking["type"] = "extérieur"
378 398 if _PARKING_INCL_RE.search(all_text):
379 399 parking["included"] = True
@@ -385,8 +405,9 @@ def extract_details(amenities: list[str], description: str = "",
385 405 parking["price"] = float(m.group(1))
386 406 details["parking"] = parking
387 407
388 # étage
389 m = _FLOOR_RE.search(all_text)
408 + # étage — depuis les items de commodités seulement : une description
409 + # longue peut mentionner « 3e étage » pour un immeuble multi-unités
410 + m = _FLOOR_RE.search(" | ".join(items))
390 411 if m:
391 412 floor = next((g for g in m.groups() if g), None)
392 413 if floor and 0 < int(floor) <= 60:
added reports/connectors/brio.md +43 −0
@@ -0,0 +1,43 @@
1 +# brio — Les Immeubles Brio (Le Brio, Val-Bélair)
2 +- site: https://immeublesbrio.com/appartements-a-louer-val-belair/ (+ page d'accueil)
3 +- méthode: html
4 +- annonces: 3 → 3
5 +- couverture après (sur 3 annonces): prix 100%, adresse 100%, dispo 100%, superficie 100%, commodités 100%
6 +- fixture: ok · test: ok
7 +
8 +## Champs extraits
9 +- title, unit_type, availability (« Disponible ») : hotspots Divi de la page appartements (`.hotspot-info` / `.hotspot-title`)
10 +- description (« Superficie: X pi2 ») : `<strong>` du `.hotspot-content` → area_sqft dérivée par finalize()
11 +- amenities : `<li>` de la carte unité (chambres, walk-in, salle de lavage…) + services de l'immeuble depuis les blurbs Divi de la page d'accueil (Wifi optionnel, chute à déchets, lave-auto, stationnement ext./int., ascenseur, espaces détente, caméra 24/7) — NOUVEAU
12 +- price / price_label : « 3½/4½/5½ à partir de X$ » sur la page d'accueil (prix par typologie, pas par unité)
13 +- address : adresse civique réelle « 1105, rue des Rigoles, Québec, QC G3K 0M7 » (page Contactez-nous, constante vérifiée) — remplace « boulevard Pie-XI, Val-Bélair » — NOUVEAU
14 +- details.contact : téléphone (en-tête) + courriel (lien `mailto:` de l'en-tête, page d'accueil) — NOUVEAU
15 +- images : plan de l'unité (vignette + plan pleine grandeur) + galerie de photos des pièces
16 +
17 +## Champs indisponibles à la source
18 +- Prix exact par unité (seulement « à partir de » par typologie)
19 +- Date précise de disponibilité (seulement statut Disponible/Loué)
20 +- Animaux, meublé, inclusions détaillées (chauffage/électricité/eau chaude), étage n'est pas indiqué explicitement (mais déductible du numéro d'appartement)
21 +
22 +## Fragilités
23 +- Thème Divi : sélecteurs `.hotspot-info`, `.et_pb_blurb .et_pb_module_header` — cassent si le thème change
24 +- Le statut est dans le texte du titre (« Disponible - Appartement N: X ½ ») avec des espaces/tirets incohérents (« Loué- », « Disponible- ») — la regex tolère déjà ces variantes
25 +- Prix par typologie : si la page d'accueil change de formulation « à partir de », les prix disparaissent
26 +- Lacune générique de normalisation (constatée ici) : « Wifi (optionnel) » est classé `inclusions.internet=true` — le mot « optionnel/en option » n'est pas traité comme négatif par extract_details ; de même « Stationnement extérieur et intérieur » ne retient que `type: intérieur`
27 +
28 +## Améliorations apportées
29 +- Adresse civique réelle (1105, rue des Rigoles, G3K 0M7) au lieu de la mention approximative du boulevard Pie-XI
30 +- Ajout des services de l'immeuble (blurbs de la page d'accueil) dans amenities → dérive elevator, parking, storage…
31 +- Ajout de details.contact {phone, email} extraits de l'en-tête du site (mailto: structuré)
32 +- Aucune modification des external_id (appartement-NNN stables)
33 +
34 +## Échantillon avant/après
35 +**Appartement 109 (5½)** — avant :
36 +`1850.0 | 5½ | Disponible | now | 1309.0 | pets=∅ | {"laundry": true, "storage": true, "price_from": true} | boulevard Pie-XI, Val-Bélair`
37 +après :
38 +`1850.0 | 5½ | Disponible | now | 1309.0 | pets=∅ | {"inclusions": {"internet": true}, "elevator": true, "laundry": true, "storage": true, "parking": {"available": true, "type": "intérieur"}, "price_from": true, "contact": {"email": "jerome.bern@hotmail.com", "phone": "418-928-7688"}} | 1105, rue des Rigoles, Québec, QC G3K 0M7`
39 +
40 +**Appartement 408 (3½)** — avant :
41 +`1500.0 | 3½ | Disponible | now | 830.0 | pets=∅ | {"laundry": true, "storage": true, "price_from": true} | boulevard Pie-XI, Val-Bélair`
42 +après :
43 +`1500.0 | 3½ | Disponible | now | 830.0 | pets=∅ | {"inclusions": {"internet": true}, "elevator": true, "laundry": true, "storage": true, "parking": {"available": true, "type": "intérieur"}, "price_from": true, "contact": {…}} | 1105, rue des Rigoles, Québec, QC G3K 0M7`
added reports/connectors/brivia_1sp.md +44 −0
@@ -0,0 +1,44 @@
1 +# brivia_1sp — 1 Square Phillips (Groupe Brivia)
2 +- site: https://www.1squarephillips.ca/locatif (+ /galerie + API AJAX /2022/php/ajax_load_plans_*.php)
3 +- méthode: html + json-api (POST AJAX des plans, phase=rental)
4 +- annonces: 3 → 3 (une par typologie, uid stables : 1sp-studio / 1sp-1-chambre / 1sp-2-chambres)
5 +- couverture après (sur 3 annonces): prix 100%, adresse 100%, dispo 100%, superficie 67% (studio : aucune unité dispo), commodités 100%
6 +- fixture: ok · test: ok (42 requêtes rejouées, POST inclus)
7 +
8 +## Champs extraits
9 +- title, unit_type, price/price_label (« à partir de X $/mois ») : cartes typologie `ul.grid3cols` de /locatif
10 +- availability : NOUVEAU — nombre réel d'unités disponibles (« 10 unités disponibles ») compté via l'API AJAX des plans (unités `onsale` de chaque étage, phase rental) ; texte générique conservé si aucune unité
11 +- area_sqft : NOUVEAU — superficie structurée (pi²) de la plus petite unité disponible de la typologie (cohérent avec le prix « à partir de »), lue dans `ajax_load_plans_unit.php`
12 +- description : intro « tout inclus » + NOUVEAU liste des unités disponibles avec superficie et balcon (ex. « unité 709 (637 pi² + balcon 97 pi²) »)
13 +- amenities : NOUVEAU — vraies caractéristiques de l'immeuble scrapées de la section `.features` (parc canin, débarcadère, hammam, piscine/sauna, salles cardio/musculation/yoga, cotravail, cinéma, stationnement souterrain…) + inclusions de l'intro ; l'ancienne liste codée en dur ne sert plus que de repli
14 +- details.contact : NOUVEAU — téléphone et courriel structurés (liens `tel:` / `mailto:` du pied de page)
15 +- address : NOUVEAU — code postal ajouté (1205, rue du Square-Phillips, Montréal, QC H3B 3C9)
16 +- images : perspectives + galerie + NOUVEAU plans PNG des unités disponibles
17 +
18 +## Champs indisponibles à la source
19 +- Prix par unité (uniquement « à partir de » par typologie)
20 +- Date de disponibilité par unité (statut disponible/loué seulement)
21 +- Politique animaux explicite (le « parc canin » suggère pet-friendly mais rien d'affirmé — non inventé), meublé, étage de chaque annonce (typologie multi-étages)
22 +
23 +## Fragilités
24 +- L'inventaire passe par des POST `ajax_load_*.php` non documentés (thème maison) : ~21 requêtes/sync (sélecteur + 20 étages) + 1 fiche par nouvelle unité (cache BD `self.detail`, clé fixe car les fiches plan sont immuables) — plafond 150 fiches
25 +- Le statut « onsale » est porté par une classe CSS dans du SVG (`class="unit onsale"`) — regex fragile si le générateur SVG change
26 +- Les 3 cartes typologie de /locatif restent la source des prix : si la mise en page `ul.grid3cols` change, les annonces disparaissent
27 +- La détection `onsale` est indépendante du paramètre `type` envoyé à l'API (vérifié) ; seule la légende en dépend
28 +
29 +## Améliorations apportées
30 +- Découverte et exploitation de l'API AJAX des plans (inventaire unité par unité) : disponibilités réelles comptées, superficies structurées, plans en images
31 +- Amenities réelles scrapées au lieu d'une liste codée en dur
32 +- Contact structuré (tel:/mailto:), adresse avec code postal
33 +- POST throttlé (`_post_json`) réutilisant la session (fixtures rejouables), cache BD des fiches unité
34 +
35 +## Échantillon avant/après
36 +**1 Chambre locatif** — avant :
37 +`2040.0 | 3½ | Disponible (tour locative en location) | now | area=∅ | pets=∅ | {"inclusions": {...}, "appliances": {"fridge": true}, "ac": true, "balcony": true, "pool": true, "gym": true, "parking": {...}, "price_from": true}`
38 +après :
39 +`2040.0 | 3½ | 10 unités disponibles | now | area=598.0 | pets=∅ | {"inclusions": {heating, electricity, hot_water, internet}, "appliances": {"fridge": true}, "ac": true, "elevator": true, "balcony": true, "pool": true, "gym": true, "price_from": true, "contact": {"phone": "514-617-9999", "email": "location@1squarephillips.ca"}}` + description listant les 10 unités avec pi²
40 +
41 +**2 Chambres locatif** — avant :
42 +`2750.0 | 4½ | Disponible (tour locative en location) | now | area=∅ | pets=∅ | {...}`
43 +après :
44 +`2750.0 | 4½ | 9 unités disponibles | now | area=853.0 | pets=∅ | {... , "contact": {...}}` + unités listées (ex. unité 310 (1405 pi²))
added reports/connectors/brochu.md +43 −0
@@ -0,0 +1,43 @@
1 +# brochu — Groupe Immobilier Brochu
2 +- site: https://groupeimmobilierbrochu.com/projets/ (+ pages projet)
3 +- méthode: html (liste + pages détail avec cache BD)
4 +- annonces: 7 → 7 (une par projet/immeuble, slugs stables)
5 +- couverture après (sur 7 annonces): prix 57% (3 projets sans prix affiché), adresse 100%, dispo 100%, superficie 0% (non publiée), commodités 86% (Le Pilier n'a pas de liste à puces)
6 +- fixture: ok · test: ok
7 +
8 +## Champs extraits
9 +- title, sector, availability (repli), price_label/unit_type (« 1195$ pour 4 1/2 ») : cartes `div.project` de la page liste (thème UIkit)
10 +- availability : NOUVEAU — texte de l'encadré « Statut » de la page projet (`div.uk-alert-primary p`, ex. « Disponible dès maintenant ou automne 2026 ») au lieu du label court de la carte
11 +- address : NOUVEAU — lien Google Maps du projet (hors pied de page, qui porte l'adresse du bureau) au lieu d'une regex fragile sur le texte global ; gère « 6275 et 6375 boulevard… »
12 +- description : NOUVEAU — paragraphes de la colonne principale (`div.uk-width-3-5@m`) incluant la note « * Les chiens ne sont pas permis dans nos propriétés » ; remplace og:description tronquée
13 +- amenities : NOUVEAU — liste à puces de la page projet (comptoirs de granit, stationnement intérieur inclus, ascenseurs, air climatisé, interphone, chute à déchets…) → dérive ac, elevator, parking{type, included}, storage, inclusions
14 +- details.contact : NOUVEAU — téléphone de l'encadré « Visite sur rendez-vous » + courriel protégé Cloudflare décodé depuis `data-cfemail` (structuré) — chaque projet a son courriel dédié (info@lasentinellelevis.com, info@lepilierlevis.com…)
15 +- images : galerie wp-content (inchangé, déplacé dans la page détail cachée)
16 +
17 +## Champs indisponibles à la source
18 +- Superficies (aucun pi² publié), inventaire unité par unité (une annonce = un immeuble/projet)
19 +- Prix pour Le Pilier, La Sentinelle et Promenade des Forts (renvoient à leurs micro-sites)
20 +- Politique chats/meublé ; la mention chiens est un texte libre (voir Fragilités)
21 +
22 +## Fragilités
23 +- Sélecteurs UIkit (`div.project`, `.uk-alert-primary`, `div.uk-width-3-5@m`, `.uk-panel.uk-background-muted`) — dépendants du thème WordPress/UIkit
24 +- Le pied de page contient l'adresse du bureau (700, rue des Grands-Jardins) avec le même type de lien Maps : l'extraction exclut explicitement `footer`
25 +- Courriels protégés Cloudflare : si la protection change de format, le décodage `data-cfemail` échoue (silencieusement)
26 +- Pages détail via `self.detail()` : la clé de cache = sha1 de la carte liste ; un changement fait sur la page projet SANS retouche de la carte liste ne sera pas revu (compromis accepté)
27 +- Lacune générique de normalisation : « Les chiens ne sont pas permis dans nos propriétés » n'est reconnue ni par _PETS_NO_RE ni par _PETS_COND_RE → pets reste None alors que la source affirme « conditions » (chiens interdits). Motif suggéré : `chiens? .*(pas|non) (permis|admis|acceptes)` → « conditions »
28 +
29 +## Améliorations apportées
30 +- Visite des pages projet déplacée derrière le cache BD `self.detail()` (clé = hash de la carte liste) — plus de re-crawl systématique des 7 pages à chaque sync
31 +- Disponibilité riche (encadré Statut), adresse fiable via lien Maps, description complète, commodités réelles, contact structuré (téléphone + cfemail décodé)
32 +- Correction : l'adresse du bureau du groupe n'est plus prise pour celle du projet (Le Pilier)
33 +
34 +## Échantillon avant/après
35 +**le-pilier** — avant :
36 +`∅ | (type ∅) | Libre novembre 2026 | 2026-11-01 | area=∅ | pets=∅ | {} | 1275 rue J.-B.-Demers Lévis`
37 +après :
38 +`∅ | (type ∅) | Très récent : novembre 2026 | 2026-11-01 | area=∅ | pets=∅ | {"contact": {"phone": "418-836-7666", "email": "info@lepilierlevis.com"}} | 1275 rue J.-B.-Demers Lévis (QC) G6W 0X9` + description complète
39 +
40 +**la-sentinelle** — avant :
41 +`∅ | 3½ | Disponible dès maintenant ou automne 2026 | now | area=∅ | pets=∅ | {} | 7002, boulevard Guillaume-Couture, Lévis` (amenities=[])
42 +après :
43 +`∅ | 3½ | Disponible dès maintenant ou automne 2026 | now | area=∅ | pets=∅ | {"ac": true, "elevator": true, "parking": {"available": true, "type": "intérieur", "included": true}, "contact": {"phone": "418-741-3737", "email": "info@lasentinellelevis.com"}} | 7002, boulevard Guillaume-Couture, Lévis` (10 amenities)
added reports/connectors/capreit.md +40 −0
@@ -0,0 +1,40 @@
1 +# capreit — CAPREIT (capreit.ca)
2 +- site: https://www.capreit.ca/wp-admin/admin-ajax.php?action=property_json&language=fr (+ fiches propriété rendues serveur)
3 +- méthode: json-api + html (fiches propriété derrière le cache BD)
4 +- annonces: 122 → 122 (une par type d'unité disponible ; uid `pid-slug` stables)
5 +- couverture après (sur 122 annonces): prix 100%, adresse 100%, dispo 100%, superficie 92% (10 annonces sans pi² affiché), commodités 100%, GPS 100% (nouveau)
6 +- fixture: ok · test: ok (45 requêtes rejouées)
7 +
8 +## Champs extraits
9 +- Flux JSON `property_json` : id, url, title, address, city, province, nearest_intersection, min_rent, price_range, bedroom_range, vacancy_message, has_vacancies + NOUVEAU : latitude/longitude → lat/lng, postal_code → adresse complète (« 2250, rue Guy, Montréal, QC H3H 2M3 »), incentive (« 1 mois de loyer gratuit ») → préfixe « Promotion : … » de la description, earliest_date (AAAAMMJJ) → availability_date structurée des annonces de repli
10 +- Fiche propriété (page HTML) : une ligne par type d'unité (`li.property-options-list-item`) → unit_type, prix « Débutant à X $ », disponibilité (« Immédiatement », « 01 septembre 2026 »), superficie (« Jusqu'à 380 pi ca.* », parsée par finalize) ; commodités (listes à icônes : piscine, sauna, ascenseurs, chauffage inclus, stationnement…) ; description (« Caractéristiques de l'immeuble ») ; galerie photos
11 +
12 +## Champs indisponibles à la source
13 +- Politique d'animaux par propriété (seul un lien générique « Politique relative aux animaux d'assistance » existe)
14 +- Étage, meublé ; superficie exacte (le site affiche « Jusqu'à X pi ca. », donc un maximum, pas la superficie de l'unité offerte)
15 +- Prix exact par unité (fourchette « Débutant à X $ - Y $ » par type)
16 +
17 +## Fragilités
18 +- Le flux retourne les 280 propriétés du Canada : le filtre villes (_QC_CITIES/_GM_CITIES) doit être maintenu quand CAPREIT acquiert de nouveaux immeubles
19 +- Certaines URLs du flux redirigent (301) vers un slug différent (ex. /le-2250-guy/ → /the-2250-guy-apartments/) — suivi par requests, mais un curl sans -L renvoie une page vide
20 +- Sélecteurs `.property-options-*` propres au thème WordPress CAPREIT
21 +- La collecte des commodités (li + div.icon) attrape aussi les lignes d'unités (« 1 1/2 », « Jusqu'à 380 pi ca.* ») — bruit toléré, filtré par la longueur < 60
22 +- Superficie « Jusqu'à X pi ca. » : c'est un maximum de la gamme, stocké tel quel dans la description (finalize en dérive area_sqft) — sémantique « à partir de » inversée, impossible à distinguer à la source
23 +
24 +## Améliorations apportées
25 +- GPS (lat/lng) sur 100 % des annonces depuis le flux (avant : aucune coordonnée)
26 +- Adresse complète avec ville + code postal (avant : rue seule)
27 +- Promotions du flux (« 1 mois de loyer gratuit », « Emménagement anticipé ») visibles en tête de description
28 +- availability_date structurée (earliest_date du flux) pour les annonces de repli sans tableau d'unités
29 +- Fiches propriété derrière `self.detail()` : clé = hash de la ligne du flux (min_rent, earliest_date, vacancy_message, price_range, has_vacancies, units_count, incentive) → sync passe de ~75 s à ~0,4 s quand rien n'a changé ; ~44 pages revisitées seulement quand le flux bouge
30 +
31 +## Échantillon avant/après
32 +**Faubourg de la Pointe et Domaine Laudance — 1 1/2** — avant :
33 +`930.0 | 1½ | Immédiatement | now | 370.0 | pets=∅ | {"inclusions": {"heating": true}, "elevator": true, ...} | 900, 920 Laudance, 3780, … des Compagnons` (lat/lng ∅)
34 +après :
35 +`930.0 | 1½ | Immédiatement | now | 370.0 | pets=∅ | {mêmes détails} | 900, 920 Laudance, …, des Compagnons, Ville De Québec, QC G1X 4V6` + lat=46.760387, lng=-71.332192
36 +
37 +**Faubourg de la Pointe et Domaine Laudance — 3 1/2** — avant :
38 +`1150.0 | 3½ | 01 septembre 2026 | 2026-09-01 | 690.0 | … | rue seule, pas de GPS`
39 +après :
40 +`1150.0 | 3½ | 01 septembre 2026 | 2026-09-01 | 690.0 | … | adresse + G1X 4V6, lat/lng remplis`
added reports/connectors/cogir.md +42 −0
@@ -0,0 +1,42 @@
1 +# cogir — Cogir Immobilier (cogir.net)
2 +- site: https://www.cogir.net/gestion-immeubles-residentiels.html (+ ~100 fiches immeuble)
3 +- méthode: html (rendu serveur, liste + fiches immeuble)
4 +- annonces: 270 → 283 (une par modèle offert ; +modèles autrefois écrasés par collision d'uid, +penthouses ; −modèles « Pas disponible »/« Liste d'attente »)
5 +- couverture après (sur 283 annonces): prix 97%, adresse 100%, dispo 97%, superficie 0% (non publiée), commodités 56% (beaucoup d'immeubles sans section Services), contact 94%
6 +- fixture: ok · test: ok (104 requêtes rejouées)
7 +
8 +## Champs extraits
9 +- Liste : liens des immeubles par ville (slugs `immeuble-residentiel-<ville>/<id>-…`), filtrés Québec/Lévis + Grand Montréal
10 +- Fiche immeuble : nom (h1), adresse (`p.adresse`, désormais dédupliquée : « …, Québec, QC, Québec, Québec G1M 0E6 » → sans doublons), description (+ NOUVEAU section « Promotion » en tête quand présente), services de l'immeuble (ul), photos DATA/PHOTO
11 +- Tableau `#tableModele` (NOUVEAU parsing par classes de colonnes colType/colModele/colPrix au lieu d'un balayage positionnel) : type, nom du modèle (« 1 chambre + bureau », intégré au titre), prix « à partir de »
12 +- availability : NOUVEAU — « Disponible » pour les modèles offerts (tableau « Modèles disponibles ») ; les modèles marqués « Pas disponible » ou « Liste d'attente » sont EXCLUS (avant : listés avec prix comme s'ils étaient offerts)
13 +- details.contact : NOUVEAU — téléphone et courriel de l'immeuble (liens tel:/mailto: de « Personne(s) à contacter », en excluant le pied de page corporatif info@cogir.net / 1-866 ; les mailto « %20… » sont décodés)
14 +- Penthouses : NOUVEAU — lignes « Penthouse » du tableau désormais admises
15 +
16 +## Champs indisponibles à la source
17 +- Superficies (aucun pi² sur les fiches), dates précises de disponibilité (juste offert / pas disponible / liste d'attente)
18 +- Animaux, meublé, étage ; inventaire unité par unité (une annonce = un modèle)
19 +- GPS (la carte est chargée en JS sans coordonnées lisibles dans le HTML)
20 +
21 +## Fragilités
22 +- CORRIGÉ mais à surveiller : deux modèles du même type (ex. « 3 1/2 » et « 3 1/2 + den ») produisaient le même external_id → une annonce en écrasait une autre (288 trouvées / 270 stockées). Le premier modèle garde l'uid historique `{id}-{type}` ; les suivants reçoivent `{id}-{type}-{slug modèle}`. Si l'ORDRE des lignes du tableau change chez Cogir, l'uid de base peut « glisser » d'un modèle à l'autre (prix mis à jour, pas de doublon)
23 +- ~100 fiches immeuble re-crawlées à chaque sync (~90 s à 0,6 s/req). Le cache `self.detail()` est INAPPLICABLE proprement : la page liste ne porte ni prix ni modèles (seulement nom/adresse/photo), donc aucune clé de contenu ne peut détecter un changement de prix — un cache figerait les loyers. Pas de visites additionnelles ajoutées par cette passe
24 +- Sélecteurs dépendants du gabarit maison (`p.adresse`, `#tableModele`, h2 littéraux « Description », « Services dans l'immeuble », « Promotion »)
25 +- Certains immeubles mettent « À partir de » dans la colonne Modèle (géré) ; colonnes parfois vides
26 +- L'exclusion aînés/étudiantes repose sur une regex sur le nom/description — un changement de vocabulaire (« résidence services ») passerait au travers
27 +
28 +## Améliorations apportées
29 +- Exclusion des modèles « Pas disponible » / « Liste d'attente » (annonces fantômes avant)
30 +- availability = « Disponible » sur les modèles offerts (avant : 100 % des annonces sans disponibilité)
31 +- Fin des collisions d'uid : 13 modèles ré-apparus (dont « + den », 2e modèles) + penthouses admis
32 +- Titre enrichi du nom de modèle ; prix du BON modèle sur l'uid historique (avant : le dernier modèle du tableau écrasait le premier)
33 +- Adresse dédupliquée ; promotion en tête de description ; contact structuré par immeuble (94 % des annonces)
34 +
35 +## Échantillon avant/après
36 +**L'Aventura Condos Locatifs — 3½** (uid cogir:2677-3) — avant :
37 +`1789.0 | 3½ | (dispo vide) | ∅ | area=∅ | pets=∅ | {"ac": true, "balcony": true, "pool": true, "gym": true, "parking": {…}, "price_from": true} | 1769 Rue Careau, Québec, QC, Québec, Québec G1M 0E6` (titre sans modèle ; le prix affiché était celui du « 3 1/2 + den » qui écrasait le « 3 1/2 »)
38 +après :
39 +`1496.0 | 3½ | Disponible | now | area=∅ | pets=∅ | {…, "contact": {"phone": "418-254-2588", "email": "infolaventura@cogir.net"}} | 1769 Rue Careau, Québec, QC, Québec G1M 0E6` — titre « — 3½ (1 chambre) » ; le « + den » est maintenant sa propre annonce (cogir:2677-3-1-chambre-bureau, 1789 $)
40 +
41 +**L'Aventura — 5½** — avant : listé à 2659 $ alors que la fiche indique « Pas disponible »
42 +après : retiré (désactivé après le délai de grâce)
added reports/connectors/contraste.md +64 −0
@@ -0,0 +1,64 @@
1 +# contraste — Contraste Immobilier
2 +- site: https://contrasteimmobilier.ca (accueil → pages immeubles /appartements/<slug>/)
3 +- méthode: html
4 +- annonces: 231 → 231
5 +- couverture après (sur 231 annonces): prix 85%, adresse 100%, dispo 100%, superficie 0%, commodités 100%
6 +- fixture: ok · test: ok
7 +
8 +## Champs extraits
9 +- title, unit_type, price/price_label, availability, images : attributs `data-*` des cartes
10 + `div.building-stack-unit` (plugin « api-building-stack ») sur la page immeuble.
11 +- address : titre Elementor complet (« 4855 rue de L'Escarpement, Québec, Québec, G3K0N8 »),
12 + avec repli sur l'adresse courte du hero des pages « projet » (« 2784 ave Sasseville » pour
13 + Ellipse / Émergence II, qui n'affichent pas de ville). sector dérivé de l'adresse ; city via
14 + infer_city + carte d'accueil.
15 +- amenities : NOUVEAU — liste CARACTÉRISTIQUES de l'immeuble (répéteur JetEngine
16 + `.jet-listing-dynamic-repeater__item span`) : inclusions, animaux, stationnement,
17 + électroménagers… + type de bâtiment `data-housing-type` (« Maison de ville ») quand présent.
18 +- details.contact : NOUVEAU — courriel/téléphone « Pour prendre rendez-vous » exposés dans les
19 + titres Elementor de la page immeuble (structuré, pas déduit du texte).
20 +- description : meta og:description (texte complet du projet).
21 +- area_sqft : lu depuis `data-size` mais uniquement si plausible (80–20 000) — chez Contraste
22 + l'attribut vaut toujours « 0 », donc None aujourd'hui ; l'extraction s'activera d'elle-même
23 + si le gestionnaire remplit le champ.
24 +
25 +## Champs indisponibles à la source
26 +- Superficie : `data-size="0"` partout, aucune mention en pi² dans les pages.
27 +- Prix des immeubles Focus I/II : `data-price="0"` (la carte n'affiche aucun prix) —
28 + 34 unités restent volontairement sans prix (avant, elles portaient un faux « 0$/mois »).
29 +- Étage, meublé, lat/lng : non exposés.
30 +- animaux : seulement en texte libre (« Chats autorisés, certaines conditions s'appliquent »).
31 +
32 +## Fragilités
33 +- Dépend du plugin WordPress « api-building-stack » (attributs data-pid/data-name/data-rooms/
34 + data-price) : un changement de thème casserait le parsing.
35 +- La liste des immeubles vient des cartes de la page d'accueil (`a[href*="/appartements/"]`).
36 +- Filtre géographique par ville de la carte d'accueil (Beaupré exclue) — si la carte omet la
37 + ville, l'immeuble passe avec défaut « Québec ».
38 +- LACUNES GÉNÉRIQUES de normalisation constatées ici (non contournées localement) :
39 + 1. « Non chauffé et éclairé » → inclusions.heating=true (faux positif : le motif positif
40 + `chauffe ` matche « chauffé et » ; « non chauffé » n'est pas un motif négatif reconnu —
41 + « Non chauffé, non éclairé » passe par chance à cause de la virgule).
42 + 2. « Chats autorisés (…sous conditions) » n'est reconnu par aucun motif pets → pets reste
43 + None alors que la source l'affiche (devrait donner « conditions »).
44 + 3. « Électroménagers selon disponibilités ($) » / « sur demande ($) » → appliances.fridge=true
45 + (les électroménagers ne sont pas inclus, ils sont en option payante).
46 +
47 +## Améliorations apportées
48 +- Extraction des commodités d'immeuble (CARACTÉRISTIQUES) → amenities pour chaque unité
49 + (avant : amenities toujours vide, 231/231).
50 +- Adresse de repli pour les pages « projet » (Ellipse, Émergence II) → 100 annonces qui
51 + n'avaient aucune adresse en ont maintenant une.
52 +- `data-price="0"` traité comme « prix non affiché » (avant : price_label « 0$/mois » inventé).
53 +- details.contact (email + téléphone location) quand la page l'affiche.
54 +- `data-housing-type` ajouté aux amenities ; `data-size` branché (inactif tant que la source
55 + le laisse à 0).
56 +
57 +## Échantillon avant/après
58 +Agora Phase 2 — unité 206
59 +- avant : 1519.0 | 4½ | Bientôt disponible (01 décembre 2026) | 2026-12-01 | area=None | pets=None | details={"floor": 2} | 4855 rue de L'Escarpement, Québec, Québec, G3K0N8 | amenities=[]
60 +- après : 1519.0 | 4½ | Bientôt disponible (01 décembre 2026) | 2026-12-01 | area=None | pets=None | details={"inclusions":{"heating":true,"internet":true},"appliances":{"fridge":true,"washer_dryer_hookup":true},"ac":true,"parking":{"available":true,"type":"extérieur"},"floor":2,…} | même adresse | amenities=[Non chauffé et éclairé, Entrée laveuse-sécheuse, Internet inclus, Air climatisé, Chats autorisés *sous conditions, Électroménagers sur demande*($), Stationnement extérieur ($)]
61 +
62 +ELLIPSE — unité 101
63 +- avant : prix ok | 4½ | Disponible | now | address="" | details={}
64 +- après : prix ok | 4½ | Disponible | now | address="2784 ave Sasseville" | details={"inclusions":{"heating":true,"electricity":true,"hot_water":true,"internet":true},"appliances":{"fridge":true,"stove":true},"ac":true,"gym":true,"parking":{"available":true,"type":"intérieur"},"contact":{"email":"location@contrasteimmobilier.ca","phone":"418-520-4412"}}
added reports/connectors/copley.md +59 −0
@@ -0,0 +1,59 @@
1 +# copley — Groupe Copley
2 +- site: https://www.groupecopley.com/properties (Webflow, pagination ?15d7d54c_page=N)
3 +- méthode: html
4 +- annonces: 52 → 52
5 +- couverture après (sur 52 annonces): prix 100%, adresse 100%, dispo 100%, superficie 100%, commodités 100%
6 +- fixture: ok · test: ok
7 +
8 +## Champs extraits
9 +- title, city/neighbourhood, type, bedrooms, bathrooms, prix : champs `fs-cmsfilter-field`
10 + des cartes `div.property_item` (carte liste).
11 +- area_sqft : NOUVEAU — bloc « 1573 sqft » de la carte (valeur structurée du CMS).
12 +- lat/lng : NOUVEAU — divs `.data---latitude` / `.data---longitude` embarquées dans la carte.
13 +- availability : bandeau de la carte (« Available »), raffiné par la fiche : le fil d'Ariane
14 + expose une variante datée « Available Jun 2026 » (fiche détail).
15 +- amenities : NOUVEAU — liste d'icônes de la fiche (`.property-header_features-item` :
16 + Laundry, Balcony, Pool, Gym, Storage Locker, Garage…) + caractéristiques principales
17 + (`.main-features_item` : « Heating: Electric », « Cooling: Central Air »,
18 + « Parking: 1 space », « Backyard ») + « X salle(s) de bain » depuis la carte.
19 +- details : NOUVEAU — ac (label structuré « Cooling » non vide) et parking.available
20 + (label « Parking ») posés explicitement ; le reste dérivé centralement des amenities.
21 +- description : fiche détail (`.property-header_description`).
22 +- images : fiche détail (CDN Webflow, variantes responsive « -p-NNN » exclues).
23 +- address : composée « <adresse civique>, <ville>, QC » (le CMS ne publie que la rue en title).
24 +
25 +## Champs indisponibles à la source
26 +- Animaux, meublé, étage : jamais affichés.
27 +- Inclusions au bail (chauffage/électricité/eau chaude incluses ou non) : le site affiche le
28 + TYPE de chauffage (« Heating: Forced Air »), pas son inclusion dans le loyer.
29 +- Date de disponibilité précise au jour : seulement « Mois AAAA » quand ce n'est pas immédiat.
30 +
31 +## Fragilités
32 +- Webflow : classes générées (`fs-cmsfilter-field`, `.data---latitude`, paramètre de
33 + pagination `?15d7d54c_page=`) — un re-publish du site peut les changer.
34 +- La visibilité conditionnelle Webflow (`w-condition-invisible`) est incohérente sur les tags
35 + de disponibilité (le JS client corrige à l'affichage) : on préfère la variante datée quand
36 + elle existe, sinon « Available ».
37 +- Le site mélange Montréal/Toronto/Ottawa : filtre sur city=Montreal (les cartes hors
38 + périmètre sont ignorées).
39 +- LACUNE GÉNÉRIQUE : « Cooling: Central Air » n'est reconnu par aucun motif `ac` central
40 + (contourné ici par un details.ac explicite car le label est structuré) ; « Heating:
41 + Forced Air » est interprété centralement comme inclusions.heating=true alors que c'est un
42 + type de chauffage — un motif « heating: <type> » ≠ « heating included » serait plus juste.
43 +
44 +## Améliorations apportées
45 +- Superficie (100% des annonces), salles de bain, lat/lng extraits des cartes.
46 +- Fiches détail migrées vers le cache BD `self.detail()` (clé = sha1 prix|dispo|type|pi²) :
47 + les re-syncs ne revisitent plus les 52 fiches.
48 +- Disponibilité remplie partout (avant : 43/52 vides) — bandeau carte + variante datée fiche.
49 +- Commodités (avant : 0/52) + details.ac / details.parking.
50 +- Adresse enrichie de la ville (avant : rue seule) ; description via le bloc dédié.
51 +
52 +## Échantillon avant/après
53 +447 Mount Stephen
54 +- avant : 3500.0 | 5½ | dispo="" | date=None | area=None | pets=None | details={} | addr="447 Mount Stephen" | amenities=[]
55 +- après : 3500.0 | 5½ | "Available" | now | 1573 pi² | pets=None | details={"inclusions":{"heating":true},"appliances":{"fridge":true},"balcony":true,"parking":{"available":true},"ac":true} | addr="447 Mount Stephen, Westmount, QC" | amenities=[Laundry, Kitchen Appliances, Light Fixtures, Balcony, Heating: Forced Air, Cooling: Central Air, Parking, Backyard: 2 balconies, 1.5 salle(s) de bain]
56 +
57 +2365 Rue des Equinoxes, Suite 515
58 +- avant : 2650.0 | 4½ | dispo="" | date=None | area=None | details={"appliances":{"fridge":true}} | addr="2365 Rue des Equinoxes, Suite 515"
59 +- après : 2650.0 | 4½ | "Available Jun 2026" | now (juin passé) | 1031 pi² | details={…,"ac":true,"parking":{"available":true},"pool":…} | addr="2365 Rue des Equinoxes, Suite 515, Montréal, QC" | amenities=[2 salle(s) de bain, Balcony, Ensuite Bathroom, Garage, Gym, Kitchen Appliances, Laundry, Light Fixtures, Pool, Storage Locker, Heating: Electric, Cooling: Central Air, Parking: 1 space, Backyard]
added reports/connectors/cromwell.md +52 −0
@@ -0,0 +1,52 @@
1 +# cromwell — Cromwell Management (site unités : cromwellmontreal.ca)
2 +- site: https://cromwellmontreal.ca/apartments-for-rent-montreal/ (WordPress + thème Houzez)
3 +- méthode: html
4 +- annonces: 12 → 12
5 +- couverture après (sur 12 annonces): prix 100%, adresse 100%, dispo 100%, superficie 100%, commodités 100%
6 +- fixture: ok · test: ok
7 +
8 +## Champs extraits
9 +- title, address, price_label (« Starting at $1,345/month »), beds/baths, superficie
10 + (« 334 Sq. ft » dans .item-amenities) : cartes liste `.item-listing-wrap`.
11 +- unit_type : « X 1/2 » du bloc Détails de la fiche (« 1 Bedroom (3 1/2) »), sinon
12 + nb de chambres (0.5 = Studio).
13 +- availability : étiquettes de la fiche (`.property-labels-wrap` : « Available Now,
14 + Promotion 1 Free Month ») + NOUVEAU repli sur « Property Status » du bloc Détails.
15 +- amenities : NOUVEAU — liste Features complète de la fiche (`.property-features-wrap li` :
16 + Balcony, Elevator, Heating, Hot Water, Laundry Room, Parking, Refrigerator, Security
17 + Cameras…) fusionnée aux items de la carte + « X Bathroom(s) » du bloc Détails.
18 +- sector : NOUVEAU — bloc Adresse de la fiche (« City/ Ville: Montreal, Plateau
19 + Mont-Royal ») en repli du parsing de titre/adresse.
20 +- description : bloc Description de la fiche ; images : uploads WP (variantes -NxN exclues).
21 +
22 +## Champs indisponibles à la source
23 +- Animaux, meublé, date précise de disponibilité (seulement « Available Now » / « Rented »).
24 +- lat/lng : aucune coordonnée dans la page (la carte Houzez n'est pas configurée).
25 +- Inclusions précises au bail : « Heating », « Hot Water » listés comme features sans dire
26 + explicitement « inclus » (interprétés centralement comme inclusions — plausible ici).
27 +
28 +## Fragilités
29 +- Thème Houzez : sélecteurs `.item-listing-wrap`, `.detail-wrap`, `.property-features-wrap`,
30 + `.property-labels-wrap` — stables tant que le thème ne change pas.
31 +- Le vrai site corporatif (cromwellmgt.ca) ne publie pas d'unités ; tout repose sur le site
32 + jumeau cromwellmontreal.ca (12 annonces seulement, souvent « starting at » par immeuble).
33 +- Pagination suivie via a[rel=next] ; une seule page actuellement.
34 +- Villes défusionnées (Westmount/Hampstead) détectées par heuristique adresse/titre.
35 +
36 +## Améliorations apportées
37 +- Fiches détail migrées vers le cache BD `self.detail()` (clé = sha1 titre|prix|adresse|
38 + amenities de la carte) : les re-syncs ne revisitent plus chaque fiche.
39 +- Amenities enrichies par la liste Features complète de la fiche (avant : 3-6 items de
40 + carte ; après : jusqu'à ~16 items → inclusions.heating/hot_water, elevator, laundry,
41 + parking, ac… dérivés centralement).
42 +- « X Bathroom(s) » et repli « Property Status » extraits du bloc Détails.
43 +- sector depuis le bloc Adresse de la fiche (ex. « Plateau Mont-Royal »).
44 +
45 +## Échantillon avant/après
46 +Renovated Plateau Studio Apartment
47 +- avant : 1345.0 | Studio | Available Now, Promotion 1 Free Month | now | 334 pi² | details={"appliances":{"fridge":true,"stove":true,"dishwasher":true,"washer_dryer":true},"laundry":true,"parking":{"available":true},"price_from":true} | amenities=[334 Sq. ft, …carte]
48 +- après : 1345.0 | Studio | Available Now, Promotion 1 Free Month | now | 334 pi² | details={"inclusions":{"heating":true,"hot_water":true},"appliances":{…},"elevator":true,"balcony":true,"laundry":true,"parking":{…},"price_from":true} | amenities=[334 Sq. ft, 1 Bathroom(s), Balcony, City Views, Cooking Stove, Dishwasher, Elevator, Fully Renovated, Heating, Hot Water, Laundry Room, Lobby, Microwave, Parking, Refrigerator, Security Cameras]
49 +
50 +1 bedroom Apartment on Mount-Royal
51 +- avant : 1525.0 | 3½ | Available Now, Promotion 1 Free Month | now | 700 pi² | details={"appliances":{…},"pool":true,"gym":true,"price_from":true}
52 +- après : 1525.0 | 3½ | idem | now | 700 pi² | details={"inclusions":{"heating":true,"hot_water":true},"appliances":{…},"ac":true,"elevator":true,"balcony":true,"pool":true,"gym":true,…} | amenities enrichies (Features fiche)
added reports/connectors/denux.md +53 −0
@@ -0,0 +1,53 @@
1 +# denux — Groupe Denux
2 +- site: https://www.groupedenux.com (API api.theliftsystem.com/v2/search + fiches /residential/<slug>)
3 +- méthode: json-api (découverte) + html (suites)
4 +- annonces: 18 → 18
5 +- couverture après (sur 18 annonces): prix 100%, adresse 100%, dispo 100%, superficie 0%, commodités 100%
6 +- fixture: ok · test: ok
7 +
8 +## Champs extraits
9 +- Immeubles : API Lift System (jeton public du site) — name, address (rue, ville, quartier,
10 + code postal), geocode lat/lng, overview (description), availability_status_label.
11 +- pets : NOUVEAU — booléen structuré `pet_friendly` de l'API (true → « oui »,
12 + false → « non » ; champ activement maintenu : 2 immeubles true, 8 false).
13 +- details.contact : NOUVEAU — téléphone/courriel de location PAR IMMEUBLE exposés par l'API
14 + (ex. royalurbain@groupedenux.com, 514-845-8555).
15 +- details.parking : branché sur le dict `parking{indoor,outdoor}` de l'API (null partout
16 + aujourd'hui — s'activera si le gestionnaire le remplit).
17 +- Suites (fiche HTML rendue serveur) : type/prix (`.suite-type`/`.suite-rate`), chambres,
18 + salles de bain (→ « X salle(s) de bain » dans amenities), disponibilité (lien du modal).
19 +- images : NOUVEAU — photos PROPRES À CHAQUE SUITE (liens « View » du bloc Suite Photos),
20 + avec repli sur la galerie de l'immeuble.
21 +- amenities : `.amenities .amenity-holder` de la fiche immeuble.
22 +
23 +## Champs indisponibles à la source
24 +- Superficie : `statistics.suites.square_feet` = 0 partout dans l'API et aucune mention
25 + en pi² sur les fiches.
26 +- Meublé, étage : non exposés.
27 +- Date précise de disponibilité : seulement « Available Now » / mois dans le libellé libre
28 + de la suite (min_availability_date de l'API est vide).
29 +
30 +## Fragilités
31 +- Jeton d'API public (sswpREkUtyeYjeoahA2i) embarqué dans le JS du site : peut tourner.
32 +- IDs de villes Lift System codés en dur (Montréal 1863, Saint-Lambert 2789, Mascouche 1741) ;
33 + un nouveau marché QC nécessiterait d'ajouter son id.
34 +- Les libellés de suite mélangent nom/dispo/prix (« Studio Available Now - Starting at
35 + $1,025 ») — nettoyés par regex, sensibles aux nouvelles variantes.
36 +- Le filtre province_code=QC protège contre l'expansion pancanadienne du portefeuille.
37 +
38 +## Améliorations apportées
39 +- pets rempli sur 18/18 annonces via le booléen structuré de l'API (avant : NULL partout).
40 +- details.contact (téléphone + courriel de l'immeuble) sur toutes les annonces.
41 +- Photos par suite au lieu de la galerie d'immeuble commune (les 4 premières annonces ont
42 + maintenant des galeries distinctes).
43 +- « X salle(s) de bain » ajouté aux amenities de chaque suite.
44 +- details.parking prêt (données API actuellement nulles).
45 +
46 +## Échantillon avant/après
47 +ROYAL-URBAIN — Studio
48 +- avant : 1025.0 | Studio | Available Now | now | area=None | pets=NULL | details={"inclusions":{"internet":true,"cable":true},"appliances":{"fridge":true,"stove":true},"elevator":true,"balcony":true,"storage":true,"price_from":true} | 3777 ST-URBAIN | images=galerie immeuble
49 +- après : 1025.0 | Studio | Available Now | now | area=None | pets="non" | details={…idem…,"contact":{"phone":"514-845-8555","email":"royalurbain@groupedenux.com"}} | 3777 ST-URBAIN | images=photos de la suite (App 202) + « 1 salle(s) de bain » dans amenities
50 +
51 +Villa Du 60 — Beautiful Studio
52 +- avant : 950.0 | Studio | Available Now | now | pets=NULL | details={"inclusions":{"hot_water":true,"cable":true},…,"smoking":false,"parking":{"available":true}}
53 +- après : 950.0 | Studio | Available Now | now | pets="non" | details={…idem…,"contact":{"phone":…,"email":"villadu60@groupedenux.com"}} | photos propres à la suite
added reports/connectors/devimco.md +54 −0
@@ -0,0 +1,54 @@
1 +# devimco — Devimco Appartements
2 +- site: https://devimco.com/appartements (pages projets) + API Planpoint (app.planpoint.io/api/projects|groups/find, POST JSON)
3 +- méthode: json-api
4 +- annonces: 498 → 498
5 +- couverture après (sur 498 annonces): prix 100%, adresse 100%, dispo 100%, superficie 99.8%, commodités 99.8%
6 +- fixture: ok · test: ok
7 +
8 +## Champs extraits
9 +- Unités : API Planpoint (floors[] → units[]) — name, price, availability, deliveryDate,
10 + bedrooms, bathrooms, orientation, images/layoutGallery, inclusions.
11 +- unit_type : NOUVEAU — champ structuré `type` de l'API (« 3.5 » → 3½), avec repli sur le
12 + nb de chambres (+2). Corrige les unités où bedrooms est approximatif.
13 +- area_sqft : NOUVEAU — champ structuré `squareFeet` posé directement (avant : seulement
14 + « 570 pi² » dans amenities, parsé centralement).
15 +- furnished : NOUVEAU — booléen explicite `furnished` de l'API (true/false, jamais deviné).
16 +- details : NOUVEAU — mapping des jetons structurés de `inclusions` (« internet,
17 + electricity, heating, stove, refrigerator, dishwasher, washer, dryer… ») vers
18 + inclusions{}/appliances{}/balcony/ac. Corrige notamment `refrigerator` → fridge que la
19 + normalisation centrale ne reconnaissait pas.
20 +- address : projet Planpoint, avec NOUVEAU repli sur l'adresse affichée par la page Devimco
21 + (lien Google Maps `?query=…`) — répare Maestria Tour B et Hexagone 2 (78 annonces sans
22 + adresse → « 1245 Rue de Bleury, Montréal », « 101, Rue Murray, Montréal »).
23 +- lat/lng du projet ; étage + orientation dans description (« Étage 3 — Wellington ») ;
24 + bathrooms et « Meublé » dans amenities.
25 +
26 +## Champs indisponibles à la source
27 +- Animaux : aucune mention par unité dans l'API ni sur les pages.
28 +- Secteur fin par unité (on utilise le secteur de la page projet : Griffintown,
29 + Centre-ville, Quartier DIX30, Vieux-Longueuil).
30 +- Adresse par tour pour les phases groupées (l'API laisse `address` vide sur certaines
31 + phases ; on utilise l'adresse de la page projet, commune au complexe).
32 +
33 +## Fragilités
34 +- API Planpoint non documentée (POST {namespace, hostName} / {namespace}) : un changement
35 + de plateforme de Devimco casserait tout.
36 +- Détection des iframes par regex sur l'URL app.planpoint.io (projet vs groupe /g/).
37 +- Les unités « Unavailable », « Reserved » ou unitPriceTBD sont exclues (voulu).
38 +- ~500 unités par sync : tout vient de ~9 pages + ~10 POST JSON, pas de page détail.
39 +
40 +## Améliorations apportées
41 +- 78 adresses manquantes réparées (lien Maps de la page projet en repli).
42 +- unit_type depuis le champ `type` exact de l'API.
43 +- area_sqft et furnished posés comme champs structurés explicites.
44 +- details dérivés des jetons d'inclusions de l'API (fridge/washer_dryer/ac/balcony…
45 + y compris `refrigerator` que les règles centrales ratent).
46 +
47 +## Échantillon avant/après
48 +Alexander Phase 1 Appartements — unité 312
49 +- avant : 2090.0 | 3½ | Disponible : 2026-08-06 | now | 763 (dérivé du texte) | pets=None | furnished=None | details={"inclusions":{"heating":true,"electricity":true,"internet":true},"appliances":{"stove":true,"dishwasher":true,"washer_dryer":true},"balcony":true,"floor":3} | 2255 René-Lévesque Blvd W, Montreal
50 +- après : 2090.0 | 3½ | idem | now | 763 (squareFeet API) | furnished=false (explicite) | details={…idem…, "appliances":{…,"fridge":true},"furnished":false} | même adresse
51 +
52 +Maestria Tour B Appartements — unité 506
53 +- avant : prix ok | 3½ | Disponible | now | 568 | address="" (API vide)
54 +- après : prix ok | 3½ | Disponible | now | 568 | address="1245 Rue de Bleury, Montréal" (lien Maps de la page projet)
added tests/fixtures/brio/bea7b85fff00a80d1d0e.html +696 −0
@@ -0,0 +1,696 @@
1 +<!DOCTYPE html>
2 +<html lang="fr-FR">
3 +<head>
4 + <meta charset="UTF-8" />
5 +<meta http-equiv="X-UA-Compatible" content="IE=edge">
6 + <link rel="pingback" href="https://immeublesbrio.com/xmlrpc.php" />
7 +
8 + <script type="text/javascript">
9 + document.documentElement.className = 'js';
10 + </script>
11 +
12 + <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /><style id="et-divi-open-sans-inline-css">/* Original: https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800&#038;subset=latin,latin-ext&#038;display=swap *//* User Agent: Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) Safari/538.1 Daum/4.1 */@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkWV4exQ.ttf) format('truetype');}@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV4exQ.ttf) format('truetype');}@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjWV4exQ.ttf) format('truetype');}@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWV4exQ.ttf) format('truetype');}@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjWV4exQ.ttf) format('truetype');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4uaVc.ttf) format('truetype');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVc.ttf) format('truetype');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4uaVc.ttf) format('truetype');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4uaVc.ttf) format('truetype');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1x4uaVc.ttf) format('truetype');}/* User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:27.0) Gecko/20100101 Firefox/27.0 */@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkWV4exg.woff) format('woff');}@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV4exg.woff) format('woff');}@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjWV4exg.woff) format('woff');}@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWV4exg.woff) format('woff');}@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjWV4exg.woff) format('woff');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4uaVQ.woff) format('woff');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVQ.woff) format('woff');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4uaVQ.woff) format('woff');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4uaVQ.woff) format('woff');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1x4uaVQ.woff) format('woff');}/* User Agent: Mozilla/5.0 (Windows NT 6.3; rv:39.0) Gecko/20100101 Firefox/39.0 */@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkWV4ewA.woff2) format('woff2');}@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV4ewA.woff2) format('woff2');}@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjWV4ewA.woff2) format('woff2');}@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWV4ewA.woff2) format('woff2');}@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjWV4ewA.woff2) format('woff2');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4uaVI.woff2) format('woff2');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVI.woff2) format('woff2');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4uaVI.woff2) format('woff2');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4uaVI.woff2) format('woff2');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1x4uaVI.woff2) format('woff2');}</style><style id="et-builder-googlefonts-cached-inline">/* Original: https://fonts.googleapis.com/css?family=Oswald:200,300,regular,500,600,700|Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic&#038;subset=latin,latin-ext&#038;display=swap *//* User Agent: Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) Safari/538.1 Daum/4.1 */@font-face {font-family: 'Oswald';font-style: normal;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvsUhiYA.ttf) format('truetype');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs169vsUhiYA.ttf) format('truetype');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUhiYA.ttf) format('truetype');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvsUhiYA.ttf) format('truetype');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9osUhiYA.ttf) format('truetype');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZosUhiYA.ttf) format('truetype');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 100;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLoHRuAb-lg.ttf) format('truetype');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLt_QuAb-lg.ttf) format('truetype');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLoHQuAb-lg.ttf) format('truetype');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 500;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLrPQuAb-lg.ttf) format('truetype');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLmbXuAb-lg.ttf) format('truetype');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 900;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLijXuAb-lg.ttf) format('truetype');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 100;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbFmaiA8.ttf) format('truetype');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuaabVmaiA8.ttf) format('truetype');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmaiA8.ttf) format('truetype');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 500;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWub2bVmaiA8.ttf) format('truetype');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuYjalmaiA8.ttf) format('truetype');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 900;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuZtalmaiA8.ttf) format('truetype');}/* User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:27.0) Gecko/20100101 Firefox/27.0 */@font-face {font-family: 'Oswald';font-style: normal;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvsUhiYw.woff) format('woff');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs169vsUhiYw.woff) format('woff');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUhiYw.woff) format('woff');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvsUhiYw.woff) format('woff');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9osUhiYw.woff) format('woff');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZosUhiYw.woff) format('woff');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 100;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLoHRuAb-lQ.woff) format('woff');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLt_QuAb-lQ.woff) format('woff');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLoHQuAb-lQ.woff) format('woff');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 500;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLrPQuAb-lQ.woff) format('woff');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLmbXuAb-lQ.woff) format('woff');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 900;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLijXuAb-lQ.woff) format('woff');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 100;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbFmaiAw.woff) format('woff');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuaabVmaiAw.woff) format('woff');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmaiAw.woff) format('woff');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 500;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWub2bVmaiAw.woff) format('woff');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuYjalmaiAw.woff) format('woff');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 900;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuZtalmaiAw.woff) format('woff');}/* User Agent: Mozilla/5.0 (Windows NT 6.3; rv:39.0) Gecko/20100101 Firefox/39.0 */@font-face {font-family: 'Oswald';font-style: normal;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvsUhiZQ.woff2) format('woff2');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs169vsUhiZQ.woff2) format('woff2');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUhiZQ.woff2) format('woff2');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvsUhiZQ.woff2) format('woff2');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9osUhiZQ.woff2) format('woff2');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZosUhiZQ.woff2) format('woff2');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 100;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLoHRuAb-kw.woff2) format('woff2');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLt_QuAb-kw.woff2) format('woff2');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLoHQuAb-kw.woff2) format('woff2');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 500;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLrPQuAb-kw.woff2) format('woff2');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLmbXuAb-kw.woff2) format('woff2');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 900;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLijXuAb-kw.woff2) format('woff2');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 100;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbFmaiAo.woff2) format('woff2');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuaabVmaiAo.woff2) format('woff2');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmaiAo.woff2) format('woff2');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 500;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWub2bVmaiAo.woff2) format('woff2');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuYjalmaiAo.woff2) format('woff2');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 900;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuZtalmaiAo.woff2) format('woff2');}</style><meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
13 +<script id="cookieyes" type="text/javascript" src="https://cdn-cookieyes.com/client_data/88c5194670cb00587e38c369/script.js"></script><script type="text/javascript">
14 + let jqueryParams=[],jQuery=function(r){return jqueryParams=[...jqueryParams,r],jQuery},$=function(r){return jqueryParams=[...jqueryParams,r],$};window.jQuery=jQuery,window.$=jQuery;let customHeadScripts=!1;jQuery.fn=jQuery.prototype={},$.fn=jQuery.prototype={},jQuery.noConflict=function(r){if(window.jQuery)return jQuery=window.jQuery,$=window.jQuery,customHeadScripts=!0,jQuery.noConflict},jQuery.ready=function(r){jqueryParams=[...jqueryParams,r]},$.ready=function(r){jqueryParams=[...jqueryParams,r]},jQuery.load=function(r){jqueryParams=[...jqueryParams,r]},$.load=function(r){jqueryParams=[...jqueryParams,r]},jQuery.fn.ready=function(r){jqueryParams=[...jqueryParams,r]},$.fn.ready=function(r){jqueryParams=[...jqueryParams,r]};</script>
15 + <!-- This site is optimized with the Yoast SEO plugin v27.3 - https://yoast.com/product/yoast-seo-wordpress/ -->
16 + <title>Appartements à louer Val-Bélair, Neufchatel, Loretteville | Brio</title>
17 + <meta name="description" content="Appartements à louer 3½, 4½ et 5½. Venez choisir votre appartement à Val Bélair dans l&#039;immeuble locatif Brio. Contactez-nous:418 928-7688" />
18 + <link rel="canonical" href="https://immeublesbrio.com/" />
19 + <meta property="og:locale" content="fr_FR" />
20 + <meta property="og:type" content="website" />
21 + <meta property="og:title" content="Appartements à louer Val-Bélair, Neufchatel, Loretteville | Brio" />
22 + <meta property="og:description" content="Appartements à louer 3½, 4½ et 5½. Venez choisir votre appartement à Val Bélair dans l&#039;immeuble locatif Brio. Contactez-nous:418 928-7688" />
23 + <meta property="og:url" content="https://immeublesbrio.com/" />
24 + <meta property="og:site_name" content="Immeubles Brio" />
25 + <meta property="article:modified_time" content="2026-04-05T17:36:11+00:00" />
26 + <meta property="og:image" content="https://immeublesbrio.com/wp-content/uploads/2020/01/Le_Brio-f.jpg" />
27 + <meta property="og:image:width" content="1024" />
28 + <meta property="og:image:height" content="559" />
29 + <meta property="og:image:type" content="image/jpeg" />
30 + <meta name="twitter:card" content="summary_large_image" />
31 + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/immeublesbrio.com\/","url":"https:\/\/immeublesbrio.com\/","name":"Appartements à louer Val-Bélair, Neufchatel, Loretteville | Brio","isPartOf":{"@id":"http:\/\/6hc.94f.myftpupload.com\/#website"},"about":{"@id":"http:\/\/6hc.94f.myftpupload.com\/#organization"},"primaryImageOfPage":{"@id":"https:\/\/immeublesbrio.com\/#primaryimage"},"image":{"@id":"https:\/\/immeublesbrio.com\/#primaryimage"},"thumbnailUrl":"https:\/\/immeublesbrio.com\/wp-content\/uploads\/2020\/01\/Le_Brio-f.jpg","datePublished":"2019-08-23T15:34:02+00:00","dateModified":"2026-04-05T17:36:11+00:00","description":"Appartements à louer 3½, 4½ et 5½. Venez choisir votre appartement à Val Bélair dans l'immeuble locatif Brio. Contactez-nous:418 928-7688","breadcrumb":{"@id":"https:\/\/immeublesbrio.com\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/immeublesbrio.com\/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/immeublesbrio.com\/#primaryimage","url":"https:\/\/immeublesbrio.com\/wp-content\/uploads\/2020\/01\/Le_Brio-f.jpg","contentUrl":"https:\/\/immeublesbrio.com\/wp-content\/uploads\/2020\/01\/Le_Brio-f.jpg","width":1024,"height":559,"caption":"Appartement locatif Le Brio"},{"@type":"BreadcrumbList","@id":"https:\/\/immeublesbrio.com\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil"}]},{"@type":"WebSite","@id":"http:\/\/6hc.94f.myftpupload.com\/#website","url":"http:\/\/6hc.94f.myftpupload.com\/","name":"Immeubles Brio","description":"Appartements à louer à Val-Bélair","publisher":{"@id":"http:\/\/6hc.94f.myftpupload.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/6hc.94f.myftpupload.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"http:\/\/6hc.94f.myftpupload.com\/#organization","name":"les immeubles brio","url":"http:\/\/6hc.94f.myftpupload.com\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"http:\/\/6hc.94f.myftpupload.com\/#\/schema\/logo\/image\/","url":"https:\/\/secureservercdn.net\/198.71.233.36\/6hc.94f.myftpupload.com\/wp-content\/uploads\/2019\/10\/brio-final.png?time=1640649463","contentUrl":"https:\/\/secureservercdn.net\/198.71.233.36\/6hc.94f.myftpupload.com\/wp-content\/uploads\/2019\/10\/brio-final.png?time=1640649463","width":1080,"height":504,"caption":"les immeubles brio"},"image":{"@id":"http:\/\/6hc.94f.myftpupload.com\/#\/schema\/logo\/image\/"}}]}</script>
32 + <!-- / Yoast SEO plugin. -->
33 +
34 +
35 +<link rel="alternate" type="application/rss+xml" title="Immeubles Brio &raquo; Flux" href="https://immeublesbrio.com/feed/" />
36 +<link rel="alternate" type="application/rss+xml" title="Immeubles Brio &raquo; Flux des commentaires" href="https://immeublesbrio.com/comments/feed/" />
37 +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://immeublesbrio.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fimmeublesbrio.com%2F" />
38 +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://immeublesbrio.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fimmeublesbrio.com%2F&#038;format=xml" />
39 + <style>
40 + .lazyload,
41 + .lazyloading {
42 + max-width: 100%;
43 + }
44 + </style>
45 + <meta content="Divi v.4.27.6" name="generator"/>
46 +<style id="site-designer-shared-pattern-classes-inline-css">
47 +/* Dark cover/section overlay + on-dark text. */
48 +body .wp-site-blocks .is-style-overlay-dark .wp-block-cover__background { background-color: var(--wp--preset--color--base-3); color: var(--wp--preset--color--contrast-3); }
49 +.wp-block-cover.is-style-overlay-dark .wp-block-cover__background.has-background-dim { opacity: 0.8 !important; }
50 +:is(.wp-block-designsetgo-section, .wp-block-designsetgo-scroll-slides).is-style-overlay-dark { --dsgo-overlay-color: var(--wp--preset--color--base-3); --dsgo-overlay-opacity: 0.8; color: var(--wp--preset--color--contrast-3); }
51 +.wp-block-group.has-background.is-style-overlay-dark { box-shadow: inset 0 0 0 9999px color-mix(in srgb, var(--wp--preset--color--base-3) 80%, transparent); }
52 +body .wp-site-blocks .is-style-overlay-dark, body .wp-site-blocks .is-style-on-dark { --dsgo-text-color: var(--wp--preset--color--contrast-3); color: var(--wp--preset--color--contrast-3) !important; }
53 +body .wp-site-blocks .is-style-overlay-dark :is(h1,h2,h3,h4,h5,h6,p,li,blockquote,cite), body .wp-site-blocks .is-style-on-dark :is(h1,h2,h3,h4,h5,h6,p,li,blockquote,cite) { color: var(--wp--preset--color--contrast-3) !important; }
54 +
55 +/* Solid dark section background + light text. */
56 +.is-style-bg-dark { background-color: var(--wp--preset--color--contrast); color: var(--wp--preset--color--base); }
57 +.is-style-bg-dark a { color: var(--wp--preset--color--base); }
58 +/*# sourceURL=site-designer-shared-pattern-classes-inline-css */
59 +</style>
60 +<style id="global-styles-inline-css">
61 +:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:root { --wp--style--global--content-size: 823px;--wp--style--global--wide-size: 1080px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
62 +/*# sourceURL=global-styles-inline-css */
63 +</style>
64 +
65 +<link rel='stylesheet' id='wp-components-css' href='https://immeublesbrio.com/wp-includes/css/dist/components/style.min.css?ver=7.0.3' media='all' />
66 +<link rel='stylesheet' id='godaddy-styles-css' href='https://immeublesbrio.com/wp-content/mu-plugins/vendor/wpex/godaddy-launch/includes/Dependencies/GoDaddy/Styles/build/latest.css?ver=2.0.2' media='all' />
67 +<style id="divi-style-inline-inline-css">
68 +/*!
69 +Theme Name: Divi
70 +Theme URI: http://www.elegantthemes.com/gallery/divi/
71 +Version: 4.27.6
72 +Description: Smart. Flexible. Beautiful. Divi is the most powerful theme in our collection.
73 +Author: Elegant Themes
74 +Author URI: http://www.elegantthemes.com
75 +License: GNU General Public License v2
76 +License URI: http://www.gnu.org/licenses/gpl-2.0.html
77 +*/
78 +a,abbr,acronym,address,applet,b,big,blockquote,body,center,cite,code,dd,del,dfn,div,dl,dt,em,fieldset,font,form,h1,h2,h3,h4,h5,h6,html,i,iframe,img,ins,kbd,label,legend,li,object,ol,p,pre,q,s,samp,small,span,strike,strong,sub,sup,tt,u,ul,var{margin:0;padding:0;border:0;outline:0;font-size:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;vertical-align:baseline;background:transparent}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:"";content:none}blockquote{margin:20px 0 30px;border-left:5px solid;padding-left:20px}:focus{outline:0}del{text-decoration:line-through}pre{overflow:auto;padding:10px}figure{margin:0}table{border-collapse:collapse;border-spacing:0}article,aside,footer,header,hgroup,nav,section{display:block}body{font-family:Open Sans,Arial,sans-serif;font-size:14px;color:#666;background-color:#fff;line-height:1.7em;font-weight:500;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body.page-template-page-template-blank-php #page-container{padding-top:0!important}body.et_cover_background{background-size:cover!important;background-position:top!important;background-repeat:no-repeat!important;background-attachment:fixed}a{color:#2ea3f2}a,a:hover{text-decoration:none}p{padding-bottom:1em}p:not(.has-background):last-of-type{padding-bottom:0}p.et_normal_padding{padding-bottom:1em}strong{font-weight:700}cite,em,i{font-style:italic}code,pre{font-family:Courier New,monospace;margin-bottom:10px}ins{text-decoration:none}sub,sup{height:0;line-height:1;position:relative;vertical-align:baseline}sup{bottom:.8em}sub{top:.3em}dl{margin:0 0 1.5em}dl dt{font-weight:700}dd{margin-left:1.5em}blockquote p{padding-bottom:0}embed,iframe,object,video{max-width:100%}h1,h2,h3,h4,h5,h6{color:#333;padding-bottom:10px;line-height:1em;font-weight:500}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:inherit}h1{font-size:30px}h2{font-size:26px}h3{font-size:22px}h4{font-size:18px}h5{font-size:16px}h6{font-size:14px}input{-webkit-appearance:none}input[type=checkbox]{-webkit-appearance:checkbox}input[type=radio]{-webkit-appearance:radio}input.text,input.title,input[type=email],input[type=password],input[type=tel],input[type=text],select,textarea{background-color:#fff;border:1px solid #bbb;padding:2px;color:#4e4e4e}input.text:focus,input.title:focus,input[type=text]:focus,select:focus,textarea:focus{border-color:#2d3940;color:#3e3e3e}input.text,input.title,input[type=text],select,textarea{margin:0}textarea{padding:4px}button,input,select,textarea{font-family:inherit}img{max-width:100%;height:auto}.clear{clear:both}br.clear{margin:0;padding:0}.pagination{clear:both}#et_search_icon:hover,.et-social-icon a:hover,.et_password_protected_form .et_submit_button,.form-submit .et_pb_buttontton.alt.disabled,.nav-single a,.posted_in a{color:#2ea3f2}.et-search-form,blockquote{border-color:#2ea3f2}#main-content{background-color:#fff}.container{width:80%;max-width:1080px;margin:auto;position:relative}body:not(.et-tb) #main-content .container,body:not(.et-tb-has-header) #main-content .container{padding-top:58px}.et_full_width_page #main-content .container:before{display:none}.main_title{margin-bottom:20px}.et_password_protected_form .et_submit_button:hover,.form-submit .et_pb_button:hover{background:rgba(0,0,0,.05)}.et_button_icon_visible .et_pb_button{padding-right:2em;padding-left:.7em}.et_button_icon_visible .et_pb_button:after{opacity:1;margin-left:0}.et_button_left .et_pb_button:hover:after{left:.15em}.et_button_left .et_pb_button:after{margin-left:0;left:1em}.et_button_icon_visible.et_button_left .et_pb_button,.et_button_left .et_pb_button:hover,.et_button_left .et_pb_module .et_pb_button:hover{padding-left:2em;padding-right:.7em}.et_button_icon_visible.et_button_left .et_pb_button:after,.et_button_left .et_pb_button:hover:after{left:.15em}.et_password_protected_form .et_submit_button:hover,.form-submit .et_pb_button:hover{padding:.3em 1em}.et_button_no_icon .et_pb_button:after{display:none}.et_button_no_icon.et_button_icon_visible.et_button_left .et_pb_button,.et_button_no_icon.et_button_left .et_pb_button:hover,.et_button_no_icon .et_pb_button,.et_button_no_icon .et_pb_button:hover{padding:.3em 1em!important}.et_button_custom_icon .et_pb_button:after{line-height:1.7em}.et_button_custom_icon.et_button_icon_visible .et_pb_button:after,.et_button_custom_icon .et_pb_button:hover:after{margin-left:.3em}#left-area .post_format-post-format-gallery .wp-block-gallery:first-of-type{padding:0;margin-bottom:-16px}.entry-content table:not(.variations){border:1px solid #eee;margin:0 0 15px;text-align:left;width:100%}.entry-content thead th,.entry-content tr th{color:#555;font-weight:700;padding:9px 24px}.entry-content tr td{border-top:1px solid #eee;padding:6px 24px}#left-area ul,.entry-content ul,.et-l--body ul,.et-l--footer ul,.et-l--header ul{list-style-type:disc;padding:0 0 23px 1em;line-height:26px}#left-area ol,.entry-content ol,.et-l--body ol,.et-l--footer ol,.et-l--header ol{list-style-type:decimal;list-style-position:inside;padding:0 0 23px;line-height:26px}#left-area ul li ul,.entry-content ul li ol{padding:2px 0 2px 20px}#left-area ol li ul,.entry-content ol li ol,.et-l--body ol li ol,.et-l--footer ol li ol,.et-l--header ol li ol{padding:2px 0 2px 35px}#left-area ul.wp-block-gallery{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;list-style-type:none;padding:0}#left-area ul.products{padding:0!important;line-height:1.7!important;list-style:none!important}.gallery-item a{display:block}.gallery-caption,.gallery-item a{width:90%}#wpadminbar{z-index:100001}#left-area .post-meta{font-size:14px;padding-bottom:15px}#left-area .post-meta a{text-decoration:none;color:#666}#left-area .et_featured_image{padding-bottom:7px}.single .post{padding-bottom:25px}body.single .et_audio_content{margin-bottom:-6px}.nav-single a{text-decoration:none;color:#2ea3f2;font-size:14px;font-weight:400}.nav-previous{float:left}.nav-next{float:right}.et_password_protected_form p input{background-color:#eee;border:none!important;width:100%!important;border-radius:0!important;font-size:14px;color:#999!important;padding:16px!important;-webkit-box-sizing:border-box;box-sizing:border-box}.et_password_protected_form label{display:none}.et_password_protected_form .et_submit_button{font-family:inherit;display:block;float:right;margin:8px auto 0;cursor:pointer}.post-password-required p.nocomments.container{max-width:100%}.post-password-required p.nocomments.container:before{display:none}.aligncenter,div.post .new-post .aligncenter{display:block;margin-left:auto;margin-right:auto}.wp-caption{border:1px solid #ddd;text-align:center;background-color:#f3f3f3;margin-bottom:10px;max-width:96%;padding:8px}.wp-caption.alignleft{margin:0 30px 20px 0}.wp-caption.alignright{margin:0 0 20px 30px}.wp-caption img{margin:0;padding:0;border:0}.wp-caption p.wp-caption-text{font-size:12px;padding:0 4px 5px;margin:0}.alignright{float:right}.alignleft{float:left}img.alignleft{display:inline;float:left;margin-right:15px}img.alignright{display:inline;float:right;margin-left:15px}.page.et_pb_pagebuilder_layout #main-content{background-color:transparent}body #main-content .et_builder_inner_content>h1,body #main-content .et_builder_inner_content>h2,body #main-content .et_builder_inner_content>h3,body #main-content .et_builder_inner_content>h4,body #main-content .et_builder_inner_content>h5,body #main-content .et_builder_inner_content>h6{line-height:1.4em}body #main-content .et_builder_inner_content>p{line-height:1.7em}.wp-block-pullquote{margin:20px 0 30px}.wp-block-pullquote.has-background blockquote{border-left:none}.wp-block-group.has-background{padding:1.5em 1.5em .5em}@media (min-width:981px){#left-area{width:79.125%;padding-bottom:23px}#main-content .container:before{content:"";position:absolute;top:0;height:100%;width:1px;background-color:#e2e2e2}.et_full_width_page #left-area,.et_no_sidebar #left-area{float:none;width:100%!important}.et_full_width_page #left-area{padding-bottom:0}.et_no_sidebar #main-content .container:before{display:none}}@media (max-width:980px){#page-container{padding-top:80px}.et-tb #page-container,.et-tb-has-header #page-container{padding-top:0!important}#left-area,#sidebar{width:100%!important}#main-content .container:before{display:none!important}.et_full_width_page .et_gallery_item:nth-child(4n+1){clear:none}}@media print{#page-container{padding-top:0!important}}#wp-admin-bar-et-use-visual-builder a:before{font-family:ETmodules!important;content:"\e625";font-size:30px!important;width:28px;margin-top:-3px;color:#974df3!important}#wp-admin-bar-et-use-visual-builder:hover a:before{color:#fff!important}#wp-admin-bar-et-use-visual-builder:hover a,#wp-admin-bar-et-use-visual-builder a:hover{transition:background-color .5s ease;-webkit-transition:background-color .5s ease;-moz-transition:background-color .5s ease;background-color:#7e3bd0!important;color:#fff!important}* html .clearfix,:first-child+html .clearfix{zoom:1}.iphone .et_pb_section_video_bg video::-webkit-media-controls-start-playback-button{display:none!important;-webkit-appearance:none}.et_mobile_device .et_pb_section_parallax .et_pb_parallax_css{background-attachment:scroll}.et-social-facebook a.icon:before{content:"\e093"}.et-social-twitter a.icon:before{content:"\e094"}.et-social-google-plus a.icon:before{content:"\e096"}.et-social-instagram a.icon:before{content:"\e09a"}.et-social-rss a.icon:before{content:"\e09e"}.ai1ec-single-event:after{content:" ";display:table;clear:both}.evcal_event_details .evcal_evdata_cell .eventon_details_shading_bot.eventon_details_shading_bot{z-index:3}.wp-block-divi-layout{margin-bottom:1em}*{-webkit-box-sizing:border-box;box-sizing:border-box}#et-info-email:before,#et-info-phone:before,#et_search_icon:before,.comment-reply-link:after,.et-cart-info span:before,.et-pb-arrow-next:before,.et-pb-arrow-prev:before,.et-social-icon a:before,.et_audio_container .mejs-playpause-button button:before,.et_audio_container .mejs-volume-button button:before,.et_overlay:before,.et_password_protected_form .et_submit_button:after,.et_pb_button:after,.et_pb_contact_reset:after,.et_pb_contact_submit:after,.et_pb_font_icon:before,.et_pb_newsletter_button:after,.et_pb_pricing_table_button:after,.et_pb_promo_button:after,.et_pb_testimonial:before,.et_pb_toggle_title:before,.form-submit .et_pb_button:after,.mobile_menu_bar:before,a.et_pb_more_button:after{font-family:ETmodules!important;speak:none;font-style:normal;font-weight:400;-webkit-font-feature-settings:normal;font-feature-settings:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-shadow:0 0;direction:ltr}.et-pb-icon,.et_pb_custom_button_icon.et_pb_button:after,.et_pb_login .et_pb_custom_button_icon.et_pb_button:after,.et_pb_woo_custom_button_icon .button.et_pb_custom_button_icon.et_pb_button:after,.et_pb_woo_custom_button_icon .button.et_pb_custom_button_icon.et_pb_button:hover:after{content:attr(data-icon)}.et-pb-icon{font-family:ETmodules;speak:none;font-weight:400;-webkit-font-feature-settings:normal;font-feature-settings:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;font-size:96px;font-style:normal;display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;direction:ltr}#et-ajax-saving{display:none;-webkit-transition:background .3s,-webkit-box-shadow .3s;transition:background .3s,-webkit-box-shadow .3s;transition:background .3s,box-shadow .3s;transition:background .3s,box-shadow .3s,-webkit-box-shadow .3s;-webkit-box-shadow:rgba(0,139,219,.247059) 0 0 60px;box-shadow:0 0 60px rgba(0,139,219,.247059);position:fixed;top:50%;left:50%;width:50px;height:50px;background:#fff;border-radius:50px;margin:-25px 0 0 -25px;z-index:999999;text-align:center}#et-ajax-saving img{margin:9px}.et-safe-mode-indicator,.et-safe-mode-indicator:focus,.et-safe-mode-indicator:hover{-webkit-box-shadow:0 5px 10px rgba(41,196,169,.15);box-shadow:0 5px 10px rgba(41,196,169,.15);background:#29c4a9;color:#fff;font-size:14px;font-weight:600;padding:12px;line-height:16px;border-radius:3px;position:fixed;bottom:30px;right:30px;z-index:999999;text-decoration:none;font-family:Open Sans,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.et_pb_button{font-size:20px;font-weight:500;padding:.3em 1em;line-height:1.7em!important;background-color:transparent;background-size:cover;background-position:50%;background-repeat:no-repeat;border:2px solid;border-radius:3px;-webkit-transition-duration:.2s;transition-duration:.2s;-webkit-transition-property:all!important;transition-property:all!important}.et_pb_button,.et_pb_button_inner{position:relative}.et_pb_button:hover,.et_pb_module .et_pb_button:hover{border:2px solid transparent;padding:.3em 2em .3em .7em}.et_pb_button:hover{background-color:hsla(0,0%,100%,.2)}.et_pb_bg_layout_light.et_pb_button:hover,.et_pb_bg_layout_light .et_pb_button:hover{background-color:rgba(0,0,0,.05)}.et_pb_button:after,.et_pb_button:before{font-size:32px;line-height:1em;content:"\35";opacity:0;position:absolute;margin-left:-1em;-webkit-transition:all .2s;transition:all .2s;text-transform:none;-webkit-font-feature-settings:"kern" off;font-feature-settings:"kern" off;font-variant:none;font-style:normal;font-weight:400;text-shadow:none}.et_pb_button.et_hover_enabled:hover:after,.et_pb_button.et_pb_hovered:hover:after{-webkit-transition:none!important;transition:none!important}.et_pb_button:before{display:none}.et_pb_button:hover:after{opacity:1;margin-left:0}.et_pb_column_1_3 h1,.et_pb_column_1_4 h1,.et_pb_column_1_5 h1,.et_pb_column_1_6 h1,.et_pb_column_2_5 h1{font-size:26px}.et_pb_column_1_3 h2,.et_pb_column_1_4 h2,.et_pb_column_1_5 h2,.et_pb_column_1_6 h2,.et_pb_column_2_5 h2{font-size:23px}.et_pb_column_1_3 h3,.et_pb_column_1_4 h3,.et_pb_column_1_5 h3,.et_pb_column_1_6 h3,.et_pb_column_2_5 h3{font-size:20px}.et_pb_column_1_3 h4,.et_pb_column_1_4 h4,.et_pb_column_1_5 h4,.et_pb_column_1_6 h4,.et_pb_column_2_5 h4{font-size:18px}.et_pb_column_1_3 h5,.et_pb_column_1_4 h5,.et_pb_column_1_5 h5,.et_pb_column_1_6 h5,.et_pb_column_2_5 h5{font-size:16px}.et_pb_column_1_3 h6,.et_pb_column_1_4 h6,.et_pb_column_1_5 h6,.et_pb_column_1_6 h6,.et_pb_column_2_5 h6{font-size:15px}.et_pb_bg_layout_dark,.et_pb_bg_layout_dark h1,.et_pb_bg_layout_dark h2,.et_pb_bg_layout_dark h3,.et_pb_bg_layout_dark h4,.et_pb_bg_layout_dark h5,.et_pb_bg_layout_dark h6{color:#fff!important}.et_pb_module.et_pb_text_align_left{text-align:left}.et_pb_module.et_pb_text_align_center{text-align:center}.et_pb_module.et_pb_text_align_right{text-align:right}.et_pb_module.et_pb_text_align_justified{text-align:justify}.clearfix:after{visibility:hidden;display:block;font-size:0;content:" ";clear:both;height:0}.et_pb_bg_layout_light .et_pb_more_button{color:#2ea3f2}.et_builder_inner_content{position:relative;z-index:1}header .et_builder_inner_content{z-index:2}.et_pb_css_mix_blend_mode_passthrough{mix-blend-mode:unset!important}.et_pb_image_container{margin:-20px -20px 29px}.et_pb_module_inner{position:relative}.et_hover_enabled_preview{z-index:2}.et_hover_enabled:hover{position:relative;z-index:2}.et_pb_all_tabs,.et_pb_module,.et_pb_posts_nav a,.et_pb_tab,.et_pb_with_background{position:relative;background-size:cover;background-position:50%;background-repeat:no-repeat}.et_pb_background_mask,.et_pb_background_pattern{bottom:0;left:0;position:absolute;right:0;top:0}.et_pb_background_mask{background-size:calc(100% + 2px) calc(100% + 2px);background-repeat:no-repeat;background-position:50%;overflow:hidden}.et_pb_background_pattern{background-position:0 0;background-repeat:repeat}.et_pb_with_border{position:relative;border:0 solid #333}.post-password-required .et_pb_row{padding:0;width:100%}.post-password-required .et_password_protected_form{min-height:0}body.et_pb_pagebuilder_layout.et_pb_show_title .post-password-required .et_password_protected_form h1,body:not(.et_pb_pagebuilder_layout) .post-password-required .et_password_protected_form h1{display:none}.et_pb_no_bg{padding:0!important}.et_overlay.et_pb_inline_icon:before,.et_pb_inline_icon:before{content:attr(data-icon)}.et_pb_more_button{color:inherit;text-shadow:none;text-decoration:none;display:inline-block;margin-top:20px}.et_parallax_bg_wrap{overflow:hidden;position:absolute;top:0;right:0;bottom:0;left:0}.et_parallax_bg{background-repeat:no-repeat;background-position:top;background-size:cover;position:absolute;bottom:0;left:0;width:100%;height:100%;display:block}.et_parallax_bg.et_parallax_bg__hover,.et_parallax_bg.et_parallax_bg_phone,.et_parallax_bg.et_parallax_bg_tablet,.et_parallax_gradient.et_parallax_gradient__hover,.et_parallax_gradient.et_parallax_gradient_phone,.et_parallax_gradient.et_parallax_gradient_tablet,.et_pb_section_parallax_hover:hover .et_parallax_bg:not(.et_parallax_bg__hover),.et_pb_section_parallax_hover:hover .et_parallax_gradient:not(.et_parallax_gradient__hover){display:none}.et_pb_section_parallax_hover:hover .et_parallax_bg.et_parallax_bg__hover,.et_pb_section_parallax_hover:hover .et_parallax_gradient.et_parallax_gradient__hover{display:block}.et_parallax_gradient{bottom:0;display:block;left:0;position:absolute;right:0;top:0}.et_pb_module.et_pb_section_parallax,.et_pb_posts_nav a.et_pb_section_parallax,.et_pb_tab.et_pb_section_parallax{position:relative}.et_pb_section_parallax .et_pb_parallax_css,.et_pb_slides .et_parallax_bg.et_pb_parallax_css{background-attachment:fixed}body.et-bfb .et_pb_section_parallax .et_pb_parallax_css,body.et-bfb .et_pb_slides .et_parallax_bg.et_pb_parallax_css{background-attachment:scroll;bottom:auto}.et_pb_section_parallax.et_pb_column .et_pb_module,.et_pb_section_parallax.et_pb_row .et_pb_column,.et_pb_section_parallax.et_pb_row .et_pb_module{z-index:9;position:relative}.et_pb_more_button:hover:after{opacity:1;margin-left:0}.et_pb_preload .et_pb_section_video_bg,.et_pb_preload>div{visibility:hidden}.et_pb_preload,.et_pb_section.et_pb_section_video.et_pb_preload{position:relative;background:#464646!important}.et_pb_preload:before{content:"";position:absolute;top:50%;left:50%;background:url(https://immeublesbrio.com/wp-content/themes/Divi/includes/builder/styles/images/preloader.gif) no-repeat;border-radius:32px;width:32px;height:32px;margin:-16px 0 0 -16px}.box-shadow-overlay{position:absolute;top:0;left:0;width:100%;height:100%;z-index:10;pointer-events:none}.et_pb_section>.box-shadow-overlay~.et_pb_row{z-index:11}body.safari .section_has_divider{will-change:transform}.et_pb_row>.box-shadow-overlay{z-index:8}.has-box-shadow-overlay{position:relative}.et_clickable{cursor:pointer}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important}.et_multi_view_hidden,.et_multi_view_hidden_image{display:none!important}@keyframes multi-view-image-fade{0%{opacity:0}10%{opacity:.1}20%{opacity:.2}30%{opacity:.3}40%{opacity:.4}50%{opacity:.5}60%{opacity:.6}70%{opacity:.7}80%{opacity:.8}90%{opacity:.9}to{opacity:1}}.et_multi_view_image__loading{visibility:hidden}.et_multi_view_image__loaded{-webkit-animation:multi-view-image-fade .5s;animation:multi-view-image-fade .5s}#et-pb-motion-effects-offset-tracker{visibility:hidden!important;opacity:0;position:absolute;top:0;left:0}.et-pb-before-scroll-animation{opacity:0}header.et-l.et-l--header:after{clear:both;display:block;content:""}.et_pb_module{-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-duration:.2s;animation-duration:.2s}@-webkit-keyframes fadeBottom{0%{opacity:0;-webkit-transform:translateY(10%);transform:translateY(10%)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeBottom{0%{opacity:0;-webkit-transform:translateY(10%);transform:translateY(10%)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeLeft{0%{opacity:0;-webkit-transform:translateX(-10%);transform:translateX(-10%)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeLeft{0%{opacity:0;-webkit-transform:translateX(-10%);transform:translateX(-10%)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes fadeRight{0%{opacity:0;-webkit-transform:translateX(10%);transform:translateX(10%)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeRight{0%{opacity:0;-webkit-transform:translateX(10%);transform:translateX(10%)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes fadeTop{0%{opacity:0;-webkit-transform:translateY(-10%);transform:translateY(-10%)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeTop{0%{opacity:0;-webkit-transform:translateY(-10%);transform:translateY(-10%)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.et-waypoint:not(.et_pb_counters){opacity:0}@media (min-width:981px){.et_pb_section.et_section_specialty div.et_pb_row .et_pb_column .et_pb_column .et_pb_module.et-last-child,.et_pb_section.et_section_specialty div.et_pb_row .et_pb_column .et_pb_column .et_pb_module:last-child,.et_pb_section.et_section_specialty div.et_pb_row .et_pb_column .et_pb_row_inner .et_pb_column .et_pb_module.et-last-child,.et_pb_section.et_section_specialty div.et_pb_row .et_pb_column .et_pb_row_inner .et_pb_column .et_pb_module:last-child,.et_pb_section div.et_pb_row .et_pb_column .et_pb_module.et-last-child,.et_pb_section div.et_pb_row .et_pb_column .et_pb_module:last-child{margin-bottom:0}}@media (max-width:980px){.et_overlay.et_pb_inline_icon_tablet:before,.et_pb_inline_icon_tablet:before{content:attr(data-icon-tablet)}.et_parallax_bg.et_parallax_bg_tablet_exist,.et_parallax_gradient.et_parallax_gradient_tablet_exist{display:none}.et_parallax_bg.et_parallax_bg_tablet,.et_parallax_gradient.et_parallax_gradient_tablet{display:block}.et_pb_column .et_pb_module{margin-bottom:30px}.et_pb_row .et_pb_column .et_pb_module.et-last-child,.et_pb_row .et_pb_column .et_pb_module:last-child,.et_section_specialty .et_pb_row .et_pb_column .et_pb_module.et-last-child,.et_section_specialty .et_pb_row .et_pb_column .et_pb_module:last-child{margin-bottom:0}.et_pb_more_button{display:inline-block!important}.et_pb_bg_layout_light_tablet.et_pb_button,.et_pb_bg_layout_light_tablet.et_pb_module.et_pb_button,.et_pb_bg_layout_light_tablet .et_pb_more_button{color:#2ea3f2}.et_pb_bg_layout_light_tablet .et_pb_forgot_password a{color:#666}.et_pb_bg_layout_light_tablet h1,.et_pb_bg_layout_light_tablet h2,.et_pb_bg_layout_light_tablet h3,.et_pb_bg_layout_light_tablet h4,.et_pb_bg_layout_light_tablet h5,.et_pb_bg_layout_light_tablet h6{color:#333!important}.et_pb_module .et_pb_bg_layout_light_tablet.et_pb_button{color:#2ea3f2!important}.et_pb_bg_layout_light_tablet{color:#666!important}.et_pb_bg_layout_dark_tablet,.et_pb_bg_layout_dark_tablet h1,.et_pb_bg_layout_dark_tablet h2,.et_pb_bg_layout_dark_tablet h3,.et_pb_bg_layout_dark_tablet h4,.et_pb_bg_layout_dark_tablet h5,.et_pb_bg_layout_dark_tablet h6{color:#fff!important}.et_pb_bg_layout_dark_tablet.et_pb_button,.et_pb_bg_layout_dark_tablet.et_pb_module.et_pb_button,.et_pb_bg_layout_dark_tablet .et_pb_more_button{color:inherit}.et_pb_bg_layout_dark_tablet .et_pb_forgot_password a{color:#fff}.et_pb_module.et_pb_text_align_left-tablet{text-align:left}.et_pb_module.et_pb_text_align_center-tablet{text-align:center}.et_pb_module.et_pb_text_align_right-tablet{text-align:right}.et_pb_module.et_pb_text_align_justified-tablet{text-align:justify}}@media (max-width:767px){.et_pb_more_button{display:inline-block!important}.et_overlay.et_pb_inline_icon_phone:before,.et_pb_inline_icon_phone:before{content:attr(data-icon-phone)}.et_parallax_bg.et_parallax_bg_phone_exist,.et_parallax_gradient.et_parallax_gradient_phone_exist{display:none}.et_parallax_bg.et_parallax_bg_phone,.et_parallax_gradient.et_parallax_gradient_phone{display:block}.et-hide-mobile{display:none!important}.et_pb_bg_layout_light_phone.et_pb_button,.et_pb_bg_layout_light_phone.et_pb_module.et_pb_button,.et_pb_bg_layout_light_phone .et_pb_more_button{color:#2ea3f2}.et_pb_bg_layout_light_phone .et_pb_forgot_password a{color:#666}.et_pb_bg_layout_light_phone h1,.et_pb_bg_layout_light_phone h2,.et_pb_bg_layout_light_phone h3,.et_pb_bg_layout_light_phone h4,.et_pb_bg_layout_light_phone h5,.et_pb_bg_layout_light_phone h6{color:#333!important}.et_pb_module .et_pb_bg_layout_light_phone.et_pb_button{color:#2ea3f2!important}.et_pb_bg_layout_light_phone{color:#666!important}.et_pb_bg_layout_dark_phone,.et_pb_bg_layout_dark_phone h1,.et_pb_bg_layout_dark_phone h2,.et_pb_bg_layout_dark_phone h3,.et_pb_bg_layout_dark_phone h4,.et_pb_bg_layout_dark_phone h5,.et_pb_bg_layout_dark_phone h6{color:#fff!important}.et_pb_bg_layout_dark_phone.et_pb_button,.et_pb_bg_layout_dark_phone.et_pb_module.et_pb_button,.et_pb_bg_layout_dark_phone .et_pb_more_button{color:inherit}.et_pb_module .et_pb_bg_layout_dark_phone.et_pb_button{color:#fff!important}.et_pb_bg_layout_dark_phone .et_pb_forgot_password a{color:#fff}.et_pb_module.et_pb_text_align_left-phone{text-align:left}.et_pb_module.et_pb_text_align_center-phone{text-align:center}.et_pb_module.et_pb_text_align_right-phone{text-align:right}.et_pb_module.et_pb_text_align_justified-phone{text-align:justify}}@media (max-width:479px){a.et_pb_more_button{display:block}}@media (min-width:768px) and (max-width:980px){[data-et-multi-view-load-tablet-hidden=true]:not(.et_multi_view_swapped){display:none!important}}@media (max-width:767px){[data-et-multi-view-load-phone-hidden=true]:not(.et_multi_view_swapped){display:none!important}}.et_pb_menu.et_pb_menu--style-inline_centered_logo .et_pb_menu__menu nav ul{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@-webkit-keyframes multi-view-image-fade{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}50%{-webkit-transform:scale(1.01);transform:scale(1.01);opacity:1}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}
79 +/*# sourceURL=divi-style-inline-inline-css */
80 +</style>
81 +<style id="divi-dynamic-critical-inline-css">
82 +@font-face{font-family:ETmodules;font-display:block;src:url(//immeublesbrio.com/wp-content/themes/Divi/core/admin/fonts/modules/all/modules.eot);src:url(//immeublesbrio.com/wp-content/themes/Divi/core/admin/fonts/modules/all/modules.eot?#iefix) format("embedded-opentype"),url(//immeublesbrio.com/wp-content/themes/Divi/core/admin/fonts/modules/all/modules.woff) format("woff"),url(//immeublesbrio.com/wp-content/themes/Divi/core/admin/fonts/modules/all/modules.ttf) format("truetype"),url(//immeublesbrio.com/wp-content/themes/Divi/core/admin/fonts/modules/all/modules.svg#ETmodules) format("svg");font-weight:400;font-style:normal}
83 +@media (min-width:981px){.et_pb_gutters3 .et_pb_column,.et_pb_gutters3.et_pb_row .et_pb_column{margin-right:5.5%}.et_pb_gutters3 .et_pb_column_4_4,.et_pb_gutters3.et_pb_row .et_pb_column_4_4{width:100%}.et_pb_gutters3 .et_pb_column_4_4 .et_pb_module,.et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_module{margin-bottom:2.75%}.et_pb_gutters3 .et_pb_column_3_4,.et_pb_gutters3.et_pb_row .et_pb_column_3_4{width:73.625%}.et_pb_gutters3 .et_pb_column_3_4 .et_pb_module,.et_pb_gutters3.et_pb_row .et_pb_column_3_4 .et_pb_module{margin-bottom:3.735%}.et_pb_gutters3 .et_pb_column_2_3,.et_pb_gutters3.et_pb_row .et_pb_column_2_3{width:64.833%}.et_pb_gutters3 .et_pb_column_2_3 .et_pb_module,.et_pb_gutters3.et_pb_row .et_pb_column_2_3 .et_pb_module{margin-bottom:4.242%}.et_pb_gutters3 .et_pb_column_3_5,.et_pb_gutters3.et_pb_row .et_pb_column_3_5{width:57.8%}.et_pb_gutters3 .et_pb_column_3_5 .et_pb_module,.et_pb_gutters3.et_pb_row .et_pb_column_3_5 .et_pb_module{margin-bottom:4.758%}.et_pb_gutters3 .et_pb_column_1_2,.et_pb_gutters3.et_pb_row .et_pb_column_1_2{width:47.25%}.et_pb_gutters3 .et_pb_column_1_2 .et_pb_module,.et_pb_gutters3.et_pb_row .et_pb_column_1_2 .et_pb_module{margin-bottom:5.82%}.et_pb_gutters3 .et_pb_column_2_5,.et_pb_gutters3.et_pb_row .et_pb_column_2_5{width:36.7%}.et_pb_gutters3 .et_pb_column_2_5 .et_pb_module,.et_pb_gutters3.et_pb_row .et_pb_column_2_5 .et_pb_module{margin-bottom:7.493%}.et_pb_gutters3 .et_pb_column_1_3,.et_pb_gutters3.et_pb_row .et_pb_column_1_3{width:29.6667%}.et_pb_gutters3 .et_pb_column_1_3 .et_pb_module,.et_pb_gutters3.et_pb_row .et_pb_column_1_3 .et_pb_module{margin-bottom:9.27%}.et_pb_gutters3 .et_pb_column_1_4,.et_pb_gutters3.et_pb_row .et_pb_column_1_4{width:20.875%}.et_pb_gutters3 .et_pb_column_1_4 .et_pb_module,.et_pb_gutters3.et_pb_row .et_pb_column_1_4 .et_pb_module{margin-bottom:13.174%}.et_pb_gutters3 .et_pb_column_1_5,.et_pb_gutters3.et_pb_row .et_pb_column_1_5{width:15.6%}.et_pb_gutters3 .et_pb_column_1_5 .et_pb_module,.et_pb_gutters3.et_pb_row .et_pb_column_1_5 .et_pb_module{margin-bottom:17.628%}.et_pb_gutters3 .et_pb_column_1_6,.et_pb_gutters3.et_pb_row .et_pb_column_1_6{width:12.0833%}.et_pb_gutters3 .et_pb_column_1_6 .et_pb_module,.et_pb_gutters3.et_pb_row .et_pb_column_1_6 .et_pb_module{margin-bottom:22.759%}.et_pb_gutters3 .et_full_width_page.woocommerce-page ul.products li.product{width:20.875%;margin-right:5.5%;margin-bottom:5.5%}.et_pb_gutters3.et_left_sidebar.woocommerce-page #main-content ul.products li.product,.et_pb_gutters3.et_right_sidebar.woocommerce-page #main-content ul.products li.product{width:28.353%;margin-right:7.47%}.et_pb_gutters3.et_left_sidebar.woocommerce-page #main-content ul.products.columns-1 li.product,.et_pb_gutters3.et_right_sidebar.woocommerce-page #main-content ul.products.columns-1 li.product{width:100%;margin-right:0}.et_pb_gutters3.et_left_sidebar.woocommerce-page #main-content ul.products.columns-2 li.product,.et_pb_gutters3.et_right_sidebar.woocommerce-page #main-content ul.products.columns-2 li.product{width:48%;margin-right:4%}.et_pb_gutters3.et_left_sidebar.woocommerce-page #main-content ul.products.columns-2 li:nth-child(2n+2),.et_pb_gutters3.et_right_sidebar.woocommerce-page #main-content ul.products.columns-2 li:nth-child(2n+2){margin-right:0}.et_pb_gutters3.et_left_sidebar.woocommerce-page #main-content ul.products.columns-2 li:nth-child(3n+1),.et_pb_gutters3.et_right_sidebar.woocommerce-page #main-content ul.products.columns-2 li:nth-child(3n+1){clear:none}}
84 +@media (min-width:981px){.et_pb_gutter.et_pb_gutters1 #left-area{width:75%}.et_pb_gutter.et_pb_gutters1 #sidebar{width:25%}.et_pb_gutters1.et_right_sidebar #left-area{padding-right:0}.et_pb_gutters1.et_left_sidebar #left-area{padding-left:0}.et_pb_gutter.et_pb_gutters1.et_right_sidebar #main-content .container:before{right:25%!important}.et_pb_gutter.et_pb_gutters1.et_left_sidebar #main-content .container:before{left:25%!important}.et_pb_gutters1 .et_pb_column,.et_pb_gutters1.et_pb_row .et_pb_column{margin-right:0}.et_pb_gutters1 .et_pb_column_4_4,.et_pb_gutters1.et_pb_row .et_pb_column_4_4{width:100%}.et_pb_gutters1 .et_pb_column_4_4 .et_pb_module,.et_pb_gutters1.et_pb_row .et_pb_column_4_4 .et_pb_module{margin-bottom:0}.et_pb_gutters1 .et_pb_column_3_4,.et_pb_gutters1.et_pb_row .et_pb_column_3_4{width:75%}.et_pb_gutters1 .et_pb_column_3_4 .et_pb_module,.et_pb_gutters1.et_pb_row .et_pb_column_3_4 .et_pb_module{margin-bottom:0}.et_pb_gutters1 .et_pb_column_2_3,.et_pb_gutters1.et_pb_row .et_pb_column_2_3{width:66.667%}.et_pb_gutters1 .et_pb_column_2_3 .et_pb_module,.et_pb_gutters1.et_pb_row .et_pb_column_2_3 .et_pb_module{margin-bottom:0}.et_pb_gutters1 .et_pb_column_3_5,.et_pb_gutters1.et_pb_row .et_pb_column_3_5{width:60%}.et_pb_gutters1 .et_pb_column_3_5 .et_pb_module,.et_pb_gutters1.et_pb_row .et_pb_column_3_5 .et_pb_module{margin-bottom:0}.et_pb_gutters1 .et_pb_column_1_2,.et_pb_gutters1.et_pb_row .et_pb_column_1_2{width:50%}.et_pb_gutters1 .et_pb_column_1_2 .et_pb_module,.et_pb_gutters1.et_pb_row .et_pb_column_1_2 .et_pb_module{margin-bottom:0}.et_pb_gutters1 .et_pb_column_2_5,.et_pb_gutters1.et_pb_row .et_pb_column_2_5{width:40%}.et_pb_gutters1 .et_pb_column_2_5 .et_pb_module,.et_pb_gutters1.et_pb_row .et_pb_column_2_5 .et_pb_module{margin-bottom:0}.et_pb_gutters1 .et_pb_column_1_3,.et_pb_gutters1.et_pb_row .et_pb_column_1_3{width:33.3333%}.et_pb_gutters1 .et_pb_column_1_3 .et_pb_module,.et_pb_gutters1.et_pb_row .et_pb_column_1_3 .et_pb_module{margin-bottom:0}.et_pb_gutters1 .et_pb_column_1_4,.et_pb_gutters1.et_pb_row .et_pb_column_1_4{width:25%}.et_pb_gutters1 .et_pb_column_1_4 .et_pb_module,.et_pb_gutters1.et_pb_row .et_pb_column_1_4 .et_pb_module{margin-bottom:0}.et_pb_gutters1 .et_pb_column_1_5,.et_pb_gutters1.et_pb_row .et_pb_column_1_5{width:20%}.et_pb_gutters1 .et_pb_column_1_5 .et_pb_module,.et_pb_gutters1.et_pb_row .et_pb_column_1_5 .et_pb_module{margin-bottom:0}.et_pb_gutters1 .et_pb_column_1_6,.et_pb_gutters1.et_pb_row .et_pb_column_1_6{width:16.6667%}.et_pb_gutters1 .et_pb_column_1_6 .et_pb_module,.et_pb_gutters1.et_pb_row .et_pb_column_1_6 .et_pb_module{margin-bottom:0}.et_pb_gutters1 .et_full_width_page.woocommerce-page ul.products li.product{width:25%;margin-right:0;margin-bottom:0}.et_pb_gutters1.et_left_sidebar.woocommerce-page #main-content ul.products li.product,.et_pb_gutters1.et_right_sidebar.woocommerce-page #main-content ul.products li.product{width:33.333%;margin-right:0}}@media (max-width:980px){.et_pb_gutters1 .et_pb_column,.et_pb_gutters1 .et_pb_column .et_pb_module,.et_pb_gutters1.et_pb_row .et_pb_column,.et_pb_gutters1.et_pb_row .et_pb_column .et_pb_module{margin-bottom:0}.et_pb_gutters1 .et_pb_row_1-2_1-4_1-4>.et_pb_column.et_pb_column_1_4,.et_pb_gutters1 .et_pb_row_1-4_1-4>.et_pb_column.et_pb_column_1_4,.et_pb_gutters1 .et_pb_row_1-4_1-4_1-2>.et_pb_column.et_pb_column_1_4,.et_pb_gutters1 .et_pb_row_1-5_1-5_3-5>.et_pb_column.et_pb_column_1_5,.et_pb_gutters1 .et_pb_row_3-5_1-5_1-5>.et_pb_column.et_pb_column_1_5,.et_pb_gutters1 .et_pb_row_4col>.et_pb_column.et_pb_column_1_4,.et_pb_gutters1 .et_pb_row_5col>.et_pb_column.et_pb_column_1_5,.et_pb_gutters1.et_pb_row_1-2_1-4_1-4>.et_pb_column.et_pb_column_1_4,.et_pb_gutters1.et_pb_row_1-4_1-4>.et_pb_column.et_pb_column_1_4,.et_pb_gutters1.et_pb_row_1-4_1-4_1-2>.et_pb_column.et_pb_column_1_4,.et_pb_gutters1.et_pb_row_1-5_1-5_3-5>.et_pb_column.et_pb_column_1_5,.et_pb_gutters1.et_pb_row_3-5_1-5_1-5>.et_pb_column.et_pb_column_1_5,.et_pb_gutters1.et_pb_row_4col>.et_pb_column.et_pb_column_1_4,.et_pb_gutters1.et_pb_row_5col>.et_pb_column.et_pb_column_1_5{width:50%;margin-right:0}.et_pb_gutters1 .et_pb_row_1-2_1-6_1-6_1-6>.et_pb_column.et_pb_column_1_6,.et_pb_gutters1 .et_pb_row_1-6_1-6_1-6>.et_pb_column.et_pb_column_1_6,.et_pb_gutters1 .et_pb_row_1-6_1-6_1-6_1-2>.et_pb_column.et_pb_column_1_6,.et_pb_gutters1 .et_pb_row_6col>.et_pb_column.et_pb_column_1_6,.et_pb_gutters1.et_pb_row_1-2_1-6_1-6_1-6>.et_pb_column.et_pb_column_1_6,.et_pb_gutters1.et_pb_row_1-6_1-6_1-6>.et_pb_column.et_pb_column_1_6,.et_pb_gutters1.et_pb_row_1-6_1-6_1-6_1-2>.et_pb_column.et_pb_column_1_6,.et_pb_gutters1.et_pb_row_6col>.et_pb_column.et_pb_column_1_6{width:33.333%;margin-right:0}.et_pb_gutters1 .et_pb_row_1-6_1-6_1-6_1-6>.et_pb_column.et_pb_column_1_6,.et_pb_gutters1.et_pb_row_1-6_1-6_1-6_1-6>.et_pb_column.et_pb_column_1_6{width:50%;margin-right:0}}@media (max-width:767px){.et_pb_gutters1 .et_pb_column,.et_pb_gutters1 .et_pb_column .et_pb_module,.et_pb_gutters1.et_pb_row .et_pb_column,.et_pb_gutters1.et_pb_row .et_pb_column .et_pb_module{margin-bottom:0}}@media (max-width:479px){.et_pb_gutters1 .et_pb_column,.et_pb_gutters1.et_pb_row .et_pb_column{margin:0!important}.et_pb_gutters1 .et_pb_column .et_pb_module,.et_pb_gutters1.et_pb_row .et_pb_column .et_pb_module{margin-bottom:0}}
85 +#et-secondary-menu li,#top-menu li{word-wrap:break-word}.nav li ul,.et_mobile_menu{border-color:#2EA3F2}.mobile_menu_bar:before,.mobile_menu_bar:after,#top-menu li.current-menu-ancestor>a,#top-menu li.current-menu-item>a{color:#2EA3F2}#main-header{-webkit-transition:background-color 0.4s, color 0.4s, opacity 0.4s ease-in-out, -webkit-transform 0.4s;transition:background-color 0.4s, color 0.4s, opacity 0.4s ease-in-out, -webkit-transform 0.4s;transition:background-color 0.4s, color 0.4s, transform 0.4s, opacity 0.4s ease-in-out;transition:background-color 0.4s, color 0.4s, transform 0.4s, opacity 0.4s ease-in-out, -webkit-transform 0.4s}#main-header.et-disabled-animations *{-webkit-transition-duration:0s !important;transition-duration:0s !important}.container{text-align:left;position:relative}.et_fixed_nav.et_show_nav #page-container{padding-top:80px}.et_fixed_nav.et_show_nav.et-tb #page-container,.et_fixed_nav.et_show_nav.et-tb-has-header #page-container{padding-top:0 !important}.et_fixed_nav.et_show_nav.et_secondary_nav_enabled #page-container{padding-top:111px}.et_fixed_nav.et_show_nav.et_secondary_nav_enabled.et_header_style_centered #page-container{padding-top:177px}.et_fixed_nav.et_show_nav.et_header_style_centered #page-container{padding-top:147px}.et_fixed_nav #main-header{position:fixed}.et-cloud-item-editor #page-container{padding-top:0 !important}.et_header_style_left #et-top-navigation{padding-top:33px}.et_header_style_left #et-top-navigation nav>ul>li>a{padding-bottom:33px}.et_header_style_left .logo_container{position:absolute;height:100%;width:100%}.et_header_style_left #et-top-navigation .mobile_menu_bar{padding-bottom:24px}.et_hide_search_icon #et_top_search{display:none !important}#logo{width:auto;-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out;margin-bottom:0;max-height:54%;display:inline-block;float:none;vertical-align:middle;-webkit-transform:translate3d(0, 0, 0)}.et_pb_svg_logo #logo{height:54%}.logo_container{-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out}span.logo_helper{display:inline-block;height:100%;vertical-align:middle;width:0}.safari .centered-inline-logo-wrap{-webkit-transform:translate3d(0, 0, 0);-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out}#et-define-logo-wrap img{width:100%}.gecko #et-define-logo-wrap.svg-logo{position:relative !important}#top-menu-nav,#top-menu{line-height:0}#et-top-navigation{font-weight:600}.et_fixed_nav #et-top-navigation{-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out}.et-cart-info span:before{content:"\e07a";margin-right:10px;position:relative}nav#top-menu-nav,#top-menu,nav.et-menu-nav,.et-menu{float:left}#top-menu li{display:inline-block;font-size:14px;padding-right:22px}#top-menu>li:last-child{padding-right:0}.et_fullwidth_nav.et_non_fixed_nav.et_header_style_left #top-menu>li:last-child>ul.sub-menu{right:0}#top-menu a{color:rgba(0,0,0,0.6);text-decoration:none;display:block;position:relative;-webkit-transition:opacity 0.4s ease-in-out, background-color 0.4s ease-in-out;transition:opacity 0.4s ease-in-out, background-color 0.4s ease-in-out}#top-menu-nav>ul>li>a:hover{opacity:0.7;-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out}#et_search_icon:before{content:"\55";font-size:17px;left:0;position:absolute;top:-3px}#et_search_icon:hover{cursor:pointer}#et_top_search{float:right;margin:3px 0 0 22px;position:relative;display:block;width:18px}#et_top_search.et_search_opened{position:absolute;width:100%}.et-search-form{top:0;bottom:0;right:0;position:absolute;z-index:1000;width:100%}.et-search-form input{width:90%;border:none;color:#333;position:absolute;top:0;bottom:0;right:30px;margin:auto;background:transparent}.et-search-form .et-search-field::-ms-clear{width:0;height:0;display:none}.et_search_form_container{-webkit-animation:none;animation:none;-o-animation:none}.container.et_search_form_container{position:relative;opacity:0;height:1px}.container.et_search_form_container.et_pb_search_visible{z-index:999;-webkit-animation:fadeInTop 1s 1 cubic-bezier(0.77, 0, 0.175, 1);animation:fadeInTop 1s 1 cubic-bezier(0.77, 0, 0.175, 1)}.et_pb_search_visible.et_pb_no_animation{opacity:1}.et_pb_search_form_hidden{-webkit-animation:fadeOutTop 1s 1 cubic-bezier(0.77, 0, 0.175, 1);animation:fadeOutTop 1s 1 cubic-bezier(0.77, 0, 0.175, 1)}span.et_close_search_field{display:block;width:30px;height:30px;z-index:99999;position:absolute;right:0;cursor:pointer;top:0;bottom:0;margin:auto}span.et_close_search_field:after{font-family:'ETmodules';content:'\4d';speak:none;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;font-size:32px;display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box}.container.et_menu_container{z-index:99}.container.et_search_form_container.et_pb_search_form_hidden{z-index:1 !important}.et_search_outer{width:100%;overflow:hidden;position:absolute;top:0}.container.et_pb_menu_hidden{z-index:-1}form.et-search-form{background:rgba(0,0,0,0) !important}input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}.et-cart-info{color:inherit}#et-top-navigation .et-cart-info{float:left;margin:-2px 0 0 22px;font-size:16px}#et-top-navigation{float:right}#top-menu li li{padding:0 20px;margin:0}#top-menu li li a{padding:6px 20px;width:200px}.nav li.et-touch-hover>ul{opacity:1;visibility:visible}#top-menu .menu-item-has-children>a:first-child:after,#et-secondary-nav .menu-item-has-children>a:first-child:after{font-family:'ETmodules';content:"3";font-size:16px;position:absolute;right:0;top:0;font-weight:800}#top-menu .menu-item-has-children>a:first-child,#et-secondary-nav .menu-item-has-children>a:first-child{padding-right:20px}#top-menu li .menu-item-has-children>a:first-child{padding-right:40px}#top-menu li .menu-item-has-children>a:first-child:after{right:20px;top:6px}#top-menu li.mega-menu{position:inherit}#top-menu li.mega-menu>ul{padding:30px 20px;position:absolute !important;width:100%;left:0 !important}#top-menu li.mega-menu ul li{margin:0;float:left !important;display:block !important;padding:0 !important}#top-menu li.mega-menu>ul>li:nth-of-type(4n){clear:right}#top-menu li.mega-menu>ul>li:nth-of-type(4n+1){clear:left}#top-menu li.mega-menu ul li li{width:100%}#top-menu li.mega-menu li>ul{-webkit-animation:none !important;animation:none !important;padding:0px;border:none;left:auto;top:auto;width:90% !important;position:relative;-webkit-box-shadow:none;box-shadow:none}#top-menu li.mega-menu li ul{visibility:visible;opacity:1;display:none}#top-menu li.mega-menu.et-hover li ul{display:block}#top-menu li.mega-menu.et-hover>ul{opacity:1 !important;visibility:visible !important}#top-menu li.mega-menu>ul>li>a{width:90%;padding:0 20px 10px}#top-menu li.mega-menu>ul>li>a:first-child{padding-top:0 !important;font-weight:bold;border-bottom:1px solid rgba(0,0,0,0.03)}#top-menu li.mega-menu>ul>li>a:first-child:hover{background-color:transparent !important}#top-menu li.mega-menu li>a{width:100%}#top-menu li.mega-menu.mega-menu-parent li li,#top-menu li.mega-menu.mega-menu-parent li>a{width:100% !important}#top-menu li.mega-menu.mega-menu-parent li>.sub-menu{float:left;width:100% !important}#top-menu li.mega-menu>ul>li{width:25%;margin:0}#top-menu li.mega-menu.mega-menu-parent-3>ul>li{width:33.33%}#top-menu li.mega-menu.mega-menu-parent-2>ul>li{width:50%}#top-menu li.mega-menu.mega-menu-parent-1>ul>li{width:100%}#top-menu li.mega-menu .menu-item-has-children>a:first-child:after{display:none}#top-menu li.mega-menu>ul>li>ul>li{width:100%;margin:0}#et_mobile_nav_menu{float:right;display:none}.mobile_menu_bar{position:relative;display:block;line-height:0}.mobile_menu_bar:before,.et_toggle_slide_menu:after{content:"\61";font-size:32px;left:0;position:relative;top:0;cursor:pointer}.mobile_nav .select_page{display:none}.et_pb_menu_hidden #top-menu,.et_pb_menu_hidden #et_search_icon:before,.et_pb_menu_hidden .et-cart-info{opacity:0;-webkit-animation:fadeOutBottom 1s 1 cubic-bezier(0.77, 0, 0.175, 1);animation:fadeOutBottom 1s 1 cubic-bezier(0.77, 0, 0.175, 1)}.et_pb_menu_visible #top-menu,.et_pb_menu_visible #et_search_icon:before,.et_pb_menu_visible .et-cart-info{z-index:99;opacity:1;-webkit-animation:fadeInBottom 1s 1 cubic-bezier(0.77, 0, 0.175, 1);animation:fadeInBottom 1s 1 cubic-bezier(0.77, 0, 0.175, 1)}.et_pb_menu_hidden #top-menu,.et_pb_menu_hidden #et_search_icon:before,.et_pb_menu_hidden .mobile_menu_bar{opacity:0;-webkit-animation:fadeOutBottom 1s 1 cubic-bezier(0.77, 0, 0.175, 1);animation:fadeOutBottom 1s 1 cubic-bezier(0.77, 0, 0.175, 1)}.et_pb_menu_visible #top-menu,.et_pb_menu_visible #et_search_icon:before,.et_pb_menu_visible .mobile_menu_bar{z-index:99;opacity:1;-webkit-animation:fadeInBottom 1s 1 cubic-bezier(0.77, 0, 0.175, 1);animation:fadeInBottom 1s 1 cubic-bezier(0.77, 0, 0.175, 1)}.et_pb_no_animation #top-menu,.et_pb_no_animation #et_search_icon:before,.et_pb_no_animation .mobile_menu_bar,.et_pb_no_animation.et_search_form_container{animation:none !important;-o-animation:none !important;-webkit-animation:none !important;-moz-animation:none !important}body.admin-bar.et_fixed_nav #main-header{top:32px}body.et-wp-pre-3_8.admin-bar.et_fixed_nav #main-header{top:28px}body.et_fixed_nav.et_secondary_nav_enabled #main-header{top:30px}body.admin-bar.et_fixed_nav.et_secondary_nav_enabled #main-header{top:63px}@media all and (min-width: 981px){.et_hide_primary_logo #main-header:not(.et-fixed-header) .logo_container,.et_hide_fixed_logo #main-header.et-fixed-header .logo_container{height:0;opacity:0;-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out}.et_hide_primary_logo #main-header:not(.et-fixed-header) .centered-inline-logo-wrap,.et_hide_fixed_logo #main-header.et-fixed-header .centered-inline-logo-wrap{height:0;opacity:0;padding:0}.et-animated-content#page-container{-webkit-transition:margin-top 0.4s ease-in-out;transition:margin-top 0.4s ease-in-out}.et_hide_nav #page-container{-webkit-transition:none;transition:none}.et_fullwidth_nav .et-search-form,.et_fullwidth_nav .et_close_search_field{right:30px}#main-header.et-fixed-header{-webkit-box-shadow:0 0 7px rgba(0,0,0,0.1) !important;box-shadow:0 0 7px rgba(0,0,0,0.1) !important}.et_header_style_left .et-fixed-header #et-top-navigation{padding-top:20px}.et_header_style_left .et-fixed-header #et-top-navigation nav>ul>li>a{padding-bottom:20px}.et_hide_nav.et_fixed_nav #main-header{opacity:0}.et_hide_nav.et_fixed_nav .et-fixed-header#main-header{-webkit-transform:translateY(0px) !important;transform:translateY(0px) !important;opacity:1}.et_hide_nav .centered-inline-logo-wrap,.et_hide_nav.et_fixed_nav #main-header,.et_hide_nav.et_fixed_nav #main-header,.et_hide_nav .centered-inline-logo-wrap{-webkit-transition-duration:.7s;transition-duration:.7s}.et_hide_nav #page-container{padding-top:0 !important}.et_primary_nav_dropdown_animation_fade #et-top-navigation ul li:hover>ul,.et_secondary_nav_dropdown_animation_fade #et-secondary-nav li:hover>ul{-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.et_primary_nav_dropdown_animation_slide #et-top-navigation ul li:hover>ul,.et_secondary_nav_dropdown_animation_slide #et-secondary-nav li:hover>ul{-webkit-animation:fadeLeft .4s ease-in-out;animation:fadeLeft .4s ease-in-out}.et_primary_nav_dropdown_animation_expand #et-top-navigation ul li:hover>ul,.et_secondary_nav_dropdown_animation_expand #et-secondary-nav li:hover>ul{-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-animation:Grow .4s ease-in-out;animation:Grow .4s ease-in-out;-webkit-backface-visibility:visible !important;backface-visibility:visible !important}.et_primary_nav_dropdown_animation_flip #et-top-navigation ul li ul li:hover>ul,.et_secondary_nav_dropdown_animation_flip #et-secondary-nav ul li:hover>ul{-webkit-animation:flipInX .6s ease-in-out;animation:flipInX .6s ease-in-out;-webkit-backface-visibility:visible !important;backface-visibility:visible !important}.et_primary_nav_dropdown_animation_flip #et-top-navigation ul li:hover>ul,.et_secondary_nav_dropdown_animation_flip #et-secondary-nav li:hover>ul{-webkit-animation:flipInY .6s ease-in-out;animation:flipInY .6s ease-in-out;-webkit-backface-visibility:visible !important;backface-visibility:visible !important}.et_fullwidth_nav #main-header .container{width:100%;max-width:100%;padding-right:32px;padding-left:30px}.et_non_fixed_nav.et_fullwidth_nav.et_header_style_left #main-header .container{padding-left:0}.et_non_fixed_nav.et_fullwidth_nav.et_header_style_left .logo_container{padding-left:30px}}@media all and (max-width: 980px){.et_fixed_nav.et_show_nav.et_secondary_nav_enabled #page-container,.et_fixed_nav.et_show_nav #page-container{padding-top:80px}.et_fixed_nav.et_show_nav.et-tb #page-container,.et_fixed_nav.et_show_nav.et-tb-has-header #page-container{padding-top:0 !important}.et_non_fixed_nav #page-container{padding-top:0}.et_fixed_nav.et_secondary_nav_only_menu.admin-bar #main-header{top:32px !important}.et_hide_mobile_logo #main-header .logo_container{display:none;opacity:0;-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out}#top-menu{display:none}.et_hide_nav.et_fixed_nav #main-header{-webkit-transform:translateY(0px) !important;transform:translateY(0px) !important;opacity:1}#et-top-navigation{margin-right:0;-webkit-transition:none;transition:none}.et_fixed_nav #main-header{position:absolute}.et_header_style_left .et-fixed-header #et-top-navigation,.et_header_style_left #et-top-navigation{padding-top:24px;display:block}.et_fixed_nav #main-header{-webkit-transition:none;transition:none}.et_fixed_nav_temp #main-header{top:0 !important}#logo,.logo_container,#main-header,.container{-webkit-transition:none;transition:none}.et_header_style_left #logo{max-width:50%}#et_top_search{margin:0 35px 0 0;float:left}#et_search_icon:before{top:7px}.et_header_style_left .et-search-form{width:50% !important;max-width:50% !important}#et_mobile_nav_menu{display:block}#et-top-navigation .et-cart-info{margin-top:5px}}@media screen and (max-width: 782px){body.admin-bar.et_fixed_nav #main-header{top:46px}}@media all and (max-width: 767px){#et-top-navigation{margin-right:0}body.admin-bar.et_fixed_nav #main-header{top:46px}}@media all and (max-width: 479px){#et-top-navigation{margin-right:0}}@media print{#top-header,#main-header{position:relative !important;top:auto !important;right:auto !important;bottom:auto !important;left:auto !important}}
86 +@-webkit-keyframes fadeOutTop{0%{opacity:1;-webkit-transform:translatey(0);transform:translatey(0)}to{opacity:0;-webkit-transform:translatey(-60%);transform:translatey(-60%)}}@keyframes fadeOutTop{0%{opacity:1;-webkit-transform:translatey(0);transform:translatey(0)}to{opacity:0;-webkit-transform:translatey(-60%);transform:translatey(-60%)}}@-webkit-keyframes fadeInTop{0%{opacity:0;-webkit-transform:translatey(-60%);transform:translatey(-60%)}to{opacity:1;-webkit-transform:translatey(0);transform:translatey(0)}}@keyframes fadeInTop{0%{opacity:0;-webkit-transform:translatey(-60%);transform:translatey(-60%)}to{opacity:1;-webkit-transform:translatey(0);transform:translatey(0)}}@-webkit-keyframes fadeInBottom{0%{opacity:0;-webkit-transform:translatey(60%);transform:translatey(60%)}to{opacity:1;-webkit-transform:translatey(0);transform:translatey(0)}}@keyframes fadeInBottom{0%{opacity:0;-webkit-transform:translatey(60%);transform:translatey(60%)}to{opacity:1;-webkit-transform:translatey(0);transform:translatey(0)}}@-webkit-keyframes fadeOutBottom{0%{opacity:1;-webkit-transform:translatey(0);transform:translatey(0)}to{opacity:0;-webkit-transform:translatey(60%);transform:translatey(60%)}}@keyframes fadeOutBottom{0%{opacity:1;-webkit-transform:translatey(0);transform:translatey(0)}to{opacity:0;-webkit-transform:translatey(60%);transform:translatey(60%)}}@-webkit-keyframes Grow{0%{opacity:0;-webkit-transform:scaleY(.5);transform:scaleY(.5)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes Grow{0%{opacity:0;-webkit-transform:scaleY(.5);transform:scaleY(.5)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}/*!
87 + * Animate.css - http://daneden.me/animate
88 + * Licensed under the MIT license - http://opensource.org/licenses/MIT
89 + * Copyright (c) 2015 Daniel Eden
90 + */@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}
91 +#main-header{line-height:23px;font-weight:500;top:0;background-color:#fff;width:100%;-webkit-box-shadow:0 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 0 rgba(0,0,0,.1);position:relative;z-index:99999}.nav li li{padding:0 20px;margin:0}.et-menu li li a{padding:6px 20px;width:200px}.nav li{position:relative;line-height:1em}.nav li li{position:relative;line-height:2em}.nav li ul{position:absolute;padding:20px 0;z-index:9999;width:240px;background:#fff;visibility:hidden;opacity:0;border-top:3px solid #2ea3f2;box-shadow:0 2px 5px rgba(0,0,0,.1);-moz-box-shadow:0 2px 5px rgba(0,0,0,.1);-webkit-box-shadow:0 2px 5px rgba(0,0,0,.1);-webkit-transform:translateZ(0);text-align:left}.nav li.et-hover>ul{visibility:visible}.nav li.et-touch-hover>ul,.nav li:hover>ul{opacity:1;visibility:visible}.nav li li ul{z-index:1000;top:-23px;left:240px}.nav li.et-reverse-direction-nav li ul{left:auto;right:240px}.nav li:hover{visibility:inherit}.et_mobile_menu li a,.nav li li a{font-size:14px;-webkit-transition:opacity .2s ease-in-out,background-color .2s ease-in-out;transition:opacity .2s ease-in-out,background-color .2s ease-in-out}.et_mobile_menu li a:hover,.nav ul li a:hover{background-color:rgba(0,0,0,.03);opacity:.7}.et-dropdown-removing>ul{display:none}.mega-menu .et-dropdown-removing>ul{display:block}.et-menu .menu-item-has-children>a:first-child:after{font-family:ETmodules;content:"3";font-size:16px;position:absolute;right:0;top:0;font-weight:800}.et-menu .menu-item-has-children>a:first-child{padding-right:20px}.et-menu li li.menu-item-has-children>a:first-child:after{right:20px;top:6px}.et-menu-nav li.mega-menu{position:inherit}.et-menu-nav li.mega-menu>ul{padding:30px 20px;position:absolute!important;width:100%;left:0!important}.et-menu-nav li.mega-menu ul li{margin:0;float:left!important;display:block!important;padding:0!important}.et-menu-nav li.mega-menu li>ul{-webkit-animation:none!important;animation:none!important;padding:0;border:none;left:auto;top:auto;width:240px!important;position:relative;box-shadow:none;-webkit-box-shadow:none}.et-menu-nav li.mega-menu li ul{visibility:visible;opacity:1;display:none}.et-menu-nav li.mega-menu.et-hover li ul,.et-menu-nav li.mega-menu:hover li ul{display:block}.et-menu-nav li.mega-menu:hover>ul{opacity:1!important;visibility:visible!important}.et-menu-nav li.mega-menu>ul>li>a:first-child{padding-top:0!important;font-weight:700;border-bottom:1px solid rgba(0,0,0,.03)}.et-menu-nav li.mega-menu>ul>li>a:first-child:hover{background-color:transparent!important}.et-menu-nav li.mega-menu li>a{width:200px!important}.et-menu-nav li.mega-menu.mega-menu-parent li>a,.et-menu-nav li.mega-menu.mega-menu-parent li li{width:100%!important}.et-menu-nav li.mega-menu.mega-menu-parent li>.sub-menu{float:left;width:100%!important}.et-menu-nav li.mega-menu>ul>li{width:25%;margin:0}.et-menu-nav li.mega-menu.mega-menu-parent-3>ul>li{width:33.33%}.et-menu-nav li.mega-menu.mega-menu-parent-2>ul>li{width:50%}.et-menu-nav li.mega-menu.mega-menu-parent-1>ul>li{width:100%}.et_pb_fullwidth_menu li.mega-menu .menu-item-has-children>a:first-child:after,.et_pb_menu li.mega-menu .menu-item-has-children>a:first-child:after{display:none}.et_fullwidth_nav #top-menu li.mega-menu>ul{width:auto;left:30px!important;right:30px!important}.et_mobile_menu{position:absolute;left:0;padding:5%;background:#fff;width:100%;visibility:visible;opacity:1;display:none;z-index:9999;border-top:3px solid #2ea3f2;box-shadow:0 2px 5px rgba(0,0,0,.1);-moz-box-shadow:0 2px 5px rgba(0,0,0,.1);-webkit-box-shadow:0 2px 5px rgba(0,0,0,.1)}#main-header .et_mobile_menu li ul,.et_pb_fullwidth_menu .et_mobile_menu li ul,.et_pb_menu .et_mobile_menu li ul{visibility:visible!important;display:block!important;padding-left:10px}.et_mobile_menu li li{padding-left:5%}.et_mobile_menu li a{border-bottom:1px solid rgba(0,0,0,.03);color:#666;padding:10px 5%;display:block}.et_mobile_menu .menu-item-has-children>a{font-weight:700;background-color:rgba(0,0,0,.03)}.et_mobile_menu li .menu-item-has-children>a{background-color:transparent}.et_mobile_nav_menu{float:right;display:none}.mobile_menu_bar{position:relative;display:block;line-height:0}.mobile_menu_bar:before{content:"a";font-size:32px;position:relative;left:0;top:0;cursor:pointer}.et_pb_module .mobile_menu_bar:before{top:2px}.mobile_nav .select_page{display:none}
92 +#et-secondary-menu li{word-wrap:break-word}#top-header,#et-secondary-nav li ul{background-color:#2EA3F2}#top-header{font-size:12px;line-height:13px;z-index:100000;color:#ffffff}#top-header a,#top-header a{color:#ffffff}#top-header,#et-secondary-nav{-webkit-transition:background-color 0.4s, opacity 0.4s ease-in-out, -webkit-transform 0.4s;transition:background-color 0.4s, opacity 0.4s ease-in-out, -webkit-transform 0.4s;transition:background-color 0.4s, transform 0.4s, opacity 0.4s ease-in-out;transition:background-color 0.4s, transform 0.4s, opacity 0.4s ease-in-out, -webkit-transform 0.4s}#top-header .container{padding-top:.75em;font-weight:600}#top-header,#top-header .container,#top-header #et-info,#top-header .et-social-icon a{line-height:1em}.et_fixed_nav #top-header{top:0;left:0;right:0;position:fixed}#et-info{float:left}#et-info-phone,#et-info-email{position:relative}#et-info-phone:before{content:"\e090";position:relative;top:2px;margin-right:2px}#et-info-phone{margin-right:13px}#et-info-email:before{content:"\e076";margin-right:4px}#top-header .et-social-icons{float:none;display:inline-block}#et-secondary-menu .et-social-icons{margin-right:20px}#top-header .et-social-icons li{margin-left:12px;margin-top:-2px}#top-header .et-social-icon a{font-size:14px}#et-secondary-menu{float:right}#et-info,#et-secondary-menu>ul>li a{padding-bottom:.75em;display:block}#et-secondary-nav,#et-secondary-nav li{display:inline-block}#et-secondary-nav a{-webkit-transition:background-color 0.4s, color 0.4s ease-in-out;transition:background-color 0.4s, color 0.4s ease-in-out}#et-secondary-nav li{margin-right:15px}#et-secondary-nav>li:last-child{margin-right:0}#et-secondary-menu>ul>li>a:hover,#et-info-email:hover{opacity:0.7;-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out}#et-secondary-nav li{position:relative;text-align:right}#et-secondary-nav li ul{position:absolute;right:0;padding:1em 0}#et-secondary-nav li ul ul{right:220px;top:0;margin-top:-1em}#et-secondary-nav li ul li{display:block}#et-secondary-nav li ul{z-index:999999;visibility:hidden;opacity:0;-webkit-box-shadow:0 2px 5px rgba(0,0,0,0.1);box-shadow:0 2px 5px rgba(0,0,0,0.1)}#et-secondary-nav li ul{-webkit-transform:translate3d(0, 0, 0)}#et-secondary-nav li.et-hover>ul{visibility:visible}#et-secondary-nav li>ul{width:220px}#et-secondary-nav li:hover>ul,#et-secondary-nav li.et-touch-hover>ul{opacity:1;visibility:visible}#et-secondary-nav li li{padding:0 2em;margin:0}#et-secondary-nav li li a{padding:1em;width:100%;font-size:12px;line-height:1em;margin-right:0;display:block;-webkit-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out}#et-secondary-nav ul li a:hover{background-color:rgba(0,0,0,0.03)}#et-secondary-nav li:hover{visibility:inherit}#top-header .et-cart-info{margin-left:15px}#et-secondary-nav .menu-item-has-children>a:first-child:after{top:0}#et-secondary-nav li .menu-item-has-children>a:first-child:after{top:.67em;right:auto;left:2.3em}body.admin-bar.et_fixed_nav #top-header{top:32px}body.et-wp-pre-3_8.admin-bar.et_fixed_nav #top-header{top:28px}@media all and (min-width: 981px){.et_fullwidth_secondary_nav #top-header .container{width:100%;max-width:100%;padding-right:30px;padding-left:30px}.et_hide_nav.et_fixed_nav #top-header{opacity:0}.et_hide_nav.et_fixed_nav .et-fixed-header#top-header{-webkit-transform:translateY(0px) !important;transform:translateY(0px) !important;opacity:1}.et_hide_nav.et_fixed_nav #top-header,.et_hide_nav.et_fixed_nav #top-header{-webkit-transition-duration:.7s;transition-duration:.7s}}@media all and (max-width: 980px){.et_fixed_nav.et_show_nav.et_secondary_nav_enabled.et-tb #page-container,.et_fixed_nav.et_show_nav.et_secondary_nav_enabled.et-tb-has-header #page-container{padding-top:0 !important}.et_secondary_nav_only_menu #top-header{display:none}#top-header{-webkit-transition:none;transition:none}.et_fixed_nav #top-header{position:absolute}.et_hide_nav.et_fixed_nav #top-header{-webkit-transform:translateY(0px) !important;transform:translateY(0px) !important;opacity:1}#top-header .container{padding-top:0}#et-info{padding-top:0.75em}#et-secondary-nav,#et-secondary-menu{display:none !important}.et_secondary_nav_only_menu #main-header,.et_secondary_nav_only_menu #main-header{top:0 !important}#top-header .et-social-icons{margin-bottom:0}#top-header .et-cart-info{margin-left:0}}@media screen and (max-width: 782px){body.admin-bar.et_fixed_nav #top-header{top:46px}.et_fixed_nav.et_secondary_nav_only_menu.admin-bar #main-header{top:46px !important}body.admin-bar.et_fixed_nav.et_secondary_nav_enabled #main-header{top:80px}}@media all and (max-width: 767px){#et-info .et-social-icons{display:none}#et-secondary-menu .et_duplicate_social_icons{display:inline-block}body.et_fixed_nav.et_secondary_nav_two_panels #main-header{top:58px}#et-info,#et-secondary-menu{text-align:center;display:block;float:none}.et_secondary_nav_two_panels #et-secondary-menu{margin-top:12px}body.admin-bar.et_fixed_nav #top-header{top:46px}body.admin-bar.et_fixed_nav.et_secondary_nav_two_panels #main-header{top:104px}}
93 +.et-social-icons{float:right}.et-social-icons li{display:inline-block;margin-left:20px}.et-social-icon a{display:inline-block;font-size:24px;position:relative;text-align:center;-webkit-transition:color 300ms ease 0s;transition:color 300ms ease 0s;color:#666;text-decoration:none}.et-social-icons a:hover{opacity:0.7;-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out}.et-social-icon span{display:none}.et_duplicate_social_icons{display:none}@media all and (max-width: 980px){.et-social-icons{float:none;text-align:center}}@media all and (max-width: 980px){.et-social-icons{margin:0 0 5px}}
94 +.et_pb_scroll_top.et-pb-icon{text-align:center;background:rgba(0,0,0,0.4);text-decoration:none;position:fixed;z-index:99999;bottom:125px;right:0px;-webkit-border-top-left-radius:5px;-webkit-border-bottom-left-radius:5px;-moz-border-radius-topleft:5px;-moz-border-radius-bottomleft:5px;border-top-left-radius:5px;border-bottom-left-radius:5px;display:none;cursor:pointer;font-size:30px;padding:5px;color:#fff}.et_pb_scroll_top:before{content:'2'}.et_pb_scroll_top.et-visible{opacity:1;-webkit-animation:fadeInRight 1s 1 cubic-bezier(0.77, 0, 0.175, 1);animation:fadeInRight 1s 1 cubic-bezier(0.77, 0, 0.175, 1)}.et_pb_scroll_top.et-hidden{opacity:0;-webkit-animation:fadeOutRight 1s 1 cubic-bezier(0.77, 0, 0.175, 1);animation:fadeOutRight 1s 1 cubic-bezier(0.77, 0, 0.175, 1)}@-webkit-keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(100%);transform:translateX(100%)}}@keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(100%);transform:translateX(100%)}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(100%);transform:translateX(100%)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(100%);transform:translateX(100%)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}
95 +.et_pb_section{position:relative;background-color:#fff;background-position:50%;background-size:100%;background-size:cover}.et_pb_section--absolute,.et_pb_section--fixed{width:100%}.et_pb_section.et_section_transparent{background-color:transparent}.et_pb_fullwidth_section{padding:0}.et_pb_fullwidth_section>.et_pb_module:not(.et_pb_post_content):not(.et_pb_fullwidth_post_content) .et_pb_row{padding:0!important}.et_pb_inner_shadow{-webkit-box-shadow:inset 0 0 7px rgba(0,0,0,.07);box-shadow:inset 0 0 7px rgba(0,0,0,.07)}.et_pb_bottom_inside_divider,.et_pb_top_inside_divider{display:block;background-repeat-y:no-repeat;height:100%;position:absolute;pointer-events:none;width:100%;left:0;right:0}.et_pb_bottom_inside_divider.et-no-transition,.et_pb_top_inside_divider.et-no-transition{-webkit-transition:none!important;transition:none!important}.et-fb .section_has_divider.et_fb_element_controls_visible--child>.et_pb_bottom_inside_divider,.et-fb .section_has_divider.et_fb_element_controls_visible--child>.et_pb_top_inside_divider{z-index:1}.et_pb_section_video:not(.et_pb_section--with-menu){overflow:hidden;position:relative}.et_pb_column>.et_pb_section_video_bg{z-index:-1}.et_pb_section_video_bg{visibility:visible;position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden;display:block;pointer-events:none;-webkit-transition:display .3s;transition:display .3s}.et_pb_section_video_bg.et_pb_section_video_bg_hover,.et_pb_section_video_bg.et_pb_section_video_bg_phone,.et_pb_section_video_bg.et_pb_section_video_bg_tablet,.et_pb_section_video_bg.et_pb_section_video_bg_tablet_only{display:none}.et_pb_section_video_bg .mejs-controls,.et_pb_section_video_bg .mejs-overlay-play{display:none!important}.et_pb_section_video_bg embed,.et_pb_section_video_bg iframe,.et_pb_section_video_bg object,.et_pb_section_video_bg video{max-width:none}.et_pb_section_video_bg .mejs-video{left:50%;position:absolute;max-width:none}.et_pb_section_video_bg .mejs-overlay-loading{display:none!important}.et_pb_social_network_link .et_pb_section_video{overflow:visible}.et_pb_section_video_on_hover:hover>.et_pb_section_video_bg{display:none}.et_pb_section_video_on_hover:hover>.et_pb_section_video_bg_hover,.et_pb_section_video_on_hover:hover>.et_pb_section_video_bg_hover_inherit{display:block}@media (min-width:981px){.et_pb_section{padding:4% 0}body.et_pb_pagebuilder_layout.et_pb_show_title .post-password-required .et_pb_section,body:not(.et_pb_pagebuilder_layout) .post-password-required .et_pb_section{padding-top:0}.et_pb_fullwidth_section{padding:0}.et_pb_section_video_bg.et_pb_section_video_bg_desktop_only{display:block}}@media (max-width:980px){.et_pb_section{padding:50px 0}body.et_pb_pagebuilder_layout.et_pb_show_title .post-password-required .et_pb_section,body:not(.et_pb_pagebuilder_layout) .post-password-required .et_pb_section{padding-top:0}.et_pb_fullwidth_section{padding:0}.et_pb_section_video_bg.et_pb_section_video_bg_tablet{display:block}.et_pb_section_video_bg.et_pb_section_video_bg_desktop_only{display:none}}@media (min-width:768px){.et_pb_section_video_bg.et_pb_section_video_bg_desktop_tablet{display:block}}@media (min-width:768px) and (max-width:980px){.et_pb_section_video_bg.et_pb_section_video_bg_tablet_only{display:block}}@media (max-width:767px){.et_pb_section_video_bg.et_pb_section_video_bg_phone{display:block}.et_pb_section_video_bg.et_pb_section_video_bg_desktop_tablet{display:none}}
96 +.et_pb_row{width:80%;max-width:1080px;margin:auto;position:relative}body.safari .section_has_divider,body.uiwebview .section_has_divider{-webkit-perspective:2000px;perspective:2000px}.section_has_divider .et_pb_row{z-index:5}.et_pb_row_inner{width:100%;position:relative}.et_pb_row.et_pb_row_empty,.et_pb_row_inner:nth-of-type(n+2).et_pb_row_empty{display:none}.et_pb_row:after,.et_pb_row_inner:after{content:"";display:block;clear:both;visibility:hidden;line-height:0;height:0;width:0}.et_pb_row_4col .et-last-child,.et_pb_row_4col .et-last-child-2,.et_pb_row_6col .et-last-child,.et_pb_row_6col .et-last-child-2,.et_pb_row_6col .et-last-child-3{margin-bottom:0}.et_pb_column{float:left;background-size:cover;background-position:50%;position:relative;z-index:2;min-height:1px}.et_pb_column--with-menu{z-index:3}.et_pb_column.et_pb_column_empty{min-height:1px}.et_pb_row .et_pb_column.et-last-child,.et_pb_row .et_pb_column:last-child,.et_pb_row_inner .et_pb_column.et-last-child,.et_pb_row_inner .et_pb_column:last-child{margin-right:0!important}.et_pb_column.et_pb_section_parallax{position:relative}.et_pb_column,.et_pb_row,.et_pb_row_inner{background-size:cover;background-position:50%;background-repeat:no-repeat}@media (min-width:981px){.et_pb_row{padding:2% 0}body.et_pb_pagebuilder_layout.et_pb_show_title .post-password-required .et_pb_row,body:not(.et_pb_pagebuilder_layout) .post-password-required .et_pb_row{padding:0;width:100%}.et_pb_column_3_4 .et_pb_row_inner{padding:3.735% 0}.et_pb_column_2_3 .et_pb_row_inner{padding:4.2415% 0}.et_pb_column_1_2 .et_pb_row_inner,.et_pb_column_3_5 .et_pb_row_inner{padding:5.82% 0}.et_section_specialty>.et_pb_row{padding:0}.et_pb_row_inner{width:100%}.et_pb_column_single{padding:2.855% 0}.et_pb_column_single .et_pb_module.et-first-child,.et_pb_column_single .et_pb_module:first-child{margin-top:0}.et_pb_column_single .et_pb_module.et-last-child,.et_pb_column_single .et_pb_module:last-child{margin-bottom:0}.et_pb_row .et_pb_column.et-last-child,.et_pb_row .et_pb_column:last-child,.et_pb_row_inner .et_pb_column.et-last-child,.et_pb_row_inner .et_pb_column:last-child{margin-right:0!important}.et_pb_row.et_pb_equal_columns,.et_pb_row_inner.et_pb_equal_columns,.et_pb_section.et_pb_equal_columns>.et_pb_row{display:-webkit-box;display:-ms-flexbox;display:flex}.rtl .et_pb_row.et_pb_equal_columns,.rtl .et_pb_row_inner.et_pb_equal_columns,.rtl .et_pb_section.et_pb_equal_columns>.et_pb_row{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.et_pb_row.et_pb_equal_columns>.et_pb_column,.et_pb_section.et_pb_equal_columns>.et_pb_row>.et_pb_column{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}}@media (max-width:980px){.et_pb_row{max-width:1080px}body.et_pb_pagebuilder_layout.et_pb_show_title .post-password-required .et_pb_row,body:not(.et_pb_pagebuilder_layout) .post-password-required .et_pb_row{padding:0;width:100%}.et_pb_column .et_pb_row_inner,.et_pb_row{padding:30px 0}.et_section_specialty>.et_pb_row{padding:0}.et_pb_column{width:100%;margin-bottom:30px}.et_pb_bottom_divider .et_pb_row:nth-last-child(2) .et_pb_column:last-child,.et_pb_row .et_pb_column.et-last-child,.et_pb_row .et_pb_column:last-child{margin-bottom:0}.et_section_specialty .et_pb_row>.et_pb_column{padding-bottom:0}.et_pb_column.et_pb_column_empty{display:none}.et_pb_row_1-2_1-4_1-4,.et_pb_row_1-2_1-6_1-6_1-6,.et_pb_row_1-4_1-4,.et_pb_row_1-4_1-4_1-2,.et_pb_row_1-5_1-5_3-5,.et_pb_row_1-6_1-6_1-6,.et_pb_row_1-6_1-6_1-6_1-2,.et_pb_row_1-6_1-6_1-6_1-6,.et_pb_row_3-5_1-5_1-5,.et_pb_row_4col,.et_pb_row_5col,.et_pb_row_6col{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.et_pb_row_1-4_1-4>.et_pb_column.et_pb_column_1_4,.et_pb_row_1-4_1-4_1-2>.et_pb_column.et_pb_column_1_4,.et_pb_row_4col>.et_pb_column.et_pb_column_1_4{width:47.25%;margin-right:5.5%}.et_pb_row_1-4_1-4>.et_pb_column.et_pb_column_1_4:nth-child(2n),.et_pb_row_1-4_1-4_1-2>.et_pb_column.et_pb_column_1_4:nth-child(2n),.et_pb_row_4col>.et_pb_column.et_pb_column_1_4:nth-child(2n){margin-right:0}.et_pb_row_1-2_1-4_1-4>.et_pb_column.et_pb_column_1_4{width:47.25%;margin-right:5.5%}.et_pb_row_1-2_1-4_1-4>.et_pb_column.et_pb_column_1_2,.et_pb_row_1-2_1-4_1-4>.et_pb_column.et_pb_column_1_4:nth-child(odd){margin-right:0}.et_pb_row_1-2_1-4_1-4 .et_pb_column:nth-last-child(-n+2),.et_pb_row_1-4_1-4 .et_pb_column:nth-last-child(-n+2),.et_pb_row_4col .et_pb_column:nth-last-child(-n+2){margin-bottom:0}.et_pb_row_1-5_1-5_3-5>.et_pb_column.et_pb_column_1_5,.et_pb_row_5col>.et_pb_column.et_pb_column_1_5{width:47.25%;margin-right:5.5%}.et_pb_row_1-5_1-5_3-5>.et_pb_column.et_pb_column_1_5:nth-child(2n),.et_pb_row_5col>.et_pb_column.et_pb_column_1_5:nth-child(2n){margin-right:0}.et_pb_row_3-5_1-5_1-5>.et_pb_column.et_pb_column_1_5{width:47.25%;margin-right:5.5%}.et_pb_row_3-5_1-5_1-5>.et_pb_column.et_pb_column_1_5:nth-child(odd),.et_pb_row_3-5_1-5_1-5>.et_pb_column.et_pb_column_3_5{margin-right:0}.et_pb_row_3-5_1-5_1-5 .et_pb_column:nth-last-child(-n+2),.et_pb_row_5col .et_pb_column:last-child{margin-bottom:0}.et_pb_row_1-6_1-6_1-6_1-2>.et_pb_column.et_pb_column_1_6,.et_pb_row_6col>.et_pb_column.et_pb_column_1_6{width:29.666%;margin-right:5.5%}.et_pb_row_1-6_1-6_1-6_1-2>.et_pb_column.et_pb_column_1_6:nth-child(3n),.et_pb_row_6col>.et_pb_column.et_pb_column_1_6:nth-child(3n){margin-right:0}.et_pb_row_1-2_1-6_1-6_1-6>.et_pb_column.et_pb_column_1_6{width:29.666%;margin-right:5.5%}.et_pb_row_1-2_1-6_1-6_1-6>.et_pb_column.et_pb_column_1_2,.et_pb_row_1-2_1-6_1-6_1-6>.et_pb_column.et_pb_column_1_6:last-child{margin-right:0}.et_pb_row_1-2_1-2 .et_pb_column.et_pb_column_1_2,.et_pb_row_1-2_1-6_1-6_1-6 .et_pb_column:nth-last-child(-n+3),.et_pb_row_6col .et_pb_column:nth-last-child(-n+3){margin-bottom:0}.et_pb_row_1-2_1-2 .et_pb_column.et_pb_column_1_2 .et_pb_column.et_pb_column_1_6{width:29.666%;margin-right:5.5%;margin-bottom:0}.et_pb_row_1-2_1-2 .et_pb_column.et_pb_column_1_2 .et_pb_column.et_pb_column_1_6:last-child{margin-right:0}.et_pb_row_1-6_1-6_1-6_1-6>.et_pb_column.et_pb_column_1_6{width:47.25%;margin-right:5.5%}.et_pb_row_1-6_1-6_1-6_1-6>.et_pb_column.et_pb_column_1_6:nth-child(2n){margin-right:0}.et_pb_row_1-6_1-6_1-6_1-6:nth-last-child(-n+3){margin-bottom:0}}@media (max-width:479px){.et_pb_row .et_pb_column.et_pb_column_1_4,.et_pb_row .et_pb_column.et_pb_column_1_5,.et_pb_row .et_pb_column.et_pb_column_1_6{width:100%;margin:0 0 30px}.et_pb_row .et_pb_column.et_pb_column_1_4.et-last-child,.et_pb_row .et_pb_column.et_pb_column_1_4:last-child,.et_pb_row .et_pb_column.et_pb_column_1_5.et-last-child,.et_pb_row .et_pb_column.et_pb_column_1_5:last-child,.et_pb_row .et_pb_column.et_pb_column_1_6.et-last-child,.et_pb_row .et_pb_column.et_pb_column_1_6:last-child{margin-bottom:0}.et_pb_row_1-2_1-2 .et_pb_column.et_pb_column_1_2 .et_pb_column.et_pb_column_1_6{width:100%;margin:0 0 30px}.et_pb_row_1-2_1-2 .et_pb_column.et_pb_column_1_2 .et_pb_column.et_pb_column_1_6.et-last-child,.et_pb_row_1-2_1-2 .et_pb_column.et_pb_column_1_2 .et_pb_column.et_pb_column_1_6:last-child{margin-bottom:0}.et_pb_column{width:100%!important}}
97 +.et_pb_with_border.et_pb_fullwidth_header .header-image-container img,.et_pb_with_border.et_pb_fullwidth_header .header-logo{border:0 solid #333}.et_pb_fullwidth_header{padding:50px 0;position:relative;background-position:50%;background-size:cover}.et_pb_fullwidth_header p{padding-bottom:0}.et_pb_fullwidth_header_subhead{display:block}.et_pb_fullscreen{padding:0}.et_pb_fullwidth_header .et_pb_fullwidth_header_container{position:relative;z-index:3;width:80%;max-width:1080px;margin-left:auto;margin-right:auto}.et_pb_fullscreen .et_pb_fullwidth_header_container{min-height:100vh;width:80%;max-width:none;height:100%}.et_pb_fullwidth_header .et_pb_fullwidth_header_container.center{display:-moz-flex;display:-ms-flex;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row wrap;-moz-justify-content:center;-ms-justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.et_pb_fullscreen .et_pb_fullwidth_header_container.center.bottom-bottom{-ms-flex-flow:column wrap;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column wrap;-moz-justify-content:flex-end;-ms-justify-content:flex-end;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.et_pb_fullscreen .et_pb_fullwidth_header_container.center.center-center{-ms-flex-flow:column nowrap;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap}.et_pb_fullscreen .et_pb_fullwidth_header_container.center.center-bottom .header-content-container{display:-moz-flex;display:-ms-flex;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row wrap}.et_pb_fullscreen .et_pb_fullwidth_header_container.center.center-bottom .header-content-container .header-content{-webkit-align-self:center;-ms-align-self:center;-ms-flex-item-align:center;align-self:center}.et_pb_fullscreen .et_pb_fullwidth_header_container.center.bottom-center .header-image-container.center{-webkit-align-self:flex-start;-ms-align-self:flex-start;-ms-flex-item-align:start;align-self:flex-start}.et_pb_fullwidth_header .et_pb_fullwidth_header_container.center .header-content-container,.et_pb_fullwidth_header .et_pb_fullwidth_header_container.center .header-image-container{width:100%;-webkit-align-self:center;-ms-align-self:center;-ms-flex-item-align:center;align-self:center}.et_pb_fullwidth_header .et_pb_fullwidth_header_container.center .header-content-container.center,.et_pb_fullwidth_header .et_pb_fullwidth_header_container.center .header-image-container.center{-webkit-align-self:center;-ms-align-self:center;-ms-flex-item-align:center;align-self:center}.et_pb_fullscreen .et_pb_fullwidth_header_container.center .header-content-container.bottom,.et_pb_fullscreen .et_pb_fullwidth_header_container.center .header-image-container.bottom{-webkit-align-self:flex-end;-ms-align-self:flex-end;-ms-flex-item-align:end;align-self:flex-end}.et_pb_fullwidth_header .et_pb_fullwidth_header_container.left{display:-moz-flex;display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-flow:row;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row}.et_pb_fullwidth_header .et_pb_fullwidth_header_container.right{display:-moz-flex;display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-flow:row-reverse;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;flex-flow:row-reverse}.et_pb_fullwidth_header .et_pb_fullwidth_header_container.left .header-content-container,.et_pb_fullwidth_header .et_pb_fullwidth_header_container.right .header-content-container{width:100%}.et_pb_fullwidth_header .et_pb_fullwidth_header_container.left .header-image-container,.et_pb_fullwidth_header .et_pb_fullwidth_header_container.right .header-image-container,.et_pb_fullwidth_header.et_pb_header_with_image .et_pb_fullwidth_header_container.left .header-content-container,.et_pb_fullwidth_header.et_pb_header_with_image .et_pb_fullwidth_header_container.right .header-content-container{width:50%;-webkit-align-self:center;-ms-align-self:center;-ms-flex-item-align:center;align-self:center}.et_pb_fullwidth_header .et_pb_fullwidth_header_container.left .header-content-container.center,.et_pb_fullwidth_header .et_pb_fullwidth_header_container.left .header-image-container.center,.et_pb_fullwidth_header .et_pb_fullwidth_header_container.right .header-content-container.center,.et_pb_fullwidth_header .et_pb_fullwidth_header_container.right .header-image-container.center{-webkit-align-self:center;-ms-align-self:center;-ms-flex-item-align:center;align-self:center}.et_pb_fullscreen .et_pb_fullwidth_header_container.left .header-content-container.bottom,.et_pb_fullscreen .et_pb_fullwidth_header_container.left .header-image-container.bottom,.et_pb_fullscreen .et_pb_fullwidth_header_container.right .header-content-container.bottom,.et_pb_fullscreen .et_pb_fullwidth_header_container.right .header-image-container.bottom,.et_pb_fullwidth_header .et_pb_fullwidth_header_container.left .header-content-container.bottom,.et_pb_fullwidth_header .et_pb_fullwidth_header_container.left .header-image-container.bottom,.et_pb_fullwidth_header .et_pb_fullwidth_header_container.right .header-content-container.bottom,.et_pb_fullwidth_header .et_pb_fullwidth_header_container.right .header-image-container.bottom{-webkit-align-self:flex-end;-ms-align-self:flex-end;-ms-flex-item-align:end;align-self:flex-end}.et_pb_fullwidth_header .et_pb_fullwidth_header_container.left .header-content{text-align:left;margin-left:0}.et_pb_fullwidth_header.et_pb_header_with_image .et_pb_fullwidth_header_container.left .header-content{margin-right:6%}.et_pb_fullwidth_header .et_pb_fullwidth_header_container.right .header-content{text-align:right;margin-right:0;float:right}.et_pb_fullwidth_header.et_pb_header_with_image .et_pb_fullwidth_header_container.right .header-content{margin-left:6%}.et_pb_fullscreen .et_pb_fullwidth_header_container.left .header-content-container.bottom,.et_pb_fullscreen .et_pb_fullwidth_header_container.right .header-content-container.bottom{margin-bottom:80px}.et_pb_fullwidth_header .et_pb_fullwidth_header_container.left .header-content{padding-left:0}.et_pb_fullwidth_header .et_pb_fullwidth_header_container.right .header-content{padding-right:0}.et_pb_fullwidth_header .header-content{padding:10px;text-align:center}.et_pb_fullwidth_header .et_pb_fullwidth_header_container.center .header-content{margin:20px auto;width:80%;max-width:800px}.et_pb_fullwidth_header .header-image{text-align:center;margin-left:2%;margin-right:2%;line-height:0}.et_pb_fullwidth_header .et_pb_fullwidth_header_container .header-content a.et_pb_button{margin-top:20px;display:inline-block}.et_pb_fullwidth_header .et_pb_fullwidth_header_container .et_pb_button_one{margin-right:15px}.et_pb_fullwidth_header .et_pb_fullwidth_header_container.right .et_pb_button_one{margin-right:0}.et_pb_fullwidth_header .et_pb_fullwidth_header_container.right .et_pb_button_two{margin-left:15px}.et_pb_fullwidth_header .et_pb_fullwidth_header_overlay{content:"";position:absolute;top:0;left:0;bottom:0;right:0;z-index:2;pointer-events:none}.et_pb_fullwidth_header .et_pb_parallax_css{background-repeat:no-repeat;background-position:top;background-size:cover;background-attachment:fixed;position:absolute;width:100%;height:100%;overflow:hidden}.et_pb_fullwidth_header .et_pb_fullwidth_header_scroll{width:100%;min-height:30px;text-align:center;padding-top:10px;padding-bottom:20px;margin:0 auto;position:absolute;z-index:3;right:0;bottom:0;left:0;pointer-events:none}.et_pb_fullwidth_header .et_pb_fullwidth_header_scroll a{display:inline-block;pointer-events:all}.et_pb_fullwidth_header .et_pb_fullwidth_header_scroll a .et-pb-icon{color:#fff;font-size:3.5em}.et_pb_fullwidth_header .scroll-down-container .scroll-down-phone,.et_pb_fullwidth_header .scroll-down-container .scroll-down-tablet{display:none}@media (max-width:980px){.et_pb_fullwidth_header .scroll-down-container-tablet .scroll-down,.et_pb_fullwidth_header .scroll-down-container-tablet .scroll-down-phone{display:none}.et_pb_fullwidth_header .scroll-down-container-tablet .scroll-down-tablet{display:inline-block}}@media (max-width:767px){.et_pb_fullwidth_header .scroll-down-container-phone .scroll-down,.et_pb_fullwidth_header .scroll-down-container-phone .scroll-down-tablet{display:none}.et_pb_fullwidth_header .scroll-down-container-phone .scroll-down-phone{display:inline-block}.et_pb_fullwidth_header .et_pb_fullwidth_header_container.left,.et_pb_fullwidth_header .et_pb_fullwidth_header_container.right{-ms-flex-flow:column;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column;-moz-justify-content:center;-ms-justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.et_pb_fullwidth_header .et_pb_fullwidth_header_container.left .header-content-container,.et_pb_fullwidth_header .et_pb_fullwidth_header_container.left .header-image-container,.et_pb_fullwidth_header .et_pb_fullwidth_header_container.right .header-content-container,.et_pb_fullwidth_header .et_pb_fullwidth_header_container.right .header-image-container,.et_pb_fullwidth_header.et_pb_header_with_image .et_pb_fullwidth_header_container.left .header-content-container,.et_pb_fullwidth_header.et_pb_header_with_image .et_pb_fullwidth_header_container.right .header-content-container{width:100%}.et_pb_fullwidth_header .et_pb_fullwidth_header_container.left .header-content,.et_pb_fullwidth_header .et_pb_fullwidth_header_container.right .header-content{margin:20px 2%}}.ie .et_pb_fullwidth_header.et_pb_fullscreen .et_pb_fullwidth_header_container.left,.ie .et_pb_fullwidth_header.et_pb_fullscreen .et_pb_fullwidth_header_container.right{height:100px}.ie .et_pb_fullwidth_header .et_pb_fullwidth_header_container.right .header-content{float:none}
98 +.et_pb_text{word-wrap:break-word}.et_pb_text ol,.et_pb_text ul{padding-bottom:1em}.et_pb_text>:last-child{padding-bottom:0}.et_pb_text_inner{position:relative}
99 +.et_pb_space{-webkit-box-sizing:content-box;box-sizing:content-box;height:23px}.et_pb_divider_hidden{margin-bottom:0!important}.et_pb_divider_internal{display:inline-block;width:100%}.et_pb_divider{margin:0 0 30px;position:relative}.et_pb_divider:before{content:"";width:100%;height:1px;border-top:1px solid rgba(0,0,0,.1);position:absolute;left:0;top:0;z-index:10}.et_pb_divider:after,.et_pb_space:after{content:"";display:table}.et_pb_divider_position_bottom:before{top:auto!important;bottom:0!important}.et_pb_divider_position_center:before{top:50%!important}@media (max-width:980px){.et_pb_divider_position_top_tablet:before{top:0!important;bottom:auto!important}.et_pb_divider_position_bottom_tablet:before{top:auto!important;bottom:0!important}.et_pb_divider_position_center_tablet:before{top:50%!important}.et_pb_space.et-hide-mobile{display:none}}@media (max-width:767px){.et_pb_divider_position_top_phone:before{top:0!important;bottom:auto!important}.et_pb_divider_position_bottom_phone:before{top:auto!important;bottom:0!important}.et_pb_divider_position_center_phone:before{top:50%!important}}.ie .et_pb_divider{overflow:visible}
100 +.et_pb_bg_layout_light.et_pb_module.et_pb_button{color:#2ea3f2}.et_pb_module.et_pb_button{display:inline-block;color:inherit}.et_pb_button_module_wrapper.et_pb_button_alignment_left{text-align:left}.et_pb_button_module_wrapper.et_pb_button_alignment_right{text-align:right}.et_pb_button_module_wrapper.et_pb_button_alignment_center{text-align:center}.et_pb_button_module_wrapper>a{display:inline-block}@media (max-width:980px){.et_pb_button_module_wrapper.et_pb_button_alignment_tablet_left{text-align:left}.et_pb_button_module_wrapper.et_pb_button_alignment_tablet_right{text-align:right}.et_pb_button_module_wrapper.et_pb_button_alignment_tablet_center{text-align:center}}@media (max-width:767px){.et_pb_button_module_wrapper.et_pb_button_alignment_phone_left{text-align:left}.et_pb_button_module_wrapper.et_pb_button_alignment_phone_right{text-align:right}.et_pb_button_module_wrapper.et_pb_button_alignment_phone_center{text-align:center}}
101 +.et_pb_button[data-icon]:not([data-icon=""]):after{content:attr(data-icon)}@media (max-width:980px){.et_pb_button[data-icon-tablet]:not([data-icon-tablet=""]):after{content:attr(data-icon-tablet)}}@media (max-width:767px){.et_pb_button[data-icon-phone]:not([data-icon-phone=""]):after{content:attr(data-icon-phone)}}
102 +.et_pb_with_border .et_pb_image_wrap{border:0 solid #333}.et_pb_image{margin-left:auto;margin-right:auto;line-height:0}.et_pb_image.aligncenter{text-align:center}.et_pb_image.et_pb_has_overlay a.et_pb_lightbox_image{display:block;position:relative}.et_pb_image{display:block}.et_pb_image .et_pb_image_wrap{display:inline-block;position:relative;max-width:100%}.et_pb_image .et_pb_image_wrap img[src*=".svg"]{width:auto}.et_pb_image img{position:relative}.et_pb_image_sticky{margin-bottom:0!important;display:inherit}.et_pb_image.et_pb_has_overlay .et_pb_image_wrap:hover .et_overlay{z-index:3;opacity:1}@media (min-width:981px){.et_pb_section_sticky,.et_pb_section_sticky.et_pb_bottom_divider .et_pb_row:nth-last-child(2),.et_pb_section_sticky .et_pb_column_single,.et_pb_section_sticky .et_pb_row.et-last-child,.et_pb_section_sticky .et_pb_row:last-child,.et_pb_section_sticky .et_pb_specialty_column .et_pb_row_inner.et-last-child,.et_pb_section_sticky .et_pb_specialty_column .et_pb_row_inner:last-child{padding-bottom:0!important}}@media (max-width:980px){.et_pb_image_sticky_tablet{margin-bottom:0!important;display:inherit}.et_pb_section_sticky_mobile,.et_pb_section_sticky_mobile.et_pb_bottom_divider .et_pb_row:nth-last-child(2),.et_pb_section_sticky_mobile .et_pb_column_single,.et_pb_section_sticky_mobile .et_pb_row.et-last-child,.et_pb_section_sticky_mobile .et_pb_row:last-child,.et_pb_section_sticky_mobile .et_pb_specialty_column .et_pb_row_inner.et-last-child,.et_pb_section_sticky_mobile .et_pb_specialty_column .et_pb_row_inner:last-child{padding-bottom:0!important}.et_pb_section_sticky .et_pb_row.et-last-child .et_pb_column.et_pb_row_sticky.et-last-child,.et_pb_section_sticky .et_pb_row:last-child .et_pb_column.et_pb_row_sticky:last-child{margin-bottom:0}.et_pb_image_bottom_space_tablet{margin-bottom:30px!important;display:block}.et_always_center_on_mobile{text-align:center!important;margin-left:auto!important;margin-right:auto!important}}@media (max-width:767px){.et_pb_image_sticky_phone{margin-bottom:0!important;display:inherit}.et_pb_image_bottom_space_phone{margin-bottom:30px!important;display:block}}
103 +.et_overlay{z-index:-1;position:absolute;top:0;left:0;display:block;width:100%;height:100%;background:hsla(0,0%,100%,.9);opacity:0;pointer-events:none;-webkit-transition:all .3s;transition:all .3s;border:1px solid #e5e5e5;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-font-smoothing:antialiased}.et_overlay:before{color:#2ea3f2;content:"\E050";position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);font-size:32px;-webkit-transition:all .4s;transition:all .4s}.et_portfolio_image,.et_shop_image{position:relative;display:block}.et_pb_has_overlay:not(.et_pb_image):hover .et_overlay,.et_portfolio_image:hover .et_overlay,.et_shop_image:hover .et_overlay{z-index:3;opacity:1}#ie7 .et_overlay,#ie8 .et_overlay{display:none}.et_pb_module.et_pb_has_overlay{position:relative}.et_pb_module.et_pb_has_overlay .et_overlay,article.et_pb_has_overlay{border:none}.et_pb_button[data-icon]:not([data-icon=""]):after{content:attr(data-icon)}@media (max-width:980px){.et_pb_button[data-icon-tablet]:not([data-icon-tablet=""]):after{content:attr(data-icon-tablet)}}@media (max-width:767px){.et_pb_button[data-icon-phone]:not([data-icon-phone=""]):after{content:attr(data-icon-phone)}}
104 +/*# sourceURL=divi-dynamic-critical-inline-css */
105 +</style>
106 +<link rel='preload' id='divi-dynamic-css' href='https://immeublesbrio.com/wp-content/et-cache/156/et-divi-dynamic-156.css?ver=1775414924' as='style' media='all' onload="this.onload=null;this.rel='stylesheet'" />
107 +<link rel="https://api.w.org/" href="https://immeublesbrio.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://immeublesbrio.com/wp-json/wp/v2/pages/156" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://immeublesbrio.com/xmlrpc.php?rsd" />
108 +<meta name="generator" content="WordPress 7.0.3" />
109 +<link rel='shortlink' href='https://immeublesbrio.com/' />
110 +<!-- Facebook Pixel Code -->
111 +<script>
112 + !function(f,b,e,v,n,t,s)
113 + {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
114 + n.callMethod.apply(n,arguments):n.queue.push(arguments)};
115 + if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
116 + n.queue=[];t=b.createElement(e);t.async=!0;
117 + t.src=v;s=b.getElementsByTagName(e)[0];
118 + s.parentNode.insertBefore(t,s)}(window, document,'script',
119 + 'https://connect.facebook.net/en_US/fbevents.js');
120 + fbq('init', '612632342630894');
121 + fbq('track', 'PageView');
122 +</script>
123 +<noscript><img height="1" width="1" style="display:none"
124 + src="https://www.facebook.com/tr?id=612632342630894&ev=PageView&noscript=1"
125 +/></noscript>
126 +<!-- End Facebook Pixel Code --> <script>
127 + document.documentElement.className = document.documentElement.className.replace('no-js', 'js');
128 + </script>
129 + <style>
130 + .no-js img.lazyload {
131 + display: none;
132 + }
133 +
134 + figure.wp-block-image img.lazyloading {
135 + min-width: 150px;
136 + }
137 +
138 + .lazyload,
139 + .lazyloading {
140 + --smush-placeholder-width: 100px;
141 + --smush-placeholder-aspect-ratio: 1/1;
142 + width: var(--smush-image-width, var(--smush-placeholder-width)) !important;
143 + aspect-ratio: var(--smush-image-aspect-ratio, var(--smush-placeholder-aspect-ratio)) !important;
144 + }
145 +
146 + .lazyload, .lazyloading {
147 + opacity: 0;
148 + }
149 +
150 + .lazyloaded {
151 + opacity: 1;
152 + transition: opacity 400ms;
153 + transition-delay: 0ms;
154 + }
155 +
156 + </style>
157 + <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" /><link rel="icon" href="https://immeublesbrio.com/wp-content/uploads/2019/10/cropped-b-512-32x32.png" sizes="32x32" />
158 +<link rel="icon" href="https://immeublesbrio.com/wp-content/uploads/2019/10/cropped-b-512-192x192.png" sizes="192x192" />
159 +<link rel="apple-touch-icon" href="https://immeublesbrio.com/wp-content/uploads/2019/10/cropped-b-512-180x180.png" />
160 +<meta name="msapplication-TileImage" content="https://immeublesbrio.com/wp-content/uploads/2019/10/cropped-b-512-270x270.png" />
161 +<style id="wp-site-designer-contrast-fallback"> .wp-block-group:not([data-dsgo-inline-bg]),.wp-block-column:not([data-dsgo-inline-bg]),.wp-block-columns:not([data-dsgo-inline-bg]){--dsgo-text-color:initial;} :is(.wp-block-designsetgo-section,.wp-block-group,.wp-block-column).has-background:not([class*="-background-color"]):not(.has-text-color):not(.is-style-footer-section):not(.is-style-header-section),.wp-block-cover:not(.has-text-color){color:var(--wp--preset--color--contrast-3) !important;--dsgo-text-color:var(--wp--preset--color--contrast-3);} body .wp-site-blocks :is(:is(.wp-block-designsetgo-section,.wp-block-group,.wp-block-column).has-background:not([class*="-background-color"]):not(.has-text-color):not(.is-style-footer-section):not(.is-style-header-section),.wp-block-cover) h1:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(:is(.wp-block-designsetgo-section,.wp-block-group,.wp-block-column).has-background:not([class*="-background-color"]):not(.has-text-color):not(.is-style-footer-section):not(.is-style-header-section),.wp-block-cover) h2:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(:is(.wp-block-designsetgo-section,.wp-block-group,.wp-block-column).has-background:not([class*="-background-color"]):not(.has-text-color):not(.is-style-footer-section):not(.is-style-header-section),.wp-block-cover) h3:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(:is(.wp-block-designsetgo-section,.wp-block-group,.wp-block-column).has-background:not([class*="-background-color"]):not(.has-text-color):not(.is-style-footer-section):not(.is-style-header-section),.wp-block-cover) h4:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(:is(.wp-block-designsetgo-section,.wp-block-group,.wp-block-column).has-background:not([class*="-background-color"]):not(.has-text-color):not(.is-style-footer-section):not(.is-style-header-section),.wp-block-cover) h5:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(:is(.wp-block-designsetgo-section,.wp-block-group,.wp-block-column).has-background:not([class*="-background-color"]):not(.has-text-color):not(.is-style-footer-section):not(.is-style-header-section),.wp-block-cover) h6:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(:is(.wp-block-designsetgo-section,.wp-block-group,.wp-block-column).has-background:not([class*="-background-color"]):not(.has-text-color):not(.is-style-footer-section):not(.is-style-header-section),.wp-block-cover) p:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(:is(.wp-block-designsetgo-section,.wp-block-group,.wp-block-column).has-background:not([class*="-background-color"]):not(.has-text-color):not(.is-style-footer-section):not(.is-style-header-section),.wp-block-cover) a:where(:not(.wp-element-button):not(.wp-block-social-link-anchor)):not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(:is(.wp-block-designsetgo-section,.wp-block-group,.wp-block-column).has-background:not([class*="-background-color"]):not(.has-text-color):not(.is-style-footer-section):not(.is-style-header-section),.wp-block-cover) .wp-element-caption:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)){color:var(--dsgo-text-color,inherit) !important;} body .wp-site-blocks :is(.wp-block-designsetgo-section,.wp-block-group,.wp-block-column)[data-dsgo-inline-bg] .wp-block-button:is([class*="is-style-outline"],[class*="is-style-secondary"]) .wp-element-button{color:var(--dsgo-text-color,inherit) !important;border-color:currentColor !important;}body .wp-site-blocks :is(.wp-block-designsetgo-section,.wp-block-group,.wp-block-column)[data-dsgo-inline-bg] .wp-block-button:is([class*="is-style-outline"],[class*="is-style-secondary"]) .wp-element-button:hover{opacity:0.75;} body .wp-site-blocks [data-dsgo-inline-bg] h1:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks [data-dsgo-inline-bg] h2:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks [data-dsgo-inline-bg] h3:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks [data-dsgo-inline-bg] h4:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks [data-dsgo-inline-bg] h5:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks [data-dsgo-inline-bg] h6:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks [data-dsgo-inline-bg] p:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks [data-dsgo-inline-bg] a:where(:not(.wp-element-button):not(.wp-block-social-link-anchor)):not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks [data-dsgo-inline-bg] .wp-element-caption:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)){color:var(--dsgo-text-color,inherit) !important;} .wp-block-designsetgo-section.has-background:not([data-dsgo-inline-bg]):not(.has-text-color){color:var(--wp--preset--color--contrast);--dsgo-text-color:var(--wp--preset--color--contrast);} :is(.wp-block-group,.wp-block-column).is-style-section-1:not(:is(.has-white-background-color,.has-black-background-color)),.has-background:is(.wp-block-group,.wp-block-column).is-style-section-1:not(:is(.has-white-background-color,.has-black-background-color)),.has-text-color:is(.wp-block-group,.wp-block-column).is-style-section-1:not(:is(.has-white-background-color,.has-black-background-color)){background-color:var(--wp--preset--color--accent-5);color:var(--wp--preset--color--contrast);} body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-1:not(:is(.has-white-background-color,.has-black-background-color)) h1:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-1:not(:is(.has-white-background-color,.has-black-background-color)) h2:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-1:not(:is(.has-white-background-color,.has-black-background-color)) h3:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-1:not(:is(.has-white-background-color,.has-black-background-color)) h4:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-1:not(:is(.has-white-background-color,.has-black-background-color)) h5:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-1:not(:is(.has-white-background-color,.has-black-background-color)) h6:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-1:not(:is(.has-white-background-color,.has-black-background-color)) p:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-1:not(:is(.has-white-background-color,.has-black-background-color)) a:where(:not(.wp-element-button):not(.wp-block-social-link-anchor)):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-1:not(:is(.has-white-background-color,.has-black-background-color)) .wp-element-caption:where(:not(.elementor *):not([data-elementor-type] *)){color:var(--wp--preset--color--contrast);} :is(.wp-block-group,.wp-block-column).is-style-section-2:not(:is(.has-white-background-color,.has-black-background-color)),.has-background:is(.wp-block-group,.wp-block-column).is-style-section-2:not(:is(.has-white-background-color,.has-black-background-color)),.has-text-color:is(.wp-block-group,.wp-block-column).is-style-section-2:not(:is(.has-white-background-color,.has-black-background-color)){background-color:var(--wp--preset--color--accent-2);color:var(--wp--preset--color--contrast);} body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-2:not(:is(.has-white-background-color,.has-black-background-color)) h1:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-2:not(:is(.has-white-background-color,.has-black-background-color)) h2:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-2:not(:is(.has-white-background-color,.has-black-background-color)) h3:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-2:not(:is(.has-white-background-color,.has-black-background-color)) h4:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-2:not(:is(.has-white-background-color,.has-black-background-color)) h5:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-2:not(:is(.has-white-background-color,.has-black-background-color)) h6:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-2:not(:is(.has-white-background-color,.has-black-background-color)) p:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-2:not(:is(.has-white-background-color,.has-black-background-color)) a:where(:not(.wp-element-button):not(.wp-block-social-link-anchor)):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-2:not(:is(.has-white-background-color,.has-black-background-color)) .wp-element-caption:where(:not(.elementor *):not([data-elementor-type] *)){color:var(--wp--preset--color--contrast);} :is(.wp-block-group,.wp-block-column).is-style-section-3:not(:is(.has-white-background-color,.has-black-background-color)),.has-background:is(.wp-block-group,.wp-block-column).is-style-section-3:not(:is(.has-white-background-color,.has-black-background-color)),.has-text-color:is(.wp-block-group,.wp-block-column).is-style-section-3:not(:is(.has-white-background-color,.has-black-background-color)){background-color:var(--wp--preset--color--accent-1);color:var(--wp--preset--color--contrast);} body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-3:not(:is(.has-white-background-color,.has-black-background-color)) h1:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-3:not(:is(.has-white-background-color,.has-black-background-color)) h2:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-3:not(:is(.has-white-background-color,.has-black-background-color)) h3:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-3:not(:is(.has-white-background-color,.has-black-background-color)) h4:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-3:not(:is(.has-white-background-color,.has-black-background-color)) h5:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-3:not(:is(.has-white-background-color,.has-black-background-color)) h6:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-3:not(:is(.has-white-background-color,.has-black-background-color)) p:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-3:not(:is(.has-white-background-color,.has-black-background-color)) a:where(:not(.wp-element-button):not(.wp-block-social-link-anchor)):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-3:not(:is(.has-white-background-color,.has-black-background-color)) .wp-element-caption:where(:not(.elementor *):not([data-elementor-type] *)){color:var(--wp--preset--color--contrast);} :is(.wp-block-group,.wp-block-column).is-style-section-4:not(:is(.has-white-background-color,.has-black-background-color)),.has-background:is(.wp-block-group,.wp-block-column).is-style-section-4:not(:is(.has-white-background-color,.has-black-background-color)),.has-text-color:is(.wp-block-group,.wp-block-column).is-style-section-4:not(:is(.has-white-background-color,.has-black-background-color)){background-color:var(--wp--preset--color--accent-3);color:var(--wp--preset--color--accent-2);} body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-4:not(:is(.has-white-background-color,.has-black-background-color)) h1:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-4:not(:is(.has-white-background-color,.has-black-background-color)) h2:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-4:not(:is(.has-white-background-color,.has-black-background-color)) h3:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-4:not(:is(.has-white-background-color,.has-black-background-color)) h4:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-4:not(:is(.has-white-background-color,.has-black-background-color)) h5:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-4:not(:is(.has-white-background-color,.has-black-background-color)) h6:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-4:not(:is(.has-white-background-color,.has-black-background-color)) p:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-4:not(:is(.has-white-background-color,.has-black-background-color)) a:where(:not(.wp-element-button):not(.wp-block-social-link-anchor)):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-4:not(:is(.has-white-background-color,.has-black-background-color)) .wp-element-caption:where(:not(.elementor *):not([data-elementor-type] *)){color:var(--wp--preset--color--accent-2);} :is(.wp-block-group,.wp-block-column).is-style-section-5:not(:is(.has-white-background-color,.has-black-background-color)),.has-background:is(.wp-block-group,.wp-block-column).is-style-section-5:not(:is(.has-white-background-color,.has-black-background-color)),.has-text-color:is(.wp-block-group,.wp-block-column).is-style-section-5:not(:is(.has-white-background-color,.has-black-background-color)){background-color:var(--wp--preset--color--contrast);color:var(--wp--preset--color--base);} body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-5:not(:is(.has-white-background-color,.has-black-background-color)) h1:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-5:not(:is(.has-white-background-color,.has-black-background-color)) h2:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-5:not(:is(.has-white-background-color,.has-black-background-color)) h3:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-5:not(:is(.has-white-background-color,.has-black-background-color)) h4:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-5:not(:is(.has-white-background-color,.has-black-background-color)) h5:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-5:not(:is(.has-white-background-color,.has-black-background-color)) h6:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-5:not(:is(.has-white-background-color,.has-black-background-color)) p:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-5:not(:is(.has-white-background-color,.has-black-background-color)) a:where(:not(.wp-element-button):not(.wp-block-social-link-anchor)):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-5:not(:is(.has-white-background-color,.has-black-background-color)) .wp-element-caption:where(:not(.elementor *):not([data-elementor-type] *)){color:var(--wp--preset--color--base);} body .wp-site-blocks input:not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="image"]):not([type="hidden"]),body .wp-site-blocks textarea,body .wp-site-blocks select{background-color:var(--wp--preset--color--base);color:var(--wp--preset--color--contrast);border:1px solid color-mix(in srgb, var(--wp--preset--color--contrast) 30%, transparent);} .wp-site-blocks input[type="submit"]:not(.wp-element-button),.wp-site-blocks button[type="submit"]:not(.wp-element-button){background-color:var(--wp--preset--color--accent-2);color:var(--wp--preset--color--base);border-width:0;padding:12px 30px;font-family:inherit;font-size:var(--wp--preset--font-size--medium, 1rem);line-height:inherit;cursor:pointer;}</style>
162 +<style id="et-critical-inline-css">body,.et_pb_column_1_2 .et_quote_content blockquote cite,.et_pb_column_1_2 .et_link_content a.et_link_main_url,.et_pb_column_1_3 .et_quote_content blockquote cite,.et_pb_column_3_8 .et_quote_content blockquote cite,.et_pb_column_1_4 .et_quote_content blockquote cite,.et_pb_blog_grid .et_quote_content blockquote cite,.et_pb_column_1_3 .et_link_content a.et_link_main_url,.et_pb_column_3_8 .et_link_content a.et_link_main_url,.et_pb_column_1_4 .et_link_content a.et_link_main_url,.et_pb_blog_grid .et_link_content a.et_link_main_url,body .et_pb_bg_layout_light .et_pb_post p,body .et_pb_bg_layout_dark .et_pb_post p{font-size:14px}.et_pb_slide_content,.et_pb_best_value{font-size:15px}#et_search_icon:hover,.mobile_menu_bar:before,.mobile_menu_bar:after,.et_toggle_slide_menu:after,.et-social-icon a:hover,.et_pb_sum,.et_pb_pricing li a,.et_pb_pricing_table_button,.et_overlay:before,.entry-summary p.price ins,.et_pb_member_social_links a:hover,.et_pb_widget li a:hover,.et_pb_filterable_portfolio .et_pb_portfolio_filters li a.active,.et_pb_filterable_portfolio .et_pb_portofolio_pagination ul li a.active,.et_pb_gallery .et_pb_gallery_pagination ul li a.active,.wp-pagenavi span.current,.wp-pagenavi a:hover,.nav-single a,.tagged_as a,.posted_in a{color:#eb6209}.et_pb_contact_submit,.et_password_protected_form .et_submit_button,.et_pb_bg_layout_light .et_pb_newsletter_button,.comment-reply-link,.form-submit .et_pb_button,.et_pb_bg_layout_light .et_pb_promo_button,.et_pb_bg_layout_light .et_pb_more_button,.et_pb_contact p input[type="checkbox"]:checked+label i:before,.et_pb_bg_layout_light.et_pb_module.et_pb_button{color:#eb6209}.footer-widget h4{color:#eb6209}.et-search-form,.nav li ul,.et_mobile_menu,.footer-widget li:before,.et_pb_pricing li:before,blockquote{border-color:#eb6209}.et_pb_counter_amount,.et_pb_featured_table .et_pb_pricing_heading,.et_quote_content,.et_link_content,.et_audio_content,.et_pb_post_slider.et_pb_bg_layout_dark,.et_slide_in_menu_container,.et_pb_contact p input[type="radio"]:checked+label i:before{background-color:#eb6209}a{color:#eb6209}.et_secondary_nav_enabled #page-container #top-header{background-color:#eb6209!important}#et-secondary-nav li ul{background-color:#eb6209}#main-footer .footer-widget h4,#main-footer .widget_block h1,#main-footer .widget_block h2,#main-footer .widget_block h3,#main-footer .widget_block h4,#main-footer .widget_block h5,#main-footer .widget_block h6{color:#eb6209}.footer-widget li:before{border-color:#eb6209}@media only screen and (min-width:981px){.et_fixed_nav #page-container .et-fixed-header#top-header{background-color:#eb6209!important}.et_fixed_nav #page-container .et-fixed-header#top-header #et-secondary-nav li ul{background-color:#eb6209}}@media only screen and (min-width:1350px){.et_pb_row{padding:27px 0}.et_pb_section{padding:54px 0}.single.et_pb_pagebuilder_layout.et_full_width_page .et_post_meta_wrapper{padding-top:81px}.et_pb_fullwidth_section{padding:0}}.et_pb_fullwidth_header_0.et_pb_fullwidth_header .header-content h1,.et_pb_fullwidth_header_0.et_pb_fullwidth_header .header-content h2.et_pb_module_header,.et_pb_fullwidth_header_0.et_pb_fullwidth_header .header-content h3.et_pb_module_header,.et_pb_fullwidth_header_0.et_pb_fullwidth_header .header-content h4.et_pb_module_header,.et_pb_fullwidth_header_0.et_pb_fullwidth_header .header-content h5.et_pb_module_header,.et_pb_fullwidth_header_0.et_pb_fullwidth_header .header-content h6.et_pb_module_header{font-family:'Oswald',Helvetica,Arial,Lucida,sans-serif;font-weight:700;text-transform:uppercase;font-size:80px;line-height:1.3em}.et_pb_fullwidth_header_0.et_pb_fullwidth_header .et_pb_header_content_wrapper{font-family:'Roboto',Helvetica,Arial,Lucida,sans-serif;font-size:26px;line-height:1.8em}.et_pb_section_0.et_pb_section{padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background-color:#233b4e!important}.et_pb_fullwidth_header_0.et_pb_fullwidth_header .header-content h1,.et_pb_fullwidth_header_0.et_pb_fullwidth_header .header-content h2.et_pb_module_header,.et_pb_fullwidth_header_0.et_pb_fullwidth_header .header-content h3.et_pb_module_header,.et_pb_fullwidth_header_0.et_pb_fullwidth_header .header-content h4.et_pb_module_header,.et_pb_fullwidth_header_0.et_pb_fullwidth_header .header-content h5.et_pb_module_header,.et_pb_fullwidth_header_0.et_pb_fullwidth_header .header-content h6.et_pb_module_header{font-family:'Oswald',Helvetica,Arial,Lucida,sans-serif;font-weight:700;text-transform:uppercase;font-size:80px;line-height:1.3em}.et_pb_fullwidth_header_0.et_pb_fullwidth_header .et_pb_header_content_wrapper{font-family:'Roboto',Helvetica,Arial,Lucida,sans-serif;font-size:26px;line-height:1.8em}.et_pb_fullwidth_header_0.et_pb_fullwidth_header .et_pb_fullwidth_header_subhead{line-height:1.4em}.et_pb_fullwidth_header.et_pb_fullwidth_header_0{background-position:center bottom 0px;background-image:url(https://immeublesbrio.com/wp-content/uploads/2020/01/Le_Brio-f.jpg)}body #page-container .et_pb_section .et_pb_fullwidth_header_0 .et_pb_button_one.et_pb_button{border-radius:0px;letter-spacing:4px;font-size:20px;font-family:'Oswald',Helvetica,Arial,Lucida,sans-serif!important;font-weight:700!important;text-transform:uppercase!important}body #page-container .et_pb_section .et_pb_fullwidth_header_0 .et_pb_button_one.et_pb_button:hover{color:#ffffff!important;border-color:#ffffff!important;border-radius:0px!important;letter-spacing:4px!important;padding-right:2em;padding-left:0.7em;background-image:initial;background-color:rgba(0,0,0,0)}body #page-container .et_pb_section .et_pb_fullwidth_header_0 .et_pb_button_one.et_pb_button:hover:after,body #page-container .et_pb_section .et_pb_button_0:hover:after{margin-left:.3em;left:auto;margin-left:.3em;opacity:1}body #page-container .et_pb_section .et_pb_fullwidth_header_0 .et_pb_button_one.et_pb_button:after{color:#ffffff;line-height:inherit;font-size:inherit!important;opacity:0;margin-left:-1em;left:auto;display:inline-block;font-family:ETmodules!important;font-weight:400!important}.et_pb_fullwidth_header_0 .et_pb_button_one.et_pb_button{transition:color 300ms ease 0ms,background-color 300ms ease 0ms,border 300ms ease 0ms,border-radius 300ms ease 0ms,letter-spacing 300ms ease 0ms}.et_pb_fullwidth_header_0.et_pb_fullwidth_header .et_pb_fullwidth_header_container .header-content{max-width:300%}.et_pb_fullwidth_header_0.et_pb_fullwidth_header .et_pb_fullwidth_header_overlay{background-color:rgba(29,38,51,0.86)}.et_pb_section_1.et_pb_section{padding-top:110px;padding-bottom:110px}.et_pb_text_0.et_pb_text,.et_pb_text_2.et_pb_text{color:#1a1a1a!important}.et_pb_text_0{line-height:1.4em;font-family:'Roboto',Helvetica,Arial,Lucida,sans-serif;font-size:30px;line-height:1.4em}.et_pb_divider_0{height:false;max-width:150px}.et_pb_divider_0:before{border-top-color:#eb6209;border-top-width:3px}.et_pb_text_1{line-height:1.8em;font-family:'Roboto',Helvetica,Arial,Lucida,sans-serif;font-size:18px;line-height:1.8em;padding-top:30px!important}body #page-container .et_pb_section .et_pb_button_0{color:#ffffff!important;border-width:0px!important;border-color:#ffffff;border-radius:0px;font-size:24px;background-color:#eb6209}body #page-container .et_pb_section .et_pb_button_0:after{color:#ffffff;line-height:inherit;font-size:inherit!important;margin-left:-1em;left:auto;font-family:ETmodules!important;font-weight:400!important}.et_pb_button_0,.et_pb_button_0:after{transition:all 300ms ease 0ms}.et_pb_image_0,.et_pb_image_1{margin-top:90px!important;width:100%;max-width:100%!important;text-align:left;margin-left:0}.et_pb_image_0 .et_pb_image_wrap,.et_pb_image_0 img,.et_pb_image_1 .et_pb_image_wrap,.et_pb_image_1 img{width:100%}.et_pb_text_2 h1{font-family:'Oswald',Helvetica,Arial,Lucida,sans-serif;font-weight:700;text-transform:uppercase;font-size:50px;line-height:1.3em;text-align:right}@media only screen and (max-width:980px){body #page-container .et_pb_section .et_pb_fullwidth_header_0 .et_pb_button_one.et_pb_button:after,body #page-container .et_pb_section .et_pb_button_0:after{line-height:inherit;font-size:inherit!important;margin-left:-1em;left:auto;display:inline-block;opacity:0;content:attr(data-icon);font-family:ETmodules!important;font-weight:400!important}body #page-container .et_pb_section .et_pb_fullwidth_header_0 .et_pb_button_one.et_pb_button:before,body #page-container .et_pb_section .et_pb_button_0:before{display:none}body #page-container .et_pb_section .et_pb_fullwidth_header_0 .et_pb_button_one.et_pb_button:hover:after,body #page-container .et_pb_section .et_pb_button_0:hover:after{margin-left:.3em;left:auto;margin-left:.3em;opacity:1}.et_pb_image_0,.et_pb_image_1{text-align:center;margin-left:auto;margin-right:auto}}@media only screen and (max-width:767px){body #page-container .et_pb_section .et_pb_fullwidth_header_0 .et_pb_button_one.et_pb_button:after,body #page-container .et_pb_section .et_pb_button_0:after{line-height:inherit;font-size:inherit!important;margin-left:-1em;left:auto;display:inline-block;opacity:0;content:attr(data-icon);font-family:ETmodules!important;font-weight:400!important}body #page-container .et_pb_section .et_pb_fullwidth_header_0 .et_pb_button_one.et_pb_button:before,body #page-container .et_pb_section .et_pb_button_0:before{display:none}body #page-container .et_pb_section .et_pb_fullwidth_header_0 .et_pb_button_one.et_pb_button:hover:after,body #page-container .et_pb_section .et_pb_button_0:hover:after{margin-left:.3em;left:auto;margin-left:.3em;opacity:1}}</style>
163 +<link rel="preload" as="style" id="et-core-unified-deferred-156-cached-inline-styles" href="https://immeublesbrio.com/wp-content/et-cache/156/et-core-unified-deferred-156.min.css?ver=1775414924" onload="this.onload=null;this.rel='stylesheet';" /> <style id="site-designer-logo-constraints">
164 + .wp-block-site-logo.is-default-size img {
165 + width: auto;
166 + height: auto;
167 + max-width: 180px;
168 + max-height: 80px;
169 + }
170 + .wp-block-site-logo img {
171 + height: auto;
172 + }
173 + </style>
174 + <style id="wp-block-library-inline-css">
175 +:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
176 +/*wp_block_styles_on_demand_placeholder:6a75ed5c9608e*/
177 +/*# sourceURL=wp-block-library-inline-css */
178 +</style>
179 +
180 +</head>
181 +<body class="home wp-singular page-template-default page page-id-156 wp-theme-Divi et_pb_button_helper_class et_fixed_nav et_show_nav et_secondary_nav_enabled et_secondary_nav_two_panels et_primary_nav_dropdown_animation_fade et_secondary_nav_dropdown_animation_fade et_header_style_left et_pb_footer_columns4 et_cover_background et_pb_gutter windows et_pb_gutters3 et_pb_pagebuilder_layout et_no_sidebar et_divi_theme et-db">
182 + <div id="page-container">
183 +
184 + <div id="top-header">
185 + <div class="container clearfix">
186 +
187 +
188 + <div id="et-info">
189 + <span id="et-info-phone">418-928-7688</span>
190 +
191 + <a href="mailto:jerome.bern@hotmail.com"><span id="et-info-email">jerome.bern@hotmail.com</span></a>
192 +
193 + <ul class="et-social-icons">
194 +
195 + <li class="et-social-icon et-social-facebook">
196 + <a href="https://www.facebook.com/ImmeublesBrio/" class="icon">
197 + <span>Facebook</span>
198 + </a>
199 + </li>
200 +
201 +</ul> </div>
202 +
203 +
204 + <div id="et-secondary-menu">
205 + <div class="et_duplicate_social_icons">
206 + <ul class="et-social-icons">
207 +
208 + <li class="et-social-icon et-social-facebook">
209 + <a href="https://www.facebook.com/ImmeublesBrio/" class="icon">
210 + <span>Facebook</span>
211 + </a>
212 + </li>
213 +
214 +</ul>
215 + </div> </div>
216 +
217 + </div>
218 + </div>
219 +
220 +
221 + <header id="main-header" data-height-onload="66">
222 + <div class="container clearfix et_menu_container">
223 + <div class="logo_container">
224 + <span class="logo_helper"></span>
225 + <a href="https://immeublesbrio.com/">
226 + <img src="https://immeublesbrio.com/wp-content/uploads/2023/10/brio-84x39-1.png" width="84" height="39" alt="Immeubles Brio" id="logo" data-height-percentage="54" />
227 + </a>
228 + </div>
229 + <div id="et-top-navigation" data-height="66" data-fixed-height="40">
230 + <nav id="top-menu-nav">
231 + <ul id="top-menu" class="nav"><li id="menu-item-170" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-156 current_page_item menu-item-170"><a href="https://immeublesbrio.com/" aria-current="page">Accueil</a></li>
232 +<li id="menu-item-660" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-660"><a href="https://immeublesbrio.com/appartements-a-louer-val-belair/">Appartements</a></li>
233 +<li id="menu-item-740" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-740"><a href="https://immeublesbrio.com/secteur-val-belair/">Secteur</a></li>
234 +<li id="menu-item-171" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-171"><a href="https://immeublesbrio.com/contactez-nous/">Contactez-nous</a></li>
235 +</ul> </nav>
236 +
237 +
238 +
239 +
240 + <div id="et_mobile_nav_menu">
241 + <div class="mobile_nav closed">
242 + <span class="select_page">Sélectionner une page</span>
243 + <span class="mobile_menu_bar mobile_menu_bar_toggle"></span>
244 + </div>
245 + </div> </div> <!-- #et-top-navigation -->
246 + </div> <!-- .container -->
247 + </header> <!-- #main-header -->
248 + <div id="et-main-area">
249 +
250 +<div id="main-content">
251 +
252 +
253 +
254 + <article id="post-156" class="post-156 page type-page status-publish has-post-thumbnail hentry">
255 +
256 +
257 + <div class="entry-content">
258 + <div class="et-l et-l--post">
259 + <div class="et_builder_inner_content et_pb_gutters3">
260 + <div class="et_pb_section et_pb_section_0 et_pb_with_background et_pb_section_parallax et_pb_fullwidth_section et_section_regular" >
261 +
262 +
263 +
264 +
265 +
266 +
267 + <section class="et_pb_module et_pb_fullwidth_header et_pb_fullwidth_header_0 et_hover_enabled et_pb_text_align_left et_pb_bg_layout_dark et_pb_fullscreen">
268 +
269 +
270 +
271 +
272 + <div class="et_pb_fullwidth_header_container left">
273 + <div class="header-content-container center">
274 + <div class="header-content">
275 +
276 + <h1 class="et_pb_module_header">Le Brio, votre espace de vie.</h1>
277 +
278 + <div class="et_pb_header_content_wrapper"><p>Le Brio vous offre des appartements urbains à Val-Bélair: 3½, 4½ et 5½.</p></div>
279 +
280 + </div>
281 + </div>
282 +
283 + </div>
284 + <div class="et_pb_fullwidth_header_overlay"></div>
285 + <div class="et_pb_fullwidth_header_scroll"></div>
286 + </section>
287 +
288 +
289 + </div><div class="et_pb_section et_pb_section_1 et_section_regular" >
290 +
291 +
292 +
293 +
294 +
295 +
296 + <div class="et_pb_row et_pb_row_0">
297 + <div class="et_pb_column et_pb_column_1_2 et_pb_column_0 et_pb_css_mix_blend_mode_passthrough">
298 +
299 +
300 +
301 +
302 + <div class="et_pb_module et_pb_text et_pb_text_0 et_pb_text_align_left et_pb_bg_layout_light">
303 +
304 +
305 +
306 +
307 + <div class="et_pb_text_inner"><p>Des appartements luxueux à un prix abordable!</p></div>
308 + </div><div class="et_pb_module et_pb_divider et_pb_divider_0 et_pb_divider_position_center et_pb_space"><div class="et_pb_divider_internal"></div></div><div class="et_pb_module et_pb_text et_pb_text_1 et_pb_text_align_left et_pb_bg_layout_light">
309 +
310 +
311 +
312 +
313 + <div class="et_pb_text_inner"><p>Ce nouveau projet de 49 appartements de style urbain à Val-Bélair et a ouvert ses portes en juin 2020. L’immeuble comprend 5 étages offrant de grands appartements hauts de gamme:</p>
314 +<ul>
315 +<li><strong> 3½ à partir de 1500$</strong></li>
316 +<li><strong> 4½ à partir de 1625$</strong></li>
317 +<li><strong>5½ à partir de 1850$</strong></li>
318 +</ul>
319 +<p>Le Brio est situé sur le boulevard Pie-XI, à proximité de tous les services (quincaillerie, épicerie, pharmacie, restaurant et plus encore) et des grands axes routiers: Henri IV et Ste-Geneviève. ​</p></div>
320 + </div><div class="et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_module ">
321 + <a class="et_pb_button et_pb_button_0 et_pb_bg_layout_light" href="https://immeublesbrio.com/secteur-val-belair/" data-icon="$">Plus de détails sur le secteur</a>
322 + </div><div class="et_pb_module et_pb_image et_pb_image_0">
323 +
324 +
325 +
326 +
327 + <span class="et_pb_image_wrap "><img fetchpriority="high" decoding="async" width="600" height="800" src="https://immeublesbrio.com/wp-content/uploads/2020/01/happy-girl.jpg" alt="" title="" srcset="https://immeublesbrio.com/wp-content/uploads/2020/01/happy-girl.jpg 600w, https://immeublesbrio.com/wp-content/uploads/2020/01/happy-girl-480x640.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 600px, 100vw" class="wp-image-884" /></span>
328 + </div>
329 + </div><div class="et_pb_column et_pb_column_1_2 et_pb_column_1 et_pb_css_mix_blend_mode_passthrough et-last-child">
330 +
331 +
332 +
333 +
334 + <div class="et_pb_module et_pb_text et_pb_text_2 et_pb_text_align_left et_pb_bg_layout_light">
335 +
336 +
337 +
338 +
339 + <div class="et_pb_text_inner"><h1>Découvrez un milieu de vie qui correspond à tous vos besoins!</h1></div>
340 + </div><div class="et_pb_module et_pb_image et_pb_image_1">
341 +
342 +
343 +
344 +
345 + <span class="et_pb_image_wrap "><img decoding="async" width="720" height="961" data-src="https://immeublesbrio.com/wp-content/uploads/2020/01/CloseUp_Sofa.jpg" alt="" title="" data-srcset="https://immeublesbrio.com/wp-content/uploads/2020/01/CloseUp_Sofa.jpg 720w, https://immeublesbrio.com/wp-content/uploads/2020/01/CloseUp_Sofa-480x641.jpg 480w" data-sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 720px, 100vw" class="wp-image-816 lazyload" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 720px; --smush-placeholder-aspect-ratio: 720/961;" /></span>
346 + </div>
347 + </div>
348 +
349 +
350 +
351 +
352 + </div>
353 +
354 +
355 + </div><div class="et_pb_section et_pb_section_2 et_pb_with_background et_section_regular" >
356 +
357 +
358 +
359 +
360 +
361 +
362 + <div class="et_pb_row et_pb_row_1 et_pb_row_fullwidth et_pb_equal_columns et_pb_gutters1">
363 + <div class="et_pb_column et_pb_column_1_2 et_pb_column_2 et_pb_css_mix_blend_mode_passthrough">
364 +
365 +
366 +
367 +
368 + <div class="et_pb_module et_pb_image et_pb_image_2">
369 +
370 +
371 +
372 +
373 + <span class="et_pb_image_wrap "></span>
374 + </div>
375 + </div><div class="et_pb_column et_pb_column_1_2 et_pb_column_3 et_pb_css_mix_blend_mode_passthrough et-last-child">
376 +
377 +
378 +
379 +
380 + <div class="et_pb_module et_pb_text et_pb_text_3 et_pb_text_align_left et_pb_bg_layout_light">
381 +
382 +
383 +
384 +
385 + <div class="et_pb_text_inner"><h1>Un regard dans votre univers</h1></div>
386 + </div><div class="et_pb_module et_pb_divider et_pb_divider_1 et_pb_divider_position_center et_pb_space"><div class="et_pb_divider_internal"></div></div><div class="et_pb_module et_pb_text et_pb_text_4 et_pb_text_align_left et_pb_bg_layout_light">
387 +
388 +
389 +
390 +
391 + <div class="et_pb_text_inner">PARTICULARITÉ DES APPARTEMENTS </div>
392 + </div><div class="et_pb_module et_pb_text et_pb_text_5 et_pb_text_align_left et_pb_bg_layout_light">
393 +
394 +
395 +
396 +
397 + <div class="et_pb_text_inner"><p>De grands appartements décorés aux dernières tendances et bien insonorisés, vous permettront de profiter des plaisirs quotidiens auprès des vôtres.</p>
398 +<p>Une finition de qualité supérieure offre un cachet unique à votre appartement. Une salle de bain qui fera envie à vos amis: douche en coin en verre et céramique et bain autoportant digne du look des grands hôtels.</p></div>
399 + </div><div class="et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_module ">
400 + <a class="et_pb_button et_pb_button_1 et_pb_bg_layout_light" href="https://immeublesbrio.com/appartements-a-louer-val-belair/" data-icon="$">Voir les appartements</a>
401 + </div>
402 + </div>
403 +
404 +
405 +
406 +
407 + </div>
408 +
409 +
410 + </div><div class="et_pb_section et_pb_section_3 et_pb_with_background et_section_regular" >
411 +
412 +
413 +
414 +
415 +
416 +
417 + <div class="et_pb_row et_pb_row_2">
418 + <div class="et_pb_column et_pb_column_1_2 et_pb_column_4 et_pb_css_mix_blend_mode_passthrough">
419 +
420 +
421 +
422 +
423 + <div class="et_pb_module et_pb_text et_pb_text_6 et_pb_text_align_left et_pb_bg_layout_light">
424 +
425 +
426 +
427 +
428 + <div class="et_pb_text_inner"><h1>Les services</h1></div>
429 + </div><div class="et_pb_module et_pb_divider et_pb_divider_2 et_pb_divider_position_center et_pb_space"><div class="et_pb_divider_internal"></div></div><div class="et_pb_module et_pb_text et_pb_text_7 et_pb_text_align_left et_pb_bg_layout_light">
430 +
431 +
432 +
433 +
434 + <div class="et_pb_text_inner">Notre priorité: le bonheur des familles. </div>
435 + </div>
436 + </div><div class="et_pb_column et_pb_column_1_2 et_pb_column_5 et_pb_css_mix_blend_mode_passthrough et-last-child">
437 +
438 +
439 +
440 +
441 + <div class="et_pb_module et_pb_text et_pb_text_8 et_pb_text_align_left et_pb_bg_layout_light">
442 +
443 +
444 +
445 +
446 + <div class="et_pb_text_inner"><p>Un environnement paisible, entouré de verdure vous permettant de profiter aisément des installations extérieures telles que <b>balançoires</b>.</p>
447 +<p>Nous avons même aménagé un coin garage intérieur vous permettant de nettoyer votre voiture et de faire vous-même l’entretien de celle-ci. ​(compresseur, balayeuse, lave-auto)</p></div>
448 + </div>
449 + </div>
450 +
451 +
452 +
453 +
454 + </div><div class="et_pb_row et_pb_row_3">
455 + <div class="et_pb_column et_pb_column_1_4 et_pb_column_6 et_pb_css_mix_blend_mode_passthrough">
456 +
457 +
458 +
459 +
460 + <div class="et_pb_module et_pb_blurb et_pb_blurb_0 et_pb_text_align_left et_pb_blurb_position_left et_pb_bg_layout_light">
461 +
462 +
463 +
464 +
465 + <div class="et_pb_blurb_content">
466 + <div class="et_pb_main_blurb_image"><span class="et_pb_image_wrap"><span class="et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon et-pb-icon-circle">N</span></span></div>
467 + <div class="et_pb_blurb_container">
468 + <h4 class="et_pb_module_header"><span>Wifi (optionnel)</span></h4>
469 +
470 + </div>
471 + </div>
472 + </div>
473 + </div><div class="et_pb_column et_pb_column_1_4 et_pb_column_7 et_pb_css_mix_blend_mode_passthrough">
474 +
475 +
476 +
477 +
478 + <div class="et_pb_module et_pb_blurb et_pb_blurb_1 et_pb_text_align_left et_pb_blurb_position_left et_pb_bg_layout_light">
479 +
480 +
481 +
482 +
483 + <div class="et_pb_blurb_content">
484 + <div class="et_pb_main_blurb_image"><span class="et_pb_image_wrap"><span class="et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon et-pb-icon-circle">N</span></span></div>
485 + <div class="et_pb_blurb_container">
486 + <h4 class="et_pb_module_header"><span>Chute à déchets</span></h4>
487 +
488 + </div>
489 + </div>
490 + </div>
491 + </div><div class="et_pb_column et_pb_column_1_4 et_pb_column_8 et_pb_css_mix_blend_mode_passthrough">
492 +
493 +
494 +
495 +
496 + <div class="et_pb_module et_pb_blurb et_pb_blurb_2 et_pb_text_align_left et_pb_blurb_position_left et_pb_bg_layout_light">
497 +
498 +
499 +
500 +
501 + <div class="et_pb_blurb_content">
502 + <div class="et_pb_main_blurb_image"><span class="et_pb_image_wrap"><span class="et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon et-pb-icon-circle">N</span></span></div>
503 + <div class="et_pb_blurb_container">
504 + <h4 class="et_pb_module_header"><span>Lave-auto intérieur</span></h4>
505 +
506 + </div>
507 + </div>
508 + </div>
509 + </div><div class="et_pb_column et_pb_column_1_4 et_pb_column_9 et_pb_css_mix_blend_mode_passthrough et-last-child">
510 +
511 +
512 +
513 +
514 + <div class="et_pb_module et_pb_blurb et_pb_blurb_3 et_pb_text_align_left et_pb_blurb_position_left et_pb_bg_layout_light">
515 +
516 +
517 +
518 +
519 + <div class="et_pb_blurb_content">
520 + <div class="et_pb_main_blurb_image"><span class="et_pb_image_wrap"><span class="et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon et-pb-icon-circle">N</span></span></div>
521 + <div class="et_pb_blurb_container">
522 + <h4 class="et_pb_module_header"><span>Stationnement extérieur et intérieur</span></h4>
523 +
524 + </div>
525 + </div>
526 + </div>
527 + </div>
528 +
529 +
530 +
531 +
532 + </div><div class="et_pb_row et_pb_row_4">
533 + <div class="et_pb_column et_pb_column_1_4 et_pb_column_10 et_pb_css_mix_blend_mode_passthrough">
534 +
535 +
536 +
537 +
538 + <div class="et_pb_module et_pb_blurb et_pb_blurb_4 et_pb_text_align_left et_pb_blurb_position_left et_pb_bg_layout_light">
539 +
540 +
541 +
542 +
543 + <div class="et_pb_blurb_content">
544 + <div class="et_pb_main_blurb_image"><span class="et_pb_image_wrap"><span class="et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon et-pb-icon-circle">N</span></span></div>
545 + <div class="et_pb_blurb_container">
546 + <h4 class="et_pb_module_header"><span>Ascenseur </span></h4>
547 +
548 + </div>
549 + </div>
550 + </div>
551 + </div><div class="et_pb_column et_pb_column_1_4 et_pb_column_11 et_pb_css_mix_blend_mode_passthrough">
552 +
553 +
554 +
555 +
556 + <div class="et_pb_module et_pb_blurb et_pb_blurb_5 et_pb_text_align_left et_pb_blurb_position_left et_pb_bg_layout_light">
557 +
558 +
559 +
560 +
561 + <div class="et_pb_blurb_content">
562 + <div class="et_pb_main_blurb_image"><span class="et_pb_image_wrap"><span class="et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon et-pb-icon-circle">N</span></span></div>
563 + <div class="et_pb_blurb_container">
564 + <h4 class="et_pb_module_header"><span>Espaces détentes extérieurs</span></h4>
565 +
566 + </div>
567 + </div>
568 + </div>
569 + </div><div class="et_pb_column et_pb_column_1_4 et_pb_column_12 et_pb_css_mix_blend_mode_passthrough">
570 +
571 +
572 +
573 +
574 + <div class="et_pb_module et_pb_blurb et_pb_blurb_6 et_pb_text_align_left et_pb_blurb_position_left et_pb_bg_layout_light">
575 +
576 +
577 +
578 +
579 + <div class="et_pb_blurb_content">
580 + <div class="et_pb_main_blurb_image"><span class="et_pb_image_wrap"><span class="et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon et-pb-icon-circle">N</span></span></div>
581 + <div class="et_pb_blurb_container">
582 + <h4 class="et_pb_module_header"><span>Caméra de sécurité 24h/7</span></h4>
583 +
584 + </div>
585 + </div>
586 + </div>
587 + </div><div class="et_pb_column et_pb_column_1_4 et_pb_column_13 et_pb_css_mix_blend_mode_passthrough et-last-child et_pb_column_empty">
588 +
589 +
590 +
591 +
592 +
593 + </div>
594 +
595 +
596 +
597 +
598 + </div>
599 +
600 +
601 + </div><div class="et_pb_section et_pb_section_4 et_pb_with_background et_pb_section_parallax et_pb_fullwidth_section et_section_regular" >
602 +
603 +
604 +
605 +
606 +
607 +
608 + <section class="et_pb_module et_pb_fullwidth_header et_pb_fullwidth_header_1 et_hover_enabled et_pb_text_align_center et_pb_bg_layout_dark et_pb_fullscreen">
609 +
610 +
611 +
612 +
613 + <div class="et_pb_fullwidth_header_container center">
614 + <div class="header-content-container center">
615 + <div class="header-content">
616 +
617 + <h6 class="et_pb_module_header">Qu'attendez-vous?</h6>
618 +
619 + <div class="et_pb_header_content_wrapper"><p>Pour information ou prendre un rendez-vous: 418-928-7688</p></div>
620 + <a class="et_pb_button et_pb_more_button et_pb_button_one" href="https://immeublesbrio.com/contactez-nous/" data-icon="$">Contactez-nous</a>
621 + </div>
622 + </div>
623 +
624 + </div>
625 + <div class="et_pb_fullwidth_header_overlay"></div>
626 + <div class="et_pb_fullwidth_header_scroll"></div>
627 + </section>
628 +
629 +
630 + </div> </div>
631 + </div>
632 + </div>
633 +
634 +
635 + </article>
636 +
637 +
638 +
639 +</div>
640 +
641 +
642 + <span class="et_pb_scroll_top et-pb-icon"></span>
643 +
644 +
645 + <footer id="main-footer">
646 +
647 +
648 +
649 + <div id="footer-bottom">
650 + <div class="container clearfix">
651 + <ul class="et-social-icons">
652 +
653 + <li class="et-social-icon et-social-facebook">
654 + <a href="https://www.facebook.com/ImmeublesBrio/" class="icon">
655 + <span>Facebook</span>
656 + </a>
657 + </li>
658 +
659 +</ul><div id="footer-info">Copyright 2026 - Tous droits réservés - Les immeubles Brio</div> </div>
660 + </div>
661 + </footer>
662 + </div>
663 +
664 +
665 + </div>
666 +
667 + <script type="speculationrules">
668 +{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/Divi/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
669 +</script>
670 +<script id="jquery-core-js" src="https://immeublesbrio.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script>
671 +<script id="jquery-migrate-js" src="https://immeublesbrio.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script>
672 +<script id="jquery-js-after">
673 +jqueryParams.length&&$.each(jqueryParams,function(e,r){if("function"==typeof r){var n=String(r);n.replace("$","jQuery");var a=new Function("return "+n)();$(document).ready(a)}});
674 +//# sourceURL=jquery-js-after
675 +</script>
676 +<script id="divi-custom-script-js-extra">
677 +var DIVI = {"item_count":"%d Item","items_count":"%d Items"};
678 +var et_builder_utils_params = {"condition":{"diviTheme":true,"extraTheme":false},"scrollLocations":["app","top"],"builderScrollLocations":{"desktop":"app","tablet":"app","phone":"app"},"onloadScrollLocation":"app","builderType":"fe"};
679 +var et_frontend_scripts = {"builderCssContainerPrefix":"#et-boc","builderCssLayoutPrefix":"#et-boc .et-l"};
680 +var et_pb_custom = {"ajaxurl":"https://immeublesbrio.com/wp-admin/admin-ajax.php","images_uri":"https://immeublesbrio.com/wp-content/themes/Divi/images","builder_images_uri":"https://immeublesbrio.com/wp-content/themes/Divi/includes/builder/images","et_frontend_nonce":"5318db6bb9","subscription_failed":"Veuillez v\u00e9rifier les champs ci-dessous pour vous assurer que vous avez entr\u00e9 les informations correctes.","et_ab_log_nonce":"23bfa9bf51","fill_message":"S'il vous pla\u00eet, remplissez les champs suivants:","contact_error_message":"Veuillez corriger les erreurs suivantes :","invalid":"E-mail non valide","captcha":"Captcha","prev":"Pr\u00e9c\u00e9dent","previous":"Pr\u00e9c\u00e9dente","next":"Prochaine","wrong_captcha":"Vous avez entr\u00e9 le mauvais num\u00e9ro dans le captcha.","wrong_checkbox":"Case \u00e0 cocher","ignore_waypoints":"no","is_divi_theme_used":"1","widget_search_selector":".widget_search","ab_tests":[],"is_ab_testing_active":"","page_id":"156","unique_test_id":"","ab_bounce_rate":"5","is_cache_plugin_active":"yes","is_shortcode_tracking":"","tinymce_uri":"https://immeublesbrio.com/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors","accent_color":"#eb6209","waypoints_options":[]};
681 +var et_pb_box_shadow_elements = [];
682 +//# sourceURL=divi-custom-script-js-extra
683 +</script>
684 +<script id="divi-custom-script-js" src="https://immeublesbrio.com/wp-content/themes/Divi/js/scripts.min.js?ver=4.27.6"></script>
685 +<script id="et-core-common-js" src="https://immeublesbrio.com/wp-content/themes/Divi/core/admin/js/common.js?ver=4.27.6"></script>
686 +<script id="smush-lazy-load-js-before">
687 +var smushLazyLoadOptions = {"autoResizingEnabled":false,"autoResizeOptions":{"precision":5,"skipAutoWidth":true}};
688 +//# sourceURL=smush-lazy-load-js-before
689 +</script>
690 +<script id="smush-lazy-load-js" src="https://immeublesbrio.com/wp-content/plugins/wp-smushit/app/assets/js/smush-lazy-load.min.js?ver=3.24.0"></script>
691 +<script id="smush-lazy-load-js-after">
692 +function rw() { Waypoint.refreshAll(); } window.addEventListener( 'lazybeforeunveil', rw, false); window.addEventListener( 'lazyloaded', rw, false);
693 +//# sourceURL=smush-lazy-load-js-after
694 +</script>
695 +</body>
696 +</html>
added tests/fixtures/brio/da4ec7d3ae1b01913a28.html +2967 −0
@@ -0,0 +1,2967 @@
1 +<!DOCTYPE html>
2 +<html lang="fr-FR">
3 +<head>
4 + <meta charset="UTF-8" />
5 +<meta http-equiv="X-UA-Compatible" content="IE=edge">
6 + <link rel="pingback" href="https://immeublesbrio.com/xmlrpc.php" />
7 +
8 + <script type="text/javascript">
9 + document.documentElement.className = 'js';
10 + </script>
11 +
12 + <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /><style id="et-divi-open-sans-inline-css">/* Original: https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800&#038;subset=latin,latin-ext&#038;display=swap *//* User Agent: Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) Safari/538.1 Daum/4.1 */@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkWV4exQ.ttf) format('truetype');}@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV4exQ.ttf) format('truetype');}@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjWV4exQ.ttf) format('truetype');}@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWV4exQ.ttf) format('truetype');}@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjWV4exQ.ttf) format('truetype');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4uaVc.ttf) format('truetype');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVc.ttf) format('truetype');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4uaVc.ttf) format('truetype');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4uaVc.ttf) format('truetype');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1x4uaVc.ttf) format('truetype');}/* User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:27.0) Gecko/20100101 Firefox/27.0 */@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkWV4exg.woff) format('woff');}@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV4exg.woff) format('woff');}@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjWV4exg.woff) format('woff');}@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWV4exg.woff) format('woff');}@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjWV4exg.woff) format('woff');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4uaVQ.woff) format('woff');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVQ.woff) format('woff');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4uaVQ.woff) format('woff');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4uaVQ.woff) format('woff');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1x4uaVQ.woff) format('woff');}/* User Agent: Mozilla/5.0 (Windows NT 6.3; rv:39.0) Gecko/20100101 Firefox/39.0 */@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkWV4ewA.woff2) format('woff2');}@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV4ewA.woff2) format('woff2');}@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjWV4ewA.woff2) format('woff2');}@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWV4ewA.woff2) format('woff2');}@font-face {font-family: 'Open Sans';font-style: italic;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjWV4ewA.woff2) format('woff2');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4uaVI.woff2) format('woff2');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVI.woff2) format('woff2');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4uaVI.woff2) format('woff2');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4uaVI.woff2) format('woff2');}@font-face {font-family: 'Open Sans';font-style: normal;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1x4uaVI.woff2) format('woff2');}</style><style id="et-builder-googlefonts-cached-inline">/* Original: https://fonts.googleapis.com/css?family=Oswald:200,300,regular,500,600,700|Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic&#038;subset=latin,latin-ext&#038;display=swap *//* User Agent: Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) Safari/538.1 Daum/4.1 */@font-face {font-family: 'Oswald';font-style: normal;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvsUhiYA.ttf) format('truetype');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs169vsUhiYA.ttf) format('truetype');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUhiYA.ttf) format('truetype');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvsUhiYA.ttf) format('truetype');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9osUhiYA.ttf) format('truetype');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZosUhiYA.ttf) format('truetype');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 100;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLoHRuAb-lg.ttf) format('truetype');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLt_QuAb-lg.ttf) format('truetype');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLoHQuAb-lg.ttf) format('truetype');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 500;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLrPQuAb-lg.ttf) format('truetype');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLmbXuAb-lg.ttf) format('truetype');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 900;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLijXuAb-lg.ttf) format('truetype');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 100;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbFmaiA8.ttf) format('truetype');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuaabVmaiA8.ttf) format('truetype');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmaiA8.ttf) format('truetype');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 500;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWub2bVmaiA8.ttf) format('truetype');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuYjalmaiA8.ttf) format('truetype');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 900;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuZtalmaiA8.ttf) format('truetype');}/* User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:27.0) Gecko/20100101 Firefox/27.0 */@font-face {font-family: 'Oswald';font-style: normal;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvsUhiYw.woff) format('woff');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs169vsUhiYw.woff) format('woff');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUhiYw.woff) format('woff');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvsUhiYw.woff) format('woff');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9osUhiYw.woff) format('woff');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZosUhiYw.woff) format('woff');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 100;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLoHRuAb-lQ.woff) format('woff');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLt_QuAb-lQ.woff) format('woff');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLoHQuAb-lQ.woff) format('woff');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 500;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLrPQuAb-lQ.woff) format('woff');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLmbXuAb-lQ.woff) format('woff');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 900;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLijXuAb-lQ.woff) format('woff');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 100;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbFmaiAw.woff) format('woff');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuaabVmaiAw.woff) format('woff');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmaiAw.woff) format('woff');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 500;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWub2bVmaiAw.woff) format('woff');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuYjalmaiAw.woff) format('woff');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 900;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuZtalmaiAw.woff) format('woff');}/* User Agent: Mozilla/5.0 (Windows NT 6.3; rv:39.0) Gecko/20100101 Firefox/39.0 */@font-face {font-family: 'Oswald';font-style: normal;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvsUhiZQ.woff2) format('woff2');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs169vsUhiZQ.woff2) format('woff2');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUhiZQ.woff2) format('woff2');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvsUhiZQ.woff2) format('woff2');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9osUhiZQ.woff2) format('woff2');}@font-face {font-family: 'Oswald';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZosUhiZQ.woff2) format('woff2');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 100;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLoHRuAb-kw.woff2) format('woff2');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLt_QuAb-kw.woff2) format('woff2');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLoHQuAb-kw.woff2) format('woff2');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 500;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLrPQuAb-kw.woff2) format('woff2');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLmbXuAb-kw.woff2) format('woff2');}@font-face {font-family: 'Roboto';font-style: italic;font-weight: 900;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLijXuAb-kw.woff2) format('woff2');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 100;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbFmaiAo.woff2) format('woff2');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuaabVmaiAo.woff2) format('woff2');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmaiAo.woff2) format('woff2');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 500;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWub2bVmaiAo.woff2) format('woff2');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuYjalmaiAo.woff2) format('woff2');}@font-face {font-family: 'Roboto';font-style: normal;font-weight: 900;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuZtalmaiAo.woff2) format('woff2');}</style><meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
13 +<script id="cookieyes" type="text/javascript" src="https://cdn-cookieyes.com/client_data/88c5194670cb00587e38c369/script.js"></script><script type="text/javascript">
14 + let jqueryParams=[],jQuery=function(r){return jqueryParams=[...jqueryParams,r],jQuery},$=function(r){return jqueryParams=[...jqueryParams,r],$};window.jQuery=jQuery,window.$=jQuery;let customHeadScripts=!1;jQuery.fn=jQuery.prototype={},$.fn=jQuery.prototype={},jQuery.noConflict=function(r){if(window.jQuery)return jQuery=window.jQuery,$=window.jQuery,customHeadScripts=!0,jQuery.noConflict},jQuery.ready=function(r){jqueryParams=[...jqueryParams,r]},$.ready=function(r){jqueryParams=[...jqueryParams,r]},jQuery.load=function(r){jqueryParams=[...jqueryParams,r]},$.load=function(r){jqueryParams=[...jqueryParams,r]},jQuery.fn.ready=function(r){jqueryParams=[...jqueryParams,r]},$.fn.ready=function(r){jqueryParams=[...jqueryParams,r]};</script>
15 + <!-- This site is optimized with the Yoast SEO plugin v27.3 - https://yoast.com/product/yoast-seo-wordpress/ -->
16 + <title>Appartements à louer Val-Bélair, Neufchâtel, Loretteville, Québec</title>
17 + <meta name="description" content="Appartement locatif neuf de style condo avec beaucoup de commodités à Québec / Val-Bélair. 3 1/2, 4 1/2, et 5 1/2" />
18 + <link rel="canonical" href="https://immeublesbrio.com/appartements-a-louer-val-belair/" />
19 + <meta property="og:locale" content="fr_FR" />
20 + <meta property="og:type" content="article" />
21 + <meta property="og:title" content="Appartements à louer Val-Bélair, Neufchâtel, Loretteville, Québec" />
22 + <meta property="og:description" content="Appartement locatif neuf de style condo avec beaucoup de commodités à Québec / Val-Bélair. 3 1/2, 4 1/2, et 5 1/2" />
23 + <meta property="og:url" content="https://immeublesbrio.com/appartements-a-louer-val-belair/" />
24 + <meta property="og:site_name" content="Immeubles Brio" />
25 + <meta property="article:modified_time" content="2024-02-25T19:01:25+00:00" />
26 + <meta property="og:image" content="https://immeublesbrio.com/wp-content/uploads/2020/01/Le_Brio-f.jpg" />
27 + <meta property="og:image:width" content="1024" />
28 + <meta property="og:image:height" content="559" />
29 + <meta property="og:image:type" content="image/jpeg" />
30 + <meta name="twitter:card" content="summary_large_image" />
31 + <meta name="twitter:label1" content="Durée de lecture estimée" />
32 + <meta name="twitter:data1" content="23 minutes" />
33 + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/immeublesbrio.com\/appartements-a-louer-val-belair\/","url":"https:\/\/immeublesbrio.com\/appartements-a-louer-val-belair\/","name":"Appartements à louer Val-Bélair, Neufchâtel, Loretteville, Québec","isPartOf":{"@id":"http:\/\/6hc.94f.myftpupload.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/immeublesbrio.com\/appartements-a-louer-val-belair\/#primaryimage"},"image":{"@id":"https:\/\/immeublesbrio.com\/appartements-a-louer-val-belair\/#primaryimage"},"thumbnailUrl":"https:\/\/immeublesbrio.com\/wp-content\/uploads\/2020\/01\/Le_Brio-f.jpg","datePublished":"2019-12-04T15:50:55+00:00","dateModified":"2024-02-25T19:01:25+00:00","description":"Appartement locatif neuf de style condo avec beaucoup de commodités à Québec \/ Val-Bélair. 3 1\/2, 4 1\/2, et 5 1\/2","breadcrumb":{"@id":"https:\/\/immeublesbrio.com\/appartements-a-louer-val-belair\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/immeublesbrio.com\/appartements-a-louer-val-belair\/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/immeublesbrio.com\/appartements-a-louer-val-belair\/#primaryimage","url":"https:\/\/immeublesbrio.com\/wp-content\/uploads\/2020\/01\/Le_Brio-f.jpg","contentUrl":"https:\/\/immeublesbrio.com\/wp-content\/uploads\/2020\/01\/Le_Brio-f.jpg","width":1024,"height":559,"caption":"Appartement locatif Le Brio"},{"@type":"BreadcrumbList","@id":"https:\/\/immeublesbrio.com\/appartements-a-louer-val-belair\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/immeublesbrio.com\/"},{"@type":"ListItem","position":2,"name":"Appartements"}]},{"@type":"WebSite","@id":"http:\/\/6hc.94f.myftpupload.com\/#website","url":"http:\/\/6hc.94f.myftpupload.com\/","name":"Immeubles Brio","description":"Appartements à louer à Val-Bélair","publisher":{"@id":"http:\/\/6hc.94f.myftpupload.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/6hc.94f.myftpupload.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"http:\/\/6hc.94f.myftpupload.com\/#organization","name":"les immeubles brio","url":"http:\/\/6hc.94f.myftpupload.com\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"http:\/\/6hc.94f.myftpupload.com\/#\/schema\/logo\/image\/","url":"https:\/\/secureservercdn.net\/198.71.233.36\/6hc.94f.myftpupload.com\/wp-content\/uploads\/2019\/10\/brio-final.png?time=1640649463","contentUrl":"https:\/\/secureservercdn.net\/198.71.233.36\/6hc.94f.myftpupload.com\/wp-content\/uploads\/2019\/10\/brio-final.png?time=1640649463","width":1080,"height":504,"caption":"les immeubles brio"},"image":{"@id":"http:\/\/6hc.94f.myftpupload.com\/#\/schema\/logo\/image\/"}}]}</script>
34 + <!-- / Yoast SEO plugin. -->
35 +
36 +
37 +<link rel="alternate" type="application/rss+xml" title="Immeubles Brio &raquo; Flux" href="https://immeublesbrio.com/feed/" />
38 +<link rel="alternate" type="application/rss+xml" title="Immeubles Brio &raquo; Flux des commentaires" href="https://immeublesbrio.com/comments/feed/" />
39 +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://immeublesbrio.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fimmeublesbrio.com%2Fappartements-a-louer-val-belair%2F" />
40 +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://immeublesbrio.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fimmeublesbrio.com%2Fappartements-a-louer-val-belair%2F&#038;format=xml" />
41 + <style>
42 + .lazyload,
43 + .lazyloading {
44 + max-width: 100%;
45 + }
46 + </style>
47 + <meta content="Divi v.4.27.6" name="generator"/>
48 +<style id="site-designer-shared-pattern-classes-inline-css">
49 +/* Dark cover/section overlay + on-dark text. */
50 +body .wp-site-blocks .is-style-overlay-dark .wp-block-cover__background { background-color: var(--wp--preset--color--base-3); color: var(--wp--preset--color--contrast-3); }
51 +.wp-block-cover.is-style-overlay-dark .wp-block-cover__background.has-background-dim { opacity: 0.8 !important; }
52 +:is(.wp-block-designsetgo-section, .wp-block-designsetgo-scroll-slides).is-style-overlay-dark { --dsgo-overlay-color: var(--wp--preset--color--base-3); --dsgo-overlay-opacity: 0.8; color: var(--wp--preset--color--contrast-3); }
53 +.wp-block-group.has-background.is-style-overlay-dark { box-shadow: inset 0 0 0 9999px color-mix(in srgb, var(--wp--preset--color--base-3) 80%, transparent); }
54 +body .wp-site-blocks .is-style-overlay-dark, body .wp-site-blocks .is-style-on-dark { --dsgo-text-color: var(--wp--preset--color--contrast-3); color: var(--wp--preset--color--contrast-3) !important; }
55 +body .wp-site-blocks .is-style-overlay-dark :is(h1,h2,h3,h4,h5,h6,p,li,blockquote,cite), body .wp-site-blocks .is-style-on-dark :is(h1,h2,h3,h4,h5,h6,p,li,blockquote,cite) { color: var(--wp--preset--color--contrast-3) !important; }
56 +
57 +/* Solid dark section background + light text. */
58 +.is-style-bg-dark { background-color: var(--wp--preset--color--contrast); color: var(--wp--preset--color--base); }
59 +.is-style-bg-dark a { color: var(--wp--preset--color--base); }
60 +/*# sourceURL=site-designer-shared-pattern-classes-inline-css */
61 +</style>
62 +<style id="global-styles-inline-css">
63 +:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:root { --wp--style--global--content-size: 823px;--wp--style--global--wide-size: 1080px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
64 +/*# sourceURL=global-styles-inline-css */
65 +</style>
66 +
67 +<link rel='stylesheet' id='wp-components-css' href='https://immeublesbrio.com/wp-includes/css/dist/components/style.min.css?ver=7.0.3' media='all' />
68 +<link rel='stylesheet' id='godaddy-styles-css' href='https://immeublesbrio.com/wp-content/mu-plugins/vendor/wpex/godaddy-launch/includes/Dependencies/GoDaddy/Styles/build/latest.css?ver=2.0.2' media='all' />
69 +<style id="divi-style-inline-inline-css">
70 +/*!
71 +Theme Name: Divi
72 +Theme URI: http://www.elegantthemes.com/gallery/divi/
73 +Version: 4.27.6
74 +Description: Smart. Flexible. Beautiful. Divi is the most powerful theme in our collection.
75 +Author: Elegant Themes
76 +Author URI: http://www.elegantthemes.com
77 +License: GNU General Public License v2
78 +License URI: http://www.gnu.org/licenses/gpl-2.0.html
79 +*/
80 +a,abbr,acronym,address,applet,b,big,blockquote,body,center,cite,code,dd,del,dfn,div,dl,dt,em,fieldset,font,form,h1,h2,h3,h4,h5,h6,html,i,iframe,img,ins,kbd,label,legend,li,object,ol,p,pre,q,s,samp,small,span,strike,strong,sub,sup,tt,u,ul,var{margin:0;padding:0;border:0;outline:0;font-size:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;vertical-align:baseline;background:transparent}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:"";content:none}blockquote{margin:20px 0 30px;border-left:5px solid;padding-left:20px}:focus{outline:0}del{text-decoration:line-through}pre{overflow:auto;padding:10px}figure{margin:0}table{border-collapse:collapse;border-spacing:0}article,aside,footer,header,hgroup,nav,section{display:block}body{font-family:Open Sans,Arial,sans-serif;font-size:14px;color:#666;background-color:#fff;line-height:1.7em;font-weight:500;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body.page-template-page-template-blank-php #page-container{padding-top:0!important}body.et_cover_background{background-size:cover!important;background-position:top!important;background-repeat:no-repeat!important;background-attachment:fixed}a{color:#2ea3f2}a,a:hover{text-decoration:none}p{padding-bottom:1em}p:not(.has-background):last-of-type{padding-bottom:0}p.et_normal_padding{padding-bottom:1em}strong{font-weight:700}cite,em,i{font-style:italic}code,pre{font-family:Courier New,monospace;margin-bottom:10px}ins{text-decoration:none}sub,sup{height:0;line-height:1;position:relative;vertical-align:baseline}sup{bottom:.8em}sub{top:.3em}dl{margin:0 0 1.5em}dl dt{font-weight:700}dd{margin-left:1.5em}blockquote p{padding-bottom:0}embed,iframe,object,video{max-width:100%}h1,h2,h3,h4,h5,h6{color:#333;padding-bottom:10px;line-height:1em;font-weight:500}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:inherit}h1{font-size:30px}h2{font-size:26px}h3{font-size:22px}h4{font-size:18px}h5{font-size:16px}h6{font-size:14px}input{-webkit-appearance:none}input[type=checkbox]{-webkit-appearance:checkbox}input[type=radio]{-webkit-appearance:radio}input.text,input.title,input[type=email],input[type=password],input[type=tel],input[type=text],select,textarea{background-color:#fff;border:1px solid #bbb;padding:2px;color:#4e4e4e}input.text:focus,input.title:focus,input[type=text]:focus,select:focus,textarea:focus{border-color:#2d3940;color:#3e3e3e}input.text,input.title,input[type=text],select,textarea{margin:0}textarea{padding:4px}button,input,select,textarea{font-family:inherit}img{max-width:100%;height:auto}.clear{clear:both}br.clear{margin:0;padding:0}.pagination{clear:both}#et_search_icon:hover,.et-social-icon a:hover,.et_password_protected_form .et_submit_button,.form-submit .et_pb_buttontton.alt.disabled,.nav-single a,.posted_in a{color:#2ea3f2}.et-search-form,blockquote{border-color:#2ea3f2}#main-content{background-color:#fff}.container{width:80%;max-width:1080px;margin:auto;position:relative}body:not(.et-tb) #main-content .container,body:not(.et-tb-has-header) #main-content .container{padding-top:58px}.et_full_width_page #main-content .container:before{display:none}.main_title{margin-bottom:20px}.et_password_protected_form .et_submit_button:hover,.form-submit .et_pb_button:hover{background:rgba(0,0,0,.05)}.et_button_icon_visible .et_pb_button{padding-right:2em;padding-left:.7em}.et_button_icon_visible .et_pb_button:after{opacity:1;margin-left:0}.et_button_left .et_pb_button:hover:after{left:.15em}.et_button_left .et_pb_button:after{margin-left:0;left:1em}.et_button_icon_visible.et_button_left .et_pb_button,.et_button_left .et_pb_button:hover,.et_button_left .et_pb_module .et_pb_button:hover{padding-left:2em;padding-right:.7em}.et_button_icon_visible.et_button_left .et_pb_button:after,.et_button_left .et_pb_button:hover:after{left:.15em}.et_password_protected_form .et_submit_button:hover,.form-submit .et_pb_button:hover{padding:.3em 1em}.et_button_no_icon .et_pb_button:after{display:none}.et_button_no_icon.et_button_icon_visible.et_button_left .et_pb_button,.et_button_no_icon.et_button_left .et_pb_button:hover,.et_button_no_icon .et_pb_button,.et_button_no_icon .et_pb_button:hover{padding:.3em 1em!important}.et_button_custom_icon .et_pb_button:after{line-height:1.7em}.et_button_custom_icon.et_button_icon_visible .et_pb_button:after,.et_button_custom_icon .et_pb_button:hover:after{margin-left:.3em}#left-area .post_format-post-format-gallery .wp-block-gallery:first-of-type{padding:0;margin-bottom:-16px}.entry-content table:not(.variations){border:1px solid #eee;margin:0 0 15px;text-align:left;width:100%}.entry-content thead th,.entry-content tr th{color:#555;font-weight:700;padding:9px 24px}.entry-content tr td{border-top:1px solid #eee;padding:6px 24px}#left-area ul,.entry-content ul,.et-l--body ul,.et-l--footer ul,.et-l--header ul{list-style-type:disc;padding:0 0 23px 1em;line-height:26px}#left-area ol,.entry-content ol,.et-l--body ol,.et-l--footer ol,.et-l--header ol{list-style-type:decimal;list-style-position:inside;padding:0 0 23px;line-height:26px}#left-area ul li ul,.entry-content ul li ol{padding:2px 0 2px 20px}#left-area ol li ul,.entry-content ol li ol,.et-l--body ol li ol,.et-l--footer ol li ol,.et-l--header ol li ol{padding:2px 0 2px 35px}#left-area ul.wp-block-gallery{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;list-style-type:none;padding:0}#left-area ul.products{padding:0!important;line-height:1.7!important;list-style:none!important}.gallery-item a{display:block}.gallery-caption,.gallery-item a{width:90%}#wpadminbar{z-index:100001}#left-area .post-meta{font-size:14px;padding-bottom:15px}#left-area .post-meta a{text-decoration:none;color:#666}#left-area .et_featured_image{padding-bottom:7px}.single .post{padding-bottom:25px}body.single .et_audio_content{margin-bottom:-6px}.nav-single a{text-decoration:none;color:#2ea3f2;font-size:14px;font-weight:400}.nav-previous{float:left}.nav-next{float:right}.et_password_protected_form p input{background-color:#eee;border:none!important;width:100%!important;border-radius:0!important;font-size:14px;color:#999!important;padding:16px!important;-webkit-box-sizing:border-box;box-sizing:border-box}.et_password_protected_form label{display:none}.et_password_protected_form .et_submit_button{font-family:inherit;display:block;float:right;margin:8px auto 0;cursor:pointer}.post-password-required p.nocomments.container{max-width:100%}.post-password-required p.nocomments.container:before{display:none}.aligncenter,div.post .new-post .aligncenter{display:block;margin-left:auto;margin-right:auto}.wp-caption{border:1px solid #ddd;text-align:center;background-color:#f3f3f3;margin-bottom:10px;max-width:96%;padding:8px}.wp-caption.alignleft{margin:0 30px 20px 0}.wp-caption.alignright{margin:0 0 20px 30px}.wp-caption img{margin:0;padding:0;border:0}.wp-caption p.wp-caption-text{font-size:12px;padding:0 4px 5px;margin:0}.alignright{float:right}.alignleft{float:left}img.alignleft{display:inline;float:left;margin-right:15px}img.alignright{display:inline;float:right;margin-left:15px}.page.et_pb_pagebuilder_layout #main-content{background-color:transparent}body #main-content .et_builder_inner_content>h1,body #main-content .et_builder_inner_content>h2,body #main-content .et_builder_inner_content>h3,body #main-content .et_builder_inner_content>h4,body #main-content .et_builder_inner_content>h5,body #main-content .et_builder_inner_content>h6{line-height:1.4em}body #main-content .et_builder_inner_content>p{line-height:1.7em}.wp-block-pullquote{margin:20px 0 30px}.wp-block-pullquote.has-background blockquote{border-left:none}.wp-block-group.has-background{padding:1.5em 1.5em .5em}@media (min-width:981px){#left-area{width:79.125%;padding-bottom:23px}#main-content .container:before{content:"";position:absolute;top:0;height:100%;width:1px;background-color:#e2e2e2}.et_full_width_page #left-area,.et_no_sidebar #left-area{float:none;width:100%!important}.et_full_width_page #left-area{padding-bottom:0}.et_no_sidebar #main-content .container:before{display:none}}@media (max-width:980px){#page-container{padding-top:80px}.et-tb #page-container,.et-tb-has-header #page-container{padding-top:0!important}#left-area,#sidebar{width:100%!important}#main-content .container:before{display:none!important}.et_full_width_page .et_gallery_item:nth-child(4n+1){clear:none}}@media print{#page-container{padding-top:0!important}}#wp-admin-bar-et-use-visual-builder a:before{font-family:ETmodules!important;content:"\e625";font-size:30px!important;width:28px;margin-top:-3px;color:#974df3!important}#wp-admin-bar-et-use-visual-builder:hover a:before{color:#fff!important}#wp-admin-bar-et-use-visual-builder:hover a,#wp-admin-bar-et-use-visual-builder a:hover{transition:background-color .5s ease;-webkit-transition:background-color .5s ease;-moz-transition:background-color .5s ease;background-color:#7e3bd0!important;color:#fff!important}* html .clearfix,:first-child+html .clearfix{zoom:1}.iphone .et_pb_section_video_bg video::-webkit-media-controls-start-playback-button{display:none!important;-webkit-appearance:none}.et_mobile_device .et_pb_section_parallax .et_pb_parallax_css{background-attachment:scroll}.et-social-facebook a.icon:before{content:"\e093"}.et-social-twitter a.icon:before{content:"\e094"}.et-social-google-plus a.icon:before{content:"\e096"}.et-social-instagram a.icon:before{content:"\e09a"}.et-social-rss a.icon:before{content:"\e09e"}.ai1ec-single-event:after{content:" ";display:table;clear:both}.evcal_event_details .evcal_evdata_cell .eventon_details_shading_bot.eventon_details_shading_bot{z-index:3}.wp-block-divi-layout{margin-bottom:1em}*{-webkit-box-sizing:border-box;box-sizing:border-box}#et-info-email:before,#et-info-phone:before,#et_search_icon:before,.comment-reply-link:after,.et-cart-info span:before,.et-pb-arrow-next:before,.et-pb-arrow-prev:before,.et-social-icon a:before,.et_audio_container .mejs-playpause-button button:before,.et_audio_container .mejs-volume-button button:before,.et_overlay:before,.et_password_protected_form .et_submit_button:after,.et_pb_button:after,.et_pb_contact_reset:after,.et_pb_contact_submit:after,.et_pb_font_icon:before,.et_pb_newsletter_button:after,.et_pb_pricing_table_button:after,.et_pb_promo_button:after,.et_pb_testimonial:before,.et_pb_toggle_title:before,.form-submit .et_pb_button:after,.mobile_menu_bar:before,a.et_pb_more_button:after{font-family:ETmodules!important;speak:none;font-style:normal;font-weight:400;-webkit-font-feature-settings:normal;font-feature-settings:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-shadow:0 0;direction:ltr}.et-pb-icon,.et_pb_custom_button_icon.et_pb_button:after,.et_pb_login .et_pb_custom_button_icon.et_pb_button:after,.et_pb_woo_custom_button_icon .button.et_pb_custom_button_icon.et_pb_button:after,.et_pb_woo_custom_button_icon .button.et_pb_custom_button_icon.et_pb_button:hover:after{content:attr(data-icon)}.et-pb-icon{font-family:ETmodules;speak:none;font-weight:400;-webkit-font-feature-settings:normal;font-feature-settings:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;font-size:96px;font-style:normal;display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;direction:ltr}#et-ajax-saving{display:none;-webkit-transition:background .3s,-webkit-box-shadow .3s;transition:background .3s,-webkit-box-shadow .3s;transition:background .3s,box-shadow .3s;transition:background .3s,box-shadow .3s,-webkit-box-shadow .3s;-webkit-box-shadow:rgba(0,139,219,.247059) 0 0 60px;box-shadow:0 0 60px rgba(0,139,219,.247059);position:fixed;top:50%;left:50%;width:50px;height:50px;background:#fff;border-radius:50px;margin:-25px 0 0 -25px;z-index:999999;text-align:center}#et-ajax-saving img{margin:9px}.et-safe-mode-indicator,.et-safe-mode-indicator:focus,.et-safe-mode-indicator:hover{-webkit-box-shadow:0 5px 10px rgba(41,196,169,.15);box-shadow:0 5px 10px rgba(41,196,169,.15);background:#29c4a9;color:#fff;font-size:14px;font-weight:600;padding:12px;line-height:16px;border-radius:3px;position:fixed;bottom:30px;right:30px;z-index:999999;text-decoration:none;font-family:Open Sans,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.et_pb_button{font-size:20px;font-weight:500;padding:.3em 1em;line-height:1.7em!important;background-color:transparent;background-size:cover;background-position:50%;background-repeat:no-repeat;border:2px solid;border-radius:3px;-webkit-transition-duration:.2s;transition-duration:.2s;-webkit-transition-property:all!important;transition-property:all!important}.et_pb_button,.et_pb_button_inner{position:relative}.et_pb_button:hover,.et_pb_module .et_pb_button:hover{border:2px solid transparent;padding:.3em 2em .3em .7em}.et_pb_button:hover{background-color:hsla(0,0%,100%,.2)}.et_pb_bg_layout_light.et_pb_button:hover,.et_pb_bg_layout_light .et_pb_button:hover{background-color:rgba(0,0,0,.05)}.et_pb_button:after,.et_pb_button:before{font-size:32px;line-height:1em;content:"\35";opacity:0;position:absolute;margin-left:-1em;-webkit-transition:all .2s;transition:all .2s;text-transform:none;-webkit-font-feature-settings:"kern" off;font-feature-settings:"kern" off;font-variant:none;font-style:normal;font-weight:400;text-shadow:none}.et_pb_button.et_hover_enabled:hover:after,.et_pb_button.et_pb_hovered:hover:after{-webkit-transition:none!important;transition:none!important}.et_pb_button:before{display:none}.et_pb_button:hover:after{opacity:1;margin-left:0}.et_pb_column_1_3 h1,.et_pb_column_1_4 h1,.et_pb_column_1_5 h1,.et_pb_column_1_6 h1,.et_pb_column_2_5 h1{font-size:26px}.et_pb_column_1_3 h2,.et_pb_column_1_4 h2,.et_pb_column_1_5 h2,.et_pb_column_1_6 h2,.et_pb_column_2_5 h2{font-size:23px}.et_pb_column_1_3 h3,.et_pb_column_1_4 h3,.et_pb_column_1_5 h3,.et_pb_column_1_6 h3,.et_pb_column_2_5 h3{font-size:20px}.et_pb_column_1_3 h4,.et_pb_column_1_4 h4,.et_pb_column_1_5 h4,.et_pb_column_1_6 h4,.et_pb_column_2_5 h4{font-size:18px}.et_pb_column_1_3 h5,.et_pb_column_1_4 h5,.et_pb_column_1_5 h5,.et_pb_column_1_6 h5,.et_pb_column_2_5 h5{font-size:16px}.et_pb_column_1_3 h6,.et_pb_column_1_4 h6,.et_pb_column_1_5 h6,.et_pb_column_1_6 h6,.et_pb_column_2_5 h6{font-size:15px}.et_pb_bg_layout_dark,.et_pb_bg_layout_dark h1,.et_pb_bg_layout_dark h2,.et_pb_bg_layout_dark h3,.et_pb_bg_layout_dark h4,.et_pb_bg_layout_dark h5,.et_pb_bg_layout_dark h6{color:#fff!important}.et_pb_module.et_pb_text_align_left{text-align:left}.et_pb_module.et_pb_text_align_center{text-align:center}.et_pb_module.et_pb_text_align_right{text-align:right}.et_pb_module.et_pb_text_align_justified{text-align:justify}.clearfix:after{visibility:hidden;display:block;font-size:0;content:" ";clear:both;height:0}.et_pb_bg_layout_light .et_pb_more_button{color:#2ea3f2}.et_builder_inner_content{position:relative;z-index:1}header .et_builder_inner_content{z-index:2}.et_pb_css_mix_blend_mode_passthrough{mix-blend-mode:unset!important}.et_pb_image_container{margin:-20px -20px 29px}.et_pb_module_inner{position:relative}.et_hover_enabled_preview{z-index:2}.et_hover_enabled:hover{position:relative;z-index:2}.et_pb_all_tabs,.et_pb_module,.et_pb_posts_nav a,.et_pb_tab,.et_pb_with_background{position:relative;background-size:cover;background-position:50%;background-repeat:no-repeat}.et_pb_background_mask,.et_pb_background_pattern{bottom:0;left:0;position:absolute;right:0;top:0}.et_pb_background_mask{background-size:calc(100% + 2px) calc(100% + 2px);background-repeat:no-repeat;background-position:50%;overflow:hidden}.et_pb_background_pattern{background-position:0 0;background-repeat:repeat}.et_pb_with_border{position:relative;border:0 solid #333}.post-password-required .et_pb_row{padding:0;width:100%}.post-password-required .et_password_protected_form{min-height:0}body.et_pb_pagebuilder_layout.et_pb_show_title .post-password-required .et_password_protected_form h1,body:not(.et_pb_pagebuilder_layout) .post-password-required .et_password_protected_form h1{display:none}.et_pb_no_bg{padding:0!important}.et_overlay.et_pb_inline_icon:before,.et_pb_inline_icon:before{content:attr(data-icon)}.et_pb_more_button{color:inherit;text-shadow:none;text-decoration:none;display:inline-block;margin-top:20px}.et_parallax_bg_wrap{overflow:hidden;position:absolute;top:0;right:0;bottom:0;left:0}.et_parallax_bg{background-repeat:no-repeat;background-position:top;background-size:cover;position:absolute;bottom:0;left:0;width:100%;height:100%;display:block}.et_parallax_bg.et_parallax_bg__hover,.et_parallax_bg.et_parallax_bg_phone,.et_parallax_bg.et_parallax_bg_tablet,.et_parallax_gradient.et_parallax_gradient__hover,.et_parallax_gradient.et_parallax_gradient_phone,.et_parallax_gradient.et_parallax_gradient_tablet,.et_pb_section_parallax_hover:hover .et_parallax_bg:not(.et_parallax_bg__hover),.et_pb_section_parallax_hover:hover .et_parallax_gradient:not(.et_parallax_gradient__hover){display:none}.et_pb_section_parallax_hover:hover .et_parallax_bg.et_parallax_bg__hover,.et_pb_section_parallax_hover:hover .et_parallax_gradient.et_parallax_gradient__hover{display:block}.et_parallax_gradient{bottom:0;display:block;left:0;position:absolute;right:0;top:0}.et_pb_module.et_pb_section_parallax,.et_pb_posts_nav a.et_pb_section_parallax,.et_pb_tab.et_pb_section_parallax{position:relative}.et_pb_section_parallax .et_pb_parallax_css,.et_pb_slides .et_parallax_bg.et_pb_parallax_css{background-attachment:fixed}body.et-bfb .et_pb_section_parallax .et_pb_parallax_css,body.et-bfb .et_pb_slides .et_parallax_bg.et_pb_parallax_css{background-attachment:scroll;bottom:auto}.et_pb_section_parallax.et_pb_column .et_pb_module,.et_pb_section_parallax.et_pb_row .et_pb_column,.et_pb_section_parallax.et_pb_row .et_pb_module{z-index:9;position:relative}.et_pb_more_button:hover:after{opacity:1;margin-left:0}.et_pb_preload .et_pb_section_video_bg,.et_pb_preload>div{visibility:hidden}.et_pb_preload,.et_pb_section.et_pb_section_video.et_pb_preload{position:relative;background:#464646!important}.et_pb_preload:before{content:"";position:absolute;top:50%;left:50%;background:url(https://immeublesbrio.com/wp-content/themes/Divi/includes/builder/styles/images/preloader.gif) no-repeat;border-radius:32px;width:32px;height:32px;margin:-16px 0 0 -16px}.box-shadow-overlay{position:absolute;top:0;left:0;width:100%;height:100%;z-index:10;pointer-events:none}.et_pb_section>.box-shadow-overlay~.et_pb_row{z-index:11}body.safari .section_has_divider{will-change:transform}.et_pb_row>.box-shadow-overlay{z-index:8}.has-box-shadow-overlay{position:relative}.et_clickable{cursor:pointer}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important}.et_multi_view_hidden,.et_multi_view_hidden_image{display:none!important}@keyframes multi-view-image-fade{0%{opacity:0}10%{opacity:.1}20%{opacity:.2}30%{opacity:.3}40%{opacity:.4}50%{opacity:.5}60%{opacity:.6}70%{opacity:.7}80%{opacity:.8}90%{opacity:.9}to{opacity:1}}.et_multi_view_image__loading{visibility:hidden}.et_multi_view_image__loaded{-webkit-animation:multi-view-image-fade .5s;animation:multi-view-image-fade .5s}#et-pb-motion-effects-offset-tracker{visibility:hidden!important;opacity:0;position:absolute;top:0;left:0}.et-pb-before-scroll-animation{opacity:0}header.et-l.et-l--header:after{clear:both;display:block;content:""}.et_pb_module{-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-duration:.2s;animation-duration:.2s}@-webkit-keyframes fadeBottom{0%{opacity:0;-webkit-transform:translateY(10%);transform:translateY(10%)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeBottom{0%{opacity:0;-webkit-transform:translateY(10%);transform:translateY(10%)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeLeft{0%{opacity:0;-webkit-transform:translateX(-10%);transform:translateX(-10%)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeLeft{0%{opacity:0;-webkit-transform:translateX(-10%);transform:translateX(-10%)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes fadeRight{0%{opacity:0;-webkit-transform:translateX(10%);transform:translateX(10%)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeRight{0%{opacity:0;-webkit-transform:translateX(10%);transform:translateX(10%)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes fadeTop{0%{opacity:0;-webkit-transform:translateY(-10%);transform:translateY(-10%)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeTop{0%{opacity:0;-webkit-transform:translateY(-10%);transform:translateY(-10%)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.et-waypoint:not(.et_pb_counters){opacity:0}@media (min-width:981px){.et_pb_section.et_section_specialty div.et_pb_row .et_pb_column .et_pb_column .et_pb_module.et-last-child,.et_pb_section.et_section_specialty div.et_pb_row .et_pb_column .et_pb_column .et_pb_module:last-child,.et_pb_section.et_section_specialty div.et_pb_row .et_pb_column .et_pb_row_inner .et_pb_column .et_pb_module.et-last-child,.et_pb_section.et_section_specialty div.et_pb_row .et_pb_column .et_pb_row_inner .et_pb_column .et_pb_module:last-child,.et_pb_section div.et_pb_row .et_pb_column .et_pb_module.et-last-child,.et_pb_section div.et_pb_row .et_pb_column .et_pb_module:last-child{margin-bottom:0}}@media (max-width:980px){.et_overlay.et_pb_inline_icon_tablet:before,.et_pb_inline_icon_tablet:before{content:attr(data-icon-tablet)}.et_parallax_bg.et_parallax_bg_tablet_exist,.et_parallax_gradient.et_parallax_gradient_tablet_exist{display:none}.et_parallax_bg.et_parallax_bg_tablet,.et_parallax_gradient.et_parallax_gradient_tablet{display:block}.et_pb_column .et_pb_module{margin-bottom:30px}.et_pb_row .et_pb_column .et_pb_module.et-last-child,.et_pb_row .et_pb_column .et_pb_module:last-child,.et_section_specialty .et_pb_row .et_pb_column .et_pb_module.et-last-child,.et_section_specialty .et_pb_row .et_pb_column .et_pb_module:last-child{margin-bottom:0}.et_pb_more_button{display:inline-block!important}.et_pb_bg_layout_light_tablet.et_pb_button,.et_pb_bg_layout_light_tablet.et_pb_module.et_pb_button,.et_pb_bg_layout_light_tablet .et_pb_more_button{color:#2ea3f2}.et_pb_bg_layout_light_tablet .et_pb_forgot_password a{color:#666}.et_pb_bg_layout_light_tablet h1,.et_pb_bg_layout_light_tablet h2,.et_pb_bg_layout_light_tablet h3,.et_pb_bg_layout_light_tablet h4,.et_pb_bg_layout_light_tablet h5,.et_pb_bg_layout_light_tablet h6{color:#333!important}.et_pb_module .et_pb_bg_layout_light_tablet.et_pb_button{color:#2ea3f2!important}.et_pb_bg_layout_light_tablet{color:#666!important}.et_pb_bg_layout_dark_tablet,.et_pb_bg_layout_dark_tablet h1,.et_pb_bg_layout_dark_tablet h2,.et_pb_bg_layout_dark_tablet h3,.et_pb_bg_layout_dark_tablet h4,.et_pb_bg_layout_dark_tablet h5,.et_pb_bg_layout_dark_tablet h6{color:#fff!important}.et_pb_bg_layout_dark_tablet.et_pb_button,.et_pb_bg_layout_dark_tablet.et_pb_module.et_pb_button,.et_pb_bg_layout_dark_tablet .et_pb_more_button{color:inherit}.et_pb_bg_layout_dark_tablet .et_pb_forgot_password a{color:#fff}.et_pb_module.et_pb_text_align_left-tablet{text-align:left}.et_pb_module.et_pb_text_align_center-tablet{text-align:center}.et_pb_module.et_pb_text_align_right-tablet{text-align:right}.et_pb_module.et_pb_text_align_justified-tablet{text-align:justify}}@media (max-width:767px){.et_pb_more_button{display:inline-block!important}.et_overlay.et_pb_inline_icon_phone:before,.et_pb_inline_icon_phone:before{content:attr(data-icon-phone)}.et_parallax_bg.et_parallax_bg_phone_exist,.et_parallax_gradient.et_parallax_gradient_phone_exist{display:none}.et_parallax_bg.et_parallax_bg_phone,.et_parallax_gradient.et_parallax_gradient_phone{display:block}.et-hide-mobile{display:none!important}.et_pb_bg_layout_light_phone.et_pb_button,.et_pb_bg_layout_light_phone.et_pb_module.et_pb_button,.et_pb_bg_layout_light_phone .et_pb_more_button{color:#2ea3f2}.et_pb_bg_layout_light_phone .et_pb_forgot_password a{color:#666}.et_pb_bg_layout_light_phone h1,.et_pb_bg_layout_light_phone h2,.et_pb_bg_layout_light_phone h3,.et_pb_bg_layout_light_phone h4,.et_pb_bg_layout_light_phone h5,.et_pb_bg_layout_light_phone h6{color:#333!important}.et_pb_module .et_pb_bg_layout_light_phone.et_pb_button{color:#2ea3f2!important}.et_pb_bg_layout_light_phone{color:#666!important}.et_pb_bg_layout_dark_phone,.et_pb_bg_layout_dark_phone h1,.et_pb_bg_layout_dark_phone h2,.et_pb_bg_layout_dark_phone h3,.et_pb_bg_layout_dark_phone h4,.et_pb_bg_layout_dark_phone h5,.et_pb_bg_layout_dark_phone h6{color:#fff!important}.et_pb_bg_layout_dark_phone.et_pb_button,.et_pb_bg_layout_dark_phone.et_pb_module.et_pb_button,.et_pb_bg_layout_dark_phone .et_pb_more_button{color:inherit}.et_pb_module .et_pb_bg_layout_dark_phone.et_pb_button{color:#fff!important}.et_pb_bg_layout_dark_phone .et_pb_forgot_password a{color:#fff}.et_pb_module.et_pb_text_align_left-phone{text-align:left}.et_pb_module.et_pb_text_align_center-phone{text-align:center}.et_pb_module.et_pb_text_align_right-phone{text-align:right}.et_pb_module.et_pb_text_align_justified-phone{text-align:justify}}@media (max-width:479px){a.et_pb_more_button{display:block}}@media (min-width:768px) and (max-width:980px){[data-et-multi-view-load-tablet-hidden=true]:not(.et_multi_view_swapped){display:none!important}}@media (max-width:767px){[data-et-multi-view-load-phone-hidden=true]:not(.et_multi_view_swapped){display:none!important}}.et_pb_menu.et_pb_menu--style-inline_centered_logo .et_pb_menu__menu nav ul{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@-webkit-keyframes multi-view-image-fade{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}50%{-webkit-transform:scale(1.01);transform:scale(1.01);opacity:1}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}
81 +/*# sourceURL=divi-style-inline-inline-css */
82 +</style>
83 +<style id="divi-dynamic-critical-inline-css">
84 +@font-face{font-family:ETmodules;font-display:block;src:url(//immeublesbrio.com/wp-content/themes/Divi/core/admin/fonts/modules/all/modules.eot);src:url(//immeublesbrio.com/wp-content/themes/Divi/core/admin/fonts/modules/all/modules.eot?#iefix) format("embedded-opentype"),url(//immeublesbrio.com/wp-content/themes/Divi/core/admin/fonts/modules/all/modules.woff) format("woff"),url(//immeublesbrio.com/wp-content/themes/Divi/core/admin/fonts/modules/all/modules.ttf) format("truetype"),url(//immeublesbrio.com/wp-content/themes/Divi/core/admin/fonts/modules/all/modules.svg#ETmodules) format("svg");font-weight:400;font-style:normal}
85 +@media (min-width:981px){.et_pb_gutters3 .et_pb_column,.et_pb_gutters3.et_pb_row .et_pb_column{margin-right:5.5%}.et_pb_gutters3 .et_pb_column_4_4,.et_pb_gutters3.et_pb_row .et_pb_column_4_4{width:100%}.et_pb_gutters3 .et_pb_column_4_4 .et_pb_module,.et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_module{margin-bottom:2.75%}.et_pb_gutters3 .et_pb_column_3_4,.et_pb_gutters3.et_pb_row .et_pb_column_3_4{width:73.625%}.et_pb_gutters3 .et_pb_column_3_4 .et_pb_module,.et_pb_gutters3.et_pb_row .et_pb_column_3_4 .et_pb_module{margin-bottom:3.735%}.et_pb_gutters3 .et_pb_column_2_3,.et_pb_gutters3.et_pb_row .et_pb_column_2_3{width:64.833%}.et_pb_gutters3 .et_pb_column_2_3 .et_pb_module,.et_pb_gutters3.et_pb_row .et_pb_column_2_3 .et_pb_module{margin-bottom:4.242%}.et_pb_gutters3 .et_pb_column_3_5,.et_pb_gutters3.et_pb_row .et_pb_column_3_5{width:57.8%}.et_pb_gutters3 .et_pb_column_3_5 .et_pb_module,.et_pb_gutters3.et_pb_row .et_pb_column_3_5 .et_pb_module{margin-bottom:4.758%}.et_pb_gutters3 .et_pb_column_1_2,.et_pb_gutters3.et_pb_row .et_pb_column_1_2{width:47.25%}.et_pb_gutters3 .et_pb_column_1_2 .et_pb_module,.et_pb_gutters3.et_pb_row .et_pb_column_1_2 .et_pb_module{margin-bottom:5.82%}.et_pb_gutters3 .et_pb_column_2_5,.et_pb_gutters3.et_pb_row .et_pb_column_2_5{width:36.7%}.et_pb_gutters3 .et_pb_column_2_5 .et_pb_module,.et_pb_gutters3.et_pb_row .et_pb_column_2_5 .et_pb_module{margin-bottom:7.493%}.et_pb_gutters3 .et_pb_column_1_3,.et_pb_gutters3.et_pb_row .et_pb_column_1_3{width:29.6667%}.et_pb_gutters3 .et_pb_column_1_3 .et_pb_module,.et_pb_gutters3.et_pb_row .et_pb_column_1_3 .et_pb_module{margin-bottom:9.27%}.et_pb_gutters3 .et_pb_column_1_4,.et_pb_gutters3.et_pb_row .et_pb_column_1_4{width:20.875%}.et_pb_gutters3 .et_pb_column_1_4 .et_pb_module,.et_pb_gutters3.et_pb_row .et_pb_column_1_4 .et_pb_module{margin-bottom:13.174%}.et_pb_gutters3 .et_pb_column_1_5,.et_pb_gutters3.et_pb_row .et_pb_column_1_5{width:15.6%}.et_pb_gutters3 .et_pb_column_1_5 .et_pb_module,.et_pb_gutters3.et_pb_row .et_pb_column_1_5 .et_pb_module{margin-bottom:17.628%}.et_pb_gutters3 .et_pb_column_1_6,.et_pb_gutters3.et_pb_row .et_pb_column_1_6{width:12.0833%}.et_pb_gutters3 .et_pb_column_1_6 .et_pb_module,.et_pb_gutters3.et_pb_row .et_pb_column_1_6 .et_pb_module{margin-bottom:22.759%}.et_pb_gutters3 .et_full_width_page.woocommerce-page ul.products li.product{width:20.875%;margin-right:5.5%;margin-bottom:5.5%}.et_pb_gutters3.et_left_sidebar.woocommerce-page #main-content ul.products li.product,.et_pb_gutters3.et_right_sidebar.woocommerce-page #main-content ul.products li.product{width:28.353%;margin-right:7.47%}.et_pb_gutters3.et_left_sidebar.woocommerce-page #main-content ul.products.columns-1 li.product,.et_pb_gutters3.et_right_sidebar.woocommerce-page #main-content ul.products.columns-1 li.product{width:100%;margin-right:0}.et_pb_gutters3.et_left_sidebar.woocommerce-page #main-content ul.products.columns-2 li.product,.et_pb_gutters3.et_right_sidebar.woocommerce-page #main-content ul.products.columns-2 li.product{width:48%;margin-right:4%}.et_pb_gutters3.et_left_sidebar.woocommerce-page #main-content ul.products.columns-2 li:nth-child(2n+2),.et_pb_gutters3.et_right_sidebar.woocommerce-page #main-content ul.products.columns-2 li:nth-child(2n+2){margin-right:0}.et_pb_gutters3.et_left_sidebar.woocommerce-page #main-content ul.products.columns-2 li:nth-child(3n+1),.et_pb_gutters3.et_right_sidebar.woocommerce-page #main-content ul.products.columns-2 li:nth-child(3n+1){clear:none}}
86 +@media (min-width:981px){.et_pb_gutters3 .et_pb_column .et_pb_blog_grid .column.size-1of1 .et_pb_post:last-child,.et_pb_gutters3 .et_pb_column .et_pb_blog_grid .column.size-1of2 .et_pb_post:last-child,.et_pb_gutters3 .et_pb_column .et_pb_blog_grid .column.size-1of3 .et_pb_post:last-child,.et_pb_gutters3.et_pb_row .et_pb_column .et_pb_blog_grid .column.size-1of1 .et_pb_post:last-child,.et_pb_gutters3.et_pb_row .et_pb_column .et_pb_blog_grid .column.size-1of2 .et_pb_post:last-child,.et_pb_gutters3.et_pb_row .et_pb_column .et_pb_blog_grid .column.size-1of3 .et_pb_post:last-child{margin-bottom:30px}.et_pb_gutters3 .et_pb_column_4_4 .et_pb_grid_item,.et_pb_gutters3 .et_pb_column_4_4 .et_pb_shop_grid .woocommerce ul.products li.product,.et_pb_gutters3 .et_pb_column_4_4 .et_pb_widget,.et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_grid_item,.et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_shop_grid .woocommerce ul.products li.product,.et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_widget{width:20.875%;margin-right:5.5%;margin-bottom:5.5%}.et_pb_gutters3 .et_pb_column_4_4 .et_pb_blog_grid .column.size-1of3,.et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_blog_grid .column.size-1of3{width:29.667%;margin-right:5.5%}.et_pb_gutters3 .et_pb_column_4_4 .et_pb_blog_grid .column.size-1of3 .et_pb_post,.et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_blog_grid .column.size-1of3 .et_pb_post{margin-bottom:18.539%}.et_pb_gutters3 .et_pb_column_3_4 .et_pb_grid_item,.et_pb_gutters3 .et_pb_column_3_4 .et_pb_shop_grid .woocommerce ul.products li.product,.et_pb_gutters3 .et_pb_column_3_4 .et_pb_widget,.et_pb_gutters3.et_pb_row .et_pb_column_3_4 .et_pb_grid_item,.et_pb_gutters3.et_pb_row .et_pb_column_3_4 .et_pb_shop_grid .woocommerce ul.products li.product,.et_pb_gutters3.et_pb_row .et_pb_column_3_4 .et_pb_widget{width:28.353%;margin-right:7.47%;margin-bottom:7.47%}.et_pb_gutters3 .et_pb_column_3_4 .et_pb_blog_grid .column.size-1of2,.et_pb_gutters3.et_pb_row .et_pb_column_3_4 .et_pb_blog_grid .column.size-1of2{width:46.265%;margin-right:7.47%}.et_pb_gutters3 .et_pb_column_3_4 .et_pb_blog_grid .column.size-1of2 .et_pb_post,.et_pb_gutters3.et_pb_row .et_pb_column_3_4 .et_pb_blog_grid .column.size-1of2 .et_pb_post{margin-bottom:14.941%}.et_pb_gutters3 .et_pb_column_2_3 .et_pb_grid_item,.et_pb_gutters3 .et_pb_column_2_3 .et_pb_shop_grid .woocommerce ul.products li.product,.et_pb_gutters3 .et_pb_column_2_3 .et_pb_widget,.et_pb_gutters3.et_pb_row .et_pb_column_2_3 .et_pb_grid_item,.et_pb_gutters3.et_pb_row .et_pb_column_2_3 .et_pb_shop_grid .woocommerce ul.products li.product,.et_pb_gutters3.et_pb_row .et_pb_column_2_3 .et_pb_widget{width:45.758%;margin-right:8.483%;margin-bottom:8.483%}.et_pb_gutters3 .et_pb_column_2_3 .et_pb_blog_grid .column.size-1of2,.et_pb_gutters3.et_pb_row .et_pb_column_2_3 .et_pb_blog_grid .column.size-1of2{width:45.758%;margin-right:8.483%}.et_pb_gutters3 .et_pb_column_2_3 .et_pb_blog_grid .column.size-1of2 .et_pb_post,.et_pb_gutters3.et_pb_row .et_pb_column_2_3 .et_pb_blog_grid .column.size-1of2 .et_pb_post{margin-bottom:16.967%}.et_pb_gutters3 .et_pb_column_3_5 .et_pb_grid_item,.et_pb_gutters3 .et_pb_column_3_5 .et_pb_shop_grid .woocommerce ul.products li.product,.et_pb_gutters3 .et_pb_column_3_5 .et_pb_widget,.et_pb_gutters3.et_pb_row .et_pb_column_3_5 .et_pb_grid_item,.et_pb_gutters3.et_pb_row .et_pb_column_3_5 .et_pb_shop_grid .woocommerce ul.products li.product,.et_pb_gutters3.et_pb_row .et_pb_column_3_5 .et_pb_widget{width:45.242%;margin-right:9.516%;margin-bottom:9.516%}.et_pb_gutters3 .et_pb_column_3_5 .et_pb_blog_grid .column.size-1of1,.et_pb_gutters3.et_pb_row .et_pb_column_3_5 .et_pb_blog_grid .column.size-1of1{width:100%;margin-right:0}.et_pb_gutters3 .et_pb_column_3_5 .et_pb_blog_grid .column.size-1of1 .et_pb_post,.et_pb_gutters3.et_pb_row .et_pb_column_3_5 .et_pb_blog_grid .column.size-1of1 .et_pb_post{margin-bottom:9.516%}.et_pb_gutters3 .et_pb_column_1_2 .et_pb_grid_item,.et_pb_gutters3 .et_pb_column_1_2 .et_pb_shop_grid .woocommerce ul.products li.product,.et_pb_gutters3 .et_pb_column_1_2 .et_pb_widget,.et_pb_gutters3.et_pb_row .et_pb_column_1_2 .et_pb_grid_item,.et_pb_gutters3.et_pb_row .et_pb_column_1_2 .et_pb_shop_grid .woocommerce ul.products li.product,.et_pb_gutters3.et_pb_row .et_pb_column_1_2 .et_pb_widget{width:44.18%;margin-right:11.64%;margin-bottom:11.64%}.et_pb_gutters3 .et_pb_column_1_2 .et_pb_blog_grid .column.size-1of1,.et_pb_gutters3.et_pb_row .et_pb_column_1_2 .et_pb_blog_grid .column.size-1of1{width:100%;margin-right:0}.et_pb_gutters3 .et_pb_column_1_2 .et_pb_blog_grid .column.size-1of1 .et_pb_post,.et_pb_gutters3.et_pb_row .et_pb_column_1_2 .et_pb_blog_grid .column.size-1of1 .et_pb_post{margin-bottom:11.64%}.et_pb_gutters3 .et_pb_column_2_5 .et_pb_blog_grid .column.size-1of1 .et_pb_post,.et_pb_gutters3 .et_pb_column_2_5 .et_pb_grid_item,.et_pb_gutters3 .et_pb_column_2_5 .et_pb_shop_grid .woocommerce ul.products li.product,.et_pb_gutters3 .et_pb_column_2_5 .et_pb_widget,.et_pb_gutters3.et_pb_row .et_pb_column_2_5 .et_pb_blog_grid .column.size-1of1 .et_pb_post,.et_pb_gutters3.et_pb_row .et_pb_column_2_5 .et_pb_grid_item,.et_pb_gutters3.et_pb_row .et_pb_column_2_5 .et_pb_shop_grid .woocommerce ul.products li.product,.et_pb_gutters3.et_pb_row .et_pb_column_2_5 .et_pb_widget{width:100%;margin-bottom:14.986%}.et_pb_gutters3 .et_pb_column_1_3 .et_pb_blog_grid .column.size-1of1 .et_pb_post,.et_pb_gutters3 .et_pb_column_1_3 .et_pb_grid_item,.et_pb_gutters3 .et_pb_column_1_3 .et_pb_shop_grid .woocommerce ul.products li.product,.et_pb_gutters3 .et_pb_column_1_3 .et_pb_widget,.et_pb_gutters3.et_pb_row .et_pb_column_1_3 .et_pb_blog_grid .column.size-1of1 .et_pb_post,.et_pb_gutters3.et_pb_row .et_pb_column_1_3 .et_pb_grid_item,.et_pb_gutters3.et_pb_row .et_pb_column_1_3 .et_pb_shop_grid .woocommerce ul.products li.product,.et_pb_gutters3.et_pb_row .et_pb_column_1_3 .et_pb_widget{width:100%;margin-bottom:18.539%}.et_pb_gutters3 .et_pb_column_1_4 .et_pb_blog_grid .column.size-1of1 .et_pb_post,.et_pb_gutters3 .et_pb_column_1_4 .et_pb_grid_item,.et_pb_gutters3 .et_pb_column_1_4 .et_pb_shop_grid .woocommerce ul.products li.product,.et_pb_gutters3 .et_pb_column_1_4 .et_pb_widget,.et_pb_gutters3.et_pb_row .et_pb_column_1_4 .et_pb_blog_grid .column.size-1of1 .et_pb_post,.et_pb_gutters3.et_pb_row .et_pb_column_1_4 .et_pb_grid_item,.et_pb_gutters3.et_pb_row .et_pb_column_1_4 .et_pb_shop_grid .woocommerce ul.products li.product,.et_pb_gutters3.et_pb_row .et_pb_column_1_4 .et_pb_widget{width:100%;margin-bottom:26.347%}.et_pb_gutters3 .et_pb_column_1_5 .et_pb_blog_grid .column.size-1of1 .et_pb_post,.et_pb_gutters3 .et_pb_column_1_5 .et_pb_grid_item,.et_pb_gutters3 .et_pb_column_1_5 .et_pb_shop_grid .woocommerce ul.products li.product,.et_pb_gutters3 .et_pb_column_1_5 .et_pb_widget,.et_pb_gutters3.et_pb_row .et_pb_column_1_5 .et_pb_blog_grid .column.size-1of1 .et_pb_post,.et_pb_gutters3.et_pb_row .et_pb_column_1_5 .et_pb_grid_item,.et_pb_gutters3.et_pb_row .et_pb_column_1_5 .et_pb_shop_grid .woocommerce ul.products li.product,.et_pb_gutters3.et_pb_row .et_pb_column_1_5 .et_pb_widget{width:100%;margin-bottom:35.256%}.et_pb_gutters3 .et_pb_column_1_6 .et_pb_blog_grid .column.size-1of1 .et_pb_post,.et_pb_gutters3 .et_pb_column_1_6 .et_pb_grid_item,.et_pb_gutters3 .et_pb_column_1_6 .et_pb_shop_grid .woocommerce ul.products li.product,.et_pb_gutters3 .et_pb_column_1_6 .et_pb_widget,.et_pb_gutters3.et_pb_row .et_pb_column_1_6 .et_pb_blog_grid .column.size-1of1 .et_pb_post,.et_pb_gutters3.et_pb_row .et_pb_column_1_6 .et_pb_grid_item,.et_pb_gutters3.et_pb_row .et_pb_column_1_6 .et_pb_shop_grid .woocommerce ul.products li.product,.et_pb_gutters3.et_pb_row .et_pb_column_1_6 .et_pb_widget{width:100%;margin-bottom:45.517%}.et_pb_gutters3 .et_pb_column_4_4 .et_pb_grid_item.et_pb_portfolio_item:nth-child(4n),.et_pb_gutters3 .et_pb_column_4_4 .et_pb_shop_grid .woocommerce ul.products li.product:nth-child(4n),.et_pb_gutters3 .et_pb_column_4_4 .et_pb_widget:nth-child(4n),.et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_grid_item.et_pb_portfolio_item:nth-child(4n),.et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_shop_grid .woocommerce ul.products li.product:nth-child(4n),.et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_widget:nth-child(4n){margin-right:0}.et_pb_gutters3 .et_pb_column_4_4 .et_pb_grid_item.et_pb_portfolio_item:nth-child(4n+1),.et_pb_gutters3 .et_pb_column_4_4 .et_pb_shop_grid .woocommerce ul.products li.product:nth-child(4n+1),.et_pb_gutters3 .et_pb_column_4_4 .et_pb_widget:nth-child(4n+1),.et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_grid_item.et_pb_portfolio_item:nth-child(4n+1),.et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_shop_grid .woocommerce ul.products li.product:nth-child(4n+1),.et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_widget:nth-child(4n+1){clear:both}.et_pb_gutters3 .et_pb_column_4_4 .et_pb_blog_grid .column.size-1of3:nth-child(3n),.et_pb_gutters3 .et_pb_column_4_4 .et_pb_grid_item.last_in_row,.et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_blog_grid .column.size-1of3:nth-child(3n),.et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_grid_item.last_in_row{margin-right:0}.et_pb_gutters3 .et_pb_column_4_4 .et_pb_grid_item.on_last_row,.et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_grid_item.on_last_row{margin-bottom:0}.et_pb_gutters3 .et_pb_column_3_4 .et_pb_grid_item.et_pb_portfolio_item:nth-child(3n),.et_pb_gutters3 .et_pb_column_3_4 .et_pb_shop_grid .woocommerce ul.products li.product:nth-child(3n),.et_pb_gutters3 .et_pb_column_3_4 .et_pb_widget:nth-child(3n),.et_pb_gutters3.et_pb_row .et_pb_column_3_4 .et_pb_grid_item.et_pb_portfolio_item:nth-child(3n),.et_pb_gutters3.et_pb_row .et_pb_column_3_4 .et_pb_shop_grid .woocommerce ul.products li.product:nth-child(3n),.et_pb_gutters3.et_pb_row .et_pb_column_3_4 .et_pb_widget:nth-child(3n){margin-right:0}.et_pb_gutters3 .et_pb_column_3_4 .et_pb_grid_item.et_pb_portfolio_item:nth-child(3n+1),.et_pb_gutters3 .et_pb_column_3_4 .et_pb_shop_grid .woocommerce ul.products li.product:nth-child(3n+1),.et_pb_gutters3 .et_pb_column_3_4 .et_pb_widget:nth-child(3n+1),.et_pb_gutters3.et_pb_row .et_pb_column_3_4 .et_pb_grid_item.et_pb_portfolio_item:nth-child(3n+1),.et_pb_gutters3.et_pb_row .et_pb_column_3_4 .et_pb_shop_grid .woocommerce ul.products li.product:nth-child(3n+1),.et_pb_gutters3.et_pb_row .et_pb_column_3_4 .et_pb_widget:nth-child(3n+1){clear:both}.et_pb_gutters3 .et_pb_column_3_4 .et_pb_grid_item.last_in_row,.et_pb_gutters3.et_pb_row .et_pb_column_3_4 .et_pb_grid_item.last_in_row{margin-right:0}.et_pb_gutters3 .et_pb_column_3_4 .et_pb_grid_item.on_last_row,.et_pb_gutters3.et_pb_row .et_pb_column_3_4 .et_pb_grid_item.on_last_row{margin-bottom:0}.et_pb_gutters3 .et_pb_column_1_2 .et_pb_grid_item.et_pb_portfolio_item:nth-child(2n),.et_pb_gutters3 .et_pb_column_1_2 .et_pb_shop_grid .woocommerce ul.products li.product:nth-child(2n),.et_pb_gutters3 .et_pb_column_1_2 .et_pb_widget:nth-child(2n),.et_pb_gutters3 .et_pb_column_2_3 .et_pb_grid_item.et_pb_portfolio_item:nth-child(2n),.et_pb_gutters3 .et_pb_column_2_3 .et_pb_shop_grid .woocommerce ul.products li.product:nth-child(2n),.et_pb_gutters3 .et_pb_column_2_3 .et_pb_widget:nth-child(2n),.et_pb_gutters3.et_pb_row .et_pb_column_1_2 .et_pb_grid_item.et_pb_portfolio_item:nth-child(2n),.et_pb_gutters3.et_pb_row .et_pb_column_1_2 .et_pb_shop_grid .woocommerce ul.products li.product:nth-child(2n),.et_pb_gutters3.et_pb_row .et_pb_column_1_2 .et_pb_widget:nth-child(2n),.et_pb_gutters3.et_pb_row .et_pb_column_2_3 .et_pb_grid_item.et_pb_portfolio_item:nth-child(2n),.et_pb_gutters3.et_pb_row .et_pb_column_2_3 .et_pb_shop_grid .woocommerce ul.products li.product:nth-child(2n),.et_pb_gutters3.et_pb_row .et_pb_column_2_3 .et_pb_widget:nth-child(2n){margin-right:0}.et_pb_gutters3 .et_pb_column_1_2 .et_pb_grid_item.et_pb_portfolio_item:nth-child(odd),.et_pb_gutters3 .et_pb_column_1_2 .et_pb_shop_grid .woocommerce ul.products li.product:nth-child(odd),.et_pb_gutters3 .et_pb_column_1_2 .et_pb_widget:nth-child(odd),.et_pb_gutters3 .et_pb_column_2_3 .et_pb_grid_item.et_pb_portfolio_item:nth-child(odd),.et_pb_gutters3 .et_pb_column_2_3 .et_pb_shop_grid .woocommerce ul.products li.product:nth-child(odd),.et_pb_gutters3 .et_pb_column_2_3 .et_pb_widget:nth-child(odd),.et_pb_gutters3.et_pb_row .et_pb_column_1_2 .et_pb_grid_item.et_pb_portfolio_item:nth-child(odd),.et_pb_gutters3.et_pb_row .et_pb_column_1_2 .et_pb_shop_grid .woocommerce ul.products li.product:nth-child(odd),.et_pb_gutters3.et_pb_row .et_pb_column_1_2 .et_pb_widget:nth-child(odd),.et_pb_gutters3.et_pb_row .et_pb_column_2_3 .et_pb_grid_item.et_pb_portfolio_item:nth-child(odd),.et_pb_gutters3.et_pb_row .et_pb_column_2_3 .et_pb_shop_grid .woocommerce ul.products li.product:nth-child(odd),.et_pb_gutters3.et_pb_row .et_pb_column_2_3 .et_pb_widget:nth-child(odd){clear:both}.et_pb_gutters3 .et_pb_column_1_2 .et_pb_grid_item.last_in_row,.et_pb_gutters3 .et_pb_column_2_3 .et_pb_grid_item.last_in_row,.et_pb_gutters3.et_pb_row .et_pb_column_1_2 .et_pb_grid_item.last_in_row,.et_pb_gutters3.et_pb_row .et_pb_column_2_3 .et_pb_grid_item.last_in_row{margin-right:0}.et_pb_gutters3 .et_pb_column_1_2 .et_pb_grid_item.on_last_row,.et_pb_gutters3 .et_pb_column_2_3 .et_pb_grid_item.on_last_row,.et_pb_gutters3.et_pb_row .et_pb_column_1_2 .et_pb_grid_item.on_last_row,.et_pb_gutters3.et_pb_row .et_pb_column_2_3 .et_pb_grid_item.on_last_row{margin-bottom:0}.et_pb_gutters3 .et_pb_column_3_5 .et_pb_grid_item.et_pb_portfolio_item:nth-child(2n),.et_pb_gutters3 .et_pb_column_3_5 .et_pb_shop_grid .woocommerce ul.products li.product:nth-child(2n),.et_pb_gutters3 .et_pb_column_3_5 .et_pb_widget:nth-child(2n),.et_pb_gutters3.et_pb_row .et_pb_column_3_5 .et_pb_grid_item.et_pb_portfolio_item:nth-child(2n),.et_pb_gutters3.et_pb_row .et_pb_column_3_5 .et_pb_shop_grid .woocommerce ul.products li.product:nth-child(2n),.et_pb_gutters3.et_pb_row .et_pb_column_3_5 .et_pb_widget:nth-child(2n){margin-right:0}.et_pb_gutters3 .et_pb_column_3_5 .et_pb_grid_item.et_pb_portfolio_item:nth-child(odd),.et_pb_gutters3 .et_pb_column_3_5 .et_pb_shop_grid .woocommerce ul.products li.product:nth-child(odd),.et_pb_gutters3 .et_pb_column_3_5 .et_pb_widget:nth-child(odd),.et_pb_gutters3.et_pb_row .et_pb_column_3_5 .et_pb_grid_item.et_pb_portfolio_item:nth-child(odd),.et_pb_gutters3.et_pb_row .et_pb_column_3_5 .et_pb_shop_grid .woocommerce ul.products li.product:nth-child(odd),.et_pb_gutters3.et_pb_row .et_pb_column_3_5 .et_pb_widget:nth-child(odd){clear:both}.et_pb_gutters3 .et_pb_column_3_5 .et_pb_grid_item.last_in_row,.et_pb_gutters3.et_pb_row .et_pb_column_3_5 .et_pb_grid_item.last_in_row{margin-right:0}.et_pb_gutters3 .et_pb_column_1_3 .et_pb_grid_item.on_last_row,.et_pb_gutters3 .et_pb_column_1_4 .et_pb_grid_item.on_last_row,.et_pb_gutters3 .et_pb_column_1_5 .et_pb_grid_item.on_last_row,.et_pb_gutters3 .et_pb_column_1_6 .et_pb_grid_item.on_last_row,.et_pb_gutters3 .et_pb_column_3_5 .et_pb_grid_item.on_last_row,.et_pb_gutters3.et_pb_row .et_pb_column_1_3 .et_pb_grid_item.on_last_row,.et_pb_gutters3.et_pb_row .et_pb_column_1_4 .et_pb_grid_item.on_last_row,.et_pb_gutters3.et_pb_row .et_pb_column_1_5 .et_pb_grid_item.on_last_row,.et_pb_gutters3.et_pb_row .et_pb_column_1_6 .et_pb_grid_item.on_last_row,.et_pb_gutters3.et_pb_row .et_pb_column_3_5 .et_pb_grid_item.on_last_row{margin-bottom:0}.et_pb_gutters3 .et_pb_column_1_2 .et_pb_blog_grid .column.size-1of2:nth-child(2n),.et_pb_gutters3 .et_pb_column_1_2 .et_pb_blog_grid .column.size-1of3:nth-child(3n),.et_pb_gutters3 .et_pb_column_1_2 .et_pb_grid_item.last_in_row,.et_pb_gutters3 .et_pb_column_2_3 .et_pb_blog_grid .column.size-1of2:nth-child(2n),.et_pb_gutters3 .et_pb_column_2_3 .et_pb_blog_grid .column.size-1of3:nth-child(3n),.et_pb_gutters3 .et_pb_column_2_3 .et_pb_grid_item.last_in_row,.et_pb_gutters3 .et_pb_column_3_4 .et_pb_blog_grid .column.size-1of2:nth-child(2n),.et_pb_gutters3 .et_pb_column_3_4 .et_pb_blog_grid .column.size-1of3:nth-child(3n),.et_pb_gutters3 .et_pb_column_3_4 .et_pb_grid_item.last_in_row,.et_pb_gutters3.et_pb_row .et_pb_column_1_2 .et_pb_blog_grid .column.size-1of2:nth-child(2n),.et_pb_gutters3.et_pb_row .et_pb_column_1_2 .et_pb_blog_grid .column.size-1of3:nth-child(3n),.et_pb_gutters3.et_pb_row .et_pb_column_1_2 .et_pb_grid_item.last_in_row,.et_pb_gutters3.et_pb_row .et_pb_column_2_3 .et_pb_blog_grid .column.size-1of2:nth-child(2n),.et_pb_gutters3.et_pb_row .et_pb_column_2_3 .et_pb_blog_grid .column.size-1of3:nth-child(3n),.et_pb_gutters3.et_pb_row .et_pb_column_2_3 .et_pb_grid_item.last_in_row,.et_pb_gutters3.et_pb_row .et_pb_column_3_4 .et_pb_blog_grid .column.size-1of2:nth-child(2n),.et_pb_gutters3.et_pb_row .et_pb_column_3_4 .et_pb_blog_grid .column.size-1of3:nth-child(3n),.et_pb_gutters3.et_pb_row .et_pb_column_3_4 .et_pb_grid_item.last_in_row{margin-right:0}.et_pb_gutters3 .et_pb_column_1_2 .et_pb_grid_item.on_last_row,.et_pb_gutters3 .et_pb_column_2_3 .et_pb_grid_item.on_last_row,.et_pb_gutters3 .et_pb_column_3_4 .et_pb_grid_item.on_last_row,.et_pb_gutters3.et_pb_row .et_pb_column_1_2 .et_pb_grid_item.on_last_row,.et_pb_gutters3.et_pb_row .et_pb_column_2_3 .et_pb_grid_item.on_last_row,.et_pb_gutters3.et_pb_row .et_pb_column_3_4 .et_pb_grid_item.on_last_row{margin-bottom:0}}
87 +#et-secondary-menu li,#top-menu li{word-wrap:break-word}.nav li ul,.et_mobile_menu{border-color:#2EA3F2}.mobile_menu_bar:before,.mobile_menu_bar:after,#top-menu li.current-menu-ancestor>a,#top-menu li.current-menu-item>a{color:#2EA3F2}#main-header{-webkit-transition:background-color 0.4s, color 0.4s, opacity 0.4s ease-in-out, -webkit-transform 0.4s;transition:background-color 0.4s, color 0.4s, opacity 0.4s ease-in-out, -webkit-transform 0.4s;transition:background-color 0.4s, color 0.4s, transform 0.4s, opacity 0.4s ease-in-out;transition:background-color 0.4s, color 0.4s, transform 0.4s, opacity 0.4s ease-in-out, -webkit-transform 0.4s}#main-header.et-disabled-animations *{-webkit-transition-duration:0s !important;transition-duration:0s !important}.container{text-align:left;position:relative}.et_fixed_nav.et_show_nav #page-container{padding-top:80px}.et_fixed_nav.et_show_nav.et-tb #page-container,.et_fixed_nav.et_show_nav.et-tb-has-header #page-container{padding-top:0 !important}.et_fixed_nav.et_show_nav.et_secondary_nav_enabled #page-container{padding-top:111px}.et_fixed_nav.et_show_nav.et_secondary_nav_enabled.et_header_style_centered #page-container{padding-top:177px}.et_fixed_nav.et_show_nav.et_header_style_centered #page-container{padding-top:147px}.et_fixed_nav #main-header{position:fixed}.et-cloud-item-editor #page-container{padding-top:0 !important}.et_header_style_left #et-top-navigation{padding-top:33px}.et_header_style_left #et-top-navigation nav>ul>li>a{padding-bottom:33px}.et_header_style_left .logo_container{position:absolute;height:100%;width:100%}.et_header_style_left #et-top-navigation .mobile_menu_bar{padding-bottom:24px}.et_hide_search_icon #et_top_search{display:none !important}#logo{width:auto;-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out;margin-bottom:0;max-height:54%;display:inline-block;float:none;vertical-align:middle;-webkit-transform:translate3d(0, 0, 0)}.et_pb_svg_logo #logo{height:54%}.logo_container{-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out}span.logo_helper{display:inline-block;height:100%;vertical-align:middle;width:0}.safari .centered-inline-logo-wrap{-webkit-transform:translate3d(0, 0, 0);-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out}#et-define-logo-wrap img{width:100%}.gecko #et-define-logo-wrap.svg-logo{position:relative !important}#top-menu-nav,#top-menu{line-height:0}#et-top-navigation{font-weight:600}.et_fixed_nav #et-top-navigation{-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out}.et-cart-info span:before{content:"\e07a";margin-right:10px;position:relative}nav#top-menu-nav,#top-menu,nav.et-menu-nav,.et-menu{float:left}#top-menu li{display:inline-block;font-size:14px;padding-right:22px}#top-menu>li:last-child{padding-right:0}.et_fullwidth_nav.et_non_fixed_nav.et_header_style_left #top-menu>li:last-child>ul.sub-menu{right:0}#top-menu a{color:rgba(0,0,0,0.6);text-decoration:none;display:block;position:relative;-webkit-transition:opacity 0.4s ease-in-out, background-color 0.4s ease-in-out;transition:opacity 0.4s ease-in-out, background-color 0.4s ease-in-out}#top-menu-nav>ul>li>a:hover{opacity:0.7;-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out}#et_search_icon:before{content:"\55";font-size:17px;left:0;position:absolute;top:-3px}#et_search_icon:hover{cursor:pointer}#et_top_search{float:right;margin:3px 0 0 22px;position:relative;display:block;width:18px}#et_top_search.et_search_opened{position:absolute;width:100%}.et-search-form{top:0;bottom:0;right:0;position:absolute;z-index:1000;width:100%}.et-search-form input{width:90%;border:none;color:#333;position:absolute;top:0;bottom:0;right:30px;margin:auto;background:transparent}.et-search-form .et-search-field::-ms-clear{width:0;height:0;display:none}.et_search_form_container{-webkit-animation:none;animation:none;-o-animation:none}.container.et_search_form_container{position:relative;opacity:0;height:1px}.container.et_search_form_container.et_pb_search_visible{z-index:999;-webkit-animation:fadeInTop 1s 1 cubic-bezier(0.77, 0, 0.175, 1);animation:fadeInTop 1s 1 cubic-bezier(0.77, 0, 0.175, 1)}.et_pb_search_visible.et_pb_no_animation{opacity:1}.et_pb_search_form_hidden{-webkit-animation:fadeOutTop 1s 1 cubic-bezier(0.77, 0, 0.175, 1);animation:fadeOutTop 1s 1 cubic-bezier(0.77, 0, 0.175, 1)}span.et_close_search_field{display:block;width:30px;height:30px;z-index:99999;position:absolute;right:0;cursor:pointer;top:0;bottom:0;margin:auto}span.et_close_search_field:after{font-family:'ETmodules';content:'\4d';speak:none;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;font-size:32px;display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box}.container.et_menu_container{z-index:99}.container.et_search_form_container.et_pb_search_form_hidden{z-index:1 !important}.et_search_outer{width:100%;overflow:hidden;position:absolute;top:0}.container.et_pb_menu_hidden{z-index:-1}form.et-search-form{background:rgba(0,0,0,0) !important}input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}.et-cart-info{color:inherit}#et-top-navigation .et-cart-info{float:left;margin:-2px 0 0 22px;font-size:16px}#et-top-navigation{float:right}#top-menu li li{padding:0 20px;margin:0}#top-menu li li a{padding:6px 20px;width:200px}.nav li.et-touch-hover>ul{opacity:1;visibility:visible}#top-menu .menu-item-has-children>a:first-child:after,#et-secondary-nav .menu-item-has-children>a:first-child:after{font-family:'ETmodules';content:"3";font-size:16px;position:absolute;right:0;top:0;font-weight:800}#top-menu .menu-item-has-children>a:first-child,#et-secondary-nav .menu-item-has-children>a:first-child{padding-right:20px}#top-menu li .menu-item-has-children>a:first-child{padding-right:40px}#top-menu li .menu-item-has-children>a:first-child:after{right:20px;top:6px}#top-menu li.mega-menu{position:inherit}#top-menu li.mega-menu>ul{padding:30px 20px;position:absolute !important;width:100%;left:0 !important}#top-menu li.mega-menu ul li{margin:0;float:left !important;display:block !important;padding:0 !important}#top-menu li.mega-menu>ul>li:nth-of-type(4n){clear:right}#top-menu li.mega-menu>ul>li:nth-of-type(4n+1){clear:left}#top-menu li.mega-menu ul li li{width:100%}#top-menu li.mega-menu li>ul{-webkit-animation:none !important;animation:none !important;padding:0px;border:none;left:auto;top:auto;width:90% !important;position:relative;-webkit-box-shadow:none;box-shadow:none}#top-menu li.mega-menu li ul{visibility:visible;opacity:1;display:none}#top-menu li.mega-menu.et-hover li ul{display:block}#top-menu li.mega-menu.et-hover>ul{opacity:1 !important;visibility:visible !important}#top-menu li.mega-menu>ul>li>a{width:90%;padding:0 20px 10px}#top-menu li.mega-menu>ul>li>a:first-child{padding-top:0 !important;font-weight:bold;border-bottom:1px solid rgba(0,0,0,0.03)}#top-menu li.mega-menu>ul>li>a:first-child:hover{background-color:transparent !important}#top-menu li.mega-menu li>a{width:100%}#top-menu li.mega-menu.mega-menu-parent li li,#top-menu li.mega-menu.mega-menu-parent li>a{width:100% !important}#top-menu li.mega-menu.mega-menu-parent li>.sub-menu{float:left;width:100% !important}#top-menu li.mega-menu>ul>li{width:25%;margin:0}#top-menu li.mega-menu.mega-menu-parent-3>ul>li{width:33.33%}#top-menu li.mega-menu.mega-menu-parent-2>ul>li{width:50%}#top-menu li.mega-menu.mega-menu-parent-1>ul>li{width:100%}#top-menu li.mega-menu .menu-item-has-children>a:first-child:after{display:none}#top-menu li.mega-menu>ul>li>ul>li{width:100%;margin:0}#et_mobile_nav_menu{float:right;display:none}.mobile_menu_bar{position:relative;display:block;line-height:0}.mobile_menu_bar:before,.et_toggle_slide_menu:after{content:"\61";font-size:32px;left:0;position:relative;top:0;cursor:pointer}.mobile_nav .select_page{display:none}.et_pb_menu_hidden #top-menu,.et_pb_menu_hidden #et_search_icon:before,.et_pb_menu_hidden .et-cart-info{opacity:0;-webkit-animation:fadeOutBottom 1s 1 cubic-bezier(0.77, 0, 0.175, 1);animation:fadeOutBottom 1s 1 cubic-bezier(0.77, 0, 0.175, 1)}.et_pb_menu_visible #top-menu,.et_pb_menu_visible #et_search_icon:before,.et_pb_menu_visible .et-cart-info{z-index:99;opacity:1;-webkit-animation:fadeInBottom 1s 1 cubic-bezier(0.77, 0, 0.175, 1);animation:fadeInBottom 1s 1 cubic-bezier(0.77, 0, 0.175, 1)}.et_pb_menu_hidden #top-menu,.et_pb_menu_hidden #et_search_icon:before,.et_pb_menu_hidden .mobile_menu_bar{opacity:0;-webkit-animation:fadeOutBottom 1s 1 cubic-bezier(0.77, 0, 0.175, 1);animation:fadeOutBottom 1s 1 cubic-bezier(0.77, 0, 0.175, 1)}.et_pb_menu_visible #top-menu,.et_pb_menu_visible #et_search_icon:before,.et_pb_menu_visible .mobile_menu_bar{z-index:99;opacity:1;-webkit-animation:fadeInBottom 1s 1 cubic-bezier(0.77, 0, 0.175, 1);animation:fadeInBottom 1s 1 cubic-bezier(0.77, 0, 0.175, 1)}.et_pb_no_animation #top-menu,.et_pb_no_animation #et_search_icon:before,.et_pb_no_animation .mobile_menu_bar,.et_pb_no_animation.et_search_form_container{animation:none !important;-o-animation:none !important;-webkit-animation:none !important;-moz-animation:none !important}body.admin-bar.et_fixed_nav #main-header{top:32px}body.et-wp-pre-3_8.admin-bar.et_fixed_nav #main-header{top:28px}body.et_fixed_nav.et_secondary_nav_enabled #main-header{top:30px}body.admin-bar.et_fixed_nav.et_secondary_nav_enabled #main-header{top:63px}@media all and (min-width: 981px){.et_hide_primary_logo #main-header:not(.et-fixed-header) .logo_container,.et_hide_fixed_logo #main-header.et-fixed-header .logo_container{height:0;opacity:0;-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out}.et_hide_primary_logo #main-header:not(.et-fixed-header) .centered-inline-logo-wrap,.et_hide_fixed_logo #main-header.et-fixed-header .centered-inline-logo-wrap{height:0;opacity:0;padding:0}.et-animated-content#page-container{-webkit-transition:margin-top 0.4s ease-in-out;transition:margin-top 0.4s ease-in-out}.et_hide_nav #page-container{-webkit-transition:none;transition:none}.et_fullwidth_nav .et-search-form,.et_fullwidth_nav .et_close_search_field{right:30px}#main-header.et-fixed-header{-webkit-box-shadow:0 0 7px rgba(0,0,0,0.1) !important;box-shadow:0 0 7px rgba(0,0,0,0.1) !important}.et_header_style_left .et-fixed-header #et-top-navigation{padding-top:20px}.et_header_style_left .et-fixed-header #et-top-navigation nav>ul>li>a{padding-bottom:20px}.et_hide_nav.et_fixed_nav #main-header{opacity:0}.et_hide_nav.et_fixed_nav .et-fixed-header#main-header{-webkit-transform:translateY(0px) !important;transform:translateY(0px) !important;opacity:1}.et_hide_nav .centered-inline-logo-wrap,.et_hide_nav.et_fixed_nav #main-header,.et_hide_nav.et_fixed_nav #main-header,.et_hide_nav .centered-inline-logo-wrap{-webkit-transition-duration:.7s;transition-duration:.7s}.et_hide_nav #page-container{padding-top:0 !important}.et_primary_nav_dropdown_animation_fade #et-top-navigation ul li:hover>ul,.et_secondary_nav_dropdown_animation_fade #et-secondary-nav li:hover>ul{-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.et_primary_nav_dropdown_animation_slide #et-top-navigation ul li:hover>ul,.et_secondary_nav_dropdown_animation_slide #et-secondary-nav li:hover>ul{-webkit-animation:fadeLeft .4s ease-in-out;animation:fadeLeft .4s ease-in-out}.et_primary_nav_dropdown_animation_expand #et-top-navigation ul li:hover>ul,.et_secondary_nav_dropdown_animation_expand #et-secondary-nav li:hover>ul{-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-animation:Grow .4s ease-in-out;animation:Grow .4s ease-in-out;-webkit-backface-visibility:visible !important;backface-visibility:visible !important}.et_primary_nav_dropdown_animation_flip #et-top-navigation ul li ul li:hover>ul,.et_secondary_nav_dropdown_animation_flip #et-secondary-nav ul li:hover>ul{-webkit-animation:flipInX .6s ease-in-out;animation:flipInX .6s ease-in-out;-webkit-backface-visibility:visible !important;backface-visibility:visible !important}.et_primary_nav_dropdown_animation_flip #et-top-navigation ul li:hover>ul,.et_secondary_nav_dropdown_animation_flip #et-secondary-nav li:hover>ul{-webkit-animation:flipInY .6s ease-in-out;animation:flipInY .6s ease-in-out;-webkit-backface-visibility:visible !important;backface-visibility:visible !important}.et_fullwidth_nav #main-header .container{width:100%;max-width:100%;padding-right:32px;padding-left:30px}.et_non_fixed_nav.et_fullwidth_nav.et_header_style_left #main-header .container{padding-left:0}.et_non_fixed_nav.et_fullwidth_nav.et_header_style_left .logo_container{padding-left:30px}}@media all and (max-width: 980px){.et_fixed_nav.et_show_nav.et_secondary_nav_enabled #page-container,.et_fixed_nav.et_show_nav #page-container{padding-top:80px}.et_fixed_nav.et_show_nav.et-tb #page-container,.et_fixed_nav.et_show_nav.et-tb-has-header #page-container{padding-top:0 !important}.et_non_fixed_nav #page-container{padding-top:0}.et_fixed_nav.et_secondary_nav_only_menu.admin-bar #main-header{top:32px !important}.et_hide_mobile_logo #main-header .logo_container{display:none;opacity:0;-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out}#top-menu{display:none}.et_hide_nav.et_fixed_nav #main-header{-webkit-transform:translateY(0px) !important;transform:translateY(0px) !important;opacity:1}#et-top-navigation{margin-right:0;-webkit-transition:none;transition:none}.et_fixed_nav #main-header{position:absolute}.et_header_style_left .et-fixed-header #et-top-navigation,.et_header_style_left #et-top-navigation{padding-top:24px;display:block}.et_fixed_nav #main-header{-webkit-transition:none;transition:none}.et_fixed_nav_temp #main-header{top:0 !important}#logo,.logo_container,#main-header,.container{-webkit-transition:none;transition:none}.et_header_style_left #logo{max-width:50%}#et_top_search{margin:0 35px 0 0;float:left}#et_search_icon:before{top:7px}.et_header_style_left .et-search-form{width:50% !important;max-width:50% !important}#et_mobile_nav_menu{display:block}#et-top-navigation .et-cart-info{margin-top:5px}}@media screen and (max-width: 782px){body.admin-bar.et_fixed_nav #main-header{top:46px}}@media all and (max-width: 767px){#et-top-navigation{margin-right:0}body.admin-bar.et_fixed_nav #main-header{top:46px}}@media all and (max-width: 479px){#et-top-navigation{margin-right:0}}@media print{#top-header,#main-header{position:relative !important;top:auto !important;right:auto !important;bottom:auto !important;left:auto !important}}
88 +@-webkit-keyframes fadeOutTop{0%{opacity:1;-webkit-transform:translatey(0);transform:translatey(0)}to{opacity:0;-webkit-transform:translatey(-60%);transform:translatey(-60%)}}@keyframes fadeOutTop{0%{opacity:1;-webkit-transform:translatey(0);transform:translatey(0)}to{opacity:0;-webkit-transform:translatey(-60%);transform:translatey(-60%)}}@-webkit-keyframes fadeInTop{0%{opacity:0;-webkit-transform:translatey(-60%);transform:translatey(-60%)}to{opacity:1;-webkit-transform:translatey(0);transform:translatey(0)}}@keyframes fadeInTop{0%{opacity:0;-webkit-transform:translatey(-60%);transform:translatey(-60%)}to{opacity:1;-webkit-transform:translatey(0);transform:translatey(0)}}@-webkit-keyframes fadeInBottom{0%{opacity:0;-webkit-transform:translatey(60%);transform:translatey(60%)}to{opacity:1;-webkit-transform:translatey(0);transform:translatey(0)}}@keyframes fadeInBottom{0%{opacity:0;-webkit-transform:translatey(60%);transform:translatey(60%)}to{opacity:1;-webkit-transform:translatey(0);transform:translatey(0)}}@-webkit-keyframes fadeOutBottom{0%{opacity:1;-webkit-transform:translatey(0);transform:translatey(0)}to{opacity:0;-webkit-transform:translatey(60%);transform:translatey(60%)}}@keyframes fadeOutBottom{0%{opacity:1;-webkit-transform:translatey(0);transform:translatey(0)}to{opacity:0;-webkit-transform:translatey(60%);transform:translatey(60%)}}@-webkit-keyframes Grow{0%{opacity:0;-webkit-transform:scaleY(.5);transform:scaleY(.5)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes Grow{0%{opacity:0;-webkit-transform:scaleY(.5);transform:scaleY(.5)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}/*!
89 + * Animate.css - http://daneden.me/animate
90 + * Licensed under the MIT license - http://opensource.org/licenses/MIT
91 + * Copyright (c) 2015 Daniel Eden
92 + */@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}
93 +#main-header{line-height:23px;font-weight:500;top:0;background-color:#fff;width:100%;-webkit-box-shadow:0 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 0 rgba(0,0,0,.1);position:relative;z-index:99999}.nav li li{padding:0 20px;margin:0}.et-menu li li a{padding:6px 20px;width:200px}.nav li{position:relative;line-height:1em}.nav li li{position:relative;line-height:2em}.nav li ul{position:absolute;padding:20px 0;z-index:9999;width:240px;background:#fff;visibility:hidden;opacity:0;border-top:3px solid #2ea3f2;box-shadow:0 2px 5px rgba(0,0,0,.1);-moz-box-shadow:0 2px 5px rgba(0,0,0,.1);-webkit-box-shadow:0 2px 5px rgba(0,0,0,.1);-webkit-transform:translateZ(0);text-align:left}.nav li.et-hover>ul{visibility:visible}.nav li.et-touch-hover>ul,.nav li:hover>ul{opacity:1;visibility:visible}.nav li li ul{z-index:1000;top:-23px;left:240px}.nav li.et-reverse-direction-nav li ul{left:auto;right:240px}.nav li:hover{visibility:inherit}.et_mobile_menu li a,.nav li li a{font-size:14px;-webkit-transition:opacity .2s ease-in-out,background-color .2s ease-in-out;transition:opacity .2s ease-in-out,background-color .2s ease-in-out}.et_mobile_menu li a:hover,.nav ul li a:hover{background-color:rgba(0,0,0,.03);opacity:.7}.et-dropdown-removing>ul{display:none}.mega-menu .et-dropdown-removing>ul{display:block}.et-menu .menu-item-has-children>a:first-child:after{font-family:ETmodules;content:"3";font-size:16px;position:absolute;right:0;top:0;font-weight:800}.et-menu .menu-item-has-children>a:first-child{padding-right:20px}.et-menu li li.menu-item-has-children>a:first-child:after{right:20px;top:6px}.et-menu-nav li.mega-menu{position:inherit}.et-menu-nav li.mega-menu>ul{padding:30px 20px;position:absolute!important;width:100%;left:0!important}.et-menu-nav li.mega-menu ul li{margin:0;float:left!important;display:block!important;padding:0!important}.et-menu-nav li.mega-menu li>ul{-webkit-animation:none!important;animation:none!important;padding:0;border:none;left:auto;top:auto;width:240px!important;position:relative;box-shadow:none;-webkit-box-shadow:none}.et-menu-nav li.mega-menu li ul{visibility:visible;opacity:1;display:none}.et-menu-nav li.mega-menu.et-hover li ul,.et-menu-nav li.mega-menu:hover li ul{display:block}.et-menu-nav li.mega-menu:hover>ul{opacity:1!important;visibility:visible!important}.et-menu-nav li.mega-menu>ul>li>a:first-child{padding-top:0!important;font-weight:700;border-bottom:1px solid rgba(0,0,0,.03)}.et-menu-nav li.mega-menu>ul>li>a:first-child:hover{background-color:transparent!important}.et-menu-nav li.mega-menu li>a{width:200px!important}.et-menu-nav li.mega-menu.mega-menu-parent li>a,.et-menu-nav li.mega-menu.mega-menu-parent li li{width:100%!important}.et-menu-nav li.mega-menu.mega-menu-parent li>.sub-menu{float:left;width:100%!important}.et-menu-nav li.mega-menu>ul>li{width:25%;margin:0}.et-menu-nav li.mega-menu.mega-menu-parent-3>ul>li{width:33.33%}.et-menu-nav li.mega-menu.mega-menu-parent-2>ul>li{width:50%}.et-menu-nav li.mega-menu.mega-menu-parent-1>ul>li{width:100%}.et_pb_fullwidth_menu li.mega-menu .menu-item-has-children>a:first-child:after,.et_pb_menu li.mega-menu .menu-item-has-children>a:first-child:after{display:none}.et_fullwidth_nav #top-menu li.mega-menu>ul{width:auto;left:30px!important;right:30px!important}.et_mobile_menu{position:absolute;left:0;padding:5%;background:#fff;width:100%;visibility:visible;opacity:1;display:none;z-index:9999;border-top:3px solid #2ea3f2;box-shadow:0 2px 5px rgba(0,0,0,.1);-moz-box-shadow:0 2px 5px rgba(0,0,0,.1);-webkit-box-shadow:0 2px 5px rgba(0,0,0,.1)}#main-header .et_mobile_menu li ul,.et_pb_fullwidth_menu .et_mobile_menu li ul,.et_pb_menu .et_mobile_menu li ul{visibility:visible!important;display:block!important;padding-left:10px}.et_mobile_menu li li{padding-left:5%}.et_mobile_menu li a{border-bottom:1px solid rgba(0,0,0,.03);color:#666;padding:10px 5%;display:block}.et_mobile_menu .menu-item-has-children>a{font-weight:700;background-color:rgba(0,0,0,.03)}.et_mobile_menu li .menu-item-has-children>a{background-color:transparent}.et_mobile_nav_menu{float:right;display:none}.mobile_menu_bar{position:relative;display:block;line-height:0}.mobile_menu_bar:before{content:"a";font-size:32px;position:relative;left:0;top:0;cursor:pointer}.et_pb_module .mobile_menu_bar:before{top:2px}.mobile_nav .select_page{display:none}
94 +#et-secondary-menu li{word-wrap:break-word}#top-header,#et-secondary-nav li ul{background-color:#2EA3F2}#top-header{font-size:12px;line-height:13px;z-index:100000;color:#ffffff}#top-header a,#top-header a{color:#ffffff}#top-header,#et-secondary-nav{-webkit-transition:background-color 0.4s, opacity 0.4s ease-in-out, -webkit-transform 0.4s;transition:background-color 0.4s, opacity 0.4s ease-in-out, -webkit-transform 0.4s;transition:background-color 0.4s, transform 0.4s, opacity 0.4s ease-in-out;transition:background-color 0.4s, transform 0.4s, opacity 0.4s ease-in-out, -webkit-transform 0.4s}#top-header .container{padding-top:.75em;font-weight:600}#top-header,#top-header .container,#top-header #et-info,#top-header .et-social-icon a{line-height:1em}.et_fixed_nav #top-header{top:0;left:0;right:0;position:fixed}#et-info{float:left}#et-info-phone,#et-info-email{position:relative}#et-info-phone:before{content:"\e090";position:relative;top:2px;margin-right:2px}#et-info-phone{margin-right:13px}#et-info-email:before{content:"\e076";margin-right:4px}#top-header .et-social-icons{float:none;display:inline-block}#et-secondary-menu .et-social-icons{margin-right:20px}#top-header .et-social-icons li{margin-left:12px;margin-top:-2px}#top-header .et-social-icon a{font-size:14px}#et-secondary-menu{float:right}#et-info,#et-secondary-menu>ul>li a{padding-bottom:.75em;display:block}#et-secondary-nav,#et-secondary-nav li{display:inline-block}#et-secondary-nav a{-webkit-transition:background-color 0.4s, color 0.4s ease-in-out;transition:background-color 0.4s, color 0.4s ease-in-out}#et-secondary-nav li{margin-right:15px}#et-secondary-nav>li:last-child{margin-right:0}#et-secondary-menu>ul>li>a:hover,#et-info-email:hover{opacity:0.7;-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out}#et-secondary-nav li{position:relative;text-align:right}#et-secondary-nav li ul{position:absolute;right:0;padding:1em 0}#et-secondary-nav li ul ul{right:220px;top:0;margin-top:-1em}#et-secondary-nav li ul li{display:block}#et-secondary-nav li ul{z-index:999999;visibility:hidden;opacity:0;-webkit-box-shadow:0 2px 5px rgba(0,0,0,0.1);box-shadow:0 2px 5px rgba(0,0,0,0.1)}#et-secondary-nav li ul{-webkit-transform:translate3d(0, 0, 0)}#et-secondary-nav li.et-hover>ul{visibility:visible}#et-secondary-nav li>ul{width:220px}#et-secondary-nav li:hover>ul,#et-secondary-nav li.et-touch-hover>ul{opacity:1;visibility:visible}#et-secondary-nav li li{padding:0 2em;margin:0}#et-secondary-nav li li a{padding:1em;width:100%;font-size:12px;line-height:1em;margin-right:0;display:block;-webkit-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out}#et-secondary-nav ul li a:hover{background-color:rgba(0,0,0,0.03)}#et-secondary-nav li:hover{visibility:inherit}#top-header .et-cart-info{margin-left:15px}#et-secondary-nav .menu-item-has-children>a:first-child:after{top:0}#et-secondary-nav li .menu-item-has-children>a:first-child:after{top:.67em;right:auto;left:2.3em}body.admin-bar.et_fixed_nav #top-header{top:32px}body.et-wp-pre-3_8.admin-bar.et_fixed_nav #top-header{top:28px}@media all and (min-width: 981px){.et_fullwidth_secondary_nav #top-header .container{width:100%;max-width:100%;padding-right:30px;padding-left:30px}.et_hide_nav.et_fixed_nav #top-header{opacity:0}.et_hide_nav.et_fixed_nav .et-fixed-header#top-header{-webkit-transform:translateY(0px) !important;transform:translateY(0px) !important;opacity:1}.et_hide_nav.et_fixed_nav #top-header,.et_hide_nav.et_fixed_nav #top-header{-webkit-transition-duration:.7s;transition-duration:.7s}}@media all and (max-width: 980px){.et_fixed_nav.et_show_nav.et_secondary_nav_enabled.et-tb #page-container,.et_fixed_nav.et_show_nav.et_secondary_nav_enabled.et-tb-has-header #page-container{padding-top:0 !important}.et_secondary_nav_only_menu #top-header{display:none}#top-header{-webkit-transition:none;transition:none}.et_fixed_nav #top-header{position:absolute}.et_hide_nav.et_fixed_nav #top-header{-webkit-transform:translateY(0px) !important;transform:translateY(0px) !important;opacity:1}#top-header .container{padding-top:0}#et-info{padding-top:0.75em}#et-secondary-nav,#et-secondary-menu{display:none !important}.et_secondary_nav_only_menu #main-header,.et_secondary_nav_only_menu #main-header{top:0 !important}#top-header .et-social-icons{margin-bottom:0}#top-header .et-cart-info{margin-left:0}}@media screen and (max-width: 782px){body.admin-bar.et_fixed_nav #top-header{top:46px}.et_fixed_nav.et_secondary_nav_only_menu.admin-bar #main-header{top:46px !important}body.admin-bar.et_fixed_nav.et_secondary_nav_enabled #main-header{top:80px}}@media all and (max-width: 767px){#et-info .et-social-icons{display:none}#et-secondary-menu .et_duplicate_social_icons{display:inline-block}body.et_fixed_nav.et_secondary_nav_two_panels #main-header{top:58px}#et-info,#et-secondary-menu{text-align:center;display:block;float:none}.et_secondary_nav_two_panels #et-secondary-menu{margin-top:12px}body.admin-bar.et_fixed_nav #top-header{top:46px}body.admin-bar.et_fixed_nav.et_secondary_nav_two_panels #main-header{top:104px}}
95 +.et-social-icons{float:right}.et-social-icons li{display:inline-block;margin-left:20px}.et-social-icon a{display:inline-block;font-size:24px;position:relative;text-align:center;-webkit-transition:color 300ms ease 0s;transition:color 300ms ease 0s;color:#666;text-decoration:none}.et-social-icons a:hover{opacity:0.7;-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out}.et-social-icon span{display:none}.et_duplicate_social_icons{display:none}@media all and (max-width: 980px){.et-social-icons{float:none;text-align:center}}@media all and (max-width: 980px){.et-social-icons{margin:0 0 5px}}
96 +.et_pb_scroll_top.et-pb-icon{text-align:center;background:rgba(0,0,0,0.4);text-decoration:none;position:fixed;z-index:99999;bottom:125px;right:0px;-webkit-border-top-left-radius:5px;-webkit-border-bottom-left-radius:5px;-moz-border-radius-topleft:5px;-moz-border-radius-bottomleft:5px;border-top-left-radius:5px;border-bottom-left-radius:5px;display:none;cursor:pointer;font-size:30px;padding:5px;color:#fff}.et_pb_scroll_top:before{content:'2'}.et_pb_scroll_top.et-visible{opacity:1;-webkit-animation:fadeInRight 1s 1 cubic-bezier(0.77, 0, 0.175, 1);animation:fadeInRight 1s 1 cubic-bezier(0.77, 0, 0.175, 1)}.et_pb_scroll_top.et-hidden{opacity:0;-webkit-animation:fadeOutRight 1s 1 cubic-bezier(0.77, 0, 0.175, 1);animation:fadeOutRight 1s 1 cubic-bezier(0.77, 0, 0.175, 1)}@-webkit-keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(100%);transform:translateX(100%)}}@keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(100%);transform:translateX(100%)}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(100%);transform:translateX(100%)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(100%);transform:translateX(100%)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}
97 +.et_pb_section{position:relative;background-color:#fff;background-position:50%;background-size:100%;background-size:cover}.et_pb_section--absolute,.et_pb_section--fixed{width:100%}.et_pb_section.et_section_transparent{background-color:transparent}.et_pb_fullwidth_section{padding:0}.et_pb_fullwidth_section>.et_pb_module:not(.et_pb_post_content):not(.et_pb_fullwidth_post_content) .et_pb_row{padding:0!important}.et_pb_inner_shadow{-webkit-box-shadow:inset 0 0 7px rgba(0,0,0,.07);box-shadow:inset 0 0 7px rgba(0,0,0,.07)}.et_pb_bottom_inside_divider,.et_pb_top_inside_divider{display:block;background-repeat-y:no-repeat;height:100%;position:absolute;pointer-events:none;width:100%;left:0;right:0}.et_pb_bottom_inside_divider.et-no-transition,.et_pb_top_inside_divider.et-no-transition{-webkit-transition:none!important;transition:none!important}.et-fb .section_has_divider.et_fb_element_controls_visible--child>.et_pb_bottom_inside_divider,.et-fb .section_has_divider.et_fb_element_controls_visible--child>.et_pb_top_inside_divider{z-index:1}.et_pb_section_video:not(.et_pb_section--with-menu){overflow:hidden;position:relative}.et_pb_column>.et_pb_section_video_bg{z-index:-1}.et_pb_section_video_bg{visibility:visible;position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden;display:block;pointer-events:none;-webkit-transition:display .3s;transition:display .3s}.et_pb_section_video_bg.et_pb_section_video_bg_hover,.et_pb_section_video_bg.et_pb_section_video_bg_phone,.et_pb_section_video_bg.et_pb_section_video_bg_tablet,.et_pb_section_video_bg.et_pb_section_video_bg_tablet_only{display:none}.et_pb_section_video_bg .mejs-controls,.et_pb_section_video_bg .mejs-overlay-play{display:none!important}.et_pb_section_video_bg embed,.et_pb_section_video_bg iframe,.et_pb_section_video_bg object,.et_pb_section_video_bg video{max-width:none}.et_pb_section_video_bg .mejs-video{left:50%;position:absolute;max-width:none}.et_pb_section_video_bg .mejs-overlay-loading{display:none!important}.et_pb_social_network_link .et_pb_section_video{overflow:visible}.et_pb_section_video_on_hover:hover>.et_pb_section_video_bg{display:none}.et_pb_section_video_on_hover:hover>.et_pb_section_video_bg_hover,.et_pb_section_video_on_hover:hover>.et_pb_section_video_bg_hover_inherit{display:block}@media (min-width:981px){.et_pb_section{padding:4% 0}body.et_pb_pagebuilder_layout.et_pb_show_title .post-password-required .et_pb_section,body:not(.et_pb_pagebuilder_layout) .post-password-required .et_pb_section{padding-top:0}.et_pb_fullwidth_section{padding:0}.et_pb_section_video_bg.et_pb_section_video_bg_desktop_only{display:block}}@media (max-width:980px){.et_pb_section{padding:50px 0}body.et_pb_pagebuilder_layout.et_pb_show_title .post-password-required .et_pb_section,body:not(.et_pb_pagebuilder_layout) .post-password-required .et_pb_section{padding-top:0}.et_pb_fullwidth_section{padding:0}.et_pb_section_video_bg.et_pb_section_video_bg_tablet{display:block}.et_pb_section_video_bg.et_pb_section_video_bg_desktop_only{display:none}}@media (min-width:768px){.et_pb_section_video_bg.et_pb_section_video_bg_desktop_tablet{display:block}}@media (min-width:768px) and (max-width:980px){.et_pb_section_video_bg.et_pb_section_video_bg_tablet_only{display:block}}@media (max-width:767px){.et_pb_section_video_bg.et_pb_section_video_bg_phone{display:block}.et_pb_section_video_bg.et_pb_section_video_bg_desktop_tablet{display:none}}
98 +.et_pb_row{width:80%;max-width:1080px;margin:auto;position:relative}body.safari .section_has_divider,body.uiwebview .section_has_divider{-webkit-perspective:2000px;perspective:2000px}.section_has_divider .et_pb_row{z-index:5}.et_pb_row_inner{width:100%;position:relative}.et_pb_row.et_pb_row_empty,.et_pb_row_inner:nth-of-type(n+2).et_pb_row_empty{display:none}.et_pb_row:after,.et_pb_row_inner:after{content:"";display:block;clear:both;visibility:hidden;line-height:0;height:0;width:0}.et_pb_row_4col .et-last-child,.et_pb_row_4col .et-last-child-2,.et_pb_row_6col .et-last-child,.et_pb_row_6col .et-last-child-2,.et_pb_row_6col .et-last-child-3{margin-bottom:0}.et_pb_column{float:left;background-size:cover;background-position:50%;position:relative;z-index:2;min-height:1px}.et_pb_column--with-menu{z-index:3}.et_pb_column.et_pb_column_empty{min-height:1px}.et_pb_row .et_pb_column.et-last-child,.et_pb_row .et_pb_column:last-child,.et_pb_row_inner .et_pb_column.et-last-child,.et_pb_row_inner .et_pb_column:last-child{margin-right:0!important}.et_pb_column.et_pb_section_parallax{position:relative}.et_pb_column,.et_pb_row,.et_pb_row_inner{background-size:cover;background-position:50%;background-repeat:no-repeat}@media (min-width:981px){.et_pb_row{padding:2% 0}body.et_pb_pagebuilder_layout.et_pb_show_title .post-password-required .et_pb_row,body:not(.et_pb_pagebuilder_layout) .post-password-required .et_pb_row{padding:0;width:100%}.et_pb_column_3_4 .et_pb_row_inner{padding:3.735% 0}.et_pb_column_2_3 .et_pb_row_inner{padding:4.2415% 0}.et_pb_column_1_2 .et_pb_row_inner,.et_pb_column_3_5 .et_pb_row_inner{padding:5.82% 0}.et_section_specialty>.et_pb_row{padding:0}.et_pb_row_inner{width:100%}.et_pb_column_single{padding:2.855% 0}.et_pb_column_single .et_pb_module.et-first-child,.et_pb_column_single .et_pb_module:first-child{margin-top:0}.et_pb_column_single .et_pb_module.et-last-child,.et_pb_column_single .et_pb_module:last-child{margin-bottom:0}.et_pb_row .et_pb_column.et-last-child,.et_pb_row .et_pb_column:last-child,.et_pb_row_inner .et_pb_column.et-last-child,.et_pb_row_inner .et_pb_column:last-child{margin-right:0!important}.et_pb_row.et_pb_equal_columns,.et_pb_row_inner.et_pb_equal_columns,.et_pb_section.et_pb_equal_columns>.et_pb_row{display:-webkit-box;display:-ms-flexbox;display:flex}.rtl .et_pb_row.et_pb_equal_columns,.rtl .et_pb_row_inner.et_pb_equal_columns,.rtl .et_pb_section.et_pb_equal_columns>.et_pb_row{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.et_pb_row.et_pb_equal_columns>.et_pb_column,.et_pb_section.et_pb_equal_columns>.et_pb_row>.et_pb_column{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}}@media (max-width:980px){.et_pb_row{max-width:1080px}body.et_pb_pagebuilder_layout.et_pb_show_title .post-password-required .et_pb_row,body:not(.et_pb_pagebuilder_layout) .post-password-required .et_pb_row{padding:0;width:100%}.et_pb_column .et_pb_row_inner,.et_pb_row{padding:30px 0}.et_section_specialty>.et_pb_row{padding:0}.et_pb_column{width:100%;margin-bottom:30px}.et_pb_bottom_divider .et_pb_row:nth-last-child(2) .et_pb_column:last-child,.et_pb_row .et_pb_column.et-last-child,.et_pb_row .et_pb_column:last-child{margin-bottom:0}.et_section_specialty .et_pb_row>.et_pb_column{padding-bottom:0}.et_pb_column.et_pb_column_empty{display:none}.et_pb_row_1-2_1-4_1-4,.et_pb_row_1-2_1-6_1-6_1-6,.et_pb_row_1-4_1-4,.et_pb_row_1-4_1-4_1-2,.et_pb_row_1-5_1-5_3-5,.et_pb_row_1-6_1-6_1-6,.et_pb_row_1-6_1-6_1-6_1-2,.et_pb_row_1-6_1-6_1-6_1-6,.et_pb_row_3-5_1-5_1-5,.et_pb_row_4col,.et_pb_row_5col,.et_pb_row_6col{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.et_pb_row_1-4_1-4>.et_pb_column.et_pb_column_1_4,.et_pb_row_1-4_1-4_1-2>.et_pb_column.et_pb_column_1_4,.et_pb_row_4col>.et_pb_column.et_pb_column_1_4{width:47.25%;margin-right:5.5%}.et_pb_row_1-4_1-4>.et_pb_column.et_pb_column_1_4:nth-child(2n),.et_pb_row_1-4_1-4_1-2>.et_pb_column.et_pb_column_1_4:nth-child(2n),.et_pb_row_4col>.et_pb_column.et_pb_column_1_4:nth-child(2n){margin-right:0}.et_pb_row_1-2_1-4_1-4>.et_pb_column.et_pb_column_1_4{width:47.25%;margin-right:5.5%}.et_pb_row_1-2_1-4_1-4>.et_pb_column.et_pb_column_1_2,.et_pb_row_1-2_1-4_1-4>.et_pb_column.et_pb_column_1_4:nth-child(odd){margin-right:0}.et_pb_row_1-2_1-4_1-4 .et_pb_column:nth-last-child(-n+2),.et_pb_row_1-4_1-4 .et_pb_column:nth-last-child(-n+2),.et_pb_row_4col .et_pb_column:nth-last-child(-n+2){margin-bottom:0}.et_pb_row_1-5_1-5_3-5>.et_pb_column.et_pb_column_1_5,.et_pb_row_5col>.et_pb_column.et_pb_column_1_5{width:47.25%;margin-right:5.5%}.et_pb_row_1-5_1-5_3-5>.et_pb_column.et_pb_column_1_5:nth-child(2n),.et_pb_row_5col>.et_pb_column.et_pb_column_1_5:nth-child(2n){margin-right:0}.et_pb_row_3-5_1-5_1-5>.et_pb_column.et_pb_column_1_5{width:47.25%;margin-right:5.5%}.et_pb_row_3-5_1-5_1-5>.et_pb_column.et_pb_column_1_5:nth-child(odd),.et_pb_row_3-5_1-5_1-5>.et_pb_column.et_pb_column_3_5{margin-right:0}.et_pb_row_3-5_1-5_1-5 .et_pb_column:nth-last-child(-n+2),.et_pb_row_5col .et_pb_column:last-child{margin-bottom:0}.et_pb_row_1-6_1-6_1-6_1-2>.et_pb_column.et_pb_column_1_6,.et_pb_row_6col>.et_pb_column.et_pb_column_1_6{width:29.666%;margin-right:5.5%}.et_pb_row_1-6_1-6_1-6_1-2>.et_pb_column.et_pb_column_1_6:nth-child(3n),.et_pb_row_6col>.et_pb_column.et_pb_column_1_6:nth-child(3n){margin-right:0}.et_pb_row_1-2_1-6_1-6_1-6>.et_pb_column.et_pb_column_1_6{width:29.666%;margin-right:5.5%}.et_pb_row_1-2_1-6_1-6_1-6>.et_pb_column.et_pb_column_1_2,.et_pb_row_1-2_1-6_1-6_1-6>.et_pb_column.et_pb_column_1_6:last-child{margin-right:0}.et_pb_row_1-2_1-2 .et_pb_column.et_pb_column_1_2,.et_pb_row_1-2_1-6_1-6_1-6 .et_pb_column:nth-last-child(-n+3),.et_pb_row_6col .et_pb_column:nth-last-child(-n+3){margin-bottom:0}.et_pb_row_1-2_1-2 .et_pb_column.et_pb_column_1_2 .et_pb_column.et_pb_column_1_6{width:29.666%;margin-right:5.5%;margin-bottom:0}.et_pb_row_1-2_1-2 .et_pb_column.et_pb_column_1_2 .et_pb_column.et_pb_column_1_6:last-child{margin-right:0}.et_pb_row_1-6_1-6_1-6_1-6>.et_pb_column.et_pb_column_1_6{width:47.25%;margin-right:5.5%}.et_pb_row_1-6_1-6_1-6_1-6>.et_pb_column.et_pb_column_1_6:nth-child(2n){margin-right:0}.et_pb_row_1-6_1-6_1-6_1-6:nth-last-child(-n+3){margin-bottom:0}}@media (max-width:479px){.et_pb_row .et_pb_column.et_pb_column_1_4,.et_pb_row .et_pb_column.et_pb_column_1_5,.et_pb_row .et_pb_column.et_pb_column_1_6{width:100%;margin:0 0 30px}.et_pb_row .et_pb_column.et_pb_column_1_4.et-last-child,.et_pb_row .et_pb_column.et_pb_column_1_4:last-child,.et_pb_row .et_pb_column.et_pb_column_1_5.et-last-child,.et_pb_row .et_pb_column.et_pb_column_1_5:last-child,.et_pb_row .et_pb_column.et_pb_column_1_6.et-last-child,.et_pb_row .et_pb_column.et_pb_column_1_6:last-child{margin-bottom:0}.et_pb_row_1-2_1-2 .et_pb_column.et_pb_column_1_2 .et_pb_column.et_pb_column_1_6{width:100%;margin:0 0 30px}.et_pb_row_1-2_1-2 .et_pb_column.et_pb_column_1_2 .et_pb_column.et_pb_column_1_6.et-last-child,.et_pb_row_1-2_1-2 .et_pb_column.et_pb_column_1_2 .et_pb_column.et_pb_column_1_6:last-child{margin-bottom:0}.et_pb_column{width:100%!important}}
99 +.et_pb_text{word-wrap:break-word}.et_pb_text ol,.et_pb_text ul{padding-bottom:1em}.et_pb_text>:last-child{padding-bottom:0}.et_pb_text_inner{position:relative}
100 +.et_pb_space{-webkit-box-sizing:content-box;box-sizing:content-box;height:23px}.et_pb_divider_hidden{margin-bottom:0!important}.et_pb_divider_internal{display:inline-block;width:100%}.et_pb_divider{margin:0 0 30px;position:relative}.et_pb_divider:before{content:"";width:100%;height:1px;border-top:1px solid rgba(0,0,0,.1);position:absolute;left:0;top:0;z-index:10}.et_pb_divider:after,.et_pb_space:after{content:"";display:table}.et_pb_divider_position_bottom:before{top:auto!important;bottom:0!important}.et_pb_divider_position_center:before{top:50%!important}@media (max-width:980px){.et_pb_divider_position_top_tablet:before{top:0!important;bottom:auto!important}.et_pb_divider_position_bottom_tablet:before{top:auto!important;bottom:0!important}.et_pb_divider_position_center_tablet:before{top:50%!important}.et_pb_space.et-hide-mobile{display:none}}@media (max-width:767px){.et_pb_divider_position_top_phone:before{top:0!important;bottom:auto!important}.et_pb_divider_position_bottom_phone:before{top:auto!important;bottom:0!important}.et_pb_divider_position_center_phone:before{top:50%!important}}.ie .et_pb_divider{overflow:visible}
101 +.et_pb_with_border .et_pb_image_wrap{border:0 solid #333}.et_pb_image{margin-left:auto;margin-right:auto;line-height:0}.et_pb_image.aligncenter{text-align:center}.et_pb_image.et_pb_has_overlay a.et_pb_lightbox_image{display:block;position:relative}.et_pb_image{display:block}.et_pb_image .et_pb_image_wrap{display:inline-block;position:relative;max-width:100%}.et_pb_image .et_pb_image_wrap img[src*=".svg"]{width:auto}.et_pb_image img{position:relative}.et_pb_image_sticky{margin-bottom:0!important;display:inherit}.et_pb_image.et_pb_has_overlay .et_pb_image_wrap:hover .et_overlay{z-index:3;opacity:1}@media (min-width:981px){.et_pb_section_sticky,.et_pb_section_sticky.et_pb_bottom_divider .et_pb_row:nth-last-child(2),.et_pb_section_sticky .et_pb_column_single,.et_pb_section_sticky .et_pb_row.et-last-child,.et_pb_section_sticky .et_pb_row:last-child,.et_pb_section_sticky .et_pb_specialty_column .et_pb_row_inner.et-last-child,.et_pb_section_sticky .et_pb_specialty_column .et_pb_row_inner:last-child{padding-bottom:0!important}}@media (max-width:980px){.et_pb_image_sticky_tablet{margin-bottom:0!important;display:inherit}.et_pb_section_sticky_mobile,.et_pb_section_sticky_mobile.et_pb_bottom_divider .et_pb_row:nth-last-child(2),.et_pb_section_sticky_mobile .et_pb_column_single,.et_pb_section_sticky_mobile .et_pb_row.et-last-child,.et_pb_section_sticky_mobile .et_pb_row:last-child,.et_pb_section_sticky_mobile .et_pb_specialty_column .et_pb_row_inner.et-last-child,.et_pb_section_sticky_mobile .et_pb_specialty_column .et_pb_row_inner:last-child{padding-bottom:0!important}.et_pb_section_sticky .et_pb_row.et-last-child .et_pb_column.et_pb_row_sticky.et-last-child,.et_pb_section_sticky .et_pb_row:last-child .et_pb_column.et_pb_row_sticky:last-child{margin-bottom:0}.et_pb_image_bottom_space_tablet{margin-bottom:30px!important;display:block}.et_always_center_on_mobile{text-align:center!important;margin-left:auto!important;margin-right:auto!important}}@media (max-width:767px){.et_pb_image_sticky_phone{margin-bottom:0!important;display:inherit}.et_pb_image_bottom_space_phone{margin-bottom:30px!important;display:block}}
102 +.et_overlay{z-index:-1;position:absolute;top:0;left:0;display:block;width:100%;height:100%;background:hsla(0,0%,100%,.9);opacity:0;pointer-events:none;-webkit-transition:all .3s;transition:all .3s;border:1px solid #e5e5e5;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-font-smoothing:antialiased}.et_overlay:before{color:#2ea3f2;content:"\E050";position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);font-size:32px;-webkit-transition:all .4s;transition:all .4s}.et_portfolio_image,.et_shop_image{position:relative;display:block}.et_pb_has_overlay:not(.et_pb_image):hover .et_overlay,.et_portfolio_image:hover .et_overlay,.et_shop_image:hover .et_overlay{z-index:3;opacity:1}#ie7 .et_overlay,#ie8 .et_overlay{display:none}.et_pb_module.et_pb_has_overlay{position:relative}.et_pb_module.et_pb_has_overlay .et_overlay,article.et_pb_has_overlay{border:none}
103 +.et_pb_gallery_item{word-wrap:break-word}.et_pb_gallery .et_pb_gallery_pagination ul li a.active{color:#2ea3f2}p.et_pb_gallery_caption{line-height:1.7}.et_pb_with_border .et_pb_gallery_image,.et_pb_with_border .et_pb_gallery_item{border:0 solid #333}.et_pb_gallery_grid .et_pb_gallery_item .et_pb_gallery_title,.et_pb_gallery_grid .et_pb_gallery_item h3{margin-top:10px}.et_pb_gallery_image:hover .et_overlay:before{top:50%}.et_pb_gallery_image:hover .et_overlay{z-index:3;opacity:1}.et_pb_slider.et_pb_gallery_fullwidth span.et_overlay{display:none}.et_pb_gallery_fullwidth .et_pb_gallery_item{display:none;float:left;margin-right:-100%;position:relative}.et_pb_gallery_fullwidth .et_pb_gallery_image img,.et_pb_gallery_fullwidth .et_pb_gallery_item{width:100%}.et_pb_gallery_fullwidth .et_pb_gallery_item:first-child{display:block}.et_pb_gallery .et_pb_gallery_items,.et_pb_gallery.et_pb_section_parallax{width:100%}.et_pb_gallery.et_pb_section_parallax:hover{overflow:hidden}.et_pb_gallery_grid .et_pb_gallery_items{-webkit-transition:height .2s ease-in-out;transition:height .2s ease-in-out}.et_pb_gallery_grid .et_pb_gallery_image{position:relative}.et_pb_gallery_image{line-height:0}.et_pb_gallery_grid .et_pb_gallery_item{display:none}.et_pb_text_align_left.et_pb_gallery .et_pb_gallery_pagination ul{text-align:left}.et_pb_text_align_center.et_pb_gallery .et_pb_gallery_pagination ul{text-align:center}.et_pb_text_align_right.et_pb_gallery .et_pb_gallery_pagination ul{text-align:right}.et_pb_text_align_justified.et_pb_gallery .et_pb_gallery_pagination ul{text-align:justify}.et_pb_gallery_grid .et_pb_gallery_item{opacity:1;-webkit-animation:fadeLeft 1s cubic-bezier(.77,0,.175,1) 1;animation:fadeLeft 1s cubic-bezier(.77,0,.175,1) 1}.et_pb_gallery .et_pb_gallery_pagination{width:100%;border-top:1px solid #e2e2e2;position:relative}.et_pb_gallery .et_pb_gallery_pagination ul{list-style-type:none!important;text-align:right;margin:0;padding:0}.et_pb_gallery .et_pb_gallery_pagination ul li{display:inline-block;padding:10px}.et_pb_gallery .et_pb_gallery_pagination ul li a{font-size:16px;line-height:16px;color:#999}.et_pb_gallery .et_pb_gallery_pagination ul li a.active{color:#82c0c7}.et_pb_gallery_pagination ul:after{content:"";width:100%;height:0;display:inline-block}.et_pb_gallery.et_pb_bg_layout_dark .et_pb_gallery_pagination ul li a{color:#fff}.et_pb_gallery .et_pb_bg_layout_light .et-pb-arrow-next,.et_pb_gallery .et_pb_bg_layout_light .et-pb-arrow-prev{color:inherit}.et_pb_slider.gallery-not-found .et_pb_slide,.et_pb_slider.gallery-not-found .et_pb_slide .et_pb_container{min-height:0!important}@media (min-width:981px){.et_pb_gallery_grid .et_pb_gallery_item img{width:100%}.et_pb_gallery_grid .et_pb_gallery_item .et_pb_gallery_title,.et_pb_gallery_grid .et_pb_gallery_item h3{word-wrap:break-word;margin:10px 0 0;padding-bottom:0}.et_pb_gallery_grid .et_pb_gallery_item h3{font-size:18px}.et_pb_gallery_item .et_pb_gallery_caption{font-size:14px;margin:.4em 0 0}.et_pb_row [class*=et_pb_gutters] .et_pb_gallery .et_pb_gallery_items .et_pb_gallery_item.et_pb_grid_item.last_in_row{margin-right:0}}@media (max-width:980px){.et_pb_bg_layout_light_tablet.et_pb_gallery .et_pb_gallery_pagination ul li a{color:#999}.et_pb_bg_layout_light_tablet.et_pb_gallery .et_pb_gallery_pagination ul li a.active{color:#82c0c7}.et_pb_bg_layout_dark_tablet.et_pb_gallery .et_pb_gallery_pagination ul li a{color:#fff}.et_pb_text_align_left-tablet.et_pb_gallery .et_pb_gallery_pagination ul{text-align:left}.et_pb_text_align_center-tablet.et_pb_gallery .et_pb_gallery_pagination ul{text-align:center}.et_pb_text_align_right-tablet.et_pb_gallery .et_pb_gallery_pagination ul{text-align:right}.et_pb_text_align_justified-tablet.et_pb_gallery .et_pb_gallery_pagination ul{text-align:justify}}@media (max-width:767px){.et_pb_bg_layout_light_phone.et_pb_gallery .et_pb_gallery_pagination ul li a{color:#999}.et_pb_bg_layout_light_phone.et_pb_gallery .et_pb_gallery_pagination ul li a.active{color:#82c0c7}.et_pb_bg_layout_dark_phone.et_pb_gallery .et_pb_gallery_pagination ul li a{color:#fff}.et_pb_text_align_left-phone.et_pb_gallery .et_pb_gallery_pagination ul{text-align:left}.et_pb_text_align_center-phone.et_pb_gallery .et_pb_gallery_pagination ul{text-align:center}.et_pb_text_align_right-phone.et_pb_gallery .et_pb_gallery_pagination ul{text-align:right}.et_pb_text_align_justified-phone.et_pb_gallery .et_pb_gallery_pagination ul{text-align:justify}}.safari .et_pb_gallery_grid .et_pb_gallery_image{overflow:visible}
104 +.et_pb_grid_item.first_in_row{clear:both}.et_pb_grid_item:not(.first_in_row){clear:none}.et_pb_grid_item.et_pb_gallery_item.first_in_row{clear:both}@media (min-width:981px){.et_pb_grid_item{float:left;position:relative}}@media (max-width:980px){.et_pb_column .et_pb_grid_item{margin:0 5.5% 7.5% 0;width:29.666%;clear:none;float:left}.et_pb_column .et_pb_grid_item.last_in_row{margin-right:0}.et_pb_row_1-2_1-4_1-4>.et_pb_column.et_pb_column_1_4 .et_pb_grid_item,.et_pb_row_1-2_1-6_1-6_1-6>.et_pb_column.et_pb_column_1_6 .et_pb_grid_item,.et_pb_row_1-4_1-4>.et_pb_column.et_pb_column_1_4 .et_pb_grid_item,.et_pb_row_1-4_1-4_1-2>.et_pb_column.et_pb_column_1_4 .et_pb_grid_item,.et_pb_row_1-5_1-5_3-5>.et_pb_column.et_pb_column_1_5 .et_pb_grid_item,.et_pb_row_1-6_1-6_1-6>.et_pb_column.et_pb_column_1_6 .et_pb_grid_item,.et_pb_row_1-6_1-6_1-6_1-2>.et_pb_column.et_pb_column_1_6 .et_pb_grid_item,.et_pb_row_1-6_1-6_1-6_1-6>.et_pb_column.et_pb_column_1_6 .et_pb_grid_item,.et_pb_row_3-5_1-5_1-5>.et_pb_column.et_pb_column_1_5 .et_pb_grid_item,.et_pb_row_4col>.et_pb_column.et_pb_column_1_4 .et_pb_grid_item,.et_pb_row_5col>.et_pb_column.et_pb_column_1_5 .et_pb_grid_item,.et_pb_row_6col>.et_pb_column.et_pb_column_1_6 .et_pb_grid_item{margin:0 0 11.5%;width:100%}}@media (max-width:767px){.et_pb_column .et_pb_grid_item{margin:0 5.5% 9.5% 0;width:47.25%;clear:none;float:left}.et_pb_column .et_pb_grid_item:nth-child(3n){margin-right:5.5%}.et_pb_column .et_pb_grid_item:nth-child(3n+1){clear:none}.et_pb_column .et_pb_grid_item .last_in_row,.et_pb_column .et_pb_grid_item:nth-child(2n){margin-right:0}.et_pb_column .et_pb_grid_item .first_in_row,.et_pb_column .et_pb_grid_item:nth-child(odd){clear:both}}@media (max-width:479px){.et_pb_column .et_pb_grid_item{margin:0 0 11.5%;width:100%}.et_pb_column .et_pb_grid_item .on_last_row{margin-bottom:0}.et_pb_row_1-2_1-4_1-4>.et_pb_column.et_pb_column_1_4 .et_pb_grid_item,.et_pb_row_1-2_1-6_1-6_1-6>.et_pb_column.et_pb_column_1_6 .et_pb_grid_item,.et_pb_row_1-4_1-4>.et_pb_column.et_pb_column_1_4 .et_pb_grid_item,.et_pb_row_1-4_1-4_1-2>.et_pb_column.et_pb_column_1_4 .et_pb_grid_item,.et_pb_row_1-5_1-5_3-5>.et_pb_column.et_pb_column_1_5 .et_pb_grid_item,.et_pb_row_1-6_1-6_1-6>.et_pb_column.et_pb_column_1_6 .et_pb_grid_item,.et_pb_row_1-6_1-6_1-6_1-2>.et_pb_column.et_pb_column_1_6 .et_pb_grid_item,.et_pb_row_1-6_1-6_1-6_1-6>.et_pb_column.et_pb_column_1_6 .et_pb_grid_item,.et_pb_row_3-5_1-5_1-5>.et_pb_column.et_pb_column_1_5 .et_pb_grid_item,.et_pb_row_4col>.et_pb_column.et_pb_column_1_4 .et_pb_grid_item,.et_pb_row_5col>.et_pb_column.et_pb_column_1_5 .et_pb_grid_item,.et_pb_row_6col>.et_pb_column.et_pb_column_1_6 .et_pb_grid_item{margin:0 0 11.5%;width:100%}}
105 +.et_pb_slider{position:relative;overflow:hidden}.et_pb_slide{padding:0 6%;background-size:cover;background-position:50%;background-repeat:no-repeat}.et_pb_slider .et_pb_slide{display:none;float:left;margin-right:-100%;position:relative;width:100%;text-align:center;list-style:none!important;background-position:50%;background-size:100%;background-size:cover}.et_pb_slider .et_pb_slide:first-child{display:list-item}.et-pb-controllers{position:absolute;bottom:20px;left:0;width:100%;text-align:center;z-index:10}.et-pb-controllers a{display:inline-block;background-color:hsla(0,0%,100%,.5);text-indent:-9999px;border-radius:7px;width:7px;height:7px;margin-right:10px;padding:0;opacity:.5}.et-pb-controllers .et-pb-active-control{opacity:1}.et-pb-controllers a:last-child{margin-right:0}.et-pb-controllers .et-pb-active-control{background-color:#fff}.et_pb_slides .et_pb_temp_slide{display:block}.et_pb_slides:after{content:"";display:block;clear:both;visibility:hidden;line-height:0;height:0;width:0}@media (max-width:980px){.et_pb_bg_layout_light_tablet .et-pb-controllers .et-pb-active-control{background-color:#333}.et_pb_bg_layout_light_tablet .et-pb-controllers a{background-color:rgba(0,0,0,.3)}.et_pb_bg_layout_light_tablet .et_pb_slide_content{color:#333}.et_pb_bg_layout_dark_tablet .et_pb_slide_description{text-shadow:0 1px 3px rgba(0,0,0,.3)}.et_pb_bg_layout_dark_tablet .et_pb_slide_content{color:#fff}.et_pb_bg_layout_dark_tablet .et-pb-controllers .et-pb-active-control{background-color:#fff}.et_pb_bg_layout_dark_tablet .et-pb-controllers a{background-color:hsla(0,0%,100%,.5)}}@media (max-width:767px){.et-pb-controllers{position:absolute;bottom:5%;left:0;width:100%;text-align:center;z-index:10;height:14px}.et_transparent_nav .et_pb_section:first-child .et-pb-controllers{bottom:18px}.et_pb_bg_layout_light_phone.et_pb_slider_with_overlay .et_pb_slide_overlay_container,.et_pb_bg_layout_light_phone.et_pb_slider_with_text_overlay .et_pb_text_overlay_wrapper{background-color:hsla(0,0%,100%,.9)}.et_pb_bg_layout_light_phone .et-pb-controllers .et-pb-active-control{background-color:#333}.et_pb_bg_layout_dark_phone.et_pb_slider_with_overlay .et_pb_slide_overlay_container,.et_pb_bg_layout_dark_phone.et_pb_slider_with_text_overlay .et_pb_text_overlay_wrapper,.et_pb_bg_layout_light_phone .et-pb-controllers a{background-color:rgba(0,0,0,.3)}.et_pb_bg_layout_dark_phone .et-pb-controllers .et-pb-active-control{background-color:#fff}.et_pb_bg_layout_dark_phone .et-pb-controllers a{background-color:hsla(0,0%,100%,.5)}}.et_mobile_device .et_pb_slider_parallax .et_pb_slide,.et_mobile_device .et_pb_slides .et_parallax_bg.et_pb_parallax_css{background-attachment:scroll}
106 +.et-pb-arrow-next,.et-pb-arrow-prev{position:absolute;top:50%;z-index:100;font-size:48px;color:#fff;margin-top:-24px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;opacity:0}.et_pb_bg_layout_light .et-pb-arrow-next,.et_pb_bg_layout_light .et-pb-arrow-prev{color:#333}.et_pb_slider:hover .et-pb-arrow-prev{left:22px;opacity:1}.et_pb_slider:hover .et-pb-arrow-next{right:22px;opacity:1}.et_pb_bg_layout_light .et-pb-controllers .et-pb-active-control{background-color:#333}.et_pb_bg_layout_light .et-pb-controllers a{background-color:rgba(0,0,0,.3)}.et-pb-arrow-next:hover,.et-pb-arrow-prev:hover{text-decoration:none}.et-pb-arrow-next span,.et-pb-arrow-prev span{display:none}.et-pb-arrow-prev{left:-22px}.et-pb-arrow-next{right:-22px}.et-pb-arrow-prev:before{content:"4"}.et-pb-arrow-next:before{content:"5"}.format-gallery .et-pb-arrow-next,.format-gallery .et-pb-arrow-prev{color:#fff}.et_pb_column_1_3 .et_pb_slider:hover .et-pb-arrow-prev,.et_pb_column_1_4 .et_pb_slider:hover .et-pb-arrow-prev,.et_pb_column_1_5 .et_pb_slider:hover .et-pb-arrow-prev,.et_pb_column_1_6 .et_pb_slider:hover .et-pb-arrow-prev,.et_pb_column_2_5 .et_pb_slider:hover .et-pb-arrow-prev{left:0}.et_pb_column_1_3 .et_pb_slider:hover .et-pb-arrow-next,.et_pb_column_1_4 .et_pb_slider:hover .et-pb-arrow-prev,.et_pb_column_1_5 .et_pb_slider:hover .et-pb-arrow-prev,.et_pb_column_1_6 .et_pb_slider:hover .et-pb-arrow-prev,.et_pb_column_2_5 .et_pb_slider:hover .et-pb-arrow-next{right:0}.et_pb_column_1_4 .et_pb_slider .et_pb_slide,.et_pb_column_1_5 .et_pb_slider .et_pb_slide,.et_pb_column_1_6 .et_pb_slider .et_pb_slide{min-height:170px}.et_pb_column_1_4 .et_pb_slider:hover .et-pb-arrow-next,.et_pb_column_1_5 .et_pb_slider:hover .et-pb-arrow-next,.et_pb_column_1_6 .et_pb_slider:hover .et-pb-arrow-next{right:0}@media (max-width:980px){.et_pb_bg_layout_light_tablet .et-pb-arrow-next,.et_pb_bg_layout_light_tablet .et-pb-arrow-prev{color:#333}.et_pb_bg_layout_dark_tablet .et-pb-arrow-next,.et_pb_bg_layout_dark_tablet .et-pb-arrow-prev{color:#fff}}@media (max-width:767px){.et_pb_slider:hover .et-pb-arrow-prev{left:0;opacity:1}.et_pb_slider:hover .et-pb-arrow-next{right:0;opacity:1}.et_pb_bg_layout_light_phone .et-pb-arrow-next,.et_pb_bg_layout_light_phone .et-pb-arrow-prev{color:#333}.et_pb_bg_layout_dark_phone .et-pb-arrow-next,.et_pb_bg_layout_dark_phone .et-pb-arrow-prev{color:#fff}}.et_mobile_device .et-pb-arrow-prev{left:22px;opacity:1}.et_mobile_device .et-pb-arrow-next{right:22px;opacity:1}@media (max-width:767px){.et_mobile_device .et-pb-arrow-prev{left:0;opacity:1}.et_mobile_device .et-pb-arrow-next{right:0;opacity:1}}
107 +.mfp-wrap .mfp-container button:hover{background:transparent!important}.mfp-wrap .mfp-arrow:active{position:absolute;top:50%}.mfp-wrap .mfp-close:active{position:absolute;top:-10px}.mfp-arrow-left .mfp-a,.mfp-arrow-left:after,.mfp-arrow-right .mfp-a,.mfp-arrow-right:after{font-family:ETmodules;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mfp-fade.mfp-bg{opacity:.001;-webkit-transition:all .5s ease-out;transition:all .5s ease-out}.mfp-fade.mfp-bg.mfp-ready{opacity:.8}.mfp-fade.mfp-bg.mfp-removing{opacity:0}.mfp-fade .mfp-wrap.mfp-wrap.mfp-ready .mfp-content{opacity:1}.mfp-fade .mfp-wrap.mfp-wrap.mfp-removing .mfp-content{opacity:0}.mfp-fade .mfp-wrap .mfp-content{opacity:.001;-webkit-transition:all .5s ease-out;transition:all .5s ease-out}.mfp-bg{z-index:1000000;overflow:hidden;background:#0b0b0b;opacity:.8;filter:alpha(opacity=80)}.mfp-bg,.mfp-wrap{top:0;left:0;width:100%;height:100%;position:fixed}.mfp-wrap{z-index:1000001;outline:none!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;-webkit-box-sizing:border-box;box-sizing:border-box}.mfp-container:before{content:"";display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:zoom-in}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1046;-webkit-box-shadow:none;box-shadow:none}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;filter:alpha(opacity=65);padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1;filter:alpha(opacity=100)}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px}.mfp-arrow{position:absolute;opacity:.55;filter:alpha(opacity=55);top:50%;margin:-32px 0 0;padding:0;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mfp-arrow:hover{opacity:1;filter:alpha(opacity=100)}.mfp-arrow-left{left:10px}.mfp-arrow-right{right:10px}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;-webkit-box-shadow:0 0 8px rgba(0,0,0,.6);box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}.mfp-arrow{background:none!important;margin-top:-32px!important;line-height:1em!important}.mfp-arrow,.mfp-arrow:after{width:48px!important;height:48px!important}.mfp-arrow:after{margin:0!important;top:0!important;border:none!important}.mfp-arrow-left{left:0!important}.mfp-arrow-left .mfp-a,.mfp-arrow-left:after,.mfp-arrow-right .mfp-a,.mfp-arrow-right:after{border:none;font-size:64px;color:#fff}.mfp-arrow-left:before,.mfp-arrow-right:before{display:none}.mfp-arrow-left .mfp-a,.mfp-arrow-left:after{content:"4"}.mfp-arrow-right .mfp-a,.mfp-arrow-right:after{content:"5"}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{font-size:64px;font-family:Open Sans,Arial,sans-serif;font-weight:200;top:-10px;opacity:.2}.mfp-iframe-holder .mfp-close:hover,.mfp-image-holder .mfp-close:hover{opacity:1}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;-webkit-box-sizing:border-box;box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure,img.mfp-img{line-height:0}.mfp-figure:after{content:"";position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;-webkit-box-shadow:0 0 8px rgba(0,0,0,.6);box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-height:300px),screen and (max-width:800px) and (orientation:landscape){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;-webkit-box-sizing:border-box;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}
108 +.et_pb_tab,.et_pb_tabs_controls{word-wrap:break-word}.et_pb_tabs{border:1px solid #d9d9d9}ul.et_pb_tabs_controls{background-color:#f4f4f4}ul.et_pb_tabs_controls:after{border-top:1px solid #d9d9d9;content:"";display:block;visibility:visible;position:relative;top:-1px;z-index:9}.et_pb_tabs_controls li{float:left;border-right:1px solid #d9d9d9;font-weight:600;position:relative;cursor:pointer;max-width:100%;display:table;z-index:11;line-height:1.7em}.et_pb_tabs_controls li:not(.et_pb_tab_active):last-child{border-right:none}.et_pb_tabs_controls li a{text-decoration:none;color:#666;padding:4px 30px;vertical-align:middle;display:table-cell;line-height:inherit}.et_pb_tabs_controls li.et_pb_tab_active{background-color:#fff}.et_pb_tab_active a{color:#333!important}.et_pb_tab p:last-of-type{padding-bottom:0}.et_pb_all_tabs{background-color:#fff}.et_pb_all_tabs>div{display:none}.et_pb_all_tabs .et_pb_active_content{display:block}.et_pb_tab{padding:24px 30px}.et_pb_tab_content{position:relative}.et_pb_column_1_3 .et_pb_tabs_controls,.et_pb_column_1_4 .et_pb_tabs_controls,.et_pb_column_1_5 .et_pb_tabs_controls,.et_pb_column_1_6 .et_pb_tabs_controls,.et_pb_column_2_5 .et_pb_tabs_controls,.et_pb_column_3_8 .et_pb_tabs_controls{border-bottom:none}.et_pb_column_1_3 .et_pb_tabs_controls li,.et_pb_column_1_4 .et_pb_tabs_controls li,.et_pb_column_1_5 .et_pb_tabs_controls li,.et_pb_column_1_6 .et_pb_tabs_controls li,.et_pb_column_2_5 .et_pb_tabs_controls li,.et_pb_column_3_8 .et_pb_tabs_controls li{float:none;border-right:none;border-bottom:1px solid #d9d9d9}.et_pb_column_1_3 .et_pb_tabs_vertically_stacked .et_pb_tabs_controls li,.et_pb_column_1_4 .et_pb_tabs_vertically_stacked .et_pb_tabs_controls li,.et_pb_column_1_5 .et_pb_tabs_vertically_stacked .et_pb_tabs_controls li,.et_pb_column_1_6 .et_pb_tabs_vertically_stacked .et_pb_tabs_controls li,.et_pb_column_2_5 .et_pb_tabs_vertically_stacked .et_pb_tabs_controls li,.et_pb_column_3_8 .et_pb_tabs_vertically_stacked .et_pb_tabs_controls li{width:100%}.et_pb_tabs_controls{list-style:none!important;padding:0!important;line-height:inherit!important}@media (max-width:767px){.et_pb_tabs_controls{border-bottom:none;height:auto!important}.et_pb_tabs_controls li{float:none;border-right:none;border-bottom:1px solid #d9d9d9;display:block}}@media (max-width:479px){.et_pb_tabs_controls{border-bottom:none}.et_pb_tabs_controls li{float:none;border-right:none;border-bottom:1px solid #d9d9d9}}
109 +/*# sourceURL=divi-dynamic-critical-inline-css */
110 +</style>
111 +<link rel='preload' id='divi-dynamic-css' href='https://immeublesbrio.com/wp-content/et-cache/586/et-divi-dynamic-586.css?ver=1775412893' as='style' media='all' onload="this.onload=null;this.rel='stylesheet'" />
112 +<link rel="https://api.w.org/" href="https://immeublesbrio.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://immeublesbrio.com/wp-json/wp/v2/pages/586" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://immeublesbrio.com/xmlrpc.php?rsd" />
113 +<meta name="generator" content="WordPress 7.0.3" />
114 +<link rel='shortlink' href='https://immeublesbrio.com/?p=586' />
115 +<!-- Facebook Pixel Code -->
116 +<script>
117 + !function(f,b,e,v,n,t,s)
118 + {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
119 + n.callMethod.apply(n,arguments):n.queue.push(arguments)};
120 + if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
121 + n.queue=[];t=b.createElement(e);t.async=!0;
122 + t.src=v;s=b.getElementsByTagName(e)[0];
123 + s.parentNode.insertBefore(t,s)}(window, document,'script',
124 + 'https://connect.facebook.net/en_US/fbevents.js');
125 + fbq('init', '612632342630894');
126 + fbq('track', 'PageView');
127 +</script>
128 +<noscript><img height="1" width="1" style="display:none"
129 + src="https://www.facebook.com/tr?id=612632342630894&ev=PageView&noscript=1"
130 +/></noscript>
131 +<!-- End Facebook Pixel Code --> <script>
132 + document.documentElement.className = document.documentElement.className.replace('no-js', 'js');
133 + </script>
134 + <style>
135 + .no-js img.lazyload {
136 + display: none;
137 + }
138 +
139 + figure.wp-block-image img.lazyloading {
140 + min-width: 150px;
141 + }
142 +
143 + .lazyload,
144 + .lazyloading {
145 + --smush-placeholder-width: 100px;
146 + --smush-placeholder-aspect-ratio: 1/1;
147 + width: var(--smush-image-width, var(--smush-placeholder-width)) !important;
148 + aspect-ratio: var(--smush-image-aspect-ratio, var(--smush-placeholder-aspect-ratio)) !important;
149 + }
150 +
151 + .lazyload, .lazyloading {
152 + opacity: 0;
153 + }
154 +
155 + .lazyloaded {
156 + opacity: 1;
157 + transition: opacity 400ms;
158 + transition-delay: 0ms;
159 + }
160 +
161 + </style>
162 + <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" /><link rel="icon" href="https://immeublesbrio.com/wp-content/uploads/2019/10/cropped-b-512-32x32.png" sizes="32x32" />
163 +<link rel="icon" href="https://immeublesbrio.com/wp-content/uploads/2019/10/cropped-b-512-192x192.png" sizes="192x192" />
164 +<link rel="apple-touch-icon" href="https://immeublesbrio.com/wp-content/uploads/2019/10/cropped-b-512-180x180.png" />
165 +<meta name="msapplication-TileImage" content="https://immeublesbrio.com/wp-content/uploads/2019/10/cropped-b-512-270x270.png" />
166 +<style id="wp-site-designer-contrast-fallback"> .wp-block-group:not([data-dsgo-inline-bg]),.wp-block-column:not([data-dsgo-inline-bg]),.wp-block-columns:not([data-dsgo-inline-bg]){--dsgo-text-color:initial;} :is(.wp-block-designsetgo-section,.wp-block-group,.wp-block-column).has-background:not([class*="-background-color"]):not(.has-text-color):not(.is-style-footer-section):not(.is-style-header-section),.wp-block-cover:not(.has-text-color){color:var(--wp--preset--color--contrast-3) !important;--dsgo-text-color:var(--wp--preset--color--contrast-3);} body .wp-site-blocks :is(:is(.wp-block-designsetgo-section,.wp-block-group,.wp-block-column).has-background:not([class*="-background-color"]):not(.has-text-color):not(.is-style-footer-section):not(.is-style-header-section),.wp-block-cover) h1:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(:is(.wp-block-designsetgo-section,.wp-block-group,.wp-block-column).has-background:not([class*="-background-color"]):not(.has-text-color):not(.is-style-footer-section):not(.is-style-header-section),.wp-block-cover) h2:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(:is(.wp-block-designsetgo-section,.wp-block-group,.wp-block-column).has-background:not([class*="-background-color"]):not(.has-text-color):not(.is-style-footer-section):not(.is-style-header-section),.wp-block-cover) h3:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(:is(.wp-block-designsetgo-section,.wp-block-group,.wp-block-column).has-background:not([class*="-background-color"]):not(.has-text-color):not(.is-style-footer-section):not(.is-style-header-section),.wp-block-cover) h4:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(:is(.wp-block-designsetgo-section,.wp-block-group,.wp-block-column).has-background:not([class*="-background-color"]):not(.has-text-color):not(.is-style-footer-section):not(.is-style-header-section),.wp-block-cover) h5:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(:is(.wp-block-designsetgo-section,.wp-block-group,.wp-block-column).has-background:not([class*="-background-color"]):not(.has-text-color):not(.is-style-footer-section):not(.is-style-header-section),.wp-block-cover) h6:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(:is(.wp-block-designsetgo-section,.wp-block-group,.wp-block-column).has-background:not([class*="-background-color"]):not(.has-text-color):not(.is-style-footer-section):not(.is-style-header-section),.wp-block-cover) p:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(:is(.wp-block-designsetgo-section,.wp-block-group,.wp-block-column).has-background:not([class*="-background-color"]):not(.has-text-color):not(.is-style-footer-section):not(.is-style-header-section),.wp-block-cover) a:where(:not(.wp-element-button):not(.wp-block-social-link-anchor)):not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(:is(.wp-block-designsetgo-section,.wp-block-group,.wp-block-column).has-background:not([class*="-background-color"]):not(.has-text-color):not(.is-style-footer-section):not(.is-style-header-section),.wp-block-cover) .wp-element-caption:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)){color:var(--dsgo-text-color,inherit) !important;} body .wp-site-blocks :is(.wp-block-designsetgo-section,.wp-block-group,.wp-block-column)[data-dsgo-inline-bg] .wp-block-button:is([class*="is-style-outline"],[class*="is-style-secondary"]) .wp-element-button{color:var(--dsgo-text-color,inherit) !important;border-color:currentColor !important;}body .wp-site-blocks :is(.wp-block-designsetgo-section,.wp-block-group,.wp-block-column)[data-dsgo-inline-bg] .wp-block-button:is([class*="is-style-outline"],[class*="is-style-secondary"]) .wp-element-button:hover{opacity:0.75;} body .wp-site-blocks [data-dsgo-inline-bg] h1:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks [data-dsgo-inline-bg] h2:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks [data-dsgo-inline-bg] h3:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks [data-dsgo-inline-bg] h4:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks [data-dsgo-inline-bg] h5:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks [data-dsgo-inline-bg] h6:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks [data-dsgo-inline-bg] p:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks [data-dsgo-inline-bg] a:where(:not(.wp-element-button):not(.wp-block-social-link-anchor)):not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks [data-dsgo-inline-bg] .wp-element-caption:not(.has-text-color):where(:not(.elementor *):not([data-elementor-type] *)){color:var(--dsgo-text-color,inherit) !important;} .wp-block-designsetgo-section.has-background:not([data-dsgo-inline-bg]):not(.has-text-color){color:var(--wp--preset--color--contrast);--dsgo-text-color:var(--wp--preset--color--contrast);} :is(.wp-block-group,.wp-block-column).is-style-section-1:not(:is(.has-white-background-color,.has-black-background-color)),.has-background:is(.wp-block-group,.wp-block-column).is-style-section-1:not(:is(.has-white-background-color,.has-black-background-color)),.has-text-color:is(.wp-block-group,.wp-block-column).is-style-section-1:not(:is(.has-white-background-color,.has-black-background-color)){background-color:var(--wp--preset--color--accent-5);color:var(--wp--preset--color--contrast);} body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-1:not(:is(.has-white-background-color,.has-black-background-color)) h1:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-1:not(:is(.has-white-background-color,.has-black-background-color)) h2:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-1:not(:is(.has-white-background-color,.has-black-background-color)) h3:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-1:not(:is(.has-white-background-color,.has-black-background-color)) h4:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-1:not(:is(.has-white-background-color,.has-black-background-color)) h5:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-1:not(:is(.has-white-background-color,.has-black-background-color)) h6:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-1:not(:is(.has-white-background-color,.has-black-background-color)) p:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-1:not(:is(.has-white-background-color,.has-black-background-color)) a:where(:not(.wp-element-button):not(.wp-block-social-link-anchor)):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-1:not(:is(.has-white-background-color,.has-black-background-color)) .wp-element-caption:where(:not(.elementor *):not([data-elementor-type] *)){color:var(--wp--preset--color--contrast);} :is(.wp-block-group,.wp-block-column).is-style-section-2:not(:is(.has-white-background-color,.has-black-background-color)),.has-background:is(.wp-block-group,.wp-block-column).is-style-section-2:not(:is(.has-white-background-color,.has-black-background-color)),.has-text-color:is(.wp-block-group,.wp-block-column).is-style-section-2:not(:is(.has-white-background-color,.has-black-background-color)){background-color:var(--wp--preset--color--accent-2);color:var(--wp--preset--color--contrast);} body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-2:not(:is(.has-white-background-color,.has-black-background-color)) h1:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-2:not(:is(.has-white-background-color,.has-black-background-color)) h2:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-2:not(:is(.has-white-background-color,.has-black-background-color)) h3:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-2:not(:is(.has-white-background-color,.has-black-background-color)) h4:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-2:not(:is(.has-white-background-color,.has-black-background-color)) h5:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-2:not(:is(.has-white-background-color,.has-black-background-color)) h6:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-2:not(:is(.has-white-background-color,.has-black-background-color)) p:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-2:not(:is(.has-white-background-color,.has-black-background-color)) a:where(:not(.wp-element-button):not(.wp-block-social-link-anchor)):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-2:not(:is(.has-white-background-color,.has-black-background-color)) .wp-element-caption:where(:not(.elementor *):not([data-elementor-type] *)){color:var(--wp--preset--color--contrast);} :is(.wp-block-group,.wp-block-column).is-style-section-3:not(:is(.has-white-background-color,.has-black-background-color)),.has-background:is(.wp-block-group,.wp-block-column).is-style-section-3:not(:is(.has-white-background-color,.has-black-background-color)),.has-text-color:is(.wp-block-group,.wp-block-column).is-style-section-3:not(:is(.has-white-background-color,.has-black-background-color)){background-color:var(--wp--preset--color--accent-1);color:var(--wp--preset--color--contrast);} body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-3:not(:is(.has-white-background-color,.has-black-background-color)) h1:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-3:not(:is(.has-white-background-color,.has-black-background-color)) h2:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-3:not(:is(.has-white-background-color,.has-black-background-color)) h3:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-3:not(:is(.has-white-background-color,.has-black-background-color)) h4:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-3:not(:is(.has-white-background-color,.has-black-background-color)) h5:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-3:not(:is(.has-white-background-color,.has-black-background-color)) h6:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-3:not(:is(.has-white-background-color,.has-black-background-color)) p:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-3:not(:is(.has-white-background-color,.has-black-background-color)) a:where(:not(.wp-element-button):not(.wp-block-social-link-anchor)):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-3:not(:is(.has-white-background-color,.has-black-background-color)) .wp-element-caption:where(:not(.elementor *):not([data-elementor-type] *)){color:var(--wp--preset--color--contrast);} :is(.wp-block-group,.wp-block-column).is-style-section-4:not(:is(.has-white-background-color,.has-black-background-color)),.has-background:is(.wp-block-group,.wp-block-column).is-style-section-4:not(:is(.has-white-background-color,.has-black-background-color)),.has-text-color:is(.wp-block-group,.wp-block-column).is-style-section-4:not(:is(.has-white-background-color,.has-black-background-color)){background-color:var(--wp--preset--color--accent-3);color:var(--wp--preset--color--accent-2);} body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-4:not(:is(.has-white-background-color,.has-black-background-color)) h1:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-4:not(:is(.has-white-background-color,.has-black-background-color)) h2:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-4:not(:is(.has-white-background-color,.has-black-background-color)) h3:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-4:not(:is(.has-white-background-color,.has-black-background-color)) h4:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-4:not(:is(.has-white-background-color,.has-black-background-color)) h5:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-4:not(:is(.has-white-background-color,.has-black-background-color)) h6:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-4:not(:is(.has-white-background-color,.has-black-background-color)) p:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-4:not(:is(.has-white-background-color,.has-black-background-color)) a:where(:not(.wp-element-button):not(.wp-block-social-link-anchor)):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-4:not(:is(.has-white-background-color,.has-black-background-color)) .wp-element-caption:where(:not(.elementor *):not([data-elementor-type] *)){color:var(--wp--preset--color--accent-2);} :is(.wp-block-group,.wp-block-column).is-style-section-5:not(:is(.has-white-background-color,.has-black-background-color)),.has-background:is(.wp-block-group,.wp-block-column).is-style-section-5:not(:is(.has-white-background-color,.has-black-background-color)),.has-text-color:is(.wp-block-group,.wp-block-column).is-style-section-5:not(:is(.has-white-background-color,.has-black-background-color)){background-color:var(--wp--preset--color--contrast);color:var(--wp--preset--color--base);} body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-5:not(:is(.has-white-background-color,.has-black-background-color)) h1:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-5:not(:is(.has-white-background-color,.has-black-background-color)) h2:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-5:not(:is(.has-white-background-color,.has-black-background-color)) h3:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-5:not(:is(.has-white-background-color,.has-black-background-color)) h4:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-5:not(:is(.has-white-background-color,.has-black-background-color)) h5:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-5:not(:is(.has-white-background-color,.has-black-background-color)) h6:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-5:not(:is(.has-white-background-color,.has-black-background-color)) p:where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-5:not(:is(.has-white-background-color,.has-black-background-color)) a:where(:not(.wp-element-button):not(.wp-block-social-link-anchor)):where(:not(.elementor *):not([data-elementor-type] *)),body .wp-site-blocks :is(.wp-block-group,.wp-block-column).is-style-section-5:not(:is(.has-white-background-color,.has-black-background-color)) .wp-element-caption:where(:not(.elementor *):not([data-elementor-type] *)){color:var(--wp--preset--color--base);} body .wp-site-blocks input:not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="image"]):not([type="hidden"]),body .wp-site-blocks textarea,body .wp-site-blocks select{background-color:var(--wp--preset--color--base);color:var(--wp--preset--color--contrast);border:1px solid color-mix(in srgb, var(--wp--preset--color--contrast) 30%, transparent);} .wp-site-blocks input[type="submit"]:not(.wp-element-button),.wp-site-blocks button[type="submit"]:not(.wp-element-button){background-color:var(--wp--preset--color--accent-2);color:var(--wp--preset--color--base);border-width:0;padding:12px 30px;font-family:inherit;font-size:var(--wp--preset--font-size--medium, 1rem);line-height:inherit;cursor:pointer;}</style>
167 +<style id="et-critical-inline-css">body,.et_pb_column_1_2 .et_quote_content blockquote cite,.et_pb_column_1_2 .et_link_content a.et_link_main_url,.et_pb_column_1_3 .et_quote_content blockquote cite,.et_pb_column_3_8 .et_quote_content blockquote cite,.et_pb_column_1_4 .et_quote_content blockquote cite,.et_pb_blog_grid .et_quote_content blockquote cite,.et_pb_column_1_3 .et_link_content a.et_link_main_url,.et_pb_column_3_8 .et_link_content a.et_link_main_url,.et_pb_column_1_4 .et_link_content a.et_link_main_url,.et_pb_blog_grid .et_link_content a.et_link_main_url,body .et_pb_bg_layout_light .et_pb_post p,body .et_pb_bg_layout_dark .et_pb_post p{font-size:14px}.et_pb_slide_content,.et_pb_best_value{font-size:15px}#et_search_icon:hover,.mobile_menu_bar:before,.mobile_menu_bar:after,.et_toggle_slide_menu:after,.et-social-icon a:hover,.et_pb_sum,.et_pb_pricing li a,.et_pb_pricing_table_button,.et_overlay:before,.entry-summary p.price ins,.et_pb_member_social_links a:hover,.et_pb_widget li a:hover,.et_pb_filterable_portfolio .et_pb_portfolio_filters li a.active,.et_pb_filterable_portfolio .et_pb_portofolio_pagination ul li a.active,.et_pb_gallery .et_pb_gallery_pagination ul li a.active,.wp-pagenavi span.current,.wp-pagenavi a:hover,.nav-single a,.tagged_as a,.posted_in a{color:#eb6209}.et_pb_contact_submit,.et_password_protected_form .et_submit_button,.et_pb_bg_layout_light .et_pb_newsletter_button,.comment-reply-link,.form-submit .et_pb_button,.et_pb_bg_layout_light .et_pb_promo_button,.et_pb_bg_layout_light .et_pb_more_button,.et_pb_contact p input[type="checkbox"]:checked+label i:before,.et_pb_bg_layout_light.et_pb_module.et_pb_button{color:#eb6209}.footer-widget h4{color:#eb6209}.et-search-form,.nav li ul,.et_mobile_menu,.footer-widget li:before,.et_pb_pricing li:before,blockquote{border-color:#eb6209}.et_pb_counter_amount,.et_pb_featured_table .et_pb_pricing_heading,.et_quote_content,.et_link_content,.et_audio_content,.et_pb_post_slider.et_pb_bg_layout_dark,.et_slide_in_menu_container,.et_pb_contact p input[type="radio"]:checked+label i:before{background-color:#eb6209}a{color:#eb6209}.et_secondary_nav_enabled #page-container #top-header{background-color:#eb6209!important}#et-secondary-nav li ul{background-color:#eb6209}#main-footer .footer-widget h4,#main-footer .widget_block h1,#main-footer .widget_block h2,#main-footer .widget_block h3,#main-footer .widget_block h4,#main-footer .widget_block h5,#main-footer .widget_block h6{color:#eb6209}.footer-widget li:before{border-color:#eb6209}@media only screen and (min-width:981px){.et_fixed_nav #page-container .et-fixed-header#top-header{background-color:#eb6209!important}.et_fixed_nav #page-container .et-fixed-header#top-header #et-secondary-nav li ul{background-color:#eb6209}}@media only screen and (min-width:1350px){.et_pb_row{padding:27px 0}.et_pb_section{padding:54px 0}.single.et_pb_pagebuilder_layout.et_full_width_page .et_post_meta_wrapper{padding-top:81px}.et_pb_fullwidth_section{padding:0}}.et_pb_fullwidth_header_0.et_pb_fullwidth_header .header-content h1,.et_pb_fullwidth_header_0.et_pb_fullwidth_header .header-content h2.et_pb_module_header,.et_pb_fullwidth_header_0.et_pb_fullwidth_header .header-content h3.et_pb_module_header,.et_pb_fullwidth_header_0.et_pb_fullwidth_header .header-content h4.et_pb_module_header,.et_pb_fullwidth_header_0.et_pb_fullwidth_header .header-content h5.et_pb_module_header,.et_pb_fullwidth_header_0.et_pb_fullwidth_header .header-content h6.et_pb_module_header{font-family:'Oswald',Helvetica,Arial,Lucida,sans-serif;font-weight:700;text-transform:uppercase;font-size:80px;line-height:1.3em}.et_pb_fullwidth_header_0.et_pb_fullwidth_header .et_pb_header_content_wrapper{font-family:'Roboto',Helvetica,Arial,Lucida,sans-serif;font-size:26px;line-height:1.8em}.et_pb_section_0.et_pb_section{padding-top:29px;padding-bottom:70px}.et_pb_row_0.et_pb_row{padding-top:30px!important;padding-right:0px!important;padding-bottom:0px!important;padding-left:0px!important;padding-top:30px;padding-right:0px;padding-bottom:0px;padding-left:0px}.et_pb_text_0.et_pb_text{color:#1a1a1a!important}.et_pb_text_0 h1{font-family:'Oswald',Helvetica,Arial,Lucida,sans-serif;font-weight:700;text-transform:uppercase;font-size:40px;line-height:1.3em;text-align:center}.et_pb_text_0{max-width:450px}.et_pb_divider_0,.et_pb_divider_1{height:false;margin-top:30px!important;max-width:150px}.et_pb_divider_0:before,.et_pb_divider_1:before{border-top-color:#eb6209;border-top-width:3px}.et_pb_text_1{font-size:20px}.et_pb_image_0{background-color:#0c71c3;text-align:left;margin-left:0}.et_pb_image_0 .et_pb_image_wrap,.et_pb_gallery_0.et_pb_gallery .et_pb_gallery_item{border-color:#0c71c3}.et_pb_gallery_0.et_pb_gallery{background-color:rgba(0,0,0,0)}.et_pb_text_2,.et_pb_text_3{line-height:1em;font-size:20px;line-height:1em}.et_pb_text_4,.et_pb_text_4 h2,.et_pb_text_4 h3{font-size:25px}.et_pb_text_5{line-height:1.4em;line-height:1.4em}.et_pb_text_0.et_pb_module,.et_pb_divider_0.et_pb_module,.et_pb_divider_1.et_pb_module{margin-left:auto!important;margin-right:auto!important}@media only screen and (max-width:980px){.et_pb_section_0.et_pb_section{padding-top:60px;padding-bottom:0px}.et_pb_row_0.et_pb_row{padding-top:0px!important;padding-bottom:0px!important;padding-top:0px!important;padding-bottom:0px!important}.et_pb_image_0 .et_pb_image_wrap img{width:auto}}@media only screen and (max-width:767px){.et_pb_image_0 .et_pb_image_wrap img{width:auto}}</style>
168 +<link rel="preload" as="style" id="et-core-unified-deferred-586-cached-inline-styles" href="https://immeublesbrio.com/wp-content/et-cache/586/et-core-unified-deferred-586.min.css?ver=1775412894" onload="this.onload=null;this.rel='stylesheet';" /> <style id="site-designer-logo-constraints">
169 + .wp-block-site-logo.is-default-size img {
170 + width: auto;
171 + height: auto;
172 + max-width: 180px;
173 + max-height: 80px;
174 + }
175 + .wp-block-site-logo img {
176 + height: auto;
177 + }
178 + </style>
179 + <link rel='stylesheet' id='drawattention-plugin-styles-css' href='https://immeublesbrio.com/wp-content/plugins/draw-attention-pro/public/assets/css/public.css?ver=1.13.7' media='all' />
180 +<style id="wp-block-library-inline-css">
181 +:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
182 +/*wp_block_styles_on_demand_placeholder:6a75ecb73b664*/
183 +/*# sourceURL=wp-block-library-inline-css */
184 +</style>
185 +
186 +</head>
187 +<body class="wp-singular page-template-default page page-id-586 wp-theme-Divi et_pb_button_helper_class et_fixed_nav et_show_nav et_secondary_nav_enabled et_secondary_nav_two_panels et_primary_nav_dropdown_animation_fade et_secondary_nav_dropdown_animation_fade et_header_style_left et_pb_footer_columns4 et_cover_background et_pb_gutter osx et_pb_gutters3 et_pb_pagebuilder_layout et_no_sidebar et_divi_theme et-db">
188 + <div id="page-container">
189 +
190 + <div id="top-header">
191 + <div class="container clearfix">
192 +
193 +
194 + <div id="et-info">
195 + <span id="et-info-phone">418-928-7688</span>
196 +
197 + <a href="mailto:jerome.bern@hotmail.com"><span id="et-info-email">jerome.bern@hotmail.com</span></a>
198 +
199 + <ul class="et-social-icons">
200 +
201 + <li class="et-social-icon et-social-facebook">
202 + <a href="https://www.facebook.com/ImmeublesBrio/" class="icon">
203 + <span>Facebook</span>
204 + </a>
205 + </li>
206 +
207 +</ul> </div>
208 +
209 +
210 + <div id="et-secondary-menu">
211 + <div class="et_duplicate_social_icons">
212 + <ul class="et-social-icons">
213 +
214 + <li class="et-social-icon et-social-facebook">
215 + <a href="https://www.facebook.com/ImmeublesBrio/" class="icon">
216 + <span>Facebook</span>
217 + </a>
218 + </li>
219 +
220 +</ul>
221 + </div> </div>
222 +
223 + </div>
224 + </div>
225 +
226 +
227 + <header id="main-header" data-height-onload="66">
228 + <div class="container clearfix et_menu_container">
229 + <div class="logo_container">
230 + <span class="logo_helper"></span>
231 + <a href="https://immeublesbrio.com/">
232 + <img src="https://immeublesbrio.com/wp-content/uploads/2023/10/brio-84x39-1.png" width="84" height="39" alt="Immeubles Brio" id="logo" data-height-percentage="54" />
233 + </a>
234 + </div>
235 + <div id="et-top-navigation" data-height="66" data-fixed-height="40">
236 + <nav id="top-menu-nav">
237 + <ul id="top-menu" class="nav"><li id="menu-item-170" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-170"><a href="https://immeublesbrio.com/">Accueil</a></li>
238 +<li id="menu-item-660" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-586 current_page_item menu-item-660"><a href="https://immeublesbrio.com/appartements-a-louer-val-belair/" aria-current="page">Appartements</a></li>
239 +<li id="menu-item-740" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-740"><a href="https://immeublesbrio.com/secteur-val-belair/">Secteur</a></li>
240 +<li id="menu-item-171" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-171"><a href="https://immeublesbrio.com/contactez-nous/">Contactez-nous</a></li>
241 +</ul> </nav>
242 +
243 +
244 +
245 +
246 + <div id="et_mobile_nav_menu">
247 + <div class="mobile_nav closed">
248 + <span class="select_page">Sélectionner une page</span>
249 + <span class="mobile_menu_bar mobile_menu_bar_toggle"></span>
250 + </div>
251 + </div> </div> <!-- #et-top-navigation -->
252 + </div> <!-- .container -->
253 + </header> <!-- #main-header -->
254 + <div id="et-main-area">
255 +
256 +<div id="main-content">
257 +
258 +
259 +
260 + <article id="post-586" class="post-586 page type-page status-publish has-post-thumbnail hentry">
261 +
262 +
263 + <div class="entry-content">
264 + <div class="et-l et-l--post">
265 + <div class="et_builder_inner_content et_pb_gutters3">
266 + <div class="et_pb_section et_pb_section_0 et_section_regular" >
267 +
268 +
269 +
270 +
271 +
272 +
273 + <div class="et_pb_row et_pb_row_0">
274 + <div class="et_pb_column et_pb_column_4_4 et_pb_column_0 et_pb_css_mix_blend_mode_passthrough et-last-child">
275 +
276 +
277 +
278 +
279 + <div class="et_pb_module et_pb_text et_pb_text_0 et_pb_text_align_left et_pb_bg_layout_light">
280 +
281 +
282 +
283 +
284 + <div class="et_pb_text_inner"><h1>Nos appartements</h1></div>
285 + </div><div class="et_pb_module et_pb_divider et_pb_divider_0 et_pb_divider_position_center et_pb_space"><div class="et_pb_divider_internal"></div></div><div class="et_pb_module et_pb_text et_pb_text_1 et_pb_text_align_left et_pb_bg_layout_light">
286 +
287 +
288 +
289 +
290 + <div class="et_pb_text_inner"><h2 style="text-align: center;">Nos grands condos locatifs de style contemporain n&rsquo;attendent que vous!</h2>
291 +<p style="text-align: center;">Vous ne pourrez résister à ces appartements qui vous offrent de nombreuses commodités.</p>
292 +<p style="text-align: center;"></div>
293 + </div>
294 + </div>
295 +
296 +
297 +
298 +
299 + </div><div class="et_pb_row et_pb_row_1">
300 + <div class="et_pb_column et_pb_column_4_4 et_pb_column_1 et_pb_css_mix_blend_mode_passthrough et-last-child">
301 +
302 +
303 +
304 +
305 + <div class="et_pb_with_border et_pb_module et_pb_image et_pb_image_0">
306 +
307 +
308 +
309 +
310 + <span class="et_pb_image_wrap "><img fetchpriority="high" decoding="async" width="1080" height="581" src="https://immeublesbrio.com/wp-content/uploads/2023/10/Cuisine-brio.jpg" alt="Cuisine immeubles brio" title="Cuisine-brio" srcset="https://immeublesbrio.com/wp-content/uploads/2023/10/Cuisine-brio.jpg 1080w, https://immeublesbrio.com/wp-content/uploads/2023/10/Cuisine-brio-980x527.jpg 980w, https://immeublesbrio.com/wp-content/uploads/2023/10/Cuisine-brio-480x258.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1080px, 100vw" class="wp-image-994" /></span>
311 + </div><div class="et_pb_with_border et_pb_module et_pb_gallery et_pb_gallery_0 et_pb_bg_layout_light et_pb_gallery_grid">
312 + <div class="et_pb_gallery_items et_post_gallery clearfix" data-per_page="4"><div class="et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_0_0"><div class="et_pb_gallery_image landscape">
313 + <a href="https://immeublesbrio.com/wp-content/uploads/2023/10/salle-de-bain-immeubles-brio-1.jpg" title="Salle de bain">
314 + <img decoding="async" width="400" height="284" data-src="https://immeublesbrio.com/wp-content/uploads/2023/10/salle-de-bain-immeubles-brio-1-400x284.jpg" alt="Salle de bain immeubles brio" data-srcset="https://immeublesbrio.com/wp-content/uploads/2023/10/salle-de-bain-immeubles-brio-1.jpg 479w, https://immeublesbrio.com/wp-content/uploads/2023/10/salle-de-bain-immeubles-brio-1-400x284.jpg 480w" data-sizes="(max-width:479px) 479px, 100vw" class="wp-image-997 lazyload" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 400px; --smush-placeholder-aspect-ratio: 400/284;" />
315 + <span class="et_overlay"></span>
316 + </a>
317 + </div></div><div class="et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_0_1"><div class="et_pb_gallery_image landscape">
318 + <a href="https://immeublesbrio.com/wp-content/uploads/2023/10/salon-immeubles-brio.jpg" title="Salon">
319 + <img decoding="async" width="400" height="284" data-src="https://immeublesbrio.com/wp-content/uploads/2023/10/salon-immeubles-brio-400x284.jpg" alt="Salon immeubles brio" data-srcset="https://immeublesbrio.com/wp-content/uploads/2023/10/salon-immeubles-brio.jpg 479w, https://immeublesbrio.com/wp-content/uploads/2023/10/salon-immeubles-brio-400x284.jpg 480w" data-sizes="(max-width:479px) 479px, 100vw" class="wp-image-998 lazyload" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 400px; --smush-placeholder-aspect-ratio: 400/284;" />
320 + <span class="et_overlay"></span>
321 + </a>
322 + </div></div><div class="et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_0_2"><div class="et_pb_gallery_image landscape">
323 + <a href="https://immeublesbrio.com/wp-content/uploads/2023/10/salle-a-manger-cuisine2-immeubles-brio.jpg" title="Salle à manger et cuisine">
324 + <img decoding="async" width="400" height="284" data-src="https://immeublesbrio.com/wp-content/uploads/2023/10/salle-a-manger-cuisine2-immeubles-brio-400x284.jpg" alt="Salle à manger et cuisine immeubles brio" data-srcset="https://immeublesbrio.com/wp-content/uploads/2023/10/salle-a-manger-cuisine2-immeubles-brio.jpg 479w, https://immeublesbrio.com/wp-content/uploads/2023/10/salle-a-manger-cuisine2-immeubles-brio-400x284.jpg 480w" data-sizes="(max-width:479px) 479px, 100vw" class="wp-image-999 lazyload" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 400px; --smush-placeholder-aspect-ratio: 400/284;" />
325 + <span class="et_overlay"></span>
326 + </a>
327 + </div></div><div class="et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_0_3"><div class="et_pb_gallery_image landscape">
328 + <a href="https://immeublesbrio.com/wp-content/uploads/2023/10/chambre-2-immeubles-brio.jpg" title="Chambre des maîtres">
329 + <img decoding="async" width="400" height="284" data-src="https://immeublesbrio.com/wp-content/uploads/2023/10/chambre-2-immeubles-brio-400x284.jpg" alt="Chambre des maîtres immeubles brio" data-srcset="https://immeublesbrio.com/wp-content/uploads/2023/10/chambre-2-immeubles-brio.jpg 479w, https://immeublesbrio.com/wp-content/uploads/2023/10/chambre-2-immeubles-brio-400x284.jpg 480w" data-sizes="(max-width:479px) 479px, 100vw" class="wp-image-1000 lazyload" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 400px; --smush-placeholder-aspect-ratio: 400/284;" />
330 + <span class="et_overlay"></span>
331 + </a>
332 + </div></div><div class="et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_0_4"><div class="et_pb_gallery_image landscape">
333 + <a href="https://immeublesbrio.com/wp-content/uploads/2023/10/chambre-immeubles-brio.jpg" title="chambre">
334 + <img decoding="async" width="400" height="284" data-src="https://immeublesbrio.com/wp-content/uploads/2023/10/chambre-immeubles-brio-400x284.jpg" alt="chambre immeubles brio" data-srcset="https://immeublesbrio.com/wp-content/uploads/2023/10/chambre-immeubles-brio.jpg 479w, https://immeublesbrio.com/wp-content/uploads/2023/10/chambre-immeubles-brio-400x284.jpg 480w" data-sizes="(max-width:479px) 479px, 100vw" class="wp-image-1003 lazyload" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 400px; --smush-placeholder-aspect-ratio: 400/284;" />
335 + <span class="et_overlay"></span>
336 + </a>
337 + </div></div><div class="et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_0_5"><div class="et_pb_gallery_image landscape">
338 + <a href="https://immeublesbrio.com/wp-content/uploads/2023/10/chambre-enfant-immeubles-brio.jpg" title="chambre enfant">
339 + <img decoding="async" width="400" height="284" data-src="https://immeublesbrio.com/wp-content/uploads/2023/10/chambre-enfant-immeubles-brio-400x284.jpg" alt="chambre enfant immeubles brio" data-srcset="https://immeublesbrio.com/wp-content/uploads/2023/10/chambre-enfant-immeubles-brio.jpg 479w, https://immeublesbrio.com/wp-content/uploads/2023/10/chambre-enfant-immeubles-brio-400x284.jpg 480w" data-sizes="(max-width:479px) 479px, 100vw" class="wp-image-1004 lazyload" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 400px; --smush-placeholder-aspect-ratio: 400/284;" />
340 + <span class="et_overlay"></span>
341 + </a>
342 + </div></div><div class="et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_0_6"><div class="et_pb_gallery_image landscape">
343 + <a href="https://immeublesbrio.com/wp-content/uploads/2023/10/salle-a-manger-cuisine-immeubles-brio.jpg" title="salle à manger et cuisine">
344 + <img decoding="async" width="400" height="284" data-src="https://immeublesbrio.com/wp-content/uploads/2023/10/salle-a-manger-cuisine-immeubles-brio-400x284.jpg" alt="salle à manger et cuisine immeubles brio" data-srcset="https://immeublesbrio.com/wp-content/uploads/2023/10/salle-a-manger-cuisine-immeubles-brio.jpg 479w, https://immeublesbrio.com/wp-content/uploads/2023/10/salle-a-manger-cuisine-immeubles-brio-400x284.jpg 480w" data-sizes="(max-width:479px) 479px, 100vw" class="wp-image-1005 lazyload" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 400px; --smush-placeholder-aspect-ratio: 400/284;" />
345 + <span class="et_overlay"></span>
346 + </a>
347 + </div></div></div></div>
348 + </div>
349 +
350 +
351 +
352 +
353 + </div><div class="et_pb_row et_pb_row_2">
354 + <div class="et_pb_column et_pb_column_1_2 et_pb_column_2 et_pb_css_mix_blend_mode_passthrough">
355 +
356 +
357 +
358 +
359 + <div class="et_pb_module et_pb_text et_pb_text_2 et_pb_text_align_left et_pb_bg_layout_light">
360 +
361 +
362 +
363 +
364 + <div class="et_pb_text_inner"><p style="text-align: center;">Douche en verre et céramique</p>
365 +<p style="text-align: center;">Bain autoportant</p>
366 +<p style="text-align: center;">Espace de rangement supplémentaire</p>
367 +<p style="text-align: center;">Air climatisé</p>
368 +<p style="text-align: center;">Garde-manger walk-in</p></div>
369 + </div>
370 + </div><div class="et_pb_column et_pb_column_1_2 et_pb_column_3 et_pb_css_mix_blend_mode_passthrough et-last-child">
371 +
372 +
373 +
374 +
375 + <div class="et_pb_module et_pb_text et_pb_text_3 et_pb_text_align_left et_pb_bg_layout_light">
376 +
377 +
378 +
379 +
380 + <div class="et_pb_text_inner"><p style="text-align: center;">Chambre principale avec walk-in</p>
381 +<p style="text-align: center;">Salle d&rsquo;eau</p>
382 +<p style="text-align: center;">Finition de qualité supérieure</p>
383 +<p style="text-align: center;">Plafond 8.6 pieds</p>
384 +<p style="text-align: center;">Wifi (optionnel)</p></div>
385 + </div>
386 + </div>
387 +
388 +
389 +
390 +
391 + </div><div class="et_pb_row et_pb_row_3">
392 + <div class="et_pb_column et_pb_column_4_4 et_pb_column_4 et_pb_css_mix_blend_mode_passthrough et-last-child">
393 +
394 +
395 +
396 +
397 + <div class="et_pb_module et_pb_divider et_pb_divider_1 et_pb_divider_position_center et_pb_space"><div class="et_pb_divider_internal"></div></div><div class="et_pb_module et_pb_text et_pb_text_4 et_pb_text_align_left et_pb_bg_layout_light">
398 +
399 +
400 +
401 +
402 + <div class="et_pb_text_inner"><h3 style="text-align: center;"><strong>Plusieurs modèles d&rsquo;appartement font du Brio, un projet unique.</strong></h3>
403 +<p>&nbsp;</p></div>
404 + </div><div class="et_pb_module et_pb_tabs et_pb_tabs_0 " >
405 +
406 +
407 +
408 +
409 + <ul class="et_pb_tabs_controls clearfix">
410 + <li class="et_pb_tab_0 et_pb_tab_active"><a href="#">Rez-de-chaussée</a></li><li class="et_pb_tab_1"><a href="#">2e étage</a></li><li class="et_pb_tab_2"><a href="#">3e étage</a></li><li class="et_pb_tab_3"><a href="#">4e étage</a></li><li class="et_pb_tab_4"><a href="#">5e étage</a></li>
411 + </ul>
412 + <div class="et_pb_all_tabs">
413 + <div class="et_pb_tab et_pb_tab_0 clearfix et_pb_active_content">
414 +
415 +
416 +
417 +
418 + <div class="et_pb_tab_content">
419 +<style>
420 + #hotspot-700 .hotspots-image-container,
421 + #hotspot-700 .leaflet-container {
422 + background: #ffffff }
423 +
424 + #hotspot-700 .hotspots-placeholder,
425 + .featherlight .featherlight-content.lightbox-700 {
426 + background: #686868;
427 + border: 0 #686868 solid;
428 + color: #ededed;
429 + }
430 +
431 + #hotspot-700 .hotspot-title,
432 + #hotspot-700 .bc-product__title a,
433 + .featherlight .featherlight-content.lightbox-700 .hotspot-title,
434 + .featherlight .featherlight-content.lightbox-700 .bc-product__title a {
435 + color: #ffffff;
436 + }
437 +
438 + #hotspot-700 .hotspot-libre {
439 + stroke-width: -1;
440 + fill: #0c71c3;
441 + fill-opacity: 0.31;
442 + stroke: #0c71c3;
443 + stroke-opacity: 0.31;
444 + }
445 + #hotspot-700 .hotspot-libre:hover,
446 + #hotspot-700 .hotspot-libre:focus,
447 + #hotspot-700 .hotspot-libre.hotspot-active {
448 + fill: #0c71c3;
449 + fill-opacity: 0.81;
450 + outline: none;
451 + stroke: #0c71c3;
452 + stroke-opacity: 0.31;
453 + }
454 + #hotspot-700 .hotspot-louer {
455 + stroke-width: -1;
456 + fill: #ffffff;
457 + fill-opacity: 0.51;
458 + stroke: #ffffff;
459 + stroke-opacity: 0.31;
460 + }
461 + #hotspot-700 .hotspot-louer:hover,
462 + #hotspot-700 .hotspot-louer:focus,
463 + #hotspot-700 .hotspot-louer.hotspot-active {
464 + fill: #eb6209;
465 + fill-opacity: 0.51;
466 + outline: none;
467 + stroke: #ffffff;
468 + stroke-opacity: 0.31;
469 + }
470 + #hotspot-700 .hotspot-reserver {
471 + stroke-width: -1;
472 + fill: #eb6209;
473 + fill-opacity: 0.31;
474 + stroke: #ffffff;
475 + stroke-opacity: 0.31;
476 + }
477 + #hotspot-700 .hotspot-reserver:hover,
478 + #hotspot-700 .hotspot-reserver:focus,
479 + #hotspot-700 .hotspot-reserver.hotspot-active {
480 + fill: #eb6209;
481 + fill-opacity: 0.51;
482 + outline: none;
483 + stroke: #ffffff;
484 + stroke-opacity: 0.31;
485 + }
486 + #hotspot-700 .hotspot-default {
487 + stroke-width: -1;
488 + fill: #ffffff;
489 + fill-opacity: 0.31;
490 + stroke: #ffffff;
491 + stroke-opacity: 0.31;
492 + }
493 + #hotspot-700 .hotspot-default:hover,
494 + #hotspot-700 .hotspot-default:focus,
495 + #hotspot-700 .hotspot-default.hotspot-active {
496 + fill: #ffffff;
497 + fill-opacity: 0.91;
498 + outline: none;
499 + stroke: #ffffff;
500 + stroke-opacity: 0.31;
501 + }
502 + #hotspot-700 .leaflet-tooltip,
503 + #hotspot-700 .leaflet-rrose-content-wrapper {
504 + background: #686868;
505 + border-color: #686868;
506 + color: #ededed;
507 + }
508 +
509 + #hotspot-700 a.leaflet-rrose-close-button {
510 + color: #ffffff;
511 + }
512 +
513 + #hotspot-700 .leaflet-rrose-tip {
514 + background: #686868;
515 + }
516 +
517 + #hotspot-700 .leaflet-popup-scrolled {
518 + border-bottom-color: #ededed;
519 + border-top-color: #ededed;
520 + }
521 +
522 + #hotspot-700 .leaflet-tooltip-top:before {
523 + border-top-color: #686868;
524 + }
525 +
526 + #hotspot-700 .leaflet-tooltip-bottom:before {
527 + border-bottom-color: #686868;
528 + }
529 + #hotspot-700 .leaflet-tooltip-left:before {
530 + border-left-color: #686868;
531 + }
532 + #hotspot-700 .leaflet-tooltip-right:before {
533 + border-right-color: #686868;
534 + }
535 +</style>
536 +
537 +
538 + <div class="hotspots-container layout-left event-click" id="hotspot-700" data-layout="left" data-trigger="click">
539 + <div class="hotspots-interaction">
540 + <div class="hotspots-placeholder" id="content-hotspot-700">
541 + <div class="hotspot-initial">
542 + <h2 class="hotspot-title">
543 + Le Brio: plan du rez-de-chaussée </h2>
544 + <div class="hotspot-content">
545 + <p>Cliquez sur le numéro d'appartement pour obtenir plus d'information sur celui-ci.</p>
546 + </div>
547 + </div>
548 + </div>
549 +<div class="hotspots-image-container">
550 + <img
551 + width="1080"
552 + height="828"
553 + src="https://immeublesbrio.com/wp-content/uploads/2020/01/rez-de-chaussee-2020.jpg"
554 + alt="Le Brio: plan du rez-de-chaussée"
555 + class="hotspots-image skip-lazy"
556 + usemap="#hotspots-image-700"
557 + data-image-title="Le Brio: plan du rez-de-chaussée"
558 + data-image-description="Cliquez sur le numéro d'appartement pour obtenir plus d'information sur celui-ci."
559 + data-event-trigger="click"
560 + data-always-visible="on"
561 + data-id="700"
562 + data-no-lazy="1"
563 + data-lazy-src=""
564 + data-lazy="false"
565 + loading="eager"
566 + data-skip-lazy="1"
567 + >
568 +</div> </div>
569 + <map name="hotspots-image-700" class="hotspots-map">
570 + <area
571 + shape="poly"
572 + coords="772,746,1011,747,1012,565,857,565,857,594,773,594,772,593,773,670"
573 + href="#hotspot-hotspot-700-0"
574 + rel=""
575 + title="Loué - Appartement 101: 5 ½"
576 + alt="Loué - Appartement 101: 5 ½"
577 + data-action=""
578 + data-color-scheme="louer"
579 + data-id="area-hotspot-700-0"
580 + target=""
581 + class="more-info-area"
582 + >
583 + <area
584 + shape="poly"
585 + coords="750,379,1013,378,1014,560,816,561,816,513,751,514"
586 + href="#hotspot-hotspot-700-1"
587 + rel=""
588 + title="Loué - Appartement 102: 5 ½"
589 + alt="Loué - Appartement 102: 5 ½"
590 + data-action=""
591 + data-color-scheme="louer"
592 + data-id="area-hotspot-700-1"
593 + target=""
594 + class="more-info-area"
595 + >
596 + <area
597 + shape="poly"
598 + coords="767,598,768,745,557,746,556,581,617,581,619,588,656,586,656,580,677,581,677,600"
599 + href="#hotspot-hotspot-700-2"
600 + rel=""
601 + title="Loué- Appartement 103: 4 ½"
602 + alt="Loué- Appartement 103: 4 ½"
603 + data-action=""
604 + data-color-scheme="louer"
605 + data-id="area-hotspot-700-2"
606 + target=""
607 + class="more-info-area"
608 + >
609 + <area
610 + shape="poly"
611 + coords="715,408,717,544,516,545,515,409"
612 + href="#hotspot-hotspot-700-3"
613 + rel=""
614 + title="Loué- Appartement 104: 3 ½"
615 + alt="Loué- Appartement 104: 3 ½"
616 + data-action=""
617 + data-color-scheme="louer"
618 + data-id="area-hotspot-700-3"
619 + target=""
620 + class="more-info-area"
621 + >
622 + <area
623 + shape="poly"
624 + coords="350,746,554,746,552,578,483,578,484,586,454,585,452,577,404,577,405,562,347,562"
625 + href="#hotspot-hotspot-700-4"
626 + rel=""
627 + title="Loué - Appartement 105: 4 ½"
628 + alt="Loué - Appartement 105: 4 ½"
629 + data-action=""
630 + data-color-scheme="louer"
631 + data-id="area-hotspot-700-4"
632 + target=""
633 + class="more-info-area"
634 + >
635 + <area
636 + shape="poly"
637 + coords="112,556,344,556,345,747,212,746,213,740,150,740,151,679,116,679,117,643,112,639"
638 + href="#hotspot-hotspot-700-5"
639 + rel=""
640 + title="Loué - Appartement 106: 5 ½"
641 + alt="Loué - Appartement 106: 5 ½"
642 + data-action=""
643 + data-color-scheme="louer"
644 + data-id="area-hotspot-700-5"
645 + target=""
646 + class="more-info-area"
647 + >
648 + <area
649 + shape="poly"
650 + coords="113,261,267,261,269,303,310,303,311,398,112,400"
651 + href="#hotspot-hotspot-700-6"
652 + rel=""
653 + title="Loué - Appartement 108: 3 ½"
654 + alt="Loué - Appartement 108: 3 ½"
655 + data-action=""
656 + data-color-scheme="louer"
657 + data-id="area-hotspot-700-6"
658 + target=""
659 + class="more-info-area"
660 + >
661 + <area
662 + shape="poly"
663 + coords="111,44,303,42,302,270,272,270,273,254,112,256,110,43,111,42"
664 + href="#hotspot-hotspot-700-7"
665 + rel=""
666 + title="Disponible - Appartement 109: 5 ½"
667 + alt="Disponible - Appartement 109: 5 ½"
668 + data-action=""
669 + data-color-scheme="libre"
670 + data-id="area-hotspot-700-7"
671 + target=""
672 + class="more-info-area"
673 + >
674 + <area
675 + shape="poly"
676 + coords="307,43,468,43,468,252,449,253,449,359,349,357,348,269,308,271"
677 + href="#hotspot-hotspot-700-8"
678 + rel=""
679 + title="Loué - Appartement 110: 5 ½"
680 + alt="Loué - Appartement 110: 5 ½"
681 + data-action=""
682 + data-color-scheme="louer"
683 + data-id="area-hotspot-700-8"
684 + target=""
685 + class="more-info-area"
686 + >
687 + </map>
688 +
689 +
690 +
691 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-700-0">
692 +
693 + <h2 class="hotspot-title">Loué - Appartement 101: 5 ½</h2> <div class="hotspot-thumb">
694 + <img decoding="async" width="300" height="284" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-300x284.jpg" class="attachment-medium size-medium lazyload" alt="plan brio 101-201-301-401-501" data-srcset="https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-300x284.jpg 300w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-1024x970.jpg 1024w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-768x727.jpg 768w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-1536x1455.jpg 1536w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-2048x1939.jpg 2048w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-1080x1023.jpg 1080w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-1280x1212.jpg 1280w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-980x928.jpg 980w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-480x455.jpg 480w" data-sizes="(max-width: 300px) 100vw, 300px" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/284;" /> </div>
695 + <div class="hotspot-content">
696 + <p><strong>Superficie: 1306 pi2</strong></p>
697 +<ul>
698 +<li>3 chambres à coucher</li>
699 +<li>Walk-in dans la chambre à coucher principale et secondaire</li>
700 +<li>1 salle de bain</li>
701 +<li>1 salle de lavage</li>
702 +<li>Garde-manger walk-in</li>
703 +<li>Grand vestibule avec walk-in</li>
704 +</ul>
705 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-101-201-301-401-501-scaled.jpg" target="_blank" rel="noopener">Télécharger le plan</a></p>
706 + </div>
707 + </div>
708 +
709 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-700-1">
710 +
711 + <h2 class="hotspot-title">Loué - Appartement 102: 5 ½</h2> <div class="hotspot-thumb">
712 + <img decoding="async" width="300" height="259" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/102-202-302-402-502-300x259.jpg" class="attachment-medium size-medium lazyload" alt="plan brio 102-202-302-402-502" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/259;" /> </div>
713 + <div class="hotspot-content">
714 + <p><strong>Superficie: 1421 pi2</strong></p>
715 +<ul>
716 +<li>3 chambres à coucher</li>
717 +<li>Walk-in dans la chambre à coucher principale</li>
718 +<li>1 salle de bain</li>
719 +<li>1 salle d'eau</li>
720 +<li>1 salle de lavage</li>
721 +<li>Garde-manger walk-in</li>
722 +<li>Grand vestibule</li>
723 +<li>Rangement supplémentaire</li>
724 +</ul>
725 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-102-202-302-402-502-scaled.jpg" target="_blank" rel="noopener">Télécharger le plan</a></p>
726 + </div>
727 + </div>
728 +
729 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-700-2">
730 +
731 + <h2 class="hotspot-title">Loué- Appartement 103: 4 ½</h2> <div class="hotspot-thumb">
732 + <img decoding="async" width="300" height="300" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/103-203-303-403-503-300x300.jpg" class="attachment-medium size-medium lazyload" alt="plan brio 103-203-303-403-503" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/300;" /> </div>
733 + <div class="hotspot-content">
734 + <p><strong>Superficie: 1073 pi2</strong></p>
735 +<ul>
736 +<li>2 chambres à coucher</li>
737 +<li>Walk-in dans les chambres à coucher</li>
738 +<li>1 salle de bain</li>
739 +<li>1 salle de lavage</li>
740 +<li>Grand vestibule avec walk-in</li>
741 +<li>Garde-manger walk-in</li>
742 +</ul>
743 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-103-203-303-403-503-scaled.jpg" target="_blank" rel="noopener">Télécharger le plan</a></p>
744 + </div>
745 + </div>
746 +
747 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-700-3">
748 +
749 + <h2 class="hotspot-title">Loué- Appartement 104: 3 ½</h2> <div class="hotspot-thumb">
750 + <img decoding="async" width="300" height="272" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/104-300x272.jpg" class="attachment-medium size-medium lazyload" alt="plan Brio 104" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/272;" /> </div>
751 + <div class="hotspot-content">
752 + <p><strong>Superficie: 866 pi2</strong></p>
753 +<ul>
754 +<li>1 chambre à coucher avec walk-in</li>
755 +<li>1 salle de bain</li>
756 +<li>1 salle de lavage</li>
757 +<li>Grand vestibule avec walk-in</li>
758 +<li>Garde-manger walk-in</li>
759 +<li>Rangement supplémentaire</li>
760 +</ul>
761 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-104-scaled.jpg" target="_blank" rel="noopener">Télécharger le plan</a></p>
762 + </div>
763 + </div>
764 +
765 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-700-4">
766 +
767 + <h2 class="hotspot-title">Loué - Appartement 105: 4 ½</h2> <div class="hotspot-thumb">
768 + <img decoding="async" width="269" height="300" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/105-205-305-405-505-269x300.jpg" class="attachment-medium size-medium lazyload" alt="plan Brio 105-205-305-405-505" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 269px; --smush-placeholder-aspect-ratio: 269/300;" /> </div>
769 + <div class="hotspot-content">
770 + <p><strong>Superficie: 1104 pi2</strong></p>
771 +<ul>
772 +<li>2 chambres à coucher</li>
773 +<li>Walk-in dans la chambre à coucher principale</li>
774 +<li>1 salle de bain</li>
775 +<li>1 salle de lavage</li>
776 +<li>Garde-manger walk-in</li>
777 +<li>Grand vestibule</li>
778 +<li>Rangement supplémentaire</li>
779 +</ul>
780 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-105-205-305-405-505-scaled.jpg" target="_blank" rel="noopener">Télécharger le plan</a></p>
781 + </div>
782 + </div>
783 +
784 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-700-5">
785 +
786 + <h2 class="hotspot-title">Loué - Appartement 106: 5 ½</h2> <div class="hotspot-thumb">
787 + <img decoding="async" width="300" height="255" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/106-206-306-406-506-300x255.jpg" class="attachment-medium size-medium lazyload" alt="plan Brio 106-206-306-406-506" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/255;" /> </div>
788 + <div class="hotspot-content">
789 + <p><strong>Superficie: 1345 pi2</strong></p>
790 +<ul>
791 +<li>3 chambres à coucher</li>
792 +<li>Walk-in dans la chambre à coucher principale et secondaire</li>
793 +<li>1 salle de bain</li>
794 +<li>1 salle d’eau</li>
795 +<li>Grand vestibule</li>
796 +<li>Rangement supplémentaire</li>
797 +</ul>
798 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-106-206-306-406-506-scaled.jpg" target="_blank" rel="noopener">Télécharger le plan</a></p>
799 + </div>
800 + </div>
801 +
802 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-700-6">
803 +
804 + <h2 class="hotspot-title">Loué - Appartement 108: 3 ½</h2> <div class="hotspot-thumb">
805 + <img decoding="async" width="300" height="184" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/108-208-308-408-508-300x184.jpg" class="attachment-medium size-medium lazyload" alt="plan Brio 108-208-308-408-508" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/184;" /> </div>
806 + <div class="hotspot-content">
807 + <p><strong>Superficie: 830 pi2</strong></p>
808 +<ul>
809 +<li>1 chambre à coucher avec walk-in</li>
810 +<li>1 salle de bain</li>
811 +<li>1 salle de lavage</li>
812 +<li>Grand vestibule</li>
813 +<li>Rangement supplémentaire</li>
814 +</ul>
815 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-108-208-308-408-508-scaled.jpg" target="_blank" rel="noopener">Télécharger le plan</a></p>
816 + </div>
817 + </div>
818 +
819 + <div class="hotspot-info da-style-libre" id="hotspot-hotspot-700-7">
820 +
821 + <h2 class="hotspot-title">Disponible - Appartement 109: 5 ½</h2> <div class="hotspot-thumb">
822 + <img decoding="async" width="300" height="287" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/109-209-309-409-509-300x287.jpg" class="attachment-medium size-medium lazyload" alt="plan Brio 109-209-309-409-509" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/287;" /> </div>
823 + <div class="hotspot-content">
824 + <p><strong>Superficie: 1309 pi2</strong></p>
825 +<ul>
826 +<li>3 chambres à coucher</li>
827 +<li>Walk-in dans la chambre à coucher principale et secondaire</li>
828 +<li>1 salle de bain</li>
829 +<li>1 salle d’eau</li>
830 +<li>1 salle de lavage</li>
831 +<li>Grand vestibule</li>
832 +<li>Rangement supplémentaire</li>
833 +</ul>
834 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-109-209-309-409-509-scaled.jpg" target="_blank" rel="noopener">Télécharger le plan</a></p>
835 + </div>
836 + </div>
837 +
838 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-700-8">
839 +
840 + <h2 class="hotspot-title">Loué - Appartement 110: 5 ½</h2> <div class="hotspot-thumb">
841 + <img decoding="async" width="203" height="300" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/110-210-310-410-510-203x300.jpg" class="attachment-medium size-medium lazyload" alt="plan Brio 110-210-310-410-510" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 203px; --smush-placeholder-aspect-ratio: 203/300;" /> </div>
842 + <div class="hotspot-content">
843 + <p><strong>Superficie: 1445 pi2</strong></p>
844 +<ul>
845 +<li>3 chambres à coucher</li>
846 +<li>Walk-in dans la chambre à coucher principale</li>
847 +<li>1 salle de bain</li>
848 +<li>1 salle d’eau</li>
849 +<li>1 salle de lavage</li>
850 +<li>Garde-manger walk-in</li>
851 +<li>Grand vestibule avec walk-in</li>
852 +<li>Rangement supplémentaire</li>
853 +</ul>
854 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/110-210-310-410-510.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
855 + </div>
856 + </div>
857 + </div>
858 +
859 +</div>
860 + </div><div class="et_pb_tab et_pb_tab_1 clearfix">
861 +
862 +
863 +
864 +
865 + <div class="et_pb_tab_content">
866 +<style>
867 + #hotspot-750 .hotspots-image-container,
868 + #hotspot-750 .leaflet-container {
869 + background: #ffffff }
870 +
871 + #hotspot-750 .hotspots-placeholder,
872 + .featherlight .featherlight-content.lightbox-750 {
873 + background: #686868;
874 + border: 0 #686868 solid;
875 + color: #ededed;
876 + }
877 +
878 + #hotspot-750 .hotspot-title,
879 + #hotspot-750 .bc-product__title a,
880 + .featherlight .featherlight-content.lightbox-750 .hotspot-title,
881 + .featherlight .featherlight-content.lightbox-750 .bc-product__title a {
882 + color: #ffffff;
883 + }
884 +
885 + #hotspot-750 .hotspot-disponible {
886 + stroke-width: -1;
887 + fill: #0c71c3;
888 + fill-opacity: 0.31;
889 + stroke: #0c71c3;
890 + stroke-opacity: 0.31;
891 + }
892 + #hotspot-750 .hotspot-disponible:hover,
893 + #hotspot-750 .hotspot-disponible:focus,
894 + #hotspot-750 .hotspot-disponible.hotspot-active {
895 + fill: #0c71c3;
896 + fill-opacity: 0.81;
897 + outline: none;
898 + stroke: #0c71c3;
899 + stroke-opacity: 0.31;
900 + }
901 + #hotspot-750 .hotspot-louer {
902 + stroke-width: -1;
903 + fill: #ffffff;
904 + fill-opacity: 0.51;
905 + stroke: #ffffff;
906 + stroke-opacity: 0.31;
907 + }
908 + #hotspot-750 .hotspot-louer:hover,
909 + #hotspot-750 .hotspot-louer:focus,
910 + #hotspot-750 .hotspot-louer.hotspot-active {
911 + fill: #eb6209;
912 + fill-opacity: 0.51;
913 + outline: none;
914 + stroke: #ffffff;
915 + stroke-opacity: 0.31;
916 + }
917 + #hotspot-750 .hotspot-reserver {
918 + stroke-width: -1;
919 + fill: #eb6209;
920 + fill-opacity: 0.31;
921 + stroke: #ffffff;
922 + stroke-opacity: 0.31;
923 + }
924 + #hotspot-750 .hotspot-reserver:hover,
925 + #hotspot-750 .hotspot-reserver:focus,
926 + #hotspot-750 .hotspot-reserver.hotspot-active {
927 + fill: #eb6209;
928 + fill-opacity: 0.51;
929 + outline: none;
930 + stroke: #ffffff;
931 + stroke-opacity: 0.31;
932 + }
933 + #hotspot-750 .hotspot-default {
934 + stroke-width: -1;
935 + fill: #0c71c3;
936 + fill-opacity: 0.31;
937 + stroke: #0c71c3;
938 + stroke-opacity: 0.31;
939 + }
940 + #hotspot-750 .hotspot-default:hover,
941 + #hotspot-750 .hotspot-default:focus,
942 + #hotspot-750 .hotspot-default.hotspot-active {
943 + fill: #0c71c3;
944 + fill-opacity: 0.91;
945 + outline: none;
946 + stroke: #0c71c3;
947 + stroke-opacity: 0.31;
948 + }
949 + #hotspot-750 .leaflet-tooltip,
950 + #hotspot-750 .leaflet-rrose-content-wrapper {
951 + background: #686868;
952 + border-color: #686868;
953 + color: #ededed;
954 + }
955 +
956 + #hotspot-750 a.leaflet-rrose-close-button {
957 + color: #ffffff;
958 + }
959 +
960 + #hotspot-750 .leaflet-rrose-tip {
961 + background: #686868;
962 + }
963 +
964 + #hotspot-750 .leaflet-popup-scrolled {
965 + border-bottom-color: #ededed;
966 + border-top-color: #ededed;
967 + }
968 +
969 + #hotspot-750 .leaflet-tooltip-top:before {
970 + border-top-color: #686868;
971 + }
972 +
973 + #hotspot-750 .leaflet-tooltip-bottom:before {
974 + border-bottom-color: #686868;
975 + }
976 + #hotspot-750 .leaflet-tooltip-left:before {
977 + border-left-color: #686868;
978 + }
979 + #hotspot-750 .leaflet-tooltip-right:before {
980 + border-right-color: #686868;
981 + }
982 +</style>
983 +
984 +
985 + <div class="hotspots-container layout-left event-click" id="hotspot-750" data-layout="left" data-trigger="click">
986 + <div class="hotspots-interaction">
987 + <div class="hotspots-placeholder" id="content-hotspot-750">
988 + <div class="hotspot-initial">
989 + <h2 class="hotspot-title">
990 + Le Brio: plan du 2e étage </h2>
991 + <div class="hotspot-content">
992 + <p>Cliquez sur le numéro d'appartement pour obtenir plus d'information sur celui-ci.</p>
993 + </div>
994 + </div>
995 + </div>
996 +<div class="hotspots-image-container">
997 + <img
998 + width="1080"
999 + height="828"
1000 + src="https://immeublesbrio.com/wp-content/uploads/2019/12/2e.jpg"
1001 + alt="plan 2e étage"
1002 + class="hotspots-image skip-lazy"
1003 + usemap="#hotspots-image-750"
1004 + data-image-title="Le Brio: plan du 2e étage"
1005 + data-image-description="Cliquez sur le numéro d'appartement pour obtenir plus d'information sur celui-ci."
1006 + data-event-trigger="click"
1007 + data-always-visible="on"
1008 + data-id="750"
1009 + data-no-lazy="1"
1010 + data-lazy-src=""
1011 + data-lazy="false"
1012 + loading="eager"
1013 + data-skip-lazy="1"
1014 + >
1015 +</div> </div>
1016 + <map name="hotspots-image-750" class="hotspots-map">
1017 + <area
1018 + shape="poly"
1019 + coords="771,597,770,744,1009,743,1008,564,855,564,854,598"
1020 + href="#hotspot-hotspot-750-0"
1021 + rel=""
1022 + title="Loué- Appartement 201: 5 ½"
1023 + alt="Loué- Appartement 201: 5 ½"
1024 + data-action=""
1025 + data-color-scheme="louer"
1026 + data-id="area-hotspot-750-0"
1027 + target=""
1028 + class="more-info-area"
1029 + >
1030 + <area
1031 + shape="poly"
1032 + coords="747,380,1009,381,1010,561,847,560,846,554,812,552,814,513,746,512"
1033 + href="#hotspot-hotspot-750-1"
1034 + rel=""
1035 + title="Loué - Appartement 202: 5 ½"
1036 + alt="Loué - Appartement 202: 5 ½"
1037 + data-action=""
1038 + data-color-scheme="louer"
1039 + data-id="area-hotspot-750-1"
1040 + target=""
1041 + class="more-info-area"
1042 + >
1043 + <area
1044 + shape="poly"
1045 + coords="765,596,765,743,556,744,554,578,617,579,616,586,653,585,653,578,674,578,675,597"
1046 + href="#hotspot-hotspot-750-2"
1047 + rel=""
1048 + title="Loué - Appartement 203: 4 ½"
1049 + alt="Loué - Appartement 203: 4 ½"
1050 + data-action=""
1051 + data-color-scheme="louer"
1052 + data-id="area-hotspot-750-2"
1053 + target=""
1054 + class="more-info-area"
1055 + >
1056 + <area
1057 + shape="poly"
1058 + coords="743,411,740,512,715,514,714,543,577,543,577,536,543,536,541,542,446,544,447,526,428,524,429,462,439,462,441,410"
1059 + href="#hotspot-hotspot-750-3"
1060 + rel=""
1061 + title="Loué - Appartement 204: 5 ½"
1062 + alt="Loué - Appartement 204: 5 ½"
1063 + data-action=""
1064 + data-color-scheme="louer"
1065 + data-id="area-hotspot-750-3"
1066 + target=""
1067 + class="more-info-area"
1068 + >
1069 + <area
1070 + shape="poly"
1071 + coords="549,579,550,744,347,744,348,559,400,560,401,580,407,580,408,586,436,588,437,579,445,579,446,586,481,586,482,579"
1072 + href="#hotspot-hotspot-750-4"
1073 + rel=""
1074 + title="Loué - Appartement 205: 4 ½"
1075 + alt="Loué - Appartement 205: 4 ½"
1076 + data-action=""
1077 + data-color-scheme="louer"
1078 + data-id="area-hotspot-750-4"
1079 + target=""
1080 + class="more-info-area"
1081 + >
1082 + <area
1083 + shape="poly"
1084 + coords="108,555,342,553,342,744,210,745,210,741,148,742,147,677,114,678,113,644,108,644"
1085 + href="#hotspot-hotspot-750-5"
1086 + rel=""
1087 + title="Loué - Appartement 206: 5 ½"
1088 + alt="Loué - Appartement 206: 5 ½"
1089 + data-action=""
1090 + data-color-scheme="louer"
1091 + data-id="area-hotspot-750-5"
1092 + target=""
1093 + class="more-info-area"
1094 + >
1095 + <area
1096 + shape="poly"
1097 + coords="109,404,307,403,307,464,300,464,299,496,307,500,308,552,110,550"
1098 + href="#hotspot-hotspot-750-6"
1099 + rel=""
1100 + title="Loué - Appartement 207: 3 ½"
1101 + alt="Loué - Appartement 207: 3 ½"
1102 + data-action=""
1103 + data-color-scheme="louer"
1104 + data-id="area-hotspot-750-6"
1105 + target=""
1106 + class="more-info-area"
1107 + >
1108 + <area
1109 + shape="poly"
1110 + coords="306,397,306,305,264,304,265,259,109,258,108,397"
1111 + href="#hotspot-hotspot-750-7"
1112 + rel=""
1113 + title="Loué - Appartement 208: 3 ½"
1114 + alt="Loué - Appartement 208: 3 ½"
1115 + data-action=""
1116 + data-color-scheme="louer"
1117 + data-id="area-hotspot-750-7"
1118 + target=""
1119 + class="more-info-area"
1120 + >
1121 + <area
1122 + shape="poly"
1123 + coords="110,44,300,43,298,268,269,269,269,254,109,254"
1124 + href="#hotspot-hotspot-750-8"
1125 + rel=""
1126 + title="Loué - Appartement 209: 5 ½"
1127 + alt="Loué - Appartement 209: 5 ½"
1128 + data-action=""
1129 + data-color-scheme="louer"
1130 + data-id="area-hotspot-750-8"
1131 + target=""
1132 + class="more-info-area"
1133 + >
1134 + <area
1135 + shape="poly"
1136 + coords="305,44,465,43,465,249,447,250,446,356,348,357,345,268,303,267"
1137 + href="#hotspot-hotspot-750-9"
1138 + rel=""
1139 + title="Loué - Appartement 210: 5 ½"
1140 + alt="Loué - Appartement 210: 5 ½"
1141 + data-action=""
1142 + data-color-scheme="louer"
1143 + data-id="area-hotspot-750-9"
1144 + target=""
1145 + class="more-info-area"
1146 + >
1147 + </map>
1148 +
1149 +
1150 +
1151 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-750-0">
1152 +
1153 + <h2 class="hotspot-title">Loué- Appartement 201: 5 ½</h2> <div class="hotspot-thumb">
1154 + <img decoding="async" width="300" height="284" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-300x284.jpg" class="attachment-medium size-medium lazyload" alt="plan brio 101-201-301-401-501" data-srcset="https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-300x284.jpg 300w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-1024x970.jpg 1024w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-768x727.jpg 768w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-1536x1455.jpg 1536w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-2048x1939.jpg 2048w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-1080x1023.jpg 1080w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-1280x1212.jpg 1280w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-980x928.jpg 980w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-480x455.jpg 480w" data-sizes="(max-width: 300px) 100vw, 300px" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/284;" /> </div>
1155 + <div class="hotspot-content">
1156 + <p><strong>Superficie: 1306 pi2</strong></p>
1157 +<ul>
1158 +<li>3 chambres à coucher</li>
1159 +<li>Walk-in dans la chambre à coucher principale et secondaire</li>
1160 +<li>1 salle de bain</li>
1161 +<li>1 salle de lavage</li>
1162 +<li>Garde-manger walk-in</li>
1163 +<li>Grand vestibule avec walk-in</li>
1164 +</ul>
1165 +<p><strong><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-101-201-301-401-501-scaled.jpg" target="_blank" rel="noopener">Télécharger le plan</a></strong></p>
1166 + </div>
1167 + </div>
1168 +
1169 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-750-1">
1170 +
1171 + <h2 class="hotspot-title">Loué - Appartement 202: 5 ½</h2> <div class="hotspot-thumb">
1172 + <img decoding="async" width="300" height="259" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/102-202-302-402-502-300x259.jpg" class="attachment-medium size-medium lazyload" alt="plan brio 102-202-302-402-502" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/259;" /> </div>
1173 + <div class="hotspot-content">
1174 + <p><strong>Superficie: 1421 pi2</strong></p>
1175 +<ul>
1176 +<li>3 chambres à coucher</li>
1177 +<li>Walk-in dans la chambre à coucher principale</li>
1178 +<li>1 salle de bain</li>
1179 +<li>1 salle d'eau</li>
1180 +<li>1 salle de lavage</li>
1181 +<li>Garde-manger walk-in</li>
1182 +<li>Grand vestibule</li>
1183 +<li>Rangement supplémentaire</li>
1184 +</ul>
1185 +<p><strong><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-102-202-302-402-502-scaled.jpg" target="_blank" rel="noopener">Télécharger le plan</a></strong></p>
1186 + </div>
1187 + </div>
1188 +
1189 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-750-2">
1190 +
1191 + <h2 class="hotspot-title">Loué - Appartement 203: 4 ½</h2> <div class="hotspot-thumb">
1192 + <img decoding="async" width="300" height="300" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/103-203-303-403-503-300x300.jpg" class="attachment-medium size-medium lazyload" alt="plan brio 103-203-303-403-503" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/300;" /> </div>
1193 + <div class="hotspot-content">
1194 + <p><strong>Superficie: 1073 pi2</strong></p>
1195 +<ul>
1196 +<li>2 chambres à coucher</li>
1197 +<li>Walk-in dans les chambres à coucher</li>
1198 +<li>1 salle de bain</li>
1199 +<li>1 salle de lavage</li>
1200 +<li>Grand vestibule avec walk-in</li>
1201 +<li>Garde-manger walk-in</li>
1202 +</ul>
1203 +<p><strong><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-103-203-303-403-503-scaled.jpg" target="_blank" rel="noopener">Télécharger le plan</a></strong></p>
1204 + </div>
1205 + </div>
1206 +
1207 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-750-3">
1208 +
1209 + <h2 class="hotspot-title">Loué - Appartement 204: 5 ½</h2> <div class="hotspot-thumb">
1210 + <img decoding="async" width="300" height="179" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/204-304-404-504-300x179.jpg" class="attachment-medium size-medium lazyload" alt="brio plan 204-304-404-504" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/179;" /> </div>
1211 + <div class="hotspot-content">
1212 + <p><strong>Superficie: 1283 pi2</strong></p>
1213 +<ul>
1214 +<li>3 chambres à coucher</li>
1215 +<li>Walk-in dans la chambre à coucher principale</li>
1216 +<li>1 salle de bain</li>
1217 +<li>1 salle de lavage</li>
1218 +<li>Garde-manger walk-in</li>
1219 +<li>Grand vestibule avec walk-in</li>
1220 +</ul>
1221 +<p><strong><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-204-304-404-504-scaled.jpg" target="_blank" rel="noopener">Télécharger le plan</a></strong></p>
1222 + </div>
1223 + </div>
1224 +
1225 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-750-4">
1226 +
1227 + <h2 class="hotspot-title">Loué - Appartement 205: 4 ½</h2> <div class="hotspot-thumb">
1228 + <img decoding="async" width="269" height="300" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/105-205-305-405-505-269x300.jpg" class="attachment-medium size-medium lazyload" alt="plan Brio 105-205-305-405-505" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 269px; --smush-placeholder-aspect-ratio: 269/300;" /> </div>
1229 + <div class="hotspot-content">
1230 + <p><strong>Superficie: 1104 pi2</strong></p>
1231 +<ul>
1232 +<li>2 chambres à coucher</li>
1233 +<li>Walk-in dans la chambre à coucher principale</li>
1234 +<li>1 salle de bain</li>
1235 +<li>1 salle de lavage</li>
1236 +<li>Garde-manger walk-in</li>
1237 +<li>Grand vestibule</li>
1238 +<li>Rangement supplémentaire</li>
1239 +</ul>
1240 +<p><strong><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-105-205-305-405-505-scaled.jpg" target="_blank" rel="noopener">Télécharger le plan</a></strong></p>
1241 + </div>
1242 + </div>
1243 +
1244 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-750-5">
1245 +
1246 + <h2 class="hotspot-title">Loué - Appartement 206: 5 ½</h2> <div class="hotspot-thumb">
1247 + <img decoding="async" width="300" height="255" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/106-206-306-406-506-300x255.jpg" class="attachment-medium size-medium lazyload" alt="plan Brio 106-206-306-406-506" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/255;" /> </div>
1248 + <div class="hotspot-content">
1249 + <p><strong>Superficie: 1345 pi2</strong></p>
1250 +<ul>
1251 +<li>3 chambres à coucher</li>
1252 +<li>Walk-in dans la chambre à coucher principale et secondaire</li>
1253 +<li>1 salle de bain</li>
1254 +<li>1 salle d’eau</li>
1255 +<li>Grand vestibule</li>
1256 +<li>Rangement supplémentaire</li>
1257 +</ul>
1258 +<p><strong><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-106-206-306-406-506-scaled.jpg" target="_blank" rel="noopener">Télécharger le plan</a></strong></p>
1259 + </div>
1260 + </div>
1261 +
1262 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-750-6">
1263 +
1264 + <h2 class="hotspot-title">Loué - Appartement 207: 3 ½</h2> <div class="hotspot-thumb">
1265 + <img decoding="async" width="300" height="189" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/plan-207-307-407-507-300x189.jpg" class="attachment-medium size-medium lazyload" alt="brio plan 207-307-407-507" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/189;" /> </div>
1266 + <div class="hotspot-content">
1267 + <p><strong>Superficie: 930 pi2</strong></p>
1268 +<ul>
1269 +<li>1 chambre à coucher avec walk-in</li>
1270 +<li>1 salle de bain</li>
1271 +<li>1 salle de lavage</li>
1272 +<li>Grand vestibule</li>
1273 +<li>Rangement supplémentaire</li>
1274 +</ul>
1275 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-207-307-407-507-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
1276 + </div>
1277 + </div>
1278 +
1279 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-750-7">
1280 +
1281 + <h2 class="hotspot-title">Loué - Appartement 208: 3 ½</h2> <div class="hotspot-thumb">
1282 + <img decoding="async" width="300" height="184" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/108-208-308-408-508-300x184.jpg" class="attachment-medium size-medium lazyload" alt="plan Brio 108-208-308-408-508" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/184;" /> </div>
1283 + <div class="hotspot-content">
1284 + <p><strong>Superficie: 830 pi2</strong></p>
1285 +<ul>
1286 +<li>1 chambre à coucher avec walk-in</li>
1287 +<li>1 salle de bain</li>
1288 +<li>1 salle de lavage</li>
1289 +<li>Grand vestibule</li>
1290 +<li>Rangement supplémentaire</li>
1291 +</ul>
1292 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-108-208-308-408-508-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
1293 + </div>
1294 + </div>
1295 +
1296 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-750-8">
1297 +
1298 + <h2 class="hotspot-title">Loué - Appartement 209: 5 ½</h2> <div class="hotspot-thumb">
1299 + <img decoding="async" width="300" height="287" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/109-209-309-409-509-300x287.jpg" class="attachment-medium size-medium lazyload" alt="plan Brio 109-209-309-409-509" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/287;" /> </div>
1300 + <div class="hotspot-content">
1301 + <p><strong>Superficie: 1309 pi2</strong></p>
1302 +<ul>
1303 +<li>3 chambres à coucher</li>
1304 +<li>Walk-in dans la chambre à coucher principale et secondaire</li>
1305 +<li>1 salle de bain</li>
1306 +<li>1 salle d’eau</li>
1307 +<li>1 salle de lavage</li>
1308 +<li>Grand vestibule</li>
1309 +<li>Rangement supplémentaire</li>
1310 +</ul>
1311 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-109-209-309-409-509-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
1312 + </div>
1313 + </div>
1314 +
1315 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-750-9">
1316 +
1317 + <h2 class="hotspot-title">Loué - Appartement 210: 5 ½</h2> <div class="hotspot-thumb">
1318 + <img decoding="async" width="203" height="300" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/110-210-310-410-510-203x300.jpg" class="attachment-medium size-medium lazyload" alt="plan Brio 110-210-310-410-510" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 203px; --smush-placeholder-aspect-ratio: 203/300;" /> </div>
1319 + <div class="hotspot-content">
1320 + <p><strong>Superficie: 1445 pi2</strong></p>
1321 +<ul>
1322 +<li>3 chambres à coucher</li>
1323 +<li>Walk-in dans la chambre à coucher principale</li>
1324 +<li>1 salle de bain</li>
1325 +<li>1 salle d’eau</li>
1326 +<li>1 salle de lavage</li>
1327 +<li>Garde-manger walk-in</li>
1328 +<li>Grand vestibule avec walk-in</li>
1329 +<li>Rangement supplémentaire</li>
1330 +</ul>
1331 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/110-210-310-410-510.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
1332 + </div>
1333 + </div>
1334 + </div>
1335 +
1336 +</div>
1337 + </div><div class="et_pb_tab et_pb_tab_2 clearfix">
1338 +
1339 +
1340 +
1341 +
1342 + <div class="et_pb_tab_content">
1343 +<style>
1344 + #hotspot-755 .hotspots-image-container,
1345 + #hotspot-755 .leaflet-container {
1346 + background: #ffffff }
1347 +
1348 + #hotspot-755 .hotspots-placeholder,
1349 + .featherlight .featherlight-content.lightbox-755 {
1350 + background: #686868;
1351 + border: 0 #686868 solid;
1352 + color: #ededed;
1353 + }
1354 +
1355 + #hotspot-755 .hotspot-title,
1356 + #hotspot-755 .bc-product__title a,
1357 + .featherlight .featherlight-content.lightbox-755 .hotspot-title,
1358 + .featherlight .featherlight-content.lightbox-755 .bc-product__title a {
1359 + color: #ffffff;
1360 + }
1361 +
1362 + #hotspot-755 .hotspot-disponible {
1363 + stroke-width: -1;
1364 + fill: #0c71c3;
1365 + fill-opacity: 0.31;
1366 + stroke: #0c71c3;
1367 + stroke-opacity: 0.31;
1368 + }
1369 + #hotspot-755 .hotspot-disponible:hover,
1370 + #hotspot-755 .hotspot-disponible:focus,
1371 + #hotspot-755 .hotspot-disponible.hotspot-active {
1372 + fill: #0c71c3;
1373 + fill-opacity: 0.81;
1374 + outline: none;
1375 + stroke: #0c71c3;
1376 + stroke-opacity: 0.31;
1377 + }
1378 + #hotspot-755 .hotspot-louer {
1379 + stroke-width: -1;
1380 + fill: #ffffff;
1381 + fill-opacity: 0.51;
1382 + stroke: #ffffff;
1383 + stroke-opacity: 0.31;
1384 + }
1385 + #hotspot-755 .hotspot-louer:hover,
1386 + #hotspot-755 .hotspot-louer:focus,
1387 + #hotspot-755 .hotspot-louer.hotspot-active {
1388 + fill: #eb6209;
1389 + fill-opacity: 0.51;
1390 + outline: none;
1391 + stroke: #ffffff;
1392 + stroke-opacity: 0.31;
1393 + }
1394 + #hotspot-755 .hotspot-reserver {
1395 + stroke-width: -1;
1396 + fill: #eb6209;
1397 + fill-opacity: 0.31;
1398 + stroke: #ffffff;
1399 + stroke-opacity: 0.31;
1400 + }
1401 + #hotspot-755 .hotspot-reserver:hover,
1402 + #hotspot-755 .hotspot-reserver:focus,
1403 + #hotspot-755 .hotspot-reserver.hotspot-active {
1404 + fill: #eb6209;
1405 + fill-opacity: 0.51;
1406 + outline: none;
1407 + stroke: #ffffff;
1408 + stroke-opacity: 0.31;
1409 + }
1410 + #hotspot-755 .hotspot-default {
1411 + stroke-width: -1;
1412 + fill: #0c71c3;
1413 + fill-opacity: 0.31;
1414 + stroke: #0c71c3;
1415 + stroke-opacity: 0.31;
1416 + }
1417 + #hotspot-755 .hotspot-default:hover,
1418 + #hotspot-755 .hotspot-default:focus,
1419 + #hotspot-755 .hotspot-default.hotspot-active {
1420 + fill: #0c71c3;
1421 + fill-opacity: 0.91;
1422 + outline: none;
1423 + stroke: #0c71c3;
1424 + stroke-opacity: 0.31;
1425 + }
1426 + #hotspot-755 .leaflet-tooltip,
1427 + #hotspot-755 .leaflet-rrose-content-wrapper {
1428 + background: #686868;
1429 + border-color: #686868;
1430 + color: #ededed;
1431 + }
1432 +
1433 + #hotspot-755 a.leaflet-rrose-close-button {
1434 + color: #ffffff;
1435 + }
1436 +
1437 + #hotspot-755 .leaflet-rrose-tip {
1438 + background: #686868;
1439 + }
1440 +
1441 + #hotspot-755 .leaflet-popup-scrolled {
1442 + border-bottom-color: #ededed;
1443 + border-top-color: #ededed;
1444 + }
1445 +
1446 + #hotspot-755 .leaflet-tooltip-top:before {
1447 + border-top-color: #686868;
1448 + }
1449 +
1450 + #hotspot-755 .leaflet-tooltip-bottom:before {
1451 + border-bottom-color: #686868;
1452 + }
1453 + #hotspot-755 .leaflet-tooltip-left:before {
1454 + border-left-color: #686868;
1455 + }
1456 + #hotspot-755 .leaflet-tooltip-right:before {
1457 + border-right-color: #686868;
1458 + }
1459 +</style>
1460 +
1461 +
1462 + <div class="hotspots-container layout-left event-click" id="hotspot-755" data-layout="left" data-trigger="click">
1463 + <div class="hotspots-interaction">
1464 + <div class="hotspots-placeholder" id="content-hotspot-755">
1465 + <div class="hotspot-initial">
1466 + <h2 class="hotspot-title">
1467 + Le Brio: plan du 3e étage </h2>
1468 + <div class="hotspot-content">
1469 + <p>Cliquez sur le numéro d'appartement pour obtenir plus d'information sur celui-ci.</p>
1470 + </div>
1471 + </div>
1472 + </div>
1473 +<div class="hotspots-image-container">
1474 + <img
1475 + width="1080"
1476 + height="828"
1477 + src="https://immeublesbrio.com/wp-content/uploads/2019/12/3e.jpg"
1478 + alt="plan 3e étage"
1479 + class="hotspots-image skip-lazy"
1480 + usemap="#hotspots-image-755"
1481 + data-image-title="Le Brio: plan du 3e étage"
1482 + data-image-description="Cliquez sur le numéro d'appartement pour obtenir plus d'information sur celui-ci."
1483 + data-event-trigger="click"
1484 + data-always-visible="on"
1485 + data-id="755"
1486 + data-no-lazy="1"
1487 + data-lazy-src=""
1488 + data-lazy="false"
1489 + loading="eager"
1490 + data-skip-lazy="1"
1491 + >
1492 +</div> </div>
1493 + <map name="hotspots-image-755" class="hotspots-map">
1494 + <area
1495 + shape="poly"
1496 + coords="1008,566,1008,744,772,744,771,596,855,599,856,562"
1497 + href="#hotspot-hotspot-755-0"
1498 + rel=""
1499 + title="Loué - Appartement 301: 5 ½"
1500 + alt="Loué - Appartement 301: 5 ½"
1501 + data-action=""
1502 + data-color-scheme="louer"
1503 + data-id="area-hotspot-755-0"
1504 + target=""
1505 + class="more-info-area"
1506 + >
1507 + <area
1508 + shape="poly"
1509 + coords="1008,380,1008,559,846,562,847,554,813,554,814,516,748,513,748,379"
1510 + href="#hotspot-hotspot-755-1"
1511 + rel=""
1512 + title="Loué - Appartement 302: 5 ½"
1513 + alt="Loué - Appartement 302: 5 ½"
1514 + data-action=""
1515 + data-color-scheme="louer"
1516 + data-id="area-hotspot-755-1"
1517 + target=""
1518 + class="more-info-area"
1519 + >
1520 + <area
1521 + shape="poly"
1522 + coords="765,597,765,744,554,745,555,581,618,580,616,586,653,585,652,578,673,580,674,595"
1523 + href="#hotspot-hotspot-755-2"
1524 + rel=""
1525 + title="Disponible - Appartement 303: 4 ½"
1526 + alt="Disponible - Appartement 303: 4 ½"
1527 + data-action=""
1528 + data-color-scheme="disponible"
1529 + data-id="area-hotspot-755-2"
1530 + target=""
1531 + class="more-info-area"
1532 + >
1533 + <area
1534 + shape="poly"
1535 + coords="443,411,442,460,431,460,431,523,447,525,446,543,543,545,542,537,579,537,581,545,716,543,716,517,742,514,741,409"
1536 + href="#hotspot-hotspot-755-3"
1537 + rel=""
1538 + title="Loué - Appartement 304: 5 ½"
1539 + alt="Loué - Appartement 304: 5 ½"
1540 + data-action=""
1541 + data-color-scheme="louer"
1542 + data-id="area-hotspot-755-3"
1543 + target=""
1544 + class="more-info-area"
1545 + >
1546 + <area
1547 + shape="poly"
1548 + coords="549,581,549,743,347,743,349,562,401,560,401,579,410,580,409,587,437,587,435,577,448,577,448,587,484,586,486,578"
1549 + href="#hotspot-hotspot-755-4"
1550 + rel=""
1551 + title="Loué - Appartement 305: 4 ½"
1552 + alt="Loué - Appartement 305: 4 ½"
1553 + data-action=""
1554 + data-color-scheme="louer"
1555 + data-id="area-hotspot-755-4"
1556 + target=""
1557 + class="more-info-area"
1558 + >
1559 + <area
1560 + shape="poly"
1561 + coords="342,554,343,743,211,745,212,741,146,740,147,678,112,676,113,645,107,643,109,554"
1562 + href="#hotspot-hotspot-755-5"
1563 + rel=""
1564 + title="Loué - Appartement 306: 5 ½"
1565 + alt="Loué - Appartement 306: 5 ½"
1566 + data-action=""
1567 + data-color-scheme="louer"
1568 + data-id="area-hotspot-755-5"
1569 + target=""
1570 + class="more-info-area"
1571 + >
1572 + <area
1573 + shape="poly"
1574 + coords="108,402,307,402,308,462,300,463,301,497,308,496,308,549,109,551"
1575 + href="#hotspot-hotspot-755-6"
1576 + rel=""
1577 + title="Loué - Appartement 307: 3 ½"
1578 + alt="Loué - Appartement 307: 3 ½"
1579 + data-action=""
1580 + data-color-scheme="louer"
1581 + data-id="area-hotspot-755-6"
1582 + target=""
1583 + class="more-info-area"
1584 + >
1585 + <area
1586 + shape="poly"
1587 + coords="111,258,265,260,264,303,306,304,306,398,110,397"
1588 + href="#hotspot-hotspot-755-7"
1589 + rel=""
1590 + title="Loué - Appartement 308: 3 ½"
1591 + alt="Loué - Appartement 308: 3 ½"
1592 + data-action=""
1593 + data-color-scheme="louer"
1594 + data-id="area-hotspot-755-7"
1595 + target=""
1596 + class="more-info-area"
1597 + >
1598 + <area
1599 + shape="poly"
1600 + coords="111,44,298,44,299,268,270,267,270,255,109,255"
1601 + href="#hotspot-hotspot-755-8"
1602 + rel=""
1603 + title="Loué - Appartement 309: 5 ½"
1604 + alt="Loué - Appartement 309: 5 ½"
1605 + data-action=""
1606 + data-color-scheme="louer"
1607 + data-id="area-hotspot-755-8"
1608 + target=""
1609 + class="more-info-area"
1610 + >
1611 + <area
1612 + shape="poly"
1613 + coords="305,45,465,43,465,251,446,251,448,356,347,356,347,267,306,268"
1614 + href="#hotspot-hotspot-755-9"
1615 + rel=""
1616 + title="Loué - Appartement 310: 5 ½"
1617 + alt="Loué - Appartement 310: 5 ½"
1618 + data-action=""
1619 + data-color-scheme="louer"
1620 + data-id="area-hotspot-755-9"
1621 + target=""
1622 + class="more-info-area"
1623 + >
1624 + </map>
1625 +
1626 +
1627 +
1628 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-755-0">
1629 +
1630 + <h2 class="hotspot-title">Loué - Appartement 301: 5 ½</h2> <div class="hotspot-thumb">
1631 + <img decoding="async" width="300" height="284" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-300x284.jpg" class="attachment-medium size-medium lazyload" alt="plan brio 101-201-301-401-501" data-srcset="https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-300x284.jpg 300w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-1024x970.jpg 1024w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-768x727.jpg 768w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-1536x1455.jpg 1536w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-2048x1939.jpg 2048w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-1080x1023.jpg 1080w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-1280x1212.jpg 1280w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-980x928.jpg 980w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-480x455.jpg 480w" data-sizes="(max-width: 300px) 100vw, 300px" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/284;" /> </div>
1632 + <div class="hotspot-content">
1633 + <p><strong>Superficie: 1306 pi2</strong></p>
1634 +<ul>
1635 +<li>3 chambres à coucher</li>
1636 +<li>Walk-in dans la chambre à coucher principale et secondaire</li>
1637 +<li>1 salle de bain</li>
1638 +<li>1 salle de lavage</li>
1639 +<li>Garde-manger walk-in</li>
1640 +<li>Grand vestibule avec walk-in</li>
1641 +</ul>
1642 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-101-201-301-401-501-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
1643 + </div>
1644 + </div>
1645 +
1646 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-755-1">
1647 +
1648 + <h2 class="hotspot-title">Loué - Appartement 302: 5 ½</h2> <div class="hotspot-thumb">
1649 + <img decoding="async" width="300" height="259" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/102-202-302-402-502-300x259.jpg" class="attachment-medium size-medium lazyload" alt="plan brio 102-202-302-402-502" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/259;" /> </div>
1650 + <div class="hotspot-content">
1651 + <p><strong>Superficie: 1421 pi2</strong></p>
1652 +<ul>
1653 +<li>3 chambres à coucher</li>
1654 +<li>Walk-in dans la chambre à coucher principale</li>
1655 +<li>1 salle de bain</li>
1656 +<li>1 salle d'eau</li>
1657 +<li>1 salle de lavage</li>
1658 +<li>Garde-manger walk-in</li>
1659 +<li>Grand vestibule</li>
1660 +<li>Rangement supplémentaire</li>
1661 +</ul>
1662 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-102-202-302-402-502-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
1663 + </div>
1664 + </div>
1665 +
1666 + <div class="hotspot-info da-style-disponible" id="hotspot-hotspot-755-2">
1667 +
1668 + <h2 class="hotspot-title">Disponible - Appartement 303: 4 ½</h2> <div class="hotspot-thumb">
1669 + <img decoding="async" width="300" height="300" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/103-203-303-403-503-300x300.jpg" class="attachment-medium size-medium lazyload" alt="plan brio 103-203-303-403-503" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/300;" /> </div>
1670 + <div class="hotspot-content">
1671 + <p><strong>Superficie: 1073 pi2</strong></p>
1672 +<ul>
1673 +<li>2 chambres à coucher</li>
1674 +<li>Walk-in dans les chambres à coucher</li>
1675 +<li>1 salle de bain</li>
1676 +<li>1 salle de lavage</li>
1677 +<li>Grand vestibule avec walk-in</li>
1678 +<li>Garde-manger walk-in</li>
1679 +</ul>
1680 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-103-203-303-403-503-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
1681 + </div>
1682 + </div>
1683 +
1684 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-755-3">
1685 +
1686 + <h2 class="hotspot-title">Loué - Appartement 304: 5 ½</h2> <div class="hotspot-thumb">
1687 + <img decoding="async" width="300" height="179" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/204-304-404-504-300x179.jpg" class="attachment-medium size-medium lazyload" alt="brio plan 204-304-404-504" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/179;" /> </div>
1688 + <div class="hotspot-content">
1689 + <p><strong>Superficie: 1283 pi2</strong></p>
1690 +<ul>
1691 +<li>3 chambres à coucher</li>
1692 +<li>Walk-in dans la chambre à coucher principale</li>
1693 +<li>1 salle de bain</li>
1694 +<li>1 salle de lavage</li>
1695 +<li>Garde-manger walk-in</li>
1696 +<li>Grand vestibule avec walk-in</li>
1697 +</ul>
1698 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-204-304-404-504-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
1699 + </div>
1700 + </div>
1701 +
1702 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-755-4">
1703 +
1704 + <h2 class="hotspot-title">Loué - Appartement 305: 4 ½</h2> <div class="hotspot-thumb">
1705 + <img decoding="async" width="269" height="300" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/105-205-305-405-505-269x300.jpg" class="attachment-medium size-medium lazyload" alt="plan Brio 105-205-305-405-505" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 269px; --smush-placeholder-aspect-ratio: 269/300;" /> </div>
1706 + <div class="hotspot-content">
1707 + <p><strong>Superficie: 1104 pi2</strong></p>
1708 +<ul>
1709 +<li>2 chambres à coucher</li>
1710 +<li>Walk-in dans la chambre à coucher principale</li>
1711 +<li>1 salle de bain</li>
1712 +<li>1 salle de lavage</li>
1713 +<li>Garde-manger walk-in</li>
1714 +<li>Grand vestibule</li>
1715 +<li>Rangement supplémentaire</li>
1716 +</ul>
1717 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-105-205-305-405-505-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
1718 + </div>
1719 + </div>
1720 +
1721 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-755-5">
1722 +
1723 + <h2 class="hotspot-title">Loué - Appartement 306: 5 ½</h2> <div class="hotspot-thumb">
1724 + <img decoding="async" width="300" height="255" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/106-206-306-406-506-300x255.jpg" class="attachment-medium size-medium lazyload" alt="plan Brio 106-206-306-406-506" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/255;" /> </div>
1725 + <div class="hotspot-content">
1726 + <p><strong>Superficie: 1345 pi2</strong></p>
1727 +<ul>
1728 +<li>3 chambres à coucher</li>
1729 +<li>Walk-in dans la chambre à coucher principale et secondaire</li>
1730 +<li>1 salle de bain</li>
1731 +<li>1 salle d’eau</li>
1732 +<li>Grand vestibule</li>
1733 +<li>Rangement supplémentaire</li>
1734 +</ul>
1735 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-106-206-306-406-506-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
1736 + </div>
1737 + </div>
1738 +
1739 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-755-6">
1740 +
1741 + <h2 class="hotspot-title">Loué - Appartement 307: 3 ½</h2> <div class="hotspot-thumb">
1742 + <img decoding="async" width="300" height="189" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/plan-207-307-407-507-300x189.jpg" class="attachment-medium size-medium lazyload" alt="brio plan 207-307-407-507" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/189;" /> </div>
1743 + <div class="hotspot-content">
1744 + <p><strong>Superficie: 930 pi2</strong></p>
1745 +<ul>
1746 +<li>1 chambre à coucher avec walk-in</li>
1747 +<li>1 salle de bain</li>
1748 +<li>1 salle de lavage</li>
1749 +<li>Grand vestibule</li>
1750 +<li>Rangement supplémentaire</li>
1751 +</ul>
1752 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-207-307-407-507-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
1753 + </div>
1754 + </div>
1755 +
1756 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-755-7">
1757 +
1758 + <h2 class="hotspot-title">Loué - Appartement 308: 3 ½</h2> <div class="hotspot-thumb">
1759 + <img decoding="async" width="300" height="184" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/108-208-308-408-508-300x184.jpg" class="attachment-medium size-medium lazyload" alt="plan Brio 108-208-308-408-508" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/184;" /> </div>
1760 + <div class="hotspot-content">
1761 + <p><strong>Superficie: 830 pi2</strong></p>
1762 +<ul>
1763 +<li>1 chambre à coucher avec walk-in</li>
1764 +<li>1 salle de bain</li>
1765 +<li>1 salle de lavage</li>
1766 +<li>Grand vestibule</li>
1767 +<li>Rangement supplémentaire</li>
1768 +</ul>
1769 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-108-208-308-408-508-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
1770 + </div>
1771 + </div>
1772 +
1773 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-755-8">
1774 +
1775 + <h2 class="hotspot-title">Loué - Appartement 309: 5 ½</h2> <div class="hotspot-thumb">
1776 + <img decoding="async" width="300" height="287" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/109-209-309-409-509-300x287.jpg" class="attachment-medium size-medium lazyload" alt="plan Brio 109-209-309-409-509" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/287;" /> </div>
1777 + <div class="hotspot-content">
1778 + <p><strong>Superficie: 1309 pi2</strong></p>
1779 +<ul>
1780 +<li>3 chambres à coucher</li>
1781 +<li>Walk-in dans la chambre à coucher principale et secondaire</li>
1782 +<li>1 salle de bain</li>
1783 +<li>1 salle d’eau</li>
1784 +<li>1 salle de lavage</li>
1785 +<li>Grand vestibule</li>
1786 +<li>Rangement supplémentaire</li>
1787 +</ul>
1788 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-109-209-309-409-509-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
1789 + </div>
1790 + </div>
1791 +
1792 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-755-9">
1793 +
1794 + <h2 class="hotspot-title">Loué - Appartement 310: 5 ½</h2> <div class="hotspot-thumb">
1795 + <img decoding="async" width="203" height="300" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/110-210-310-410-510-203x300.jpg" class="attachment-medium size-medium lazyload" alt="plan Brio 110-210-310-410-510" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 203px; --smush-placeholder-aspect-ratio: 203/300;" /> </div>
1796 + <div class="hotspot-content">
1797 + <p><strong>Superficie: 1445 pi2</strong></p>
1798 +<ul>
1799 +<li>3 chambres à coucher</li>
1800 +<li>Walk-in dans la chambre à coucher principale</li>
1801 +<li>1 salle de bain</li>
1802 +<li>1 salle d’eau</li>
1803 +<li>1 salle de lavage</li>
1804 +<li>Garde-manger walk-in</li>
1805 +<li>Grand vestibule avec walk-in</li>
1806 +<li>Rangement supplémentaire</li>
1807 +</ul>
1808 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/110-210-310-410-510.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
1809 + </div>
1810 + </div>
1811 + </div>
1812 +
1813 +</div>
1814 + </div><div class="et_pb_tab et_pb_tab_3 clearfix">
1815 +
1816 +
1817 +
1818 +
1819 + <div class="et_pb_tab_content">
1820 +<style>
1821 + #hotspot-757 .hotspots-image-container,
1822 + #hotspot-757 .leaflet-container {
1823 + background: #ffffff }
1824 +
1825 + #hotspot-757 .hotspots-placeholder,
1826 + .featherlight .featherlight-content.lightbox-757 {
1827 + background: #686868;
1828 + border: 0 #686868 solid;
1829 + color: #ededed;
1830 + }
1831 +
1832 + #hotspot-757 .hotspot-title,
1833 + #hotspot-757 .bc-product__title a,
1834 + .featherlight .featherlight-content.lightbox-757 .hotspot-title,
1835 + .featherlight .featherlight-content.lightbox-757 .bc-product__title a {
1836 + color: #ffffff;
1837 + }
1838 +
1839 + #hotspot-757 .hotspot-disponible {
1840 + stroke-width: -1;
1841 + fill: #0c71c3;
1842 + fill-opacity: 0.31;
1843 + stroke: #0c71c3;
1844 + stroke-opacity: 0.31;
1845 + }
1846 + #hotspot-757 .hotspot-disponible:hover,
1847 + #hotspot-757 .hotspot-disponible:focus,
1848 + #hotspot-757 .hotspot-disponible.hotspot-active {
1849 + fill: #0c71c3;
1850 + fill-opacity: 0.81;
1851 + outline: none;
1852 + stroke: #0c71c3;
1853 + stroke-opacity: 0.31;
1854 + }
1855 + #hotspot-757 .hotspot-louer {
1856 + stroke-width: -1;
1857 + fill: #ffffff;
1858 + fill-opacity: 0.51;
1859 + stroke: #ffffff;
1860 + stroke-opacity: 0.31;
1861 + }
1862 + #hotspot-757 .hotspot-louer:hover,
1863 + #hotspot-757 .hotspot-louer:focus,
1864 + #hotspot-757 .hotspot-louer.hotspot-active {
1865 + fill: #eb6209;
1866 + fill-opacity: 0.51;
1867 + outline: none;
1868 + stroke: #ffffff;
1869 + stroke-opacity: 0.31;
1870 + }
1871 + #hotspot-757 .hotspot-reserver {
1872 + stroke-width: -1;
1873 + fill: #eb6209;
1874 + fill-opacity: 0.31;
1875 + stroke: #ffffff;
1876 + stroke-opacity: 0.31;
1877 + }
1878 + #hotspot-757 .hotspot-reserver:hover,
1879 + #hotspot-757 .hotspot-reserver:focus,
1880 + #hotspot-757 .hotspot-reserver.hotspot-active {
1881 + fill: #eb6209;
1882 + fill-opacity: 0.51;
1883 + outline: none;
1884 + stroke: #ffffff;
1885 + stroke-opacity: 0.31;
1886 + }
1887 + #hotspot-757 .hotspot-default {
1888 + stroke-width: -1;
1889 + fill: #0c71c3;
1890 + fill-opacity: 0.31;
1891 + stroke: #0c71c3;
1892 + stroke-opacity: 0.31;
1893 + }
1894 + #hotspot-757 .hotspot-default:hover,
1895 + #hotspot-757 .hotspot-default:focus,
1896 + #hotspot-757 .hotspot-default.hotspot-active {
1897 + fill: #0c71c3;
1898 + fill-opacity: 0.91;
1899 + outline: none;
1900 + stroke: #0c71c3;
1901 + stroke-opacity: 0.31;
1902 + }
1903 + #hotspot-757 .leaflet-tooltip,
1904 + #hotspot-757 .leaflet-rrose-content-wrapper {
1905 + background: #686868;
1906 + border-color: #686868;
1907 + color: #ededed;
1908 + }
1909 +
1910 + #hotspot-757 a.leaflet-rrose-close-button {
1911 + color: #ffffff;
1912 + }
1913 +
1914 + #hotspot-757 .leaflet-rrose-tip {
1915 + background: #686868;
1916 + }
1917 +
1918 + #hotspot-757 .leaflet-popup-scrolled {
1919 + border-bottom-color: #ededed;
1920 + border-top-color: #ededed;
1921 + }
1922 +
1923 + #hotspot-757 .leaflet-tooltip-top:before {
1924 + border-top-color: #686868;
1925 + }
1926 +
1927 + #hotspot-757 .leaflet-tooltip-bottom:before {
1928 + border-bottom-color: #686868;
1929 + }
1930 + #hotspot-757 .leaflet-tooltip-left:before {
1931 + border-left-color: #686868;
1932 + }
1933 + #hotspot-757 .leaflet-tooltip-right:before {
1934 + border-right-color: #686868;
1935 + }
1936 +</style>
1937 +
1938 +
1939 + <div class="hotspots-container layout-left event-click" id="hotspot-757" data-layout="left" data-trigger="click">
1940 + <div class="hotspots-interaction">
1941 + <div class="hotspots-placeholder" id="content-hotspot-757">
1942 + <div class="hotspot-initial">
1943 + <h2 class="hotspot-title">
1944 + Le Brio: plan du 4e étage </h2>
1945 + <div class="hotspot-content">
1946 + <p>Cliquez sur le numéro d'appartement pour obtenir plus d'information sur celui-ci.</p>
1947 + </div>
1948 + </div>
1949 + </div>
1950 +<div class="hotspots-image-container">
1951 + <img
1952 + width="1080"
1953 + height="828"
1954 + src="https://immeublesbrio.com/wp-content/uploads/2019/12/4e.jpg"
1955 + alt="plan 4e étage"
1956 + class="hotspots-image skip-lazy"
1957 + usemap="#hotspots-image-757"
1958 + data-image-title="Le Brio: plan du 4e étage"
1959 + data-image-description="Cliquez sur le numéro d'appartement pour obtenir plus d'information sur celui-ci."
1960 + data-event-trigger="click"
1961 + data-always-visible="on"
1962 + data-id="757"
1963 + data-no-lazy="1"
1964 + data-lazy-src=""
1965 + data-lazy="false"
1966 + loading="eager"
1967 + data-skip-lazy="1"
1968 + >
1969 +</div> </div>
1970 + <map name="hotspots-image-757" class="hotspots-map">
1971 + <area
1972 + shape="poly"
1973 + coords="1008,563,1009,743,771,743,771,595,853,597,854,563"
1974 + href="#hotspot-hotspot-757-0"
1975 + rel=""
1976 + title="Loué - Appartement 401: 5 ½"
1977 + alt="Loué - Appartement 401: 5 ½"
1978 + data-action=""
1979 + data-color-scheme="louer"
1980 + data-id="area-hotspot-757-0"
1981 + target=""
1982 + class="more-info-area"
1983 + >
1984 + <area
1985 + shape="poly"
1986 + coords="748,378,1008,380,1008,558,847,558,848,554,814,553,814,513,748,513"
1987 + href="#hotspot-hotspot-757-1"
1988 + rel=""
1989 + title="Loué - Appartement 402: 5 ½"
1990 + alt="Loué - Appartement 402: 5 ½"
1991 + data-action=""
1992 + data-color-scheme="louer"
1993 + data-id="area-hotspot-757-1"
1994 + target=""
1995 + class="more-info-area"
1996 + >
1997 + <area
1998 + shape="poly"
1999 + coords="766,596,765,744,555,744,553,579,619,580,618,587,654,587,653,578,673,579,674,596"
2000 + href="#hotspot-hotspot-757-2"
2001 + rel=""
2002 + title="Loué- Appartement 403: 4 ½"
2003 + alt="Loué- Appartement 403: 4 ½"
2004 + data-action=""
2005 + data-color-scheme="louer"
2006 + data-id="area-hotspot-757-2"
2007 + target=""
2008 + class="more-info-area"
2009 + >
2010 + <area
2011 + shape="poly"
2012 + coords="741,410,741,514,715,513,715,542,578,543,578,538,540,537,541,543,447,542,446,525,432,524,431,461,442,462,441,409"
2013 + href="#hotspot-hotspot-757-3"
2014 + rel=""
2015 + title="Loué - Appartement 404: 5 ½"
2016 + alt="Loué - Appartement 404: 5 ½"
2017 + data-action=""
2018 + data-color-scheme="louer"
2019 + data-id="area-hotspot-757-3"
2020 + target=""
2021 + class="more-info-area"
2022 + >
2023 + <area
2024 + shape="poly"
2025 + coords="549,578,549,743,348,744,348,561,401,561,401,578,407,579,407,588,436,589,437,579,447,578,448,587,482,585,483,578"
2026 + href="#hotspot-hotspot-757-4"
2027 + rel=""
2028 + title="Loué - Appartement 405: 4 ½"
2029 + alt="Loué - Appartement 405: 4 ½"
2030 + data-action=""
2031 + data-color-scheme="louer"
2032 + data-id="area-hotspot-757-4"
2033 + target=""
2034 + class="more-info-area"
2035 + >
2036 + <area
2037 + shape="poly"
2038 + coords="342,552,344,743,210,745,209,740,149,740,149,679,113,678,115,642,109,643,110,553"
2039 + href="#hotspot-hotspot-757-5"
2040 + rel=""
2041 + title="Loué - Appartement 406: 5 ½"
2042 + alt="Loué - Appartement 406: 5 ½"
2043 + data-action=""
2044 + data-color-scheme="louer"
2045 + data-id="area-hotspot-757-5"
2046 + target=""
2047 + class="more-info-area"
2048 + >
2049 + <area
2050 + shape="poly"
2051 + coords="109,403,307,404,306,461,300,462,300,499,308,497,307,548,109,548"
2052 + href="#hotspot-hotspot-757-6"
2053 + rel=""
2054 + title="Loué - Appartement 407: 3 ½"
2055 + alt="Loué - Appartement 407: 3 ½"
2056 + data-action=""
2057 + data-color-scheme="louer"
2058 + data-id="area-hotspot-757-6"
2059 + target=""
2060 + class="more-info-area"
2061 + >
2062 + <area
2063 + shape="poly"
2064 + coords="109,259,264,259,265,304,305,306,307,396,110,403"
2065 + href="#hotspot-hotspot-757-7"
2066 + rel=""
2067 + title="Disponible- Appartement 408: 3 ½"
2068 + alt="Disponible- Appartement 408: 3 ½"
2069 + data-action=""
2070 + data-color-scheme="disponible"
2071 + data-id="area-hotspot-757-7"
2072 + target=""
2073 + class="more-info-area"
2074 + >
2075 + <area
2076 + shape="poly"
2077 + coords="298,44,299,269,269,270,269,253,108,254,111,45"
2078 + href="#hotspot-hotspot-757-8"
2079 + rel=""
2080 + title="Loué - Appartement 409: 5 ½"
2081 + alt="Loué - Appartement 409: 5 ½"
2082 + data-action=""
2083 + data-color-scheme="louer"
2084 + data-id="area-hotspot-757-8"
2085 + target=""
2086 + class="more-info-area"
2087 + >
2088 + <area
2089 + shape="poly"
2090 + coords="305,43,464,43,464,250,446,249,445,355,346,355,346,269,306,268"
2091 + href="#hotspot-hotspot-757-9"
2092 + rel=""
2093 + title="Loué - Appartement 410: 5 ½"
2094 + alt="Loué - Appartement 410: 5 ½"
2095 + data-action=""
2096 + data-color-scheme="louer"
2097 + data-id="area-hotspot-757-9"
2098 + target=""
2099 + class="more-info-area"
2100 + >
2101 + </map>
2102 +
2103 +
2104 +
2105 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-757-0">
2106 +
2107 + <h2 class="hotspot-title">Loué - Appartement 401: 5 ½</h2> <div class="hotspot-thumb">
2108 + <img decoding="async" width="300" height="284" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-300x284.jpg" class="attachment-medium size-medium lazyload" alt="plan brio 101-201-301-401-501" data-srcset="https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-300x284.jpg 300w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-1024x970.jpg 1024w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-768x727.jpg 768w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-1536x1455.jpg 1536w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-2048x1939.jpg 2048w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-1080x1023.jpg 1080w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-1280x1212.jpg 1280w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-980x928.jpg 980w, https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-480x455.jpg 480w" data-sizes="(max-width: 300px) 100vw, 300px" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/284;" /> </div>
2109 + <div class="hotspot-content">
2110 + <p><strong>Superficie: 1306 pi2</strong></p>
2111 +<ul>
2112 +<li>3 chambres à coucher</li>
2113 +<li>Walk-in dans la chambre à coucher principale et secondaire</li>
2114 +<li>1 salle de bain</li>
2115 +<li>1 salle de lavage</li>
2116 +<li>Garde-manger walk-in</li>
2117 +<li>Grand vestibule avec walk-in</li>
2118 +</ul>
2119 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-101-201-301-401-501-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
2120 + </div>
2121 + </div>
2122 +
2123 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-757-1">
2124 +
2125 + <h2 class="hotspot-title">Loué - Appartement 402: 5 ½</h2> <div class="hotspot-thumb">
2126 + <img decoding="async" width="300" height="259" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/102-202-302-402-502-300x259.jpg" class="attachment-medium size-medium lazyload" alt="plan brio 102-202-302-402-502" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/259;" /> </div>
2127 + <div class="hotspot-content">
2128 + <p><strong>Superficie: 1421 pi2</strong></p>
2129 +<ul>
2130 +<li>3 chambres à coucher</li>
2131 +<li>Walk-in dans la chambre à coucher principale</li>
2132 +<li>1 salle de bain</li>
2133 +<li>1 salle d'eau</li>
2134 +<li>1 salle de lavage</li>
2135 +<li>Garde-manger walk-in</li>
2136 +<li>Grand vestibule</li>
2137 +<li>Rangement supplémentaire</li>
2138 +</ul>
2139 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-102-202-302-402-502-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
2140 + </div>
2141 + </div>
2142 +
2143 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-757-2">
2144 +
2145 + <h2 class="hotspot-title">Loué- Appartement 403: 4 ½</h2> <div class="hotspot-thumb">
2146 + <img decoding="async" width="300" height="300" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/103-203-303-403-503-300x300.jpg" class="attachment-medium size-medium lazyload" alt="plan brio 103-203-303-403-503" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/300;" /> </div>
2147 + <div class="hotspot-content">
2148 + <p><strong>Superficie: 1073 pi2</strong></p>
2149 +<ul>
2150 +<li>2 chambres à coucher</li>
2151 +<li>Walk-in dans les chambres à coucher</li>
2152 +<li>1 salle de bain</li>
2153 +<li>1 salle de lavage</li>
2154 +<li>Grand vestibule avec walk-in</li>
2155 +<li>Garde-manger walk-in</li>
2156 +</ul>
2157 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-103-203-303-403-503-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
2158 + </div>
2159 + </div>
2160 +
2161 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-757-3">
2162 +
2163 + <h2 class="hotspot-title">Loué - Appartement 404: 5 ½</h2> <div class="hotspot-thumb">
2164 + <img decoding="async" width="300" height="179" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/204-304-404-504-300x179.jpg" class="attachment-medium size-medium lazyload" alt="brio plan 204-304-404-504" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/179;" /> </div>
2165 + <div class="hotspot-content">
2166 + <p><strong>Superficie: 1283 pi2</strong></p>
2167 +<ul>
2168 +<li>3 chambres à coucher</li>
2169 +<li>Walk-in dans la chambre à coucher principale</li>
2170 +<li>1 salle de bain</li>
2171 +<li>1 salle de lavage</li>
2172 +<li>Garde-manger walk-in</li>
2173 +<li>Grand vestibule avec walk-in</li>
2174 +</ul>
2175 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-204-304-404-504-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
2176 + </div>
2177 + </div>
2178 +
2179 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-757-4">
2180 +
2181 + <h2 class="hotspot-title">Loué - Appartement 405: 4 ½</h2> <div class="hotspot-thumb">
2182 + <img decoding="async" width="269" height="300" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/105-205-305-405-505-269x300.jpg" class="attachment-medium size-medium lazyload" alt="plan Brio 105-205-305-405-505" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 269px; --smush-placeholder-aspect-ratio: 269/300;" /> </div>
2183 + <div class="hotspot-content">
2184 + <p><strong>Superficie: 1104 pi2</strong></p>
2185 +<ul>
2186 +<li>2 chambres à coucher</li>
2187 +<li>Walk-in dans la chambre à coucher principale</li>
2188 +<li>1 salle de bain</li>
2189 +<li>1 salle de lavage</li>
2190 +<li>Garde-manger walk-in</li>
2191 +<li>Grand vestibule</li>
2192 +<li>Rangement supplémentaire</li>
2193 +</ul>
2194 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-105-205-305-405-505-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
2195 + </div>
2196 + </div>
2197 +
2198 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-757-5">
2199 +
2200 + <h2 class="hotspot-title">Loué - Appartement 406: 5 ½</h2> <div class="hotspot-thumb">
2201 + <img decoding="async" width="300" height="255" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/106-206-306-406-506-300x255.jpg" class="attachment-medium size-medium lazyload" alt="plan Brio 106-206-306-406-506" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/255;" /> </div>
2202 + <div class="hotspot-content">
2203 + <p><strong>Superficie: 1345 pi2</strong></p>
2204 +<ul>
2205 +<li>3 chambres à coucher</li>
2206 +<li>Walk-in dans la chambre à coucher principale et secondaire</li>
2207 +<li>1 salle de bain</li>
2208 +<li>1 salle d’eau</li>
2209 +<li>Grand vestibule</li>
2210 +<li>Rangement supplémentaire</li>
2211 +</ul>
2212 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-106-206-306-406-506-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
2213 + </div>
2214 + </div>
2215 +
2216 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-757-6">
2217 +
2218 + <h2 class="hotspot-title">Loué - Appartement 407: 3 ½</h2> <div class="hotspot-thumb">
2219 + <img decoding="async" width="300" height="189" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/plan-207-307-407-507-300x189.jpg" class="attachment-medium size-medium lazyload" alt="brio plan 207-307-407-507" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/189;" /> </div>
2220 + <div class="hotspot-content">
2221 + <p><strong>Superficie: 930 pi2</strong></p>
2222 +<ul>
2223 +<li>1 chambre à coucher avec walk-in</li>
2224 +<li>1 salle de bain</li>
2225 +<li>1 salle de lavage</li>
2226 +<li>Grand vestibule</li>
2227 +<li>Rangement supplémentaire</li>
2228 +</ul>
2229 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-207-307-407-507-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
2230 + </div>
2231 + </div>
2232 +
2233 + <div class="hotspot-info da-style-disponible" id="hotspot-hotspot-757-7">
2234 +
2235 + <h2 class="hotspot-title">Disponible- Appartement 408: 3 ½</h2> <div class="hotspot-thumb">
2236 + <img decoding="async" width="300" height="184" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/108-208-308-408-508-300x184.jpg" class="attachment-medium size-medium lazyload" alt="plan Brio 108-208-308-408-508" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/184;" /> </div>
2237 + <div class="hotspot-content">
2238 + <p><strong>Superficie: 830 pi2</strong></p>
2239 +<ul>
2240 +<li>1 chambre à coucher avec walk-in</li>
2241 +<li>1 salle de bain</li>
2242 +<li>1 salle de lavage</li>
2243 +<li>Grand vestibule</li>
2244 +<li>Rangement supplémentaire</li>
2245 +</ul>
2246 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-108-208-308-408-508-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
2247 + </div>
2248 + </div>
2249 +
2250 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-757-8">
2251 +
2252 + <h2 class="hotspot-title">Loué - Appartement 409: 5 ½</h2> <div class="hotspot-thumb">
2253 + <img decoding="async" width="300" height="287" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/109-209-309-409-509-300x287.jpg" class="attachment-medium size-medium lazyload" alt="plan Brio 109-209-309-409-509" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/287;" /> </div>
2254 + <div class="hotspot-content">
2255 + <p><strong>Superficie: 1309 pi2</strong></p>
2256 +<ul>
2257 +<li>3 chambres à coucher</li>
2258 +<li>Walk-in dans la chambre à coucher principale et secondaire</li>
2259 +<li>1 salle de bain</li>
2260 +<li>1 salle d’eau</li>
2261 +<li>1 salle de lavage</li>
2262 +<li>Grand vestibule</li>
2263 +<li>Rangement supplémentaire</li>
2264 +</ul>
2265 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-109-209-309-409-509-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
2266 + </div>
2267 + </div>
2268 +
2269 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-757-9">
2270 +
2271 + <h2 class="hotspot-title">Loué - Appartement 410: 5 ½</h2> <div class="hotspot-thumb">
2272 + <img decoding="async" width="203" height="300" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/110-210-310-410-510-203x300.jpg" class="attachment-medium size-medium lazyload" alt="plan Brio 110-210-310-410-510" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 203px; --smush-placeholder-aspect-ratio: 203/300;" /> </div>
2273 + <div class="hotspot-content">
2274 + <p><strong>Superficie: 1445 pi2</strong></p>
2275 +<ul>
2276 +<li>3 chambres à coucher</li>
2277 +<li>Walk-in dans la chambre à coucher principale</li>
2278 +<li>1 salle de bain</li>
2279 +<li>1 salle d’eau</li>
2280 +<li>1 salle de lavage</li>
2281 +<li>Garde-manger walk-in</li>
2282 +<li>Grand vestibule avec walk-in</li>
2283 +<li>Rangement supplémentaire</li>
2284 +</ul>
2285 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/110-210-310-410-510.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
2286 + </div>
2287 + </div>
2288 + </div>
2289 +
2290 +</div>
2291 + </div><div class="et_pb_tab et_pb_tab_4 clearfix">
2292 +
2293 +
2294 +
2295 +
2296 + <div class="et_pb_tab_content">
2297 +<style>
2298 + #hotspot-759 .hotspots-image-container,
2299 + #hotspot-759 .leaflet-container {
2300 + background: #ffffff }
2301 +
2302 + #hotspot-759 .hotspots-placeholder,
2303 + .featherlight .featherlight-content.lightbox-759 {
2304 + background: #686868;
2305 + border: 0 #686868 solid;
2306 + color: #ededed;
2307 + }
2308 +
2309 + #hotspot-759 .hotspot-title,
2310 + #hotspot-759 .bc-product__title a,
2311 + .featherlight .featherlight-content.lightbox-759 .hotspot-title,
2312 + .featherlight .featherlight-content.lightbox-759 .bc-product__title a {
2313 + color: #ffffff;
2314 + }
2315 +
2316 + #hotspot-759 .hotspot-disponible {
2317 + stroke-width: -1;
2318 + fill: #0c71c3;
2319 + fill-opacity: 0.31;
2320 + stroke: #0c71c3;
2321 + stroke-opacity: 0.31;
2322 + }
2323 + #hotspot-759 .hotspot-disponible:hover,
2324 + #hotspot-759 .hotspot-disponible:focus,
2325 + #hotspot-759 .hotspot-disponible.hotspot-active {
2326 + fill: #0c71c3;
2327 + fill-opacity: 0.81;
2328 + outline: none;
2329 + stroke: #0c71c3;
2330 + stroke-opacity: 0.31;
2331 + }
2332 + #hotspot-759 .hotspot-louer {
2333 + stroke-width: -1;
2334 + fill: #ffffff;
2335 + fill-opacity: 0.51;
2336 + stroke: #ffffff;
2337 + stroke-opacity: 0.31;
2338 + }
2339 + #hotspot-759 .hotspot-louer:hover,
2340 + #hotspot-759 .hotspot-louer:focus,
2341 + #hotspot-759 .hotspot-louer.hotspot-active {
2342 + fill: #eb6209;
2343 + fill-opacity: 0.51;
2344 + outline: none;
2345 + stroke: #ffffff;
2346 + stroke-opacity: 0.31;
2347 + }
2348 + #hotspot-759 .hotspot-reserver {
2349 + stroke-width: -1;
2350 + fill: #eb6209;
2351 + fill-opacity: 0.31;
2352 + stroke: #ffffff;
2353 + stroke-opacity: 0.31;
2354 + }
2355 + #hotspot-759 .hotspot-reserver:hover,
2356 + #hotspot-759 .hotspot-reserver:focus,
2357 + #hotspot-759 .hotspot-reserver.hotspot-active {
2358 + fill: #eb6209;
2359 + fill-opacity: 0.51;
2360 + outline: none;
2361 + stroke: #ffffff;
2362 + stroke-opacity: 0.31;
2363 + }
2364 + #hotspot-759 .hotspot-default {
2365 + stroke-width: -1;
2366 + fill: #0c71c3;
2367 + fill-opacity: 0.31;
2368 + stroke: #0c71c3;
2369 + stroke-opacity: 0.31;
2370 + }
2371 + #hotspot-759 .hotspot-default:hover,
2372 + #hotspot-759 .hotspot-default:focus,
2373 + #hotspot-759 .hotspot-default.hotspot-active {
2374 + fill: #0c71c3;
2375 + fill-opacity: 0.91;
2376 + outline: none;
2377 + stroke: #0c71c3;
2378 + stroke-opacity: 0.31;
2379 + }
2380 + #hotspot-759 .leaflet-tooltip,
2381 + #hotspot-759 .leaflet-rrose-content-wrapper {
2382 + background: #686868;
2383 + border-color: #686868;
2384 + color: #ededed;
2385 + }
2386 +
2387 + #hotspot-759 a.leaflet-rrose-close-button {
2388 + color: #ffffff;
2389 + }
2390 +
2391 + #hotspot-759 .leaflet-rrose-tip {
2392 + background: #686868;
2393 + }
2394 +
2395 + #hotspot-759 .leaflet-popup-scrolled {
2396 + border-bottom-color: #ededed;
2397 + border-top-color: #ededed;
2398 + }
2399 +
2400 + #hotspot-759 .leaflet-tooltip-top:before {
2401 + border-top-color: #686868;
2402 + }
2403 +
2404 + #hotspot-759 .leaflet-tooltip-bottom:before {
2405 + border-bottom-color: #686868;
2406 + }
2407 + #hotspot-759 .leaflet-tooltip-left:before {
2408 + border-left-color: #686868;
2409 + }
2410 + #hotspot-759 .leaflet-tooltip-right:before {
2411 + border-right-color: #686868;
2412 + }
2413 +</style>
2414 +
2415 +
2416 + <div class="hotspots-container layout-left event-click" id="hotspot-759" data-layout="left" data-trigger="click">
2417 + <div class="hotspots-interaction">
2418 + <div class="hotspots-placeholder" id="content-hotspot-759">
2419 + <div class="hotspot-initial">
2420 + <h2 class="hotspot-title">
2421 + Le Brio: plan du 5e étage </h2>
2422 + <div class="hotspot-content">
2423 + <p>Cliquez sur le numéro d'appartement pour obtenir plus d'information sur celui-ci.</p>
2424 + </div>
2425 + </div>
2426 + </div>
2427 +<div class="hotspots-image-container">
2428 + <img
2429 + width="1080"
2430 + height="828"
2431 + src="https://immeublesbrio.com/wp-content/uploads/2019/12/5e.jpg"
2432 + alt="plan 5e étage"
2433 + class="hotspots-image skip-lazy"
2434 + usemap="#hotspots-image-759"
2435 + data-image-title="Le Brio: plan du 5e étage"
2436 + data-image-description="Cliquez sur le numéro d'appartement pour obtenir plus d'information sur celui-ci."
2437 + data-event-trigger="click"
2438 + data-always-visible="on"
2439 + data-id="759"
2440 + data-no-lazy="1"
2441 + data-lazy-src=""
2442 + data-lazy="false"
2443 + loading="eager"
2444 + data-skip-lazy="1"
2445 + >
2446 +</div> </div>
2447 + <map name="hotspots-image-759" class="hotspots-map">
2448 + <area
2449 + shape="poly"
2450 + coords="856,564,1009,564,1008,743,770,744,771,599,855,597"
2451 + href="#hotspot-hotspot-759-0"
2452 + rel=""
2453 + title="Loué - Appartement 501: 5 ½"
2454 + alt="Loué - Appartement 501: 5 ½"
2455 + data-action=""
2456 + data-color-scheme="louer"
2457 + data-id="area-hotspot-759-0"
2458 + target=""
2459 + class="more-info-area"
2460 + >
2461 + <area
2462 + shape="poly"
2463 + coords="1009,380,1009,557,847,558,848,554,814,554,814,512,748,512,748,380"
2464 + href="#hotspot-hotspot-759-1"
2465 + rel=""
2466 + title="Loué - Appartement 502: 5 ½"
2467 + alt="Loué - Appartement 502: 5 ½"
2468 + data-action=""
2469 + data-color-scheme="louer"
2470 + data-id="area-hotspot-759-1"
2471 + target=""
2472 + class="more-info-area"
2473 + >
2474 + <area
2475 + shape="poly"
2476 + coords="765,597,765,746,554,743,555,580,616,579,616,586,654,585,653,578,674,578,674,596"
2477 + href="#hotspot-hotspot-759-2"
2478 + rel=""
2479 + title="Loué - Appartement 503: 4 ½"
2480 + alt="Loué - Appartement 503: 4 ½"
2481 + data-action=""
2482 + data-color-scheme="louer"
2483 + data-id="area-hotspot-759-2"
2484 + target=""
2485 + class="more-info-area"
2486 + >
2487 + <area
2488 + shape="poly"
2489 + coords="741,411,741,513,715,514,715,543,577,544,578,536,542,536,542,543,446,544,446,525,432,525,432,463,440,463,441,410"
2490 + href="#hotspot-hotspot-759-3"
2491 + rel=""
2492 + title="Loué - Appartement 504: 5 ½"
2493 + alt="Loué - Appartement 504: 5 ½"
2494 + data-action=""
2495 + data-color-scheme="louer"
2496 + data-id="area-hotspot-759-3"
2497 + target=""
2498 + class="more-info-area"
2499 + >
2500 + <area
2501 + shape="poly"
2502 + coords="550,578,549,743,347,743,348,561,400,561,401,579,408,579,408,588,436,587,437,580,446,579,448,586,485,586,485,580"
2503 + href="#hotspot-hotspot-759-4"
2504 + rel=""
2505 + title="Loué - Appartement 505: 4 ½"
2506 + alt="Loué - Appartement 505: 4 ½"
2507 + data-action=""
2508 + data-color-scheme="louer"
2509 + data-id="area-hotspot-759-4"
2510 + target=""
2511 + class="more-info-area"
2512 + >
2513 + <area
2514 + shape="poly"
2515 + coords="110,554,343,553,344,744,211,746,211,740,148,740,148,676,114,677,115,644,109,644"
2516 + href="#hotspot-hotspot-759-5"
2517 + rel=""
2518 + title="Loué - Appartement 506: 5 ½"
2519 + alt="Loué - Appartement 506: 5 ½"
2520 + data-action=""
2521 + data-color-scheme="louer"
2522 + data-id="area-hotspot-759-5"
2523 + target=""
2524 + class="more-info-area"
2525 + >
2526 + <area
2527 + shape="poly"
2528 + coords="110,405,308,403,308,463,299,464,300,498,306,498,306,548,109,549"
2529 + href="#hotspot-hotspot-759-6"
2530 + rel=""
2531 + title="Loué - Appartement 507: 3 ½"
2532 + alt="Loué - Appartement 507: 3 ½"
2533 + data-action=""
2534 + data-color-scheme="louer"
2535 + data-id="area-hotspot-759-6"
2536 + target=""
2537 + class="more-info-area"
2538 + >
2539 + <area
2540 + shape="poly"
2541 + coords="110,260,264,260,264,304,308,305,307,397,110,397"
2542 + href="#hotspot-hotspot-759-7"
2543 + rel=""
2544 + title="Loué - Appartement 508: 3 ½"
2545 + alt="Loué - Appartement 508: 3 ½"
2546 + data-action=""
2547 + data-color-scheme="louer"
2548 + data-id="area-hotspot-759-7"
2549 + target=""
2550 + class="more-info-area"
2551 + >
2552 + <area
2553 + shape="poly"
2554 + coords="110,43,299,44,300,269,270,268,269,256,108,253"
2555 + href="#hotspot-hotspot-759-8"
2556 + rel=""
2557 + title="Loué - Appartement 509: 5 ½"
2558 + alt="Loué - Appartement 509: 5 ½"
2559 + data-action=""
2560 + data-color-scheme="louer"
2561 + data-id="area-hotspot-759-8"
2562 + target=""
2563 + class="more-info-area"
2564 + >
2565 + <area
2566 + shape="poly"
2567 + coords="305,44,464,44,466,251,448,250,447,355,347,356,348,268,303,267"
2568 + href="#hotspot-hotspot-759-9"
2569 + rel=""
2570 + title="Loué - Appartement 510: 5 ½"
2571 + alt="Loué - Appartement 510: 5 ½"
2572 + data-action=""
2573 + data-color-scheme="louer"
2574 + data-id="area-hotspot-759-9"
2575 + target=""
2576 + class="more-info-area"
2577 + >
2578 + </map>
2579 +
2580 +
2581 +
2582 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-759-0">
2583 +
2584 + <h2 class="hotspot-title">Loué - Appartement 501: 5 ½</h2> <div class="hotspot-thumb">
2585 + <img decoding="async" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/101-201-301-401-501-scaled.jpg" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" class="lazyload" style="--smush-placeholder-width: 2560px; --smush-placeholder-aspect-ratio: 2560/2424;">
2586 + </div>
2587 + <div class="hotspot-content">
2588 + <p><strong>Superficie: 1306 pi2</strong></p>
2589 +<ul>
2590 +<li>3 chambres à coucher</li>
2591 +<li>Walk-in dans la chambre à coucher principale et secondaire</li>
2592 +<li>1 salle de bain</li>
2593 +<li>1 salle de lavage</li>
2594 +<li>Garde-manger walk-in</li>
2595 +<li>Grand vestibule avec walk-in</li>
2596 +</ul>
2597 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-101-201-301-401-501-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
2598 + </div>
2599 + </div>
2600 +
2601 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-759-1">
2602 +
2603 + <h2 class="hotspot-title">Loué - Appartement 502: 5 ½</h2> <div class="hotspot-thumb">
2604 + <img decoding="async" width="300" height="259" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/102-202-302-402-502-300x259.jpg" class="attachment-medium size-medium lazyload" alt="plan brio 102-202-302-402-502" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/259;" /> </div>
2605 + <div class="hotspot-content">
2606 + <p><strong>Superficie: 1421 pi2</strong></p>
2607 +<ul>
2608 +<li>3 chambres à coucher</li>
2609 +<li>Walk-in dans la chambre à coucher principale</li>
2610 +<li>1 salle de bain</li>
2611 +<li>1 salle d'eau</li>
2612 +<li>1 salle de lavage</li>
2613 +<li>Garde-manger walk-in</li>
2614 +<li>Grand vestibule</li>
2615 +<li>Rangement supplémentaire</li>
2616 +</ul>
2617 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-102-202-302-402-502-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
2618 + </div>
2619 + </div>
2620 +
2621 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-759-2">
2622 +
2623 + <h2 class="hotspot-title">Loué - Appartement 503: 4 ½</h2> <div class="hotspot-thumb">
2624 + <img decoding="async" width="300" height="300" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/103-203-303-403-503-300x300.jpg" class="attachment-medium size-medium lazyload" alt="plan brio 103-203-303-403-503" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/300;" /> </div>
2625 + <div class="hotspot-content">
2626 + <p><strong>Superficie: 1073 pi2</strong></p>
2627 +<ul>
2628 +<li>2 chambres à coucher</li>
2629 +<li>Walk-in dans les chambres à coucher</li>
2630 +<li>1 salle de bain</li>
2631 +<li>1 salle de lavage</li>
2632 +<li>Grand vestibule avec walk-in</li>
2633 +<li>Garde-manger walk-in</li>
2634 +</ul>
2635 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-103-203-303-403-503-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
2636 + </div>
2637 + </div>
2638 +
2639 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-759-3">
2640 +
2641 + <h2 class="hotspot-title">Loué - Appartement 504: 5 ½</h2> <div class="hotspot-thumb">
2642 + <img decoding="async" width="300" height="179" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/204-304-404-504-300x179.jpg" class="attachment-medium size-medium lazyload" alt="brio plan 204-304-404-504" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/179;" /> </div>
2643 + <div class="hotspot-content">
2644 + <p><strong>Superficie: 1283 pi2</strong></p>
2645 +<ul>
2646 +<li>3 chambres à coucher</li>
2647 +<li>Walk-in dans la chambre à coucher principale</li>
2648 +<li>1 salle de bain</li>
2649 +<li>1 salle de lavage</li>
2650 +<li>Garde-manger walk-in</li>
2651 +<li>Grand vestibule avec walk-in</li>
2652 +</ul>
2653 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-204-304-404-504-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
2654 + </div>
2655 + </div>
2656 +
2657 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-759-4">
2658 +
2659 + <h2 class="hotspot-title">Loué - Appartement 505: 4 ½</h2> <div class="hotspot-thumb">
2660 + <img decoding="async" width="269" height="300" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/105-205-305-405-505-269x300.jpg" class="attachment-medium size-medium lazyload" alt="plan Brio 105-205-305-405-505" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 269px; --smush-placeholder-aspect-ratio: 269/300;" /> </div>
2661 + <div class="hotspot-content">
2662 + <p><strong>Superficie: 1104 pi2</strong></p>
2663 +<ul>
2664 +<li>2 chambres à coucher</li>
2665 +<li>Walk-in dans la chambre à coucher principale</li>
2666 +<li>1 salle de bain</li>
2667 +<li>1 salle de lavage</li>
2668 +<li>Garde-manger walk-in</li>
2669 +<li>Grand vestibule</li>
2670 +<li>Rangement supplémentaire</li>
2671 +</ul>
2672 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-105-205-305-405-505-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
2673 + </div>
2674 + </div>
2675 +
2676 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-759-5">
2677 +
2678 + <h2 class="hotspot-title">Loué - Appartement 506: 5 ½</h2> <div class="hotspot-thumb">
2679 + <img decoding="async" width="300" height="255" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/106-206-306-406-506-300x255.jpg" class="attachment-medium size-medium lazyload" alt="plan Brio 106-206-306-406-506" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/255;" /> </div>
2680 + <div class="hotspot-content">
2681 + <p><strong>Superficie: 1345 pi2</strong></p>
2682 +<ul>
2683 +<li>3 chambres à coucher</li>
2684 +<li>Walk-in dans la chambre à coucher principale et secondaire</li>
2685 +<li>1 salle de bain</li>
2686 +<li>1 salle d’eau</li>
2687 +<li>Grand vestibule</li>
2688 +<li>Rangement supplémentaire</li>
2689 +</ul>
2690 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-106-206-306-406-506-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
2691 + </div>
2692 + </div>
2693 +
2694 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-759-6">
2695 +
2696 + <h2 class="hotspot-title">Loué - Appartement 507: 3 ½</h2> <div class="hotspot-thumb">
2697 + <img decoding="async" width="300" height="189" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/plan-207-307-407-507-300x189.jpg" class="attachment-medium size-medium lazyload" alt="brio plan 207-307-407-507" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/189;" /> </div>
2698 + <div class="hotspot-content">
2699 + <p><strong>Superficie: 930 pi2</strong></p>
2700 +<ul>
2701 +<li>1 chambre à coucher avec walk-in</li>
2702 +<li>1 salle de bain</li>
2703 +<li>1 salle de lavage</li>
2704 +<li>Grand vestibule</li>
2705 +<li>Rangement supplémentaire</li>
2706 +</ul>
2707 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-207-307-407-507-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
2708 + </div>
2709 + </div>
2710 +
2711 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-759-7">
2712 +
2713 + <h2 class="hotspot-title">Loué - Appartement 508: 3 ½</h2> <div class="hotspot-thumb">
2714 + <img decoding="async" width="300" height="184" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/108-208-308-408-508-300x184.jpg" class="attachment-medium size-medium lazyload" alt="plan Brio 108-208-308-408-508" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/184;" /> </div>
2715 + <div class="hotspot-content">
2716 + <p><strong>Superficie: 830 pi2</strong></p>
2717 +<ul>
2718 +<li>1 chambre à coucher avec walk-in</li>
2719 +<li>1 salle de bain</li>
2720 +<li>1 salle de lavage</li>
2721 +<li>Grand vestibule</li>
2722 +<li>Rangement supplémentaire</li>
2723 +</ul>
2724 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-108-208-308-408-508-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
2725 + </div>
2726 + </div>
2727 +
2728 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-759-8">
2729 +
2730 + <h2 class="hotspot-title">Loué - Appartement 509: 5 ½</h2> <div class="hotspot-thumb">
2731 + <img decoding="async" width="300" height="287" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/109-209-309-409-509-300x287.jpg" class="attachment-medium size-medium lazyload" alt="plan Brio 109-209-309-409-509" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 300px; --smush-placeholder-aspect-ratio: 300/287;" /> </div>
2732 + <div class="hotspot-content">
2733 + <p><strong>Superficie: 1309 pi2</strong></p>
2734 +<ul>
2735 +<li>3 chambres à coucher</li>
2736 +<li>Walk-in dans la chambre à coucher principale et secondaire</li>
2737 +<li>1 salle de bain</li>
2738 +<li>1 salle d’eau</li>
2739 +<li>1 salle de lavage</li>
2740 +<li>Grand vestibule</li>
2741 +<li>Rangement supplémentaire</li>
2742 +</ul>
2743 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/brio-logement-109-209-309-409-509-scaled.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
2744 + </div>
2745 + </div>
2746 +
2747 + <div class="hotspot-info da-style-louer" id="hotspot-hotspot-759-9">
2748 +
2749 + <h2 class="hotspot-title">Loué - Appartement 510: 5 ½</h2> <div class="hotspot-thumb">
2750 + <img decoding="async" width="203" height="300" data-src="https://immeublesbrio.com/wp-content/uploads/2019/12/110-210-310-410-510-203x300.jpg" class="attachment-medium size-medium lazyload" alt="plan Brio 110-210-310-410-510" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" style="--smush-placeholder-width: 203px; --smush-placeholder-aspect-ratio: 203/300;" /> </div>
2751 + <div class="hotspot-content">
2752 + <p><strong>Superficie: 1445 pi2</strong></p>
2753 +<ul>
2754 +<li>3 chambres à coucher</li>
2755 +<li>Walk-in dans la chambre à coucher principale</li>
2756 +<li>1 salle de bain</li>
2757 +<li>1 salle d’eau</li>
2758 +<li>1 salle de lavage</li>
2759 +<li>Garde-manger walk-in</li>
2760 +<li>Grand vestibule avec walk-in</li>
2761 +<li>Rangement supplémentaire</li>
2762 +</ul>
2763 +<p><a href="https://immeublesbrio.com/wp-content/uploads/2019/12/110-210-310-410-510.jpg" target="_blank" rel="noopener"><strong>Télécharger le plan</strong></a></p>
2764 + </div>
2765 + </div>
2766 + </div>
2767 +
2768 +</div>
2769 + </div>
2770 + </div>
2771 + </div>
2772 + </div>
2773 +
2774 +
2775 +
2776 +
2777 + </div><div class="et_pb_row et_pb_row_4">
2778 + <div class="et_pb_column et_pb_column_4_4 et_pb_column_5 et_pb_css_mix_blend_mode_passthrough et-last-child">
2779 +
2780 +
2781 +
2782 +
2783 + <div class="et_pb_module et_pb_text et_pb_text_5 et_pb_text_align_left et_pb_bg_layout_light">
2784 +
2785 +
2786 +
2787 +
2788 + <div class="et_pb_text_inner"><p>Le locataire reconnaît que certaines contraintes pourraient amener de légères modifications au plan annexé au contrat préliminaire.</p>
2789 +<p>Les dimensions des pièces indiquées sont mesurées d&rsquo;un mur intérieur à un autre mur intérieur. La superficie brute de l&rsquo;unité indiquée sur les plans est approximative, sujette à des changements sans préavis et est basée sur des calculs de surfaces brutes, soit du mur extérieur à la moitié des murs mitoyens intérieurs de l&rsquo;unité, et inclut les escaliers, lorsqu’applicable.</p>
2790 +<p>Tout mobilier décoratif ainsi que les électroménagers apparaissant aux plans ne sont pas inclus et ne sont illustrés qu&rsquo;à titre indicatif. La hauteur des plafonds est contrainte à des retombées structurales à certains endroits.</p></div>
2791 + </div>
2792 + </div>
2793 +
2794 +
2795 +
2796 +
2797 + </div>
2798 +
2799 +
2800 + </div><div class="et_pb_section et_pb_section_2 et_pb_with_background et_section_regular" >
2801 +
2802 +
2803 +
2804 +
2805 +
2806 +
2807 + <div class="et_pb_row et_pb_row_5">
2808 + <div class="et_pb_column et_pb_column_1_2 et_pb_column_6 et_pb_css_mix_blend_mode_passthrough">
2809 +
2810 +
2811 +
2812 +
2813 + <div class="et_pb_module et_pb_text et_pb_text_6 et_pb_text_align_left et_pb_bg_layout_light">
2814 +
2815 +
2816 +
2817 +
2818 + <div class="et_pb_text_inner"><h1>Contactez-nous</h1></div>
2819 + </div><div class="et_pb_module et_pb_divider et_pb_divider_2 et_pb_divider_position_center et_pb_space"><div class="et_pb_divider_internal"></div></div><div class="et_pb_module et_pb_text et_pb_text_7 et_pb_text_align_left et_pb_bg_layout_light">
2820 +
2821 +
2822 +
2823 +
2824 + <div class="et_pb_text_inner"><p>Vous aimeriez avoir de l'information ou vous voulez visiter un de nos logements?</p>
2825 +<p>Envoyez-nous un bref message et il nous fera plaisir de vous contacter dans les plus brefs délais.</p>
2826 +<p>Appelez-nous pour prendre rendez-vous ou pour vérifier les disponibilités au <strong>418-928-7688.</strong></p></div>
2827 + </div>
2828 + </div><div class="et_pb_column et_pb_column_1_2 et_pb_column_7 et_pb_css_mix_blend_mode_passthrough et-last-child">
2829 +
2830 +
2831 +
2832 +
2833 +
2834 + <div id="et_pb_contact_form_0" class="et_pb_with_border et_pb_module et_pb_contact_form_0 et_pb_contact_form_container clearfix" data-form_unique_num="0" data-form_unique_id="aa8edc55-99a6-4da5-9c10-29ecb0773278">
2835 +
2836 +
2837 +
2838 +
2839 +
2840 + <div class="et-pb-contact-message"></div>
2841 +
2842 + <div class="et_pb_contact">
2843 + <form class="et_pb_contact_form clearfix" method="post" action="https://immeublesbrio.com/appartements-a-louer-val-belair/">
2844 + <p class="et_pb_contact_field et_pb_contact_field_0 et_pb_contact_field_last" data-id="nom" data-type="input">
2845 +
2846 +
2847 +
2848 +
2849 + <label for="et_pb_contact_nom_0" class="et_pb_contact_form_label">Nom</label>
2850 + <input type="text" id="et_pb_contact_nom_0" class="input" value="" name="et_pb_contact_nom_0" data-required_mark="required" data-field_type="input" data-original_id="nom" placeholder="Nom">
2851 + </p><p class="et_pb_contact_field et_pb_contact_field_1 et_pb_contact_field_last" data-id="courriel" data-type="email">
2852 +
2853 +
2854 +
2855 +
2856 + <label for="et_pb_contact_courriel_0" class="et_pb_contact_form_label">Courriel</label>
2857 + <input type="text" id="et_pb_contact_courriel_0" class="input" value="" name="et_pb_contact_courriel_0" data-required_mark="required" data-field_type="email" data-original_id="courriel" placeholder="Courriel">
2858 + </p><p class="et_pb_contact_field et_pb_contact_field_2 et_pb_contact_field_last" data-id="phone" data-type="input">
2859 +
2860 +
2861 +
2862 +
2863 + <label for="et_pb_contact_phone_0" class="et_pb_contact_form_label">Téléphone</label>
2864 + <input type="text" id="et_pb_contact_phone_0" class="input" value="" name="et_pb_contact_phone_0" data-required_mark="not_required" data-field_type="input" data-original_id="phone" placeholder="Téléphone" pattern="[0-9\s\-]*" title="Nombres acceptés uniquement.">
2865 + </p><p class="et_pb_contact_field et_pb_contact_field_3 et_pb_contact_field_last" data-id="message" data-type="text">
2866 +
2867 +
2868 +
2869 +
2870 + <label for="et_pb_contact_message_0" class="et_pb_contact_form_label">Message</label>
2871 + <textarea name="et_pb_contact_message_0" id="et_pb_contact_message_0" class="et_pb_contact_message input" data-required_mark="required" data-field_type="text" data-original_id="message" placeholder="Message"></textarea>
2872 + </p>
2873 + <input type="hidden" value="et_contact_proccess" name="et_pb_contactform_submit_0"/>
2874 + <div class="et_contact_bottom_container">
2875 +
2876 + <button type="submit" name="et_builder_submit_button" class="et_pb_contact_submit et_pb_button" data-icon="$">Envoyez</button>
2877 + </div>
2878 + <input type="hidden" id="_wpnonce-et-pb-contact-form-submitted-0" name="_wpnonce-et-pb-contact-form-submitted-0" value="83c4d60817" /><input type="hidden" name="_wp_http_referer" value="/appartements-a-louer-val-belair/" />
2879 + </form>
2880 + </div>
2881 + </div>
2882 +
2883 + </div>
2884 +
2885 +
2886 +
2887 +
2888 + </div>
2889 +
2890 +
2891 + </div> </div>
2892 + </div>
2893 + </div>
2894 +
2895 +
2896 + </article>
2897 +
2898 +
2899 +
2900 +</div>
2901 +
2902 +
2903 + <span class="et_pb_scroll_top et-pb-icon"></span>
2904 +
2905 +
2906 + <footer id="main-footer">
2907 +
2908 +
2909 +
2910 + <div id="footer-bottom">
2911 + <div class="container clearfix">
2912 + <ul class="et-social-icons">
2913 +
2914 + <li class="et-social-icon et-social-facebook">
2915 + <a href="https://www.facebook.com/ImmeublesBrio/" class="icon">
2916 + <span>Facebook</span>
2917 + </a>
2918 + </li>
2919 +
2920 +</ul><div id="footer-info">Copyright 2026 - Tous droits réservés - Les immeubles Brio</div> </div>
2921 + </div>
2922 + </footer>
2923 + </div>
2924 +
2925 +
2926 + </div>
2927 +
2928 + <script type="speculationrules">
2929 +{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/Divi/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
2930 +</script>
2931 +<script id="jquery-core-js" src="https://immeublesbrio.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script>
2932 +<script id="jquery-migrate-js" src="https://immeublesbrio.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script>
2933 +<script id="jquery-js-after">
2934 +jqueryParams.length&&$.each(jqueryParams,function(e,r){if("function"==typeof r){var n=String(r);n.replace("$","jQuery");var a=new Function("return "+n)();$(document).ready(a)}});
2935 +//# sourceURL=jquery-js-after
2936 +</script>
2937 +<script id="divi-custom-script-js-extra">
2938 +var DIVI = {"item_count":"%d Item","items_count":"%d Items"};
2939 +var et_builder_utils_params = {"condition":{"diviTheme":true,"extraTheme":false},"scrollLocations":["app","top"],"builderScrollLocations":{"desktop":"app","tablet":"app","phone":"app"},"onloadScrollLocation":"app","builderType":"fe"};
2940 +var et_frontend_scripts = {"builderCssContainerPrefix":"#et-boc","builderCssLayoutPrefix":"#et-boc .et-l"};
2941 +var et_pb_custom = {"ajaxurl":"https://immeublesbrio.com/wp-admin/admin-ajax.php","images_uri":"https://immeublesbrio.com/wp-content/themes/Divi/images","builder_images_uri":"https://immeublesbrio.com/wp-content/themes/Divi/includes/builder/images","et_frontend_nonce":"5318db6bb9","subscription_failed":"Veuillez v\u00e9rifier les champs ci-dessous pour vous assurer que vous avez entr\u00e9 les informations correctes.","et_ab_log_nonce":"23bfa9bf51","fill_message":"S'il vous pla\u00eet, remplissez les champs suivants:","contact_error_message":"Veuillez corriger les erreurs suivantes :","invalid":"E-mail non valide","captcha":"Captcha","prev":"Pr\u00e9c\u00e9dent","previous":"Pr\u00e9c\u00e9dente","next":"Prochaine","wrong_captcha":"Vous avez entr\u00e9 le mauvais num\u00e9ro dans le captcha.","wrong_checkbox":"Case \u00e0 cocher","ignore_waypoints":"no","is_divi_theme_used":"1","widget_search_selector":".widget_search","ab_tests":[],"is_ab_testing_active":"","page_id":"586","unique_test_id":"","ab_bounce_rate":"5","is_cache_plugin_active":"yes","is_shortcode_tracking":"","tinymce_uri":"https://immeublesbrio.com/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors","accent_color":"#eb6209","waypoints_options":[]};
2942 +var et_pb_box_shadow_elements = [];
2943 +//# sourceURL=divi-custom-script-js-extra
2944 +</script>
2945 +<script id="divi-custom-script-js" src="https://immeublesbrio.com/wp-content/themes/Divi/js/scripts.min.js?ver=4.27.6"></script>
2946 +<script id="magnific-popup-js" src="https://immeublesbrio.com/wp-content/themes/Divi/includes/builder/feature/dynamic-assets/assets/js/magnific-popup.js?ver=4.27.6"></script>
2947 +<script id="salvattore-js" src="https://immeublesbrio.com/wp-content/themes/Divi/includes/builder/feature/dynamic-assets/assets/js/salvattore.js?ver=4.27.6"></script>
2948 +<script id="et-core-common-js" src="https://immeublesbrio.com/wp-content/themes/Divi/core/admin/js/common.js?ver=4.27.6"></script>
2949 +<script id="smush-lazy-load-js-before">
2950 +var smushLazyLoadOptions = {"autoResizingEnabled":false,"autoResizeOptions":{"precision":5,"skipAutoWidth":true}};
2951 +//# sourceURL=smush-lazy-load-js-before
2952 +</script>
2953 +<script id="smush-lazy-load-js" src="https://immeublesbrio.com/wp-content/plugins/wp-smushit/app/assets/js/smush-lazy-load.min.js?ver=3.24.0"></script>
2954 +<script id="smush-lazy-load-js-after">
2955 +function rw() { Waypoint.refreshAll(); } window.addEventListener( 'lazybeforeunveil', rw, false); window.addEventListener( 'lazyloaded', rw, false);
2956 +//# sourceURL=smush-lazy-load-js-after
2957 +</script>
2958 +<script id="drawattention-leaflet-js" src="https://immeublesbrio.com/wp-content/plugins/draw-attention-pro/public/assets/js/leaflet.js?ver=1.5.1"></script>
2959 +<script id="drawattention-leaflet-responsive-popup-js" src="https://immeublesbrio.com/wp-content/plugins/draw-attention-pro/public/assets/js/leaflet.responsive.popup-min.js?ver=0.6.4"></script>
2960 +<script id="drawattention-featherlight-js" src="https://immeublesbrio.com/wp-content/plugins/draw-attention-pro/public/assets/js/featherlight.min.js?ver=1.7.14"></script>
2961 +<script id="drawattention-plugin-script-js-extra">
2962 +var drawattentionData = {"isLoggedIn":"","isAdmin":""};
2963 +//# sourceURL=drawattention-plugin-script-js-extra
2964 +</script>
2965 +<script id="drawattention-plugin-script-js" src="https://immeublesbrio.com/wp-content/plugins/draw-attention-pro/public/assets/js/public.js?ver=1.13.7"></script>
2966 +</body>
2967 +</html>
added tests/fixtures/brio/expected.json +47 −0
@@ -0,0 +1,47 @@
1 +{
2 + "count": 3,
3 + "listings": [
4 + {
5 + "uid": "brio:appartement-109",
6 + "url": "https://immeublesbrio.com/appartements-a-louer-val-belair/",
7 + "title": "Le Brio — Appartement 109 (5½)",
8 + "address": "1105, rue des Rigoles, Québec, QC G3K 0M7",
9 + "sector": "Val-Bélair",
10 + "city": "Québec",
11 + "unit_type": "5½",
12 + "price": 1850.0,
13 + "availability": "Disponible",
14 + "area_sqft": null,
15 + "n_images": 10,
16 + "n_amenities": 14
17 + },
18 + {
19 + "uid": "brio:appartement-303",
20 + "url": "https://immeublesbrio.com/appartements-a-louer-val-belair/",
21 + "title": "Le Brio — Appartement 303 (4½)",
22 + "address": "1105, rue des Rigoles, Québec, QC G3K 0M7",
23 + "sector": "Val-Bélair",
24 + "city": "Québec",
25 + "unit_type": "4½",
26 + "price": 1625.0,
27 + "availability": "Disponible",
28 + "area_sqft": null,
29 + "n_images": 10,
30 + "n_amenities": 13
31 + },
32 + {
33 + "uid": "brio:appartement-408",
34 + "url": "https://immeublesbrio.com/appartements-a-louer-val-belair/",
35 + "title": "Le Brio — Appartement 408 (3½)",
36 + "address": "1105, rue des Rigoles, Québec, QC G3K 0M7",
37 + "sector": "Val-Bélair",
38 + "city": "Québec",
39 + "unit_type": "3½",
40 + "price": 1500.0,
41 + "availability": "Disponible",
42 + "area_sqft": null,
43 + "n_images": 10,
44 + "n_amenities": 12
45 + }
46 + ]
47 +}
\ No newline at end of file
added tests/fixtures/brio/index.json +16 −0
@@ -0,0 +1,16 @@
1 +{
2 + "bea7b85fff00a80d1d0e": {
3 + "method": "GET",
4 + "url": "https://immeublesbrio.com/",
5 + "status": 200,
6 + "content_type": "text/html; charset=UTF-8",
7 + "file": "bea7b85fff00a80d1d0e.html"
8 + },
9 + "da4ec7d3ae1b01913a28": {
10 + "method": "GET",
11 + "url": "https://immeublesbrio.com/appartements-a-louer-val-belair/",
12 + "status": 200,
13 + "content_type": "text/html; charset=UTF-8",
14 + "file": "da4ec7d3ae1b01913a28.html"
15 + }
16 +}
\ No newline at end of file
added tests/fixtures/brivia_1sp/01a7fd584bbf97ec9817.html +1 −0
@@ -0,0 +1 @@
1 +{"type":"13","floor":"5","unit_details":"<div><div class=\"collection\"><img src=\"https:\/\/www.1squarephillips.ca\/2022\/\/images\/logo-1-square-phillips-locatif.svg\" alt=\"1 Square Phillips Locatif\"\/><\/div><h2>unit\u00e9 515<\/h2><h3>Plan 15<\/h3><p class=\"uppercase\">2 chambres \/ 2 salles de bain<\/p><p><span>Superficie<\/span><span>853 pi<sup>2<\/sup><\/span><span>(79 m<sup>2<\/sup>)<\/span><span>Balcon<\/span><span>200 pi<sup>2<\/sup><\/span><span>(19 m<sup>2<\/sup>)<\/span><span>Total<\/span><span>1 053 pi<sup>2<\/sup><\/span><span>(98 m<sup>2<\/sup>)<\/span><\/p><div class=\"bt-floor-plan\"><a rel=\"nofollow\" href=\"#\" class=\"bt-floor\"><\/a><\/div>\n\t\t\t\t<\/div><ol class=\"column\"><li><strong>Cuisine <br>salle \u00e0 manger<\/strong><br>8-0\" x 14'-9\"<\/li><li><strong>S\u00e9jour<\/strong><br>12'-5\" x 13'-10\"<\/li><li><strong>Chambre principale<\/strong><br>10'-6\" x 14'-9\"<\/li><li><strong>Salle de bain<\/strong><br>5'-0\" x 7'-11\"<\/li><li><strong>Chambre 2<\/strong><br>11'-2\" x 11'-1\"<\/li><li><strong>Salle de bain 2<\/strong><br>5'-3\" x 9'-4\"<\/li><li><strong>Balcon<\/strong><br>6'-2\" x 32'-5\"<\/li><\/ol><div class=\"bt-back-download\"><a href=\"https:\/\/www.1squarephillips.ca\/\" data-type=\"13\" data-floor=\"5\" data-unit=\"515\" class=\"bt bt-back\">Retour au plan d'\u00e9tage<\/a><br><br><a href=\"https:\/\/www.1squarephillips.ca\/2022\/pdf\/1spl-plan-15.pdf\" target=\"_blank\" class=\"bt bt-download\">T\u00e9l\u00e9charger PDF<\/a><\/div>","unit_plan":"<img src=\"https:\/\/www.1squarephillips.ca\/2022\/images\/1spl-plan-15.png\" alt=\"1SP - 15-rental\"\/>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/08d533389e69ec56ea35.html +1 −0
@@ -0,0 +1 @@
1 +{"type":"13","floor":"4","unit_details":"<div><div class=\"collection\"><img src=\"https:\/\/www.1squarephillips.ca\/2022\/\/images\/logo-1-square-phillips-locatif.svg\" alt=\"1 Square Phillips Locatif\"\/><\/div><h2>unit\u00e9 415<\/h2><h3>Plan 15<\/h3><p class=\"uppercase\">2 chambres \/ 2 salles de bain<\/p><p><span>Superficie<\/span><span>853 pi<sup>2<\/sup><\/span><span>(79 m<sup>2<\/sup>)<\/span><span>Balcon<\/span><span>200 pi<sup>2<\/sup><\/span><span>(19 m<sup>2<\/sup>)<\/span><span>Total<\/span><span>1 053 pi<sup>2<\/sup><\/span><span>(98 m<sup>2<\/sup>)<\/span><\/p><div class=\"bt-floor-plan\"><a rel=\"nofollow\" href=\"#\" class=\"bt-floor\"><\/a><\/div>\n\t\t\t\t<\/div><ol class=\"column\"><li><strong>Cuisine <br>salle \u00e0 manger<\/strong><br>8-0\" x 14'-9\"<\/li><li><strong>S\u00e9jour<\/strong><br>12'-5\" x 13'-10\"<\/li><li><strong>Chambre principale<\/strong><br>10'-6\" x 14'-9\"<\/li><li><strong>Salle de bain<\/strong><br>5'-0\" x 7'-11\"<\/li><li><strong>Chambre 2<\/strong><br>11'-2\" x 11'-1\"<\/li><li><strong>Salle de bain 2<\/strong><br>5'-3\" x 9'-4\"<\/li><li><strong>Balcon<\/strong><br>6'-2\" x 32'-5\"<\/li><\/ol><div class=\"bt-back-download\"><a href=\"https:\/\/www.1squarephillips.ca\/\" data-type=\"13\" data-floor=\"4\" data-unit=\"415\" class=\"bt bt-back\">Retour au plan d'\u00e9tage<\/a><br><br><a href=\"https:\/\/www.1squarephillips.ca\/2022\/pdf\/1spl-plan-15.pdf\" target=\"_blank\" class=\"bt bt-download\">T\u00e9l\u00e9charger PDF<\/a><\/div>","unit_plan":"<img src=\"https:\/\/www.1squarephillips.ca\/2022\/images\/1spl-plan-15.png\" alt=\"1SP - 15-rental\"\/>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/19d3242adde949d68e14.html +1 −0
@@ -0,0 +1 @@
1 +{"floor":"<div><?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->\n<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\n\t width=\"401px\" height=\"550px\" viewBox=\"0 0 401 550\" style=\"enable-background:new 0 0 401 550;\" xml:space=\"preserve\">\n<style type=\"text\/css\">\n\t.st0{display:none;}\n<\/style>\n<g id=\"others\">\n\t<path d=\"M275,331h18v21h-18V331z\"\/>\n\t<path d=\"M131,358h120v32H131V358z\"\/>\n\t<path d=\"M131,320h120v38H131V320z\"\/>\n\t<path d=\"M131,287h120v33H131V287z\"\/>\n\t<path d=\"M131,215h120v36H131V215z\"\/>\n\t<path d=\"M92,358h15v32H92V358z\"\/>\n<\/g>\n<g id=\"units\">\n\t<g id=\"unit1901\" class=\"unit\">\n\t\t<path d=\"M205,390h-74v47h-18v34h10v18h69v-71h13V390z\"\/>\n\t\t<path d=\"M131,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 149 441)\">1901<\/text>\n\t<\/g>\n\t<g id=\"unit1902\" class=\"unit\">\n\t\t<path d=\"M113,437h18v-26h-30v34H45v-11H0v91h131v-36h-8v-18h-10V437z\"\/>\n\t\t<path d=\"M0,525h131v24H0V525z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 488)\">1902<\/text>\n\t<\/g>\n\t<g id=\"unit1903\" class=\"unit\">\n\t\t<path d=\"M0,390v44h45v11h56v-55H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 415)\">1903<\/text>\n\t<\/g>\n\t<g id=\"unit1904\" class=\"unit\">\n\t\t<path d=\"M114,320H92v-11H0v81h92v-32h22V320z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 352.7008)\">1904<\/text>\n\t<\/g>\n\t<g id=\"unit1905\" class=\"unit\">\n\t\t<path d=\"M86,287v-30H0v52h92v11h22v-33H86z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 286)\">1905<\/text>\n\t<\/g>\n\t<g id=\"unit1906\" class=\"unit\">\n\t\t<path d=\"M0,217v40h86v30h28v-70H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 240)\">1906<\/text>\n\t<\/g>\n\t<g id=\"unit1907\" class=\"unit\">\n\t\t<path d=\"M0,107h131v24H0V107z\"\/>\n\t\t<path d=\"M141,131H0v86h114v-21h17v-11h10V131z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 177)\">1907<\/text>\n\t<\/g>\n\t<g id=\"unit1908\" class=\"unit\">\n\t\t<path d=\"M131,95v36h10v54h-10v30h63v-72h13V95H131z\"\/>\n\t\t<path d=\"M131,71h69v24h-69V71z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 157 177)\">1908<\/text>\n\t<\/g>\n\t<g id=\"unit1909\" class=\"unit onsale\">\n\t\t<path d=\"M200,71h69v24h-69V71z\"\/>\n\t\t<path d=\"M289,95h-82v48h-13v72h57v-61h38V95z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 212 177)\">1909<\/text>\n\t<\/g>\n\t<g id=\"unit1910\" class=\"unit\">\n\t\t<!--<path class=\"st0\" d=\"M269,0h131v23H269V0z\"\/>-->\n\t\t<path d=\"M269,0v95h20v59h-38v33h19v-9h35v-40h45v-11h50V0H269z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 78.203)\">1910<\/text>\n\t<\/g>\n\t<g id=\"unit1911\" class=\"unit\">\n\t\t<path d=\"M350,127v11h-45v40h-35v26h11v13h28v-13h91v-77H350z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 174.2037)\">1911<\/text>\n\t<\/g>\n\t<g id=\"unit1912\" class=\"unit\">\n\t\t<path d=\"M309,204v13h-42v41h33v-10h100v-44H309z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 229.204)\">1912<\/text>\n\t<\/g>\n\t<g id=\"unit1913\" class=\"unit\">\n\t\t<path d=\"M300,248v10h-33v32h133v-10v-22v-10H300z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 272.2039)\">1913<\/text>\n\t<\/g>\n\t<g id=\"unit1914\" class=\"unit\">\n\t\t<path d=\"M267,290h133v41H267V290z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 313.7039)\">1914<\/text>\n\t<\/g>\n\t<g id=\"unit1915\" class=\"unit\">\n\t\t<path d=\"M293,331v21h-24v66h131v-87H293z\"\/>\n\t\t<path d=\"M269,418h131v22H269V418z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 377.704)\">1915<\/text>\n\t<\/g>\n\t<g id=\"unit1916\" class=\"unit\">\n\t\t<path d=\"M251,386v4h-46v28h-13v71h77V386H251z\"\/>\n\t\t<path d=\"M200,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 217.6826 441.0004)\">1916<\/text>\n\t<\/g>\n<\/g>\n<\/svg>\n<\/div>","legend":"<ul><li class=\"match\">Studios (0)<\/li><li class=\"onsale\">Autre option (1)<\/li><li class=\"sold\">Lou\u00e9s (15)<\/li><\/div><\/ul>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/20eec1af9eed3f981306.html +1 −0
@@ -0,0 +1 @@
1 +{"type":"13","floor":"9","unit_details":"<div><div class=\"collection\"><img src=\"https:\/\/www.1squarephillips.ca\/2022\/\/images\/logo-1-square-phillips-locatif.svg\" alt=\"1 Square Phillips Locatif\"\/><\/div><h2>unit\u00e9 915<\/h2><h3>Plan 15<\/h3><p class=\"uppercase\">2 chambres \/ 2 salles de bain<\/p><p><span>Superficie<\/span><span>853 pi<sup>2<\/sup><\/span><span>(79 m<sup>2<\/sup>)<\/span><span>Balcon<\/span><span>200 pi<sup>2<\/sup><\/span><span>(19 m<sup>2<\/sup>)<\/span><span>Total<\/span><span>1 053 pi<sup>2<\/sup><\/span><span>(98 m<sup>2<\/sup>)<\/span><\/p><div class=\"bt-floor-plan\"><a rel=\"nofollow\" href=\"#\" class=\"bt-floor\"><\/a><\/div>\n\t\t\t\t<\/div><ol class=\"column\"><li><strong>Cuisine <br>salle \u00e0 manger<\/strong><br>8-0\" x 14'-9\"<\/li><li><strong>S\u00e9jour<\/strong><br>12'-5\" x 13'-10\"<\/li><li><strong>Chambre principale<\/strong><br>10'-6\" x 14'-9\"<\/li><li><strong>Salle de bain<\/strong><br>5'-0\" x 7'-11\"<\/li><li><strong>Chambre 2<\/strong><br>11'-2\" x 11'-1\"<\/li><li><strong>Salle de bain 2<\/strong><br>5'-3\" x 9'-4\"<\/li><li><strong>Balcon<\/strong><br>6'-2\" x 32'-5\"<\/li><\/ol><div class=\"bt-back-download\"><a href=\"https:\/\/www.1squarephillips.ca\/\" data-type=\"13\" data-floor=\"9\" data-unit=\"915\" class=\"bt bt-back\">Retour au plan d'\u00e9tage<\/a><br><br><a href=\"https:\/\/www.1squarephillips.ca\/2022\/pdf\/1spl-plan-15.pdf\" target=\"_blank\" class=\"bt bt-download\">T\u00e9l\u00e9charger PDF<\/a><\/div>","unit_plan":"<img src=\"https:\/\/www.1squarephillips.ca\/2022\/images\/1spl-plan-15.png\" alt=\"1SP - 15-rental\"\/>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/2341028b27d697d40048.html +1 −0
@@ -0,0 +1 @@
1 +{"floor":"<div><?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->\n<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\n\t width=\"401px\" height=\"550px\" viewBox=\"0 0 401 550\" style=\"enable-background:new 0 0 401 550;\" xml:space=\"preserve\">\n<style type=\"text\/css\">\n\t.st0{display:none;}\n<\/style>\n<g id=\"others\">\n\t<path d=\"M275,331h18v21h-18V331z\"\/>\n\t<path d=\"M131,358h120v32H131V358z\"\/>\n\t<path d=\"M131,320h120v38H131V320z\"\/>\n\t<path d=\"M131,287h120v33H131V287z\"\/>\n\t<path d=\"M131,215h120v36H131V215z\"\/>\n\t<path d=\"M92,358h15v32H92V358z\"\/>\n<\/g>\n<g id=\"units\">\n\t<g id=\"unit1301\" class=\"unit\">\n\t\t<path d=\"M205,390h-74v47h-18v34h10v18h69v-71h13V390z\"\/>\n\t\t<path d=\"M131,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 149 441)\">1301<\/text>\n\t<\/g>\n\t<g id=\"unit1302\" class=\"unit\">\n\t\t<path d=\"M113,437h18v-26h-30v34H45v-11H0v91h131v-36h-8v-18h-10V437z\"\/>\n\t\t<path d=\"M0,525h131v24H0V525z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 488)\">1302<\/text>\n\t<\/g>\n\t<g id=\"unit1303\" class=\"unit\">\n\t\t<path d=\"M0,390v44h45v11h56v-55H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 415)\">1303<\/text>\n\t<\/g>\n\t<g id=\"unit1304\" class=\"unit\">\n\t\t<path d=\"M114,320H92v-11H0v81h92v-32h22V320z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 352.7008)\">1304<\/text>\n\t<\/g>\n\t<g id=\"unit1305\" class=\"unit\">\n\t\t<path d=\"M86,287v-30H0v52h92v11h22v-33H86z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 286)\">1305<\/text>\n\t<\/g>\n\t<g id=\"unit1306\" class=\"unit\">\n\t\t<path d=\"M0,217v40h86v30h28v-70H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 240)\">1306<\/text>\n\t<\/g>\n\t<g id=\"unit1307\" class=\"unit\">\n\t\t<path d=\"M0,107h131v24H0V107z\"\/>\n\t\t<path d=\"M141,131H0v86h114v-21h17v-11h10V131z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 177)\">1307<\/text>\n\t<\/g>\n\t<g id=\"unit1308\" class=\"unit\">\n\t\t<path d=\"M131,95v36h10v54h-10v30h63v-72h13V95H131z\"\/>\n\t\t<path d=\"M131,71h69v24h-69V71z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 157 177)\">1308<\/text>\n\t<\/g>\n\t<g id=\"unit1309\" class=\"unit\">\n\t\t<path d=\"M200,71h69v24h-69V71z\"\/>\n\t\t<path d=\"M289,95h-82v48h-13v72h57v-61h38V95z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 212 177)\">1309<\/text>\n\t<\/g>\n\t<g id=\"unit1310\" class=\"unit\">\n\t\t<!--<path class=\"st0\" d=\"M269,0h131v23H269V0z\"\/>-->\n\t\t<path d=\"M269,0v95h20v59h-38v33h19v-9h35v-40h45v-11h50V0H269z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 78.203)\">1310<\/text>\n\t<\/g>\n\t<g id=\"unit1311\" class=\"unit\">\n\t\t<path d=\"M350,127v11h-45v40h-35v26h11v13h28v-13h91v-77H350z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 174.2037)\">1311<\/text>\n\t<\/g>\n\t<g id=\"unit1312\" class=\"unit match onsale\">\n\t\t<path d=\"M309,204v13h-42v41h33v-10h100v-44H309z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 229.204)\">1312<\/text>\n\t<\/g>\n\t<g id=\"unit1313\" class=\"unit match onsale\">\n\t\t<path d=\"M300,248v10h-33v32h133v-10v-22v-10H300z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 272.2039)\">1313<\/text>\n\t<\/g>\n\t<g id=\"unit1314\" class=\"unit\">\n\t\t<path d=\"M267,290h133v41H267V290z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 313.7039)\">1314<\/text>\n\t<\/g>\n\t<g id=\"unit1315\" class=\"unit\">\n\t\t<path d=\"M293,331v21h-24v66h131v-87H293z\"\/>\n\t\t<path d=\"M269,418h131v22H269V418z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 377.704)\">1315<\/text>\n\t<\/g>\n\t<g id=\"unit1316\" class=\"unit\">\n\t\t<path d=\"M251,386v4h-46v28h-13v71h77V386H251z\"\/>\n\t\t<path d=\"M200,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 217.6826 441.0004)\">1316<\/text>\n\t<\/g>\n<\/g>\n<\/svg>\n<\/div>","legend":"<ul><li class=\"match\">Studios (2)<\/li><li class=\"sold\">Lou\u00e9s (14)<\/li><\/div><\/ul>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/2405cce8f7fa8168c970.html +1 −0
@@ -0,0 +1 @@
1 +{"type":"13","floor":"6","unit_details":"<div><div class=\"collection\"><img src=\"https:\/\/www.1squarephillips.ca\/2022\/\/images\/logo-1-square-phillips-locatif.svg\" alt=\"1 Square Phillips Locatif\"\/><\/div><h2>unit\u00e9 615<\/h2><h3>Plan 15<\/h3><p class=\"uppercase\">2 chambres \/ 2 salles de bain<\/p><p><span>Superficie<\/span><span>853 pi<sup>2<\/sup><\/span><span>(79 m<sup>2<\/sup>)<\/span><span>Balcon<\/span><span>200 pi<sup>2<\/sup><\/span><span>(19 m<sup>2<\/sup>)<\/span><span>Total<\/span><span>1 053 pi<sup>2<\/sup><\/span><span>(98 m<sup>2<\/sup>)<\/span><\/p><div class=\"bt-floor-plan\"><a rel=\"nofollow\" href=\"#\" class=\"bt-floor\"><\/a><\/div>\n\t\t\t\t<\/div><ol class=\"column\"><li><strong>Cuisine <br>salle \u00e0 manger<\/strong><br>8-0\" x 14'-9\"<\/li><li><strong>S\u00e9jour<\/strong><br>12'-5\" x 13'-10\"<\/li><li><strong>Chambre principale<\/strong><br>10'-6\" x 14'-9\"<\/li><li><strong>Salle de bain<\/strong><br>5'-0\" x 7'-11\"<\/li><li><strong>Chambre 2<\/strong><br>11'-2\" x 11'-1\"<\/li><li><strong>Salle de bain 2<\/strong><br>5'-3\" x 9'-4\"<\/li><li><strong>Balcon<\/strong><br>6'-2\" x 32'-5\"<\/li><\/ol><div class=\"bt-back-download\"><a href=\"https:\/\/www.1squarephillips.ca\/\" data-type=\"13\" data-floor=\"6\" data-unit=\"615\" class=\"bt bt-back\">Retour au plan d'\u00e9tage<\/a><br><br><a href=\"https:\/\/www.1squarephillips.ca\/2022\/pdf\/1spl-plan-15.pdf\" target=\"_blank\" class=\"bt bt-download\">T\u00e9l\u00e9charger PDF<\/a><\/div>","unit_plan":"<img src=\"https:\/\/www.1squarephillips.ca\/2022\/images\/1spl-plan-15.png\" alt=\"1SP - 15-rental\"\/>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/24d6fa373e9d733b6518.html +1 −0
@@ -0,0 +1 @@
1 +{"type":"12","floor":"12","unit_details":"<div><div class=\"collection\"><img src=\"https:\/\/www.1squarephillips.ca\/2022\/\/images\/logo-1-square-phillips-locatif.svg\" alt=\"1 Square Phillips Locatif\"\/><\/div><h2>unit\u00e9 1209<\/h2><h3>Plan 09<\/h3><p class=\"uppercase\">1 chambre \/ 1 salle de bain<\/p><p><span>Superficie<\/span><span>637 pi<sup>2<\/sup><\/span><span>(59 m<sup>2<\/sup>)<\/span><span>Balcon<\/span><span>97 pi<sup>2<\/sup><\/span><span>(9 m<sup>2<\/sup>)<\/span><span>Total<\/span><span>734 pi<sup>2<\/sup><\/span><span>(68 m<sup>2<\/sup>)<\/span><\/p><div class=\"bt-floor-plan\"><a rel=\"nofollow\" href=\"#\" class=\"bt-floor\"><\/a><\/div>\n\t\t\t\t<\/div><ol class=\"column\"><li><strong>Cuisine <br>salle \u00e0 manger<\/strong><br>13'-0\" x 13'-10\"<\/li><li><strong>S\u00e9jour<\/strong><br>10'-10\" x 13'-5\"<\/li><li><strong>Chambre principale<\/strong><br>10'-2\" x 15'-3\"<\/li><li><strong>Salle de bain<\/strong><br>5'-0\" x 7'-6\"<\/li><li><strong>Balcon<\/strong><br>6'-2\" x 15'-8\"<\/li><\/ol><div class=\"bt-back-download\"><a href=\"https:\/\/www.1squarephillips.ca\/\" data-type=\"12\" data-floor=\"12\" data-unit=\"1209\" class=\"bt bt-back\">Retour au plan d'\u00e9tage<\/a><br><br><a href=\"https:\/\/www.1squarephillips.ca\/2022\/pdf\/1spl-plan-09.pdf\" target=\"_blank\" class=\"bt bt-download\">T\u00e9l\u00e9charger PDF<\/a><\/div>","unit_plan":"<img src=\"https:\/\/www.1squarephillips.ca\/2022\/images\/1spl-plan-09.png\" alt=\"1SP - 09-rental\"\/>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/2df03ac2db5a830ff136.html +1 −0
@@ -0,0 +1 @@
1 +{"floor":"<div><?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->\n<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\n\t width=\"401px\" height=\"550px\" viewBox=\"0 0 401 550\" style=\"enable-background:new 0 0 401 550;\" xml:space=\"preserve\">\n<style type=\"text\/css\">\n\t.st0{display:none;}\n<\/style>\n<g id=\"others\">\n\t<path d=\"M275,331h18v21h-18V331z\"\/>\n\t<path d=\"M131,358h120v32H131V358z\"\/>\n\t<path d=\"M131,320h120v38H131V320z\"\/>\n\t<path d=\"M131,287h120v33H131V287z\"\/>\n\t<path d=\"M131,215h120v36H131V215z\"\/>\n\t<path d=\"M92,358h15v32H92V358z\"\/>\n<\/g>\n<g id=\"units\">\n\t<g id=\"unit1001\" class=\"unit\">\n\t\t<path d=\"M205,390h-74v47h-18v34h10v18h69v-71h13V390z\"\/>\n\t\t<path d=\"M131,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 149 441)\">1001<\/text>\n\t<\/g>\n\t<g id=\"unit1002\" class=\"unit\">\n\t\t<path d=\"M113,437h18v-26h-30v34H45v-11H0v91h131v-36h-8v-18h-10V437z\"\/>\n\t\t<path d=\"M0,525h131v24H0V525z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 488)\">1002<\/text>\n\t<\/g>\n\t<g id=\"unit1003\" class=\"unit\">\n\t\t<path d=\"M0,390v44h45v11h56v-55H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 415)\">1003<\/text>\n\t<\/g>\n\t<g id=\"unit1004\" class=\"unit\">\n\t\t<path d=\"M114,320H92v-11H0v81h92v-32h22V320z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 352.7008)\">1004<\/text>\n\t<\/g>\n\t<g id=\"unit1005\" class=\"unit\">\n\t\t<path d=\"M86,287v-30H0v52h92v11h22v-33H86z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 286)\">1005<\/text>\n\t<\/g>\n\t<g id=\"unit1006\" class=\"unit\">\n\t\t<path d=\"M0,217v40h86v30h28v-70H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 240)\">1006<\/text>\n\t<\/g>\n\t<g id=\"unit1007\" class=\"unit\">\n\t\t<path d=\"M0,107h131v24H0V107z\"\/>\n\t\t<path d=\"M141,131H0v86h114v-21h17v-11h10V131z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 177)\">1007<\/text>\n\t<\/g>\n\t<g id=\"unit1008\" class=\"unit\">\n\t\t<path d=\"M131,95v36h10v54h-10v30h63v-72h13V95H131z\"\/>\n\t\t<path d=\"M131,71h69v24h-69V71z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 157 177)\">1008<\/text>\n\t<\/g>\n\t<g id=\"unit1009\" class=\"unit onsale\">\n\t\t<path d=\"M200,71h69v24h-69V71z\"\/>\n\t\t<path d=\"M289,95h-82v48h-13v72h57v-61h38V95z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 212 177)\">1009<\/text>\n\t<\/g>\n\t<g id=\"unit1010\" class=\"unit onsale\">\n\t\t<!--<path class=\"st0\" d=\"M269,0h131v23H269V0z\"\/>-->\n\t\t<path d=\"M269,0v95h20v59h-38v33h19v-9h35v-40h45v-11h50V0H269z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 78.203)\">1010<\/text>\n\t<\/g>\n\t<g id=\"unit1011\" class=\"unit\">\n\t\t<path d=\"M350,127v11h-45v40h-35v26h11v13h28v-13h91v-77H350z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 174.2037)\">1011<\/text>\n\t<\/g>\n\t<g id=\"unit1012\" class=\"unit\">\n\t\t<path d=\"M309,204v13h-42v41h33v-10h100v-44H309z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 229.204)\">1012<\/text>\n\t<\/g>\n\t<g id=\"unit1013\" class=\"unit\">\n\t\t<path d=\"M300,248v10h-33v32h133v-10v-22v-10H300z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 272.2039)\">1013<\/text>\n\t<\/g>\n\t<g id=\"unit1014\" class=\"unit\">\n\t\t<path d=\"M267,290h133v41H267V290z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 313.7039)\">1014<\/text>\n\t<\/g>\n\t<g id=\"unit1015\" class=\"unit\">\n\t\t<path d=\"M293,331v21h-24v66h131v-87H293z\"\/>\n\t\t<path d=\"M269,418h131v22H269V418z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 377.704)\">1015<\/text>\n\t<\/g>\n\t<g id=\"unit1016\" class=\"unit\">\n\t\t<path d=\"M251,386v4h-46v28h-13v71h77V386H251z\"\/>\n\t\t<path d=\"M200,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 217.6826 441.0004)\">1016<\/text>\n\t<\/g>\n<\/g>\n<\/svg>\n<\/div>","legend":"<ul><li class=\"match\">Studios (0)<\/li><li class=\"onsale\">Autres options (2)<\/li><li class=\"sold\">Lou\u00e9s (14)<\/li><\/div><\/ul>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/376a11bf5c82d4ee4a68.html +1 −0
@@ -0,0 +1 @@
1 +{"type":"13","floor":"17","unit_details":"<div><div class=\"collection\"><img src=\"https:\/\/www.1squarephillips.ca\/2022\/\/images\/logo-1-square-phillips-locatif.svg\" alt=\"1 Square Phillips Locatif\"\/><\/div><h2>unit\u00e9 1715<\/h2><h3>Plan 15<\/h3><p class=\"uppercase\">2 chambres \/ 2 salles de bain<\/p><p><span>Superficie<\/span><span>853 pi<sup>2<\/sup><\/span><span>(79 m<sup>2<\/sup>)<\/span><span>Balcon<\/span><span>200 pi<sup>2<\/sup><\/span><span>(19 m<sup>2<\/sup>)<\/span><span>Total<\/span><span>1 053 pi<sup>2<\/sup><\/span><span>(98 m<sup>2<\/sup>)<\/span><\/p><div class=\"bt-floor-plan\"><a rel=\"nofollow\" href=\"#\" class=\"bt-floor\"><\/a><\/div>\n\t\t\t\t<\/div><ol class=\"column\"><li><strong>Cuisine <br>salle \u00e0 manger<\/strong><br>8-0\" x 14'-9\"<\/li><li><strong>S\u00e9jour<\/strong><br>12'-5\" x 13'-10\"<\/li><li><strong>Chambre principale<\/strong><br>10'-6\" x 14'-9\"<\/li><li><strong>Salle de bain<\/strong><br>5'-0\" x 7'-11\"<\/li><li><strong>Chambre 2<\/strong><br>11'-2\" x 11'-1\"<\/li><li><strong>Salle de bain 2<\/strong><br>5'-3\" x 9'-4\"<\/li><li><strong>Balcon<\/strong><br>6'-2\" x 32'-5\"<\/li><\/ol><div class=\"bt-back-download\"><a href=\"https:\/\/www.1squarephillips.ca\/\" data-type=\"13\" data-floor=\"17\" data-unit=\"1715\" class=\"bt bt-back\">Retour au plan d'\u00e9tage<\/a><br><br><a href=\"https:\/\/www.1squarephillips.ca\/2022\/pdf\/1spl-plan-15.pdf\" target=\"_blank\" class=\"bt bt-download\">T\u00e9l\u00e9charger PDF<\/a><\/div>","unit_plan":"<img src=\"https:\/\/www.1squarephillips.ca\/2022\/images\/1spl-plan-15.png\" alt=\"1SP - 15-rental\"\/>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/378676aea831d11c2278.html +1 −0
@@ -0,0 +1 @@
1 +{"type":"12","floor":"8","unit_details":"<div><div class=\"collection\"><img src=\"https:\/\/www.1squarephillips.ca\/2022\/\/images\/logo-1-square-phillips-locatif.svg\" alt=\"1 Square Phillips Locatif\"\/><\/div><h2>unit\u00e9 809<\/h2><h3>Plan 09<\/h3><p class=\"uppercase\">1 chambre \/ 1 salle de bain<\/p><p><span>Superficie<\/span><span>637 pi<sup>2<\/sup><\/span><span>(59 m<sup>2<\/sup>)<\/span><span>Balcon<\/span><span>97 pi<sup>2<\/sup><\/span><span>(9 m<sup>2<\/sup>)<\/span><span>Total<\/span><span>734 pi<sup>2<\/sup><\/span><span>(68 m<sup>2<\/sup>)<\/span><\/p><div class=\"bt-floor-plan\"><a rel=\"nofollow\" href=\"#\" class=\"bt-floor\"><\/a><\/div>\n\t\t\t\t<\/div><ol class=\"column\"><li><strong>Cuisine <br>salle \u00e0 manger<\/strong><br>13'-0\" x 13'-10\"<\/li><li><strong>S\u00e9jour<\/strong><br>10'-10\" x 13'-5\"<\/li><li><strong>Chambre principale<\/strong><br>10'-2\" x 15'-3\"<\/li><li><strong>Salle de bain<\/strong><br>5'-0\" x 7'-6\"<\/li><li><strong>Balcon<\/strong><br>6'-2\" x 15'-8\"<\/li><\/ol><div class=\"bt-back-download\"><a href=\"https:\/\/www.1squarephillips.ca\/\" data-type=\"12\" data-floor=\"8\" data-unit=\"809\" class=\"bt bt-back\">Retour au plan d'\u00e9tage<\/a><br><br><a href=\"https:\/\/www.1squarephillips.ca\/2022\/pdf\/1spl-plan-09.pdf\" target=\"_blank\" class=\"bt bt-download\">T\u00e9l\u00e9charger PDF<\/a><\/div>","unit_plan":"<img src=\"https:\/\/www.1squarephillips.ca\/2022\/images\/1spl-plan-09.png\" alt=\"1SP - 09-rental\"\/>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/37915a7cd2d4d08e9228.html +1 −0
@@ -0,0 +1 @@
1 +{"type":"12","floor":"17","unit_details":"<div><div class=\"collection\"><img src=\"https:\/\/www.1squarephillips.ca\/2022\/\/images\/logo-1-square-phillips-locatif.svg\" alt=\"1 Square Phillips Locatif\"\/><\/div><h2>unit\u00e9 1708<\/h2><h3>Plan 08<\/h3><p class=\"uppercase\">1 chambre \/ 1 salle de bain<\/p><p><span>Superficie<\/span><span>598 pi<sup>2<\/sup><\/span><span>(56 m<sup>2<\/sup>)<\/span><span>Balcon<\/span><span>113 pi<sup>2<\/sup><\/span><span>(10 m<sup>2<\/sup>)<\/span><span>Total<\/span><span>711 pi<sup>2<\/sup><\/span><span>(66 m<sup>2<\/sup>)<\/span><\/p><div class=\"bt-floor-plan\"><a rel=\"nofollow\" href=\"#\" class=\"bt-floor\"><\/a><\/div>\n\t\t\t\t<\/div><ol class=\"column\"><li><strong>Cuisine <br>salle \u00e0 manger<\/strong><br>13'-7\" x 15'-9\"<\/li><li><strong>S\u00e9jour<\/strong><br>10'-8\" x 10'-10\"<\/li><li><strong>Chambre principale<\/strong><br>9'-0\" x 12'-6\"<\/li><li><strong>Salle de bain<\/strong><br>5'-0\" x 7'-6\"<\/li><li><strong>Balcon<\/strong><br>6'-2\" x 18'-4\"<\/li><\/ol><div class=\"bt-back-download\"><a href=\"https:\/\/www.1squarephillips.ca\/\" data-type=\"12\" data-floor=\"17\" data-unit=\"1708\" class=\"bt bt-back\">Retour au plan d'\u00e9tage<\/a><br><br><a href=\"https:\/\/www.1squarephillips.ca\/2022\/pdf\/1spl-plan-08.pdf\" target=\"_blank\" class=\"bt bt-download\">T\u00e9l\u00e9charger PDF<\/a><\/div>","unit_plan":"<img src=\"https:\/\/www.1squarephillips.ca\/2022\/images\/1spl-plan-08.png\" alt=\"1SP - 08-rental\"\/>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/3d7ae86d887b4a3daeb2.html +1 −0
@@ -0,0 +1 @@
1 +{"type":"12","floor":"17","unit_details":"<div><div class=\"collection\"><img src=\"https:\/\/www.1squarephillips.ca\/2022\/\/images\/logo-1-square-phillips-locatif.svg\" alt=\"1 Square Phillips Locatif\"\/><\/div><h2>unit\u00e9 1709<\/h2><h3>Plan 09<\/h3><p class=\"uppercase\">1 chambre \/ 1 salle de bain<\/p><p><span>Superficie<\/span><span>637 pi<sup>2<\/sup><\/span><span>(59 m<sup>2<\/sup>)<\/span><span>Balcon<\/span><span>97 pi<sup>2<\/sup><\/span><span>(9 m<sup>2<\/sup>)<\/span><span>Total<\/span><span>734 pi<sup>2<\/sup><\/span><span>(68 m<sup>2<\/sup>)<\/span><\/p><div class=\"bt-floor-plan\"><a rel=\"nofollow\" href=\"#\" class=\"bt-floor\"><\/a><\/div>\n\t\t\t\t<\/div><ol class=\"column\"><li><strong>Cuisine <br>salle \u00e0 manger<\/strong><br>13'-0\" x 13'-10\"<\/li><li><strong>S\u00e9jour<\/strong><br>10'-10\" x 13'-5\"<\/li><li><strong>Chambre principale<\/strong><br>10'-2\" x 15'-3\"<\/li><li><strong>Salle de bain<\/strong><br>5'-0\" x 7'-6\"<\/li><li><strong>Balcon<\/strong><br>6'-2\" x 15'-8\"<\/li><\/ol><div class=\"bt-back-download\"><a href=\"https:\/\/www.1squarephillips.ca\/\" data-type=\"12\" data-floor=\"17\" data-unit=\"1709\" class=\"bt bt-back\">Retour au plan d'\u00e9tage<\/a><br><br><a href=\"https:\/\/www.1squarephillips.ca\/2022\/pdf\/1spl-plan-09.pdf\" target=\"_blank\" class=\"bt bt-download\">T\u00e9l\u00e9charger PDF<\/a><\/div>","unit_plan":"<img src=\"https:\/\/www.1squarephillips.ca\/2022\/images\/1spl-plan-09.png\" alt=\"1SP - 09-rental\"\/>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/405669a3b92a6ab14e81.html +1 −0
@@ -0,0 +1 @@
1 +{"floor":"<div><?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->\n<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\n\t width=\"401px\" height=\"550px\" viewBox=\"0 0 401 550\" style=\"enable-background:new 0 0 401 550;\" xml:space=\"preserve\">\n<style type=\"text\/css\">\n\t.st0{display:none;}\n<\/style>\n<g id=\"others\">\n\t<path d=\"M275,331h18v21h-18V331z\"\/>\n\t<path d=\"M131,358h120v32H131V358z\"\/>\n\t<path d=\"M131,320h120v38H131V320z\"\/>\n\t<path d=\"M131,287h120v33H131V287z\"\/>\n\t<path d=\"M131,215h120v36H131V215z\"\/>\n\t<path d=\"M92,358h15v32H92V358z\"\/>\n<\/g>\n<g id=\"units\">\n\t<g id=\"unit501\" class=\"unit\">\n\t\t<path d=\"M205,390h-74v47h-18v34h10v18h69v-71h13V390z\"\/>\n\t\t<path d=\"M131,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 149 441)\">501<\/text>\n\t<\/g>\n\t<g id=\"unit502\" class=\"unit\">\n\t\t<path d=\"M113,437h18v-26h-30v34H45v-11H0v91h131v-36h-8v-18h-10V437z\"\/>\n\t\t<path d=\"M0,525h131v24H0V525z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 488)\">502<\/text>\n\t<\/g>\n\t<g id=\"unit503\" class=\"unit\">\n\t\t<path d=\"M0,390v44h45v11h56v-55H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 415)\">503<\/text>\n\t<\/g>\n\t<g id=\"unit504\" class=\"unit\">\n\t\t<path d=\"M114,320H92v-11H0v81h92v-32h22V320z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 352.7008)\">504<\/text>\n\t<\/g>\n\t<g id=\"unit505\" class=\"unit\">\n\t\t<path d=\"M86,287v-30H0v52h92v11h22v-33H86z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 286)\">505<\/text>\n\t<\/g>\n\t<g id=\"unit506\" class=\"unit\">\n\t\t<path d=\"M0,217v40h86v30h28v-70H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 240)\">506<\/text>\n\t<\/g>\n\t<g id=\"unit507\" class=\"unit\">\n\t\t<path d=\"M0,107h131v24H0V107z\"\/>\n\t\t<path d=\"M141,131H0v86h114v-21h17v-11h10V131z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 177)\">507<\/text>\n\t<\/g>\n\t<g id=\"unit508\" class=\"unit\">\n\t\t<path d=\"M131,95v36h10v54h-10v30h63v-72h13V95H131z\"\/>\n\t\t<path d=\"M131,71h69v24h-69V71z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 157 177)\">508<\/text>\n\t<\/g>\n\t<g id=\"unit509\" class=\"unit\">\n\t\t<path d=\"M200,71h69v24h-69V71z\"\/>\n\t\t<path d=\"M289,95h-82v48h-13v72h57v-61h38V95z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 212 177)\">509<\/text>\n\t<\/g>\n\t<g id=\"unit510\" class=\"unit\">\n\t\t<!--<path class=\"st0\" d=\"M269,0h131v23H269V0z\"\/>-->\n\t\t<path d=\"M269,0v95h20v59h-38v33h19v-9h35v-40h45v-11h50V0H269z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 78.203)\">510<\/text>\n\t<\/g>\n\t<g id=\"unit511\" class=\"unit\">\n\t\t<path d=\"M350,127v11h-45v40h-35v26h11v13h28v-13h91v-77H350z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 174.2037)\">511<\/text>\n\t<\/g>\n\t<g id=\"unit512\" class=\"unit\">\n\t\t<path d=\"M309,204v13h-42v41h33v-10h100v-44H309z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 229.204)\">512<\/text>\n\t<\/g>\n\t<g id=\"unit513\" class=\"unit\">\n\t\t<path d=\"M300,248v10h-33v32h133v-10v-22v-10H300z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 272.2039)\">513<\/text>\n\t<\/g>\n\t<g id=\"unit514\" class=\"unit\">\n\t\t<path d=\"M267,290h133v41H267V290z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 313.7039)\">514<\/text>\n\t<\/g>\n\t<g id=\"unit515\" class=\"unit onsale\">\n\t\t<path d=\"M293,331v21h-24v66h131v-87H293z\"\/>\n\t\t<path d=\"M269,418h131v22H269V418z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 377.704)\">515<\/text>\n\t<\/g>\n\t<g id=\"unit516\" class=\"unit\">\n\t\t<path d=\"M251,386v4h-46v28h-13v71h77V386H251z\"\/>\n\t\t<path d=\"M200,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 217.6826 441.0004)\">516<\/text>\n\t<\/g>\n<\/g>\n<\/svg>\n<\/div>","legend":"<ul><li class=\"match\">Studios (0)<\/li><li class=\"onsale\">Autre option (1)<\/li><li class=\"sold\">Lou\u00e9s (15)<\/li><\/div><\/ul>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/41be98eca2256df8c4ec.html +1 −0
@@ -0,0 +1 @@
1 +{"floor":"<div><?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->\n<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\n\t width=\"401px\" height=\"550px\" viewBox=\"0 0 401 550\" style=\"enable-background:new 0 0 401 550;\" xml:space=\"preserve\">\n<style type=\"text\/css\">\n\t.st0{display:none;}\n<\/style>\n<g id=\"others\">\n\t<path d=\"M275,331h18v21h-18V331z\"\/>\n\t<path d=\"M131,358h120v32H131V358z\"\/>\n\t<path d=\"M131,320h120v38H131V320z\"\/>\n\t<path d=\"M131,287h120v33H131V287z\"\/>\n\t<path d=\"M131,215h120v36H131V215z\"\/>\n\t<path d=\"M92,358h15v32H92V358z\"\/>\n<\/g>\n<g id=\"units\">\n\t<g id=\"unit701\" class=\"unit\">\n\t\t<path d=\"M205,390h-74v47h-18v34h10v18h69v-71h13V390z\"\/>\n\t\t<path d=\"M131,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 149 441)\">701<\/text>\n\t<\/g>\n\t<g id=\"unit702\" class=\"unit\">\n\t\t<path d=\"M113,437h18v-26h-30v34H45v-11H0v91h131v-36h-8v-18h-10V437z\"\/>\n\t\t<path d=\"M0,525h131v24H0V525z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 488)\">702<\/text>\n\t<\/g>\n\t<g id=\"unit703\" class=\"unit\">\n\t\t<path d=\"M0,390v44h45v11h56v-55H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 415)\">703<\/text>\n\t<\/g>\n\t<g id=\"unit704\" class=\"unit\">\n\t\t<path d=\"M114,320H92v-11H0v81h92v-32h22V320z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 352.7008)\">704<\/text>\n\t<\/g>\n\t<g id=\"unit705\" class=\"unit\">\n\t\t<path d=\"M86,287v-30H0v52h92v11h22v-33H86z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 286)\">705<\/text>\n\t<\/g>\n\t<g id=\"unit706\" class=\"unit\">\n\t\t<path d=\"M0,217v40h86v30h28v-70H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 240)\">706<\/text>\n\t<\/g>\n\t<g id=\"unit707\" class=\"unit\">\n\t\t<path d=\"M0,107h131v24H0V107z\"\/>\n\t\t<path d=\"M141,131H0v86h114v-21h17v-11h10V131z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 177)\">707<\/text>\n\t<\/g>\n\t<g id=\"unit708\" class=\"unit\">\n\t\t<path d=\"M131,95v36h10v54h-10v30h63v-72h13V95H131z\"\/>\n\t\t<path d=\"M131,71h69v24h-69V71z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 157 177)\">708<\/text>\n\t<\/g>\n\t<g id=\"unit709\" class=\"unit onsale\">\n\t\t<path d=\"M200,71h69v24h-69V71z\"\/>\n\t\t<path d=\"M289,95h-82v48h-13v72h57v-61h38V95z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 212 177)\">709<\/text>\n\t<\/g>\n\t<g id=\"unit710\" class=\"unit onsale\">\n\t\t<!--<path class=\"st0\" d=\"M269,0h131v23H269V0z\"\/>-->\n\t\t<path d=\"M269,0v95h20v59h-38v33h19v-9h35v-40h45v-11h50V0H269z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 78.203)\">710<\/text>\n\t<\/g>\n\t<g id=\"unit711\" class=\"unit\">\n\t\t<path d=\"M350,127v11h-45v40h-35v26h11v13h28v-13h91v-77H350z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 174.2037)\">711<\/text>\n\t<\/g>\n\t<g id=\"unit712\" class=\"unit\">\n\t\t<path d=\"M309,204v13h-42v41h33v-10h100v-44H309z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 229.204)\">712<\/text>\n\t<\/g>\n\t<g id=\"unit713\" class=\"unit\">\n\t\t<path d=\"M300,248v10h-33v32h133v-10v-22v-10H300z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 272.2039)\">713<\/text>\n\t<\/g>\n\t<g id=\"unit714\" class=\"unit\">\n\t\t<path d=\"M267,290h133v41H267V290z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 313.7039)\">714<\/text>\n\t<\/g>\n\t<g id=\"unit715\" class=\"unit\">\n\t\t<path d=\"M293,331v21h-24v66h131v-87H293z\"\/>\n\t\t<path d=\"M269,418h131v22H269V418z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 377.704)\">715<\/text>\n\t<\/g>\n\t<g id=\"unit716\" class=\"unit\">\n\t\t<path d=\"M251,386v4h-46v28h-13v71h77V386H251z\"\/>\n\t\t<path d=\"M200,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 217.6826 441.0004)\">716<\/text>\n\t<\/g>\n<\/g>\n<\/svg>\n<\/div>","legend":"<ul><li class=\"match\">Studios (0)<\/li><li class=\"onsale\">Autres options (2)<\/li><li class=\"sold\">Lou\u00e9s (14)<\/li><\/div><\/ul>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/5364103f0dc50f070cbd.html +1 −0
@@ -0,0 +1 @@
1 +{"floor":"<div><?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->\n<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\n\t width=\"401px\" height=\"550px\" viewBox=\"0 0 401 550\" style=\"enable-background:new 0 0 401 550;\" xml:space=\"preserve\">\n<style type=\"text\/css\">\n\t.st0{display:none;}\n<\/style>\n<g id=\"others\">\n\t<path d=\"M275,331h18v21h-18V331z\"\/>\n\t<path d=\"M131,358h120v32H131V358z\"\/>\n\t<path d=\"M131,320h120v38H131V320z\"\/>\n\t<path d=\"M131,287h120v33H131V287z\"\/>\n\t<path d=\"M131,215h120v36H131V215z\"\/>\n\t<path d=\"M92,358h15v32H92V358z\"\/>\n<\/g>\n<g id=\"units\">\n\t<g id=\"unit1701\" class=\"unit\">\n\t\t<path d=\"M205,390h-74v47h-18v34h10v18h69v-71h13V390z\"\/>\n\t\t<path d=\"M131,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 149 441)\">1701<\/text>\n\t<\/g>\n\t<g id=\"unit1702\" class=\"unit\">\n\t\t<path d=\"M113,437h18v-26h-30v34H45v-11H0v91h131v-36h-8v-18h-10V437z\"\/>\n\t\t<path d=\"M0,525h131v24H0V525z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 488)\">1702<\/text>\n\t<\/g>\n\t<g id=\"unit1703\" class=\"unit\">\n\t\t<path d=\"M0,390v44h45v11h56v-55H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 415)\">1703<\/text>\n\t<\/g>\n\t<g id=\"unit1704\" class=\"unit\">\n\t\t<path d=\"M114,320H92v-11H0v81h92v-32h22V320z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 352.7008)\">1704<\/text>\n\t<\/g>\n\t<g id=\"unit1705\" class=\"unit\">\n\t\t<path d=\"M86,287v-30H0v52h92v11h22v-33H86z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 286)\">1705<\/text>\n\t<\/g>\n\t<g id=\"unit1706\" class=\"unit match onsale\">\n\t\t<path d=\"M0,217v40h86v30h28v-70H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 240)\">1706<\/text>\n\t<\/g>\n\t<g id=\"unit1707\" class=\"unit\">\n\t\t<path d=\"M0,107h131v24H0V107z\"\/>\n\t\t<path d=\"M141,131H0v86h114v-21h17v-11h10V131z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 177)\">1707<\/text>\n\t<\/g>\n\t<g id=\"unit1708\" class=\"unit onsale\">\n\t\t<path d=\"M131,95v36h10v54h-10v30h63v-72h13V95H131z\"\/>\n\t\t<path d=\"M131,71h69v24h-69V71z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 157 177)\">1708<\/text>\n\t<\/g>\n\t<g id=\"unit1709\" class=\"unit onsale\">\n\t\t<path d=\"M200,71h69v24h-69V71z\"\/>\n\t\t<path d=\"M289,95h-82v48h-13v72h57v-61h38V95z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 212 177)\">1709<\/text>\n\t<\/g>\n\t<g id=\"unit1710\" class=\"unit\">\n\t\t<!--<path class=\"st0\" d=\"M269,0h131v23H269V0z\"\/>-->\n\t\t<path d=\"M269,0v95h20v59h-38v33h19v-9h35v-40h45v-11h50V0H269z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 78.203)\">1710<\/text>\n\t<\/g>\n\t<g id=\"unit1711\" class=\"unit\">\n\t\t<path d=\"M350,127v11h-45v40h-35v26h11v13h28v-13h91v-77H350z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 174.2037)\">1711<\/text>\n\t<\/g>\n\t<g id=\"unit1712\" class=\"unit\">\n\t\t<path d=\"M309,204v13h-42v41h33v-10h100v-44H309z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 229.204)\">1712<\/text>\n\t<\/g>\n\t<g id=\"unit1713\" class=\"unit\">\n\t\t<path d=\"M300,248v10h-33v32h133v-10v-22v-10H300z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 272.2039)\">1713<\/text>\n\t<\/g>\n\t<g id=\"unit1714\" class=\"unit\">\n\t\t<path d=\"M267,290h133v41H267V290z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 313.7039)\">1714<\/text>\n\t<\/g>\n\t<g id=\"unit1715\" class=\"unit onsale\">\n\t\t<path d=\"M293,331v21h-24v66h131v-87H293z\"\/>\n\t\t<path d=\"M269,418h131v22H269V418z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 377.704)\">1715<\/text>\n\t<\/g>\n\t<g id=\"unit1716\" class=\"unit\">\n\t\t<path d=\"M251,386v4h-46v28h-13v71h77V386H251z\"\/>\n\t\t<path d=\"M200,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 217.6826 441.0004)\">1716<\/text>\n\t<\/g>\n<\/g>\n<\/svg>\n<\/div>","legend":"<ul><li class=\"match\">Studios (1)<\/li><li class=\"onsale\">Autres options (3)<\/li><li class=\"sold\">Lou\u00e9s (12)<\/li><\/div><\/ul>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/53e175e61127e9d4f2db.html +1 −0
@@ -0,0 +1 @@
1 +{"floor":"<div><?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->\n<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\n\t width=\"401px\" height=\"550px\" viewBox=\"0 0 401 550\" style=\"enable-background:new 0 0 401 550;\" xml:space=\"preserve\">\n<style type=\"text\/css\">\n\t.st0{display:none;}\n<\/style>\n<g id=\"others\">\n\t<path d=\"M275,331h18v21h-18V331z\"\/>\n\t<path d=\"M131,358h120v32H131V358z\"\/>\n\t<path d=\"M131,320h120v38H131V320z\"\/>\n\t<path d=\"M131,287h120v33H131V287z\"\/>\n\t<path d=\"M131,215h120v36H131V215z\"\/>\n\t<path d=\"M92,358h15v32H92V358z\"\/>\n<\/g>\n<g id=\"units\">\n\t<g id=\"unit301\" class=\"unit\">\n\t\t<path d=\"M205,390h-74v47h-18v34h10v18h69v-71h13V390z\"\/>\n\t\t<path d=\"M131,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 149 441)\">301<\/text>\n\t<\/g>\n\t<g id=\"unit302\" class=\"unit\">\n\t\t<path d=\"M113,437h18v-26h-30v34H45v-11H0v91h131v-36h-8v-18h-10V437z\"\/>\n\t\t<path d=\"M0,525h131v24H0V525z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 488)\">302<\/text>\n\t<\/g>\n\t<g id=\"unit303\" class=\"unit\">\n\t\t<path d=\"M0,390v44h45v11h56v-55H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 415)\">303<\/text>\n\t<\/g>\n\t<g id=\"unit304\" class=\"unit\">\n\t\t<path d=\"M114,320H92v-11H0v81h92v-32h22V320z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 352.7008)\">304<\/text>\n\t<\/g>\n\t<g id=\"unit305\" class=\"unit\">\n\t\t<path d=\"M86,287v-30H0v52h92v11h22v-33H86z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 286)\">305<\/text>\n\t<\/g>\n\t<g id=\"unit306\" class=\"unit\">\n\t\t<path d=\"M0,217v40h86v30h28v-70H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 240)\">306<\/text>\n\t<\/g>\n\t<g id=\"unit307\" class=\"unit\">\n\t\t<path d=\"M0,107h131v24H0V107z\"\/>\n\t\t<path d=\"M141,131H0v86h114v-21h17v-11h10V131z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 177)\">307<\/text>\n\t<\/g>\n\t<g id=\"unit308\" class=\"unit\">\n\t\t<path d=\"M131,95v36h10v54h-10v30h63v-72h13V95H131z\"\/>\n\t\t<path d=\"M131,71h69v24h-69V71z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 157 177)\">308<\/text>\n\t<\/g>\n\t<g id=\"unit309\" class=\"unit\">\n\t\t<path d=\"M200,71h69v24h-69V71z\"\/>\n\t\t<path d=\"M289,95h-82v48h-13v72h57v-61h38V95z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 212 177)\">309<\/text>\n\t<\/g>\n\t<g id=\"unit310\" class=\"unit onsale\">\n\t\t<!--<path class=\"st0\" d=\"M269,0h131v23H269V0z\"\/>-->\n\t\t<path d=\"M269,0v95h20v59h-38v33h19v-9h35v-40h45v-11h50V0H269z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 78.203)\">310<\/text>\n\t<\/g>\n\t<g id=\"unit311\" class=\"unit\">\n\t\t<path d=\"M350,127v11h-45v40h-35v26h11v13h28v-13h91v-77H350z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 174.2037)\">311<\/text>\n\t<\/g>\n\t<g id=\"unit312\" class=\"unit\">\n\t\t<path d=\"M309,204v13h-42v41h33v-10h100v-44H309z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 229.204)\">312<\/text>\n\t<\/g>\n\t<g id=\"unit313\" class=\"unit\">\n\t\t<path d=\"M300,248v10h-33v32h133v-10v-22v-10H300z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 272.2039)\">313<\/text>\n\t<\/g>\n\t<g id=\"unit314\" class=\"unit\">\n\t\t<path d=\"M267,290h133v41H267V290z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 313.7039)\">314<\/text>\n\t<\/g>\n\t<g id=\"unit315\" class=\"unit\">\n\t\t<path d=\"M293,331v21h-24v66h131v-87H293z\"\/>\n\t\t<path d=\"M269,418h131v22H269V418z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 377.704)\">315<\/text>\n\t<\/g>\n\t<g id=\"unit316\" class=\"unit\">\n\t\t<path d=\"M251,386v4h-46v28h-13v71h77V386H251z\"\/>\n\t\t<path d=\"M200,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 217.6826 441.0004)\">316<\/text>\n\t<\/g>\n<\/g>\n<\/svg>\n<\/div>","legend":"<ul><li class=\"match\">Studios (0)<\/li><li class=\"onsale\">Autre option (1)<\/li><li class=\"sold\">Lou\u00e9s (15)<\/li><\/div><\/ul>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/54df47e60b99c97f0126.html +1 −0
@@ -0,0 +1 @@
1 +{"type":"13","floor":"3","unit_details":"<div><div class=\"collection\"><img src=\"https:\/\/www.1squarephillips.ca\/2022\/\/images\/logo-1-square-phillips-locatif.svg\" alt=\"1 Square Phillips Locatif\"\/><\/div><h2>unit\u00e9 310<\/h2><h3>Plan 10<\/h3><p class=\"uppercase\">2 chambres \/ 2 salles de bain<\/p><p><span>Superficie<\/span><span>1 405 pi<sup>2<\/sup><\/span><span>(131 m<sup>2<\/sup>)<\/span><span>Total<\/span><span>1 405 pi<sup>2<\/sup><\/span><span>(131 m<sup>2<\/sup>)<\/span><\/p><div class=\"bt-floor-plan\"><a rel=\"nofollow\" href=\"#\" class=\"bt-floor\"><\/a><\/div>\n\t\t\t\t<\/div><ol class=\"column\"><li><strong>Cuisine<\/strong><br>7'-9\" x 16'-3\"<\/li><li><strong>Salle \u00e0 manger<\/strong><br>11'-8\" x 19'-1\"<\/li><li><strong>S\u00e9jour<\/strong><br>10'-2\" x 19'-1\"<\/li><li><strong>Chambre principale<\/strong><br>12'-11\" x 19'-1\"<\/li><li><strong>Salle de bain<\/strong><br>5'-0\" x 7'-8\"<\/li><li><strong>Chambre 2<\/strong><br>8'-9\" x 12'-11\"<\/li><li><strong>Salle de bain 2<\/strong><br>5'-0\" x 9'-11\"<\/li><li><strong>Salle de lavage<\/strong><br>5'-1\" x 5'-1\"<\/li><li><strong>Entr\u00e9e<\/strong><br>3'-6\" x 14'-0\"<\/li><\/ol><div class=\"bt-back-download\"><a href=\"https:\/\/www.1squarephillips.ca\/\" data-type=\"13\" data-floor=\"3\" data-unit=\"310\" class=\"bt bt-back\">Retour au plan d'\u00e9tage<\/a><br><br><a href=\"https:\/\/www.1squarephillips.ca\/2022\/pdf\/1spl-plan-10.pdf\" target=\"_blank\" class=\"bt bt-download\">T\u00e9l\u00e9charger PDF<\/a><\/div>","unit_plan":"<img src=\"https:\/\/www.1squarephillips.ca\/2022\/images\/1spl-plan-10.png\" alt=\"1SP - 10-rental\"\/>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/5bbec04c9e6764dd409b.html +1 −0
@@ -0,0 +1 @@
1 +{"type":"12","floor":"10","unit_details":"<div><div class=\"collection\"><img src=\"https:\/\/www.1squarephillips.ca\/2022\/\/images\/logo-1-square-phillips-locatif.svg\" alt=\"1 Square Phillips Locatif\"\/><\/div><h2>unit\u00e9 1009<\/h2><h3>Plan 09<\/h3><p class=\"uppercase\">1 chambre \/ 1 salle de bain<\/p><p><span>Superficie<\/span><span>637 pi<sup>2<\/sup><\/span><span>(59 m<sup>2<\/sup>)<\/span><span>Balcon<\/span><span>97 pi<sup>2<\/sup><\/span><span>(9 m<sup>2<\/sup>)<\/span><span>Total<\/span><span>734 pi<sup>2<\/sup><\/span><span>(68 m<sup>2<\/sup>)<\/span><\/p><div class=\"bt-floor-plan\"><a rel=\"nofollow\" href=\"#\" class=\"bt-floor\"><\/a><\/div>\n\t\t\t\t<\/div><ol class=\"column\"><li><strong>Cuisine <br>salle \u00e0 manger<\/strong><br>13'-0\" x 13'-10\"<\/li><li><strong>S\u00e9jour<\/strong><br>10'-10\" x 13'-5\"<\/li><li><strong>Chambre principale<\/strong><br>10'-2\" x 15'-3\"<\/li><li><strong>Salle de bain<\/strong><br>5'-0\" x 7'-6\"<\/li><li><strong>Balcon<\/strong><br>6'-2\" x 15'-8\"<\/li><\/ol><div class=\"bt-back-download\"><a href=\"https:\/\/www.1squarephillips.ca\/\" data-type=\"12\" data-floor=\"10\" data-unit=\"1009\" class=\"bt bt-back\">Retour au plan d'\u00e9tage<\/a><br><br><a href=\"https:\/\/www.1squarephillips.ca\/2022\/pdf\/1spl-plan-09.pdf\" target=\"_blank\" class=\"bt bt-download\">T\u00e9l\u00e9charger PDF<\/a><\/div>","unit_plan":"<img src=\"https:\/\/www.1squarephillips.ca\/2022\/images\/1spl-plan-09.png\" alt=\"1SP - 09-rental\"\/>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/634d3ed0e3bdcea6a1a8.html +1 −0
@@ -0,0 +1 @@
1 +{"floor":"<div><?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->\n<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\n\t width=\"401px\" height=\"550px\" viewBox=\"0 0 401 550\" style=\"enable-background:new 0 0 401 550;\" xml:space=\"preserve\">\n<style type=\"text\/css\">\n\t.st0{display:none;}\n<\/style>\n<g id=\"others\">\n\t<path d=\"M275,331h18v21h-18V331z\"\/>\n\t<path d=\"M131,358h120v32H131V358z\"\/>\n\t<path d=\"M131,320h120v38H131V320z\"\/>\n\t<path d=\"M131,287h120v33H131V287z\"\/>\n\t<path d=\"M131,215h120v36H131V215z\"\/>\n\t<path d=\"M92,358h15v32H92V358z\"\/>\n<\/g>\n<g id=\"units\">\n\t<g id=\"unit1201\" class=\"unit\">\n\t\t<path d=\"M205,390h-74v47h-18v34h10v18h69v-71h13V390z\"\/>\n\t\t<path d=\"M131,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 149 441)\">1201<\/text>\n\t<\/g>\n\t<g id=\"unit1202\" class=\"unit\">\n\t\t<path d=\"M113,437h18v-26h-30v34H45v-11H0v91h131v-36h-8v-18h-10V437z\"\/>\n\t\t<path d=\"M0,525h131v24H0V525z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 488)\">1202<\/text>\n\t<\/g>\n\t<g id=\"unit1203\" class=\"unit\">\n\t\t<path d=\"M0,390v44h45v11h56v-55H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 415)\">1203<\/text>\n\t<\/g>\n\t<g id=\"unit1204\" class=\"unit\">\n\t\t<path d=\"M114,320H92v-11H0v81h92v-32h22V320z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 352.7008)\">1204<\/text>\n\t<\/g>\n\t<g id=\"unit1205\" class=\"unit\">\n\t\t<path d=\"M86,287v-30H0v52h92v11h22v-33H86z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 286)\">1205<\/text>\n\t<\/g>\n\t<g id=\"unit1206\" class=\"unit\">\n\t\t<path d=\"M0,217v40h86v30h28v-70H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 240)\">1206<\/text>\n\t<\/g>\n\t<g id=\"unit1207\" class=\"unit\">\n\t\t<path d=\"M0,107h131v24H0V107z\"\/>\n\t\t<path d=\"M141,131H0v86h114v-21h17v-11h10V131z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 177)\">1207<\/text>\n\t<\/g>\n\t<g id=\"unit1208\" class=\"unit\">\n\t\t<path d=\"M131,95v36h10v54h-10v30h63v-72h13V95H131z\"\/>\n\t\t<path d=\"M131,71h69v24h-69V71z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 157 177)\">1208<\/text>\n\t<\/g>\n\t<g id=\"unit1209\" class=\"unit onsale\">\n\t\t<path d=\"M200,71h69v24h-69V71z\"\/>\n\t\t<path d=\"M289,95h-82v48h-13v72h57v-61h38V95z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 212 177)\">1209<\/text>\n\t<\/g>\n\t<g id=\"unit1210\" class=\"unit\">\n\t\t<!--<path class=\"st0\" d=\"M269,0h131v23H269V0z\"\/>-->\n\t\t<path d=\"M269,0v95h20v59h-38v33h19v-9h35v-40h45v-11h50V0H269z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 78.203)\">1210<\/text>\n\t<\/g>\n\t<g id=\"unit1211\" class=\"unit\">\n\t\t<path d=\"M350,127v11h-45v40h-35v26h11v13h28v-13h91v-77H350z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 174.2037)\">1211<\/text>\n\t<\/g>\n\t<g id=\"unit1212\" class=\"unit\">\n\t\t<path d=\"M309,204v13h-42v41h33v-10h100v-44H309z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 229.204)\">1212<\/text>\n\t<\/g>\n\t<g id=\"unit1213\" class=\"unit\">\n\t\t<path d=\"M300,248v10h-33v32h133v-10v-22v-10H300z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 272.2039)\">1213<\/text>\n\t<\/g>\n\t<g id=\"unit1214\" class=\"unit\">\n\t\t<path d=\"M267,290h133v41H267V290z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 313.7039)\">1214<\/text>\n\t<\/g>\n\t<g id=\"unit1215\" class=\"unit\">\n\t\t<path d=\"M293,331v21h-24v66h131v-87H293z\"\/>\n\t\t<path d=\"M269,418h131v22H269V418z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 377.704)\">1215<\/text>\n\t<\/g>\n\t<g id=\"unit1216\" class=\"unit\">\n\t\t<path d=\"M251,386v4h-46v28h-13v71h77V386H251z\"\/>\n\t\t<path d=\"M200,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 217.6826 441.0004)\">1216<\/text>\n\t<\/g>\n<\/g>\n<\/svg>\n<\/div>","legend":"<ul><li class=\"match\">Studios (0)<\/li><li class=\"onsale\">Autre option (1)<\/li><li class=\"sold\">Lou\u00e9s (15)<\/li><\/div><\/ul>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/64c6649dc56a0c76632b.html +1 −0
@@ -0,0 +1 @@
1 +{"floor":"<div><?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->\n<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\n\t width=\"401px\" height=\"550px\" viewBox=\"0 0 401 550\" style=\"enable-background:new 0 0 401 550;\" xml:space=\"preserve\">\n<style type=\"text\/css\">\n\t.st0{display:none;}\n<\/style>\n<g id=\"others\">\n\t<path d=\"M275,331h18v21h-18V331z\"\/>\n\t<path d=\"M131,358h120v32H131V358z\"\/>\n\t<path d=\"M131,320h120v38H131V320z\"\/>\n\t<path d=\"M131,287h120v33H131V287z\"\/>\n\t<path d=\"M131,215h120v36H131V215z\"\/>\n\t<path d=\"M92,358h15v32H92V358z\"\/>\n<\/g>\n<g id=\"units\">\n\t<g id=\"unit1401\" class=\"unit\">\n\t\t<path d=\"M205,390h-74v47h-18v34h10v18h69v-71h13V390z\"\/>\n\t\t<path d=\"M131,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 149 441)\">1401<\/text>\n\t<\/g>\n\t<g id=\"unit1402\" class=\"unit\">\n\t\t<path d=\"M113,437h18v-26h-30v34H45v-11H0v91h131v-36h-8v-18h-10V437z\"\/>\n\t\t<path d=\"M0,525h131v24H0V525z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 488)\">1402<\/text>\n\t<\/g>\n\t<g id=\"unit1403\" class=\"unit\">\n\t\t<path d=\"M0,390v44h45v11h56v-55H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 415)\">1403<\/text>\n\t<\/g>\n\t<g id=\"unit1404\" class=\"unit\">\n\t\t<path d=\"M114,320H92v-11H0v81h92v-32h22V320z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 352.7008)\">1404<\/text>\n\t<\/g>\n\t<g id=\"unit1405\" class=\"unit\">\n\t\t<path d=\"M86,287v-30H0v52h92v11h22v-33H86z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 286)\">1405<\/text>\n\t<\/g>\n\t<g id=\"unit1406\" class=\"unit match onsale\">\n\t\t<path d=\"M0,217v40h86v30h28v-70H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 240)\">1406<\/text>\n\t<\/g>\n\t<g id=\"unit1407\" class=\"unit\">\n\t\t<path d=\"M0,107h131v24H0V107z\"\/>\n\t\t<path d=\"M141,131H0v86h114v-21h17v-11h10V131z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 177)\">1407<\/text>\n\t<\/g>\n\t<g id=\"unit1408\" class=\"unit\">\n\t\t<path d=\"M131,95v36h10v54h-10v30h63v-72h13V95H131z\"\/>\n\t\t<path d=\"M131,71h69v24h-69V71z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 157 177)\">1408<\/text>\n\t<\/g>\n\t<g id=\"unit1409\" class=\"unit\">\n\t\t<path d=\"M200,71h69v24h-69V71z\"\/>\n\t\t<path d=\"M289,95h-82v48h-13v72h57v-61h38V95z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 212 177)\">1409<\/text>\n\t<\/g>\n\t<g id=\"unit1410\" class=\"unit\">\n\t\t<!--<path class=\"st0\" d=\"M269,0h131v23H269V0z\"\/>-->\n\t\t<path d=\"M269,0v95h20v59h-38v33h19v-9h35v-40h45v-11h50V0H269z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 78.203)\">1410<\/text>\n\t<\/g>\n\t<g id=\"unit1411\" class=\"unit\">\n\t\t<path d=\"M350,127v11h-45v40h-35v26h11v13h28v-13h91v-77H350z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 174.2037)\">1411<\/text>\n\t<\/g>\n\t<g id=\"unit1412\" class=\"unit match onsale\">\n\t\t<path d=\"M309,204v13h-42v41h33v-10h100v-44H309z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 229.204)\">1412<\/text>\n\t<\/g>\n\t<g id=\"unit1413\" class=\"unit\">\n\t\t<path d=\"M300,248v10h-33v32h133v-10v-22v-10H300z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 272.2039)\">1413<\/text>\n\t<\/g>\n\t<g id=\"unit1414\" class=\"unit\">\n\t\t<path d=\"M267,290h133v41H267V290z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 313.7039)\">1414<\/text>\n\t<\/g>\n\t<g id=\"unit1415\" class=\"unit\">\n\t\t<path d=\"M293,331v21h-24v66h131v-87H293z\"\/>\n\t\t<path d=\"M269,418h131v22H269V418z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 377.704)\">1415<\/text>\n\t<\/g>\n\t<g id=\"unit1416\" class=\"unit\">\n\t\t<path d=\"M251,386v4h-46v28h-13v71h77V386H251z\"\/>\n\t\t<path d=\"M200,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 217.6826 441.0004)\">1416<\/text>\n\t<\/g>\n<\/g>\n<\/svg>\n<\/div>","legend":"<ul><li class=\"match\">Studios (2)<\/li><li class=\"sold\">Lou\u00e9s (14)<\/li><\/div><\/ul>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/65cf2296684ff5ca612c.html +1 −0
@@ -0,0 +1 @@
1 +{"floor":"<div><?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->\n<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\n\t width=\"401px\" height=\"550px\" viewBox=\"0 0 401 550\" style=\"enable-background:new 0 0 401 550;\" xml:space=\"preserve\">\n<style type=\"text\/css\">\n\t.st0{display:none;}\n<\/style>\n<g id=\"others\">\n\t<path d=\"M275,331h18v21h-18V331z\"\/>\n\t<path d=\"M131,358h120v32H131V358z\"\/>\n\t<path d=\"M131,320h120v38H131V320z\"\/>\n\t<path d=\"M131,287h120v33H131V287z\"\/>\n\t<path d=\"M131,215h120v36H131V215z\"\/>\n\t<path d=\"M92,358h15v32H92V358z\"\/>\n\t<path d=\"M131,489h69v24h-69V489z\"\/>\n\t<path d=\"M269,489V386h-18v4H131v21h-30v-21H0v159h131v-60H269z\"\/>\n\t<path d=\"M200,489h69v24h-69V489z\"\/>\n\t<path d=\"M0,525h131v24H0V525z\"\/>\n<\/g>\n<g id=\"units\">\n\t<!--<g id=\"unit1\" class=\"st0\">\n\t\t<path d=\"M205,390h-74v47h-18v34h10v18h69v-71h13V390z\"\/>\n\t\t<path d=\"M131,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 149 441)\">2004<\/text>\n\t<\/g>\n\t<g id=\"unit2\" class=\"st0\">\n\t\t<path d=\"M113,437h18v-26h-30v34H45v-11H0v115h131v-60h-8v-18h-10V437z\"\/>\n\t\t<path d=\"M0,525h131v24H0V525z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 488)\">2005<\/text>\n\t<\/g>\n\t<g id=\"unit3\" class=\"st0\">\n\t\t<path d=\"M0,390v44h45v11h56v-55H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 415)\">2006<\/text>\n\t<\/g>-->\n\t<g id=\"unit2004\" class=\"unit\">\n\t\t<path d=\"M114,320H92v-11H0v81h92v-32h22V320z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 352.7008)\">2004<\/text>\n\t<\/g>\n\t<g id=\"unit2005\" class=\"unit\">\n\t\t<path d=\"M86,287v-30H0v52h92v11h22v-33H86z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 286)\">2005<\/text>\n\t<\/g>\n\t<g id=\"unit2006\" class=\"unit\">\n\t\t<path d=\"M0,217v40h86v30h28v-70H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 240)\">2006<\/text>\n\t<\/g>\n\t<g id=\"unit2007\" class=\"unit\">\n\t\t<path d=\"M0,107h131v24H0V107z\"\/>\n\t\t<path d=\"M141,131H0v86h114v-21h17v-11h10V131z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 177)\">2007<\/text>\n\t<\/g>\n\t<g id=\"unit2008\" class=\"unit\">\n\t\t<path d=\"M131,95v36h10v54h-10v30h63v-72h13V95H131z\"\/>\n\t\t<path d=\"M131,71h69v24h-69V71z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 157 177)\">2008<\/text>\n\t<\/g>\n\t<g id=\"unit2009\" class=\"unit\">\n\t\t<path d=\"M200,71h69v24h-69V71z\"\/>\n\t\t<path d=\"M289,95h-82v48h-13v72h57v-61h38V95z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 212 177)\">2009<\/text>\n\t<\/g>\n\t<g id=\"unit2010\" class=\"unit\">\n\t\t<!--<path class=\"st0\" d=\"M269,0h131v23H269V0z\"\/>-->\n\t\t<path d=\"M269,0v95h20v59h-38v33h19v-9h35v-40h45v-11h50V0H269z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 78.203)\">2010<\/text>\n\t<\/g>\n\t<g id=\"unit2011\" class=\"unit\">\n\t\t<path d=\"M350,127v11h-45v40h-35v26h11v13h28v-13h91v-77H350z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 174.2037)\">2011<\/text>\n\t<\/g>\n\t<g id=\"unit2012\" class=\"unit\">\n\t\t<path d=\"M309,204v13h-42v41h33v-10h100v-44H309z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 229.204)\">2012<\/text>\n\t<\/g>\n\t<g id=\"unit2013\" class=\"unit\">\n\t\t<path d=\"M300,248v10h-33v32h133v-10v-22v-10H300z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 272.2039)\">2013<\/text>\n\t<\/g>\n\t<g id=\"unit2014\" class=\"unit match onsale\">\n\t\t<path d=\"M267,290h133v41H267V290z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 313.7039)\">2014<\/text>\n\t<\/g>\n\t<g id=\"unit2015\" class=\"unit\">\n\t\t<path d=\"M293,331v21h-24v66h131v-87H293z\"\/>\n\t\t<path d=\"M269,418h131v22H269V418z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 377.704)\">2015<\/text>\n\t<\/g>\n\t<!--<g id=\"unit16\" class=\"st0\">\n\t\t<path d=\"M251,386v4h-46v28h-13v71h77V386H251z\"\/>\n\t\t<path d=\"M200,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 217.6826 441.0004)\">0016<\/text>\n\t<\/g>-->\n<\/g>\n<\/svg>\n<\/div>","legend":"<ul><li class=\"match\">Studios (1)<\/li><li class=\"sold\">Lou\u00e9s (11)<\/li><\/div><\/ul>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/6dcc0742323465feba30.html +1 −0
@@ -0,0 +1 @@
1 +{"floor":"<div><?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->\n<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\n\t width=\"401px\" height=\"550px\" viewBox=\"0 0 401 550\" style=\"enable-background:new 0 0 401 550;\" xml:space=\"preserve\">\n<style type=\"text\/css\">\n\t.st0{display:none;}\n<\/style>\n<g id=\"others\">\n\t<path d=\"M275,331h18v21h-18V331z\"\/>\n\t<path d=\"M131,358h120v32H131V358z\"\/>\n\t<path d=\"M131,320h120v38H131V320z\"\/>\n\t<path d=\"M131,287h120v33H131V287z\"\/>\n\t<path d=\"M131,215h120v36H131V215z\"\/>\n\t<path d=\"M92,358h15v32H92V358z\"\/>\n<\/g>\n<g id=\"units\">\n\t<g id=\"unit1101\" class=\"unit\">\n\t\t<path d=\"M205,390h-74v47h-18v34h10v18h69v-71h13V390z\"\/>\n\t\t<path d=\"M131,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 149 441)\">1101<\/text>\n\t<\/g>\n\t<g id=\"unit1102\" class=\"unit\">\n\t\t<path d=\"M113,437h18v-26h-30v34H45v-11H0v91h131v-36h-8v-18h-10V437z\"\/>\n\t\t<path d=\"M0,525h131v24H0V525z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 488)\">1102<\/text>\n\t<\/g>\n\t<g id=\"unit1103\" class=\"unit\">\n\t\t<path d=\"M0,390v44h45v11h56v-55H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 415)\">1103<\/text>\n\t<\/g>\n\t<g id=\"unit1104\" class=\"unit\">\n\t\t<path d=\"M114,320H92v-11H0v81h92v-32h22V320z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 352.7008)\">1104<\/text>\n\t<\/g>\n\t<g id=\"unit1105\" class=\"unit\">\n\t\t<path d=\"M86,287v-30H0v52h92v11h22v-33H86z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 286)\">1105<\/text>\n\t<\/g>\n\t<g id=\"unit1106\" class=\"unit\">\n\t\t<path d=\"M0,217v40h86v30h28v-70H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 240)\">1106<\/text>\n\t<\/g>\n\t<g id=\"unit1107\" class=\"unit\">\n\t\t<path d=\"M0,107h131v24H0V107z\"\/>\n\t\t<path d=\"M141,131H0v86h114v-21h17v-11h10V131z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 177)\">1107<\/text>\n\t<\/g>\n\t<g id=\"unit1108\" class=\"unit\">\n\t\t<path d=\"M131,95v36h10v54h-10v30h63v-72h13V95H131z\"\/>\n\t\t<path d=\"M131,71h69v24h-69V71z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 157 177)\">1108<\/text>\n\t<\/g>\n\t<g id=\"unit1109\" class=\"unit onsale\">\n\t\t<path d=\"M200,71h69v24h-69V71z\"\/>\n\t\t<path d=\"M289,95h-82v48h-13v72h57v-61h38V95z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 212 177)\">1109<\/text>\n\t<\/g>\n\t<g id=\"unit1110\" class=\"unit\">\n\t\t<!--<path class=\"st0\" d=\"M269,0h131v23H269V0z\"\/>-->\n\t\t<path d=\"M269,0v95h20v59h-38v33h19v-9h35v-40h45v-11h50V0H269z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 78.203)\">1110<\/text>\n\t<\/g>\n\t<g id=\"unit1111\" class=\"unit\">\n\t\t<path d=\"M350,127v11h-45v40h-35v26h11v13h28v-13h91v-77H350z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 174.2037)\">1111<\/text>\n\t<\/g>\n\t<g id=\"unit1112\" class=\"unit\">\n\t\t<path d=\"M309,204v13h-42v41h33v-10h100v-44H309z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 229.204)\">1112<\/text>\n\t<\/g>\n\t<g id=\"unit1113\" class=\"unit\">\n\t\t<path d=\"M300,248v10h-33v32h133v-10v-22v-10H300z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 272.2039)\">1113<\/text>\n\t<\/g>\n\t<g id=\"unit1114\" class=\"unit\">\n\t\t<path d=\"M267,290h133v41H267V290z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 313.7039)\">1114<\/text>\n\t<\/g>\n\t<g id=\"unit1115\" class=\"unit\">\n\t\t<path d=\"M293,331v21h-24v66h131v-87H293z\"\/>\n\t\t<path d=\"M269,418h131v22H269V418z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 377.704)\">1115<\/text>\n\t<\/g>\n\t<g id=\"unit1116\" class=\"unit\">\n\t\t<path d=\"M251,386v4h-46v28h-13v71h77V386H251z\"\/>\n\t\t<path d=\"M200,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 217.6826 441.0004)\">1116<\/text>\n\t<\/g>\n<\/g>\n<\/svg>\n<\/div>","legend":"<ul><li class=\"match\">Studios (0)<\/li><li class=\"onsale\">Autre option (1)<\/li><li class=\"sold\">Lou\u00e9s (15)<\/li><\/div><\/ul>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/6f845743a52afd0db8da.html +1 −0
@@ -0,0 +1 @@
1 +{"floor":"<div><?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->\n<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\n\t width=\"401px\" height=\"550px\" viewBox=\"0 0 401 550\" style=\"enable-background:new 0 0 401 550;\" xml:space=\"preserve\">\n<style type=\"text\/css\">\n\t.st0{display:none;}\n<\/style>\n<g id=\"others\">\n\t<path d=\"M275,331h18v21h-18V331z\"\/>\n\t<path d=\"M131,358h120v32H131V358z\"\/>\n\t<path d=\"M131,320h120v38H131V320z\"\/>\n\t<path d=\"M131,287h120v33H131V287z\"\/>\n\t<path d=\"M131,215h120v36H131V215z\"\/>\n\t<path d=\"M92,358h15v32H92V358z\"\/>\n<\/g>\n<g id=\"units\">\n\t<g id=\"unit1801\" class=\"unit\">\n\t\t<path d=\"M205,390h-74v47h-18v34h10v18h69v-71h13V390z\"\/>\n\t\t<path d=\"M131,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 149 441)\">1801<\/text>\n\t<\/g>\n\t<g id=\"unit1802\" class=\"unit\">\n\t\t<path d=\"M113,437h18v-26h-30v34H45v-11H0v91h131v-36h-8v-18h-10V437z\"\/>\n\t\t<path d=\"M0,525h131v24H0V525z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 488)\">1802<\/text>\n\t<\/g>\n\t<g id=\"unit1803\" class=\"unit\">\n\t\t<path d=\"M0,390v44h45v11h56v-55H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 415)\">1803<\/text>\n\t<\/g>\n\t<g id=\"unit1804\" class=\"unit\">\n\t\t<path d=\"M114,320H92v-11H0v81h92v-32h22V320z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 352.7008)\">1804<\/text>\n\t<\/g>\n\t<g id=\"unit1805\" class=\"unit\">\n\t\t<path d=\"M86,287v-30H0v52h92v11h22v-33H86z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 286)\">1805<\/text>\n\t<\/g>\n\t<g id=\"unit1806\" class=\"unit match onsale\">\n\t\t<path d=\"M0,217v40h86v30h28v-70H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 240)\">1806<\/text>\n\t<\/g>\n\t<g id=\"unit1807\" class=\"unit\">\n\t\t<path d=\"M0,107h131v24H0V107z\"\/>\n\t\t<path d=\"M141,131H0v86h114v-21h17v-11h10V131z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 177)\">1807<\/text>\n\t<\/g>\n\t<g id=\"unit1808\" class=\"unit\">\n\t\t<path d=\"M131,95v36h10v54h-10v30h63v-72h13V95H131z\"\/>\n\t\t<path d=\"M131,71h69v24h-69V71z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 157 177)\">1808<\/text>\n\t<\/g>\n\t<g id=\"unit1809\" class=\"unit onsale\">\n\t\t<path d=\"M200,71h69v24h-69V71z\"\/>\n\t\t<path d=\"M289,95h-82v48h-13v72h57v-61h38V95z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 212 177)\">1809<\/text>\n\t<\/g>\n\t<g id=\"unit1810\" class=\"unit\">\n\t\t<!--<path class=\"st0\" d=\"M269,0h131v23H269V0z\"\/>-->\n\t\t<path d=\"M269,0v95h20v59h-38v33h19v-9h35v-40h45v-11h50V0H269z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 78.203)\">1810<\/text>\n\t<\/g>\n\t<g id=\"unit1811\" class=\"unit\">\n\t\t<path d=\"M350,127v11h-45v40h-35v26h11v13h28v-13h91v-77H350z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 174.2037)\">1811<\/text>\n\t<\/g>\n\t<g id=\"unit1812\" class=\"unit\">\n\t\t<path d=\"M309,204v13h-42v41h33v-10h100v-44H309z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 229.204)\">1812<\/text>\n\t<\/g>\n\t<g id=\"unit1813\" class=\"unit\">\n\t\t<path d=\"M300,248v10h-33v32h133v-10v-22v-10H300z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 272.2039)\">1813<\/text>\n\t<\/g>\n\t<g id=\"unit1814\" class=\"unit\">\n\t\t<path d=\"M267,290h133v41H267V290z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 313.7039)\">1814<\/text>\n\t<\/g>\n\t<g id=\"unit1815\" class=\"unit\">\n\t\t<path d=\"M293,331v21h-24v66h131v-87H293z\"\/>\n\t\t<path d=\"M269,418h131v22H269V418z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 377.704)\">1815<\/text>\n\t<\/g>\n\t<g id=\"unit1816\" class=\"unit\">\n\t\t<path d=\"M251,386v4h-46v28h-13v71h77V386H251z\"\/>\n\t\t<path d=\"M200,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 217.6826 441.0004)\">1816<\/text>\n\t<\/g>\n<\/g>\n<\/svg>\n<\/div>","legend":"<ul><li class=\"match\">Studios (1)<\/li><li class=\"onsale\">Autre option (1)<\/li><li class=\"sold\">Lou\u00e9s (14)<\/li><\/div><\/ul>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/6fbda32f4ba9ff2a636e.html +1 −0
@@ -0,0 +1 @@
1 +{"floor":"<div><?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->\n<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\n\t width=\"401px\" height=\"550px\" viewBox=\"0 0 401 550\" style=\"enable-background:new 0 0 401 550;\" xml:space=\"preserve\">\n<style type=\"text\/css\">\n\t.st0{display:none;}\n<\/style>\n<g id=\"others\">\n\t<path d=\"M275,331h18v21h-18V331z\"\/>\n\t<path d=\"M131,358h120v32H131V358z\"\/>\n\t<path d=\"M131,320h120v38H131V320z\"\/>\n\t<path d=\"M131,287h120v33H131V287z\"\/>\n\t<path d=\"M131,215h120v36H131V215z\"\/>\n\t<path d=\"M92,358h15v32H92V358z\"\/>\n<\/g>\n<g id=\"units\">\n\t<g id=\"unit1501\" class=\"unit\">\n\t\t<path d=\"M205,390h-74v47h-18v34h10v18h69v-71h13V390z\"\/>\n\t\t<path d=\"M131,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 149 441)\">1501<\/text>\n\t<\/g>\n\t<g id=\"unit1502\" class=\"unit\">\n\t\t<path d=\"M113,437h18v-26h-30v34H45v-11H0v91h131v-36h-8v-18h-10V437z\"\/>\n\t\t<path d=\"M0,525h131v24H0V525z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 488)\">1502<\/text>\n\t<\/g>\n\t<g id=\"unit1503\" class=\"unit\">\n\t\t<path d=\"M0,390v44h45v11h56v-55H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 415)\">1503<\/text>\n\t<\/g>\n\t<g id=\"unit1504\" class=\"unit\">\n\t\t<path d=\"M114,320H92v-11H0v81h92v-32h22V320z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 352.7008)\">1504<\/text>\n\t<\/g>\n\t<g id=\"unit1505\" class=\"unit\">\n\t\t<path d=\"M86,287v-30H0v52h92v11h22v-33H86z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 286)\">1505<\/text>\n\t<\/g>\n\t<g id=\"unit1506\" class=\"unit match onsale\">\n\t\t<path d=\"M0,217v40h86v30h28v-70H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 240)\">1506<\/text>\n\t<\/g>\n\t<g id=\"unit1507\" class=\"unit\">\n\t\t<path d=\"M0,107h131v24H0V107z\"\/>\n\t\t<path d=\"M141,131H0v86h114v-21h17v-11h10V131z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 177)\">1507<\/text>\n\t<\/g>\n\t<g id=\"unit1508\" class=\"unit\">\n\t\t<path d=\"M131,95v36h10v54h-10v30h63v-72h13V95H131z\"\/>\n\t\t<path d=\"M131,71h69v24h-69V71z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 157 177)\">1508<\/text>\n\t<\/g>\n\t<g id=\"unit1509\" class=\"unit\">\n\t\t<path d=\"M200,71h69v24h-69V71z\"\/>\n\t\t<path d=\"M289,95h-82v48h-13v72h57v-61h38V95z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 212 177)\">1509<\/text>\n\t<\/g>\n\t<g id=\"unit1510\" class=\"unit\">\n\t\t<!--<path class=\"st0\" d=\"M269,0h131v23H269V0z\"\/>-->\n\t\t<path d=\"M269,0v95h20v59h-38v33h19v-9h35v-40h45v-11h50V0H269z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 78.203)\">1510<\/text>\n\t<\/g>\n\t<g id=\"unit1511\" class=\"unit\">\n\t\t<path d=\"M350,127v11h-45v40h-35v26h11v13h28v-13h91v-77H350z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 174.2037)\">1511<\/text>\n\t<\/g>\n\t<g id=\"unit1512\" class=\"unit\">\n\t\t<path d=\"M309,204v13h-42v41h33v-10h100v-44H309z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 229.204)\">1512<\/text>\n\t<\/g>\n\t<g id=\"unit1513\" class=\"unit\">\n\t\t<path d=\"M300,248v10h-33v32h133v-10v-22v-10H300z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 272.2039)\">1513<\/text>\n\t<\/g>\n\t<g id=\"unit1514\" class=\"unit\">\n\t\t<path d=\"M267,290h133v41H267V290z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 313.7039)\">1514<\/text>\n\t<\/g>\n\t<g id=\"unit1515\" class=\"unit\">\n\t\t<path d=\"M293,331v21h-24v66h131v-87H293z\"\/>\n\t\t<path d=\"M269,418h131v22H269V418z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 377.704)\">1515<\/text>\n\t<\/g>\n\t<g id=\"unit1516\" class=\"unit\">\n\t\t<path d=\"M251,386v4h-46v28h-13v71h77V386H251z\"\/>\n\t\t<path d=\"M200,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 217.6826 441.0004)\">1516<\/text>\n\t<\/g>\n<\/g>\n<\/svg>\n<\/div>","legend":"<ul><li class=\"match\">Studios (1)<\/li><li class=\"sold\">Lou\u00e9s (15)<\/li><\/div><\/ul>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/70470e5525786b3220be.html +1 −0
@@ -0,0 +1 @@
1 +{"type":"12","floor":"7","unit_details":"<div><div class=\"collection\"><img src=\"https:\/\/www.1squarephillips.ca\/2022\/\/images\/logo-1-square-phillips-locatif.svg\" alt=\"1 Square Phillips Locatif\"\/><\/div><h2>unit\u00e9 709<\/h2><h3>Plan 09<\/h3><p class=\"uppercase\">1 chambre \/ 1 salle de bain<\/p><p><span>Superficie<\/span><span>637 pi<sup>2<\/sup><\/span><span>(59 m<sup>2<\/sup>)<\/span><span>Balcon<\/span><span>97 pi<sup>2<\/sup><\/span><span>(9 m<sup>2<\/sup>)<\/span><span>Total<\/span><span>734 pi<sup>2<\/sup><\/span><span>(68 m<sup>2<\/sup>)<\/span><\/p><div class=\"bt-floor-plan\"><a rel=\"nofollow\" href=\"#\" class=\"bt-floor\"><\/a><\/div>\n\t\t\t\t<\/div><ol class=\"column\"><li><strong>Cuisine <br>salle \u00e0 manger<\/strong><br>13'-0\" x 13'-10\"<\/li><li><strong>S\u00e9jour<\/strong><br>10'-10\" x 13'-5\"<\/li><li><strong>Chambre principale<\/strong><br>10'-2\" x 15'-3\"<\/li><li><strong>Salle de bain<\/strong><br>5'-0\" x 7'-6\"<\/li><li><strong>Balcon<\/strong><br>6'-2\" x 15'-8\"<\/li><\/ol><div class=\"bt-back-download\"><a href=\"https:\/\/www.1squarephillips.ca\/\" data-type=\"12\" data-floor=\"7\" data-unit=\"709\" class=\"bt bt-back\">Retour au plan d'\u00e9tage<\/a><br><br><a href=\"https:\/\/www.1squarephillips.ca\/2022\/pdf\/1spl-plan-09.pdf\" target=\"_blank\" class=\"bt bt-download\">T\u00e9l\u00e9charger PDF<\/a><\/div>","unit_plan":"<img src=\"https:\/\/www.1squarephillips.ca\/2022\/images\/1spl-plan-09.png\" alt=\"1SP - 09-rental\"\/>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/70592636e198bf053225.html +1 −0
@@ -0,0 +1 @@
1 +{"floor":"<div><?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->\n<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\n\t width=\"401px\" height=\"550px\" viewBox=\"0 0 401 550\" style=\"enable-background:new 0 0 401 550;\" xml:space=\"preserve\">\n<style type=\"text\/css\">\n\t.st0{display:none;}\n<\/style>\n<g id=\"others\">\n\t<path d=\"M275,331h18v21h-18V331z\"\/>\n\t<path d=\"M131,358h120v32H131V358z\"\/>\n\t<path d=\"M131,320h120v38H131V320z\"\/>\n\t<path d=\"M131,287h120v33H131V287z\"\/>\n\t<path d=\"M131,215h120v36H131V215z\"\/>\n\t<path d=\"M92,358h15v32H92V358z\"\/>\n<\/g>\n<g id=\"units\">\n\t<g id=\"unit601\" class=\"unit\">\n\t\t<path d=\"M205,390h-74v47h-18v34h10v18h69v-71h13V390z\"\/>\n\t\t<path d=\"M131,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 149 441)\">601<\/text>\n\t<\/g>\n\t<g id=\"unit602\" class=\"unit\">\n\t\t<path d=\"M113,437h18v-26h-30v34H45v-11H0v91h131v-36h-8v-18h-10V437z\"\/>\n\t\t<path d=\"M0,525h131v24H0V525z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 488)\">602<\/text>\n\t<\/g>\n\t<g id=\"unit603\" class=\"unit\">\n\t\t<path d=\"M0,390v44h45v11h56v-55H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 415)\">603<\/text>\n\t<\/g>\n\t<g id=\"unit604\" class=\"unit\">\n\t\t<path d=\"M114,320H92v-11H0v81h92v-32h22V320z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 352.7008)\">604<\/text>\n\t<\/g>\n\t<g id=\"unit605\" class=\"unit\">\n\t\t<path d=\"M86,287v-30H0v52h92v11h22v-33H86z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 286)\">605<\/text>\n\t<\/g>\n\t<g id=\"unit606\" class=\"unit\">\n\t\t<path d=\"M0,217v40h86v30h28v-70H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 240)\">606<\/text>\n\t<\/g>\n\t<g id=\"unit607\" class=\"unit\">\n\t\t<path d=\"M0,107h131v24H0V107z\"\/>\n\t\t<path d=\"M141,131H0v86h114v-21h17v-11h10V131z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 177)\">607<\/text>\n\t<\/g>\n\t<g id=\"unit608\" class=\"unit\">\n\t\t<path d=\"M131,95v36h10v54h-10v30h63v-72h13V95H131z\"\/>\n\t\t<path d=\"M131,71h69v24h-69V71z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 157 177)\">608<\/text>\n\t<\/g>\n\t<g id=\"unit609\" class=\"unit\">\n\t\t<path d=\"M200,71h69v24h-69V71z\"\/>\n\t\t<path d=\"M289,95h-82v48h-13v72h57v-61h38V95z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 212 177)\">609<\/text>\n\t<\/g>\n\t<g id=\"unit610\" class=\"unit onsale\">\n\t\t<!--<path class=\"st0\" d=\"M269,0h131v23H269V0z\"\/>-->\n\t\t<path d=\"M269,0v95h20v59h-38v33h19v-9h35v-40h45v-11h50V0H269z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 78.203)\">610<\/text>\n\t<\/g>\n\t<g id=\"unit611\" class=\"unit\">\n\t\t<path d=\"M350,127v11h-45v40h-35v26h11v13h28v-13h91v-77H350z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 174.2037)\">611<\/text>\n\t<\/g>\n\t<g id=\"unit612\" class=\"unit\">\n\t\t<path d=\"M309,204v13h-42v41h33v-10h100v-44H309z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 229.204)\">612<\/text>\n\t<\/g>\n\t<g id=\"unit613\" class=\"unit\">\n\t\t<path d=\"M300,248v10h-33v32h133v-10v-22v-10H300z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 272.2039)\">613<\/text>\n\t<\/g>\n\t<g id=\"unit614\" class=\"unit\">\n\t\t<path d=\"M267,290h133v41H267V290z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 313.7039)\">614<\/text>\n\t<\/g>\n\t<g id=\"unit615\" class=\"unit onsale\">\n\t\t<path d=\"M293,331v21h-24v66h131v-87H293z\"\/>\n\t\t<path d=\"M269,418h131v22H269V418z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 377.704)\">615<\/text>\n\t<\/g>\n\t<g id=\"unit616\" class=\"unit\">\n\t\t<path d=\"M251,386v4h-46v28h-13v71h77V386H251z\"\/>\n\t\t<path d=\"M200,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 217.6826 441.0004)\">616<\/text>\n\t<\/g>\n<\/g>\n<\/svg>\n<\/div>","legend":"<ul><li class=\"match\">Studios (0)<\/li><li class=\"onsale\">Autres options (2)<\/li><li class=\"sold\">Lou\u00e9s (14)<\/li><\/div><\/ul>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/7c6890fd9e01a0c2a051.html +1 −0
@@ -0,0 +1 @@
1 +{"floor":"<div><?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->\n<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\n\t width=\"401px\" height=\"550px\" viewBox=\"0 0 401 550\" style=\"enable-background:new 0 0 401 550;\" xml:space=\"preserve\">\n<style type=\"text\/css\">\n\t.st0{display:none;}\n<\/style>\n<g id=\"others\">\n\t<path d=\"M275,331h18v21h-18V331z\"\/>\n\t<path d=\"M131,358h120v32H131V358z\"\/>\n\t<path d=\"M131,320h120v38H131V320z\"\/>\n\t<path d=\"M131,287h120v33H131V287z\"\/>\n\t<path d=\"M131,215h120v36H131V215z\"\/>\n\t<path d=\"M92,358h15v32H92V358z\"\/>\n\t<path d=\"M131,489h69v24h-69V489z\"\/>\n\t<path d=\"M0,107h131v24H0V107z\"\/>\n\t<path d=\"M0,131\"\/>\n\t<path d=\"M131,71h69v24h-69V71z\"\/>\n\t<path d=\"M200,71h69v24h-69V71z\"\/>\n\t<path d=\"M269,489V386h-18v4H131v21h-30v-21h-9v-32h22V196h17v19h120v-28h19v17h11v13h28v-13h91V0H269v95H131v36H0v418h131v-60H269z\"\/>\n\t<path d=\"M200,489h69v24h-69V489z\"\/>\n\t<path d=\"M131,489h69v24h-69V489z\"\/>\n\t<path d=\"M0,525h131v24H0V525z\"\/>\n<\/g>\n<g id=\"units\">\n\t<!--<g id=\"unit1\" class=\"st0\">\n\t\t<path d=\"M205,390h-74v47h-18v34h10v18h69v-71h13V390z\"\/>\n\t\t<path d=\"M131,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 149 441)\">2112<\/text>\n\t<\/g>\n\t<g id=\"unit2\" class=\"st0\">\n\t\t<path d=\"M113,437h18v-26h-30v34H45v-11H0v115h131v-60h-8v-18h-10V437z\"\/>\n\t\t<path d=\"M0,525h131v24H0V525z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 488)\">2113<\/text>\n\t<\/g>\n\t<g id=\"unit3\" class=\"st0\">\n\t\t<path d=\"M0,390v44h45v11h56v-55H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 415)\">2114<\/text>\n\t<\/g>\n\t<g id=\"unit4\" class=\"st0\">\n\t\t<path d=\"M114,320H92v-11H0v81h92v-32h22V320z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 352.7008)\">2115<\/text>\n\t<\/g>\n\t<g id=\"unit5\" class=\"st0\">\n\t\t<path d=\"M86,287v-30H0v52h92v11h22v-33H86z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 286)\">005<\/text>\n\t<\/g>\n\t<g id=\"unit6\" class=\"st0\">\n\t\t<path d=\"M0,217v40h86v30h28v-70H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 240)\">006<\/text>\n\t<\/g>\n\t<g id=\"unit7\" class=\"st0\">\n\t\t<path d=\"M0,107h131v24H0V107z\"\/>\n\t\t<path d=\"M141,131H0v86h114v-21h17v-11h10V131z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 177)\">007<\/text>\n\t<\/g>\n\t<g id=\"unit8\" class=\"st0\">\n\t\t<path d=\"M131,95v36h10v54h-10v30h63v-72h13V95H131z\"\/>\n\t\t<path d=\"M131,71h69v24h-69V71z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 157 177)\">008<\/text>\n\t<\/g>\n\t<g id=\"unit9\" class=\"st0\">\n\t\t<path d=\"M200,71h69v24h-69V71z\"\/>\n\t\t<path d=\"M289,95h-82v48h-13v72h57v-61h38V95z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 212 177)\">009<\/text>\n\t<\/g>\n\t<g id=\"unit10\" class=\"st0\">\n\t\t<path d=\"M269,0h131v23H269V0z\"\/>\n\t\t<path d=\"M269,0v95h20v59h-38v33h19v-9h35v-40h45v-11h50V0H269z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 78.203)\">0010<\/text>\n\t<\/g>\n\t<g id=\"unit11\" class=\"st0\">\n\t\t<path d=\"M350,127v11h-45v40h-35v26h11v13h28v-13h91v-77H350z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 174.2037)\">0011<\/text>\n\t<\/g>-->\n\t<g id=\"unit2112\" class=\"unit\">\n\t\t<path d=\"M309,204v13h-42v41h33v-10h100v-44H309z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 229.204)\">2112<\/text>\n\t<\/g>\n\t<g id=\"unit2113\" class=\"unit\">\n\t\t<path d=\"M300,248v10h-33v32h133v-10v-22v-10H300z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 272.2039)\">2113<\/text>\n\t<\/g>\n\t<g id=\"unit2114\" class=\"unit\">\n\t\t<path d=\"M267,290h133v41H267V290z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 313.7039)\">2114<\/text>\n\t<\/g>\n\t<g id=\"unit2115\" class=\"unit\">\n\t\t<path d=\"M293,331v21h-24v66h131v-87H293z\"\/>\n\t\t<path d=\"M269,418h131v22H269V418z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 377.704)\">2115<\/text>\n\t<\/g>\n\t<!--<g id=\"unit16\" class=\"st0\">\n\t\t<path d=\"M251,386v4h-46v28h-13v71h77V386H251z\"\/>\n\t\t<path d=\"M200,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 217.6826 441.0004)\">0016<\/text>\n\t<\/g>-->\n<\/g>\n<\/svg>\n<\/div>","legend":"<ul><li class=\"match\">Studios (0)<\/li><li class=\"sold\">Lou\u00e9s (4)<\/li><\/div><\/ul>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/85ec94ad70e3d40435b1.html +1 −0
@@ -0,0 +1 @@
1 +{"floor":"<div><?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->\n<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\n\t width=\"401px\" height=\"550px\" viewBox=\"0 0 401 550\" style=\"enable-background:new 0 0 401 550;\" xml:space=\"preserve\">\n<style type=\"text\/css\">\n\t.st0{display:none;}\n<\/style>\n<g id=\"others\">\n\t<path d=\"M275,331h18v21h-18V331z\"\/>\n\t<path d=\"M131,358h120v32H131V358z\"\/>\n\t<path d=\"M131,320h120v38H131V320z\"\/>\n\t<path d=\"M131,287h120v33H131V287z\"\/>\n\t<path d=\"M131,215h120v36H131V215z\"\/>\n\t<path d=\"M92,358h15v32H92V358z\"\/>\n<\/g>\n<g id=\"units\">\n\t<g id=\"unit401\" class=\"unit\">\n\t\t<path d=\"M205,390h-74v47h-18v34h10v18h69v-71h13V390z\"\/>\n\t\t<path d=\"M131,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 149 441)\">401<\/text>\n\t<\/g>\n\t<g id=\"unit402\" class=\"unit\">\n\t\t<path d=\"M113,437h18v-26h-30v34H45v-11H0v91h131v-36h-8v-18h-10V437z\"\/>\n\t\t<path d=\"M0,525h131v24H0V525z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 488)\">402<\/text>\n\t<\/g>\n\t<g id=\"unit403\" class=\"unit\">\n\t\t<path d=\"M0,390v44h45v11h56v-55H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 415)\">403<\/text>\n\t<\/g>\n\t<g id=\"unit404\" class=\"unit\">\n\t\t<path d=\"M114,320H92v-11H0v81h92v-32h22V320z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 352.7008)\">404<\/text>\n\t<\/g>\n\t<g id=\"unit405\" class=\"unit\">\n\t\t<path d=\"M86,287v-30H0v52h92v11h22v-33H86z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 286)\">405<\/text>\n\t<\/g>\n\t<g id=\"unit406\" class=\"unit\">\n\t\t<path d=\"M0,217v40h86v30h28v-70H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 240)\">406<\/text>\n\t<\/g>\n\t<g id=\"unit407\" class=\"unit\">\n\t\t<path d=\"M0,107h131v24H0V107z\"\/>\n\t\t<path d=\"M141,131H0v86h114v-21h17v-11h10V131z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 177)\">407<\/text>\n\t<\/g>\n\t<g id=\"unit408\" class=\"unit\">\n\t\t<path d=\"M131,95v36h10v54h-10v30h63v-72h13V95H131z\"\/>\n\t\t<path d=\"M131,71h69v24h-69V71z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 157 177)\">408<\/text>\n\t<\/g>\n\t<g id=\"unit409\" class=\"unit\">\n\t\t<path d=\"M200,71h69v24h-69V71z\"\/>\n\t\t<path d=\"M289,95h-82v48h-13v72h57v-61h38V95z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 212 177)\">409<\/text>\n\t<\/g>\n\t<g id=\"unit410\" class=\"unit\">\n\t\t<!--<path class=\"st0\" d=\"M269,0h131v23H269V0z\"\/>-->\n\t\t<path d=\"M269,0v95h20v59h-38v33h19v-9h35v-40h45v-11h50V0H269z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 78.203)\">410<\/text>\n\t<\/g>\n\t<g id=\"unit411\" class=\"unit\">\n\t\t<path d=\"M350,127v11h-45v40h-35v26h11v13h28v-13h91v-77H350z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 174.2037)\">411<\/text>\n\t<\/g>\n\t<g id=\"unit412\" class=\"unit\">\n\t\t<path d=\"M309,204v13h-42v41h33v-10h100v-44H309z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 229.204)\">412<\/text>\n\t<\/g>\n\t<g id=\"unit413\" class=\"unit\">\n\t\t<path d=\"M300,248v10h-33v32h133v-10v-22v-10H300z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 272.2039)\">413<\/text>\n\t<\/g>\n\t<g id=\"unit414\" class=\"unit\">\n\t\t<path d=\"M267,290h133v41H267V290z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 313.7039)\">414<\/text>\n\t<\/g>\n\t<g id=\"unit415\" class=\"unit onsale\">\n\t\t<path d=\"M293,331v21h-24v66h131v-87H293z\"\/>\n\t\t<path d=\"M269,418h131v22H269V418z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 377.704)\">415<\/text>\n\t<\/g>\n\t<g id=\"unit416\" class=\"unit\">\n\t\t<path d=\"M251,386v4h-46v28h-13v71h77V386H251z\"\/>\n\t\t<path d=\"M200,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 217.6826 441.0004)\">416<\/text>\n\t<\/g>\n<\/g>\n<\/svg>\n<\/div>","legend":"<ul><li class=\"match\">Studios (0)<\/li><li class=\"onsale\">Autre option (1)<\/li><li class=\"sold\">Lou\u00e9s (15)<\/li><\/div><\/ul>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/8a59acda5a50a834c4ca.html +1 −0
@@ -0,0 +1 @@
1 +{"type":"12","floor":"9","unit_details":"<div><div class=\"collection\"><img src=\"https:\/\/www.1squarephillips.ca\/2022\/\/images\/logo-1-square-phillips-locatif.svg\" alt=\"1 Square Phillips Locatif\"\/><\/div><h2>unit\u00e9 909<\/h2><h3>Plan 09<\/h3><p class=\"uppercase\">1 chambre \/ 1 salle de bain<\/p><p><span>Superficie<\/span><span>637 pi<sup>2<\/sup><\/span><span>(59 m<sup>2<\/sup>)<\/span><span>Balcon<\/span><span>97 pi<sup>2<\/sup><\/span><span>(9 m<sup>2<\/sup>)<\/span><span>Total<\/span><span>734 pi<sup>2<\/sup><\/span><span>(68 m<sup>2<\/sup>)<\/span><\/p><div class=\"bt-floor-plan\"><a rel=\"nofollow\" href=\"#\" class=\"bt-floor\"><\/a><\/div>\n\t\t\t\t<\/div><ol class=\"column\"><li><strong>Cuisine <br>salle \u00e0 manger<\/strong><br>13'-0\" x 13'-10\"<\/li><li><strong>S\u00e9jour<\/strong><br>10'-10\" x 13'-5\"<\/li><li><strong>Chambre principale<\/strong><br>10'-2\" x 15'-3\"<\/li><li><strong>Salle de bain<\/strong><br>5'-0\" x 7'-6\"<\/li><li><strong>Balcon<\/strong><br>6'-2\" x 15'-8\"<\/li><\/ol><div class=\"bt-back-download\"><a href=\"https:\/\/www.1squarephillips.ca\/\" data-type=\"12\" data-floor=\"9\" data-unit=\"909\" class=\"bt bt-back\">Retour au plan d'\u00e9tage<\/a><br><br><a href=\"https:\/\/www.1squarephillips.ca\/2022\/pdf\/1spl-plan-09.pdf\" target=\"_blank\" class=\"bt bt-download\">T\u00e9l\u00e9charger PDF<\/a><\/div>","unit_plan":"<img src=\"https:\/\/www.1squarephillips.ca\/2022\/images\/1spl-plan-09.png\" alt=\"1SP - 09-rental\"\/>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/90c79044faafe665a77e.html +1 −0
@@ -0,0 +1 @@
1 +{"type":"13","floor":"7","unit_details":"<div><div class=\"collection\"><img src=\"https:\/\/www.1squarephillips.ca\/2022\/\/images\/logo-1-square-phillips-locatif.svg\" alt=\"1 Square Phillips Locatif\"\/><\/div><h2>unit\u00e9 710<\/h2><h3>Plan 10<\/h3><p class=\"uppercase\">2 chambres \/ 2 salles de bain<\/p><p><span>Superficie<\/span><span>1 405 pi<sup>2<\/sup><\/span><span>(131 m<sup>2<\/sup>)<\/span><span>Total<\/span><span>1 405 pi<sup>2<\/sup><\/span><span>(131 m<sup>2<\/sup>)<\/span><\/p><div class=\"bt-floor-plan\"><a rel=\"nofollow\" href=\"#\" class=\"bt-floor\"><\/a><\/div>\n\t\t\t\t<\/div><ol class=\"column\"><li><strong>Cuisine<\/strong><br>7'-9\" x 16'-3\"<\/li><li><strong>Salle \u00e0 manger<\/strong><br>11'-8\" x 19'-1\"<\/li><li><strong>S\u00e9jour<\/strong><br>10'-2\" x 19'-1\"<\/li><li><strong>Chambre principale<\/strong><br>12'-11\" x 19'-1\"<\/li><li><strong>Salle de bain<\/strong><br>5'-0\" x 7'-8\"<\/li><li><strong>Chambre 2<\/strong><br>8'-9\" x 12'-11\"<\/li><li><strong>Salle de bain 2<\/strong><br>5'-0\" x 9'-11\"<\/li><li><strong>Salle de lavage<\/strong><br>5'-1\" x 5'-1\"<\/li><li><strong>Entr\u00e9e<\/strong><br>3'-6\" x 14'-0\"<\/li><\/ol><div class=\"bt-back-download\"><a href=\"https:\/\/www.1squarephillips.ca\/\" data-type=\"13\" data-floor=\"7\" data-unit=\"710\" class=\"bt bt-back\">Retour au plan d'\u00e9tage<\/a><br><br><a href=\"https:\/\/www.1squarephillips.ca\/2022\/pdf\/1spl-plan-10.pdf\" target=\"_blank\" class=\"bt bt-download\">T\u00e9l\u00e9charger PDF<\/a><\/div>","unit_plan":"<img src=\"https:\/\/www.1squarephillips.ca\/2022\/images\/1spl-plan-10.png\" alt=\"1SP - 10-rental\"\/>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/91d4e45c82028d37efdb.html +1 −0
@@ -0,0 +1 @@
1 +{"type":"12","floor":"18","unit_details":"<div><div class=\"collection\"><img src=\"https:\/\/www.1squarephillips.ca\/2022\/\/images\/logo-1-square-phillips-locatif.svg\" alt=\"1 Square Phillips Locatif\"\/><\/div><h2>unit\u00e9 1809<\/h2><h3>Plan 09<\/h3><p class=\"uppercase\">1 chambre \/ 1 salle de bain<\/p><p><span>Superficie<\/span><span>637 pi<sup>2<\/sup><\/span><span>(59 m<sup>2<\/sup>)<\/span><span>Balcon<\/span><span>97 pi<sup>2<\/sup><\/span><span>(9 m<sup>2<\/sup>)<\/span><span>Total<\/span><span>734 pi<sup>2<\/sup><\/span><span>(68 m<sup>2<\/sup>)<\/span><\/p><div class=\"bt-floor-plan\"><a rel=\"nofollow\" href=\"#\" class=\"bt-floor\"><\/a><\/div>\n\t\t\t\t<\/div><ol class=\"column\"><li><strong>Cuisine <br>salle \u00e0 manger<\/strong><br>13'-0\" x 13'-10\"<\/li><li><strong>S\u00e9jour<\/strong><br>10'-10\" x 13'-5\"<\/li><li><strong>Chambre principale<\/strong><br>10'-2\" x 15'-3\"<\/li><li><strong>Salle de bain<\/strong><br>5'-0\" x 7'-6\"<\/li><li><strong>Balcon<\/strong><br>6'-2\" x 15'-8\"<\/li><\/ol><div class=\"bt-back-download\"><a href=\"https:\/\/www.1squarephillips.ca\/\" data-type=\"12\" data-floor=\"18\" data-unit=\"1809\" class=\"bt bt-back\">Retour au plan d'\u00e9tage<\/a><br><br><a href=\"https:\/\/www.1squarephillips.ca\/2022\/pdf\/1spl-plan-09.pdf\" target=\"_blank\" class=\"bt bt-download\">T\u00e9l\u00e9charger PDF<\/a><\/div>","unit_plan":"<img src=\"https:\/\/www.1squarephillips.ca\/2022\/images\/1spl-plan-09.png\" alt=\"1SP - 09-rental\"\/>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/945109f8cf18115e69ba.html +1 −0
@@ -0,0 +1 @@
1 +{"floor":"<div><?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->\n<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\n\t width=\"401px\" height=\"550px\" viewBox=\"0 0 401 550\" style=\"enable-background:new 0 0 401 550;\" xml:space=\"preserve\">\n<style type=\"text\/css\">\n\t.st0{display:none;}\n<\/style>\n<g id=\"others\">\n\t<path d=\"M275,331h18v21h-18V331z\"\/>\n\t<path d=\"M131,358h120v32H131V358z\"\/>\n\t<path d=\"M131,320h120v38H131V320z\"\/>\n\t<path d=\"M131,287h120v33H131V287z\"\/>\n\t<path d=\"M131,215h120v36H131V215z\"\/>\n\t<path d=\"M92,358h15v32H92V358z\"\/>\n<\/g>\n<g id=\"units\">\n\t<g id=\"unit801\" class=\"unit\">\n\t\t<path d=\"M205,390h-74v47h-18v34h10v18h69v-71h13V390z\"\/>\n\t\t<path d=\"M131,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 149 441)\">801<\/text>\n\t<\/g>\n\t<g id=\"unit802\" class=\"unit\">\n\t\t<path d=\"M113,437h18v-26h-30v34H45v-11H0v91h131v-36h-8v-18h-10V437z\"\/>\n\t\t<path d=\"M0,525h131v24H0V525z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 488)\">802<\/text>\n\t<\/g>\n\t<g id=\"unit803\" class=\"unit\">\n\t\t<path d=\"M0,390v44h45v11h56v-55H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 415)\">803<\/text>\n\t<\/g>\n\t<g id=\"unit804\" class=\"unit\">\n\t\t<path d=\"M114,320H92v-11H0v81h92v-32h22V320z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 352.7008)\">804<\/text>\n\t<\/g>\n\t<g id=\"unit805\" class=\"unit\">\n\t\t<path d=\"M86,287v-30H0v52h92v11h22v-33H86z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 286)\">805<\/text>\n\t<\/g>\n\t<g id=\"unit806\" class=\"unit\">\n\t\t<path d=\"M0,217v40h86v30h28v-70H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 240)\">806<\/text>\n\t<\/g>\n\t<g id=\"unit807\" class=\"unit\">\n\t\t<path d=\"M0,107h131v24H0V107z\"\/>\n\t\t<path d=\"M141,131H0v86h114v-21h17v-11h10V131z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 177)\">807<\/text>\n\t<\/g>\n\t<g id=\"unit808\" class=\"unit\">\n\t\t<path d=\"M131,95v36h10v54h-10v30h63v-72h13V95H131z\"\/>\n\t\t<path d=\"M131,71h69v24h-69V71z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 157 177)\">808<\/text>\n\t<\/g>\n\t<g id=\"unit809\" class=\"unit onsale\">\n\t\t<path d=\"M200,71h69v24h-69V71z\"\/>\n\t\t<path d=\"M289,95h-82v48h-13v72h57v-61h38V95z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 212 177)\">809<\/text>\n\t<\/g>\n\t<g id=\"unit810\" class=\"unit\">\n\t\t<!--<path class=\"st0\" d=\"M269,0h131v23H269V0z\"\/>-->\n\t\t<path d=\"M269,0v95h20v59h-38v33h19v-9h35v-40h45v-11h50V0H269z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 78.203)\">810<\/text>\n\t<\/g>\n\t<g id=\"unit811\" class=\"unit\">\n\t\t<path d=\"M350,127v11h-45v40h-35v26h11v13h28v-13h91v-77H350z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 174.2037)\">811<\/text>\n\t<\/g>\n\t<g id=\"unit812\" class=\"unit\">\n\t\t<path d=\"M309,204v13h-42v41h33v-10h100v-44H309z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 229.204)\">812<\/text>\n\t<\/g>\n\t<g id=\"unit813\" class=\"unit\">\n\t\t<path d=\"M300,248v10h-33v32h133v-10v-22v-10H300z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 272.2039)\">813<\/text>\n\t<\/g>\n\t<g id=\"unit814\" class=\"unit\">\n\t\t<path d=\"M267,290h133v41H267V290z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 313.7039)\">814<\/text>\n\t<\/g>\n\t<g id=\"unit815\" class=\"unit\">\n\t\t<path d=\"M293,331v21h-24v66h131v-87H293z\"\/>\n\t\t<path d=\"M269,418h131v22H269V418z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 377.704)\">815<\/text>\n\t<\/g>\n\t<g id=\"unit816\" class=\"unit\">\n\t\t<path d=\"M251,386v4h-46v28h-13v71h77V386H251z\"\/>\n\t\t<path d=\"M200,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 217.6826 441.0004)\">816<\/text>\n\t<\/g>\n<\/g>\n<\/svg>\n<\/div>","legend":"<ul><li class=\"match\">Studios (0)<\/li><li class=\"onsale\">Autre option (1)<\/li><li class=\"sold\">Lou\u00e9s (15)<\/li><\/div><\/ul>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/9f12656853c7440c5853.html +1 −0
@@ -0,0 +1 @@
1 +{"floor":"<div><?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->\n<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\n\t width=\"401px\" height=\"550px\" viewBox=\"0 0 401 550\" style=\"enable-background:new 0 0 401 550;\" xml:space=\"preserve\">\n<style type=\"text\/css\">\n\t.st0{display:none;}\n<\/style>\n<g id=\"others\">\n\t<path d=\"M275,331h18v21h-18V331z\"\/>\n\t<path d=\"M131,358h120v32H131V358z\"\/>\n\t<path d=\"M131,320h120v38H131V320z\"\/>\n\t<path d=\"M131,287h120v33H131V287z\"\/>\n\t<path d=\"M131,215h120v36H131V215z\"\/>\n\t<path d=\"M92,358h15v32H92V358z\"\/>\n<\/g>\n<g id=\"units\">\n\t<g id=\"unit1601\" class=\"unit\">\n\t\t<path d=\"M205,390h-74v47h-18v34h10v18h69v-71h13V390z\"\/>\n\t\t<path d=\"M131,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 149 441)\">1601<\/text>\n\t<\/g>\n\t<g id=\"unit1602\" class=\"unit\">\n\t\t<path d=\"M113,437h18v-26h-30v34H45v-11H0v91h131v-36h-8v-18h-10V437z\"\/>\n\t\t<path d=\"M0,525h131v24H0V525z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 488)\">1602<\/text>\n\t<\/g>\n\t<g id=\"unit1603\" class=\"unit\">\n\t\t<path d=\"M0,390v44h45v11h56v-55H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 415)\">1603<\/text>\n\t<\/g>\n\t<g id=\"unit1604\" class=\"unit\">\n\t\t<path d=\"M114,320H92v-11H0v81h92v-32h22V320z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 352.7008)\">1604<\/text>\n\t<\/g>\n\t<g id=\"unit1605\" class=\"unit\">\n\t\t<path d=\"M86,287v-30H0v52h92v11h22v-33H86z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 286)\">1605<\/text>\n\t<\/g>\n\t<g id=\"unit1606\" class=\"unit match onsale\">\n\t\t<path d=\"M0,217v40h86v30h28v-70H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 240)\">1606<\/text>\n\t<\/g>\n\t<g id=\"unit1607\" class=\"unit\">\n\t\t<path d=\"M0,107h131v24H0V107z\"\/>\n\t\t<path d=\"M141,131H0v86h114v-21h17v-11h10V131z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 177)\">1607<\/text>\n\t<\/g>\n\t<g id=\"unit1608\" class=\"unit\">\n\t\t<path d=\"M131,95v36h10v54h-10v30h63v-72h13V95H131z\"\/>\n\t\t<path d=\"M131,71h69v24h-69V71z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 157 177)\">1608<\/text>\n\t<\/g>\n\t<g id=\"unit1609\" class=\"unit\">\n\t\t<path d=\"M200,71h69v24h-69V71z\"\/>\n\t\t<path d=\"M289,95h-82v48h-13v72h57v-61h38V95z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 212 177)\">1609<\/text>\n\t<\/g>\n\t<g id=\"unit1610\" class=\"unit\">\n\t\t<!--<path class=\"st0\" d=\"M269,0h131v23H269V0z\"\/>-->\n\t\t<path d=\"M269,0v95h20v59h-38v33h19v-9h35v-40h45v-11h50V0H269z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 78.203)\">1610<\/text>\n\t<\/g>\n\t<g id=\"unit1611\" class=\"unit\">\n\t\t<path d=\"M350,127v11h-45v40h-35v26h11v13h28v-13h91v-77H350z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 174.2037)\">1611<\/text>\n\t<\/g>\n\t<g id=\"unit1612\" class=\"unit\">\n\t\t<path d=\"M309,204v13h-42v41h33v-10h100v-44H309z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 229.204)\">1612<\/text>\n\t<\/g>\n\t<g id=\"unit1613\" class=\"unit\">\n\t\t<path d=\"M300,248v10h-33v32h133v-10v-22v-10H300z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 272.2039)\">1613<\/text>\n\t<\/g>\n\t<g id=\"unit1614\" class=\"unit\">\n\t\t<path d=\"M267,290h133v41H267V290z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 313.7039)\">1614<\/text>\n\t<\/g>\n\t<g id=\"unit1615\" class=\"unit\">\n\t\t<path d=\"M293,331v21h-24v66h131v-87H293z\"\/>\n\t\t<path d=\"M269,418h131v22H269V418z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 377.704)\">1615<\/text>\n\t<\/g>\n\t<g id=\"unit1616\" class=\"unit\">\n\t\t<path d=\"M251,386v4h-46v28h-13v71h77V386H251z\"\/>\n\t\t<path d=\"M200,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 217.6826 441.0004)\">1616<\/text>\n\t<\/g>\n<\/g>\n<\/svg>\n<\/div>","legend":"<ul><li class=\"match\">Studios (1)<\/li><li class=\"sold\">Lou\u00e9s (15)<\/li><\/div><\/ul>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/b0cd41e4cb3b533b30ac.html +1 −0
@@ -0,0 +1 @@
1 +{"type":"12","floor":"11","unit_details":"<div><div class=\"collection\"><img src=\"https:\/\/www.1squarephillips.ca\/2022\/\/images\/logo-1-square-phillips-locatif.svg\" alt=\"1 Square Phillips Locatif\"\/><\/div><h2>unit\u00e9 1109<\/h2><h3>Plan 09<\/h3><p class=\"uppercase\">1 chambre \/ 1 salle de bain<\/p><p><span>Superficie<\/span><span>637 pi<sup>2<\/sup><\/span><span>(59 m<sup>2<\/sup>)<\/span><span>Balcon<\/span><span>97 pi<sup>2<\/sup><\/span><span>(9 m<sup>2<\/sup>)<\/span><span>Total<\/span><span>734 pi<sup>2<\/sup><\/span><span>(68 m<sup>2<\/sup>)<\/span><\/p><div class=\"bt-floor-plan\"><a rel=\"nofollow\" href=\"#\" class=\"bt-floor\"><\/a><\/div>\n\t\t\t\t<\/div><ol class=\"column\"><li><strong>Cuisine <br>salle \u00e0 manger<\/strong><br>13'-0\" x 13'-10\"<\/li><li><strong>S\u00e9jour<\/strong><br>10'-10\" x 13'-5\"<\/li><li><strong>Chambre principale<\/strong><br>10'-2\" x 15'-3\"<\/li><li><strong>Salle de bain<\/strong><br>5'-0\" x 7'-6\"<\/li><li><strong>Balcon<\/strong><br>6'-2\" x 15'-8\"<\/li><\/ol><div class=\"bt-back-download\"><a href=\"https:\/\/www.1squarephillips.ca\/\" data-type=\"12\" data-floor=\"11\" data-unit=\"1109\" class=\"bt bt-back\">Retour au plan d'\u00e9tage<\/a><br><br><a href=\"https:\/\/www.1squarephillips.ca\/2022\/pdf\/1spl-plan-09.pdf\" target=\"_blank\" class=\"bt bt-download\">T\u00e9l\u00e9charger PDF<\/a><\/div>","unit_plan":"<img src=\"https:\/\/www.1squarephillips.ca\/2022\/images\/1spl-plan-09.png\" alt=\"1SP - 09-rental\"\/>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/c6977abf29502965dac9.html +1 −0
@@ -0,0 +1 @@
1 +{"type":"12","floor":"19","unit_details":"<div><div class=\"collection\"><img src=\"https:\/\/www.1squarephillips.ca\/2022\/\/images\/logo-1-square-phillips-locatif.svg\" alt=\"1 Square Phillips Locatif\"\/><\/div><h2>unit\u00e9 1909<\/h2><h3>Plan 09<\/h3><p class=\"uppercase\">1 chambre \/ 1 salle de bain<\/p><p><span>Superficie<\/span><span>637 pi<sup>2<\/sup><\/span><span>(59 m<sup>2<\/sup>)<\/span><span>Balcon<\/span><span>97 pi<sup>2<\/sup><\/span><span>(9 m<sup>2<\/sup>)<\/span><span>Total<\/span><span>734 pi<sup>2<\/sup><\/span><span>(68 m<sup>2<\/sup>)<\/span><\/p><div class=\"bt-floor-plan\"><a rel=\"nofollow\" href=\"#\" class=\"bt-floor\"><\/a><\/div>\n\t\t\t\t<\/div><ol class=\"column\"><li><strong>Cuisine <br>salle \u00e0 manger<\/strong><br>13'-0\" x 13'-10\"<\/li><li><strong>S\u00e9jour<\/strong><br>10'-10\" x 13'-5\"<\/li><li><strong>Chambre principale<\/strong><br>10'-2\" x 15'-3\"<\/li><li><strong>Salle de bain<\/strong><br>5'-0\" x 7'-6\"<\/li><li><strong>Balcon<\/strong><br>6'-2\" x 15'-8\"<\/li><\/ol><div class=\"bt-back-download\"><a href=\"https:\/\/www.1squarephillips.ca\/\" data-type=\"12\" data-floor=\"19\" data-unit=\"1909\" class=\"bt bt-back\">Retour au plan d'\u00e9tage<\/a><br><br><a href=\"https:\/\/www.1squarephillips.ca\/2022\/pdf\/1spl-plan-09.pdf\" target=\"_blank\" class=\"bt bt-download\">T\u00e9l\u00e9charger PDF<\/a><\/div>","unit_plan":"<img src=\"https:\/\/www.1squarephillips.ca\/2022\/images\/1spl-plan-09.png\" alt=\"1SP - 09-rental\"\/>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/ce5b98b861ab3dabc712.html +1 −0
@@ -0,0 +1 @@
1 +{"floor":"<div><?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->\n<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\n\t width=\"401px\" height=\"550px\" viewBox=\"0 0 401 550\" style=\"enable-background:new 0 0 401 550;\" xml:space=\"preserve\">\n<style type=\"text\/css\">\n\t.st0{display:none;}\n<\/style>\n<g id=\"others\">\n\t<path d=\"M275,331h18v21h-18V331z\"\/>\n\t<path d=\"M131,358h120v32H131V358z\"\/>\n\t<path d=\"M131,320h120v38H131V320z\"\/>\n\t<path d=\"M131,287h120v33H131V287z\"\/>\n\t<path d=\"M131,215h120v36H131V215z\"\/>\n\t<path d=\"M92,358h15v32H92V358z\"\/>\n<\/g>\n<g id=\"units\">\n\t<g id=\"unit901\" class=\"unit\">\n\t\t<path d=\"M205,390h-74v47h-18v34h10v18h69v-71h13V390z\"\/>\n\t\t<path d=\"M131,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 149 441)\">901<\/text>\n\t<\/g>\n\t<g id=\"unit902\" class=\"unit\">\n\t\t<path d=\"M113,437h18v-26h-30v34H45v-11H0v91h131v-36h-8v-18h-10V437z\"\/>\n\t\t<path d=\"M0,525h131v24H0V525z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 488)\">902<\/text>\n\t<\/g>\n\t<g id=\"unit903\" class=\"unit\">\n\t\t<path d=\"M0,390v44h45v11h56v-55H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 415)\">903<\/text>\n\t<\/g>\n\t<g id=\"unit904\" class=\"unit\">\n\t\t<path d=\"M114,320H92v-11H0v81h92v-32h22V320z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 352.7008)\">904<\/text>\n\t<\/g>\n\t<g id=\"unit905\" class=\"unit\">\n\t\t<path d=\"M86,287v-30H0v52h92v11h22v-33H86z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 286)\">905<\/text>\n\t<\/g>\n\t<g id=\"unit906\" class=\"unit\">\n\t\t<path d=\"M0,217v40h86v30h28v-70H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 240)\">906<\/text>\n\t<\/g>\n\t<g id=\"unit907\" class=\"unit\">\n\t\t<path d=\"M0,107h131v24H0V107z\"\/>\n\t\t<path d=\"M141,131H0v86h114v-21h17v-11h10V131z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 177)\">907<\/text>\n\t<\/g>\n\t<g id=\"unit908\" class=\"unit\">\n\t\t<path d=\"M131,95v36h10v54h-10v30h63v-72h13V95H131z\"\/>\n\t\t<path d=\"M131,71h69v24h-69V71z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 157 177)\">908<\/text>\n\t<\/g>\n\t<g id=\"unit909\" class=\"unit onsale\">\n\t\t<path d=\"M200,71h69v24h-69V71z\"\/>\n\t\t<path d=\"M289,95h-82v48h-13v72h57v-61h38V95z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 212 177)\">909<\/text>\n\t<\/g>\n\t<g id=\"unit910\" class=\"unit\">\n\t\t<!--<path class=\"st0\" d=\"M269,0h131v23H269V0z\"\/>-->\n\t\t<path d=\"M269,0v95h20v59h-38v33h19v-9h35v-40h45v-11h50V0H269z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 78.203)\">910<\/text>\n\t<\/g>\n\t<g id=\"unit911\" class=\"unit\">\n\t\t<path d=\"M350,127v11h-45v40h-35v26h11v13h28v-13h91v-77H350z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 174.2037)\">911<\/text>\n\t<\/g>\n\t<g id=\"unit912\" class=\"unit\">\n\t\t<path d=\"M309,204v13h-42v41h33v-10h100v-44H309z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 229.204)\">912<\/text>\n\t<\/g>\n\t<g id=\"unit913\" class=\"unit\">\n\t\t<path d=\"M300,248v10h-33v32h133v-10v-22v-10H300z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 272.2039)\">913<\/text>\n\t<\/g>\n\t<g id=\"unit914\" class=\"unit\">\n\t\t<path d=\"M267,290h133v41H267V290z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 313.7039)\">914<\/text>\n\t<\/g>\n\t<g id=\"unit915\" class=\"unit onsale\">\n\t\t<path d=\"M293,331v21h-24v66h131v-87H293z\"\/>\n\t\t<path d=\"M269,418h131v22H269V418z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 377.704)\">915<\/text>\n\t<\/g>\n\t<g id=\"unit916\" class=\"unit\">\n\t\t<path d=\"M251,386v4h-46v28h-13v71h77V386H251z\"\/>\n\t\t<path d=\"M200,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 217.6826 441.0004)\">916<\/text>\n\t<\/g>\n<\/g>\n<\/svg>\n<\/div>","legend":"<ul><li class=\"match\">Studios (0)<\/li><li class=\"onsale\">Autres options (2)<\/li><li class=\"sold\">Lou\u00e9s (14)<\/li><\/div><\/ul>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/def71af393a085c681bd.html +1 −0
@@ -0,0 +1 @@
1 +{"type":"13","floor":"6","unit_details":"<div><div class=\"collection\"><img src=\"https:\/\/www.1squarephillips.ca\/2022\/\/images\/logo-1-square-phillips-locatif.svg\" alt=\"1 Square Phillips Locatif\"\/><\/div><h2>unit\u00e9 610<\/h2><h3>Plan 10<\/h3><p class=\"uppercase\">2 chambres \/ 2 salles de bain<\/p><p><span>Superficie<\/span><span>1 405 pi<sup>2<\/sup><\/span><span>(131 m<sup>2<\/sup>)<\/span><span>Total<\/span><span>1 405 pi<sup>2<\/sup><\/span><span>(131 m<sup>2<\/sup>)<\/span><\/p><div class=\"bt-floor-plan\"><a rel=\"nofollow\" href=\"#\" class=\"bt-floor\"><\/a><\/div>\n\t\t\t\t<\/div><ol class=\"column\"><li><strong>Cuisine<\/strong><br>7'-9\" x 16'-3\"<\/li><li><strong>Salle \u00e0 manger<\/strong><br>11'-8\" x 19'-1\"<\/li><li><strong>S\u00e9jour<\/strong><br>10'-2\" x 19'-1\"<\/li><li><strong>Chambre principale<\/strong><br>12'-11\" x 19'-1\"<\/li><li><strong>Salle de bain<\/strong><br>5'-0\" x 7'-8\"<\/li><li><strong>Chambre 2<\/strong><br>8'-9\" x 12'-11\"<\/li><li><strong>Salle de bain 2<\/strong><br>5'-0\" x 9'-11\"<\/li><li><strong>Salle de lavage<\/strong><br>5'-1\" x 5'-1\"<\/li><li><strong>Entr\u00e9e<\/strong><br>3'-6\" x 14'-0\"<\/li><\/ol><div class=\"bt-back-download\"><a href=\"https:\/\/www.1squarephillips.ca\/\" data-type=\"13\" data-floor=\"6\" data-unit=\"610\" class=\"bt bt-back\">Retour au plan d'\u00e9tage<\/a><br><br><a href=\"https:\/\/www.1squarephillips.ca\/2022\/pdf\/1spl-plan-10.pdf\" target=\"_blank\" class=\"bt bt-download\">T\u00e9l\u00e9charger PDF<\/a><\/div>","unit_plan":"<img src=\"https:\/\/www.1squarephillips.ca\/2022\/images\/1spl-plan-10.png\" alt=\"1SP - 10-rental\"\/>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/e26e92827d55fd3d288e.html +1 −0
@@ -0,0 +1 @@
1 +{"type":"13","floor":"10","unit_details":"<div><div class=\"collection\"><img src=\"https:\/\/www.1squarephillips.ca\/2022\/\/images\/logo-1-square-phillips-locatif.svg\" alt=\"1 Square Phillips Locatif\"\/><\/div><h2>unit\u00e9 1010<\/h2><h3>Plan 10<\/h3><p class=\"uppercase\">2 chambres \/ 2 salles de bain<\/p><p><span>Superficie<\/span><span>1 405 pi<sup>2<\/sup><\/span><span>(131 m<sup>2<\/sup>)<\/span><span>Total<\/span><span>1 405 pi<sup>2<\/sup><\/span><span>(131 m<sup>2<\/sup>)<\/span><\/p><div class=\"bt-floor-plan\"><a rel=\"nofollow\" href=\"#\" class=\"bt-floor\"><\/a><\/div>\n\t\t\t\t<\/div><ol class=\"column\"><li><strong>Cuisine<\/strong><br>7'-9\" x 16'-3\"<\/li><li><strong>Salle \u00e0 manger<\/strong><br>11'-8\" x 19'-1\"<\/li><li><strong>S\u00e9jour<\/strong><br>10'-2\" x 19'-1\"<\/li><li><strong>Chambre principale<\/strong><br>12'-11\" x 19'-1\"<\/li><li><strong>Salle de bain<\/strong><br>5'-0\" x 7'-8\"<\/li><li><strong>Chambre 2<\/strong><br>8'-9\" x 12'-11\"<\/li><li><strong>Salle de bain 2<\/strong><br>5'-0\" x 9'-11\"<\/li><li><strong>Salle de lavage<\/strong><br>5'-1\" x 5'-1\"<\/li><li><strong>Entr\u00e9e<\/strong><br>3'-6\" x 14'-0\"<\/li><\/ol><div class=\"bt-back-download\"><a href=\"https:\/\/www.1squarephillips.ca\/\" data-type=\"13\" data-floor=\"10\" data-unit=\"1010\" class=\"bt bt-back\">Retour au plan d'\u00e9tage<\/a><br><br><a href=\"https:\/\/www.1squarephillips.ca\/2022\/pdf\/1spl-plan-10.pdf\" target=\"_blank\" class=\"bt bt-download\">T\u00e9l\u00e9charger PDF<\/a><\/div>","unit_plan":"<img src=\"https:\/\/www.1squarephillips.ca\/2022\/images\/1spl-plan-10.png\" alt=\"1SP - 10-rental\"\/>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/e9f00101461f6628d5e0.html +233 −0
@@ -0,0 +1,233 @@
1 +<!DOCTYPE HTML>
2 +<html xmlns="http://www.w3.org/1999/xhtml" lang="fr-CA" xml:lang="fr-CA" prefix="og: http://ogp.me/ns#">
3 +
4 +<head>
5 + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
6 + <meta property="og:description" content="Des condominiums locatifs réinventés. Le luxe à portée de main. Découvrez un havre de tranquillité unique au centre-ville de Montréal."/>
7 + <meta property="og:image" content="https://www.1squarephillips.ca/2022/"/>
8 + <meta property="og:locale" content="fr_CA">
9 + <meta property="og:site_name" content="1 Square Phillips">
10 + <meta property="og:title" content="Condos locatif au centre-ville de Montréal | 1 Square Phillips"/>
11 + <meta property="og:type" content="website"/>
12 + <meta property="og:url" content="https://www.1squarephillips.ca/locatif"/>
13 + <meta name="description" content="Des condominiums locatifs réinventés. Le luxe à portée de main. Découvrez un havre de tranquillité unique au centre-ville de Montréal."/>
14 + <meta name="keywords" content="">
15 + <meta name="viewport" content="initial-scale=1,maximum-scale=1">
16 + <title>Condos locatif au centre-ville de Montréal | 1 Square Phillips</title>
17 + <!--<script defer src="https://use.fontawesome.com/releases/v5.7.0/js/all.js" integrity="sha384-qD/MNBVMm3hVYCbRTSOW130+CWeRIKbpot9/gR1BHkd7sIct4QKhT1hOPd+2hO8K" crossorigin="anonymous"></script>-->
18 + <!--<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.11.2/css/all.css">-->
19 + <link rel="stylesheet" id="fontawesome-css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css?ver=1.0" type="text/css" media="all">
20 + <link rel="stylesheet" href="https://use.typekit.net/gvh8ept.css">
21 + <link href="https://www.1squarephillips.ca/2022/css/1sp.css?version=1.38" rel="stylesheet"><link href="https://www.1squarephillips.ca/2022/css/1sp-1920.css?version=1.38" rel="stylesheet"><link href="https://www.1squarephillips.ca/2022/css/1sp-1024.css?version=1.38" rel="stylesheet"><link href="https://www.1squarephillips.ca/2022/css/1sp-768.css?version=1.38" rel="stylesheet"><link href="https://www.1squarephillips.ca/2022/css/1sp-640.css?version=1.38" rel="stylesheet"> <link rel="apple-touch-icon" sizes="57x57" href="https://www.1squarephillips.ca/favicon/apple-icon-57x57.png">
22 + <link rel="apple-touch-icon" sizes="60x60" href="https://www.1squarephillips.ca/favicon/apple-icon-60x60.png">
23 + <link rel="apple-touch-icon" sizes="72x72" href="https://www.1squarephillips.ca/favicon/apple-icon-72x72.png">
24 + <link rel="apple-touch-icon" sizes="76x76" href="https://www.1squarephillips.ca/favicon/apple-icon-76x76.png">
25 + <link rel="apple-touch-icon" sizes="114x114" href="https://www.1squarephillips.ca/favicon/apple-icon-114x114.png">
26 + <link rel="apple-touch-icon" sizes="120x120" href="https://www.1squarephillips.ca/favicon/apple-icon-120x120.png">
27 + <link rel="apple-touch-icon" sizes="144x144" href="https://www.1squarephillips.ca/favicon/apple-icon-144x144.png">
28 + <link rel="apple-touch-icon" sizes="152x152" href="https://www.1squarephillips.ca/favicon/apple-icon-152x152.png">
29 + <link rel="apple-touch-icon" sizes="180x180" href="https://www.1squarephillips.ca/favicon/apple-icon-180x180.png">
30 + <link rel="icon" type="image/png" sizes="192x192" href="https://www.1squarephillips.ca/favicon/android-icon-192x192.png">
31 + <link rel="icon" type="image/png" sizes="32x32" href="https://www.1squarephillips.ca/favicon/favicon-32x32.png">
32 + <link rel="icon" type="image/png" sizes="96x96" href="https://www.1squarephillips.ca/favicon/favicon-96x96.png">
33 + <link rel="icon" type="image/png" sizes="16x16" href="https://www.1squarephillips.ca/favicon/favicon-16x16.png">
34 + <link rel="manifest" href="https://www.1squarephillips.ca/favicon/manifest.json">
35 + <meta name="msapplication-TileColor" content="#ffffff">
36 + <meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
37 + <meta name="theme-color" content="#ffffff">
38 + <link rel="canonical" href="https://www.1squarephillips.ca/locatif"><link rel="alternate" hreflang="en-CA" href="https://www.1squarephillips.ca/rental"/>
39 +<link rel="alternate" hreflang="fr-CA" href="https://www.1squarephillips.ca/locatif"/>
40 +<link rel="alternate" hreflang="zh-CN" href="https://www.1squarephillips.ca/rental-zh"/>
41 + <!--[if lt IE 9]>
42 + <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
43 + <![endif]-->
44 +
45 + <!-- Google Tag Manager -->
46 + <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
47 + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
48 + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
49 + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
50 + })(window,document,'script','dataLayer','GTM-NDFVN6D');</script>
51 + <!-- End Google Tag Manager -->
52 +
53 + <!--<script>
54 + !function(_window,_document,_type,_url,n,t,s){if(_window.ConnectTracker)return;n=_window.ConnectTracker=function(){n.callMethod?n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!_window._ConnectTracker)_window._ConnectTracker=n;n.push=n;n.loaded=!0;n.version='1.0';n.queue=[];t=_document.createElement(_type);t.async=!0;t.src=_url;s=_document.getElementsByTagName(_type)[0];s.parentNode.insertBefore(t,s)}(window,document,'script','//d3htn85c6cao65.cloudfront.net/libraries/connect-sdk/connect_tracker_v102.js');
55 + ConnectTracker('init', '6f7f3574c1abd3ee6a7c3ee1c1a13480');
56 + ConnectTracker('trackEvent', 'retargetingfr');
57 + </script>-->
58 + <script src="https://www.google.com/recaptcha/api.js?render=6Ld2nEAiAAAAAFlIFIDVr-hxfPPBVPM_Bg5SHrPF"></script>
59 + <!-- Start cookieyes banner -->
60 + <script id="cookieyes" type="text/javascript" src="https://cdn-cookieyes.com/client_data/08ce7ba3464f459ba4aefec4/script.js"></script>
61 + <!-- End cookieyes banner -->
62 +</head>
63 +
64 +<body class="loading">
65 + <noscript><img src="https://ads.connectedinteractive.com/api/web/000/6f7f3574c1abd3ee6a7c3ee1c1a13480/retargetingen?noscript=1" alt="" height="0" width="0" style="border: 0;"/></noscript>
66 +
67 + <div id="fb-root"></div>
68 + <script async defer crossorigin="anonymous" src="https://connect.facebook.net/fr_CA/sdk.js#xfbml=1&version=v5.0"></script>
69 + <!-- Google Tag Manager (noscript) -->
70 + <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NDFVN6D"
71 + height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
72 + <!-- End Google Tag Manager (noscript) -->
73 + <header>
74 + <div class="ticker"><div>Condos de luxe au centre-ville de Montréal</div></div> <nav><a href="https://www.1squarephillips.ca/" class="logo"><img src="https://www.1squarephillips.ca/2022/images/logo-1-square-phillips-locatif-white.svg" alt="1 Square Phillips - Locatif"/></a><ul><li><a href="https://www.1squarephillips.ca/accueil">Accueil</a></li><li><a href="https://www.1squarephillips.ca/projet-phase1">Phase 1</a></li><li><a href="https://www.1squarephillips.ca/projet-phase2">Phase 2</a></li><li><a href="https://www.1squarephillips.ca/locatif" class="active">Locatif</a></li><li><a href="https://www.1squarephillips.ca/collection-penthouse">Collection PH</a></li><li><a href="https://www.1squarephillips.ca/plans">plans</a></li><li><a href="https://www.1squarephillips.ca/vivre-montreal">Vivre Montréal</a></li><li><a href="https://www.1squarephillips.ca/galerie">Galerie</a></li><li><a href="https://www.1squarephillips.ca/equipe">Équipe</a></li><li><a href="https://www.1squarephillips.ca/contactez-nous">Contact</a></li><li class="lang"><a href="https://www.1squarephillips.ca/rental">en</a><a href="https://www.1squarephillips.ca/rental-zh">中文</a></li></ul><a href="" rel="nofollow" class="nav-expand"><span><span></span><span></span><span></span></span></a></nav> </header>
75 + <div id="top" class="container">
76 + <div id="page" class="page">
77 + <section class="header"><button class="next"><i class="fas fa-chevron-down"></i></button><div class="slider autoplay"><div class="slides"><ul><li><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-project-4-portrait.jpg" media="(max-aspect-ratio: 1/1)"><img src="https://www.1squarephillips.ca/2022/images/bckg-project-4.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-project-4.jpg"></picture></li><li><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-rental-2-portrait.jpg" media="(max-aspect-ratio: 1/1)"><img src="https://www.1squarephillips.ca/2022/images/bckg-rental-2.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-rental-2.jpg"></picture></li><li><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-rental-3-portrait.jpg" media="(max-aspect-ratio: 1/1)"><img src="https://www.1squarephillips.ca/2022/images/bckg-rental-3.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-rental-3.jpg"></picture></li><li><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-rental-4-portrait.jpg" media="(max-aspect-ratio: 1/1)"><img src="https://www.1squarephillips.ca/2022/images/bckg-rental-4.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-rental-4.jpg"></picture></li></ul></div><div class="ctrl_bts"><div><button></button><button></button><button></button><button></button></div></div><div class="ctrl_arr"><button type="button" data-dir="prev"></button><button type="button" data-dir="next"></button></div><div class="slider_status"></div><div class="text"><div><h1>HAUT LÀ LÀ, <br>L'ADRESSE <br>ULTIME À <br>MONTRÉAL.</h1></div><div class="bt-header"><img src="https://www.1squarephillips.ca/2022/images/ico-occupation.svg" alt="Occupation printemps 2024"></div></div></div></section><section class="text-img"><div><div><h2>Condos à louer au centre-ville de&nbsp;Montréal</h2><h3>Des condominiums <br>locatifs réinventés</h3><p>Le luxe à portée de main. Découvrez un havre de tranquillité unique à Montréal — un endroit douillet, secret et serein qui offre le style de vie simplifié et de qualité que vous recherchez. Choisissez parmi notre sélection polyvalente de condos — studio, condo d’une chambre ou condo de deux chambres — et profitez d’une formule luxueuse tout inclus, soit une gamme complète d’appareils électroménagers ainsi que tous les services (climatisation, chauffage, électricité, eau chaude et Wi-Fi). Tout&nbsp;est réuni pour garantir une expérience en toute simplicité.</p><p>Installez-vous et savourez la sagesse de votre choix&nbsp;: des conditions de vie vraiment remarquables.</p><ul class="grid3cols"><li><h4>Studio</h4><p>à partir de <span class="white-space-nowrap">1600 $/mois</span></p></li><li><h4>1&nbsp;Chambre</h4><p>à partir de <span class="white-space-nowrap">2040 $/mois</span></p></li><li><h4>2&nbsp;Chambres</h4><p>à partir de <span class="white-space-nowrap">2750 $/mois</span></p></li></ul><p><a href="plans/locatif" class="bt">Voir les plans</a></p></div><div><div class="parallax"><img src="https://www.1squarephillips.ca/2022/images/bckg-rental-condos.jpg" alt=""/></div></div></div></section><section class="text-slider bckg-flowers-rental"><div class="slider expandable autoplay"><div class="slides"><ul><li><img src="https://www.1squarephillips.ca/2022/images/persp_SQPH_Loc_Zone_Billard.jpg" alt="" /></li><li><img src="https://www.1squarephillips.ca/2022/images/persp_SQPH_Loc_Zone_Cinema.jpg" alt="" /></li><li><img src="https://www.1squarephillips.ca/2022/images/persp_SQPH_Loc_Zone_Lounge.jpg" alt="" /></li></ul></div><div class="ctrl_bts"><div><button></button><button></button><button></button></div></div><div class="ctrl_arr"><button type="button" data-dir="prev"></button><button type="button" data-dir="next"></button></div><div class="slider_status"></div><div class="text"><div><h2>Espaces communs</h2><h3>Des espaces communs éblouissants</h3><p>Harmonie communautaire. Profitez de la convivialité et du confort de nos espaces communs, conçus pour accommoder chacun des aspects de votre mode de vie. Venez vous ressourcer et vous détendre dans notre pavillon des sports, qui&nbsp;dispose de plusieurs salles d’entraînement et offre une expérience thermale complète. Prélassez-vous sur la vaste terrasse, recentrez-vous dans le lounge du 21<sup>e</sup>&nbsp;étage et explorez la myriade d’autres espaces partagés. Vous&nbsp;vous sentirez à la maison en un rien de temps, entouré de luxe et de&nbsp;commodité.</p></div></div></div></section><section class="features"><div><h2>Caractéristiques</h2><ul><li><h3>Extérieur</h3><ul><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-snowmelt.svg" alt=""></div><div class="back">Système de fonte de&nbsp;neige</div></li><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-drop-offs.svg" alt=""></div><div class="back">Débarcadère</div></li><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-gated-community.svg" alt=""></div><div class="back">Immeuble sécurisé</div></li><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-dog-park.svg" alt=""></div><div class="back">Parc canin</div></li><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-basketball-court.svg" alt=""></div><div class="back">Terrain de&nbsp;basketball</div></li></ul></li><li><h3>Stationnement souterrain</h3><ul><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-elevator-for-bicycles.svg" alt=""></div><div class="back">Ascenseur pour&nbsp;vélos</div></li><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-repair-station-for-bicycles.svg" alt=""></div><div class="back">Atelier de réparation de&nbsp;vélos</div></li><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-car-wash.svg" alt=""></div><div class="back">Lave-auto</div></li></ul></li><li><h3>Rez-de-chaussée</h3><ul><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-24-hour-manned-security.svg" alt=""></div><div class="back">Grand hall d’entrée avec gardien 24&nbsp;heures sur&nbsp;24</div></li><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-secondary-entrance.svg" alt=""></div><div class="back">Hall d’entrée secondaire offrant un accès pratique à&nbsp;la rue Saint-Alexandre</div></li><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-lounge.svg" alt=""></div><div class="back">Lounge</div></li><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-concierge.svg" alt=""></div><div class="back">Service de conciergerie</div></li><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-pet-grooming-station.svg" alt=""></div><div class="back">Station de toilettage pour animaux de&nbsp;compagnie</div></li><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-parcel-delivery-system.svg" alt=""></div><div class="back">Système automatisé de&nbsp;livraison de colis et casier postal de Postes&nbsp;Canada</div></li><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-dedicated-areas.svg" alt=""></div><div class="back">Zones réservées pour les livraisons&nbsp;et les déménagements</div></li></ul></li><li><h3>2<sup>e</sup> étage</h3><ul><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-whirpool-bath.svg" alt=""></div><div class="back">Bain à remous</div></li><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-health-centre.svg" alt=""></div><div class="back">Centre de bien&#8209;être</div></li><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-hammam.svg" alt=""></div><div class="back">Hammam</div></li><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-indoor-pool.svg" alt=""></div><div class="back">Piscine, sauna et bain&nbsp;vapeur</div></li><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-cardio-room.svg" alt=""></div><div class="back">Salle d’entraînement cardio</div></li><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-weight-training-room.svg" alt=""></div><div class="back">Salle de musculation</div></li><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-yoga.svg" alt=""></div><div class="back">Salle de yoga</div></li><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-juice-bar.svg" alt=""></div><div class="back">Bar à jus</div></li><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-changing-rooms.svg" alt=""></div><div class="back">Vestiaires</div></li></ul></li><li><h3>21<sup>e</sup> étage</h3><ul><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-coworking.svg" alt=""></div><div class="back">Espace de cotravail</div></li><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-lounge-area.svg" alt=""></div><div class="back">Espace lounge</div></li><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-cinema.svg" alt=""></div><div class="back">Salle de cinéma</div></li><li><div class="front"><img src="https://www.1squarephillips.ca/2022/images/ico-features-games.svg" alt=""></div><div class="back">Salle de jeux</div></li></ul></li></ul></div></section><section class="text-img bckg-purple-rental full-width"><div><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-rental-plans-portrait.jpg" media="(max-aspect-ratio: 1/1)"><img src="https://www.1squarephillips.ca/2022/images/bckg-rental-plans.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-rental-plans.jpg" class="bckg"></picture><div><h2>Plan des unités en location</h2><h3>Explorez votre <br class="bp-1920 bp-1024 bp-768">futur logement</h3><p>Trouvez le logement idéal. Vous cherchez un studio confortable <br class="bp-1920 bp-1024 bp-768">ou un condo spacieux d’une ou deux chambres? <br class="bp-1920 bp-1024 bp-768">Parcourez nos plans d’étage et découvrez l’aménagement <br class="bp-1920 bp-1024 bp-768">qui conviendra parfaitement à votre style de&nbsp;vie.</p><p><a href="plans/locatif" class="bt">Voir les plans</a></p></div></div></section> </div>
78 + <div class="floating-cta"><a href="#inscrire-maintenant" class="bt"><i class="fas fa-arrow-down"></i>Louer maintenant</a><a href="tel:+1-514-617-9999" class="bt"><i class="fa-solid fa-phone"></i>Contactez-nous</a></div> <footer>
79 + <div>
80 + <a href="https://www.1squarephillips.ca/" class="logo"><img src="https://www.1squarephillips.ca/2022/images/logo-1-square-phillips-full-gold.svg" alt="Logo du projet immobilier 1 Square Phillips à Montréal"/></a><nav><ul><li><a href="https://www.1squarephillips.ca/accueil">Accueil</a></li><li><a href="https://www.1squarephillips.ca/projet-phase1">Phase 1</a></li><li><a href="https://www.1squarephillips.ca/projet-phase2">Phase 2</a></li><li><a href="https://www.1squarephillips.ca/locatif" class="active">Locatif</a></li><li><a href="https://www.1squarephillips.ca/collection-penthouse">Collection PH</a></li><li><a href="https://www.1squarephillips.ca/plans">plans</a></li><li><a href="https://www.1squarephillips.ca/vivre-montreal">Vivre Montréal</a></li><li><a href="https://www.1squarephillips.ca/galerie">Galerie</a></li><li><a href="https://www.1squarephillips.ca/equipe">Équipe</a></li><li><a href="https://www.1squarephillips.ca/contactez-nous">Contact</a></li></ul><a href="#top"><i class="fas fa-chevron-up"></i></a></nav><div class="presentation"><h2>Pavillon de location</h2>
81 + <p>1205, rue du Square-Phillips<br>
82 + Montréal QC H3B 3C9<br>
83 + <a href="tel:+1-514-617-9999">514 617.9999</a><br>
84 + <a href="mailto:location@1squarephillips.ca">location@1squarephillips.ca</a></p>
85 + <p>Lundi au jeudi : 9 h – 19 h<br>
86 + Vendredi et samedi : 9 h – 17 h</p></div><div class="form"><h2>J'aimerais obtenir plus d'informations concernant&nbsp;:</h2>
87 + <form id="inscrire-maintenant" action="" method="post">
88 + <input style="display:none;" type="hidden" id="ads__referral_url__c" name="00N3t00000E2EXREA3" value="" />
89 + <input style="display:none;" type="hidden" id="ads__landing_url__c" name="00N3t00000E2EXQEA3" value="" />
90 + <input name="domainAccountId" type="hidden" value="LAS-333928-02"/>
91 + <input name="guid" type="hidden" value=""/>
92 + <input name="lang" type="hidden" value="fr"/>
93 + <input name="message" type="hidden" />
94 + <input name="origin" type="hidden" value="rental" />
95 +
96 + <div class="grp">
97 + <div>
98 + <label class="radio"><input name="preferences" type="radio" value="purchase"><span>L'achat</span></label>
99 + <label class="radio"><input name="preferences" type="radio" value="rental"><span>La location</span></label>
100 + </div>
101 + </div>
102 + <div class="grp">
103 + <div>
104 + <label for="name">Nom complet *</label>
105 + <input id="name" name="name" type="text" class="mandatory"/>
106 + <label for="email">Courriel *</label>
107 + <input id="email" name="email" type="text" class="mandatory"/>
108 + <label for="phone">Téléphone</label>
109 + <input id="phone" name="phone" type="text" />
110 + </div>
111 + </div>
112 + <div class="grp">
113 + <div>
114 + <label class="checkbox"><input name="broker" type="checkbox" value="1"><span>Je suis un courtier immobilier</span></label>
115 + </div>
116 + </div>
117 + <div class="grp">
118 + <div>
119 + <label class="checkbox"><input name="consent" type="checkbox" value="1"><span>J’accepte de recevoir par courriel des informations, des promotions et des invitations de&nbsp;la part de 1&nbsp;Square&nbsp;Phillips et Groupe Brivia.</span></label>
120 + </div>
121 + </div>
122 + <div class="grp">
123 + <button type="submit" class="bt">Soumettre</button>
124 + </div>
125 + <div class="grp">
126 + <p><small><br>Ce site est protégé par reCAPTCHA et la <a href="https://policies.google.com/privacy" target="_blank">politique de vie privée</a> et les <a href="https://policies.google.com/terms" target="_blank">termes de service</a> Google&nbsp;s'appliquent.</small></p>
127 + </div>
128 + </form></div><div class="copyright-grp">
129 + <div class="copyright"><span>© 2026 <a href="https://www.1squarephillips.ca/">1&nbsp;Square&nbsp;Phillips</a>.</span> <span>Tous droits réservés.</span> <br class="bp-640"><a href="https://www.1squarephillips.ca/politique-de-confidentialite">Politique de confidentialité.</a><br>1205, rue du Square-Phillips&nbsp; <br class="bp-640">Montréal&nbsp; QC&nbsp; Canada&nbsp; H3B&nbsp;3C9&nbsp; <br>
130 + <a href="tel:+15146179999">514 617.9999</a>
131 + </div><div class="partners"><span><a href="https://briviagroup.ca" target="_blank"><img src="https://www.1squarephillips.ca/2022/images/logo-groupe-brivia.svg" alt="Groupe Brivia" /></a></span><span><a href="https://ipsofactoimmobilier.com/fr" target="_blank"><img src="https://www.1squarephillips.ca/2022/images/logo-ipsofacto-invetissement-immobilier.svg" alt="IPSO FACTO investissement immobilier" /></a></span><span><a href="http://www.msdl.ca" target="_blank"><img src="https://www.1squarephillips.ca/2022/images/logo-msdl.svg" alt="Menkès Shooner Dagenais Letourneux Architectes" /></a></span><span><img src="https://www.1squarephillips.ca/2022/images/logo-innedesign.svg" alt="innédesign" /></span><span><a href="https://www.claudecormier.com" target="_blank"><img src="https://www.1squarephillips.ca/2022/images/logo-claude-cormier.svg" alt="Claude Cormier + associés" /></a></span></div><div class="social"><a href="https://www.facebook.com/1squarephillips" target="_blank"><i class="fab fa-facebook"></i></a><a href="https://www.instagram.com/1squarephillips/" target="_blank"><i class="fab fa-instagram"></i></a></div></div> </div>
132 + </footer>
133 + </div>
134 + <div id="lightbox">
135 + <div class="lightbox_bckg"></div>
136 + </div>
137 + <script src="https://player.vimeo.com/api/player.js"></script>
138 + <script src="https://www.1squarephillips.ca/2022/js/jquery-1.11.0.min.js"></script>
139 + <script src="https://www.1squarephillips.ca/2022/js/jquery.validate.min.js"></script>
140 + <script src="https://www.1squarephillips.ca/2022/js/additional-methods.min.js"></script>
141 + <script src="https://www.1squarephillips.ca/2022/js/js-map.js?version=1.38"></script>
142 + <script src="https://www.1squarephillips.ca/2022/js/js-parallax.js?version=1.38"></script>
143 + <script src="https://www.1squarephillips.ca/2022/js/js-plans.js?version=1.38"></script>
144 + <script src="https://www.1squarephillips.ca/2022/js/js-slider.js?version=1.38"></script>
145 + <script src="https://www.1squarephillips.ca/2022/js/script.js?version=1.38"></script>
146 + <script>
147 + var url = 'https://www.1squarephillips.ca/',
148 + base = 'https://www.1squarephillips.ca/2022/',
149 + lang = 'fr',
150 + $window = $(window),
151 + $document = $(document),
152 + $body = $('body'),
153 + bckg = $('div.bckg'),
154 + container = $('div.container'),
155 + header = $('header'),
156 + nav = header.children('nav'),
157 + nav_expand = $('a.nav-expand'),
158 + page = container.children('div.page'),
159 + sections = $('section'),
160 + footer = $('footer'),
161 + window_w = $window.width(),
162 + window_h = $window.height(),
163 + window_st = $window.scrollTop(),
164 + window_p = window_st + window_h,
165 + window_sd,
166 + lightbox = $('#lightbox'),
167 + wrap,
168 + wrap_inner,
169 + lightbox_bckg = lightbox.children('.lightbox_bckg'),
170 + slider = $('.slider'),
171 + slideshows = [],
172 + slideshows_int = [];
173 +
174 +
175 +
176 + lightbox_bckg.on('click', function () {
177 + closeLightBox();
178 + });
179 +
180 + var preload_items = {"landscape":["images/bckg-project-1.jpg","images/bckg-project-condominiums.jpg","images/bckg-project-penthouses.jpg","images/bckg-project-common-spaces.jpg"],"portrait":["images/bckg-project-1-portrait.jpg","images/bckg-project-condominiums.jpg","images/bckg-project-penthouses.jpg","images/bckg-project-common-spaces.jpg"]};
181 + if(window_w > window_h) {
182 + $body.append('<div class="body-preload"><img src="https://www.1squarephillips.ca/2022/images/bckg-project-1.jpg" alt=""/><img src="https://www.1squarephillips.ca/2022/images/bckg-project-condominiums.jpg" alt=""/><img src="https://www.1squarephillips.ca/2022/images/bckg-project-penthouses.jpg" alt=""/><img src="https://www.1squarephillips.ca/2022/images/bckg-project-common-spaces.jpg" alt=""/></div>');
183 + } else {
184 + $body.append('<div class="body-preload"><img src="https://www.1squarephillips.ca/2022/images/bckg-project-1-portrait.jpg" alt=""/><img src="https://www.1squarephillips.ca/2022/images/bckg-project-condominiums.jpg" alt=""/><img src="https://www.1squarephillips.ca/2022/images/bckg-project-penthouses.jpg" alt=""/><img src="https://www.1squarephillips.ca/2022/images/bckg-project-common-spaces.jpg" alt=""/></div>');
185 + }
186 +
187 + preload($('div.body-preload'), function() {
188 + $body.removeClass('loading');
189 + });
190 +
191 +
192 + $window.load(function() {
193 + setNav();
194 + $window.scroll();
195 +
196 + initRental();
197 + initNewsletter();
198 +
199 + if($('.slider').length > 0) {
200 + slideshows = new Array()
201 +
202 + for(var i = 0; i < $('.slider').length; i++) {
203 + setSlider(i, 0);
204 + }
205 + }
206 +
207 + $('section.header .slides li').addClass('parallax');
208 + setParallax();
209 + });
210 +
211 + $window.resize(function () {
212 + window_w = $window.width();
213 + window_h = $window.height();
214 +
215 + if($('.slider').length > 0) {
216 + for(var i = 0; i < $('.slider').length; i++) {
217 + setSliderWidth(i);
218 + }
219 + }
220 + });
221 +
222 + $window.scroll(function () {
223 + setScroll();
224 + });
225 +
226 + function mapsGoogleCallback() {
227 +
228 + }
229 +
230 + </script>
231 + <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDVQRHKkPvwfvdQ-gia9yOUDLNyyFvwqNk&language=fr&libraries=places&callback=mapsGoogleCallback"></script>
232 +</body>
233 +</html>
\ No newline at end of file
added tests/fixtures/brivia_1sp/expected.json +47 −0
@@ -0,0 +1,47 @@
1 +{
2 + "count": 3,
3 + "listings": [
4 + {
5 + "uid": "brivia_1sp:1sp-1-chambre",
6 + "url": "https://www.1squarephillips.ca/locatif",
7 + "title": "1 Square Phillips — 1 Chambre locatif",
8 + "address": "1205, rue du Square-Phillips, Montréal, QC H3B 3C9",
9 + "sector": "Centre-ville (Ville-Marie)",
10 + "city": "Montréal",
11 + "unit_type": "3½",
12 + "price": 2040.0,
13 + "availability": "10 unités disponibles",
14 + "area_sqft": 598.0,
15 + "n_images": 32,
16 + "n_amenities": 30
17 + },
18 + {
19 + "uid": "brivia_1sp:1sp-2-chambres",
20 + "url": "https://www.1squarephillips.ca/locatif",
21 + "title": "1 Square Phillips — 2 Chambres locatif",
22 + "address": "1205, rue du Square-Phillips, Montréal, QC H3B 3C9",
23 + "sector": "Centre-ville (Ville-Marie)",
24 + "city": "Montréal",
25 + "unit_type": "4½",
26 + "price": 2750.0,
27 + "availability": "9 unités disponibles",
28 + "area_sqft": 853.0,
29 + "n_images": 32,
30 + "n_amenities": 30
31 + },
32 + {
33 + "uid": "brivia_1sp:1sp-studio",
34 + "url": "https://www.1squarephillips.ca/locatif",
35 + "title": "1 Square Phillips — Studio locatif",
36 + "address": "1205, rue du Square-Phillips, Montréal, QC H3B 3C9",
37 + "sector": "Centre-ville (Ville-Marie)",
38 + "city": "Montréal",
39 + "unit_type": "Studio",
40 + "price": 1600.0,
41 + "availability": "Disponible (tour locative en location)",
42 + "area_sqft": null,
43 + "n_images": 30,
44 + "n_amenities": 30
45 + }
46 + ]
47 +}
\ No newline at end of file
added tests/fixtures/brivia_1sp/f071019fe00ac88417d2.html +1 −0
@@ -0,0 +1 @@
1 +{"phase":"rental","unit_selector":"<div class=\"building rental\"><div class=\"building-bckg\"><img src=\"https:\/\/www.1squarephillips.ca\/2022\/images\/1sp-building-phase1.png\" alt=\"\"\/><\/div><svg version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" width=\"1750px\" height=\"6975px\" viewBox=\"0 0 1750 6975\" style=\"enable-background:new 0 0 1750 6975;\" xml:space=\"preserve\"><g id=\"floor2\" class=\"floor type1 type11\"><polygon points=\"1700,6709 1091,6663 1091,6667 821,6677 712,6670 712,6674 453,6683 266,6673 0,6684 0,6583 266,6568 453,6583 563,6577 563,6571 601,6575 712,6569 712,6563 821,6573 1091,6559 1091,6552 1700,6621\"\/><\/g><g id=\"floor3\" class=\"floor type1 type3 type13\"><polygon points=\"1700,6621 1091,6552 1091,6559 821,6573 712,6563 712,6569 601,6575 563,6571 563,6577 453,6583 266,6568 0,6583 0,6482 266,6462 453,6483 563,6475 563,6467 601,6472 712,6464 712,6455 821,6469 1091,6451 1091,6442 1700,6532\"\/><\/g><g id=\"floor4\" class=\"floor type1 type3 type13\"><polygon points=\"1700,6532 1091,6442 1091,6451 821,6469 712,6455 712,6464 601,6472 563,6467 563,6475 453,6483 266,6462 0,6482 0,6381 266,6357 453,6382 563,6372 563,6363 601,6369 712,6360 712,6349 821,6366 1091,6343 1091,6332 1700,6443\"\/><\/g><g id=\"floor5\" class=\"floor type1 type3 type13\"><polygon points=\"1700,6443 1091,6332 1091,6343 821,6366 712,6349 712,6360 601,6369 563,6363 563,6372 453,6382 266,6357 0,6381 0,6281 266,6251 453,6281 563,6270 563,6259 601,6266 712,6255 712,6242 821,6262 1091,6235 1091,6222 1700,6354\"\/><\/g><g id=\"floor6\" class=\"floor type1 type3 type13\"><polygon points=\"1700,6354 1091,6222 1091,6235 821,6262 712,6242 712,6255 601,6266 563,6259 563,6270 453,6281 266,6251 0,6281 0,6180 266,6146 453,6181 563,6168 563,6154 601,6163 712,6150 712,6135 821,6158 1091,6128 1091,6112 1700,6266\"\/><\/g><g id=\"floor7\" class=\"floor type1 type2 type3 type12 type13\"><polygon points=\"1700,6266 1091,6112 1091,6128 821,6158 712,6135 712,6150 601,6163 563,6154 563,6168 453,6181 266,6146 0,6180 0,6080 266,6040 453,6080 563,6065 563,6051 601,6061 712,6046 712,6028 821,6055 1091,6020 1091,6002 1700,6177\"\/><\/g><g id=\"floor8\" class=\"floor type1 type2 type12\"><polygon points=\"1700,6177 1091,6002 1091,6020 821,6055 712,6028 712,6046 601,6061 563,6051 563,6065 453,6080 266,6040 0,6080 0,5979 266,5935 453,5979 563,5964 563,5947 601,5957 712,5941 712,5921 821,5951 1091,5912 1091,5892 1700,6088\"\/><\/g><g id=\"floor9\" class=\"floor type1 type2 type3 type12 type13\"><polygon points=\"0,5979 266,5935 453,5979 563,5964 563,5947 601,5957 712,5941 712,5921 821,5951 1091,5912 1091,5892 1700,6088 1700,5999 1091,5782 1091,5804 821,5848 712,5813 712,5836 601,5856 563,5843 563,5863 453,5879 266,5829 0,5878\"\/><\/g><g id=\"floor10\" class=\"floor type1 type2 type3 type12 type13\"><polygon points=\"0,5878 266,5829 453,5879 563,5863 563,5843 601,5856 712,5836 712,5813 821,5848 1091,5804 1091,5782 1700,5999 1700,5911 1091,5672 1091,5696 821,5744 712,5708 712,5731 601,5752 563,5739 563,5759 453,5779 266,5724 0,5777\"\/><\/g><g id=\"floor11\" class=\"floor type1 type2 type12\"><polygon points=\"1700,5911 1091,5672 1091,5696 821,5744 712,5708 712,5731 601,5752 563,5739 563,5759 453,5779 266,5724 0,5777 0,5677 266,5618 453,5678 563,5657 563,5635 601,5648 712,5627 712,5600 821,5641 1091,5588 1091,5562 1700,5821\"\/><\/g><g id=\"floor12\" class=\"floor type1 type2 type12\"><polygon points=\"0,5677 266,5618 453,5678 563,5657 563,5635 601,5648 712,5627 712,5600 821,5641 1091,5588 1091,5562 1700,5821 1700,5733 1091,5452 1091,5480 821,5537 712,5494 712,5522 601,5546 563,5529 563,5555 453,5578 266,5513 0,5576\"\/><\/g><g id=\"floor13\" class=\"floor type1 type11\"><polygon points=\"1700,5733 1091,5452 1091,5480 821,5537 712,5494 712,5522 601,5546 563,5529 563,5555 453,5578 266,5513 0,5576 0,5475 266,5408 453,5477 563,5452 563,5426 601,5443 712,5418 712,5387 821,5434 1091,5372 1091,5342 1700,5645\"\/><\/g><g id=\"floor14\" class=\"floor type1 type11\"><polygon points=\"0,5475 266,5408 453,5477 563,5452 563,5426 601,5443 712,5418 712,5387 821,5434 1091,5372 1091,5342 1700,5645 1700,5556 1091,5232 1091,5265 821,5329 712,5280 712,5312 601,5339 563,5322 563,5350 453,5377 266,5302 0,5375\"\/><\/g><g id=\"floor15\" class=\"floor type1 type11\"><polygon points=\"0,5375 266,5302 453,5377 563,5350 563,5322 601,5339 712,5312 712,5280 821,5329 1091,5265 1091,5232 1700,5556 1700,5467 1091,5121 1091,5156 821,5226 712,5173 712,5208 601,5237 563,5219 563,5248 453,5276 266,5196 0,5274\"\/><\/g><g id=\"floor16\" class=\"floor type1 type11\"><polygon points=\"1700,5467 1091,5121 1091,5156 821,5226 712,5173 712,5208 601,5237 563,5219 563,5248 453,5276 266,5196 0,5274 0,5173 266,5091 453,5176 563,5145 563,5114 601,5134 712,5103 712,5066 821,5123 1091,5050 1091,5011 1700,5378\"\/><\/g><g id=\"floor17\" class=\"floor type1 type2 type3 type11 type12 type13\"><polygon points=\"1700,5378 1091,5011 1091,5050 821,5123 712,5066 712,5103 601,5134 563,5114 563,5145 453,5176 266,5091 0,5173 0,5073 266,4985 453,5076 563,5043 563,5010 601,5030 712,4998 712,4960 821,5019 1091,4940 1091,4901 1700,5289\"\/><\/g><g id=\"floor18\" class=\"floor type1 type2 type11 type12\"><polygon points=\"1700,5289 1091,4901 1091,4940 821,5019 712,4960 712,4998 601,5030 563,5010 563,5043 453,5076 266,4985 0,5073 0,4972 266,4880 453,4975 563,4940 563,4905 601,4927 712,4893 712,4852 821,4915 1091,4833 1091,4791 1700,5200\"\/><\/g><g id=\"floor19\" class=\"floor type1 type2 type12\"><polygon points=\"1700,5200 1091,4791 1091,4833 821,4915 712,4852 712,4893 601,4927 563,4905 563,4940 453,4975 266,4880 0,4972 0,4861 266,4765 453,4866 563,4829 563,4794 601,4816 712,4778 712,4737 821,4803 1091,4715 1091,4673 1700,5104\"\/><\/g><g id=\"floor20\" class=\"floor type1 type11\"><polygon points=\"0,4861 266,4765 453,4866 563,4829 563,4794 601,4816 712,4778 712,4737 821,4803 1091,4715 1091,4673 1700,5104 1700,4981 1091,4519 1091,4563 821,4659 712,4588 712,4633 453,4725 266,4618 266,4664 51,4745 0,4720\"\/><\/g><g id=\"floor21\" class=\"floor \"><polygon points=\"0,4619 51,4646 266,4561 266,4513 453,4625 563,4584 563,4545 601,4569 712,4528 712,4481 821,4555 1091,4456 1091,4409 1700,4892 1700,4981 1091,4519 1091,4563 821,4659 712,4588 712,4633 453,4725 266,4618 266,4664 51,4745 0,4720\"\/><\/g><\/g><\/svg><\/div><div class=\"selector\"><div class=\"type-selector\">\n <h2>S\u00e9lectionner un type d'unit\u00e9<\/h2><div data-type=\"11\">studios<\/div><div data-type=\"12\">1 chambre<\/div><div data-type=\"13\">2 chambres<\/div>\n <\/div>\n <div class=\"floor-selector\">\n <h2>S\u00e9lectionner un \u00e9tage<\/h2>\n <div class=\"floors\"><div data-floor=\"2\" class=\"type1 type11\">2<\/div><div data-floor=\"3\" class=\"type1 type3 type13\">3<\/div><div data-floor=\"4\" class=\"type1 type3 type13\">4<\/div><div data-floor=\"5\" class=\"type1 type3 type13\">5<\/div><div data-floor=\"6\" class=\"type1 type3 type13\">6<\/div><div data-floor=\"7\" class=\"type1 type2 type3 type12 type13\">7<\/div><div data-floor=\"8\" class=\"type1 type2 type12\">8<\/div><div data-floor=\"9\" class=\"type1 type2 type3 type12 type13\">9<\/div><div data-floor=\"10\" class=\"type1 type2 type3 type12 type13\">10<\/div><div data-floor=\"11\" class=\"type1 type2 type12\">11<\/div><div data-floor=\"12\" class=\"type1 type2 type12\">12<\/div><div data-floor=\"13\" class=\"type1 type11\">13<\/div><div data-floor=\"14\" class=\"type1 type11\">14<\/div><div data-floor=\"15\" class=\"type1 type11\">15<\/div><div data-floor=\"16\" class=\"type1 type11\">16<\/div><div data-floor=\"17\" class=\"type1 type2 type3 type11 type12 type13\">17<\/div><div data-floor=\"18\" class=\"type1 type2 type11 type12\">18<\/div><div data-floor=\"19\" class=\"type1 type2 type12\">19<\/div><div data-floor=\"20\" class=\"type1 type11\">20<\/div><div data-floor=\"21\" class=\"\">21<\/div><\/div>\n <\/div>\n <div class=\"unit-selector\">\n <h2>S\u00e9lectionner une unit\u00e9<\/h2>\n <div class=\"floor\"><\/div>\n <div class=\"legend\"><\/div>\n <\/div><\/div>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/fa2c6253a23196536c76.html +1 −0
@@ -0,0 +1 @@
1 +{"floor":"<div><?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->\n<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\n\t width=\"401px\" height=\"550px\" viewBox=\"0 0 401 550\" style=\"enable-background:new 0 0 401 550;\" xml:space=\"preserve\">\n<style type=\"text\/css\">\n\t.st0{display:none;}\n<\/style>\n<g id=\"others\">\n\t<path d=\"M275,331h18v21h-18V331z\"\/>\n\t<path d=\"M131,358h120v32H131V358z\"\/>\n\t<path d=\"M131,320h120v38H131V320z\"\/>\n\t<path d=\"M131,287h120v33H131V287z\"\/>\n\t<path d=\"M131,215h120v36H131V215z\"\/>\n\t<path d=\"M92,358h15v32H92V358z\"\/>\n\t<path d=\"M131,489h69v24h-69V489z\"\/>\n\t<path d=\"M0,107h131v24H0V107z\"\/>\n\t<path d=\"M0,131\"\/>\n\t<path d=\"M131,71h69v24h-69V71z\"\/>\n\t<path d=\"M200,71h69v24h-69V71z\"\/>\n\t<path d=\"M131,95v36H0v418h131v-60h61v-71h13v-28h-74v21h-30v-21h-9v-32h22V196h17v19h120v-28h19v17h11v13h28v-13h91V0H269v95H131z\"\/>\n\t<path d=\"M0,525h131v24H0V525z\"\/>\n<\/g>\n<g id=\"units\">\n\t<!--<g id=\"unit1\" class=\"st0\">\n\t\t<path d=\"M205,390h-74v47h-18v34h10v18h69v-71h13V390z\"\/>\n\t\t<path d=\"M131,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 149 441)\">212<\/text>\n\t<\/g>\n\t<g id=\"unit2\" class=\"st0\">\n\t\t<path d=\"M113,437h18v-26h-30v34H45v-11H0v115h131v-60h-8v-18h-10V437z\"\/>\n\t\t<path d=\"M0,525h131v24H0V525z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 488)\">213<\/text>\n\t<\/g>\n\t<g id=\"unit3\" class=\"st0\">\n\t\t<path d=\"M0,390v44h45v11h56v-55H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 415)\">214<\/text>\n\t<\/g>\n\t<g id=\"unit4\" class=\"st0\">\n\t\t<path d=\"M114,320H92v-11H0v81h92v-32h22V320z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 352.7008)\">215<\/text>\n\t<\/g>\n\t<g id=\"unit5\" class=\"st0\">\n\t\t<path d=\"M86,287v-30H0v52h92v11h22v-33H86z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 286)\">216<\/text>\n\t<\/g>\n\t<g id=\"unit6\" class=\"st0\">\n\t\t<path d=\"M0,217v40h86v30h28v-70H0z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 240)\">006<\/text>\n\t<\/g>\n\t<g id=\"unit7\" class=\"st0\">\n\t\t<path d=\"M0,107h131v24H0V107z\"\/>\n\t\t<path d=\"M141,131H0v86h114v-21h17v-11h10V131z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 47 177)\">007<\/text>\n\t<\/g>\n\t<g id=\"unit8\" class=\"st0\">\n\t\t<path d=\"M131,95v36h10v54h-10v30h63v-72h13V95H131z\"\/>\n\t\t<path d=\"M131,71h69v24h-69V71z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 157 177)\">008<\/text>\n\t<\/g>\n\t<g id=\"unit9\" class=\"st0\">\n\t\t<path d=\"M200,71h69v24h-69V71z\"\/>\n\t\t<path d=\"M289,95h-82v48h-13v72h57v-61h38V95z\"\/>\n\t\t<text transform=\"matrix(1 0 0 1 212 177)\">009<\/text>\n\t<\/g>\n\t<g id=\"unit10\" class=\"st0\">\n\t\t<path d=\"M269,0h131v23H269V0z\"\/>\n\t\t<path d=\"M269,0v95h20v59h-38v33h19v-9h35v-40h45v-11h50V0H269z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 78.203)\">0010<\/text>\n\t<\/g>\n\t<g id=\"unit11\" class=\"st0\">\n\t\t<path d=\"M350,127v11h-45v40h-35v26h11v13h28v-13h91v-77H350z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 174.2037)\">0011<\/text>\n\t<\/g>-->\n\t<g id=\"unit212\" class=\"unit match onsale\">\n\t\t<path d=\"M309,204v13h-42v41h33v-10h100v-44H309z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 229.204)\">212<\/text>\n\t<\/g>\n\t<g id=\"unit213\" class=\"unit match onsale\">\n\t\t<path d=\"M300,248v10h-33v32h133v-10v-22v-10H300z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 272.2039)\">213<\/text>\n\t<\/g>\n\t<g id=\"unit214\" class=\"unit\">\n\t\t<path d=\"M267,290h133v41H267V290z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 313.7039)\">214<\/text>\n\t<\/g>\n\t<g id=\"unit215\" class=\"unit\">\n\t\t<path d=\"M293,331v21h-24v66h131v-87H293z\"\/>\n\t\t<path d=\"M269,418h131v22H269V418z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 320.1384 377.704)\">215<\/text>\n\t<\/g>\n\t<g id=\"unit216\" class=\"unit\">\n\t\t<path d=\"M251,386v4h-46v28h-13v71h77V386H251z\"\/>\n\t\t<path d=\"M200,489h69v24h-69V489z\"\/>\n\t\t<text transform=\"matrix(1 -2.140968e-04 2.140968e-04 1 217.6826 441.0004)\">216<\/text>\n\t<\/g>\n<\/g>\n<\/svg>\n<\/div>","legend":"<ul><li class=\"match\">Studios (2)<\/li><li class=\"sold\">Lou\u00e9s (3)<\/li><\/div><\/ul>"}
\ No newline at end of file
added tests/fixtures/brivia_1sp/fdde8fe1313fc74da287.html +234 −0
@@ -0,0 +1,234 @@
1 +<!DOCTYPE HTML>
2 +<html xmlns="http://www.w3.org/1999/xhtml" lang="fr-CA" xml:lang="fr-CA" prefix="og: http://ogp.me/ns#">
3 +
4 +<head>
5 + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
6 + <meta property="og:description" content="Explorez les images intérieures et extérieures de la plus haute tour résidentielle à Montréal."/>
7 + <meta property="og:image" content="https://www.1squarephillips.ca/2022/"/>
8 + <meta property="og:locale" content="fr_CA">
9 + <meta property="og:site_name" content="1 Square Phillips">
10 + <meta property="og:title" content="Galerie | 1 Square Phillips"/>
11 + <meta property="og:type" content="website"/>
12 + <meta property="og:url" content="https://www.1squarephillips.ca/galerie"/>
13 + <meta name="description" content="Explorez les images intérieures et extérieures de la plus haute tour résidentielle à Montréal."/>
14 + <meta name="keywords" content="">
15 + <meta name="viewport" content="initial-scale=1,maximum-scale=1">
16 + <title>Galerie | 1 Square Phillips</title>
17 + <!--<script defer src="https://use.fontawesome.com/releases/v5.7.0/js/all.js" integrity="sha384-qD/MNBVMm3hVYCbRTSOW130+CWeRIKbpot9/gR1BHkd7sIct4QKhT1hOPd+2hO8K" crossorigin="anonymous"></script>-->
18 + <!--<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.11.2/css/all.css">-->
19 + <link rel="stylesheet" id="fontawesome-css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css?ver=1.0" type="text/css" media="all">
20 + <link rel="stylesheet" href="https://use.typekit.net/gvh8ept.css">
21 + <link href="https://www.1squarephillips.ca/2022/css/1sp.css?version=1.38" rel="stylesheet"><link href="https://www.1squarephillips.ca/2022/css/1sp-1920.css?version=1.38" rel="stylesheet"><link href="https://www.1squarephillips.ca/2022/css/1sp-1024.css?version=1.38" rel="stylesheet"><link href="https://www.1squarephillips.ca/2022/css/1sp-768.css?version=1.38" rel="stylesheet"><link href="https://www.1squarephillips.ca/2022/css/1sp-640.css?version=1.38" rel="stylesheet"> <link rel="apple-touch-icon" sizes="57x57" href="https://www.1squarephillips.ca/favicon/apple-icon-57x57.png">
22 + <link rel="apple-touch-icon" sizes="60x60" href="https://www.1squarephillips.ca/favicon/apple-icon-60x60.png">
23 + <link rel="apple-touch-icon" sizes="72x72" href="https://www.1squarephillips.ca/favicon/apple-icon-72x72.png">
24 + <link rel="apple-touch-icon" sizes="76x76" href="https://www.1squarephillips.ca/favicon/apple-icon-76x76.png">
25 + <link rel="apple-touch-icon" sizes="114x114" href="https://www.1squarephillips.ca/favicon/apple-icon-114x114.png">
26 + <link rel="apple-touch-icon" sizes="120x120" href="https://www.1squarephillips.ca/favicon/apple-icon-120x120.png">
27 + <link rel="apple-touch-icon" sizes="144x144" href="https://www.1squarephillips.ca/favicon/apple-icon-144x144.png">
28 + <link rel="apple-touch-icon" sizes="152x152" href="https://www.1squarephillips.ca/favicon/apple-icon-152x152.png">
29 + <link rel="apple-touch-icon" sizes="180x180" href="https://www.1squarephillips.ca/favicon/apple-icon-180x180.png">
30 + <link rel="icon" type="image/png" sizes="192x192" href="https://www.1squarephillips.ca/favicon/android-icon-192x192.png">
31 + <link rel="icon" type="image/png" sizes="32x32" href="https://www.1squarephillips.ca/favicon/favicon-32x32.png">
32 + <link rel="icon" type="image/png" sizes="96x96" href="https://www.1squarephillips.ca/favicon/favicon-96x96.png">
33 + <link rel="icon" type="image/png" sizes="16x16" href="https://www.1squarephillips.ca/favicon/favicon-16x16.png">
34 + <link rel="manifest" href="https://www.1squarephillips.ca/favicon/manifest.json">
35 + <meta name="msapplication-TileColor" content="#ffffff">
36 + <meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
37 + <meta name="theme-color" content="#ffffff">
38 + <link rel="canonical" href="https://www.1squarephillips.ca/galerie"><link rel="alternate" hreflang="en-CA" href="https://www.1squarephillips.ca/gallery"/>
39 +<link rel="alternate" hreflang="fr-CA" href="https://www.1squarephillips.ca/galerie"/>
40 +<link rel="alternate" hreflang="zh-CN" href="https://www.1squarephillips.ca/gallery-zh"/>
41 + <!--[if lt IE 9]>
42 + <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
43 + <![endif]-->
44 +
45 + <!-- Google Tag Manager -->
46 + <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
47 + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
48 + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
49 + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
50 + })(window,document,'script','dataLayer','GTM-NDFVN6D');</script>
51 + <!-- End Google Tag Manager -->
52 +
53 + <!--<script>
54 + !function(_window,_document,_type,_url,n,t,s){if(_window.ConnectTracker)return;n=_window.ConnectTracker=function(){n.callMethod?n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!_window._ConnectTracker)_window._ConnectTracker=n;n.push=n;n.loaded=!0;n.version='1.0';n.queue=[];t=_document.createElement(_type);t.async=!0;t.src=_url;s=_document.getElementsByTagName(_type)[0];s.parentNode.insertBefore(t,s)}(window,document,'script','//d3htn85c6cao65.cloudfront.net/libraries/connect-sdk/connect_tracker_v102.js');
55 + ConnectTracker('init', '6f7f3574c1abd3ee6a7c3ee1c1a13480');
56 + ConnectTracker('trackEvent', 'retargetingfr');
57 + </script>-->
58 + <script src="https://www.google.com/recaptcha/api.js?render=6Ld2nEAiAAAAAFlIFIDVr-hxfPPBVPM_Bg5SHrPF"></script>
59 + <!-- Start cookieyes banner -->
60 + <script id="cookieyes" type="text/javascript" src="https://cdn-cookieyes.com/client_data/08ce7ba3464f459ba4aefec4/script.js"></script>
61 + <!-- End cookieyes banner -->
62 +</head>
63 +
64 +<body class="loading">
65 + <noscript><img src="https://ads.connectedinteractive.com/api/web/000/6f7f3574c1abd3ee6a7c3ee1c1a13480/retargetingen?noscript=1" alt="" height="0" width="0" style="border: 0;"/></noscript>
66 +
67 + <div id="fb-root"></div>
68 + <script async defer crossorigin="anonymous" src="https://connect.facebook.net/fr_CA/sdk.js#xfbml=1&version=v5.0"></script>
69 + <!-- Google Tag Manager (noscript) -->
70 + <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NDFVN6D"
71 + height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
72 + <!-- End Google Tag Manager (noscript) -->
73 + <header>
74 + <div class="ticker"><div>Condos de luxe au centre-ville de Montréal</div></div> <nav><a href="https://www.1squarephillips.ca/" class="logo"><img src="https://www.1squarephillips.ca/2022/images/logo-1-square-phillips-white.svg" alt="1 Square Phillips"/> </a><ul><li><a href="https://www.1squarephillips.ca/accueil">Accueil</a></li><li><a href="https://www.1squarephillips.ca/projet-phase1">Phase 1</a></li><li><a href="https://www.1squarephillips.ca/projet-phase2">Phase 2</a></li><li><a href="https://www.1squarephillips.ca/locatif">Locatif</a></li><li><a href="https://www.1squarephillips.ca/collection-penthouse">Collection PH</a></li><li><a href="https://www.1squarephillips.ca/plans">plans</a></li><li><a href="https://www.1squarephillips.ca/vivre-montreal">Vivre Montréal</a></li><li><a href="https://www.1squarephillips.ca/galerie" class="active">Galerie</a></li><li><a href="https://www.1squarephillips.ca/equipe">Équipe</a></li><li><a href="https://www.1squarephillips.ca/contactez-nous">Contact</a></li><li class="lang"><a href="https://www.1squarephillips.ca/gallery">en</a><a href="https://www.1squarephillips.ca/gallery-zh">中文</a></li></ul><a href="" rel="nofollow" class="nav-expand"><span><span></span><span></span><span></span></span></a></nav> </header>
75 + <div id="top" class="container">
76 + <div id="page" class="page">
77 + <section class="header small"><button class="next"><i class="fas fa-chevron-down"></i></button><div class="slider autoplay"><div class="slides"><ul><li><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-portrait.jpg" media="(max-width: 1024px) and (max-aspect-ratio: 1/1)"><img src="https://www.1squarephillips.ca/2022/images/bckg-gallery.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery.jpg"></picture></li></ul></div><div class="ctrl_bts"><div><button></button></div></div><div class="ctrl_arr"><button type="button" data-dir="prev"></button><button type="button" data-dir="next"></button></div><div class="slider_status"></div></div></section><section class="gallery"><div class="gallery-grid"><div class="video"><a href="https://www.1squarephillips.ca/galerie/locatif-1604"data-iframe="%3Ciframe+src%3D%22https%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F1076201629%3Fbadge%3D0%26amp%3Bautopause%3D0%26amp%3Bplayer_id%3D0%26amp%3Bapp_id%3D58479%22+frameborder%3D%220%22+allow%3D%22autoplay%3B+fullscreen%3B+picture-in-picture%3B+clipboard-write%3B+encrypted-media%22+title%3D%221SquarePhillips.+%28Video+1%2C1604+Rental%29%22%3E%3C%2Fiframe%3E"><picture><source srcset="https://www.1squarephillips.ca/2022/images/1sp-1604-rental-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/1sp-1604-rental.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/1sp-1604-rental.jpg"></picture><span>Locatif 1604</span></a></div><div class="video"><a href="https://www.1squarephillips.ca/galerie/condo-2410"data-iframe="%3Ciframe+src%3D%22https%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F1076200056%3Fbadge%3D0%26amp%3Bautopause%3D0%26amp%3Bplayer_id%3D0%26amp%3Bapp_id%3D58479%22+frameborder%3D%220%22+allow%3D%22autoplay%3B+fullscreen%3B+picture-in-picture%3B+clipboard-write%3B+encrypted-media%22+title%3D%221++Square+Philips.%28Video+2+%2C+2410+Condo%29%22%3E%3C%2Fiframe%3E"><picture><source srcset="https://www.1squarephillips.ca/2022/images/1sp-2410-condo-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/1sp-2410-condo.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/1sp-2410-condo.jpg"></picture><span>Condominium 2410</span></a></div><div class="virtual-tour"><a href="https://www.1squarephillips.ca/galerie/tour-virtuel-5904"data-iframe="%3Ciframe+src%3D%22%2F%2Fstorage.net-fs.com%2Fhosting%2F6278801%2F8%2F%22+name%3D%221+Square+Philips+-+Penthouse+Collection%22+width%3D%22100%25%22+height%3D%22100%25%22+frameborder%3D%220%22+allow%3D%22fullscreen%3B+accelerometer%3B+gyroscope%3B+magnetometer%3B+vr%3B+xr%3B+xr-spatial-tracking%3B+autoplay%3B+camera%3B+microphone%22+allowfullscreen%3D%22true%22+webkitallowfullscreen%3D%22true%22+mozallowfullscreen%3D%22true%22+oallowfullscreen%3D%22true%22+msallowfullscreen%3D%22true%22%3E%3C%2Fiframe%3E"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-virtual-tour-5904-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-gallery-virtual-tour-5904.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-virtual-tour-5904.jpg"></picture><span>Penthouse 5904</span></a></div><div class="virtual-tour"><a href="https://www.1squarephillips.ca/galerie/tour-virtuel-5308"data-iframe="%3Ciframe+src%3D%22%2F%2Fstorage.net-fs.com%2Fhosting%2F6278801%2F10%2F%22+name%3D%221+Square+Philips+-+Condominium%22+width%3D%22100%25%22+height%3D%22100%25%22+frameborder%3D%220%22+allow%3D%22fullscreen%3B+accelerometer%3B+gyroscope%3B+magnetometer%3B+vr%3B+xr%3B+xr-spatial-tracking%3B+autoplay%3B+camera%3B+microphone%22+allowfullscreen%3D%22true%22+webkitallowfullscreen%3D%22true%22+mozallowfullscreen%3D%22true%22+oallowfullscreen%3D%22true%22+msallowfullscreen%3D%22true%22%3E%3C%2Fiframe%3E"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-virtual-tour-5308-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-gallery-virtual-tour-5308.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-virtual-tour-5308.jpg"></picture><span>Condominium 5308</span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-01"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_tour_1.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_tour_1.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_tour_1.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-02"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_tour_2.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_tour_2.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_tour_2.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-03"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_tour_3.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_tour_3.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_tour_3.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-04"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_tour_4.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_tour_4.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_tour_4.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-05"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_courtyard_facade_1.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_courtyard_facade_1.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_courtyard_facade_1.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-06"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_courtyard_facade_2.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_courtyard_facade_2.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_courtyard_facade_2.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-07"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_courtyard_facade_detail.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_courtyard_facade_detail.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_courtyard_facade_detail.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-08"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_courtyard_arrival_top_view.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_courtyard_arrival_top_view.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_courtyard_arrival_top_view.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-09"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_courtyard_arrival_1.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_courtyard_arrival_1.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_courtyard_arrival_1.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-10"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_courtyard_arrival_2.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_courtyard_arrival_2.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_courtyard_arrival_2.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-11"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_courtyard_arrival_4.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_courtyard_arrival_4.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_courtyard_arrival_4.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-12"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_courtyard_arrival_5.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_courtyard_arrival_5.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_courtyard_arrival_5.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-13"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_reception.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_reception.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_reception.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-14"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_hall_1.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_hall_1.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_hall_1.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-15"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_hall_2.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_hall_2.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_hall_2.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-16"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_bar.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_bar.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_bar.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-17"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_coworking_1.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_coworking_1.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_coworking_1.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-18"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_coworking_2.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_coworking_2.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_coworking_2.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-19"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_coworking_3.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_coworking_3.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_coworking_3.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-20"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_gym_1.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_gym_1.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_gym_1.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-21"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_gym_2.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_gym_2.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_gym_2.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-22"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_pool_1.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_pool_1.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_pool_1.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-23"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_pool_2.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_pool_2.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_pool_2.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-24"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_pool_3.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_pool_3.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_pool_3.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-25"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_pool_4.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_pool_4.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_pool_4.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-26"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_sauna.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_sauna.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_sauna.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-27"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_rooftop_lounge.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_rooftop_lounge.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_rooftop_lounge.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-28"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_rooftop_garden_1.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_rooftop_garden_1.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_rooftop_garden_1.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-29"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_rooftop_garden_2.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_rooftop_garden_2.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_rooftop_garden_2.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-30"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_dogpark.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_dogpark.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_dogpark.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-31"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_unit_504_1.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_unit_504_1.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_unit_504_1.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-32"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_unit_504_2.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_unit_504_2.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_unit_504_2.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-33"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_unit_504_3.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_unit_504_3.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_unit_504_3.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-34"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_unit_504_4.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_unit_504_4.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_unit_504_4.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-35"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_bathroom_2.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_bathroom_2.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_bathroom_2.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-36"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_unit_2107_1.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_unit_2107_1.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_unit_2107_1.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-37"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_unit_2107_2.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_unit_2107_2.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_unit_2107_2.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-38"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_unit_2107_3.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_unit_2107_3.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_unit_2107_3.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/phase2-39"><picture><source srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_unit_2107_4.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_unit_2107_4.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/gallery/persp_SQPH2_unit_2107_4.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/01"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-home-1-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-home-1-portrait.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-home-1-portrait.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/02"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-project-4-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-project-4.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-project-4.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/03"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-home-2-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-home-2.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-home-2.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/12"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-home-project.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-home-project.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-home-project.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/13"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-1-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-gallery-1.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-1.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/14"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-2-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-gallery-2-portrait.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-2-portrait.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/16"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-4-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-gallery-4-portrait.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-4-portrait.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/17"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-5-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-gallery-5-portrait.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-5-portrait.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/04"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-project-1-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-project-1.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-project-1.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/05"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-home-4-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-home-4.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-home-4.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/06"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-gallery.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/07"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-home-3-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-home-3.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-home-3.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/18"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-6-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-gallery-6.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-6.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/08"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-contact-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-contact.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-contact.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/09"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-plans-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-plans.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-plans.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/10"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-project-2-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-project-2.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-project-2.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/11"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-project-3-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-project-3.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-project-3.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/19"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-7-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-gallery-7.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-7.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/20"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-8-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-gallery-8.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-8.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/21"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-9-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-gallery-9.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-9.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/22"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-10-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-gallery-10.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-10.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/24"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-11-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-gallery-11.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-11.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/25"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-12-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-gallery-12.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-12.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/26"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-13-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-gallery-13.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-13.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/27"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-14-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-gallery-14.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-14.jpg"></picture><span></span></a></div><div><a href="https://www.1squarephillips.ca/galerie/28"><picture><source srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-15-portrait.jpg" media="(max-width: 640px) and (max-aspect-ratio: 1/1)"><img src-to-load="https://www.1squarephillips.ca/2022/images/bckg-gallery-15.jpg" alt="" srcset="https://www.1squarephillips.ca/2022/images/bckg-gallery-15.jpg"></picture><span></span></a></div></div></section> </div>
78 + <div class="floating-cta"><a href="#inscrire-maintenant" class="bt">S'inscrire maintenant</a></div> <footer>
79 + <div>
80 + <a href="https://www.1squarephillips.ca/" class="logo"><img src="https://www.1squarephillips.ca/2022/images/logo-1-square-phillips-full-gold.svg" alt="Logo du projet immobilier 1 Square Phillips à Montréal"/></a><nav><ul><li><a href="https://www.1squarephillips.ca/accueil">Accueil</a></li><li><a href="https://www.1squarephillips.ca/projet-phase1">Phase 1</a></li><li><a href="https://www.1squarephillips.ca/projet-phase2">Phase 2</a></li><li><a href="https://www.1squarephillips.ca/locatif">Locatif</a></li><li><a href="https://www.1squarephillips.ca/collection-penthouse">Collection PH</a></li><li><a href="https://www.1squarephillips.ca/plans">plans</a></li><li><a href="https://www.1squarephillips.ca/vivre-montreal">Vivre Montréal</a></li><li><a href="https://www.1squarephillips.ca/galerie" class="active">Galerie</a></li><li><a href="https://www.1squarephillips.ca/equipe">Équipe</a></li><li><a href="https://www.1squarephillips.ca/contactez-nous">Contact</a></li></ul><a href="#top"><i class="fas fa-chevron-up"></i></a></nav><div class="presentation"><h2>Pavillon de présentation</h2>
81 + <p>539, rue Sainte-Catherine Ouest<br>
82 + Montréal QC Canada<br>
83 + H3B&nbsp;1B2<br>
84 + <a href="tel:+15146179999">514 617.9999</a><br>
85 + <a href="mailto:ventes@1squarephillips.ca">ventes@1squarephillips.ca</a></p>
86 + <p>Lundi au vendredi : 11 h - 18 h<br>
87 + Samedi et dimanche : 11 h - 17 h</p></div><div class="form"><h2>J'aimerais obtenir plus d'informations concernant&nbsp;:</h2>
88 + <form id="inscrire-maintenant" action="" method="post">
89 + <input style="display:none;" type="hidden" id="ads__referral_url__c" name="00N3t00000E2EXREA3" value="" />
90 + <input style="display:none;" type="hidden" id="ads__landing_url__c" name="00N3t00000E2EXQEA3" value="" />
91 + <input name="domainAccountId" type="hidden" value="LAS-333928-02"/>
92 + <input name="guid" type="hidden" value=""/>
93 + <input name="lang" type="hidden" value="fr"/>
94 + <input name="message" type="hidden" />
95 + <input name="origin" type="hidden" value="purchase" />
96 +
97 + <div class="grp">
98 + <div>
99 + <label class="radio"><input name="preferences" type="radio" value="purchase"><span>L'achat</span></label>
100 + <label class="radio"><input name="preferences" type="radio" value="rental"><span>La location</span></label>
101 + </div>
102 + </div>
103 + <div class="grp">
104 + <div>
105 + <label for="name">Nom complet *</label>
106 + <input id="name" name="name" type="text" class="mandatory"/>
107 + <label for="email">Courriel *</label>
108 + <input id="email" name="email" type="text" class="mandatory"/>
109 + <label for="phone">Téléphone</label>
110 + <input id="phone" name="phone" type="text" />
111 + </div>
112 + </div>
113 + <div class="grp">
114 + <div>
115 + <label class="checkbox"><input name="broker" type="checkbox" value="1"><span>Je suis un courtier immobilier</span></label>
116 + </div>
117 + </div>
118 + <div class="grp">
119 + <div>
120 + <label class="checkbox"><input name="consent" type="checkbox" value="1"><span>J’accepte de recevoir par courriel des informations, des promotions et des invitations de&nbsp;la part de 1&nbsp;Square&nbsp;Phillips et Groupe Brivia.</span></label>
121 + </div>
122 + </div>
123 + <div class="grp">
124 + <button type="submit" class="bt">Soumettre</button>
125 + </div>
126 + <div class="grp">
127 + <p><small><br>Ce site est protégé par reCAPTCHA et la <a href="https://policies.google.com/privacy" target="_blank">politique de vie privée</a> et les <a href="https://policies.google.com/terms" target="_blank">termes de service</a> Google&nbsp;s'appliquent.</small></p>
128 + </div>
129 + </form></div><div class="copyright-grp">
130 + <div class="copyright"><span>© 2026 <a href="https://www.1squarephillips.ca/">1&nbsp;Square&nbsp;Phillips</a>.</span> <span>Tous droits réservés.</span> <br class="bp-640"><a href="https://www.1squarephillips.ca/politique-de-confidentialite">Politique de confidentialité.</a><br>1205, rue du Square-Phillips&nbsp; <br class="bp-640">Montréal&nbsp; QC&nbsp; Canada&nbsp; H3B&nbsp;3C9&nbsp; <br>
131 + <a href="tel:+15146179999">514 617.9999</a>
132 + </div><div class="partners"><span><a href="https://briviagroup.ca" target="_blank"><img src="https://www.1squarephillips.ca/2022/images/logo-groupe-brivia.svg" alt="Groupe Brivia" /></a></span><span><a href="https://ipsofactoimmobilier.com/fr" target="_blank"><img src="https://www.1squarephillips.ca/2022/images/logo-ipsofacto-invetissement-immobilier.svg" alt="IPSO FACTO investissement immobilier" /></a></span><span><a href="http://www.msdl.ca" target="_blank"><img src="https://www.1squarephillips.ca/2022/images/logo-msdl.svg" alt="Menkès Shooner Dagenais Letourneux Architectes" /></a></span><span><img src="https://www.1squarephillips.ca/2022/images/logo-innedesign.svg" alt="innédesign" /></span><span><a href="https://www.claudecormier.com" target="_blank"><img src="https://www.1squarephillips.ca/2022/images/logo-claude-cormier.svg" alt="Claude Cormier + associés" /></a></span></div><div class="social"><a href="https://www.facebook.com/1squarephillips" target="_blank"><i class="fab fa-facebook"></i></a><a href="https://www.instagram.com/1squarephillips/" target="_blank"><i class="fab fa-instagram"></i></a></div></div> </div>
133 + </footer>
134 + </div>
135 + <div id="lightbox">
136 + <div class="lightbox_bckg"></div>
137 + </div>
138 + <script src="https://player.vimeo.com/api/player.js"></script>
139 + <script src="https://www.1squarephillips.ca/2022/js/jquery-1.11.0.min.js"></script>
140 + <script src="https://www.1squarephillips.ca/2022/js/jquery.validate.min.js"></script>
141 + <script src="https://www.1squarephillips.ca/2022/js/additional-methods.min.js"></script>
142 + <script src="https://www.1squarephillips.ca/2022/js/js-map.js?version=1.38"></script>
143 + <script src="https://www.1squarephillips.ca/2022/js/js-parallax.js?version=1.38"></script>
144 + <script src="https://www.1squarephillips.ca/2022/js/js-plans.js?version=1.38"></script>
145 + <script src="https://www.1squarephillips.ca/2022/js/js-slider.js?version=1.38"></script>
146 + <script src="https://www.1squarephillips.ca/2022/js/script.js?version=1.38"></script>
147 + <script>
148 + var url = 'https://www.1squarephillips.ca/',
149 + base = 'https://www.1squarephillips.ca/2022/',
150 + lang = 'fr',
151 + $window = $(window),
152 + $document = $(document),
153 + $body = $('body'),
154 + bckg = $('div.bckg'),
155 + container = $('div.container'),
156 + header = $('header'),
157 + nav = header.children('nav'),
158 + nav_expand = $('a.nav-expand'),
159 + page = container.children('div.page'),
160 + sections = $('section'),
161 + footer = $('footer'),
162 + window_w = $window.width(),
163 + window_h = $window.height(),
164 + window_st = $window.scrollTop(),
165 + window_p = window_st + window_h,
166 + window_sd,
167 + lightbox = $('#lightbox'),
168 + wrap,
169 + wrap_inner,
170 + lightbox_bckg = lightbox.children('.lightbox_bckg'),
171 + slider = $('.slider'),
172 + slideshows = [],
173 + slideshows_int = [];
174 +
175 +
176 +
177 + lightbox_bckg.on('click', function () {
178 + closeLightBox();
179 + });
180 +
181 + var preload_items = {"landscape":["images/bckg-gallery.jpg"],"portrait":["images/bckg-gallery-portrait.jpg"]};
182 + if(window_w > window_h) {
183 + $body.append('<div class="body-preload"><img src="https://www.1squarephillips.ca/2022/images/bckg-gallery.jpg" alt=""/></div>');
184 + } else {
185 + $body.append('<div class="body-preload"><img src="https://www.1squarephillips.ca/2022/images/bckg-gallery-portrait.jpg" alt=""/></div>');
186 + }
187 +
188 + preload($('div.body-preload'), function() {
189 + $body.removeClass('loading');
190 + });
191 +
192 +
193 + $window.load(function() {
194 + setNav();
195 + $window.scroll();
196 +
197 + initGallery();
198 + initNewsletter();
199 +
200 + if($('.slider').length > 0) {
201 + slideshows = new Array()
202 +
203 + for(var i = 0; i < $('.slider').length; i++) {
204 + setSlider(i, 0);
205 + }
206 + }
207 +
208 + $('section.header .slides li').addClass('parallax');
209 + setParallax();
210 + });
211 +
212 + $window.resize(function () {
213 + window_w = $window.width();
214 + window_h = $window.height();
215 +
216 + if($('.slider').length > 0) {
217 + for(var i = 0; i < $('.slider').length; i++) {
218 + setSliderWidth(i);
219 + }
220 + }
221 + });
222 +
223 + $window.scroll(function () {
224 + setScroll();
225 + });
226 +
227 + function mapsGoogleCallback() {
228 +
229 + }
230 +
231 + </script>
232 + <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDVQRHKkPvwfvdQ-gia9yOUDLNyyFvwqNk&language=fr&libraries=places&callback=mapsGoogleCallback"></script>
233 +</body>
234 +</html>
\ No newline at end of file
added tests/fixtures/brivia_1sp/index.json +296 −0
@@ -0,0 +1,296 @@
1 +{
2 + "e9f00101461f6628d5e0": {
3 + "method": "GET",
4 + "url": "https://www.1squarephillips.ca/locatif",
5 + "status": 200,
6 + "content_type": "text/html; charset=UTF-8",
7 + "file": "e9f00101461f6628d5e0.html"
8 + },
9 + "fdde8fe1313fc74da287": {
10 + "method": "GET",
11 + "url": "https://www.1squarephillips.ca/galerie",
12 + "status": 200,
13 + "content_type": "text/html; charset=UTF-8",
14 + "file": "fdde8fe1313fc74da287.html"
15 + },
16 + "f071019fe00ac88417d2": {
17 + "method": "POST",
18 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_unit_selector.php",
19 + "status": 200,
20 + "content_type": "text/html; charset=UTF-8",
21 + "file": "f071019fe00ac88417d2.html"
22 + },
23 + "fa2c6253a23196536c76": {
24 + "method": "POST",
25 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_floor.php",
26 + "status": 200,
27 + "content_type": "text/html; charset=UTF-8",
28 + "file": "fa2c6253a23196536c76.html"
29 + },
30 + "53e175e61127e9d4f2db": {
31 + "method": "POST",
32 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_floor.php",
33 + "status": 200,
34 + "content_type": "text/html; charset=UTF-8",
35 + "file": "53e175e61127e9d4f2db.html"
36 + },
37 + "85ec94ad70e3d40435b1": {
38 + "method": "POST",
39 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_floor.php",
40 + "status": 200,
41 + "content_type": "text/html; charset=UTF-8",
42 + "file": "85ec94ad70e3d40435b1.html"
43 + },
44 + "405669a3b92a6ab14e81": {
45 + "method": "POST",
46 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_floor.php",
47 + "status": 200,
48 + "content_type": "text/html; charset=UTF-8",
49 + "file": "405669a3b92a6ab14e81.html"
50 + },
51 + "70592636e198bf053225": {
52 + "method": "POST",
53 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_floor.php",
54 + "status": 200,
55 + "content_type": "text/html; charset=UTF-8",
56 + "file": "70592636e198bf053225.html"
57 + },
58 + "41be98eca2256df8c4ec": {
59 + "method": "POST",
60 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_floor.php",
61 + "status": 200,
62 + "content_type": "text/html; charset=UTF-8",
63 + "file": "41be98eca2256df8c4ec.html"
64 + },
65 + "945109f8cf18115e69ba": {
66 + "method": "POST",
67 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_floor.php",
68 + "status": 200,
69 + "content_type": "text/html; charset=UTF-8",
70 + "file": "945109f8cf18115e69ba.html"
71 + },
72 + "ce5b98b861ab3dabc712": {
73 + "method": "POST",
74 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_floor.php",
75 + "status": 200,
76 + "content_type": "text/html; charset=UTF-8",
77 + "file": "ce5b98b861ab3dabc712.html"
78 + },
79 + "2df03ac2db5a830ff136": {
80 + "method": "POST",
81 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_floor.php",
82 + "status": 200,
83 + "content_type": "text/html; charset=UTF-8",
84 + "file": "2df03ac2db5a830ff136.html"
85 + },
86 + "6dcc0742323465feba30": {
87 + "method": "POST",
88 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_floor.php",
89 + "status": 200,
90 + "content_type": "text/html; charset=UTF-8",
91 + "file": "6dcc0742323465feba30.html"
92 + },
93 + "634d3ed0e3bdcea6a1a8": {
94 + "method": "POST",
95 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_floor.php",
96 + "status": 200,
97 + "content_type": "text/html; charset=UTF-8",
98 + "file": "634d3ed0e3bdcea6a1a8.html"
99 + },
100 + "2341028b27d697d40048": {
101 + "method": "POST",
102 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_floor.php",
103 + "status": 200,
104 + "content_type": "text/html; charset=UTF-8",
105 + "file": "2341028b27d697d40048.html"
106 + },
107 + "64c6649dc56a0c76632b": {
108 + "method": "POST",
109 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_floor.php",
110 + "status": 200,
111 + "content_type": "text/html; charset=UTF-8",
112 + "file": "64c6649dc56a0c76632b.html"
113 + },
114 + "6fbda32f4ba9ff2a636e": {
115 + "method": "POST",
116 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_floor.php",
117 + "status": 200,
118 + "content_type": "text/html; charset=UTF-8",
119 + "file": "6fbda32f4ba9ff2a636e.html"
120 + },
121 + "9f12656853c7440c5853": {
122 + "method": "POST",
123 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_floor.php",
124 + "status": 200,
125 + "content_type": "text/html; charset=UTF-8",
126 + "file": "9f12656853c7440c5853.html"
127 + },
128 + "5364103f0dc50f070cbd": {
129 + "method": "POST",
130 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_floor.php",
131 + "status": 200,
132 + "content_type": "text/html; charset=UTF-8",
133 + "file": "5364103f0dc50f070cbd.html"
134 + },
135 + "6f845743a52afd0db8da": {
136 + "method": "POST",
137 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_floor.php",
138 + "status": 200,
139 + "content_type": "text/html; charset=UTF-8",
140 + "file": "6f845743a52afd0db8da.html"
141 + },
142 + "19d3242adde949d68e14": {
143 + "method": "POST",
144 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_floor.php",
145 + "status": 200,
146 + "content_type": "text/html; charset=UTF-8",
147 + "file": "19d3242adde949d68e14.html"
148 + },
149 + "65cf2296684ff5ca612c": {
150 + "method": "POST",
151 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_floor.php",
152 + "status": 200,
153 + "content_type": "text/html; charset=UTF-8",
154 + "file": "65cf2296684ff5ca612c.html"
155 + },
156 + "7c6890fd9e01a0c2a051": {
157 + "method": "POST",
158 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_floor.php",
159 + "status": 200,
160 + "content_type": "text/html; charset=UTF-8",
161 + "file": "7c6890fd9e01a0c2a051.html"
162 + },
163 + "54df47e60b99c97f0126": {
164 + "method": "POST",
165 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_unit.php",
166 + "status": 200,
167 + "content_type": "text/html; charset=UTF-8",
168 + "file": "54df47e60b99c97f0126.html"
169 + },
170 + "08d533389e69ec56ea35": {
171 + "method": "POST",
172 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_unit.php",
173 + "status": 200,
174 + "content_type": "text/html; charset=UTF-8",
175 + "file": "08d533389e69ec56ea35.html"
176 + },
177 + "01a7fd584bbf97ec9817": {
178 + "method": "POST",
179 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_unit.php",
180 + "status": 200,
181 + "content_type": "text/html; charset=UTF-8",
182 + "file": "01a7fd584bbf97ec9817.html"
183 + },
184 + "def71af393a085c681bd": {
185 + "method": "POST",
186 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_unit.php",
187 + "status": 200,
188 + "content_type": "text/html; charset=UTF-8",
189 + "file": "def71af393a085c681bd.html"
190 + },
191 + "2405cce8f7fa8168c970": {
192 + "method": "POST",
193 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_unit.php",
194 + "status": 200,
195 + "content_type": "text/html; charset=UTF-8",
196 + "file": "2405cce8f7fa8168c970.html"
197 + },
198 + "70470e5525786b3220be": {
199 + "method": "POST",
200 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_unit.php",
201 + "status": 200,
202 + "content_type": "text/html; charset=UTF-8",
203 + "file": "70470e5525786b3220be.html"
204 + },
205 + "90c79044faafe665a77e": {
206 + "method": "POST",
207 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_unit.php",
208 + "status": 200,
209 + "content_type": "text/html; charset=UTF-8",
210 + "file": "90c79044faafe665a77e.html"
211 + },
212 + "378676aea831d11c2278": {
213 + "method": "POST",
214 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_unit.php",
215 + "status": 200,
216 + "content_type": "text/html; charset=UTF-8",
217 + "file": "378676aea831d11c2278.html"
218 + },
219 + "8a59acda5a50a834c4ca": {
220 + "method": "POST",
221 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_unit.php",
222 + "status": 200,
223 + "content_type": "text/html; charset=UTF-8",
224 + "file": "8a59acda5a50a834c4ca.html"
225 + },
226 + "20eec1af9eed3f981306": {
227 + "method": "POST",
228 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_unit.php",
229 + "status": 200,
230 + "content_type": "text/html; charset=UTF-8",
231 + "file": "20eec1af9eed3f981306.html"
232 + },
233 + "5bbec04c9e6764dd409b": {
234 + "method": "POST",
235 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_unit.php",
236 + "status": 200,
237 + "content_type": "text/html; charset=UTF-8",
238 + "file": "5bbec04c9e6764dd409b.html"
239 + },
240 + "e26e92827d55fd3d288e": {
241 + "method": "POST",
242 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_unit.php",
243 + "status": 200,
244 + "content_type": "text/html; charset=UTF-8",
245 + "file": "e26e92827d55fd3d288e.html"
246 + },
247 + "b0cd41e4cb3b533b30ac": {
248 + "method": "POST",
249 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_unit.php",
250 + "status": 200,
251 + "content_type": "text/html; charset=UTF-8",
252 + "file": "b0cd41e4cb3b533b30ac.html"
253 + },
254 + "24d6fa373e9d733b6518": {
255 + "method": "POST",
256 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_unit.php",
257 + "status": 200,
258 + "content_type": "text/html; charset=UTF-8",
259 + "file": "24d6fa373e9d733b6518.html"
260 + },
261 + "37915a7cd2d4d08e9228": {
262 + "method": "POST",
263 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_unit.php",
264 + "status": 200,
265 + "content_type": "text/html; charset=UTF-8",
266 + "file": "37915a7cd2d4d08e9228.html"
267 + },
268 + "3d7ae86d887b4a3daeb2": {
269 + "method": "POST",
270 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_unit.php",
271 + "status": 200,
272 + "content_type": "text/html; charset=UTF-8",
273 + "file": "3d7ae86d887b4a3daeb2.html"
274 + },
275 + "376a11bf5c82d4ee4a68": {
276 + "method": "POST",
277 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_unit.php",
278 + "status": 200,
279 + "content_type": "text/html; charset=UTF-8",
280 + "file": "376a11bf5c82d4ee4a68.html"
281 + },
282 + "91d4e45c82028d37efdb": {
283 + "method": "POST",
284 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_unit.php",
285 + "status": 200,
286 + "content_type": "text/html; charset=UTF-8",
287 + "file": "91d4e45c82028d37efdb.html"
288 + },
289 + "c6977abf29502965dac9": {
290 + "method": "POST",
291 + "url": "https://www.1squarephillips.ca/2022/php/ajax_load_plans_unit.php",
292 + "status": 200,
293 + "content_type": "text/html; charset=UTF-8",
294 + "file": "c6977abf29502965dac9.html"
295 + }
296 +}
\ No newline at end of file
added tests/fixtures/brochu/178e6d7e9238490fc6ef.html +884 −0
@@ -0,0 +1,884 @@
1 +<!doctype html>
2 +<html lang="fr-CA">
3 +
4 +<head>
5 + <meta charset="UTF-8">
6 + <meta name="viewport" content="width=device-width, initial-scale=1">
7 + <link rel="profile" href="https://gmpg.org/xfn/11">
8 + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
9 +
10 +<!-- Google Tag Manager for WordPress by gtm4wp.com -->
11 +<script data-cfasync="false" data-pagespeed-no-defer>
12 + var gtm4wp_datalayer_name = "dataLayer";
13 + var dataLayer = dataLayer || [];
14 +
15 + const gtm4wp_scrollerscript_debugmode = false;
16 + const gtm4wp_scrollerscript_callbacktime = 100;
17 + const gtm4wp_scrollerscript_readerlocation = 150;
18 + const gtm4wp_scrollerscript_contentelementid = "content";
19 + const gtm4wp_scrollerscript_scannertime = 60;
20 +</script>
21 +<!-- End Google Tag Manager for WordPress by gtm4wp.com -->
22 + <!-- This site is optimized with the Yoast SEO plugin v28.2 - https://yoast.com/product/yoast-seo-wordpress/ -->
23 + <title>Projets - Groupe Immobilier Brochu</title>
24 + <link rel="canonical" href="https://groupeimmobilierbrochu.com/projets/" />
25 + <meta property="og:locale" content="fr_CA" />
26 + <meta property="og:type" content="website" />
27 + <meta property="og:title" content="Projets - Groupe Immobilier Brochu" />
28 + <meta property="og:url" content="https://groupeimmobilierbrochu.com/projets/" />
29 + <meta property="og:site_name" content="Groupe Immobilier Brochu" />
30 + <meta name="twitter:card" content="summary_large_image" />
31 + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https:\/\/schema.org","@graph":[{"@type":"CollectionPage","@id":"https:\/\/groupeimmobilierbrochu.com\/projets\/","url":"https:\/\/groupeimmobilierbrochu.com\/projets\/","name":"Projets - Groupe Immobilier Brochu","isPartOf":{"@id":"https:\/\/groupeimmobilierbrochu.com\/#website"},"breadcrumb":{"@id":"https:\/\/groupeimmobilierbrochu.com\/projets\/#breadcrumb"},"inLanguage":"fr-CA"},{"@type":"BreadcrumbList","@id":"https:\/\/groupeimmobilierbrochu.com\/projets\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/groupeimmobilierbrochu.com\/"},{"@type":"ListItem","position":2,"name":"Projets"}]},{"@type":"WebSite","@id":"https:\/\/groupeimmobilierbrochu.com\/#website","url":"https:\/\/groupeimmobilierbrochu.com\/","name":"Groupe Immobilier Brochu","description":"Développeurs immobilier","publisher":{"@id":"https:\/\/groupeimmobilierbrochu.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/groupeimmobilierbrochu.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-CA"},{"@type":"Organization","@id":"https:\/\/groupeimmobilierbrochu.com\/#organization","name":"Groupe Immobilier Brochu","url":"https:\/\/groupeimmobilierbrochu.com\/","logo":{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/groupeimmobilierbrochu.com\/#\/schema\/logo\/image\/","url":"https:\/\/groupeimmobilierbrochu.com\/wp-content\/uploads\/2023\/11\/cropped-Logo-jpg.webp","contentUrl":"https:\/\/groupeimmobilierbrochu.com\/wp-content\/uploads\/2023\/11\/cropped-Logo-jpg.webp","width":765,"height":396,"caption":"Groupe Immobilier Brochu"},"image":{"@id":"https:\/\/groupeimmobilierbrochu.com\/#\/schema\/logo\/image\/"}}]}</script>
32 + <!-- / Yoast SEO plugin. -->
33 +
34 +
35 +<link rel='dns-prefetch' href='//maps.googleapis.com' />
36 +<link rel="alternate" type="application/rss+xml" title="Groupe Immobilier Brochu &raquo; Flux" href="https://groupeimmobilierbrochu.com/feed/" />
37 +<link rel="alternate" type="application/rss+xml" title="Groupe Immobilier Brochu &raquo; Flux pour Projets" href="https://groupeimmobilierbrochu.com/projets/feed/" />
38 +<style id="wp-img-auto-sizes-contain-inline-css">
39 +img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
40 +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
41 +</style>
42 +<link rel='stylesheet' id='formidable-css' href='https://groupeimmobilierbrochu.com/wp-content/plugins/formidable/css/formidableforms.css?ver=7162051' media='all' />
43 +<style id="wp-emoji-styles-inline-css">
44 +
45 + img.wp-smiley, img.emoji {
46 + display: inline !important;
47 + border: none !important;
48 + box-shadow: none !important;
49 + height: 1em !important;
50 + width: 1em !important;
51 + margin: 0 0.07em !important;
52 + vertical-align: -0.1em !important;
53 + background: none !important;
54 + padding: 0 !important;
55 + }
56 +/*# sourceURL=wp-emoji-styles-inline-css */
57 +</style>
58 +<style id="wp-block-library-inline-css">
59 +:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
60 +
61 +/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */
62 +</style>
63 +<style id="classic-theme-styles-inline-css">
64 +/*! This file is auto-generated */
65 +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
66 +/*# sourceURL=/wp-includes/css/classic-themes.min.css */
67 +</style>
68 +
69 +<style id="global-styles-inline-css">
70 +:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
71 +/*# sourceURL=global-styles-inline-css */
72 +</style>
73 +
74 +<link rel='stylesheet' id='cmplz-general-css' href='https://groupeimmobilierbrochu.com/wp-content/plugins/complianz-gdpr/assets/css/cookieblocker.min.css?ver=1715620671' media='all' />
75 +<link rel='stylesheet' id='appartements-brochu-style-css' href='https://groupeimmobilierbrochu.com/wp-content/themes/GIB-appartement/css/theme.min.css?ver=1.1.1674306552' media='all' />
76 +<script id="gtm4wp-scroll-tracking-js" src="https://groupeimmobilierbrochu.com/wp-content/plugins/duracelltomi-google-tag-manager/dist/js/analytics-talk-content-tracking.js?ver=1.22.3"></script>
77 +<script id="jquery-core-js" src="https://groupeimmobilierbrochu.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script>
78 +<script id="jquery-migrate-js" src="https://groupeimmobilierbrochu.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script>
79 +<link rel="https://api.w.org/" href="https://groupeimmobilierbrochu.com/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://groupeimmobilierbrochu.com/xmlrpc.php?rsd" />
80 +<meta name="generator" content="WordPress 7.0.3" />
81 +<meta name="generator" content="performance-lab 4.2.0; plugins: ">
82 +<script>document.documentElement.className += " js";</script>
83 + <style>.cmplz-hidden {
84 + display: none !important;
85 + }</style>
86 +<!-- Google Tag Manager for WordPress by gtm4wp.com -->
87 +<!-- GTM Container placement set to automatic -->
88 +<script data-cfasync="false" data-pagespeed-no-defer>
89 + var dataLayer_content = {"pagePostType":"project"};
90 + dataLayer.push( dataLayer_content );
91 +</script>
92 +<script data-cfasync="false" data-pagespeed-no-defer>
93 +(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
94 +new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
95 +j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
96 +'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
97 +})(window,document,'script','dataLayer','GTM-WRXBQMK3');
98 +</script>
99 +<!-- End Google Tag Manager for WordPress by gtm4wp.com -->
100 +
101 + <!-- <meta property="og:image" content="" /> -->
102 +
103 +
104 +
105 +
106 +<link rel="icon" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" sizes="32x32" />
107 +<link rel="icon" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" sizes="192x192" />
108 +<link rel="apple-touch-icon" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" />
109 +<meta name="msapplication-TileImage" content="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" />
110 +<style id="wp-custom-css">
111 +/* Fix chevauchement titre "Reconnaissances" sur ecrans intermediaires */
112 +@media (min-width: 960px) and (max-width: 1360px) {
113 + #news .uk-grid > .uk-width-1-4\@m,
114 + #news .uk-grid > .uk-width-expand\@m {
115 + width: 100% !important;
116 + max-width: 100% !important;
117 + }
118 +}
119 +
120 +/* Masquer la barre verte des projets quand elle deborderait sur deux lignes */
121 +@media (max-width: 1510px) {
122 + .project-list {
123 + display: none;
124 + }
125 +}
126 +
127 +/* Retarder le basculement vers le menu mobile */
128 +@media (min-width: 992px) {
129 + .tm-header-mobile.uk-hidden\@l {
130 + display: none !important;
131 + }
132 + .tm-header.uk-visible\@l {
133 + display: block !important;
134 + }
135 +}
136 +@media (max-width: 991px) {
137 + .tm-header.uk-visible\@l {
138 + display: none !important;
139 + }
140 + .tm-header-mobile.uk-hidden\@l {
141 + display: block !important;
142 + }
143 +}
144 +</style>
145 +</head>
146 +
147 +
148 +<body data-cmplz=1 class="archive post-type-archive post-type-archive-project wp-custom-logo wp-theme-GIB-appartement hfeed no-sidebar">
149 +
150 +<!-- GTM Container placement set to automatic -->
151 +<!-- Google Tag Manager (noscript) -->
152 + <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WRXBQMK3" height="0" width="0" style="display:none;visibility:hidden" aria-hidden="true"></iframe></noscript>
153 +<!-- End Google Tag Manager (noscript) -->
154 + <div id="page-container" class="page-container uk-clearfix">
155 + <div id="page" class="tm-page uk-margin-auto">
156 + <!-- <div class="uk-background-primary uk-padding">
157 + fef
158 + </div> -->
159 + <div class="tm-header-mobile uk-hidden@l">
160 +
161 +
162 + <div uk-sticky="" show-on-up="" animation="uk-animation-slide-top" cls-active="uk-navbar-sticky" sel-target=".uk-navbar-container" class="uk-sticky">
163 +
164 + <div class="uk-navbar-container">
165 + <nav uk-navbar="container: .tm-header-mobile" class="uk-navbar">
166 + <div class="uk-navbar-center">
167 + <div class="uk-width-expand uk-margin-auto logo">
168 + <a href="https://groupeimmobilierbrochu.com/" class="custom-logo-link" rel="home"><img width="765" height="396" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp" class="custom-logo" alt="Groupe Immobilier Brochu" decoding="async" fetchpriority="high" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp 765w, https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg-300x155.webp 300w" sizes="(max-width: 765px) 100vw, 765px" /></a> </div>
169 + </div>
170 +
171 +
172 +
173 + <div class="uk-navbar-right">
174 + <a class="uk-navbar-toggle" href="#tm-mobile" uk-toggle="" aria-expanded="false">
175 + <div uk-navbar-toggle-icon="" class="uk-icon uk-navbar-toggle-icon"></div>
176 + </a>
177 + </div>
178 +
179 +
180 + </nav>
181 + </div>
182 +
183 +
184 + </div>
185 + <div class="uk-sticky-placeholder" style="height: 90px; margin: 0px;" hidden=""></div>
186 +
187 + <div id="tm-mobile" class="uk-modal-full uk-modal" uk-modal>
188 + <div class="uk-modal-dialog uk-modal-body uk-height-viewport">
189 + <button class="uk-modal-close-full uk-icon uk-close" type="button" uk-close=""></button>
190 + <div class="uk-margin-auto-vertical uk-width-1-1">
191 + <div class="uk-child-width-1-1 uk-grid uk-grid-stack" uk-grid>
192 + <div>
193 + <div class="uk-panel">
194 + <ul id="menu-menu" class="uk-nav uk-nav-default uk-nav-divider"><li id="menu-item-42" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-42"><a href="https://groupeimmobilierbrochu.com/">Accueil</a></li>
195 +<li id="menu-item-43" class="menu-item menu-item-type-post_type_archive menu-item-object-project current-menu-item menu-item-43"><a href="https://groupeimmobilierbrochu.com/projets/" aria-current="page">Projets</a></li>
196 +<li id="menu-item-49" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="https://groupeimmobilierbrochu.com/a-propos/">À propos</a></li>
197 +<li id="menu-item-48" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-48"><a href="https://groupeimmobilierbrochu.com/contact/">Contact</a></li>
198 +</ul> <div class="uk-navbar-item uk-margin">
199 + <a href="https://groupeimmobilierbrochu.com/contact/" class="uk-button uk-button-primary uk-button-">Planifiez une visite</a>
200 + </div>
201 + <div class="uk-grid-small uk-child-width-auto uk-flex-middle uk-flex-center uk-margin" uk-grid>
202 + <div><a href="tel:4188326123option1" class="phone uk-text-emphasis">+ 418 832-6123 option 1</a></div>,
203 + <div>
204 + <ul class="uk-iconnav">
205 + <li><a href="https://www.linkedin.com/company/groupe-immobilier-brochu/" class="social" uk-icon="icon: linkedin; ratio:0.85" target="_blank"></a></li>
206 + <li><a href="https://www.facebook.com/groupeimmobilierbrochu" class="social" uk-icon="icon: facebook; ratio:0.85" target="_blank"></a></li>
207 +
208 + </ul>
209 + </div>
210 + </div>
211 + <div class="project-list">
212 + <div class="">
213 + <div class="uk-grid uk-grid-small uk-text-center uk-text-small" uk-grid>
214 +
215 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis secteur<br/>Saint-Romuald / Le Pilier</a></div>
216 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis secteur<br />
217 +Fort numéro 1</a></div>
218 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Lévis secteur<br />
219 +Centre-ville</a></div>
220 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis secteur<br />
221 +Charny / Pionniers</a></div>
222 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Lévis secteur <br />
223 +Charny / Aquaréna</a></div>
224 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Lévis secteur <br />
225 +Saint-Romuald</a></div>
226 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-<br />
227 +de-Lauzon</a></div>
228 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Lévis secteur <br />
229 +Saint-Nicolas</a></div>
230 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Québec secteur <br />
231 +Les Saules</a></div>
232 +
233 + </div>
234 + </div>
235 + </div>
236 + <p class="uk-text-meta uk-text-center">
237 + © 2022-2026 Groupe immobilier Brochu inc. Tous droits réservés. RBQ : 5697-8943-01
238 +
239 + </p>
240 + </div>
241 + </div>
242 +
243 + </div>
244 + </div>
245 +
246 + </div>
247 + </div>
248 +
249 + </div>
250 + <div class="tm-header uk-visible@l tm-header-overlay" uk-header>
251 + <div class="project-list uk-background-primary uk-padding-small uk-light">
252 + <div class="uk-container uk-container-large">
253 + <div class="uk-flex uk-flex-middle uk-flex-right">
254 + <div class="uk-h6 uk-margin-remove">Nos projets :</div>
255 + <ul class="uk-subnav uk-subnav-divider uk-text-center uk-margin-remove">
256 + <li><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis secteur<br/>Saint-Romuald / Le Pilier</a></li>
257 + <li><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis secteur<br />
258 +Fort numéro 1</a></li>
259 + <li><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Lévis secteur<br />
260 +Centre-ville</a></li>
261 + <li><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis secteur<br />
262 +Charny / Pionniers</a></li>
263 + <li><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Lévis secteur <br />
264 +Charny / Aquaréna</a></li>
265 + <li><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Lévis secteur <br />
266 +Saint-Romuald</a></li>
267 + <li><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-<br />
268 +de-Lauzon</a></li>
269 + <li><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Lévis secteur <br />
270 +Saint-Nicolas</a></li>
271 + <li><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Québec secteur <br />
272 +Les Saules</a></li>
273 + </ul>
274 + </div>
275 + </div>
276 + </div>
277 +
278 + <div uk-sticky media="@l" show-on-up="true" animation="uk-animation-slide-top" cls-inactive="" cls-active="" sel-target=".uk-navbar-container">
279 + <div class="uk-navbar-container ">
280 +
281 + <div class="uk-container uk-container-large">
282 + <nav class="uk-navbar uk-flex-middle uk-margin-small-top uk-margin-small-bottom" uk-navbar>
283 + <div class="uk-navbar-left">
284 +
285 + <div class="logo-default">
286 + <a href="https://groupeimmobilierbrochu.com/" class="custom-logo-link" rel="home"><img width="765" height="396" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp" class="custom-logo" alt="Groupe Immobilier Brochu" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp 765w, https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg-300x155.webp 300w" sizes="(max-width: 765px) 100vw, 765px" /></a> </div>
287 +
288 + </div>
289 + <div class="uk-navbar-right">
290 + <div>
291 + <!-- <div class="project-list">
292 +
293 + <ul class="uk-subnav uk-subnav-divider uk-flex uk-flex-bottom uk-flex-right uk-margin-small-bottom uk-text-center">
294 + <li><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis secteur<br/>Saint-Romuald / Le Pilier</a></li>
295 + <li><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis secteur<br />
296 +Fort numéro 1</a></li>
297 + <li><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Lévis secteur<br />
298 +Centre-ville</a></li>
299 + <li><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis secteur<br />
300 +Charny / Pionniers</a></li>
301 + <li><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Lévis secteur <br />
302 +Charny / Aquaréna</a></li>
303 + <li><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Lévis secteur <br />
304 +Saint-Romuald</a></li>
305 + <li><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-<br />
306 +de-Lauzon</a></li>
307 + <li><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Lévis secteur <br />
308 +Saint-Nicolas</a></li>
309 + <li><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Québec secteur <br />
310 +Les Saules</a></li>
311 + </ul>
312 +
313 + </div> -->
314 +
315 + <div class="uk-flex uk-flex-middle uk-flex-right">
316 + <ul id="menu-menu-1" class="uk-navbar-nav"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-42"><a href="https://groupeimmobilierbrochu.com/">Accueil</a></li>
317 +<li class="menu-item menu-item-type-post_type_archive menu-item-object-project current-menu-item menu-item-43"><a href="https://groupeimmobilierbrochu.com/projets/" aria-current="page">Projets</a></li>
318 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="https://groupeimmobilierbrochu.com/a-propos/">À propos</a></li>
319 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-48"><a href="https://groupeimmobilierbrochu.com/contact/">Contact</a></li>
320 +</ul>
321 + <a href="https://www.facebook.com/groupeimmobilierbrochu" class="uk-margin-small-right" uk-icon="icon: facebook" target="_blank"></a>
322 + <a href="https://groupeimmobilierbrochu.com/contact/" class="uk-button uk-button-primary uk-button-">Planifiez une visite</a>
323 + </div>
324 +
325 +
326 +
327 + </div>
328 + </div>
329 +
330 + </nav>
331 +
332 + <!-- </div> -->
333 +
334 + </div>
335 +
336 + </div>
337 +
338 +
339 +
340 + </div>
341 + <!-- <div class="uk-sticky-placeholder" style="height: 90px; margin: 0px;" hidden=""></div> -->
342 + <!-- <div class="uk-sticky-placeholder" style="height: 81px; margin: 0px;"></div> -->
343 +
344 + </div>
345 +<main id="primary" class="site-main">
346 + <div class="uk-section">
347 +
348 +
349 + <div class="uk-container uk-container-large uk-container-expand-right">
350 + <div uk-grid>
351 +
352 +
353 + <div class="uk-width-1-3@l uk-width-large@xl">
354 + <h1 class="tm-heading uk-margin-top">
355 + Nos projets immobiliers </h1>
356 + <p>Notre parc locatif est présentement en développement dans le centre-ville de Lévis. <br />
357 +<br />
358 +Comme toujours, le positionnement géographique de nos immeubles témoigne de notre vision à long terme. Le choix judicieux de ces emplacements stratégiques nous permet de localiser ceux-ci dans des secteurs névralgiques bénéficiant de tous les services de proximité</p>
359 +
360 + </div>
361 + <div class="uk-width-expand@m">
362 + <div uk-grid>
363 +
364 +
365 +
366 +
367 +
368 +
369 +<div class="uk-width-1-2@m project">
370 + <div class="uk-panel uk-margin-remove-first-child uk-inline">
371 + <a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">
372 + <div class="uk-inline-clip uk-transition-toggle">
373 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2025/10/Enscape_2023-10-24-14-20-55_Scene-5-png-1380x920.avif" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </div>
374 + </a>
375 +
376 +
377 + <div class="label-container">
378 + <span class="uk-label disp">Libre novembre 2026</span>
379 + </div>
380 + <div class="uk-margin-top uk-flex uk-flex-middle" uk-grid>
381 + <div class="uk-width-expand">
382 + <div class="el-meta uk-h6 uk-text-primary uk-link-reset uk-margin-remove-bottom">
383 + <a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis</a>
384 + </div>
385 + <h3 class="el-title uk-h3 uk-margin-remove-top uk-margin-remove-bottom">
386 + <a href="https://groupeimmobilierbrochu.com/projets/le-pilier/" class="uk-link-reset">Le Pilier &#8211; Finaliste du prix Nobilis 2026</a>
387 + </h3>
388 + </div>
389 +
390 + </div>
391 + <p class="uk-margin-remove uk-text-small uk-text-emphasis">Très récent : novembre 2026</p>
392 +
393 + </div>
394 +</div>
395 +
396 +
397 +
398 +<div class="uk-width-1-2@m project">
399 + <div class="uk-panel uk-margin-remove-first-child uk-inline">
400 + <a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">
401 + <div class="uk-inline-clip uk-transition-toggle">
402 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/lasentinellelevis-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </div>
403 + </a>
404 +
405 +
406 + <div class="uk-margin-top uk-flex uk-flex-middle" uk-grid>
407 + <div class="uk-width-expand">
408 + <div class="el-meta uk-h6 uk-text-primary uk-link-reset uk-margin-remove-bottom">
409 + <a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis</a>
410 + </div>
411 + <h3 class="el-title uk-h3 uk-margin-remove-top uk-margin-remove-bottom">
412 + <a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/" class="uk-link-reset">La Sentinelle</a>
413 + </h3>
414 + </div>
415 +
416 + </div>
417 + <div class="">
418 + <div class=" uk-text-small uk-text-bold uk-text-emphasis">
419 + 3½, 4½, 5½ neufs ou récents disponibles, garage ascenseur et climatiseur </div>
420 + </div>
421 + <p class="uk-margin-remove uk-text-small uk-text-emphasis">Disponible dès maintenant ou automne 2026</p>
422 +
423 + </div>
424 +</div>
425 +
426 +
427 +
428 +<div class="uk-width-1-2@m project">
429 + <div class="uk-panel uk-margin-remove-first-child uk-inline">
430 + <a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">
431 + <div class="uk-inline-clip uk-transition-toggle">
432 + <img width="1250" height="835" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/phase1_soir_02.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/phase1_soir_02.webp 1250w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/phase1_soir_02-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/phase1_soir_02-1024x684.webp 1024w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/phase1_soir_02-768x513.webp 768w" sizes="(max-width: 1250px) 100vw, 1250px" /> </div>
433 + </a>
434 +
435 +
436 + <div class="label-container">
437 + <span class="uk-label disp">Unités récentes disponibles</span>
438 + </div>
439 + <div class="uk-margin-top uk-flex uk-flex-middle" uk-grid>
440 + <div class="uk-width-expand">
441 + <div class="el-meta uk-h6 uk-text-primary uk-link-reset uk-margin-remove-bottom">
442 + <a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Lévis</a>
443 + </div>
444 + <h3 class="el-title uk-h3 uk-margin-remove-top uk-margin-remove-bottom">
445 + <a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/" class="uk-link-reset">Promenade des Forts</a>
446 + </h3>
447 + </div>
448 +
449 + </div>
450 + <div class="">
451 + <div class=" uk-text-small uk-text-bold uk-text-emphasis">
452 + 4½ récents disponibles, garage ascenseur et climatiseur </div>
453 + </div>
454 + <p class="uk-margin-remove uk-text-small uk-text-emphasis">Disponible dès maintenant ou automne 2026</p>
455 +
456 + </div>
457 +</div>
458 +
459 +
460 +
461 +<div class="uk-width-1-2@m project">
462 + <div class="uk-panel uk-margin-remove-first-child uk-inline">
463 + <a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">
464 + <div class="uk-inline-clip uk-transition-toggle">
465 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/1-Ext-21-dec-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" loading="lazy" /> </div>
466 + </a>
467 +
468 +
469 + <div class="label-container">
470 + <span class="uk-label disp">Unités très récentes disponibles</span>
471 + </div>
472 + <div class="uk-margin-top uk-flex uk-flex-middle" uk-grid>
473 + <div class="uk-width-expand">
474 + <div class="el-meta uk-h6 uk-text-primary uk-link-reset uk-margin-remove-bottom">
475 + <a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis </a>
476 + </div>
477 + <h3 class="el-title uk-h3 uk-margin-remove-top uk-margin-remove-bottom">
478 + <a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/" class="uk-link-reset">Boul. du Centre-Hospitalier</a>
479 + </h3>
480 + </div>
481 +
482 + </div>
483 + <div class="">
484 + <div class=" uk-text-small uk-text-bold uk-text-emphasis">
485 + Très récent, construction 2024 à 2026<br />
486 +4½ à partir de 1495 $ </div>
487 + </div>
488 + <p class="uk-margin-remove uk-text-small uk-text-emphasis">Disponible dès maintenant ou septembre 2026</p>
489 +
490 + </div>
491 +</div>
492 +
493 +
494 +
495 +<div class="uk-width-1-2@m project">
496 + <div class="uk-panel uk-margin-remove-first-child uk-inline">
497 + <a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">
498 + <div class="uk-inline-clip uk-transition-toggle">
499 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Charny-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" loading="lazy" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Charny-1380x920.webp 1380w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Charny-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Charny-1024x683.webp 1024w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Charny-768x512.webp 768w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Charny-1536x1024.webp 1536w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Charny-jpg.webp 1920w" sizes="auto, (max-width: 1380px) 100vw, 1380px" /> </div>
500 + </a>
501 +
502 +
503 + <div class="label-container">
504 + <span class="uk-label disp">Disponible octobre 2026</span>
505 + </div>
506 + <div class="uk-margin-top uk-flex uk-flex-middle" uk-grid>
507 + <div class="uk-width-expand">
508 + <div class="el-meta uk-h6 uk-text-primary uk-link-reset uk-margin-remove-bottom">
509 + <a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Charny</a>
510 + </div>
511 + <h3 class="el-title uk-h3 uk-margin-remove-top uk-margin-remove-bottom">
512 + <a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/" class="uk-link-reset">Habitat 2000</a>
513 + </h3>
514 + </div>
515 +
516 + </div>
517 + <div class="">
518 + <div class=" uk-text-small uk-text-bold uk-text-emphasis">
519 + 1195$ pour 4 1/2 </div>
520 + </div>
521 + <p class="uk-margin-remove uk-text-small uk-text-emphasis">Disponible octobre 2026</p>
522 +
523 + </div>
524 +</div>
525 +
526 +
527 +
528 +<div class="uk-width-1-2@m project">
529 + <div class="uk-panel uk-margin-remove-first-child uk-inline">
530 + <a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">
531 + <div class="uk-inline-clip uk-transition-toggle">
532 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/St-Romuald-4-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" loading="lazy" /> </div>
533 + </a>
534 +
535 +
536 + <div class="label-container">
537 + <span class="uk-label disp">Disponible octobre 2026</span>
538 + </div>
539 + <div class="uk-margin-top uk-flex uk-flex-middle" uk-grid>
540 + <div class="uk-width-expand">
541 + <div class="el-meta uk-h6 uk-text-primary uk-link-reset uk-margin-remove-bottom">
542 + <a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Saint-Romuald</a>
543 + </div>
544 + <h3 class="el-title uk-h3 uk-margin-remove-top uk-margin-remove-bottom">
545 + <a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/" class="uk-link-reset">Seigneurie des Ponts</a>
546 + </h3>
547 + </div>
548 +
549 + </div>
550 + <div class="">
551 + <div class=" uk-text-small uk-text-bold uk-text-emphasis">
552 + Pour un 4 1/2 au 2e étage 1425$ </div>
553 + </div>
554 + <p class="uk-margin-remove uk-text-small uk-text-emphasis">Dès octobre 2026</p>
555 +
556 + </div>
557 +</div>
558 +
559 +
560 +
561 +<div class="uk-width-1-2@m project">
562 + <div class="uk-panel uk-margin-remove-first-child uk-inline">
563 + <a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">
564 + <div class="uk-inline-clip uk-transition-toggle">
565 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SL-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" loading="lazy" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SL-1380x920.webp 1380w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SL-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SL-1024x682.webp 1024w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SL-768x512.webp 768w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SL-1536x1023.webp 1536w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SL-jpg.webp 1920w" sizes="auto, (max-width: 1380px) 100vw, 1380px" /> </div>
566 + </a>
567 +
568 +
569 + <div class="label-container">
570 + <span class="uk-label complete">Complet</span>
571 + </div>
572 + <div class="uk-margin-top uk-flex uk-flex-middle" uk-grid>
573 + <div class="uk-width-expand">
574 + <div class="el-meta uk-h6 uk-text-primary uk-link-reset uk-margin-remove-bottom">
575 + <a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-de-Lauzon</a>
576 + </div>
577 + <h3 class="el-title uk-h3 uk-margin-remove-top uk-margin-remove-bottom">
578 + <a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/" class="uk-link-reset">St-Lambert-de-Lauzon</a>
579 + </h3>
580 + </div>
581 +
582 + </div>
583 +
584 + </div>
585 +</div>
586 +
587 +
588 +
589 +<div class="uk-width-1-2@m project">
590 + <div class="uk-panel uk-margin-remove-first-child uk-inline">
591 + <a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">
592 + <div class="uk-inline-clip uk-transition-toggle">
593 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/St-Nicolas-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" loading="lazy" /> </div>
594 + </a>
595 +
596 +
597 + <div class="label-container">
598 + <span class="uk-label complete">Complet</span>
599 + </div>
600 + <div class="uk-margin-top uk-flex uk-flex-middle" uk-grid>
601 + <div class="uk-width-expand">
602 + <div class="el-meta uk-h6 uk-text-primary uk-link-reset uk-margin-remove-bottom">
603 + <a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Saint-Nicolas</a>
604 + </div>
605 + <h3 class="el-title uk-h3 uk-margin-remove-top uk-margin-remove-bottom">
606 + <a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/" class="uk-link-reset">Quartier Roc-Pointe</a>
607 + </h3>
608 + </div>
609 +
610 + </div>
611 +
612 + </div>
613 +</div>
614 +
615 +
616 +
617 +<div class="uk-width-1-2@m project">
618 + <div class="uk-panel uk-margin-remove-first-child uk-inline">
619 + <a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">
620 + <div class="uk-inline-clip uk-transition-toggle">
621 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Saules_2160_Masson-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" loading="lazy" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Saules_2160_Masson-1380x920.webp 1380w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Saules_2160_Masson-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Saules_2160_Masson-1024x683.webp 1024w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Saules_2160_Masson-768x512.webp 768w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Saules_2160_Masson-1536x1024.webp 1536w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Saules_2160_Masson-2048x1365.webp 2048w" sizes="auto, (max-width: 1380px) 100vw, 1380px" /> </div>
622 + </a>
623 +
624 +
625 + <div class="label-container">
626 + <span class="uk-label disp">Disponible dès maintenant</span>
627 + </div>
628 + <div class="uk-margin-top uk-flex uk-flex-middle" uk-grid>
629 + <div class="uk-width-expand">
630 + <div class="el-meta uk-h6 uk-text-primary uk-link-reset uk-margin-remove-bottom">
631 + <a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Les Saules</a>
632 + </div>
633 + <h3 class="el-title uk-h3 uk-margin-remove-top uk-margin-remove-bottom">
634 + <a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/" class="uk-link-reset">Les Immeubles Masson</a>
635 + </h3>
636 + </div>
637 +
638 + </div>
639 + <div class="">
640 + <div class=" uk-text-small uk-text-bold uk-text-emphasis">
641 + À partir de 1385$ pour 4 1/2 </div>
642 + </div>
643 + <p class="uk-margin-remove uk-text-small uk-text-emphasis">Disponible dès maintenant ou automne 2026</p>
644 +
645 + </div>
646 +</div> </div>
647 + </div>
648 + </div>
649 + </div>
650 + </div>
651 +</main><!-- #main -->
652 +
653 +
654 +<footer id="colophon" class="site-footer">
655 + <div class="uk-section uk-section-secondary uk-section-small uk-padding-remove-bottom">
656 + <div class="uk-container uk-container-large">
657 + <div class="uk-grid-large uk-margin-medium-bottom uk-text-center uk-text-left@m" uk-grid>
658 + <div class="uk-width-1-2@m uk-width-expand@l">
659 + <a href="">
660 + <img width="200" height="111" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/12/logo-brochu-blanc.png" class="attachment-full size-full" alt="" decoding="async" loading="lazy" /> </a>
661 + <div class="uk-margin uk-text-small">
662 + <a href="https://goo.gl/maps/NRyMwGtJZmP9zpwd8" class="uk-link-text uk-margin-remove-last-child" target="_blank">700, rue des Grands-Jardins<br />
663 +Lévis (Québec) G6W 0Y7</a>
664 + </div>
665 + </div>
666 + <div class="uk-width-1-2@m uk-width-1-5@l">
667 + <h4 class="uk-h5 uk-margin-remove">Menu</h4>
668 + <ul id="menu-menu-2" class="uk-list uk-margin-small uk-text-small"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-42"><a href="https://groupeimmobilierbrochu.com/">Accueil</a></li>
669 +<li class="menu-item menu-item-type-post_type_archive menu-item-object-project current-menu-item menu-item-43"><a href="https://groupeimmobilierbrochu.com/projets/" aria-current="page">Projets</a></li>
670 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="https://groupeimmobilierbrochu.com/a-propos/">À propos</a></li>
671 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-48"><a href="https://groupeimmobilierbrochu.com/contact/">Contact</a></li>
672 +</ul> </div>
673 + <div class="uk-width-1-2@m uk-width-1-5@l">
674 + <h4 class="uk-h5 uk-margin-remove">Projets</h4>
675 + <ul class="uk-list uk-margin-small uk-text-small">
676 + <li><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Le Pilier &#8211; Finaliste du prix Nobilis 2026</a></li>
677 + <li><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">La Sentinelle</a></li>
678 + <li><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Promenade des Forts</a></li>
679 + <li><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Boul. du Centre-Hospitalier</a></li>
680 + <li><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Habitat 2000</a></li>
681 + <li><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Seigneurie des Ponts</a></li>
682 + <li><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">St-Lambert-de-Lauzon</a></li>
683 + <li><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Quartier Roc-Pointe</a></li>
684 + <li><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Les Immeubles Masson</a></li>
685 + </ul>
686 + </div>
687 + <div class="uk-width-1-2@m uk-width-expand@l">
688 + <h4 class="uk-h5 uk-margin-remove">Communiquez avec nous</h4>
689 + <h5 class="uk-h6 uk-margin-small-top uk-margin-remove-bottom">Téléphone</h5>
690 + <div class="uk-text-small uk-margin-"><a href="tel:418 832-6123 option 1" class="uk-link-text uk-margin-remove-last-child">418 832-6123 option 1</a></div>
691 + <h4 class="uk-h6 uk-margin-small-top uk-margin-remove-bottom">Courriel</h4>
692 + <div class="uk-text-small uk-margin-"><a href="/cdn-cgi/l/email-protection#d9b5b6bab8adb0b6b799beabb6aca9bcb0b4b4b6bbb0b5b0bcabbbabb6bab1acf7bab6b4" class="uk-link-text uk-margin-remove-last-child"><span class="__cf_email__" data-cfemail="b7dbd8d4d6c3ded8d9f7d0c5d8c2c7d2dedadad8d5dedbded2c5d5c5d8d4dfc299d4d8da">[email&#160;protected]</span></a></div>
693 + <div class="uk-margin">
694 + <a href="https://www.facebook.com/groupeimmobilierbrochu" class="" uk-icon="icon: facebook" target="_blank"></a>
695 + <a href="https://www.linkedin.com/company/groupe-immobilier-brochu/" class="" uk-icon="icon: linkedin" target="_blank"></a>
696 + </div>
697 +
698 + </div>
699 +
700 + </div>
701 + </div>
702 +
703 + <div class="uk-container uk-container-xlarge">
704 + <hr />
705 + </div>
706 +
707 + <div class="uk-section uk-section-xsmall uk-section-secondary">
708 + <div class="uk-container uk-container-xlarge">
709 +
710 + <div class="site-info">
711 + <div class="uk-text-center uk-text-small">
712 + © 2022-2026 Groupe immobilier Brochu inc. Tous droits réservés. RBQ : 5697-8943-01
713 + </div>
714 + </div><!-- .site-info -->
715 + </div>
716 + </div>
717 + </div>
718 +</footer><!-- #colophon -->
719 +</div><!-- #page -->
720 +</div><!-- #page-container -->
721 +
722 +<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="speculationrules">
723 +{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/GIB-appartement/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
724 +</script>
725 +
726 +<!-- Consent Management powered by Complianz | GDPR/CCPA Cookie Consent https://wordpress.org/plugins/complianz-gdpr -->
727 +<div id="cmplz-cookiebanner-container"><div class="cmplz-cookiebanner cmplz-hidden banner-1 banner-a optin cmplz-bottom-right cmplz-categories-type-view-preferences" aria-modal="true" data-nosnippet="true" role="dialog" aria-live="polite" aria-labelledby="cmplz-header-1-optin" aria-describedby="cmplz-message-1-optin">
728 + <div class="cmplz-header">
729 + <div class="cmplz-logo"></div>
730 + <div class="cmplz-title" id="cmplz-header-1-optin">Gérer le consentement</div>
731 + <div class="cmplz-close" tabindex="0" role="button" aria-label="Fermez la boîte de dialogue">
732 + <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="times" class="svg-inline--fa fa-times fa-w-11" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path fill="currentColor" d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg>
733 + </div>
734 + </div>
735 +
736 + <div class="cmplz-divider cmplz-divider-header"></div>
737 + <div class="cmplz-body">
738 + <div class="cmplz-message" id="cmplz-message-1-optin">Pour offrir les meilleures expériences, nous utilisons des technologies telles que les témoins pour stocker et/ou accéder aux informations des appareils. Le fait de consentir à ces technologies nous permettra de traiter des données telles que le comportement de navigation ou les ID uniques sur ce site. Le fait de ne pas consentir ou de retirer son consentement peut avoir un effet négatif sur certaines caractéristiques et fonctions.</div>
739 + <!-- categories start -->
740 + <div class="cmplz-categories">
741 + <details class="cmplz-category cmplz-functional" >
742 + <summary>
743 + <span class="cmplz-category-header">
744 + <span class="cmplz-category-title">Fonctionnel</span>
745 + <span class='cmplz-always-active'>
746 + <span class="cmplz-banner-checkbox">
747 + <input type="checkbox"
748 + id="cmplz-functional-optin"
749 + data-category="cmplz_functional"
750 + class="cmplz-consent-checkbox cmplz-functional"
751 + size="40"
752 + value="1"/>
753 + <label class="cmplz-label" for="cmplz-functional-optin" tabindex="0"><span class="screen-reader-text">Fonctionnel</span></label>
754 + </span>
755 + Toujours activé </span>
756 + <span class="cmplz-icon cmplz-open">
757 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
758 + </span>
759 + </span>
760 + </summary>
761 + <div class="cmplz-description">
762 + <span class="cmplz-description-functional">Le stockage ou l’accès technique est strictement nécessaire dans la finalité d’intérêt légitime de permettre l’utilisation d’un service spécifique explicitement demandé par l’abonné ou l’utilisateur, ou dans le seul but d’effectuer la transmission d’une communication sur un réseau de communications électroniques.</span>
763 + </div>
764 + </details>
765 +
766 + <details class="cmplz-category cmplz-preferences" >
767 + <summary>
768 + <span class="cmplz-category-header">
769 + <span class="cmplz-category-title">Préférences</span>
770 + <span class="cmplz-banner-checkbox">
771 + <input type="checkbox"
772 + id="cmplz-preferences-optin"
773 + data-category="cmplz_preferences"
774 + class="cmplz-consent-checkbox cmplz-preferences"
775 + size="40"
776 + value="1"/>
777 + <label class="cmplz-label" for="cmplz-preferences-optin" tabindex="0"><span class="screen-reader-text">Préférences</span></label>
778 + </span>
779 + <span class="cmplz-icon cmplz-open">
780 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
781 + </span>
782 + </span>
783 + </summary>
784 + <div class="cmplz-description">
785 + <span class="cmplz-description-preferences">Le stockage ou l’accès technique est nécessaire dans la finalité d’intérêt légitime de stocker des préférences qui ne sont pas demandées par l’abonné ou l’utilisateur.</span>
786 + </div>
787 + </details>
788 +
789 + <details class="cmplz-category cmplz-statistics" >
790 + <summary>
791 + <span class="cmplz-category-header">
792 + <span class="cmplz-category-title">Statistiques</span>
793 + <span class="cmplz-banner-checkbox">
794 + <input type="checkbox"
795 + id="cmplz-statistics-optin"
796 + data-category="cmplz_statistics"
797 + class="cmplz-consent-checkbox cmplz-statistics"
798 + size="40"
799 + value="1"/>
800 + <label class="cmplz-label" for="cmplz-statistics-optin" tabindex="0"><span class="screen-reader-text">Statistiques</span></label>
801 + </span>
802 + <span class="cmplz-icon cmplz-open">
803 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
804 + </span>
805 + </span>
806 + </summary>
807 + <div class="cmplz-description">
808 + <span class="cmplz-description-statistics">Le stockage ou l’accès technique qui est utilisé exclusivement à des fins statistiques.</span>
809 + <span class="cmplz-description-statistics-anonymous">Le stockage ou l’accès technique qui est utilisé exclusivement dans des finalités statistiques anonymes. En l’absence d’une assignation à comparaître, d’une conformité volontaire de la part de votre fournisseur d’accès à internet ou d’enregistrements supplémentaires provenant d’une tierce partie, les informations stockées ou extraites à cette seule fin ne peuvent généralement pas être utilisées pour vous identifier.</span>
810 + </div>
811 + </details>
812 + <details class="cmplz-category cmplz-marketing" >
813 + <summary>
814 + <span class="cmplz-category-header">
815 + <span class="cmplz-category-title">Marketing</span>
816 + <span class="cmplz-banner-checkbox">
817 + <input type="checkbox"
818 + id="cmplz-marketing-optin"
819 + data-category="cmplz_marketing"
820 + class="cmplz-consent-checkbox cmplz-marketing"
821 + size="40"
822 + value="1"/>
823 + <label class="cmplz-label" for="cmplz-marketing-optin" tabindex="0"><span class="screen-reader-text">Marketing</span></label>
824 + </span>
825 + <span class="cmplz-icon cmplz-open">
826 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
827 + </span>
828 + </span>
829 + </summary>
830 + <div class="cmplz-description">
831 + <span class="cmplz-description-marketing">Le stockage ou l’accès technique est nécessaire pour créer des profils d’utilisateurs afin d’envoyer des publicités, ou pour suivre l’utilisateur sur un site web ou sur plusieurs sites web ayant des finalités marketing similaires.</span>
832 + </div>
833 + </details>
834 + </div><!-- categories end -->
835 + </div>
836 +
837 + <div class="cmplz-links cmplz-information">
838 + <a class="cmplz-link cmplz-manage-options cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Gérer les options</a>
839 + <a class="cmplz-link cmplz-manage-third-parties cookie-statement" href="#" data-relative_url="#cmplz-cookies-overview">Gérer les services</a>
840 + <a class="cmplz-link cmplz-manage-vendors tcf cookie-statement" href="#" data-relative_url="#cmplz-tcf-wrapper">Gérer {vendor_count} fournisseurs</a>
841 + <a class="cmplz-link cmplz-external cmplz-read-more-purposes tcf" target="_blank" rel="noopener noreferrer nofollow" href="https://cookiedatabase.org/tcf/purposes/">En savoir plus sur ces finalités</a>
842 + </div>
843 +
844 + <div class="cmplz-divider cmplz-footer"></div>
845 +
846 + <div class="cmplz-buttons">
847 + <button class="cmplz-btn cmplz-accept">Accepter</button>
848 + <button class="cmplz-btn cmplz-deny">Refuser</button>
849 + <button class="cmplz-btn cmplz-view-preferences">Voir les préférences</button>
850 + <button class="cmplz-btn cmplz-save-preferences">Enregistrer les préférences</button>
851 + <a class="cmplz-btn cmplz-manage-options tcf cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Voir les préférences</a>
852 + </div>
853 +
854 + <div class="cmplz-links cmplz-documents">
855 + <a class="cmplz-link cookie-statement" href="#" data-relative_url="">{title}</a>
856 + <a class="cmplz-link privacy-statement" href="#" data-relative_url="">{title}</a>
857 + <a class="cmplz-link impressum" href="#" data-relative_url="">{title}</a>
858 + </div>
859 +
860 +</div>
861 +</div>
862 + <div id="cmplz-manage-consent" data-nosnippet="true"><button class="cmplz-btn cmplz-hidden cmplz-manage-consent manage-consent-1">Gérer le consentement</button>
863 +
864 +</div><script id="appartements-brochu-uikit-js" src="https://groupeimmobilierbrochu.com/wp-content/themes/GIB-appartement/js/theme.min.js?ver=1.1.4"></script>
865 +<script id="appartements-brochu-custom-js" src="https://groupeimmobilierbrochu.com/wp-content/themes/GIB-appartement/js/customizer.js?ver=1.1.4"></script>
866 +<script type="text/plain" data-service="acf-custom-maps" data-category="marketing" id="appartements-brochu-map-js" data-cmplz-src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAp1W5ywuQprlSqthCHR2XLpQBTSyeSBpk&#038;callback=initMaa&#038;ver=1.1.4"></script>
867 +<script id="cmplz-cookiebanner-js-extra">
868 +var complianz = {"prefix":"cmplz_","user_banner_id":"1","set_cookies":[],"block_ajax_content":"","banner_version":"11","version":"7.0.5","store_consent":"","do_not_track_enabled":"1","consenttype":"optin","region":"ca","geoip":"","dismiss_timeout":"","disable_cookiebanner":"","soft_cookiewall":"","dismiss_on_scroll":"","cookie_expiry":"365","url":"https://groupeimmobilierbrochu.com/wp-json/complianz/v1/","locale":"lang=fr&locale=fr_CA","set_cookies_on_root":"","cookie_domain":"","current_policy_id":"34","cookie_path":"/","categories":{"statistics":"statistiques","marketing":"marketing"},"tcf_active":"","placeholdertext":"Cliquez pour accepter les t\u00e9moins {category} et activer ce contenu","css_file":"https://groupeimmobilierbrochu.com/wp-content/uploads/complianz/css/banner-{banner_id}-{type}.css?v=11","page_links":{"ca":{"cookie-statement":{"title":"Politique de confidentialit\u00e9","url":"https://groupeimmobilierbrochu.com/politique-de-confidentialite/"}}},"tm_categories":"","forceEnableStats":"","preview":"","clean_cookies":"","aria_label":"Cliquez pour accepter les t\u00e9moins {category} et activer ce contenu"};
869 +//# sourceURL=cmplz-cookiebanner-js-extra
870 +</script>
871 +<script defer id="cmplz-cookiebanner-js" src="https://groupeimmobilierbrochu.com/wp-content/plugins/complianz-gdpr/cookiebanner/js/complianz.min.js?ver=1715620671"></script>
872 +<script id="wp-emoji-settings" type="application/json">
873 +{"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://groupeimmobilierbrochu.com/wp-includes/js/wp-emoji-release.min.js?ver=7.0.3"}}
874 +</script>
875 +<script type="module">
876 +/*! This file is auto-generated */
877 +var e="script#wp-emoji-settings",t=document.querySelector(e);if(!(t instanceof HTMLScriptElement))throw new Error("Element missing: "+e);const r=JSON.parse(t.text),s=(window._wpemojiSettings=r,"wpEmojiSettingsSupports"),o=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(s,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const r=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===r[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,r){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!r(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,r){let a;const s=(a="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),o=(s.textBaseline="top",s.font="600 32px Arial",{});return e.forEach(e=>{o[e]=t(s,e,n,r)}),o}function a(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}r.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(s));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(o),u.toString(),c.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"});const a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=e=>{i(n=e.data),a.terminate(),t(n)})}catch(e){}i(n=f(o,u,c,p))}t(n)}).then(e=>{for(const n in e)r.supports[n]=e[n],r.supports.everything=r.supports.everything&&r.supports[n],"flag"!==n&&(r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&r.supports[n]);var t;r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&!r.supports.flag,r.supports.everything||((t=r.source||{}).concatemoji?a(t.concatemoji):t.wpemoji&&t.twemoji&&(a(t.twemoji),a(t.wpemoji)))});
878 +//# sourceURL=https://groupeimmobilierbrochu.com/wp-includes/js/wp-emoji-loader.min.js
879 +</script>
880 +
881 +
882 +</body>
883 +
884 +</html>
\ No newline at end of file
added tests/fixtures/brochu/38efe22528f489507749.html +837 −0
@@ -0,0 +1,837 @@
1 +<!doctype html>
2 +<html lang="fr-CA">
3 +
4 +<head>
5 + <meta charset="UTF-8">
6 + <meta name="viewport" content="width=device-width, initial-scale=1">
7 + <link rel="profile" href="https://gmpg.org/xfn/11">
8 + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
9 +
10 +<!-- Google Tag Manager for WordPress by gtm4wp.com -->
11 +<script data-cfasync="false" data-pagespeed-no-defer>
12 + var gtm4wp_datalayer_name = "dataLayer";
13 + var dataLayer = dataLayer || [];
14 +
15 + const gtm4wp_scrollerscript_debugmode = false;
16 + const gtm4wp_scrollerscript_callbacktime = 100;
17 + const gtm4wp_scrollerscript_readerlocation = 150;
18 + const gtm4wp_scrollerscript_contentelementid = "content";
19 + const gtm4wp_scrollerscript_scannertime = 60;
20 +</script>
21 +<!-- End Google Tag Manager for WordPress by gtm4wp.com -->
22 + <!-- This site is optimized with the Yoast SEO plugin v28.2 - https://yoast.com/product/yoast-seo-wordpress/ -->
23 + <title>Les Immeubles Masson - Groupe Immobilier Brochu</title>
24 + <link rel="canonical" href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/" />
25 + <meta property="og:locale" content="fr_CA" />
26 + <meta property="og:type" content="article" />
27 + <meta property="og:title" content="Les Immeubles Masson - Groupe Immobilier Brochu" />
28 + <meta property="og:url" content="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/" />
29 + <meta property="og:site_name" content="Groupe Immobilier Brochu" />
30 + <meta property="article:modified_time" content="2026-08-06T18:45:26+00:00" />
31 + <meta name="twitter:card" content="summary_large_image" />
32 + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/groupeimmobilierbrochu.com\/projets\/les-immeubles-masson\/","url":"https:\/\/groupeimmobilierbrochu.com\/projets\/les-immeubles-masson\/","name":"Les Immeubles Masson - Groupe Immobilier Brochu","isPartOf":{"@id":"https:\/\/groupeimmobilierbrochu.com\/#website"},"datePublished":"2022-11-26T18:58:29+00:00","dateModified":"2026-08-06T18:45:26+00:00","breadcrumb":{"@id":"https:\/\/groupeimmobilierbrochu.com\/projets\/les-immeubles-masson\/#breadcrumb"},"inLanguage":"fr-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/groupeimmobilierbrochu.com\/projets\/les-immeubles-masson\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/groupeimmobilierbrochu.com\/projets\/les-immeubles-masson\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/groupeimmobilierbrochu.com\/"},{"@type":"ListItem","position":2,"name":"Projets","item":"https:\/\/groupeimmobilierbrochu.com\/projets\/"},{"@type":"ListItem","position":3,"name":"Les Immeubles Masson"}]},{"@type":"WebSite","@id":"https:\/\/groupeimmobilierbrochu.com\/#website","url":"https:\/\/groupeimmobilierbrochu.com\/","name":"Groupe Immobilier Brochu","description":"Développeurs immobilier","publisher":{"@id":"https:\/\/groupeimmobilierbrochu.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/groupeimmobilierbrochu.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-CA"},{"@type":"Organization","@id":"https:\/\/groupeimmobilierbrochu.com\/#organization","name":"Groupe Immobilier Brochu","url":"https:\/\/groupeimmobilierbrochu.com\/","logo":{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/groupeimmobilierbrochu.com\/#\/schema\/logo\/image\/","url":"https:\/\/groupeimmobilierbrochu.com\/wp-content\/uploads\/2023\/11\/cropped-Logo-jpg.webp","contentUrl":"https:\/\/groupeimmobilierbrochu.com\/wp-content\/uploads\/2023\/11\/cropped-Logo-jpg.webp","width":765,"height":396,"caption":"Groupe Immobilier Brochu"},"image":{"@id":"https:\/\/groupeimmobilierbrochu.com\/#\/schema\/logo\/image\/"}}]}</script>
33 + <!-- / Yoast SEO plugin. -->
34 +
35 +
36 +<link rel='dns-prefetch' href='//maps.googleapis.com' />
37 +<link rel="alternate" type="application/rss+xml" title="Groupe Immobilier Brochu &raquo; Flux" href="https://groupeimmobilierbrochu.com/feed/" />
38 +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://groupeimmobilierbrochu.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fgroupeimmobilierbrochu.com%2Fprojets%2Fles-immeubles-masson%2F" />
39 +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://groupeimmobilierbrochu.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fgroupeimmobilierbrochu.com%2Fprojets%2Fles-immeubles-masson%2F&#038;format=xml" />
40 +<style id="wp-img-auto-sizes-contain-inline-css">
41 +img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
42 +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
43 +</style>
44 +<link rel='stylesheet' id='formidable-css' href='https://groupeimmobilierbrochu.com/wp-content/plugins/formidable/css/formidableforms.css?ver=7162051' media='all' />
45 +<style id="wp-emoji-styles-inline-css">
46 +
47 + img.wp-smiley, img.emoji {
48 + display: inline !important;
49 + border: none !important;
50 + box-shadow: none !important;
51 + height: 1em !important;
52 + width: 1em !important;
53 + margin: 0 0.07em !important;
54 + vertical-align: -0.1em !important;
55 + background: none !important;
56 + padding: 0 !important;
57 + }
58 +/*# sourceURL=wp-emoji-styles-inline-css */
59 +</style>
60 +<style id="wp-block-library-inline-css">
61 +:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
62 +
63 +/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */
64 +</style>
65 +<style id="classic-theme-styles-inline-css">
66 +/*! This file is auto-generated */
67 +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
68 +/*# sourceURL=/wp-includes/css/classic-themes.min.css */
69 +</style>
70 +
71 +<style id="global-styles-inline-css">
72 +:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
73 +/*# sourceURL=global-styles-inline-css */
74 +</style>
75 +
76 +<link rel='stylesheet' id='cmplz-general-css' href='https://groupeimmobilierbrochu.com/wp-content/plugins/complianz-gdpr/assets/css/cookieblocker.min.css?ver=1715620671' media='all' />
77 +<link rel='stylesheet' id='appartements-brochu-style-css' href='https://groupeimmobilierbrochu.com/wp-content/themes/GIB-appartement/css/theme.min.css?ver=1.1.1674306552' media='all' />
78 +<script id="gtm4wp-scroll-tracking-js" src="https://groupeimmobilierbrochu.com/wp-content/plugins/duracelltomi-google-tag-manager/dist/js/analytics-talk-content-tracking.js?ver=1.22.3"></script>
79 +<script id="jquery-core-js" src="https://groupeimmobilierbrochu.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script>
80 +<script id="jquery-migrate-js" src="https://groupeimmobilierbrochu.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script>
81 +<link rel="https://api.w.org/" href="https://groupeimmobilierbrochu.com/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://groupeimmobilierbrochu.com/xmlrpc.php?rsd" />
82 +<meta name="generator" content="WordPress 7.0.3" />
83 +<link rel='shortlink' href='https://groupeimmobilierbrochu.com/?p=30' />
84 +<meta name="generator" content="performance-lab 4.2.0; plugins: ">
85 +<script>document.documentElement.className += " js";</script>
86 + <style>.cmplz-hidden {
87 + display: none !important;
88 + }</style>
89 +<!-- Google Tag Manager for WordPress by gtm4wp.com -->
90 +<!-- GTM Container placement set to automatic -->
91 +<script data-cfasync="false" data-pagespeed-no-defer>
92 + var dataLayer_content = {"pagePostType":"project","pagePostType2":"single-project","pagePostAuthor":"gael.bouffard"};
93 + dataLayer.push( dataLayer_content );
94 +</script>
95 +<script data-cfasync="false" data-pagespeed-no-defer>
96 +(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
97 +new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
98 +j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
99 +'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
100 +})(window,document,'script','dataLayer','GTM-WRXBQMK3');
101 +</script>
102 +<!-- End Google Tag Manager for WordPress by gtm4wp.com -->
103 +
104 + <!-- <meta property="og:image" content="" /> -->
105 +
106 +
107 +
108 +
109 +<link rel="icon" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" sizes="32x32" />
110 +<link rel="icon" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" sizes="192x192" />
111 +<link rel="apple-touch-icon" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" />
112 +<meta name="msapplication-TileImage" content="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" />
113 +<style id="wp-custom-css">
114 +/* Fix chevauchement titre "Reconnaissances" sur ecrans intermediaires */
115 +@media (min-width: 960px) and (max-width: 1360px) {
116 + #news .uk-grid > .uk-width-1-4\@m,
117 + #news .uk-grid > .uk-width-expand\@m {
118 + width: 100% !important;
119 + max-width: 100% !important;
120 + }
121 +}
122 +
123 +/* Masquer la barre verte des projets quand elle deborderait sur deux lignes */
124 +@media (max-width: 1510px) {
125 + .project-list {
126 + display: none;
127 + }
128 +}
129 +
130 +/* Retarder le basculement vers le menu mobile */
131 +@media (min-width: 992px) {
132 + .tm-header-mobile.uk-hidden\@l {
133 + display: none !important;
134 + }
135 + .tm-header.uk-visible\@l {
136 + display: block !important;
137 + }
138 +}
139 +@media (max-width: 991px) {
140 + .tm-header.uk-visible\@l {
141 + display: none !important;
142 + }
143 + .tm-header-mobile.uk-hidden\@l {
144 + display: block !important;
145 + }
146 +}
147 +</style>
148 +</head>
149 +
150 +
151 +<body data-cmplz=1 class="wp-singular project-template-default single single-project postid-30 wp-custom-logo wp-theme-GIB-appartement no-sidebar">
152 +
153 +<!-- GTM Container placement set to automatic -->
154 +<!-- Google Tag Manager (noscript) -->
155 + <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WRXBQMK3" height="0" width="0" style="display:none;visibility:hidden" aria-hidden="true"></iframe></noscript>
156 +<!-- End Google Tag Manager (noscript) -->
157 + <div id="page-container" class="page-container uk-clearfix">
158 + <div id="page" class="tm-page uk-margin-auto">
159 + <!-- <div class="uk-background-primary uk-padding">
160 + fef
161 + </div> -->
162 + <div class="tm-header-mobile uk-hidden@l">
163 +
164 +
165 + <div uk-sticky="" show-on-up="" animation="uk-animation-slide-top" cls-active="uk-navbar-sticky" sel-target=".uk-navbar-container" class="uk-sticky">
166 +
167 + <div class="uk-navbar-container">
168 + <nav uk-navbar="container: .tm-header-mobile" class="uk-navbar">
169 + <div class="uk-navbar-center">
170 + <div class="uk-width-expand uk-margin-auto logo">
171 + <a href="https://groupeimmobilierbrochu.com/" class="custom-logo-link" rel="home"><img width="765" height="396" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp" class="custom-logo" alt="Groupe Immobilier Brochu" decoding="async" fetchpriority="high" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp 765w, https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg-300x155.webp 300w" sizes="(max-width: 765px) 100vw, 765px" /></a> </div>
172 + </div>
173 +
174 +
175 +
176 + <div class="uk-navbar-right">
177 + <a class="uk-navbar-toggle" href="#tm-mobile" uk-toggle="" aria-expanded="false">
178 + <div uk-navbar-toggle-icon="" class="uk-icon uk-navbar-toggle-icon"></div>
179 + </a>
180 + </div>
181 +
182 +
183 + </nav>
184 + </div>
185 +
186 +
187 + </div>
188 + <div class="uk-sticky-placeholder" style="height: 90px; margin: 0px;" hidden=""></div>
189 +
190 + <div id="tm-mobile" class="uk-modal-full uk-modal" uk-modal>
191 + <div class="uk-modal-dialog uk-modal-body uk-height-viewport">
192 + <button class="uk-modal-close-full uk-icon uk-close" type="button" uk-close=""></button>
193 + <div class="uk-margin-auto-vertical uk-width-1-1">
194 + <div class="uk-child-width-1-1 uk-grid uk-grid-stack" uk-grid>
195 + <div>
196 + <div class="uk-panel">
197 + <ul id="menu-menu" class="uk-nav uk-nav-default uk-nav-divider"><li id="menu-item-42" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-42"><a href="https://groupeimmobilierbrochu.com/">Accueil</a></li>
198 +<li id="menu-item-43" class="menu-item menu-item-type-post_type_archive menu-item-object-project menu-item-43 current-menu-item"><a href="https://groupeimmobilierbrochu.com/projets/">Projets</a></li>
199 +<li id="menu-item-49" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="https://groupeimmobilierbrochu.com/a-propos/">À propos</a></li>
200 +<li id="menu-item-48" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-48"><a href="https://groupeimmobilierbrochu.com/contact/">Contact</a></li>
201 +</ul> <div class="uk-navbar-item uk-margin">
202 + <a href="https://groupeimmobilierbrochu.com/contact/" class="uk-button uk-button-primary uk-button-">Planifiez une visite</a>
203 + </div>
204 + <div class="uk-grid-small uk-child-width-auto uk-flex-middle uk-flex-center uk-margin" uk-grid>
205 + <div><a href="tel:4188326123option1" class="phone uk-text-emphasis">+ 418 832-6123 option 1</a></div>,
206 + <div>
207 + <ul class="uk-iconnav">
208 + <li><a href="https://www.linkedin.com/company/groupe-immobilier-brochu/" class="social" uk-icon="icon: linkedin; ratio:0.85" target="_blank"></a></li>
209 + <li><a href="https://www.facebook.com/groupeimmobilierbrochu" class="social" uk-icon="icon: facebook; ratio:0.85" target="_blank"></a></li>
210 +
211 + </ul>
212 + </div>
213 + </div>
214 + <div class="project-list">
215 + <div class="">
216 + <div class="uk-grid uk-grid-small uk-text-center uk-text-small" uk-grid>
217 +
218 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis secteur<br/>Saint-Romuald / Le Pilier</a></div>
219 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis secteur<br />
220 +Fort numéro 1</a></div>
221 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Lévis secteur<br />
222 +Centre-ville</a></div>
223 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis secteur<br />
224 +Charny / Pionniers</a></div>
225 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Lévis secteur <br />
226 +Charny / Aquaréna</a></div>
227 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Lévis secteur <br />
228 +Saint-Romuald</a></div>
229 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-<br />
230 +de-Lauzon</a></div>
231 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Lévis secteur <br />
232 +Saint-Nicolas</a></div>
233 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Québec secteur <br />
234 +Les Saules</a></div>
235 +
236 + </div>
237 + </div>
238 + </div>
239 + <p class="uk-text-meta uk-text-center">
240 + © 2022-2026 Groupe immobilier Brochu inc. Tous droits réservés. RBQ : 5697-8943-01
241 +
242 + </p>
243 + </div>
244 + </div>
245 +
246 + </div>
247 + </div>
248 +
249 + </div>
250 + </div>
251 +
252 + </div>
253 + <div class="tm-header uk-visible@l tm-header-overlay" uk-header>
254 + <div class="project-list uk-background-primary uk-padding-small uk-light">
255 + <div class="uk-container uk-container-large">
256 + <div class="uk-flex uk-flex-middle uk-flex-right">
257 + <div class="uk-h6 uk-margin-remove">Nos projets :</div>
258 + <ul class="uk-subnav uk-subnav-divider uk-text-center uk-margin-remove">
259 + <li><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis secteur<br/>Saint-Romuald / Le Pilier</a></li>
260 + <li><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis secteur<br />
261 +Fort numéro 1</a></li>
262 + <li><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Lévis secteur<br />
263 +Centre-ville</a></li>
264 + <li><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis secteur<br />
265 +Charny / Pionniers</a></li>
266 + <li><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Lévis secteur <br />
267 +Charny / Aquaréna</a></li>
268 + <li><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Lévis secteur <br />
269 +Saint-Romuald</a></li>
270 + <li><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-<br />
271 +de-Lauzon</a></li>
272 + <li><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Lévis secteur <br />
273 +Saint-Nicolas</a></li>
274 + <li><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Québec secteur <br />
275 +Les Saules</a></li>
276 + </ul>
277 + </div>
278 + </div>
279 + </div>
280 +
281 + <div uk-sticky media="@l" show-on-up="true" animation="uk-animation-slide-top" cls-inactive="" cls-active="" sel-target=".uk-navbar-container">
282 + <div class="uk-navbar-container ">
283 +
284 + <div class="uk-container uk-container-large">
285 + <nav class="uk-navbar uk-flex-middle uk-margin-small-top uk-margin-small-bottom" uk-navbar>
286 + <div class="uk-navbar-left">
287 +
288 + <div class="logo-default">
289 + <a href="https://groupeimmobilierbrochu.com/" class="custom-logo-link" rel="home"><img width="765" height="396" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp" class="custom-logo" alt="Groupe Immobilier Brochu" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp 765w, https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg-300x155.webp 300w" sizes="(max-width: 765px) 100vw, 765px" /></a> </div>
290 +
291 + </div>
292 + <div class="uk-navbar-right">
293 + <div>
294 + <!-- <div class="project-list">
295 +
296 + <ul class="uk-subnav uk-subnav-divider uk-flex uk-flex-bottom uk-flex-right uk-margin-small-bottom uk-text-center">
297 + <li><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis secteur<br/>Saint-Romuald / Le Pilier</a></li>
298 + <li><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis secteur<br />
299 +Fort numéro 1</a></li>
300 + <li><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Lévis secteur<br />
301 +Centre-ville</a></li>
302 + <li><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis secteur<br />
303 +Charny / Pionniers</a></li>
304 + <li><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Lévis secteur <br />
305 +Charny / Aquaréna</a></li>
306 + <li><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Lévis secteur <br />
307 +Saint-Romuald</a></li>
308 + <li><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-<br />
309 +de-Lauzon</a></li>
310 + <li><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Lévis secteur <br />
311 +Saint-Nicolas</a></li>
312 + <li><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Québec secteur <br />
313 +Les Saules</a></li>
314 + </ul>
315 +
316 + </div> -->
317 +
318 + <div class="uk-flex uk-flex-middle uk-flex-right">
319 + <ul id="menu-menu-1" class="uk-navbar-nav"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-42"><a href="https://groupeimmobilierbrochu.com/">Accueil</a></li>
320 +<li class="menu-item menu-item-type-post_type_archive menu-item-object-project menu-item-43 current-menu-item"><a href="https://groupeimmobilierbrochu.com/projets/">Projets</a></li>
321 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="https://groupeimmobilierbrochu.com/a-propos/">À propos</a></li>
322 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-48"><a href="https://groupeimmobilierbrochu.com/contact/">Contact</a></li>
323 +</ul>
324 + <a href="https://www.facebook.com/groupeimmobilierbrochu" class="uk-margin-small-right" uk-icon="icon: facebook" target="_blank"></a>
325 + <a href="https://groupeimmobilierbrochu.com/contact/" class="uk-button uk-button-primary uk-button-">Planifiez une visite</a>
326 + </div>
327 +
328 +
329 +
330 + </div>
331 + </div>
332 +
333 + </nav>
334 +
335 + <!-- </div> -->
336 +
337 + </div>
338 +
339 + </div>
340 +
341 +
342 +
343 + </div>
344 + <!-- <div class="uk-sticky-placeholder" style="height: 90px; margin: 0px;" hidden=""></div> -->
345 + <!-- <div class="uk-sticky-placeholder" style="height: 81px; margin: 0px;"></div> -->
346 +
347 + </div>
348 +
349 +
350 +<main class="project">
351 +
352 + <div class="uk-section-default">
353 + <div class="uk-section-large uk-height-large uk-flex uk-flex-center uk-flex-middle uk-background-cover uk-inline" data-src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Saules_2160_Masson-jpg.webp" uk-img>
354 + <div class="uk-overlay-primary uk-position-cover"></div>
355 + <div class="uk-overlay uk-position-top uk-light">
356 + <div class="uk-container uk-container-large">
357 + <a href="https://groupeimmobilierbrochu.com/projets/" class="uk-text-small"><i class="fa-solid fa-chevron-left"></i> Voir tous les projets</a>
358 + </div>
359 + </div>
360 + <div class="uk-overlay uk-position-bottom">
361 + <div class="uk-container uk-container-large">
362 + <div class="">
363 + <div class="uk-margin-bottom">
364 + <span class="uk-label disp">Disponible dès maintenant</span>
365 + </div>
366 + <div class="uk-light">
367 + <div class="uk-h3 uk-margin-remove">
368 + Les Saules </div>
369 + <h1 class="uk-h1 uk-margin-remove">Les Immeubles Masson</h1>
370 + <div class="uk-margin-top">
371 + <i class="fa-solid fa-location-dot"></i>
372 + <a href="https://goo.gl/maps/Ev4j8aSogpf8rvnT9" target="_blank"> 2150 et 2160 boulevard Masson, Québec</a>
373 + - <a href="https://goo.gl/maps/n2b7zHroyV9h8NoC9" target="_blank"> 3770 boulevard Pierre-Lelièvre, Québec</a>
374 + </div>
375 +
376 + </div>
377 + </div>
378 + </div>
379 + </div>
380 + </div>
381 + </div>
382 +
383 + <div class="uk-section">
384 + <div class="uk-container uk-container-large">
385 + <div class="uk-grid-large uk-margin-bottom" uk-grid>
386 + <div class="uk-width-3-5@m">
387 + <h3>Parc immobilier de 31 logements</h3>
388 +<ul>
389 +<li>1 bloc de 10 logements (2016)</li>
390 +<li>1 bloc de 12 logements (2004)</li>
391 +<li>1 bloc de 9 logements (2008)</li>
392 +<li>Grandeur des logements : 4 ½</li>
393 +</ul>
394 +<hr />
395 +<h3>Quiétude et proximité d’accès</h3>
396 +<ul>
397 +<li>Grands appartements</li>
398 +<li>Stationnement inclus, possibilité d&rsquo;un 2e stationnement si disponible</li>
399 +<li>Espace de rangement dans le logement</li>
400 +<li>Couvre-plancher de céramique et bois flottant</li>
401 +<li>Bonne insonorisation</li>
402 +<li>Quartier bordé par le Parc linéaire de la Rivière Saint-Charles</li>
403 +<li>Facilité d&rsquo;accès aux boulevards métropolitains</li>
404 +<li>Proximité du terminus d&rsquo;autobus Les Saules, plusieurs parcours réguliers, express (vers le centre-ville de Québec et de Sainte-Foy) et métrobus (803 et 804), plus d&rsquo;informations au <a href="http://www.rtcquebec.ca/">www.rtcquebec.ca  </a></li>
405 +</ul>
406 +<p>&nbsp;</p>
407 +<p>* Les chiens ne sont pas permis dans nos propriétés</p>
408 +
409 + </div>
410 + <div class="uk-width-expand@m">
411 + <div class="uk-panel uk-background-muted uk-padding uk-text-center">
412 + <h3 class="uk-h3">Statut <span class="uk-label disp"> Disponible</span></h3>
413 + <div class="uk-alert-primary" uk-alert>
414 + <p class="uk-margin-remove uk-text-small uk-text-emphasis">Disponible dès maintenant ou automne 2026</p>
415 + </div>
416 + <div class="">
417 + <h3 class="uk-h5 uk-margin-small-bottom">À partir de 1385$ pour 4½</h3>
418 + <div class="uk-text-primary uk-text-bold">418-832-6123 option 1</div>
419 + <a href="/cdn-cgi/l/email-protection#0f63606c6e7b6660614f687d607a7f6a666262606d6663666a7d6d7d606c677a216c6062"><span class="__cf_email__" data-cfemail="88e4e7ebe9fce1e7e6c8effae7fdf8ede1e5e5e7eae1e4e1edfaeafae7ebe0fda6ebe7e5">[email&#160;protected]</span></a>
420 + </div>
421 + </div>
422 + <div class="uk-text-center uk-margin-top">
423 + <div>
424 + <a href="https://goo.gl/maps/Ev4j8aSogpf8rvnT9" target="_blank"><i class="fa-solid fa-location-dot"></i> 2150 et 2160 boulevard Masson, Québec</a>
425 + </div>
426 + <div>
427 + <a href="https://goo.gl/maps/n2b7zHroyV9h8NoC9" target="_blank"><i class="fa-solid fa-location-dot"></i> 3770 boulevard Pierre-Lelièvre, Québec</a>
428 + </div>
429 + </div>
430 + </div>
431 +
432 + </div>
433 + </div>
434 + </div>
435 + <div class="uk-section uk-section-large uk-padding-remove-top">
436 + <div uk-grid>
437 + <div class=" uk-margin-auto uk-text-center uk-margin-medium-bottom">
438 + <h2 class="uk-h2">Découvrez votre nouvel espace de vie</h2>
439 + </div>
440 + </div>
441 + <div class="uk-position-relative uk-visible-toggle uk-light" tabindex="-1" uk-slider="clsActivated: uk-transition-active; center: true">
442 + <ul class="uk-slider-items uk-grid" uk-lightbox="animation: fade">
443 + <li class="uk-width-4-5 uk-width-2-5@m">
444 + <div class="uk-panel">
445 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Bouton_Plan_Masson_IMG_2893-scaled.webp">
446 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Bouton_Plan_Masson_IMG_2893-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </a>
447 + </div>
448 + </li>
449 + <li class="uk-width-4-5 uk-width-2-5@m">
450 + <div class="uk-panel">
451 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Changer-ciel_Masson_1218180859_n.jpg">
452 + <img width="960" height="639" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Changer-ciel_Masson_1218180859_n.jpg" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Changer-ciel_Masson_1218180859_n.jpg 960w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Changer-ciel_Masson_1218180859_n-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Changer-ciel_Masson_1218180859_n-768x511.webp 768w" sizes="(max-width: 960px) 100vw, 960px" /> </a>
453 + </div>
454 + </li>
455 + <li class="uk-width-4-5 uk-width-2-5@m">
456 + <div class="uk-panel">
457 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Salon-Cuisine_Masson_IMG_2904-scaled.webp">
458 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Salon-Cuisine_Masson_IMG_2904-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </a>
459 + </div>
460 + </li>
461 + <li class="uk-width-4-5 uk-width-2-5@m">
462 + <div class="uk-panel">
463 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Changer-ciel_Pere-Lelievre_2098508598_n.jpg">
464 + <img width="960" height="639" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Changer-ciel_Pere-Lelievre_2098508598_n.jpg" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Changer-ciel_Pere-Lelievre_2098508598_n.jpg 960w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Changer-ciel_Pere-Lelievre_2098508598_n-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Changer-ciel_Pere-Lelievre_2098508598_n-768x511.webp 768w" sizes="(max-width: 960px) 100vw, 960px" /> </a>
465 + </div>
466 + </li>
467 + <li class="uk-width-4-5 uk-width-2-5@m">
468 + <div class="uk-panel">
469 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/DSC_0196-jpg.webp">
470 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/DSC_0196-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/DSC_0196-1380x920.webp 1380w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/DSC_0196-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/DSC_0196-1024x683.webp 1024w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/DSC_0196-768x512.webp 768w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/DSC_0196-1536x1024.webp 1536w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/DSC_0196-2048x1365.webp 2048w" sizes="(max-width: 1380px) 100vw, 1380px" /> </a>
471 + </div>
472 + </li>
473 + <li class="uk-width-4-5 uk-width-2-5@m">
474 + <div class="uk-panel">
475 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/0395_001-scaled.webp">
476 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/0395_001-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </a>
477 + </div>
478 + </li>
479 + <li class="uk-width-4-5 uk-width-2-5@m">
480 + <div class="uk-panel">
481 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/0396_001-scaled.webp">
482 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/0396_001-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </a>
483 + </div>
484 + </li>
485 + <li class="uk-width-4-5 uk-width-2-5@m">
486 + <div class="uk-panel">
487 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/0397_001-scaled.webp">
488 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/0397_001-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </a>
489 + </div>
490 + </li>
491 + <li class="uk-width-4-5 uk-width-2-5@m">
492 + <div class="uk-panel">
493 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/101-104-201-204-301-304-jpg.webp">
494 + <img width="960" height="640" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/101-104-201-204-301-304-jpg.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/101-104-201-204-301-304-jpg.webp 960w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/101-104-201-204-301-304-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/101-104-201-204-301-304-768x512.webp 768w" sizes="(max-width: 960px) 100vw, 960px" /> </a>
495 + </div>
496 + </li>
497 + <li class="uk-width-4-5 uk-width-2-5@m">
498 + <div class="uk-panel">
499 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/102-103-202-203-302-303-jpg.webp">
500 + <img width="960" height="640" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/102-103-202-203-302-303-jpg.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/102-103-202-203-302-303-jpg.webp 960w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/102-103-202-203-302-303-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/102-103-202-203-302-303-768x512.webp 768w" sizes="(max-width: 960px) 100vw, 960px" /> </a>
501 + </div>
502 + </li>
503 + <li class="uk-width-4-5 uk-width-2-5@m">
504 + <div class="uk-panel">
505 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/1462987_529100567181918_17495607_n-jpg.webp">
506 + <img width="960" height="640" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/1462987_529100567181918_17495607_n-jpg.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/1462987_529100567181918_17495607_n-jpg.webp 960w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/1462987_529100567181918_17495607_n-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/1462987_529100567181918_17495607_n-768x512.webp 768w" sizes="(max-width: 960px) 100vw, 960px" /> </a>
507 + </div>
508 + </li>
509 + <li class="uk-width-4-5 uk-width-2-5@m">
510 + <div class="uk-panel">
511 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/1453460_529100563848585_652161228_n-jpg.webp">
512 + <img width="960" height="640" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/1453460_529100563848585_652161228_n-jpg.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/1453460_529100563848585_652161228_n-jpg.webp 960w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/1453460_529100563848585_652161228_n-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/1453460_529100563848585_652161228_n-768x512.webp 768w" sizes="(max-width: 960px) 100vw, 960px" /> </a>
513 + </div>
514 + </li>
515 + </ul>
516 + <a class="uk-position-center-left uk-position-small uk-hidden-hover uk-slidenav-large" href="#" uk-slidenav-previous uk-slider-item="previous"></a>
517 + <a class="uk-position-center-right uk-position-small uk-hidden-hover uk-slidenav-large" href="#" uk-slidenav-next uk-slider-item="next"></a>
518 + </div>
519 + </div>
520 + <div class="uk-section-default">
521 + <div class="uk-position-relative">
522 +
523 + <div data-service="acf-custom-maps" data-category="marketing" data-placeholder-image="https://groupeimmobilierbrochu.com/wp-content/plugins/complianz-gdpr/assets/images/placeholders/google-maps-minimal-1280x920.jpg" class="cmplz-placeholder-element acf-map" data-zoom="16">
524 + <div class="marker" data-lat="46.808151" data-lng="-71.3181984"></div>
525 + </div>
526 + </div>
527 + </div>
528 +
529 + <div class="uk-section uk-section-large uk-section-muted">
530 + <div class="uk-container">
531 + <div uk-grid>
532 + <div class=" uk-margin-auto uk-text-center">
533 + <h3 class="uk-h2">Consultez nos autres projets</h3>
534 + </div>
535 + </div>
536 + <div uk-grid>
537 + <div class="uk-width-1-2@m project">
538 +
539 +
540 + <div class="uk-panel uk-margin-remove-first-child uk-inline">
541 + <a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">
542 + <div class="uk-inline-clip uk-transition-toggle">
543 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/St-Romuald-4-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </div>
544 + </a>
545 + <div class="label-container">
546 + <span class="uk-label disp">Disponible octobre 2026</span>
547 + </div>
548 + <div class="uk-margin-top uk-flex uk-flex-middle" uk-grid>
549 + <div class="uk-width-expand">
550 + <div class="el-meta uk-h6 uk-text-primary uk-link-reset uk-margin-remove-bottom">
551 + <a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Saint-Romuald</a>
552 + </div>
553 + <h3 class="el-title uk-h3 uk-margin-remove-top uk-margin-remove-bottom">
554 + <a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/" class="uk-link-reset">Seigneurie des Ponts</a>
555 + </h3>
556 + </div>
557 +
558 + </div>
559 +
560 + <div class="">
561 + <div class="uk-text-small uk-text-bold uk-text-emphasis">
562 + Pour un 4 1/2 au 2e étage 1425$ </div>
563 + </div>
564 + </div>
565 +
566 + </div>
567 + <div class="uk-width-1-2@s">
568 +
569 +
570 + <div class="uk-panel uk-margin-remove-first-child uk-inline">
571 + <a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">
572 + <div class="uk-inline-clip uk-transition-toggle">
573 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SL-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SL-1380x920.webp 1380w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SL-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SL-1024x682.webp 1024w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SL-768x512.webp 768w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SL-1536x1023.webp 1536w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SL-jpg.webp 1920w" sizes="(max-width: 1380px) 100vw, 1380px" /> </div>
574 + </a>
575 + <div class="label-container">
576 + <span class="uk-label complete">Complet</span>
577 + </div>
578 + <div class="uk-margin-top uk-flex uk-flex-middle" uk-grid>
579 + <div class="uk-width-expand">
580 + <div class="el-meta uk-h6 uk-text-primary uk-link-reset uk-margin-remove-bottom">
581 + <a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-de-Lauzon</a>
582 + </div>
583 + <h3 class="el-title uk-h3 uk-margin-remove-top uk-margin-remove-bottom">
584 + <a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/" class="uk-link-reset">St-Lambert-de-Lauzon</a>
585 + </h3>
586 + </div>
587 +
588 + </div>
589 +
590 + </div>
591 + </div>
592 + </div>
593 + </div>
594 + </div>
595 +
596 +
597 +
598 +
599 +
600 +
601 +</main><!-- #main -->
602 +
603 +
604 +
605 +
606 +
607 +<footer id="colophon" class="site-footer">
608 + <div class="uk-section uk-section-secondary uk-section-small uk-padding-remove-bottom">
609 + <div class="uk-container uk-container-large">
610 + <div class="uk-grid-large uk-margin-medium-bottom uk-text-center uk-text-left@m" uk-grid>
611 + <div class="uk-width-1-2@m uk-width-expand@l">
612 + <a href="">
613 + <img width="200" height="111" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/12/logo-brochu-blanc.png" class="attachment-full size-full" alt="" decoding="async" loading="lazy" /> </a>
614 + <div class="uk-margin uk-text-small">
615 + <a href="https://goo.gl/maps/NRyMwGtJZmP9zpwd8" class="uk-link-text uk-margin-remove-last-child" target="_blank">700, rue des Grands-Jardins<br />
616 +Lévis (Québec) G6W 0Y7</a>
617 + </div>
618 + </div>
619 + <div class="uk-width-1-2@m uk-width-1-5@l">
620 + <h4 class="uk-h5 uk-margin-remove">Menu</h4>
621 + <ul id="menu-menu-2" class="uk-list uk-margin-small uk-text-small"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-42"><a href="https://groupeimmobilierbrochu.com/">Accueil</a></li>
622 +<li class="menu-item menu-item-type-post_type_archive menu-item-object-project menu-item-43 current-menu-item"><a href="https://groupeimmobilierbrochu.com/projets/">Projets</a></li>
623 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="https://groupeimmobilierbrochu.com/a-propos/">À propos</a></li>
624 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-48"><a href="https://groupeimmobilierbrochu.com/contact/">Contact</a></li>
625 +</ul> </div>
626 + <div class="uk-width-1-2@m uk-width-1-5@l">
627 + <h4 class="uk-h5 uk-margin-remove">Projets</h4>
628 + <ul class="uk-list uk-margin-small uk-text-small">
629 + <li><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Le Pilier &#8211; Finaliste du prix Nobilis 2026</a></li>
630 + <li><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">La Sentinelle</a></li>
631 + <li><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Promenade des Forts</a></li>
632 + <li><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Boul. du Centre-Hospitalier</a></li>
633 + <li><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Habitat 2000</a></li>
634 + <li><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Seigneurie des Ponts</a></li>
635 + <li><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">St-Lambert-de-Lauzon</a></li>
636 + <li><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Quartier Roc-Pointe</a></li>
637 + <li><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Les Immeubles Masson</a></li>
638 + </ul>
639 + </div>
640 + <div class="uk-width-1-2@m uk-width-expand@l">
641 + <h4 class="uk-h5 uk-margin-remove">Communiquez avec nous</h4>
642 + <h5 class="uk-h6 uk-margin-small-top uk-margin-remove-bottom">Téléphone</h5>
643 + <div class="uk-text-small uk-margin-"><a href="tel:418 832-6123 option 1" class="uk-link-text uk-margin-remove-last-child">418 832-6123 option 1</a></div>
644 + <h4 class="uk-h6 uk-margin-small-top uk-margin-remove-bottom">Courriel</h4>
645 + <div class="uk-text-small uk-margin-"><a href="/cdn-cgi/l/email-protection#e28e8d8183968b8d8ca285908d9792878b8f8f8d808b8e8b879080908d818a97cc818d8f" class="uk-link-text uk-margin-remove-last-child"><span class="__cf_email__" data-cfemail="204c4f434154494f4e6047524f555045494d4d4f42494c49455242524f4348550e434f4d">[email&#160;protected]</span></a></div>
646 + <div class="uk-margin">
647 + <a href="https://www.facebook.com/groupeimmobilierbrochu" class="" uk-icon="icon: facebook" target="_blank"></a>
648 + <a href="https://www.linkedin.com/company/groupe-immobilier-brochu/" class="" uk-icon="icon: linkedin" target="_blank"></a>
649 + </div>
650 +
651 + </div>
652 +
653 + </div>
654 + </div>
655 +
656 + <div class="uk-container uk-container-xlarge">
657 + <hr />
658 + </div>
659 +
660 + <div class="uk-section uk-section-xsmall uk-section-secondary">
661 + <div class="uk-container uk-container-xlarge">
662 +
663 + <div class="site-info">
664 + <div class="uk-text-center uk-text-small">
665 + © 2022-2026 Groupe immobilier Brochu inc. Tous droits réservés. RBQ : 5697-8943-01
666 + </div>
667 + </div><!-- .site-info -->
668 + </div>
669 + </div>
670 + </div>
671 +</footer><!-- #colophon -->
672 +</div><!-- #page -->
673 +</div><!-- #page-container -->
674 +
675 +<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="speculationrules">
676 +{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/GIB-appartement/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
677 +</script>
678 +
679 +<!-- Consent Management powered by Complianz | GDPR/CCPA Cookie Consent https://wordpress.org/plugins/complianz-gdpr -->
680 +<div id="cmplz-cookiebanner-container"><div class="cmplz-cookiebanner cmplz-hidden banner-1 banner-a optin cmplz-bottom-right cmplz-categories-type-view-preferences" aria-modal="true" data-nosnippet="true" role="dialog" aria-live="polite" aria-labelledby="cmplz-header-1-optin" aria-describedby="cmplz-message-1-optin">
681 + <div class="cmplz-header">
682 + <div class="cmplz-logo"></div>
683 + <div class="cmplz-title" id="cmplz-header-1-optin">Gérer le consentement</div>
684 + <div class="cmplz-close" tabindex="0" role="button" aria-label="Fermez la boîte de dialogue">
685 + <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="times" class="svg-inline--fa fa-times fa-w-11" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path fill="currentColor" d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg>
686 + </div>
687 + </div>
688 +
689 + <div class="cmplz-divider cmplz-divider-header"></div>
690 + <div class="cmplz-body">
691 + <div class="cmplz-message" id="cmplz-message-1-optin">Pour offrir les meilleures expériences, nous utilisons des technologies telles que les témoins pour stocker et/ou accéder aux informations des appareils. Le fait de consentir à ces technologies nous permettra de traiter des données telles que le comportement de navigation ou les ID uniques sur ce site. Le fait de ne pas consentir ou de retirer son consentement peut avoir un effet négatif sur certaines caractéristiques et fonctions.</div>
692 + <!-- categories start -->
693 + <div class="cmplz-categories">
694 + <details class="cmplz-category cmplz-functional" >
695 + <summary>
696 + <span class="cmplz-category-header">
697 + <span class="cmplz-category-title">Fonctionnel</span>
698 + <span class='cmplz-always-active'>
699 + <span class="cmplz-banner-checkbox">
700 + <input type="checkbox"
701 + id="cmplz-functional-optin"
702 + data-category="cmplz_functional"
703 + class="cmplz-consent-checkbox cmplz-functional"
704 + size="40"
705 + value="1"/>
706 + <label class="cmplz-label" for="cmplz-functional-optin" tabindex="0"><span class="screen-reader-text">Fonctionnel</span></label>
707 + </span>
708 + Toujours activé </span>
709 + <span class="cmplz-icon cmplz-open">
710 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
711 + </span>
712 + </span>
713 + </summary>
714 + <div class="cmplz-description">
715 + <span class="cmplz-description-functional">Le stockage ou l’accès technique est strictement nécessaire dans la finalité d’intérêt légitime de permettre l’utilisation d’un service spécifique explicitement demandé par l’abonné ou l’utilisateur, ou dans le seul but d’effectuer la transmission d’une communication sur un réseau de communications électroniques.</span>
716 + </div>
717 + </details>
718 +
719 + <details class="cmplz-category cmplz-preferences" >
720 + <summary>
721 + <span class="cmplz-category-header">
722 + <span class="cmplz-category-title">Préférences</span>
723 + <span class="cmplz-banner-checkbox">
724 + <input type="checkbox"
725 + id="cmplz-preferences-optin"
726 + data-category="cmplz_preferences"
727 + class="cmplz-consent-checkbox cmplz-preferences"
728 + size="40"
729 + value="1"/>
730 + <label class="cmplz-label" for="cmplz-preferences-optin" tabindex="0"><span class="screen-reader-text">Préférences</span></label>
731 + </span>
732 + <span class="cmplz-icon cmplz-open">
733 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
734 + </span>
735 + </span>
736 + </summary>
737 + <div class="cmplz-description">
738 + <span class="cmplz-description-preferences">Le stockage ou l’accès technique est nécessaire dans la finalité d’intérêt légitime de stocker des préférences qui ne sont pas demandées par l’abonné ou l’utilisateur.</span>
739 + </div>
740 + </details>
741 +
742 + <details class="cmplz-category cmplz-statistics" >
743 + <summary>
744 + <span class="cmplz-category-header">
745 + <span class="cmplz-category-title">Statistiques</span>
746 + <span class="cmplz-banner-checkbox">
747 + <input type="checkbox"
748 + id="cmplz-statistics-optin"
749 + data-category="cmplz_statistics"
750 + class="cmplz-consent-checkbox cmplz-statistics"
751 + size="40"
752 + value="1"/>
753 + <label class="cmplz-label" for="cmplz-statistics-optin" tabindex="0"><span class="screen-reader-text">Statistiques</span></label>
754 + </span>
755 + <span class="cmplz-icon cmplz-open">
756 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
757 + </span>
758 + </span>
759 + </summary>
760 + <div class="cmplz-description">
761 + <span class="cmplz-description-statistics">Le stockage ou l’accès technique qui est utilisé exclusivement à des fins statistiques.</span>
762 + <span class="cmplz-description-statistics-anonymous">Le stockage ou l’accès technique qui est utilisé exclusivement dans des finalités statistiques anonymes. En l’absence d’une assignation à comparaître, d’une conformité volontaire de la part de votre fournisseur d’accès à internet ou d’enregistrements supplémentaires provenant d’une tierce partie, les informations stockées ou extraites à cette seule fin ne peuvent généralement pas être utilisées pour vous identifier.</span>
763 + </div>
764 + </details>
765 + <details class="cmplz-category cmplz-marketing" >
766 + <summary>
767 + <span class="cmplz-category-header">
768 + <span class="cmplz-category-title">Marketing</span>
769 + <span class="cmplz-banner-checkbox">
770 + <input type="checkbox"
771 + id="cmplz-marketing-optin"
772 + data-category="cmplz_marketing"
773 + class="cmplz-consent-checkbox cmplz-marketing"
774 + size="40"
775 + value="1"/>
776 + <label class="cmplz-label" for="cmplz-marketing-optin" tabindex="0"><span class="screen-reader-text">Marketing</span></label>
777 + </span>
778 + <span class="cmplz-icon cmplz-open">
779 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
780 + </span>
781 + </span>
782 + </summary>
783 + <div class="cmplz-description">
784 + <span class="cmplz-description-marketing">Le stockage ou l’accès technique est nécessaire pour créer des profils d’utilisateurs afin d’envoyer des publicités, ou pour suivre l’utilisateur sur un site web ou sur plusieurs sites web ayant des finalités marketing similaires.</span>
785 + </div>
786 + </details>
787 + </div><!-- categories end -->
788 + </div>
789 +
790 + <div class="cmplz-links cmplz-information">
791 + <a class="cmplz-link cmplz-manage-options cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Gérer les options</a>
792 + <a class="cmplz-link cmplz-manage-third-parties cookie-statement" href="#" data-relative_url="#cmplz-cookies-overview">Gérer les services</a>
793 + <a class="cmplz-link cmplz-manage-vendors tcf cookie-statement" href="#" data-relative_url="#cmplz-tcf-wrapper">Gérer {vendor_count} fournisseurs</a>
794 + <a class="cmplz-link cmplz-external cmplz-read-more-purposes tcf" target="_blank" rel="noopener noreferrer nofollow" href="https://cookiedatabase.org/tcf/purposes/">En savoir plus sur ces finalités</a>
795 + </div>
796 +
797 + <div class="cmplz-divider cmplz-footer"></div>
798 +
799 + <div class="cmplz-buttons">
800 + <button class="cmplz-btn cmplz-accept">Accepter</button>
801 + <button class="cmplz-btn cmplz-deny">Refuser</button>
802 + <button class="cmplz-btn cmplz-view-preferences">Voir les préférences</button>
803 + <button class="cmplz-btn cmplz-save-preferences">Enregistrer les préférences</button>
804 + <a class="cmplz-btn cmplz-manage-options tcf cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Voir les préférences</a>
805 + </div>
806 +
807 + <div class="cmplz-links cmplz-documents">
808 + <a class="cmplz-link cookie-statement" href="#" data-relative_url="">{title}</a>
809 + <a class="cmplz-link privacy-statement" href="#" data-relative_url="">{title}</a>
810 + <a class="cmplz-link impressum" href="#" data-relative_url="">{title}</a>
811 + </div>
812 +
813 +</div>
814 +</div>
815 + <div id="cmplz-manage-consent" data-nosnippet="true"><button class="cmplz-btn cmplz-hidden cmplz-manage-consent manage-consent-1">Gérer le consentement</button>
816 +
817 +</div><script id="appartements-brochu-uikit-js" src="https://groupeimmobilierbrochu.com/wp-content/themes/GIB-appartement/js/theme.min.js?ver=1.1.4"></script>
818 +<script id="appartements-brochu-custom-js" src="https://groupeimmobilierbrochu.com/wp-content/themes/GIB-appartement/js/customizer.js?ver=1.1.4"></script>
819 +<script type="text/plain" data-service="acf-custom-maps" data-category="marketing" id="appartements-brochu-map-js" data-cmplz-src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAp1W5ywuQprlSqthCHR2XLpQBTSyeSBpk&#038;callback=initMaa&#038;ver=1.1.4"></script>
820 +<script id="cmplz-cookiebanner-js-extra">
821 +var complianz = {"prefix":"cmplz_","user_banner_id":"1","set_cookies":[],"block_ajax_content":"","banner_version":"11","version":"7.0.5","store_consent":"","do_not_track_enabled":"1","consenttype":"optin","region":"ca","geoip":"","dismiss_timeout":"","disable_cookiebanner":"","soft_cookiewall":"","dismiss_on_scroll":"","cookie_expiry":"365","url":"https://groupeimmobilierbrochu.com/wp-json/complianz/v1/","locale":"lang=fr&locale=fr_CA","set_cookies_on_root":"","cookie_domain":"","current_policy_id":"34","cookie_path":"/","categories":{"statistics":"statistiques","marketing":"marketing"},"tcf_active":"","placeholdertext":"Cliquez pour accepter les t\u00e9moins {category} et activer ce contenu","css_file":"https://groupeimmobilierbrochu.com/wp-content/uploads/complianz/css/banner-{banner_id}-{type}.css?v=11","page_links":{"ca":{"cookie-statement":{"title":"Politique de confidentialit\u00e9","url":"https://groupeimmobilierbrochu.com/politique-de-confidentialite/"}}},"tm_categories":"","forceEnableStats":"","preview":"","clean_cookies":"","aria_label":"Cliquez pour accepter les t\u00e9moins {category} et activer ce contenu"};
822 +//# sourceURL=cmplz-cookiebanner-js-extra
823 +</script>
824 +<script defer id="cmplz-cookiebanner-js" src="https://groupeimmobilierbrochu.com/wp-content/plugins/complianz-gdpr/cookiebanner/js/complianz.min.js?ver=1715620671"></script>
825 +<script id="wp-emoji-settings" type="application/json">
826 +{"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://groupeimmobilierbrochu.com/wp-includes/js/wp-emoji-release.min.js?ver=7.0.3"}}
827 +</script>
828 +<script type="module">
829 +/*! This file is auto-generated */
830 +var e="script#wp-emoji-settings",t=document.querySelector(e);if(!(t instanceof HTMLScriptElement))throw new Error("Element missing: "+e);const r=JSON.parse(t.text),s=(window._wpemojiSettings=r,"wpEmojiSettingsSupports"),o=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(s,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const r=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===r[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,r){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!r(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,r){let a;const s=(a="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),o=(s.textBaseline="top",s.font="600 32px Arial",{});return e.forEach(e=>{o[e]=t(s,e,n,r)}),o}function a(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}r.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(s));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(o),u.toString(),c.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"});const a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=e=>{i(n=e.data),a.terminate(),t(n)})}catch(e){}i(n=f(o,u,c,p))}t(n)}).then(e=>{for(const n in e)r.supports[n]=e[n],r.supports.everything=r.supports.everything&&r.supports[n],"flag"!==n&&(r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&r.supports[n]);var t;r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&!r.supports.flag,r.supports.everything||((t=r.source||{}).concatemoji?a(t.concatemoji):t.wpemoji&&t.twemoji&&(a(t.twemoji),a(t.wpemoji)))});
831 +//# sourceURL=https://groupeimmobilierbrochu.com/wp-includes/js/wp-emoji-loader.min.js
832 +</script>
833 +
834 +
835 +</body>
836 +
837 +</html>
\ No newline at end of file
added tests/fixtures/brochu/3f509faeda245bde72ff.html +727 −0
@@ -0,0 +1,727 @@
1 +<!doctype html>
2 +<html lang="fr-CA">
3 +
4 +<head>
5 + <meta charset="UTF-8">
6 + <meta name="viewport" content="width=device-width, initial-scale=1">
7 + <link rel="profile" href="https://gmpg.org/xfn/11">
8 + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
9 +
10 +<!-- Google Tag Manager for WordPress by gtm4wp.com -->
11 +<script data-cfasync="false" data-pagespeed-no-defer>
12 + var gtm4wp_datalayer_name = "dataLayer";
13 + var dataLayer = dataLayer || [];
14 +
15 + const gtm4wp_scrollerscript_debugmode = false;
16 + const gtm4wp_scrollerscript_callbacktime = 100;
17 + const gtm4wp_scrollerscript_readerlocation = 150;
18 + const gtm4wp_scrollerscript_contentelementid = "content";
19 + const gtm4wp_scrollerscript_scannertime = 60;
20 +</script>
21 +<!-- End Google Tag Manager for WordPress by gtm4wp.com -->
22 + <!-- This site is optimized with the Yoast SEO plugin v28.2 - https://yoast.com/product/yoast-seo-wordpress/ -->
23 + <title>Le Pilier - Finaliste du prix Nobilis 2026 - Groupe Immobilier Brochu</title>
24 + <link rel="canonical" href="https://groupeimmobilierbrochu.com/projets/le-pilier/" />
25 + <meta property="og:locale" content="fr_CA" />
26 + <meta property="og:type" content="article" />
27 + <meta property="og:title" content="Le Pilier - Finaliste du prix Nobilis 2026 - Groupe Immobilier Brochu" />
28 + <meta property="og:url" content="https://groupeimmobilierbrochu.com/projets/le-pilier/" />
29 + <meta property="og:site_name" content="Groupe Immobilier Brochu" />
30 + <meta property="article:modified_time" content="2026-07-15T16:28:12+00:00" />
31 + <meta name="twitter:card" content="summary_large_image" />
32 + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/groupeimmobilierbrochu.com\/projets\/le-pilier\/","url":"https:\/\/groupeimmobilierbrochu.com\/projets\/le-pilier\/","name":"Le Pilier - Finaliste du prix Nobilis 2026 - Groupe Immobilier Brochu","isPartOf":{"@id":"https:\/\/groupeimmobilierbrochu.com\/#website"},"datePublished":"2025-10-29T14:54:47+00:00","dateModified":"2026-07-15T16:28:12+00:00","breadcrumb":{"@id":"https:\/\/groupeimmobilierbrochu.com\/projets\/le-pilier\/#breadcrumb"},"inLanguage":"fr-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/groupeimmobilierbrochu.com\/projets\/le-pilier\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/groupeimmobilierbrochu.com\/projets\/le-pilier\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/groupeimmobilierbrochu.com\/"},{"@type":"ListItem","position":2,"name":"Projets","item":"https:\/\/groupeimmobilierbrochu.com\/projets\/"},{"@type":"ListItem","position":3,"name":"Le Pilier &#8211; Finaliste du prix Nobilis 2026"}]},{"@type":"WebSite","@id":"https:\/\/groupeimmobilierbrochu.com\/#website","url":"https:\/\/groupeimmobilierbrochu.com\/","name":"Groupe Immobilier Brochu","description":"Développeurs immobilier","publisher":{"@id":"https:\/\/groupeimmobilierbrochu.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/groupeimmobilierbrochu.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-CA"},{"@type":"Organization","@id":"https:\/\/groupeimmobilierbrochu.com\/#organization","name":"Groupe Immobilier Brochu","url":"https:\/\/groupeimmobilierbrochu.com\/","logo":{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/groupeimmobilierbrochu.com\/#\/schema\/logo\/image\/","url":"https:\/\/groupeimmobilierbrochu.com\/wp-content\/uploads\/2023\/11\/cropped-Logo-jpg.webp","contentUrl":"https:\/\/groupeimmobilierbrochu.com\/wp-content\/uploads\/2023\/11\/cropped-Logo-jpg.webp","width":765,"height":396,"caption":"Groupe Immobilier Brochu"},"image":{"@id":"https:\/\/groupeimmobilierbrochu.com\/#\/schema\/logo\/image\/"}}]}</script>
33 + <!-- / Yoast SEO plugin. -->
34 +
35 +
36 +<link rel='dns-prefetch' href='//maps.googleapis.com' />
37 +<link rel="alternate" type="application/rss+xml" title="Groupe Immobilier Brochu &raquo; Flux" href="https://groupeimmobilierbrochu.com/feed/" />
38 +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://groupeimmobilierbrochu.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fgroupeimmobilierbrochu.com%2Fprojets%2Fle-pilier%2F" />
39 +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://groupeimmobilierbrochu.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fgroupeimmobilierbrochu.com%2Fprojets%2Fle-pilier%2F&#038;format=xml" />
40 +<style id="wp-img-auto-sizes-contain-inline-css">
41 +img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
42 +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
43 +</style>
44 +<link rel='stylesheet' id='formidable-css' href='https://groupeimmobilierbrochu.com/wp-content/plugins/formidable/css/formidableforms.css?ver=7162051' media='all' />
45 +<style id="wp-emoji-styles-inline-css">
46 +
47 + img.wp-smiley, img.emoji {
48 + display: inline !important;
49 + border: none !important;
50 + box-shadow: none !important;
51 + height: 1em !important;
52 + width: 1em !important;
53 + margin: 0 0.07em !important;
54 + vertical-align: -0.1em !important;
55 + background: none !important;
56 + padding: 0 !important;
57 + }
58 +/*# sourceURL=wp-emoji-styles-inline-css */
59 +</style>
60 +<style id="wp-block-library-inline-css">
61 +:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
62 +
63 +/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */
64 +</style>
65 +<style id="classic-theme-styles-inline-css">
66 +/*! This file is auto-generated */
67 +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
68 +/*# sourceURL=/wp-includes/css/classic-themes.min.css */
69 +</style>
70 +
71 +<style id="global-styles-inline-css">
72 +:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
73 +/*# sourceURL=global-styles-inline-css */
74 +</style>
75 +
76 +<link rel='stylesheet' id='cmplz-general-css' href='https://groupeimmobilierbrochu.com/wp-content/plugins/complianz-gdpr/assets/css/cookieblocker.min.css?ver=1715620671' media='all' />
77 +<link rel='stylesheet' id='appartements-brochu-style-css' href='https://groupeimmobilierbrochu.com/wp-content/themes/GIB-appartement/css/theme.min.css?ver=1.1.1674306552' media='all' />
78 +<script id="gtm4wp-scroll-tracking-js" src="https://groupeimmobilierbrochu.com/wp-content/plugins/duracelltomi-google-tag-manager/dist/js/analytics-talk-content-tracking.js?ver=1.22.3"></script>
79 +<script id="jquery-core-js" src="https://groupeimmobilierbrochu.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script>
80 +<script id="jquery-migrate-js" src="https://groupeimmobilierbrochu.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script>
81 +<link rel="https://api.w.org/" href="https://groupeimmobilierbrochu.com/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://groupeimmobilierbrochu.com/xmlrpc.php?rsd" />
82 +<meta name="generator" content="WordPress 7.0.3" />
83 +<link rel='shortlink' href='https://groupeimmobilierbrochu.com/?p=510' />
84 +<meta name="generator" content="performance-lab 4.2.0; plugins: ">
85 +<script>document.documentElement.className += " js";</script>
86 + <style>.cmplz-hidden {
87 + display: none !important;
88 + }</style>
89 +<!-- Google Tag Manager for WordPress by gtm4wp.com -->
90 +<!-- GTM Container placement set to automatic -->
91 +<script data-cfasync="false" data-pagespeed-no-defer>
92 + var dataLayer_content = {"pagePostType":"project","pagePostType2":"single-project","pagePostAuthor":"Philip Laflamme"};
93 + dataLayer.push( dataLayer_content );
94 +</script>
95 +<script data-cfasync="false" data-pagespeed-no-defer>
96 +(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
97 +new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
98 +j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
99 +'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
100 +})(window,document,'script','dataLayer','GTM-WRXBQMK3');
101 +</script>
102 +<!-- End Google Tag Manager for WordPress by gtm4wp.com -->
103 +
104 + <!-- <meta property="og:image" content="" /> -->
105 +
106 +
107 +
108 +
109 +<link rel="icon" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" sizes="32x32" />
110 +<link rel="icon" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" sizes="192x192" />
111 +<link rel="apple-touch-icon" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" />
112 +<meta name="msapplication-TileImage" content="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" />
113 +<style id="wp-custom-css">
114 +/* Fix chevauchement titre "Reconnaissances" sur ecrans intermediaires */
115 +@media (min-width: 960px) and (max-width: 1360px) {
116 + #news .uk-grid > .uk-width-1-4\@m,
117 + #news .uk-grid > .uk-width-expand\@m {
118 + width: 100% !important;
119 + max-width: 100% !important;
120 + }
121 +}
122 +
123 +/* Masquer la barre verte des projets quand elle deborderait sur deux lignes */
124 +@media (max-width: 1510px) {
125 + .project-list {
126 + display: none;
127 + }
128 +}
129 +
130 +/* Retarder le basculement vers le menu mobile */
131 +@media (min-width: 992px) {
132 + .tm-header-mobile.uk-hidden\@l {
133 + display: none !important;
134 + }
135 + .tm-header.uk-visible\@l {
136 + display: block !important;
137 + }
138 +}
139 +@media (max-width: 991px) {
140 + .tm-header.uk-visible\@l {
141 + display: none !important;
142 + }
143 + .tm-header-mobile.uk-hidden\@l {
144 + display: block !important;
145 + }
146 +}
147 +</style>
148 +</head>
149 +
150 +
151 +<body data-cmplz=1 class="wp-singular project-template-default single single-project postid-510 wp-custom-logo wp-theme-GIB-appartement no-sidebar">
152 +
153 +<!-- GTM Container placement set to automatic -->
154 +<!-- Google Tag Manager (noscript) -->
155 + <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WRXBQMK3" height="0" width="0" style="display:none;visibility:hidden" aria-hidden="true"></iframe></noscript>
156 +<!-- End Google Tag Manager (noscript) -->
157 + <div id="page-container" class="page-container uk-clearfix">
158 + <div id="page" class="tm-page uk-margin-auto">
159 + <!-- <div class="uk-background-primary uk-padding">
160 + fef
161 + </div> -->
162 + <div class="tm-header-mobile uk-hidden@l">
163 +
164 +
165 + <div uk-sticky="" show-on-up="" animation="uk-animation-slide-top" cls-active="uk-navbar-sticky" sel-target=".uk-navbar-container" class="uk-sticky">
166 +
167 + <div class="uk-navbar-container">
168 + <nav uk-navbar="container: .tm-header-mobile" class="uk-navbar">
169 + <div class="uk-navbar-center">
170 + <div class="uk-width-expand uk-margin-auto logo">
171 + <a href="https://groupeimmobilierbrochu.com/" class="custom-logo-link" rel="home"><img width="765" height="396" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp" class="custom-logo" alt="Groupe Immobilier Brochu" decoding="async" fetchpriority="high" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp 765w, https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg-300x155.webp 300w" sizes="(max-width: 765px) 100vw, 765px" /></a> </div>
172 + </div>
173 +
174 +
175 +
176 + <div class="uk-navbar-right">
177 + <a class="uk-navbar-toggle" href="#tm-mobile" uk-toggle="" aria-expanded="false">
178 + <div uk-navbar-toggle-icon="" class="uk-icon uk-navbar-toggle-icon"></div>
179 + </a>
180 + </div>
181 +
182 +
183 + </nav>
184 + </div>
185 +
186 +
187 + </div>
188 + <div class="uk-sticky-placeholder" style="height: 90px; margin: 0px;" hidden=""></div>
189 +
190 + <div id="tm-mobile" class="uk-modal-full uk-modal" uk-modal>
191 + <div class="uk-modal-dialog uk-modal-body uk-height-viewport">
192 + <button class="uk-modal-close-full uk-icon uk-close" type="button" uk-close=""></button>
193 + <div class="uk-margin-auto-vertical uk-width-1-1">
194 + <div class="uk-child-width-1-1 uk-grid uk-grid-stack" uk-grid>
195 + <div>
196 + <div class="uk-panel">
197 + <ul id="menu-menu" class="uk-nav uk-nav-default uk-nav-divider"><li id="menu-item-42" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-42"><a href="https://groupeimmobilierbrochu.com/">Accueil</a></li>
198 +<li id="menu-item-43" class="menu-item menu-item-type-post_type_archive menu-item-object-project menu-item-43 current-menu-item"><a href="https://groupeimmobilierbrochu.com/projets/">Projets</a></li>
199 +<li id="menu-item-49" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="https://groupeimmobilierbrochu.com/a-propos/">À propos</a></li>
200 +<li id="menu-item-48" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-48"><a href="https://groupeimmobilierbrochu.com/contact/">Contact</a></li>
201 +</ul> <div class="uk-navbar-item uk-margin">
202 + <a href="https://groupeimmobilierbrochu.com/contact/" class="uk-button uk-button-primary uk-button-">Planifiez une visite</a>
203 + </div>
204 + <div class="uk-grid-small uk-child-width-auto uk-flex-middle uk-flex-center uk-margin" uk-grid>
205 + <div><a href="tel:4188326123option1" class="phone uk-text-emphasis">+ 418 832-6123 option 1</a></div>,
206 + <div>
207 + <ul class="uk-iconnav">
208 + <li><a href="https://www.linkedin.com/company/groupe-immobilier-brochu/" class="social" uk-icon="icon: linkedin; ratio:0.85" target="_blank"></a></li>
209 + <li><a href="https://www.facebook.com/groupeimmobilierbrochu" class="social" uk-icon="icon: facebook; ratio:0.85" target="_blank"></a></li>
210 +
211 + </ul>
212 + </div>
213 + </div>
214 + <div class="project-list">
215 + <div class="">
216 + <div class="uk-grid uk-grid-small uk-text-center uk-text-small" uk-grid>
217 +
218 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis secteur<br/>Saint-Romuald / Le Pilier</a></div>
219 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis secteur<br />
220 +Fort numéro 1</a></div>
221 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Lévis secteur<br />
222 +Centre-ville</a></div>
223 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis secteur<br />
224 +Charny / Pionniers</a></div>
225 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Lévis secteur <br />
226 +Charny / Aquaréna</a></div>
227 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Lévis secteur <br />
228 +Saint-Romuald</a></div>
229 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-<br />
230 +de-Lauzon</a></div>
231 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Lévis secteur <br />
232 +Saint-Nicolas</a></div>
233 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Québec secteur <br />
234 +Les Saules</a></div>
235 +
236 + </div>
237 + </div>
238 + </div>
239 + <p class="uk-text-meta uk-text-center">
240 + © 2022-2026 Groupe immobilier Brochu inc. Tous droits réservés. RBQ : 5697-8943-01
241 +
242 + </p>
243 + </div>
244 + </div>
245 +
246 + </div>
247 + </div>
248 +
249 + </div>
250 + </div>
251 +
252 + </div>
253 + <div class="tm-header uk-visible@l tm-header-overlay" uk-header>
254 + <div class="project-list uk-background-primary uk-padding-small uk-light">
255 + <div class="uk-container uk-container-large">
256 + <div class="uk-flex uk-flex-middle uk-flex-right">
257 + <div class="uk-h6 uk-margin-remove">Nos projets :</div>
258 + <ul class="uk-subnav uk-subnav-divider uk-text-center uk-margin-remove">
259 + <li><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis secteur<br/>Saint-Romuald / Le Pilier</a></li>
260 + <li><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis secteur<br />
261 +Fort numéro 1</a></li>
262 + <li><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Lévis secteur<br />
263 +Centre-ville</a></li>
264 + <li><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis secteur<br />
265 +Charny / Pionniers</a></li>
266 + <li><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Lévis secteur <br />
267 +Charny / Aquaréna</a></li>
268 + <li><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Lévis secteur <br />
269 +Saint-Romuald</a></li>
270 + <li><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-<br />
271 +de-Lauzon</a></li>
272 + <li><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Lévis secteur <br />
273 +Saint-Nicolas</a></li>
274 + <li><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Québec secteur <br />
275 +Les Saules</a></li>
276 + </ul>
277 + </div>
278 + </div>
279 + </div>
280 +
281 + <div uk-sticky media="@l" show-on-up="true" animation="uk-animation-slide-top" cls-inactive="" cls-active="" sel-target=".uk-navbar-container">
282 + <div class="uk-navbar-container ">
283 +
284 + <div class="uk-container uk-container-large">
285 + <nav class="uk-navbar uk-flex-middle uk-margin-small-top uk-margin-small-bottom" uk-navbar>
286 + <div class="uk-navbar-left">
287 +
288 + <div class="logo-default">
289 + <a href="https://groupeimmobilierbrochu.com/" class="custom-logo-link" rel="home"><img width="765" height="396" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp" class="custom-logo" alt="Groupe Immobilier Brochu" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp 765w, https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg-300x155.webp 300w" sizes="(max-width: 765px) 100vw, 765px" /></a> </div>
290 +
291 + </div>
292 + <div class="uk-navbar-right">
293 + <div>
294 + <!-- <div class="project-list">
295 +
296 + <ul class="uk-subnav uk-subnav-divider uk-flex uk-flex-bottom uk-flex-right uk-margin-small-bottom uk-text-center">
297 + <li><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis secteur<br/>Saint-Romuald / Le Pilier</a></li>
298 + <li><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis secteur<br />
299 +Fort numéro 1</a></li>
300 + <li><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Lévis secteur<br />
301 +Centre-ville</a></li>
302 + <li><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis secteur<br />
303 +Charny / Pionniers</a></li>
304 + <li><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Lévis secteur <br />
305 +Charny / Aquaréna</a></li>
306 + <li><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Lévis secteur <br />
307 +Saint-Romuald</a></li>
308 + <li><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-<br />
309 +de-Lauzon</a></li>
310 + <li><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Lévis secteur <br />
311 +Saint-Nicolas</a></li>
312 + <li><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Québec secteur <br />
313 +Les Saules</a></li>
314 + </ul>
315 +
316 + </div> -->
317 +
318 + <div class="uk-flex uk-flex-middle uk-flex-right">
319 + <ul id="menu-menu-1" class="uk-navbar-nav"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-42"><a href="https://groupeimmobilierbrochu.com/">Accueil</a></li>
320 +<li class="menu-item menu-item-type-post_type_archive menu-item-object-project menu-item-43 current-menu-item"><a href="https://groupeimmobilierbrochu.com/projets/">Projets</a></li>
321 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="https://groupeimmobilierbrochu.com/a-propos/">À propos</a></li>
322 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-48"><a href="https://groupeimmobilierbrochu.com/contact/">Contact</a></li>
323 +</ul>
324 + <a href="https://www.facebook.com/groupeimmobilierbrochu" class="uk-margin-small-right" uk-icon="icon: facebook" target="_blank"></a>
325 + <a href="https://groupeimmobilierbrochu.com/contact/" class="uk-button uk-button-primary uk-button-">Planifiez une visite</a>
326 + </div>
327 +
328 +
329 +
330 + </div>
331 + </div>
332 +
333 + </nav>
334 +
335 + <!-- </div> -->
336 +
337 + </div>
338 +
339 + </div>
340 +
341 +
342 +
343 + </div>
344 + <!-- <div class="uk-sticky-placeholder" style="height: 90px; margin: 0px;" hidden=""></div> -->
345 + <!-- <div class="uk-sticky-placeholder" style="height: 81px; margin: 0px;"></div> -->
346 +
347 + </div>
348 +
349 +
350 +<main class="project">
351 +
352 + <div class="uk-section-default">
353 + <div class="uk-section-large uk-height-large uk-flex uk-flex-center uk-flex-middle uk-background-cover uk-inline" data-src="https://groupeimmobilierbrochu.com/wp-content/uploads/2025/10/Enscape_2023-10-24-14-20-55_Scene-5-png-scaled.avif" uk-img>
354 + <div class="uk-overlay-primary uk-position-cover"></div>
355 + <div class="uk-overlay uk-position-top uk-light">
356 + <div class="uk-container uk-container-large">
357 + <a href="https://groupeimmobilierbrochu.com/projets/" class="uk-text-small"><i class="fa-solid fa-chevron-left"></i> Voir tous les projets</a>
358 + </div>
359 + </div>
360 + <div class="uk-overlay uk-position-bottom">
361 + <div class="uk-container uk-container-large">
362 + <div class="">
363 + <div class="uk-margin-bottom">
364 + <span class="uk-label disp">Libre novembre 2026</span>
365 + </div>
366 + <div class="uk-light">
367 + <div class="uk-h3 uk-margin-remove">
368 + Lévis </div>
369 + <h1 class="uk-h1 uk-margin-remove">Le Pilier &#8211; Finaliste du prix Nobilis 2026</h1>
370 + <div class="uk-margin-top">
371 + <i class="fa-solid fa-location-dot"></i>
372 + <a href="https://maps.app.goo.gl/nbA7rUoMPCa8vpFJ7" target="_blank"> 1275 rue J.-B.-Demers Lévis (QC) G6W 0X9</a>
373 + </div>
374 +
375 + </div>
376 + </div>
377 + </div>
378 + </div>
379 + </div>
380 + </div>
381 +
382 + <div class="uk-section">
383 + <div class="uk-container uk-container-large">
384 + <div class="uk-grid-large uk-margin-bottom" uk-grid>
385 + <div class="uk-width-3-5@m">
386 + <a href="https://lepilierlevis.com/" target="_blank" class="uk-button uk-button-primary uk-button-large">Visitez le site du projet</a>
387 + <h2 class="uk-heading-small uk-scrollspy-inview ">Bâtissez votre style de vie sur des fondations solides</h2>
388 +<p>Profitez du confort d&rsquo;un condo neuf et moderne sans les tracas de la propriété. Un environnement calme et contemporain en plein coeur de la ville et à proximité des principaux axes routiers (132, 20, 73) et des ponts.</p>
389 +<p class="uk-margin-medium-bottom uk-scrollspy-inview ">Le Pilier est un espace de vie exceptionnel où chaque détail est pensé pour offrir confort, modernité et sécurité. Sans édifice voisin à l&rsquo;arrière et conçu pour répondre aux attentes les plus élevées, Le Pilier vous invite à découvrir un mode de vie raffiné, au cœur de Lévis.</p>
390 +<div class="uk-margin-medium-top uk-margin-bottom uk-width-xlarge uk-scrollspy-inview ">
391 +<p>Découvrez l&rsquo;alliance parfaite entre un cadre résidentiel paisible et un environnement dynamique. Profitez d&rsquo;installations modernes, d&rsquo;espaces verts soigneusement aménagés et d&rsquo;une communauté accueillante. Le Pilier est plus qu&rsquo;un simple lieu de résidence, c&rsquo;est un pilier de votre bien-être et de votre sérénité.</p>
392 +</div>
393 +
394 + </div>
395 + <div class="uk-width-expand@m">
396 + <div class="uk-panel uk-background-muted uk-padding uk-text-center">
397 + <h3 class="uk-h3">Statut <span class="uk-label disp"> Disponible</span></h3>
398 + <div class="uk-alert-primary" uk-alert>
399 + <p class="uk-margin-remove uk-text-small uk-text-emphasis">Très récent : novembre 2026</p>
400 + </div>
401 + <div class="">
402 + <h3 class="uk-h5 uk-margin-small-bottom">Unité 3 1/2 très récente disponible, visite sur rendez-vous</h3>
403 + <div class="uk-text-primary uk-text-bold">418-836-7666 </div>
404 + <a href="/cdn-cgi/l/email-protection#d6bfb8b0b996bab3a6bfbabfb3a4bab3a0bfa5f8b5b9bb"><span class="__cf_email__" data-cfemail="c3aaada5ac83afa6b3aaafaaa6b1afa6b5aab0eda0acae">[email&#160;protected]</span></a>
405 + </div>
406 + </div>
407 + <div class="uk-text-center uk-margin-top">
408 + <div>
409 + <a href="https://maps.app.goo.gl/nbA7rUoMPCa8vpFJ7" target="_blank"><i class="fa-solid fa-location-dot"></i> 1275 rue J.-B.-Demers Lévis (QC) G6W 0X9</a>
410 + </div>
411 + </div>
412 + </div>
413 +
414 + </div>
415 + </div>
416 + </div>
417 +
418 + <div class="uk-section uk-section-large uk-section-muted">
419 + <div class="uk-container">
420 + <div uk-grid>
421 + <div class=" uk-margin-auto uk-text-center">
422 + <h3 class="uk-h2">Consultez nos autres projets</h3>
423 + </div>
424 + </div>
425 + <div uk-grid>
426 + <div class="uk-width-1-2@m project">
427 +
428 +
429 + <div class="uk-panel uk-margin-remove-first-child uk-inline">
430 + <a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">
431 + <div class="uk-inline-clip uk-transition-toggle">
432 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/1-Ext-21-dec-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </div>
433 + </a>
434 + <div class="label-container">
435 + <span class="uk-label disp">Unités très récentes disponibles</span>
436 + </div>
437 + <div class="uk-margin-top uk-flex uk-flex-middle" uk-grid>
438 + <div class="uk-width-expand">
439 + <div class="el-meta uk-h6 uk-text-primary uk-link-reset uk-margin-remove-bottom">
440 + <a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis </a>
441 + </div>
442 + <h3 class="el-title uk-h3 uk-margin-remove-top uk-margin-remove-bottom">
443 + <a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/" class="uk-link-reset">Boul. du Centre-Hospitalier</a>
444 + </h3>
445 + </div>
446 +
447 + </div>
448 +
449 + <div class="">
450 + <div class="uk-text-small uk-text-bold uk-text-emphasis">
451 + Très récent, construction 2024 à 2026<br />
452 +4½ à partir de 1495 $ </div>
453 + </div>
454 + </div>
455 +
456 + </div>
457 + <div class="uk-width-1-2@s">
458 +
459 + <div class="uk-panel uk-margin-remove-first-child uk-inline">
460 + <a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">
461 + <div class="uk-inline-clip uk-transition-toggle">
462 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/lasentinellelevis-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </div>
463 + </a>
464 + <div class="uk-margin-top uk-flex uk-flex-middle" uk-grid>
465 + <div class="uk-width-expand">
466 + <div class="el-meta uk-h6 uk-text-primary uk-link-reset uk-margin-remove-bottom">
467 + <a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis</a>
468 + </div>
469 + <h3 class="el-title uk-h3 uk-margin-remove-top uk-margin-remove-bottom">
470 + <a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/" class="uk-link-reset">La Sentinelle</a>
471 + </h3>
472 + </div>
473 +
474 + </div>
475 + <div class="">
476 + <div class="uk-text-small uk-text-bold uk-text-emphasis">
477 + 3½, 4½, 5½ neufs ou récents disponibles, garage ascenseur et climatiseur </div>
478 + </div>
479 +
480 + </div>
481 + </div>
482 + </div>
483 + </div>
484 + </div>
485 +
486 +
487 +
488 +
489 +
490 +
491 +</main><!-- #main -->
492 +
493 +
494 +
495 +
496 +
497 +<footer id="colophon" class="site-footer">
498 + <div class="uk-section uk-section-secondary uk-section-small uk-padding-remove-bottom">
499 + <div class="uk-container uk-container-large">
500 + <div class="uk-grid-large uk-margin-medium-bottom uk-text-center uk-text-left@m" uk-grid>
501 + <div class="uk-width-1-2@m uk-width-expand@l">
502 + <a href="">
503 + <img width="200" height="111" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/12/logo-brochu-blanc.png" class="attachment-full size-full" alt="" decoding="async" loading="lazy" /> </a>
504 + <div class="uk-margin uk-text-small">
505 + <a href="https://goo.gl/maps/NRyMwGtJZmP9zpwd8" class="uk-link-text uk-margin-remove-last-child" target="_blank">700, rue des Grands-Jardins<br />
506 +Lévis (Québec) G6W 0Y7</a>
507 + </div>
508 + </div>
509 + <div class="uk-width-1-2@m uk-width-1-5@l">
510 + <h4 class="uk-h5 uk-margin-remove">Menu</h4>
511 + <ul id="menu-menu-2" class="uk-list uk-margin-small uk-text-small"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-42"><a href="https://groupeimmobilierbrochu.com/">Accueil</a></li>
512 +<li class="menu-item menu-item-type-post_type_archive menu-item-object-project menu-item-43 current-menu-item"><a href="https://groupeimmobilierbrochu.com/projets/">Projets</a></li>
513 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="https://groupeimmobilierbrochu.com/a-propos/">À propos</a></li>
514 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-48"><a href="https://groupeimmobilierbrochu.com/contact/">Contact</a></li>
515 +</ul> </div>
516 + <div class="uk-width-1-2@m uk-width-1-5@l">
517 + <h4 class="uk-h5 uk-margin-remove">Projets</h4>
518 + <ul class="uk-list uk-margin-small uk-text-small">
519 + <li><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Le Pilier &#8211; Finaliste du prix Nobilis 2026</a></li>
520 + <li><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">La Sentinelle</a></li>
521 + <li><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Promenade des Forts</a></li>
522 + <li><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Boul. du Centre-Hospitalier</a></li>
523 + <li><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Habitat 2000</a></li>
524 + <li><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Seigneurie des Ponts</a></li>
525 + <li><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">St-Lambert-de-Lauzon</a></li>
526 + <li><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Quartier Roc-Pointe</a></li>
527 + <li><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Les Immeubles Masson</a></li>
528 + </ul>
529 + </div>
530 + <div class="uk-width-1-2@m uk-width-expand@l">
531 + <h4 class="uk-h5 uk-margin-remove">Communiquez avec nous</h4>
532 + <h5 class="uk-h6 uk-margin-small-top uk-margin-remove-bottom">Téléphone</h5>
533 + <div class="uk-text-small uk-margin-"><a href="tel:418 832-6123 option 1" class="uk-link-text uk-margin-remove-last-child">418 832-6123 option 1</a></div>
534 + <h4 class="uk-h6 uk-margin-small-top uk-margin-remove-bottom">Courriel</h4>
535 + <div class="uk-text-small uk-margin-"><a href="/cdn-cgi/l/email-protection#6905060a081d000607290e1b061c190c000404060b0005000c1b0b1b060a011c470a0604" class="uk-link-text uk-margin-remove-last-child"><span class="__cf_email__" data-cfemail="d9b5b6bab8adb0b6b799beabb6aca9bcb0b4b4b6bbb0b5b0bcabbbabb6bab1acf7bab6b4">[email&#160;protected]</span></a></div>
536 + <div class="uk-margin">
537 + <a href="https://www.facebook.com/groupeimmobilierbrochu" class="" uk-icon="icon: facebook" target="_blank"></a>
538 + <a href="https://www.linkedin.com/company/groupe-immobilier-brochu/" class="" uk-icon="icon: linkedin" target="_blank"></a>
539 + </div>
540 +
541 + </div>
542 +
543 + </div>
544 + </div>
545 +
546 + <div class="uk-container uk-container-xlarge">
547 + <hr />
548 + </div>
549 +
550 + <div class="uk-section uk-section-xsmall uk-section-secondary">
551 + <div class="uk-container uk-container-xlarge">
552 +
553 + <div class="site-info">
554 + <div class="uk-text-center uk-text-small">
555 + © 2022-2026 Groupe immobilier Brochu inc. Tous droits réservés. RBQ : 5697-8943-01
556 + </div>
557 + </div><!-- .site-info -->
558 + </div>
559 + </div>
560 + </div>
561 +</footer><!-- #colophon -->
562 +</div><!-- #page -->
563 +</div><!-- #page-container -->
564 +
565 +<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="speculationrules">
566 +{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/GIB-appartement/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
567 +</script>
568 +
569 +<!-- Consent Management powered by Complianz | GDPR/CCPA Cookie Consent https://wordpress.org/plugins/complianz-gdpr -->
570 +<div id="cmplz-cookiebanner-container"><div class="cmplz-cookiebanner cmplz-hidden banner-1 banner-a optin cmplz-bottom-right cmplz-categories-type-view-preferences" aria-modal="true" data-nosnippet="true" role="dialog" aria-live="polite" aria-labelledby="cmplz-header-1-optin" aria-describedby="cmplz-message-1-optin">
571 + <div class="cmplz-header">
572 + <div class="cmplz-logo"></div>
573 + <div class="cmplz-title" id="cmplz-header-1-optin">Gérer le consentement</div>
574 + <div class="cmplz-close" tabindex="0" role="button" aria-label="Fermez la boîte de dialogue">
575 + <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="times" class="svg-inline--fa fa-times fa-w-11" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path fill="currentColor" d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg>
576 + </div>
577 + </div>
578 +
579 + <div class="cmplz-divider cmplz-divider-header"></div>
580 + <div class="cmplz-body">
581 + <div class="cmplz-message" id="cmplz-message-1-optin">Pour offrir les meilleures expériences, nous utilisons des technologies telles que les témoins pour stocker et/ou accéder aux informations des appareils. Le fait de consentir à ces technologies nous permettra de traiter des données telles que le comportement de navigation ou les ID uniques sur ce site. Le fait de ne pas consentir ou de retirer son consentement peut avoir un effet négatif sur certaines caractéristiques et fonctions.</div>
582 + <!-- categories start -->
583 + <div class="cmplz-categories">
584 + <details class="cmplz-category cmplz-functional" >
585 + <summary>
586 + <span class="cmplz-category-header">
587 + <span class="cmplz-category-title">Fonctionnel</span>
588 + <span class='cmplz-always-active'>
589 + <span class="cmplz-banner-checkbox">
590 + <input type="checkbox"
591 + id="cmplz-functional-optin"
592 + data-category="cmplz_functional"
593 + class="cmplz-consent-checkbox cmplz-functional"
594 + size="40"
595 + value="1"/>
596 + <label class="cmplz-label" for="cmplz-functional-optin" tabindex="0"><span class="screen-reader-text">Fonctionnel</span></label>
597 + </span>
598 + Toujours activé </span>
599 + <span class="cmplz-icon cmplz-open">
600 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
601 + </span>
602 + </span>
603 + </summary>
604 + <div class="cmplz-description">
605 + <span class="cmplz-description-functional">Le stockage ou l’accès technique est strictement nécessaire dans la finalité d’intérêt légitime de permettre l’utilisation d’un service spécifique explicitement demandé par l’abonné ou l’utilisateur, ou dans le seul but d’effectuer la transmission d’une communication sur un réseau de communications électroniques.</span>
606 + </div>
607 + </details>
608 +
609 + <details class="cmplz-category cmplz-preferences" >
610 + <summary>
611 + <span class="cmplz-category-header">
612 + <span class="cmplz-category-title">Préférences</span>
613 + <span class="cmplz-banner-checkbox">
614 + <input type="checkbox"
615 + id="cmplz-preferences-optin"
616 + data-category="cmplz_preferences"
617 + class="cmplz-consent-checkbox cmplz-preferences"
618 + size="40"
619 + value="1"/>
620 + <label class="cmplz-label" for="cmplz-preferences-optin" tabindex="0"><span class="screen-reader-text">Préférences</span></label>
621 + </span>
622 + <span class="cmplz-icon cmplz-open">
623 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
624 + </span>
625 + </span>
626 + </summary>
627 + <div class="cmplz-description">
628 + <span class="cmplz-description-preferences">Le stockage ou l’accès technique est nécessaire dans la finalité d’intérêt légitime de stocker des préférences qui ne sont pas demandées par l’abonné ou l’utilisateur.</span>
629 + </div>
630 + </details>
631 +
632 + <details class="cmplz-category cmplz-statistics" >
633 + <summary>
634 + <span class="cmplz-category-header">
635 + <span class="cmplz-category-title">Statistiques</span>
636 + <span class="cmplz-banner-checkbox">
637 + <input type="checkbox"
638 + id="cmplz-statistics-optin"
639 + data-category="cmplz_statistics"
640 + class="cmplz-consent-checkbox cmplz-statistics"
641 + size="40"
642 + value="1"/>
643 + <label class="cmplz-label" for="cmplz-statistics-optin" tabindex="0"><span class="screen-reader-text">Statistiques</span></label>
644 + </span>
645 + <span class="cmplz-icon cmplz-open">
646 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
647 + </span>
648 + </span>
649 + </summary>
650 + <div class="cmplz-description">
651 + <span class="cmplz-description-statistics">Le stockage ou l’accès technique qui est utilisé exclusivement à des fins statistiques.</span>
652 + <span class="cmplz-description-statistics-anonymous">Le stockage ou l’accès technique qui est utilisé exclusivement dans des finalités statistiques anonymes. En l’absence d’une assignation à comparaître, d’une conformité volontaire de la part de votre fournisseur d’accès à internet ou d’enregistrements supplémentaires provenant d’une tierce partie, les informations stockées ou extraites à cette seule fin ne peuvent généralement pas être utilisées pour vous identifier.</span>
653 + </div>
654 + </details>
655 + <details class="cmplz-category cmplz-marketing" >
656 + <summary>
657 + <span class="cmplz-category-header">
658 + <span class="cmplz-category-title">Marketing</span>
659 + <span class="cmplz-banner-checkbox">
660 + <input type="checkbox"
661 + id="cmplz-marketing-optin"
662 + data-category="cmplz_marketing"
663 + class="cmplz-consent-checkbox cmplz-marketing"
664 + size="40"
665 + value="1"/>
666 + <label class="cmplz-label" for="cmplz-marketing-optin" tabindex="0"><span class="screen-reader-text">Marketing</span></label>
667 + </span>
668 + <span class="cmplz-icon cmplz-open">
669 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
670 + </span>
671 + </span>
672 + </summary>
673 + <div class="cmplz-description">
674 + <span class="cmplz-description-marketing">Le stockage ou l’accès technique est nécessaire pour créer des profils d’utilisateurs afin d’envoyer des publicités, ou pour suivre l’utilisateur sur un site web ou sur plusieurs sites web ayant des finalités marketing similaires.</span>
675 + </div>
676 + </details>
677 + </div><!-- categories end -->
678 + </div>
679 +
680 + <div class="cmplz-links cmplz-information">
681 + <a class="cmplz-link cmplz-manage-options cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Gérer les options</a>
682 + <a class="cmplz-link cmplz-manage-third-parties cookie-statement" href="#" data-relative_url="#cmplz-cookies-overview">Gérer les services</a>
683 + <a class="cmplz-link cmplz-manage-vendors tcf cookie-statement" href="#" data-relative_url="#cmplz-tcf-wrapper">Gérer {vendor_count} fournisseurs</a>
684 + <a class="cmplz-link cmplz-external cmplz-read-more-purposes tcf" target="_blank" rel="noopener noreferrer nofollow" href="https://cookiedatabase.org/tcf/purposes/">En savoir plus sur ces finalités</a>
685 + </div>
686 +
687 + <div class="cmplz-divider cmplz-footer"></div>
688 +
689 + <div class="cmplz-buttons">
690 + <button class="cmplz-btn cmplz-accept">Accepter</button>
691 + <button class="cmplz-btn cmplz-deny">Refuser</button>
692 + <button class="cmplz-btn cmplz-view-preferences">Voir les préférences</button>
693 + <button class="cmplz-btn cmplz-save-preferences">Enregistrer les préférences</button>
694 + <a class="cmplz-btn cmplz-manage-options tcf cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Voir les préférences</a>
695 + </div>
696 +
697 + <div class="cmplz-links cmplz-documents">
698 + <a class="cmplz-link cookie-statement" href="#" data-relative_url="">{title}</a>
699 + <a class="cmplz-link privacy-statement" href="#" data-relative_url="">{title}</a>
700 + <a class="cmplz-link impressum" href="#" data-relative_url="">{title}</a>
701 + </div>
702 +
703 +</div>
704 +</div>
705 + <div id="cmplz-manage-consent" data-nosnippet="true"><button class="cmplz-btn cmplz-hidden cmplz-manage-consent manage-consent-1">Gérer le consentement</button>
706 +
707 +</div><script id="appartements-brochu-uikit-js" src="https://groupeimmobilierbrochu.com/wp-content/themes/GIB-appartement/js/theme.min.js?ver=1.1.4"></script>
708 +<script id="appartements-brochu-custom-js" src="https://groupeimmobilierbrochu.com/wp-content/themes/GIB-appartement/js/customizer.js?ver=1.1.4"></script>
709 +<script type="text/plain" data-service="acf-custom-maps" data-category="marketing" id="appartements-brochu-map-js" data-cmplz-src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAp1W5ywuQprlSqthCHR2XLpQBTSyeSBpk&#038;callback=initMaa&#038;ver=1.1.4"></script>
710 +<script id="cmplz-cookiebanner-js-extra">
711 +var complianz = {"prefix":"cmplz_","user_banner_id":"1","set_cookies":[],"block_ajax_content":"","banner_version":"11","version":"7.0.5","store_consent":"","do_not_track_enabled":"1","consenttype":"optin","region":"ca","geoip":"","dismiss_timeout":"","disable_cookiebanner":"","soft_cookiewall":"","dismiss_on_scroll":"","cookie_expiry":"365","url":"https://groupeimmobilierbrochu.com/wp-json/complianz/v1/","locale":"lang=fr&locale=fr_CA","set_cookies_on_root":"","cookie_domain":"","current_policy_id":"34","cookie_path":"/","categories":{"statistics":"statistiques","marketing":"marketing"},"tcf_active":"","placeholdertext":"Cliquez pour accepter les t\u00e9moins {category} et activer ce contenu","css_file":"https://groupeimmobilierbrochu.com/wp-content/uploads/complianz/css/banner-{banner_id}-{type}.css?v=11","page_links":{"ca":{"cookie-statement":{"title":"Politique de confidentialit\u00e9","url":"https://groupeimmobilierbrochu.com/politique-de-confidentialite/"}}},"tm_categories":"","forceEnableStats":"","preview":"","clean_cookies":"","aria_label":"Cliquez pour accepter les t\u00e9moins {category} et activer ce contenu"};
712 +//# sourceURL=cmplz-cookiebanner-js-extra
713 +</script>
714 +<script defer id="cmplz-cookiebanner-js" src="https://groupeimmobilierbrochu.com/wp-content/plugins/complianz-gdpr/cookiebanner/js/complianz.min.js?ver=1715620671"></script>
715 +<script id="wp-emoji-settings" type="application/json">
716 +{"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://groupeimmobilierbrochu.com/wp-includes/js/wp-emoji-release.min.js?ver=7.0.3"}}
717 +</script>
718 +<script type="module">
719 +/*! This file is auto-generated */
720 +var e="script#wp-emoji-settings",t=document.querySelector(e);if(!(t instanceof HTMLScriptElement))throw new Error("Element missing: "+e);const r=JSON.parse(t.text),s=(window._wpemojiSettings=r,"wpEmojiSettingsSupports"),o=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(s,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const r=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===r[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,r){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!r(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,r){let a;const s=(a="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),o=(s.textBaseline="top",s.font="600 32px Arial",{});return e.forEach(e=>{o[e]=t(s,e,n,r)}),o}function a(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}r.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(s));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(o),u.toString(),c.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"});const a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=e=>{i(n=e.data),a.terminate(),t(n)})}catch(e){}i(n=f(o,u,c,p))}t(n)}).then(e=>{for(const n in e)r.supports[n]=e[n],r.supports.everything=r.supports.everything&&r.supports[n],"flag"!==n&&(r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&r.supports[n]);var t;r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&!r.supports.flag,r.supports.everything||((t=r.source||{}).concatemoji?a(t.concatemoji):t.wpemoji&&t.twemoji&&(a(t.twemoji),a(t.wpemoji)))});
721 +//# sourceURL=https://groupeimmobilierbrochu.com/wp-includes/js/wp-emoji-loader.min.js
722 +</script>
723 +
724 +
725 +</body>
726 +
727 +</html>
\ No newline at end of file
added tests/fixtures/brochu/5b68851b24abc9d55d4f.html +780 −0
@@ -0,0 +1,780 @@
1 +<!doctype html>
2 +<html lang="fr-CA">
3 +
4 +<head>
5 + <meta charset="UTF-8">
6 + <meta name="viewport" content="width=device-width, initial-scale=1">
7 + <link rel="profile" href="https://gmpg.org/xfn/11">
8 + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
9 +
10 +<!-- Google Tag Manager for WordPress by gtm4wp.com -->
11 +<script data-cfasync="false" data-pagespeed-no-defer>
12 + var gtm4wp_datalayer_name = "dataLayer";
13 + var dataLayer = dataLayer || [];
14 +
15 + const gtm4wp_scrollerscript_debugmode = false;
16 + const gtm4wp_scrollerscript_callbacktime = 100;
17 + const gtm4wp_scrollerscript_readerlocation = 150;
18 + const gtm4wp_scrollerscript_contentelementid = "content";
19 + const gtm4wp_scrollerscript_scannertime = 60;
20 +</script>
21 +<!-- End Google Tag Manager for WordPress by gtm4wp.com -->
22 + <!-- This site is optimized with the Yoast SEO plugin v28.2 - https://yoast.com/product/yoast-seo-wordpress/ -->
23 + <title>La Sentinelle - Groupe Immobilier Brochu</title>
24 + <link rel="canonical" href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/" />
25 + <meta property="og:locale" content="fr_CA" />
26 + <meta property="og:type" content="article" />
27 + <meta property="og:title" content="La Sentinelle - Groupe Immobilier Brochu" />
28 + <meta property="og:url" content="https://groupeimmobilierbrochu.com/projets/la-sentinelle/" />
29 + <meta property="og:site_name" content="Groupe Immobilier Brochu" />
30 + <meta property="article:modified_time" content="2026-07-15T19:37:25+00:00" />
31 + <meta name="twitter:card" content="summary_large_image" />
32 + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/groupeimmobilierbrochu.com\/projets\/la-sentinelle\/","url":"https:\/\/groupeimmobilierbrochu.com\/projets\/la-sentinelle\/","name":"La Sentinelle - Groupe Immobilier Brochu","isPartOf":{"@id":"https:\/\/groupeimmobilierbrochu.com\/#website"},"datePublished":"2022-11-26T18:50:07+00:00","dateModified":"2026-07-15T19:37:25+00:00","breadcrumb":{"@id":"https:\/\/groupeimmobilierbrochu.com\/projets\/la-sentinelle\/#breadcrumb"},"inLanguage":"fr-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/groupeimmobilierbrochu.com\/projets\/la-sentinelle\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/groupeimmobilierbrochu.com\/projets\/la-sentinelle\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/groupeimmobilierbrochu.com\/"},{"@type":"ListItem","position":2,"name":"Projets","item":"https:\/\/groupeimmobilierbrochu.com\/projets\/"},{"@type":"ListItem","position":3,"name":"La Sentinelle"}]},{"@type":"WebSite","@id":"https:\/\/groupeimmobilierbrochu.com\/#website","url":"https:\/\/groupeimmobilierbrochu.com\/","name":"Groupe Immobilier Brochu","description":"Développeurs immobilier","publisher":{"@id":"https:\/\/groupeimmobilierbrochu.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/groupeimmobilierbrochu.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-CA"},{"@type":"Organization","@id":"https:\/\/groupeimmobilierbrochu.com\/#organization","name":"Groupe Immobilier Brochu","url":"https:\/\/groupeimmobilierbrochu.com\/","logo":{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/groupeimmobilierbrochu.com\/#\/schema\/logo\/image\/","url":"https:\/\/groupeimmobilierbrochu.com\/wp-content\/uploads\/2023\/11\/cropped-Logo-jpg.webp","contentUrl":"https:\/\/groupeimmobilierbrochu.com\/wp-content\/uploads\/2023\/11\/cropped-Logo-jpg.webp","width":765,"height":396,"caption":"Groupe Immobilier Brochu"},"image":{"@id":"https:\/\/groupeimmobilierbrochu.com\/#\/schema\/logo\/image\/"}}]}</script>
33 + <!-- / Yoast SEO plugin. -->
34 +
35 +
36 +<link rel='dns-prefetch' href='//maps.googleapis.com' />
37 +<link rel="alternate" type="application/rss+xml" title="Groupe Immobilier Brochu &raquo; Flux" href="https://groupeimmobilierbrochu.com/feed/" />
38 +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://groupeimmobilierbrochu.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fgroupeimmobilierbrochu.com%2Fprojets%2Fla-sentinelle%2F" />
39 +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://groupeimmobilierbrochu.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fgroupeimmobilierbrochu.com%2Fprojets%2Fla-sentinelle%2F&#038;format=xml" />
40 +<style id="wp-img-auto-sizes-contain-inline-css">
41 +img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
42 +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
43 +</style>
44 +<link rel='stylesheet' id='formidable-css' href='https://groupeimmobilierbrochu.com/wp-content/plugins/formidable/css/formidableforms.css?ver=7162051' media='all' />
45 +<style id="wp-emoji-styles-inline-css">
46 +
47 + img.wp-smiley, img.emoji {
48 + display: inline !important;
49 + border: none !important;
50 + box-shadow: none !important;
51 + height: 1em !important;
52 + width: 1em !important;
53 + margin: 0 0.07em !important;
54 + vertical-align: -0.1em !important;
55 + background: none !important;
56 + padding: 0 !important;
57 + }
58 +/*# sourceURL=wp-emoji-styles-inline-css */
59 +</style>
60 +<style id="wp-block-library-inline-css">
61 +:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
62 +
63 +/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */
64 +</style>
65 +<style id="classic-theme-styles-inline-css">
66 +/*! This file is auto-generated */
67 +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
68 +/*# sourceURL=/wp-includes/css/classic-themes.min.css */
69 +</style>
70 +
71 +<style id="global-styles-inline-css">
72 +:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
73 +/*# sourceURL=global-styles-inline-css */
74 +</style>
75 +
76 +<link rel='stylesheet' id='cmplz-general-css' href='https://groupeimmobilierbrochu.com/wp-content/plugins/complianz-gdpr/assets/css/cookieblocker.min.css?ver=1715620671' media='all' />
77 +<link rel='stylesheet' id='appartements-brochu-style-css' href='https://groupeimmobilierbrochu.com/wp-content/themes/GIB-appartement/css/theme.min.css?ver=1.1.1674306552' media='all' />
78 +<script id="gtm4wp-scroll-tracking-js" src="https://groupeimmobilierbrochu.com/wp-content/plugins/duracelltomi-google-tag-manager/dist/js/analytics-talk-content-tracking.js?ver=1.22.3"></script>
79 +<script id="jquery-core-js" src="https://groupeimmobilierbrochu.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script>
80 +<script id="jquery-migrate-js" src="https://groupeimmobilierbrochu.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script>
81 +<link rel="https://api.w.org/" href="https://groupeimmobilierbrochu.com/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://groupeimmobilierbrochu.com/xmlrpc.php?rsd" />
82 +<meta name="generator" content="WordPress 7.0.3" />
83 +<link rel='shortlink' href='https://groupeimmobilierbrochu.com/?p=20' />
84 +<meta name="generator" content="performance-lab 4.2.0; plugins: ">
85 +<script>document.documentElement.className += " js";</script>
86 + <style>.cmplz-hidden {
87 + display: none !important;
88 + }</style>
89 +<!-- Google Tag Manager for WordPress by gtm4wp.com -->
90 +<!-- GTM Container placement set to automatic -->
91 +<script data-cfasync="false" data-pagespeed-no-defer>
92 + var dataLayer_content = {"pagePostType":"project","pagePostType2":"single-project","pagePostAuthor":"gael.bouffard"};
93 + dataLayer.push( dataLayer_content );
94 +</script>
95 +<script data-cfasync="false" data-pagespeed-no-defer>
96 +(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
97 +new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
98 +j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
99 +'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
100 +})(window,document,'script','dataLayer','GTM-WRXBQMK3');
101 +</script>
102 +<!-- End Google Tag Manager for WordPress by gtm4wp.com -->
103 +
104 + <!-- <meta property="og:image" content="" /> -->
105 +
106 +
107 +
108 +
109 +<link rel="icon" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" sizes="32x32" />
110 +<link rel="icon" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" sizes="192x192" />
111 +<link rel="apple-touch-icon" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" />
112 +<meta name="msapplication-TileImage" content="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" />
113 +<style id="wp-custom-css">
114 +/* Fix chevauchement titre "Reconnaissances" sur ecrans intermediaires */
115 +@media (min-width: 960px) and (max-width: 1360px) {
116 + #news .uk-grid > .uk-width-1-4\@m,
117 + #news .uk-grid > .uk-width-expand\@m {
118 + width: 100% !important;
119 + max-width: 100% !important;
120 + }
121 +}
122 +
123 +/* Masquer la barre verte des projets quand elle deborderait sur deux lignes */
124 +@media (max-width: 1510px) {
125 + .project-list {
126 + display: none;
127 + }
128 +}
129 +
130 +/* Retarder le basculement vers le menu mobile */
131 +@media (min-width: 992px) {
132 + .tm-header-mobile.uk-hidden\@l {
133 + display: none !important;
134 + }
135 + .tm-header.uk-visible\@l {
136 + display: block !important;
137 + }
138 +}
139 +@media (max-width: 991px) {
140 + .tm-header.uk-visible\@l {
141 + display: none !important;
142 + }
143 + .tm-header-mobile.uk-hidden\@l {
144 + display: block !important;
145 + }
146 +}
147 +</style>
148 +</head>
149 +
150 +
151 +<body data-cmplz=1 class="wp-singular project-template-default single single-project postid-20 wp-custom-logo wp-theme-GIB-appartement no-sidebar">
152 +
153 +<!-- GTM Container placement set to automatic -->
154 +<!-- Google Tag Manager (noscript) -->
155 + <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WRXBQMK3" height="0" width="0" style="display:none;visibility:hidden" aria-hidden="true"></iframe></noscript>
156 +<!-- End Google Tag Manager (noscript) -->
157 + <div id="page-container" class="page-container uk-clearfix">
158 + <div id="page" class="tm-page uk-margin-auto">
159 + <!-- <div class="uk-background-primary uk-padding">
160 + fef
161 + </div> -->
162 + <div class="tm-header-mobile uk-hidden@l">
163 +
164 +
165 + <div uk-sticky="" show-on-up="" animation="uk-animation-slide-top" cls-active="uk-navbar-sticky" sel-target=".uk-navbar-container" class="uk-sticky">
166 +
167 + <div class="uk-navbar-container">
168 + <nav uk-navbar="container: .tm-header-mobile" class="uk-navbar">
169 + <div class="uk-navbar-center">
170 + <div class="uk-width-expand uk-margin-auto logo">
171 + <a href="https://groupeimmobilierbrochu.com/" class="custom-logo-link" rel="home"><img width="765" height="396" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp" class="custom-logo" alt="Groupe Immobilier Brochu" decoding="async" fetchpriority="high" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp 765w, https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg-300x155.webp 300w" sizes="(max-width: 765px) 100vw, 765px" /></a> </div>
172 + </div>
173 +
174 +
175 +
176 + <div class="uk-navbar-right">
177 + <a class="uk-navbar-toggle" href="#tm-mobile" uk-toggle="" aria-expanded="false">
178 + <div uk-navbar-toggle-icon="" class="uk-icon uk-navbar-toggle-icon"></div>
179 + </a>
180 + </div>
181 +
182 +
183 + </nav>
184 + </div>
185 +
186 +
187 + </div>
188 + <div class="uk-sticky-placeholder" style="height: 90px; margin: 0px;" hidden=""></div>
189 +
190 + <div id="tm-mobile" class="uk-modal-full uk-modal" uk-modal>
191 + <div class="uk-modal-dialog uk-modal-body uk-height-viewport">
192 + <button class="uk-modal-close-full uk-icon uk-close" type="button" uk-close=""></button>
193 + <div class="uk-margin-auto-vertical uk-width-1-1">
194 + <div class="uk-child-width-1-1 uk-grid uk-grid-stack" uk-grid>
195 + <div>
196 + <div class="uk-panel">
197 + <ul id="menu-menu" class="uk-nav uk-nav-default uk-nav-divider"><li id="menu-item-42" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-42"><a href="https://groupeimmobilierbrochu.com/">Accueil</a></li>
198 +<li id="menu-item-43" class="menu-item menu-item-type-post_type_archive menu-item-object-project menu-item-43 current-menu-item"><a href="https://groupeimmobilierbrochu.com/projets/">Projets</a></li>
199 +<li id="menu-item-49" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="https://groupeimmobilierbrochu.com/a-propos/">À propos</a></li>
200 +<li id="menu-item-48" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-48"><a href="https://groupeimmobilierbrochu.com/contact/">Contact</a></li>
201 +</ul> <div class="uk-navbar-item uk-margin">
202 + <a href="https://groupeimmobilierbrochu.com/contact/" class="uk-button uk-button-primary uk-button-">Planifiez une visite</a>
203 + </div>
204 + <div class="uk-grid-small uk-child-width-auto uk-flex-middle uk-flex-center uk-margin" uk-grid>
205 + <div><a href="tel:4188326123option1" class="phone uk-text-emphasis">+ 418 832-6123 option 1</a></div>,
206 + <div>
207 + <ul class="uk-iconnav">
208 + <li><a href="https://www.linkedin.com/company/groupe-immobilier-brochu/" class="social" uk-icon="icon: linkedin; ratio:0.85" target="_blank"></a></li>
209 + <li><a href="https://www.facebook.com/groupeimmobilierbrochu" class="social" uk-icon="icon: facebook; ratio:0.85" target="_blank"></a></li>
210 +
211 + </ul>
212 + </div>
213 + </div>
214 + <div class="project-list">
215 + <div class="">
216 + <div class="uk-grid uk-grid-small uk-text-center uk-text-small" uk-grid>
217 +
218 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis secteur<br/>Saint-Romuald / Le Pilier</a></div>
219 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis secteur<br />
220 +Fort numéro 1</a></div>
221 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Lévis secteur<br />
222 +Centre-ville</a></div>
223 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis secteur<br />
224 +Charny / Pionniers</a></div>
225 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Lévis secteur <br />
226 +Charny / Aquaréna</a></div>
227 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Lévis secteur <br />
228 +Saint-Romuald</a></div>
229 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-<br />
230 +de-Lauzon</a></div>
231 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Lévis secteur <br />
232 +Saint-Nicolas</a></div>
233 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Québec secteur <br />
234 +Les Saules</a></div>
235 +
236 + </div>
237 + </div>
238 + </div>
239 + <p class="uk-text-meta uk-text-center">
240 + © 2022-2026 Groupe immobilier Brochu inc. Tous droits réservés. RBQ : 5697-8943-01
241 +
242 + </p>
243 + </div>
244 + </div>
245 +
246 + </div>
247 + </div>
248 +
249 + </div>
250 + </div>
251 +
252 + </div>
253 + <div class="tm-header uk-visible@l tm-header-overlay" uk-header>
254 + <div class="project-list uk-background-primary uk-padding-small uk-light">
255 + <div class="uk-container uk-container-large">
256 + <div class="uk-flex uk-flex-middle uk-flex-right">
257 + <div class="uk-h6 uk-margin-remove">Nos projets :</div>
258 + <ul class="uk-subnav uk-subnav-divider uk-text-center uk-margin-remove">
259 + <li><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis secteur<br/>Saint-Romuald / Le Pilier</a></li>
260 + <li><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis secteur<br />
261 +Fort numéro 1</a></li>
262 + <li><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Lévis secteur<br />
263 +Centre-ville</a></li>
264 + <li><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis secteur<br />
265 +Charny / Pionniers</a></li>
266 + <li><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Lévis secteur <br />
267 +Charny / Aquaréna</a></li>
268 + <li><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Lévis secteur <br />
269 +Saint-Romuald</a></li>
270 + <li><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-<br />
271 +de-Lauzon</a></li>
272 + <li><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Lévis secteur <br />
273 +Saint-Nicolas</a></li>
274 + <li><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Québec secteur <br />
275 +Les Saules</a></li>
276 + </ul>
277 + </div>
278 + </div>
279 + </div>
280 +
281 + <div uk-sticky media="@l" show-on-up="true" animation="uk-animation-slide-top" cls-inactive="" cls-active="" sel-target=".uk-navbar-container">
282 + <div class="uk-navbar-container ">
283 +
284 + <div class="uk-container uk-container-large">
285 + <nav class="uk-navbar uk-flex-middle uk-margin-small-top uk-margin-small-bottom" uk-navbar>
286 + <div class="uk-navbar-left">
287 +
288 + <div class="logo-default">
289 + <a href="https://groupeimmobilierbrochu.com/" class="custom-logo-link" rel="home"><img width="765" height="396" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp" class="custom-logo" alt="Groupe Immobilier Brochu" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp 765w, https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg-300x155.webp 300w" sizes="(max-width: 765px) 100vw, 765px" /></a> </div>
290 +
291 + </div>
292 + <div class="uk-navbar-right">
293 + <div>
294 + <!-- <div class="project-list">
295 +
296 + <ul class="uk-subnav uk-subnav-divider uk-flex uk-flex-bottom uk-flex-right uk-margin-small-bottom uk-text-center">
297 + <li><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis secteur<br/>Saint-Romuald / Le Pilier</a></li>
298 + <li><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis secteur<br />
299 +Fort numéro 1</a></li>
300 + <li><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Lévis secteur<br />
301 +Centre-ville</a></li>
302 + <li><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis secteur<br />
303 +Charny / Pionniers</a></li>
304 + <li><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Lévis secteur <br />
305 +Charny / Aquaréna</a></li>
306 + <li><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Lévis secteur <br />
307 +Saint-Romuald</a></li>
308 + <li><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-<br />
309 +de-Lauzon</a></li>
310 + <li><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Lévis secteur <br />
311 +Saint-Nicolas</a></li>
312 + <li><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Québec secteur <br />
313 +Les Saules</a></li>
314 + </ul>
315 +
316 + </div> -->
317 +
318 + <div class="uk-flex uk-flex-middle uk-flex-right">
319 + <ul id="menu-menu-1" class="uk-navbar-nav"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-42"><a href="https://groupeimmobilierbrochu.com/">Accueil</a></li>
320 +<li class="menu-item menu-item-type-post_type_archive menu-item-object-project menu-item-43 current-menu-item"><a href="https://groupeimmobilierbrochu.com/projets/">Projets</a></li>
321 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="https://groupeimmobilierbrochu.com/a-propos/">À propos</a></li>
322 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-48"><a href="https://groupeimmobilierbrochu.com/contact/">Contact</a></li>
323 +</ul>
324 + <a href="https://www.facebook.com/groupeimmobilierbrochu" class="uk-margin-small-right" uk-icon="icon: facebook" target="_blank"></a>
325 + <a href="https://groupeimmobilierbrochu.com/contact/" class="uk-button uk-button-primary uk-button-">Planifiez une visite</a>
326 + </div>
327 +
328 +
329 +
330 + </div>
331 + </div>
332 +
333 + </nav>
334 +
335 + <!-- </div> -->
336 +
337 + </div>
338 +
339 + </div>
340 +
341 +
342 +
343 + </div>
344 + <!-- <div class="uk-sticky-placeholder" style="height: 90px; margin: 0px;" hidden=""></div> -->
345 + <!-- <div class="uk-sticky-placeholder" style="height: 81px; margin: 0px;"></div> -->
346 +
347 + </div>
348 +
349 +
350 +<main class="project">
351 +
352 + <div class="uk-section-default">
353 + <div class="uk-section-large uk-height-large uk-flex uk-flex-center uk-flex-middle uk-background-cover uk-inline" data-src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/lasentinellelevis-jpg.webp" uk-img>
354 + <div class="uk-overlay-primary uk-position-cover"></div>
355 + <div class="uk-overlay uk-position-top uk-light">
356 + <div class="uk-container uk-container-large">
357 + <a href="https://groupeimmobilierbrochu.com/projets/" class="uk-text-small"><i class="fa-solid fa-chevron-left"></i> Voir tous les projets</a>
358 + </div>
359 + </div>
360 + <div class="uk-overlay uk-position-bottom">
361 + <div class="uk-container uk-container-large">
362 + <div class="">
363 + <div class="uk-light">
364 + <div class="uk-h3 uk-margin-remove">
365 + Lévis </div>
366 + <h1 class="uk-h1 uk-margin-remove">La Sentinelle</h1>
367 + <div class="uk-margin-top">
368 + <i class="fa-solid fa-location-dot"></i>
369 + <a href="https://goo.gl/maps/V3nJNhn2VeCqoZBb8" target="_blank"> 7002, boulevard Guillaume-Couture, Lévis</a>
370 + </div>
371 +
372 + </div>
373 + </div>
374 + </div>
375 + </div>
376 + </div>
377 + </div>
378 +
379 + <div class="uk-section">
380 + <div class="uk-container uk-container-large">
381 + <div class="uk-grid-large uk-margin-bottom" uk-grid>
382 + <div class="uk-width-3-5@m">
383 + <a href="https://lasentinellelevis.com/" target="_blank" class="uk-button uk-button-primary uk-button-large">Visitez le site du projet</a>
384 + <h3>Un lieu confortable et sécuritaire</h3>
385 +<p>Des accès contrôlés, votre voiture au chaud dans un stationnement intérieur, des ascenseurs, des unités d’habitation climatisées et une insonorisation de qualité.</p>
386 +<hr />
387 +<h3>La qualité de vie que vous méritez</h3>
388 +<p>À La Sentinelle, tout est en place pour vous assurer le confort et la paix d’esprit.</p>
389 +<ul>
390 +<li>Appartements spacieux</li>
391 +<li>Finition haut de gamme</li>
392 +<li>Comptoirs de granit</li>
393 +<li>Structure de béton</li>
394 +<li>Plafonds de 9 pieds</li>
395 +<li>1 stationnement intérieur inclus, 2e en option</li>
396 +<li>2 ascenseurs</li>
397 +<li>Air climatisé</li>
398 +<li>Interphone</li>
399 +<li>Chute à déchets sur chaque étage</li>
400 +</ul>
401 +<p>&nbsp;</p>
402 +<p>* Les chiens ne sont pas permis dans nos propriétés</p>
403 +
404 + </div>
405 + <div class="uk-width-expand@m">
406 + <div class="uk-panel uk-background-muted uk-padding uk-text-center">
407 + <h3 class="uk-h3">Statut <span class="uk-label disp"> Disponible</span></h3>
408 + <div class="uk-alert-primary" uk-alert>
409 + <p class="uk-margin-remove uk-text-small uk-text-emphasis">Disponible dès maintenant ou automne 2026</p>
410 + </div>
411 + <div class="">
412 + <h3 class="uk-h5 uk-margin-small-bottom">Visite sur rendez-vous</h3>
413 + <div class="uk-text-primary uk-text-bold">418-741-3737 option 1</div>
414 + <a href="/cdn-cgi/l/email-protection#b8d1d6ded7f8d4d9cbddd6ccd1d6ddd4d4ddd4ddced1cb96dbd7d5"><span class="__cf_email__" data-cfemail="244d4a424b64484557414a504d4a414848414841524d570a474b49">[email&#160;protected]</span></a>
415 + </div>
416 + </div>
417 + <div class="uk-text-center uk-margin-top">
418 + <div>
419 + <a href="https://goo.gl/maps/V3nJNhn2VeCqoZBb8" target="_blank"><i class="fa-solid fa-location-dot"></i> 7002, boulevard Guillaume-Couture, Lévis</a>
420 + </div>
421 + </div>
422 + </div>
423 +
424 + </div>
425 + </div>
426 + </div>
427 + <div class="uk-section uk-section-large uk-padding-remove-top">
428 + <div uk-grid>
429 + <div class=" uk-margin-auto uk-text-center uk-margin-medium-bottom">
430 + <h2 class="uk-h2">Découvrez votre nouvel espace de vie</h2>
431 + </div>
432 + </div>
433 + <div class="uk-position-relative uk-visible-toggle uk-light" tabindex="-1" uk-slider="clsActivated: uk-transition-active; center: true">
434 + <ul class="uk-slider-items uk-grid" uk-lightbox="animation: fade">
435 + <li class="uk-width-4-5 uk-width-2-5@m">
436 + <div class="uk-panel">
437 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/landing-jpg.webp">
438 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/landing-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </a>
439 + </div>
440 + </li>
441 + <li class="uk-width-4-5 uk-width-2-5@m">
442 + <div class="uk-panel">
443 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Vue-4-jpg-1.webp">
444 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Vue-4-jpg-1-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </a>
445 + </div>
446 + </li>
447 + <li class="uk-width-4-5 uk-width-2-5@m">
448 + <div class="uk-panel">
449 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Vue-3-jpg-1.webp">
450 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Vue-3-jpg-1-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </a>
451 + </div>
452 + </li>
453 + <li class="uk-width-4-5 uk-width-2-5@m">
454 + <div class="uk-panel">
455 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SDB-perspective-2.png">
456 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SDB-perspective-2-1380x920.png" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </a>
457 + </div>
458 + </li>
459 + </ul>
460 + <a class="uk-position-center-left uk-position-small uk-hidden-hover uk-slidenav-large" href="#" uk-slidenav-previous uk-slider-item="previous"></a>
461 + <a class="uk-position-center-right uk-position-small uk-hidden-hover uk-slidenav-large" href="#" uk-slidenav-next uk-slider-item="next"></a>
462 + </div>
463 + </div>
464 + <div class="uk-section-default">
465 + <div class="uk-position-relative">
466 +
467 + <div data-service="acf-custom-maps" data-category="marketing" data-placeholder-image="https://groupeimmobilierbrochu.com/wp-content/plugins/complianz-gdpr/assets/images/placeholders/google-maps-minimal-1280x920.jpg" class="cmplz-placeholder-element acf-map" data-zoom="16">
468 + <div class="marker" data-lat="46.811438" data-lng="-71.1583409"></div>
469 + </div>
470 + </div>
471 + </div>
472 +
473 + <div class="uk-section uk-section-large uk-section-muted">
474 + <div class="uk-container">
475 + <div uk-grid>
476 + <div class=" uk-margin-auto uk-text-center">
477 + <h3 class="uk-h2">Consultez nos autres projets</h3>
478 + </div>
479 + </div>
480 + <div uk-grid>
481 + <div class="uk-width-1-2@m project">
482 +
483 +
484 + <div class="uk-panel uk-margin-remove-first-child uk-inline">
485 + <a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">
486 + <div class="uk-inline-clip uk-transition-toggle">
487 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2025/10/Enscape_2023-10-24-14-20-55_Scene-5-png-1380x920.avif" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </div>
488 + </a>
489 + <div class="label-container">
490 + <span class="uk-label disp">Libre novembre 2026</span>
491 + </div>
492 + <div class="uk-margin-top uk-flex uk-flex-middle" uk-grid>
493 + <div class="uk-width-expand">
494 + <div class="el-meta uk-h6 uk-text-primary uk-link-reset uk-margin-remove-bottom">
495 + <a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis</a>
496 + </div>
497 + <h3 class="el-title uk-h3 uk-margin-remove-top uk-margin-remove-bottom">
498 + <a href="https://groupeimmobilierbrochu.com/projets/le-pilier/" class="uk-link-reset">Le Pilier - Finaliste du prix Nobilis 2026</a>
499 + </h3>
500 + </div>
501 +
502 + </div>
503 + </div>
504 +
505 + </div>
506 + <div class="uk-width-1-2@s">
507 +
508 +
509 + <div class="uk-panel uk-margin-remove-first-child uk-inline">
510 + <a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">
511 + <div class="uk-inline-clip uk-transition-toggle">
512 + <img width="1250" height="835" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/phase1_soir_02.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/phase1_soir_02.webp 1250w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/phase1_soir_02-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/phase1_soir_02-1024x684.webp 1024w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/phase1_soir_02-768x513.webp 768w" sizes="(max-width: 1250px) 100vw, 1250px" /> </div>
513 + </a>
514 + <div class="label-container">
515 + <span class="uk-label disp">Unités récentes disponibles</span>
516 + </div>
517 + <div class="uk-margin-top uk-flex uk-flex-middle" uk-grid>
518 + <div class="uk-width-expand">
519 + <div class="el-meta uk-h6 uk-text-primary uk-link-reset uk-margin-remove-bottom">
520 + <a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Lévis</a>
521 + </div>
522 + <h3 class="el-title uk-h3 uk-margin-remove-top uk-margin-remove-bottom">
523 + <a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/" class="uk-link-reset">Promenade des Forts</a>
524 + </h3>
525 + </div>
526 +
527 + </div>
528 + <div class="">
529 + <div class="uk-text-small uk-text-bold uk-text-emphasis">
530 + 4½ récents disponibles, garage ascenseur et climatiseur </div>
531 + </div>
532 +
533 + </div>
534 + </div>
535 + </div>
536 + </div>
537 + </div>
538 +
539 +
540 +
541 +
542 +
543 +
544 +</main><!-- #main -->
545 +
546 +
547 +
548 +
549 +
550 +<footer id="colophon" class="site-footer">
551 + <div class="uk-section uk-section-secondary uk-section-small uk-padding-remove-bottom">
552 + <div class="uk-container uk-container-large">
553 + <div class="uk-grid-large uk-margin-medium-bottom uk-text-center uk-text-left@m" uk-grid>
554 + <div class="uk-width-1-2@m uk-width-expand@l">
555 + <a href="">
556 + <img width="200" height="111" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/12/logo-brochu-blanc.png" class="attachment-full size-full" alt="" decoding="async" loading="lazy" /> </a>
557 + <div class="uk-margin uk-text-small">
558 + <a href="https://goo.gl/maps/NRyMwGtJZmP9zpwd8" class="uk-link-text uk-margin-remove-last-child" target="_blank">700, rue des Grands-Jardins<br />
559 +Lévis (Québec) G6W 0Y7</a>
560 + </div>
561 + </div>
562 + <div class="uk-width-1-2@m uk-width-1-5@l">
563 + <h4 class="uk-h5 uk-margin-remove">Menu</h4>
564 + <ul id="menu-menu-2" class="uk-list uk-margin-small uk-text-small"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-42"><a href="https://groupeimmobilierbrochu.com/">Accueil</a></li>
565 +<li class="menu-item menu-item-type-post_type_archive menu-item-object-project menu-item-43 current-menu-item"><a href="https://groupeimmobilierbrochu.com/projets/">Projets</a></li>
566 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="https://groupeimmobilierbrochu.com/a-propos/">À propos</a></li>
567 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-48"><a href="https://groupeimmobilierbrochu.com/contact/">Contact</a></li>
568 +</ul> </div>
569 + <div class="uk-width-1-2@m uk-width-1-5@l">
570 + <h4 class="uk-h5 uk-margin-remove">Projets</h4>
571 + <ul class="uk-list uk-margin-small uk-text-small">
572 + <li><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Le Pilier &#8211; Finaliste du prix Nobilis 2026</a></li>
573 + <li><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">La Sentinelle</a></li>
574 + <li><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Promenade des Forts</a></li>
575 + <li><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Boul. du Centre-Hospitalier</a></li>
576 + <li><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Habitat 2000</a></li>
577 + <li><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Seigneurie des Ponts</a></li>
578 + <li><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">St-Lambert-de-Lauzon</a></li>
579 + <li><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Quartier Roc-Pointe</a></li>
580 + <li><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Les Immeubles Masson</a></li>
581 + </ul>
582 + </div>
583 + <div class="uk-width-1-2@m uk-width-expand@l">
584 + <h4 class="uk-h5 uk-margin-remove">Communiquez avec nous</h4>
585 + <h5 class="uk-h6 uk-margin-small-top uk-margin-remove-bottom">Téléphone</h5>
586 + <div class="uk-text-small uk-margin-"><a href="tel:418 832-6123 option 1" class="uk-link-text uk-margin-remove-last-child">418 832-6123 option 1</a></div>
587 + <h4 class="uk-h6 uk-margin-small-top uk-margin-remove-bottom">Courriel</h4>
588 + <div class="uk-text-small uk-margin-"><a href="/cdn-cgi/l/email-protection#7f13101c1e0b1610113f180d100a0f1a161212101d1613161a0d1d0d101c170a511c1012" class="uk-link-text uk-margin-remove-last-child"><span class="__cf_email__" data-cfemail="9ef2f1fdffeaf7f1f0def9ecf1ebeefbf7f3f3f1fcf7f2f7fbecfcecf1fdf6ebb0fdf1f3">[email&#160;protected]</span></a></div>
589 + <div class="uk-margin">
590 + <a href="https://www.facebook.com/groupeimmobilierbrochu" class="" uk-icon="icon: facebook" target="_blank"></a>
591 + <a href="https://www.linkedin.com/company/groupe-immobilier-brochu/" class="" uk-icon="icon: linkedin" target="_blank"></a>
592 + </div>
593 +
594 + </div>
595 +
596 + </div>
597 + </div>
598 +
599 + <div class="uk-container uk-container-xlarge">
600 + <hr />
601 + </div>
602 +
603 + <div class="uk-section uk-section-xsmall uk-section-secondary">
604 + <div class="uk-container uk-container-xlarge">
605 +
606 + <div class="site-info">
607 + <div class="uk-text-center uk-text-small">
608 + © 2022-2026 Groupe immobilier Brochu inc. Tous droits réservés. RBQ : 5697-8943-01
609 + </div>
610 + </div><!-- .site-info -->
611 + </div>
612 + </div>
613 + </div>
614 +</footer><!-- #colophon -->
615 +</div><!-- #page -->
616 +</div><!-- #page-container -->
617 +
618 +<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="speculationrules">
619 +{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/GIB-appartement/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
620 +</script>
621 +
622 +<!-- Consent Management powered by Complianz | GDPR/CCPA Cookie Consent https://wordpress.org/plugins/complianz-gdpr -->
623 +<div id="cmplz-cookiebanner-container"><div class="cmplz-cookiebanner cmplz-hidden banner-1 banner-a optin cmplz-bottom-right cmplz-categories-type-view-preferences" aria-modal="true" data-nosnippet="true" role="dialog" aria-live="polite" aria-labelledby="cmplz-header-1-optin" aria-describedby="cmplz-message-1-optin">
624 + <div class="cmplz-header">
625 + <div class="cmplz-logo"></div>
626 + <div class="cmplz-title" id="cmplz-header-1-optin">Gérer le consentement</div>
627 + <div class="cmplz-close" tabindex="0" role="button" aria-label="Fermez la boîte de dialogue">
628 + <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="times" class="svg-inline--fa fa-times fa-w-11" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path fill="currentColor" d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg>
629 + </div>
630 + </div>
631 +
632 + <div class="cmplz-divider cmplz-divider-header"></div>
633 + <div class="cmplz-body">
634 + <div class="cmplz-message" id="cmplz-message-1-optin">Pour offrir les meilleures expériences, nous utilisons des technologies telles que les témoins pour stocker et/ou accéder aux informations des appareils. Le fait de consentir à ces technologies nous permettra de traiter des données telles que le comportement de navigation ou les ID uniques sur ce site. Le fait de ne pas consentir ou de retirer son consentement peut avoir un effet négatif sur certaines caractéristiques et fonctions.</div>
635 + <!-- categories start -->
636 + <div class="cmplz-categories">
637 + <details class="cmplz-category cmplz-functional" >
638 + <summary>
639 + <span class="cmplz-category-header">
640 + <span class="cmplz-category-title">Fonctionnel</span>
641 + <span class='cmplz-always-active'>
642 + <span class="cmplz-banner-checkbox">
643 + <input type="checkbox"
644 + id="cmplz-functional-optin"
645 + data-category="cmplz_functional"
646 + class="cmplz-consent-checkbox cmplz-functional"
647 + size="40"
648 + value="1"/>
649 + <label class="cmplz-label" for="cmplz-functional-optin" tabindex="0"><span class="screen-reader-text">Fonctionnel</span></label>
650 + </span>
651 + Toujours activé </span>
652 + <span class="cmplz-icon cmplz-open">
653 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
654 + </span>
655 + </span>
656 + </summary>
657 + <div class="cmplz-description">
658 + <span class="cmplz-description-functional">Le stockage ou l’accès technique est strictement nécessaire dans la finalité d’intérêt légitime de permettre l’utilisation d’un service spécifique explicitement demandé par l’abonné ou l’utilisateur, ou dans le seul but d’effectuer la transmission d’une communication sur un réseau de communications électroniques.</span>
659 + </div>
660 + </details>
661 +
662 + <details class="cmplz-category cmplz-preferences" >
663 + <summary>
664 + <span class="cmplz-category-header">
665 + <span class="cmplz-category-title">Préférences</span>
666 + <span class="cmplz-banner-checkbox">
667 + <input type="checkbox"
668 + id="cmplz-preferences-optin"
669 + data-category="cmplz_preferences"
670 + class="cmplz-consent-checkbox cmplz-preferences"
671 + size="40"
672 + value="1"/>
673 + <label class="cmplz-label" for="cmplz-preferences-optin" tabindex="0"><span class="screen-reader-text">Préférences</span></label>
674 + </span>
675 + <span class="cmplz-icon cmplz-open">
676 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
677 + </span>
678 + </span>
679 + </summary>
680 + <div class="cmplz-description">
681 + <span class="cmplz-description-preferences">Le stockage ou l’accès technique est nécessaire dans la finalité d’intérêt légitime de stocker des préférences qui ne sont pas demandées par l’abonné ou l’utilisateur.</span>
682 + </div>
683 + </details>
684 +
685 + <details class="cmplz-category cmplz-statistics" >
686 + <summary>
687 + <span class="cmplz-category-header">
688 + <span class="cmplz-category-title">Statistiques</span>
689 + <span class="cmplz-banner-checkbox">
690 + <input type="checkbox"
691 + id="cmplz-statistics-optin"
692 + data-category="cmplz_statistics"
693 + class="cmplz-consent-checkbox cmplz-statistics"
694 + size="40"
695 + value="1"/>
696 + <label class="cmplz-label" for="cmplz-statistics-optin" tabindex="0"><span class="screen-reader-text">Statistiques</span></label>
697 + </span>
698 + <span class="cmplz-icon cmplz-open">
699 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
700 + </span>
701 + </span>
702 + </summary>
703 + <div class="cmplz-description">
704 + <span class="cmplz-description-statistics">Le stockage ou l’accès technique qui est utilisé exclusivement à des fins statistiques.</span>
705 + <span class="cmplz-description-statistics-anonymous">Le stockage ou l’accès technique qui est utilisé exclusivement dans des finalités statistiques anonymes. En l’absence d’une assignation à comparaître, d’une conformité volontaire de la part de votre fournisseur d’accès à internet ou d’enregistrements supplémentaires provenant d’une tierce partie, les informations stockées ou extraites à cette seule fin ne peuvent généralement pas être utilisées pour vous identifier.</span>
706 + </div>
707 + </details>
708 + <details class="cmplz-category cmplz-marketing" >
709 + <summary>
710 + <span class="cmplz-category-header">
711 + <span class="cmplz-category-title">Marketing</span>
712 + <span class="cmplz-banner-checkbox">
713 + <input type="checkbox"
714 + id="cmplz-marketing-optin"
715 + data-category="cmplz_marketing"
716 + class="cmplz-consent-checkbox cmplz-marketing"
717 + size="40"
718 + value="1"/>
719 + <label class="cmplz-label" for="cmplz-marketing-optin" tabindex="0"><span class="screen-reader-text">Marketing</span></label>
720 + </span>
721 + <span class="cmplz-icon cmplz-open">
722 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
723 + </span>
724 + </span>
725 + </summary>
726 + <div class="cmplz-description">
727 + <span class="cmplz-description-marketing">Le stockage ou l’accès technique est nécessaire pour créer des profils d’utilisateurs afin d’envoyer des publicités, ou pour suivre l’utilisateur sur un site web ou sur plusieurs sites web ayant des finalités marketing similaires.</span>
728 + </div>
729 + </details>
730 + </div><!-- categories end -->
731 + </div>
732 +
733 + <div class="cmplz-links cmplz-information">
734 + <a class="cmplz-link cmplz-manage-options cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Gérer les options</a>
735 + <a class="cmplz-link cmplz-manage-third-parties cookie-statement" href="#" data-relative_url="#cmplz-cookies-overview">Gérer les services</a>
736 + <a class="cmplz-link cmplz-manage-vendors tcf cookie-statement" href="#" data-relative_url="#cmplz-tcf-wrapper">Gérer {vendor_count} fournisseurs</a>
737 + <a class="cmplz-link cmplz-external cmplz-read-more-purposes tcf" target="_blank" rel="noopener noreferrer nofollow" href="https://cookiedatabase.org/tcf/purposes/">En savoir plus sur ces finalités</a>
738 + </div>
739 +
740 + <div class="cmplz-divider cmplz-footer"></div>
741 +
742 + <div class="cmplz-buttons">
743 + <button class="cmplz-btn cmplz-accept">Accepter</button>
744 + <button class="cmplz-btn cmplz-deny">Refuser</button>
745 + <button class="cmplz-btn cmplz-view-preferences">Voir les préférences</button>
746 + <button class="cmplz-btn cmplz-save-preferences">Enregistrer les préférences</button>
747 + <a class="cmplz-btn cmplz-manage-options tcf cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Voir les préférences</a>
748 + </div>
749 +
750 + <div class="cmplz-links cmplz-documents">
751 + <a class="cmplz-link cookie-statement" href="#" data-relative_url="">{title}</a>
752 + <a class="cmplz-link privacy-statement" href="#" data-relative_url="">{title}</a>
753 + <a class="cmplz-link impressum" href="#" data-relative_url="">{title}</a>
754 + </div>
755 +
756 +</div>
757 +</div>
758 + <div id="cmplz-manage-consent" data-nosnippet="true"><button class="cmplz-btn cmplz-hidden cmplz-manage-consent manage-consent-1">Gérer le consentement</button>
759 +
760 +</div><script id="appartements-brochu-uikit-js" src="https://groupeimmobilierbrochu.com/wp-content/themes/GIB-appartement/js/theme.min.js?ver=1.1.4"></script>
761 +<script id="appartements-brochu-custom-js" src="https://groupeimmobilierbrochu.com/wp-content/themes/GIB-appartement/js/customizer.js?ver=1.1.4"></script>
762 +<script type="text/plain" data-service="acf-custom-maps" data-category="marketing" id="appartements-brochu-map-js" data-cmplz-src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAp1W5ywuQprlSqthCHR2XLpQBTSyeSBpk&#038;callback=initMaa&#038;ver=1.1.4"></script>
763 +<script id="cmplz-cookiebanner-js-extra">
764 +var complianz = {"prefix":"cmplz_","user_banner_id":"1","set_cookies":[],"block_ajax_content":"","banner_version":"11","version":"7.0.5","store_consent":"","do_not_track_enabled":"1","consenttype":"optin","region":"ca","geoip":"","dismiss_timeout":"","disable_cookiebanner":"","soft_cookiewall":"","dismiss_on_scroll":"","cookie_expiry":"365","url":"https://groupeimmobilierbrochu.com/wp-json/complianz/v1/","locale":"lang=fr&locale=fr_CA","set_cookies_on_root":"","cookie_domain":"","current_policy_id":"34","cookie_path":"/","categories":{"statistics":"statistiques","marketing":"marketing"},"tcf_active":"","placeholdertext":"Cliquez pour accepter les t\u00e9moins {category} et activer ce contenu","css_file":"https://groupeimmobilierbrochu.com/wp-content/uploads/complianz/css/banner-{banner_id}-{type}.css?v=11","page_links":{"ca":{"cookie-statement":{"title":"Politique de confidentialit\u00e9","url":"https://groupeimmobilierbrochu.com/politique-de-confidentialite/"}}},"tm_categories":"","forceEnableStats":"","preview":"","clean_cookies":"","aria_label":"Cliquez pour accepter les t\u00e9moins {category} et activer ce contenu"};
765 +//# sourceURL=cmplz-cookiebanner-js-extra
766 +</script>
767 +<script defer id="cmplz-cookiebanner-js" src="https://groupeimmobilierbrochu.com/wp-content/plugins/complianz-gdpr/cookiebanner/js/complianz.min.js?ver=1715620671"></script>
768 +<script id="wp-emoji-settings" type="application/json">
769 +{"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://groupeimmobilierbrochu.com/wp-includes/js/wp-emoji-release.min.js?ver=7.0.3"}}
770 +</script>
771 +<script type="module">
772 +/*! This file is auto-generated */
773 +var e="script#wp-emoji-settings",t=document.querySelector(e);if(!(t instanceof HTMLScriptElement))throw new Error("Element missing: "+e);const r=JSON.parse(t.text),s=(window._wpemojiSettings=r,"wpEmojiSettingsSupports"),o=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(s,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const r=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===r[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,r){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!r(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,r){let a;const s=(a="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),o=(s.textBaseline="top",s.font="600 32px Arial",{});return e.forEach(e=>{o[e]=t(s,e,n,r)}),o}function a(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}r.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(s));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(o),u.toString(),c.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"});const a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=e=>{i(n=e.data),a.terminate(),t(n)})}catch(e){}i(n=f(o,u,c,p))}t(n)}).then(e=>{for(const n in e)r.supports[n]=e[n],r.supports.everything=r.supports.everything&&r.supports[n],"flag"!==n&&(r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&r.supports[n]);var t;r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&!r.supports.flag,r.supports.everything||((t=r.source||{}).concatemoji?a(t.concatemoji):t.wpemoji&&t.twemoji&&(a(t.twemoji),a(t.wpemoji)))});
774 +//# sourceURL=https://groupeimmobilierbrochu.com/wp-includes/js/wp-emoji-loader.min.js
775 +</script>
776 +
777 +
778 +</body>
779 +
780 +</html>
\ No newline at end of file
added tests/fixtures/brochu/7e7922d588a685f6a351.html +788 −0
@@ -0,0 +1,788 @@
1 +<!doctype html>
2 +<html lang="fr-CA">
3 +
4 +<head>
5 + <meta charset="UTF-8">
6 + <meta name="viewport" content="width=device-width, initial-scale=1">
7 + <link rel="profile" href="https://gmpg.org/xfn/11">
8 + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
9 +
10 +<!-- Google Tag Manager for WordPress by gtm4wp.com -->
11 +<script data-cfasync="false" data-pagespeed-no-defer>
12 + var gtm4wp_datalayer_name = "dataLayer";
13 + var dataLayer = dataLayer || [];
14 +
15 + const gtm4wp_scrollerscript_debugmode = false;
16 + const gtm4wp_scrollerscript_callbacktime = 100;
17 + const gtm4wp_scrollerscript_readerlocation = 150;
18 + const gtm4wp_scrollerscript_contentelementid = "content";
19 + const gtm4wp_scrollerscript_scannertime = 60;
20 +</script>
21 +<!-- End Google Tag Manager for WordPress by gtm4wp.com -->
22 + <!-- This site is optimized with the Yoast SEO plugin v28.2 - https://yoast.com/product/yoast-seo-wordpress/ -->
23 + <title>Promenade des Forts - Groupe Immobilier Brochu</title>
24 + <link rel="canonical" href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/" />
25 + <meta property="og:locale" content="fr_CA" />
26 + <meta property="og:type" content="article" />
27 + <meta property="og:title" content="Promenade des Forts - Groupe Immobilier Brochu" />
28 + <meta property="og:url" content="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/" />
29 + <meta property="og:site_name" content="Groupe Immobilier Brochu" />
30 + <meta property="article:modified_time" content="2026-07-15T19:37:10+00:00" />
31 + <meta name="twitter:card" content="summary_large_image" />
32 + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/groupeimmobilierbrochu.com\/projets\/promenade-des-forts\/","url":"https:\/\/groupeimmobilierbrochu.com\/projets\/promenade-des-forts\/","name":"Promenade des Forts - Groupe Immobilier Brochu","isPartOf":{"@id":"https:\/\/groupeimmobilierbrochu.com\/#website"},"datePublished":"2022-11-26T18:52:50+00:00","dateModified":"2026-07-15T19:37:10+00:00","breadcrumb":{"@id":"https:\/\/groupeimmobilierbrochu.com\/projets\/promenade-des-forts\/#breadcrumb"},"inLanguage":"fr-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/groupeimmobilierbrochu.com\/projets\/promenade-des-forts\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/groupeimmobilierbrochu.com\/projets\/promenade-des-forts\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/groupeimmobilierbrochu.com\/"},{"@type":"ListItem","position":2,"name":"Projets","item":"https:\/\/groupeimmobilierbrochu.com\/projets\/"},{"@type":"ListItem","position":3,"name":"Promenade des Forts"}]},{"@type":"WebSite","@id":"https:\/\/groupeimmobilierbrochu.com\/#website","url":"https:\/\/groupeimmobilierbrochu.com\/","name":"Groupe Immobilier Brochu","description":"Développeurs immobilier","publisher":{"@id":"https:\/\/groupeimmobilierbrochu.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/groupeimmobilierbrochu.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-CA"},{"@type":"Organization","@id":"https:\/\/groupeimmobilierbrochu.com\/#organization","name":"Groupe Immobilier Brochu","url":"https:\/\/groupeimmobilierbrochu.com\/","logo":{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/groupeimmobilierbrochu.com\/#\/schema\/logo\/image\/","url":"https:\/\/groupeimmobilierbrochu.com\/wp-content\/uploads\/2023\/11\/cropped-Logo-jpg.webp","contentUrl":"https:\/\/groupeimmobilierbrochu.com\/wp-content\/uploads\/2023\/11\/cropped-Logo-jpg.webp","width":765,"height":396,"caption":"Groupe Immobilier Brochu"},"image":{"@id":"https:\/\/groupeimmobilierbrochu.com\/#\/schema\/logo\/image\/"}}]}</script>
33 + <!-- / Yoast SEO plugin. -->
34 +
35 +
36 +<link rel='dns-prefetch' href='//maps.googleapis.com' />
37 +<link rel="alternate" type="application/rss+xml" title="Groupe Immobilier Brochu &raquo; Flux" href="https://groupeimmobilierbrochu.com/feed/" />
38 +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://groupeimmobilierbrochu.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fgroupeimmobilierbrochu.com%2Fprojets%2Fpromenade-des-forts%2F" />
39 +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://groupeimmobilierbrochu.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fgroupeimmobilierbrochu.com%2Fprojets%2Fpromenade-des-forts%2F&#038;format=xml" />
40 +<style id="wp-img-auto-sizes-contain-inline-css">
41 +img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
42 +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
43 +</style>
44 +<link rel='stylesheet' id='formidable-css' href='https://groupeimmobilierbrochu.com/wp-content/plugins/formidable/css/formidableforms.css?ver=7162051' media='all' />
45 +<style id="wp-emoji-styles-inline-css">
46 +
47 + img.wp-smiley, img.emoji {
48 + display: inline !important;
49 + border: none !important;
50 + box-shadow: none !important;
51 + height: 1em !important;
52 + width: 1em !important;
53 + margin: 0 0.07em !important;
54 + vertical-align: -0.1em !important;
55 + background: none !important;
56 + padding: 0 !important;
57 + }
58 +/*# sourceURL=wp-emoji-styles-inline-css */
59 +</style>
60 +<style id="wp-block-library-inline-css">
61 +:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
62 +
63 +/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */
64 +</style>
65 +<style id="classic-theme-styles-inline-css">
66 +/*! This file is auto-generated */
67 +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
68 +/*# sourceURL=/wp-includes/css/classic-themes.min.css */
69 +</style>
70 +
71 +<style id="global-styles-inline-css">
72 +:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
73 +/*# sourceURL=global-styles-inline-css */
74 +</style>
75 +
76 +<link rel='stylesheet' id='cmplz-general-css' href='https://groupeimmobilierbrochu.com/wp-content/plugins/complianz-gdpr/assets/css/cookieblocker.min.css?ver=1715620671' media='all' />
77 +<link rel='stylesheet' id='appartements-brochu-style-css' href='https://groupeimmobilierbrochu.com/wp-content/themes/GIB-appartement/css/theme.min.css?ver=1.1.1674306552' media='all' />
78 +<script id="gtm4wp-scroll-tracking-js" src="https://groupeimmobilierbrochu.com/wp-content/plugins/duracelltomi-google-tag-manager/dist/js/analytics-talk-content-tracking.js?ver=1.22.3"></script>
79 +<script id="jquery-core-js" src="https://groupeimmobilierbrochu.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script>
80 +<script id="jquery-migrate-js" src="https://groupeimmobilierbrochu.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script>
81 +<link rel="https://api.w.org/" href="https://groupeimmobilierbrochu.com/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://groupeimmobilierbrochu.com/xmlrpc.php?rsd" />
82 +<meta name="generator" content="WordPress 7.0.3" />
83 +<link rel='shortlink' href='https://groupeimmobilierbrochu.com/?p=22' />
84 +<meta name="generator" content="performance-lab 4.2.0; plugins: ">
85 +<script>document.documentElement.className += " js";</script>
86 + <style>.cmplz-hidden {
87 + display: none !important;
88 + }</style>
89 +<!-- Google Tag Manager for WordPress by gtm4wp.com -->
90 +<!-- GTM Container placement set to automatic -->
91 +<script data-cfasync="false" data-pagespeed-no-defer>
92 + var dataLayer_content = {"pagePostType":"project","pagePostType2":"single-project","pagePostAuthor":"gael.bouffard"};
93 + dataLayer.push( dataLayer_content );
94 +</script>
95 +<script data-cfasync="false" data-pagespeed-no-defer>
96 +(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
97 +new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
98 +j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
99 +'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
100 +})(window,document,'script','dataLayer','GTM-WRXBQMK3');
101 +</script>
102 +<!-- End Google Tag Manager for WordPress by gtm4wp.com -->
103 +
104 + <!-- <meta property="og:image" content="" /> -->
105 +
106 +
107 +
108 +
109 +<link rel="icon" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" sizes="32x32" />
110 +<link rel="icon" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" sizes="192x192" />
111 +<link rel="apple-touch-icon" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" />
112 +<meta name="msapplication-TileImage" content="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" />
113 +<style id="wp-custom-css">
114 +/* Fix chevauchement titre "Reconnaissances" sur ecrans intermediaires */
115 +@media (min-width: 960px) and (max-width: 1360px) {
116 + #news .uk-grid > .uk-width-1-4\@m,
117 + #news .uk-grid > .uk-width-expand\@m {
118 + width: 100% !important;
119 + max-width: 100% !important;
120 + }
121 +}
122 +
123 +/* Masquer la barre verte des projets quand elle deborderait sur deux lignes */
124 +@media (max-width: 1510px) {
125 + .project-list {
126 + display: none;
127 + }
128 +}
129 +
130 +/* Retarder le basculement vers le menu mobile */
131 +@media (min-width: 992px) {
132 + .tm-header-mobile.uk-hidden\@l {
133 + display: none !important;
134 + }
135 + .tm-header.uk-visible\@l {
136 + display: block !important;
137 + }
138 +}
139 +@media (max-width: 991px) {
140 + .tm-header.uk-visible\@l {
141 + display: none !important;
142 + }
143 + .tm-header-mobile.uk-hidden\@l {
144 + display: block !important;
145 + }
146 +}
147 +</style>
148 +</head>
149 +
150 +
151 +<body data-cmplz=1 class="wp-singular project-template-default single single-project postid-22 wp-custom-logo wp-theme-GIB-appartement no-sidebar">
152 +
153 +<!-- GTM Container placement set to automatic -->
154 +<!-- Google Tag Manager (noscript) -->
155 + <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WRXBQMK3" height="0" width="0" style="display:none;visibility:hidden" aria-hidden="true"></iframe></noscript>
156 +<!-- End Google Tag Manager (noscript) -->
157 + <div id="page-container" class="page-container uk-clearfix">
158 + <div id="page" class="tm-page uk-margin-auto">
159 + <!-- <div class="uk-background-primary uk-padding">
160 + fef
161 + </div> -->
162 + <div class="tm-header-mobile uk-hidden@l">
163 +
164 +
165 + <div uk-sticky="" show-on-up="" animation="uk-animation-slide-top" cls-active="uk-navbar-sticky" sel-target=".uk-navbar-container" class="uk-sticky">
166 +
167 + <div class="uk-navbar-container">
168 + <nav uk-navbar="container: .tm-header-mobile" class="uk-navbar">
169 + <div class="uk-navbar-center">
170 + <div class="uk-width-expand uk-margin-auto logo">
171 + <a href="https://groupeimmobilierbrochu.com/" class="custom-logo-link" rel="home"><img width="765" height="396" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp" class="custom-logo" alt="Groupe Immobilier Brochu" decoding="async" fetchpriority="high" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp 765w, https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg-300x155.webp 300w" sizes="(max-width: 765px) 100vw, 765px" /></a> </div>
172 + </div>
173 +
174 +
175 +
176 + <div class="uk-navbar-right">
177 + <a class="uk-navbar-toggle" href="#tm-mobile" uk-toggle="" aria-expanded="false">
178 + <div uk-navbar-toggle-icon="" class="uk-icon uk-navbar-toggle-icon"></div>
179 + </a>
180 + </div>
181 +
182 +
183 + </nav>
184 + </div>
185 +
186 +
187 + </div>
188 + <div class="uk-sticky-placeholder" style="height: 90px; margin: 0px;" hidden=""></div>
189 +
190 + <div id="tm-mobile" class="uk-modal-full uk-modal" uk-modal>
191 + <div class="uk-modal-dialog uk-modal-body uk-height-viewport">
192 + <button class="uk-modal-close-full uk-icon uk-close" type="button" uk-close=""></button>
193 + <div class="uk-margin-auto-vertical uk-width-1-1">
194 + <div class="uk-child-width-1-1 uk-grid uk-grid-stack" uk-grid>
195 + <div>
196 + <div class="uk-panel">
197 + <ul id="menu-menu" class="uk-nav uk-nav-default uk-nav-divider"><li id="menu-item-42" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-42"><a href="https://groupeimmobilierbrochu.com/">Accueil</a></li>
198 +<li id="menu-item-43" class="menu-item menu-item-type-post_type_archive menu-item-object-project menu-item-43 current-menu-item"><a href="https://groupeimmobilierbrochu.com/projets/">Projets</a></li>
199 +<li id="menu-item-49" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="https://groupeimmobilierbrochu.com/a-propos/">À propos</a></li>
200 +<li id="menu-item-48" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-48"><a href="https://groupeimmobilierbrochu.com/contact/">Contact</a></li>
201 +</ul> <div class="uk-navbar-item uk-margin">
202 + <a href="https://groupeimmobilierbrochu.com/contact/" class="uk-button uk-button-primary uk-button-">Planifiez une visite</a>
203 + </div>
204 + <div class="uk-grid-small uk-child-width-auto uk-flex-middle uk-flex-center uk-margin" uk-grid>
205 + <div><a href="tel:4188326123option1" class="phone uk-text-emphasis">+ 418 832-6123 option 1</a></div>,
206 + <div>
207 + <ul class="uk-iconnav">
208 + <li><a href="https://www.linkedin.com/company/groupe-immobilier-brochu/" class="social" uk-icon="icon: linkedin; ratio:0.85" target="_blank"></a></li>
209 + <li><a href="https://www.facebook.com/groupeimmobilierbrochu" class="social" uk-icon="icon: facebook; ratio:0.85" target="_blank"></a></li>
210 +
211 + </ul>
212 + </div>
213 + </div>
214 + <div class="project-list">
215 + <div class="">
216 + <div class="uk-grid uk-grid-small uk-text-center uk-text-small" uk-grid>
217 +
218 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis secteur<br/>Saint-Romuald / Le Pilier</a></div>
219 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis secteur<br />
220 +Fort numéro 1</a></div>
221 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Lévis secteur<br />
222 +Centre-ville</a></div>
223 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis secteur<br />
224 +Charny / Pionniers</a></div>
225 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Lévis secteur <br />
226 +Charny / Aquaréna</a></div>
227 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Lévis secteur <br />
228 +Saint-Romuald</a></div>
229 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-<br />
230 +de-Lauzon</a></div>
231 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Lévis secteur <br />
232 +Saint-Nicolas</a></div>
233 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Québec secteur <br />
234 +Les Saules</a></div>
235 +
236 + </div>
237 + </div>
238 + </div>
239 + <p class="uk-text-meta uk-text-center">
240 + © 2022-2026 Groupe immobilier Brochu inc. Tous droits réservés. RBQ : 5697-8943-01
241 +
242 + </p>
243 + </div>
244 + </div>
245 +
246 + </div>
247 + </div>
248 +
249 + </div>
250 + </div>
251 +
252 + </div>
253 + <div class="tm-header uk-visible@l tm-header-overlay" uk-header>
254 + <div class="project-list uk-background-primary uk-padding-small uk-light">
255 + <div class="uk-container uk-container-large">
256 + <div class="uk-flex uk-flex-middle uk-flex-right">
257 + <div class="uk-h6 uk-margin-remove">Nos projets :</div>
258 + <ul class="uk-subnav uk-subnav-divider uk-text-center uk-margin-remove">
259 + <li><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis secteur<br/>Saint-Romuald / Le Pilier</a></li>
260 + <li><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis secteur<br />
261 +Fort numéro 1</a></li>
262 + <li><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Lévis secteur<br />
263 +Centre-ville</a></li>
264 + <li><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis secteur<br />
265 +Charny / Pionniers</a></li>
266 + <li><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Lévis secteur <br />
267 +Charny / Aquaréna</a></li>
268 + <li><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Lévis secteur <br />
269 +Saint-Romuald</a></li>
270 + <li><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-<br />
271 +de-Lauzon</a></li>
272 + <li><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Lévis secteur <br />
273 +Saint-Nicolas</a></li>
274 + <li><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Québec secteur <br />
275 +Les Saules</a></li>
276 + </ul>
277 + </div>
278 + </div>
279 + </div>
280 +
281 + <div uk-sticky media="@l" show-on-up="true" animation="uk-animation-slide-top" cls-inactive="" cls-active="" sel-target=".uk-navbar-container">
282 + <div class="uk-navbar-container ">
283 +
284 + <div class="uk-container uk-container-large">
285 + <nav class="uk-navbar uk-flex-middle uk-margin-small-top uk-margin-small-bottom" uk-navbar>
286 + <div class="uk-navbar-left">
287 +
288 + <div class="logo-default">
289 + <a href="https://groupeimmobilierbrochu.com/" class="custom-logo-link" rel="home"><img width="765" height="396" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp" class="custom-logo" alt="Groupe Immobilier Brochu" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp 765w, https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg-300x155.webp 300w" sizes="(max-width: 765px) 100vw, 765px" /></a> </div>
290 +
291 + </div>
292 + <div class="uk-navbar-right">
293 + <div>
294 + <!-- <div class="project-list">
295 +
296 + <ul class="uk-subnav uk-subnav-divider uk-flex uk-flex-bottom uk-flex-right uk-margin-small-bottom uk-text-center">
297 + <li><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis secteur<br/>Saint-Romuald / Le Pilier</a></li>
298 + <li><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis secteur<br />
299 +Fort numéro 1</a></li>
300 + <li><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Lévis secteur<br />
301 +Centre-ville</a></li>
302 + <li><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis secteur<br />
303 +Charny / Pionniers</a></li>
304 + <li><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Lévis secteur <br />
305 +Charny / Aquaréna</a></li>
306 + <li><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Lévis secteur <br />
307 +Saint-Romuald</a></li>
308 + <li><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-<br />
309 +de-Lauzon</a></li>
310 + <li><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Lévis secteur <br />
311 +Saint-Nicolas</a></li>
312 + <li><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Québec secteur <br />
313 +Les Saules</a></li>
314 + </ul>
315 +
316 + </div> -->
317 +
318 + <div class="uk-flex uk-flex-middle uk-flex-right">
319 + <ul id="menu-menu-1" class="uk-navbar-nav"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-42"><a href="https://groupeimmobilierbrochu.com/">Accueil</a></li>
320 +<li class="menu-item menu-item-type-post_type_archive menu-item-object-project menu-item-43 current-menu-item"><a href="https://groupeimmobilierbrochu.com/projets/">Projets</a></li>
321 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="https://groupeimmobilierbrochu.com/a-propos/">À propos</a></li>
322 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-48"><a href="https://groupeimmobilierbrochu.com/contact/">Contact</a></li>
323 +</ul>
324 + <a href="https://www.facebook.com/groupeimmobilierbrochu" class="uk-margin-small-right" uk-icon="icon: facebook" target="_blank"></a>
325 + <a href="https://groupeimmobilierbrochu.com/contact/" class="uk-button uk-button-primary uk-button-">Planifiez une visite</a>
326 + </div>
327 +
328 +
329 +
330 + </div>
331 + </div>
332 +
333 + </nav>
334 +
335 + <!-- </div> -->
336 +
337 + </div>
338 +
339 + </div>
340 +
341 +
342 +
343 + </div>
344 + <!-- <div class="uk-sticky-placeholder" style="height: 90px; margin: 0px;" hidden=""></div> -->
345 + <!-- <div class="uk-sticky-placeholder" style="height: 81px; margin: 0px;"></div> -->
346 +
347 + </div>
348 +
349 +
350 +<main class="project">
351 +
352 + <div class="uk-section-default">
353 + <div class="uk-section-large uk-height-large uk-flex uk-flex-center uk-flex-middle uk-background-cover uk-inline" data-src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/phase1_soir_02.webp" uk-img>
354 + <div class="uk-overlay-primary uk-position-cover"></div>
355 + <div class="uk-overlay uk-position-top uk-light">
356 + <div class="uk-container uk-container-large">
357 + <a href="https://groupeimmobilierbrochu.com/projets/" class="uk-text-small"><i class="fa-solid fa-chevron-left"></i> Voir tous les projets</a>
358 + </div>
359 + </div>
360 + <div class="uk-overlay uk-position-bottom">
361 + <div class="uk-container uk-container-large">
362 + <div class="">
363 + <div class="uk-margin-bottom">
364 + <span class="uk-label disp">Unités récentes disponibles</span>
365 + </div>
366 + <div class="uk-light">
367 + <div class="uk-h3 uk-margin-remove">
368 + Lévis </div>
369 + <h1 class="uk-h1 uk-margin-remove">Promenade des Forts</h1>
370 + <div class="uk-margin-top">
371 + <i class="fa-solid fa-location-dot"></i>
372 + <a href="https://goo.gl/maps/F9Gh1nY8QzeJu6Uq7" target="_blank"> 6275 et 6375 boulevard Étienne-Dallaire, Levis</a>
373 + </div>
374 +
375 + </div>
376 + </div>
377 + </div>
378 + </div>
379 + </div>
380 + </div>
381 +
382 + <div class="uk-section">
383 + <div class="uk-container uk-container-large">
384 + <div class="uk-grid-large uk-margin-bottom" uk-grid>
385 + <div class="uk-width-3-5@m">
386 + <a href="https://www.promenadedesforts.com/" target="_blank" class="uk-button uk-button-primary uk-button-large">Visitez le site du projet</a>
387 + <h3>Un lieu confortable et sécuritaire</h3>
388 +<p>Des accès contrôlés, votre voiture au chaud dans un stationnement intérieur, un ascenseur, des unités d’habitation climatisées et une insonorisation de qualité : tout est en place pour vous assurer le confort, la paix d’esprit et la qualité de vie que vous méritez.</p>
389 +<ul class="liste_details_accueil">
390 +<li>Appartements spacieux;</li>
391 +<li>Finition haut de gamme;</li>
392 +<li>Stationnement intérieur inclus;</li>
393 +<li>Ascenseur;</li>
394 +<li>Climatisation;</li>
395 +<li>Interphone;</li>
396 +<li>Chute à déchets</li>
397 +</ul>
398 +<hr />
399 +<h3>Quartier UMANO</h3>
400 +<p>Situé au cœur d’un pôle de développement structurant à Lévis, le quartier UMANO offrira à terme un pôle d’affaires diversifié, des commerces de proximité variés, différents types d’habitations pour un éventail de familles, le tout, développé autour d’une esplanade publique de parcs et d’espaces verts de plus de 1 km. UMANO est un véritable milieu de vie où tout est possible: vivre, travailler, faire ses emplettes, profiter de ses loisirs, des événements culturels et pratiquer divers sports.</p>
401 +<h4>Ainsi, vous y retrouverez à terme :</h4>
402 +<ul>
403 +<li>+ de 1 km d’espaces verts et de parcs publics;</li>
404 +<li>Grand jardin communautaire;</li>
405 +<li>± 2,6 km de pistes cyclables;</li>
406 +<li>± 6 km de trottoirs et de sentiers;</li>
407 +<li>± 925 000 pi² de superficie de bureaux;</li>
408 +<li>± 98 000 pi<sup>2 </sup>de superficie commerciales;</li>
409 +<li>± 2 500 unités d’habitations</li>
410 +</ul>
411 +<p>&nbsp;</p>
412 +<p>* Les chiens ne sont pas permis dans nos propriétés</p>
413 +
414 + </div>
415 + <div class="uk-width-expand@m">
416 + <div class="uk-panel uk-background-muted uk-padding uk-text-center">
417 + <h3 class="uk-h3">Statut <span class="uk-label disp"> Disponible</span></h3>
418 + <div class="uk-alert-primary" uk-alert>
419 + <p class="uk-margin-remove uk-text-small uk-text-emphasis">Disponible dès maintenant ou automne 2026</p>
420 + </div>
421 + <div class="">
422 + <h3 class="uk-h5 uk-margin-small-bottom">Visite sur rendez-vous</h3>
423 + <div class="uk-text-primary uk-text-bold">581-748-6123 option 1</div>
424 + <a href="/cdn-cgi/l/email-protection#f69f989099b68684999b93989792939293859099848285d895999b"><span class="__cf_email__" data-cfemail="422b2c242d0232302d2f272c232627262731242d3036316c212d2f">[email&#160;protected]</span></a>
425 + </div>
426 + </div>
427 + <div class="uk-text-center uk-margin-top">
428 + <div>
429 + <a href="https://goo.gl/maps/F9Gh1nY8QzeJu6Uq7" target="_blank"><i class="fa-solid fa-location-dot"></i> 6275 et 6375 boulevard Étienne-Dallaire, Levis</a>
430 + </div>
431 + </div>
432 + </div>
433 +
434 + </div>
435 + </div>
436 + </div>
437 + <div class="uk-section uk-section-large uk-padding-remove-top">
438 + <div uk-grid>
439 + <div class=" uk-margin-auto uk-text-center uk-margin-medium-bottom">
440 + <h2 class="uk-h2">Découvrez votre nouvel espace de vie</h2>
441 + </div>
442 + </div>
443 + <div class="uk-position-relative uk-visible-toggle uk-light" tabindex="-1" uk-slider="clsActivated: uk-transition-active; center: true">
444 + <ul class="uk-slider-items uk-grid" uk-lightbox="animation: fade">
445 + <li class="uk-width-4-5 uk-width-2-5@m">
446 + <div class="uk-panel">
447 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SBP-1400-08-jpg.webp">
448 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SBP-1400-08-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SBP-1400-08-1380x920.webp 1380w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SBP-1400-08-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SBP-1400-08-1024x682.webp 1024w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SBP-1400-08-768x511.webp 768w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SBP-1400-08-jpg.webp 1400w" sizes="(max-width: 1380px) 100vw, 1380px" /> </a>
449 + </div>
450 + </li>
451 + <li class="uk-width-4-5 uk-width-2-5@m">
452 + <div class="uk-panel">
453 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SBP-1400-12-jpg.webp">
454 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SBP-1400-12-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SBP-1400-12-1380x920.webp 1380w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SBP-1400-12-300x199.webp 300w" sizes="(max-width: 1380px) 100vw, 1380px" /> </a>
455 + </div>
456 + </li>
457 + <li class="uk-width-4-5 uk-width-2-5@m">
458 + <div class="uk-panel">
459 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/53-jpg.webp">
460 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/53-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/53-1380x920.webp 1380w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/53-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/53-1024x682.webp 1024w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/53-768x511.webp 768w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/53-jpg.webp 1400w" sizes="(max-width: 1380px) 100vw, 1380px" /> </a>
461 + </div>
462 + </li>
463 + <li class="uk-width-4-5 uk-width-2-5@m">
464 + <div class="uk-panel">
465 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Photo-arriere-sol-jpg.webp">
466 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Photo-arriere-sol-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Photo-arriere-sol-1380x920.webp 1380w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Photo-arriere-sol-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Photo-arriere-sol-1024x682.webp 1024w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Photo-arriere-sol-768x512.webp 768w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Photo-arriere-sol-jpg.webp 1400w" sizes="(max-width: 1380px) 100vw, 1380px" /> </a>
467 + </div>
468 + </li>
469 + </ul>
470 + <a class="uk-position-center-left uk-position-small uk-hidden-hover uk-slidenav-large" href="#" uk-slidenav-previous uk-slider-item="previous"></a>
471 + <a class="uk-position-center-right uk-position-small uk-hidden-hover uk-slidenav-large" href="#" uk-slidenav-next uk-slider-item="next"></a>
472 + </div>
473 + </div>
474 + <div class="uk-section-default">
475 + <div class="uk-position-relative">
476 +
477 + <div data-service="acf-custom-maps" data-category="marketing" data-placeholder-image="https://groupeimmobilierbrochu.com/wp-content/plugins/complianz-gdpr/assets/images/placeholders/google-maps-minimal-1280x920.jpg" class="cmplz-placeholder-element acf-map" data-zoom="16">
478 + <div class="marker" data-lat="46.7976266" data-lng="-71.155219"></div>
479 + </div>
480 + </div>
481 + </div>
482 +
483 + <div class="uk-section uk-section-large uk-section-muted">
484 + <div class="uk-container">
485 + <div uk-grid>
486 + <div class=" uk-margin-auto uk-text-center">
487 + <h3 class="uk-h2">Consultez nos autres projets</h3>
488 + </div>
489 + </div>
490 + <div uk-grid>
491 + <div class="uk-width-1-2@m project">
492 +
493 +
494 + <div class="uk-panel uk-margin-remove-first-child uk-inline">
495 + <a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">
496 + <div class="uk-inline-clip uk-transition-toggle">
497 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/lasentinellelevis-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </div>
498 + </a>
499 + <div class="uk-margin-top uk-flex uk-flex-middle" uk-grid>
500 + <div class="uk-width-expand">
501 + <div class="el-meta uk-h6 uk-text-primary uk-link-reset uk-margin-remove-bottom">
502 + <a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis</a>
503 + </div>
504 + <h3 class="el-title uk-h3 uk-margin-remove-top uk-margin-remove-bottom">
505 + <a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/" class="uk-link-reset">La Sentinelle</a>
506 + </h3>
507 + </div>
508 +
509 + </div>
510 +
511 + <div class="">
512 + <div class="uk-text-small uk-text-bold uk-text-emphasis">
513 + 3½, 4½, 5½ neufs ou récents disponibles, garage ascenseur et climatiseur </div>
514 + </div>
515 + </div>
516 +
517 + </div>
518 + <div class="uk-width-1-2@s">
519 +
520 +
521 + <div class="uk-panel uk-margin-remove-first-child uk-inline">
522 + <a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">
523 + <div class="uk-inline-clip uk-transition-toggle">
524 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/St-Nicolas-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </div>
525 + </a>
526 + <div class="label-container">
527 + <span class="uk-label complete">Complet</span>
528 + </div>
529 + <div class="uk-margin-top uk-flex uk-flex-middle" uk-grid>
530 + <div class="uk-width-expand">
531 + <div class="el-meta uk-h6 uk-text-primary uk-link-reset uk-margin-remove-bottom">
532 + <a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Saint-Nicolas</a>
533 + </div>
534 + <h3 class="el-title uk-h3 uk-margin-remove-top uk-margin-remove-bottom">
535 + <a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/" class="uk-link-reset">Quartier Roc-Pointe</a>
536 + </h3>
537 + </div>
538 +
539 + </div>
540 +
541 + </div>
542 + </div>
543 + </div>
544 + </div>
545 + </div>
546 +
547 +
548 +
549 +
550 +
551 +
552 +</main><!-- #main -->
553 +
554 +
555 +
556 +
557 +
558 +<footer id="colophon" class="site-footer">
559 + <div class="uk-section uk-section-secondary uk-section-small uk-padding-remove-bottom">
560 + <div class="uk-container uk-container-large">
561 + <div class="uk-grid-large uk-margin-medium-bottom uk-text-center uk-text-left@m" uk-grid>
562 + <div class="uk-width-1-2@m uk-width-expand@l">
563 + <a href="">
564 + <img width="200" height="111" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/12/logo-brochu-blanc.png" class="attachment-full size-full" alt="" decoding="async" loading="lazy" /> </a>
565 + <div class="uk-margin uk-text-small">
566 + <a href="https://goo.gl/maps/NRyMwGtJZmP9zpwd8" class="uk-link-text uk-margin-remove-last-child" target="_blank">700, rue des Grands-Jardins<br />
567 +Lévis (Québec) G6W 0Y7</a>
568 + </div>
569 + </div>
570 + <div class="uk-width-1-2@m uk-width-1-5@l">
571 + <h4 class="uk-h5 uk-margin-remove">Menu</h4>
572 + <ul id="menu-menu-2" class="uk-list uk-margin-small uk-text-small"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-42"><a href="https://groupeimmobilierbrochu.com/">Accueil</a></li>
573 +<li class="menu-item menu-item-type-post_type_archive menu-item-object-project menu-item-43 current-menu-item"><a href="https://groupeimmobilierbrochu.com/projets/">Projets</a></li>
574 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="https://groupeimmobilierbrochu.com/a-propos/">À propos</a></li>
575 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-48"><a href="https://groupeimmobilierbrochu.com/contact/">Contact</a></li>
576 +</ul> </div>
577 + <div class="uk-width-1-2@m uk-width-1-5@l">
578 + <h4 class="uk-h5 uk-margin-remove">Projets</h4>
579 + <ul class="uk-list uk-margin-small uk-text-small">
580 + <li><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Le Pilier &#8211; Finaliste du prix Nobilis 2026</a></li>
581 + <li><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">La Sentinelle</a></li>
582 + <li><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Promenade des Forts</a></li>
583 + <li><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Boul. du Centre-Hospitalier</a></li>
584 + <li><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Habitat 2000</a></li>
585 + <li><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Seigneurie des Ponts</a></li>
586 + <li><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">St-Lambert-de-Lauzon</a></li>
587 + <li><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Quartier Roc-Pointe</a></li>
588 + <li><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Les Immeubles Masson</a></li>
589 + </ul>
590 + </div>
591 + <div class="uk-width-1-2@m uk-width-expand@l">
592 + <h4 class="uk-h5 uk-margin-remove">Communiquez avec nous</h4>
593 + <h5 class="uk-h6 uk-margin-small-top uk-margin-remove-bottom">Téléphone</h5>
594 + <div class="uk-text-small uk-margin-"><a href="tel:418 832-6123 option 1" class="uk-link-text uk-margin-remove-last-child">418 832-6123 option 1</a></div>
595 + <h4 class="uk-h6 uk-margin-small-top uk-margin-remove-bottom">Courriel</h4>
596 + <div class="uk-text-small uk-margin-"><a href="/cdn-cgi/l/email-protection#4d21222e2c392422230d2a3f22383d28242020222f242124283f2f3f222e2538632e2220" class="uk-link-text uk-margin-remove-last-child"><span class="__cf_email__" data-cfemail="84e8ebe7e5f0edebeac4e3f6ebf1f4e1ede9e9ebe6ede8ede1f6e6f6ebe7ecf1aae7ebe9">[email&#160;protected]</span></a></div>
597 + <div class="uk-margin">
598 + <a href="https://www.facebook.com/groupeimmobilierbrochu" class="" uk-icon="icon: facebook" target="_blank"></a>
599 + <a href="https://www.linkedin.com/company/groupe-immobilier-brochu/" class="" uk-icon="icon: linkedin" target="_blank"></a>
600 + </div>
601 +
602 + </div>
603 +
604 + </div>
605 + </div>
606 +
607 + <div class="uk-container uk-container-xlarge">
608 + <hr />
609 + </div>
610 +
611 + <div class="uk-section uk-section-xsmall uk-section-secondary">
612 + <div class="uk-container uk-container-xlarge">
613 +
614 + <div class="site-info">
615 + <div class="uk-text-center uk-text-small">
616 + © 2022-2026 Groupe immobilier Brochu inc. Tous droits réservés. RBQ : 5697-8943-01
617 + </div>
618 + </div><!-- .site-info -->
619 + </div>
620 + </div>
621 + </div>
622 +</footer><!-- #colophon -->
623 +</div><!-- #page -->
624 +</div><!-- #page-container -->
625 +
626 +<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="speculationrules">
627 +{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/GIB-appartement/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
628 +</script>
629 +
630 +<!-- Consent Management powered by Complianz | GDPR/CCPA Cookie Consent https://wordpress.org/plugins/complianz-gdpr -->
631 +<div id="cmplz-cookiebanner-container"><div class="cmplz-cookiebanner cmplz-hidden banner-1 banner-a optin cmplz-bottom-right cmplz-categories-type-view-preferences" aria-modal="true" data-nosnippet="true" role="dialog" aria-live="polite" aria-labelledby="cmplz-header-1-optin" aria-describedby="cmplz-message-1-optin">
632 + <div class="cmplz-header">
633 + <div class="cmplz-logo"></div>
634 + <div class="cmplz-title" id="cmplz-header-1-optin">Gérer le consentement</div>
635 + <div class="cmplz-close" tabindex="0" role="button" aria-label="Fermez la boîte de dialogue">
636 + <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="times" class="svg-inline--fa fa-times fa-w-11" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path fill="currentColor" d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg>
637 + </div>
638 + </div>
639 +
640 + <div class="cmplz-divider cmplz-divider-header"></div>
641 + <div class="cmplz-body">
642 + <div class="cmplz-message" id="cmplz-message-1-optin">Pour offrir les meilleures expériences, nous utilisons des technologies telles que les témoins pour stocker et/ou accéder aux informations des appareils. Le fait de consentir à ces technologies nous permettra de traiter des données telles que le comportement de navigation ou les ID uniques sur ce site. Le fait de ne pas consentir ou de retirer son consentement peut avoir un effet négatif sur certaines caractéristiques et fonctions.</div>
643 + <!-- categories start -->
644 + <div class="cmplz-categories">
645 + <details class="cmplz-category cmplz-functional" >
646 + <summary>
647 + <span class="cmplz-category-header">
648 + <span class="cmplz-category-title">Fonctionnel</span>
649 + <span class='cmplz-always-active'>
650 + <span class="cmplz-banner-checkbox">
651 + <input type="checkbox"
652 + id="cmplz-functional-optin"
653 + data-category="cmplz_functional"
654 + class="cmplz-consent-checkbox cmplz-functional"
655 + size="40"
656 + value="1"/>
657 + <label class="cmplz-label" for="cmplz-functional-optin" tabindex="0"><span class="screen-reader-text">Fonctionnel</span></label>
658 + </span>
659 + Toujours activé </span>
660 + <span class="cmplz-icon cmplz-open">
661 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
662 + </span>
663 + </span>
664 + </summary>
665 + <div class="cmplz-description">
666 + <span class="cmplz-description-functional">Le stockage ou l’accès technique est strictement nécessaire dans la finalité d’intérêt légitime de permettre l’utilisation d’un service spécifique explicitement demandé par l’abonné ou l’utilisateur, ou dans le seul but d’effectuer la transmission d’une communication sur un réseau de communications électroniques.</span>
667 + </div>
668 + </details>
669 +
670 + <details class="cmplz-category cmplz-preferences" >
671 + <summary>
672 + <span class="cmplz-category-header">
673 + <span class="cmplz-category-title">Préférences</span>
674 + <span class="cmplz-banner-checkbox">
675 + <input type="checkbox"
676 + id="cmplz-preferences-optin"
677 + data-category="cmplz_preferences"
678 + class="cmplz-consent-checkbox cmplz-preferences"
679 + size="40"
680 + value="1"/>
681 + <label class="cmplz-label" for="cmplz-preferences-optin" tabindex="0"><span class="screen-reader-text">Préférences</span></label>
682 + </span>
683 + <span class="cmplz-icon cmplz-open">
684 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
685 + </span>
686 + </span>
687 + </summary>
688 + <div class="cmplz-description">
689 + <span class="cmplz-description-preferences">Le stockage ou l’accès technique est nécessaire dans la finalité d’intérêt légitime de stocker des préférences qui ne sont pas demandées par l’abonné ou l’utilisateur.</span>
690 + </div>
691 + </details>
692 +
693 + <details class="cmplz-category cmplz-statistics" >
694 + <summary>
695 + <span class="cmplz-category-header">
696 + <span class="cmplz-category-title">Statistiques</span>
697 + <span class="cmplz-banner-checkbox">
698 + <input type="checkbox"
699 + id="cmplz-statistics-optin"
700 + data-category="cmplz_statistics"
701 + class="cmplz-consent-checkbox cmplz-statistics"
702 + size="40"
703 + value="1"/>
704 + <label class="cmplz-label" for="cmplz-statistics-optin" tabindex="0"><span class="screen-reader-text">Statistiques</span></label>
705 + </span>
706 + <span class="cmplz-icon cmplz-open">
707 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
708 + </span>
709 + </span>
710 + </summary>
711 + <div class="cmplz-description">
712 + <span class="cmplz-description-statistics">Le stockage ou l’accès technique qui est utilisé exclusivement à des fins statistiques.</span>
713 + <span class="cmplz-description-statistics-anonymous">Le stockage ou l’accès technique qui est utilisé exclusivement dans des finalités statistiques anonymes. En l’absence d’une assignation à comparaître, d’une conformité volontaire de la part de votre fournisseur d’accès à internet ou d’enregistrements supplémentaires provenant d’une tierce partie, les informations stockées ou extraites à cette seule fin ne peuvent généralement pas être utilisées pour vous identifier.</span>
714 + </div>
715 + </details>
716 + <details class="cmplz-category cmplz-marketing" >
717 + <summary>
718 + <span class="cmplz-category-header">
719 + <span class="cmplz-category-title">Marketing</span>
720 + <span class="cmplz-banner-checkbox">
721 + <input type="checkbox"
722 + id="cmplz-marketing-optin"
723 + data-category="cmplz_marketing"
724 + class="cmplz-consent-checkbox cmplz-marketing"
725 + size="40"
726 + value="1"/>
727 + <label class="cmplz-label" for="cmplz-marketing-optin" tabindex="0"><span class="screen-reader-text">Marketing</span></label>
728 + </span>
729 + <span class="cmplz-icon cmplz-open">
730 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
731 + </span>
732 + </span>
733 + </summary>
734 + <div class="cmplz-description">
735 + <span class="cmplz-description-marketing">Le stockage ou l’accès technique est nécessaire pour créer des profils d’utilisateurs afin d’envoyer des publicités, ou pour suivre l’utilisateur sur un site web ou sur plusieurs sites web ayant des finalités marketing similaires.</span>
736 + </div>
737 + </details>
738 + </div><!-- categories end -->
739 + </div>
740 +
741 + <div class="cmplz-links cmplz-information">
742 + <a class="cmplz-link cmplz-manage-options cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Gérer les options</a>
743 + <a class="cmplz-link cmplz-manage-third-parties cookie-statement" href="#" data-relative_url="#cmplz-cookies-overview">Gérer les services</a>
744 + <a class="cmplz-link cmplz-manage-vendors tcf cookie-statement" href="#" data-relative_url="#cmplz-tcf-wrapper">Gérer {vendor_count} fournisseurs</a>
745 + <a class="cmplz-link cmplz-external cmplz-read-more-purposes tcf" target="_blank" rel="noopener noreferrer nofollow" href="https://cookiedatabase.org/tcf/purposes/">En savoir plus sur ces finalités</a>
746 + </div>
747 +
748 + <div class="cmplz-divider cmplz-footer"></div>
749 +
750 + <div class="cmplz-buttons">
751 + <button class="cmplz-btn cmplz-accept">Accepter</button>
752 + <button class="cmplz-btn cmplz-deny">Refuser</button>
753 + <button class="cmplz-btn cmplz-view-preferences">Voir les préférences</button>
754 + <button class="cmplz-btn cmplz-save-preferences">Enregistrer les préférences</button>
755 + <a class="cmplz-btn cmplz-manage-options tcf cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Voir les préférences</a>
756 + </div>
757 +
758 + <div class="cmplz-links cmplz-documents">
759 + <a class="cmplz-link cookie-statement" href="#" data-relative_url="">{title}</a>
760 + <a class="cmplz-link privacy-statement" href="#" data-relative_url="">{title}</a>
761 + <a class="cmplz-link impressum" href="#" data-relative_url="">{title}</a>
762 + </div>
763 +
764 +</div>
765 +</div>
766 + <div id="cmplz-manage-consent" data-nosnippet="true"><button class="cmplz-btn cmplz-hidden cmplz-manage-consent manage-consent-1">Gérer le consentement</button>
767 +
768 +</div><script id="appartements-brochu-uikit-js" src="https://groupeimmobilierbrochu.com/wp-content/themes/GIB-appartement/js/theme.min.js?ver=1.1.4"></script>
769 +<script id="appartements-brochu-custom-js" src="https://groupeimmobilierbrochu.com/wp-content/themes/GIB-appartement/js/customizer.js?ver=1.1.4"></script>
770 +<script type="text/plain" data-service="acf-custom-maps" data-category="marketing" id="appartements-brochu-map-js" data-cmplz-src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAp1W5ywuQprlSqthCHR2XLpQBTSyeSBpk&#038;callback=initMaa&#038;ver=1.1.4"></script>
771 +<script id="cmplz-cookiebanner-js-extra">
772 +var complianz = {"prefix":"cmplz_","user_banner_id":"1","set_cookies":[],"block_ajax_content":"","banner_version":"11","version":"7.0.5","store_consent":"","do_not_track_enabled":"1","consenttype":"optin","region":"ca","geoip":"","dismiss_timeout":"","disable_cookiebanner":"","soft_cookiewall":"","dismiss_on_scroll":"","cookie_expiry":"365","url":"https://groupeimmobilierbrochu.com/wp-json/complianz/v1/","locale":"lang=fr&locale=fr_CA","set_cookies_on_root":"","cookie_domain":"","current_policy_id":"34","cookie_path":"/","categories":{"statistics":"statistiques","marketing":"marketing"},"tcf_active":"","placeholdertext":"Cliquez pour accepter les t\u00e9moins {category} et activer ce contenu","css_file":"https://groupeimmobilierbrochu.com/wp-content/uploads/complianz/css/banner-{banner_id}-{type}.css?v=11","page_links":{"ca":{"cookie-statement":{"title":"Politique de confidentialit\u00e9","url":"https://groupeimmobilierbrochu.com/politique-de-confidentialite/"}}},"tm_categories":"","forceEnableStats":"","preview":"","clean_cookies":"","aria_label":"Cliquez pour accepter les t\u00e9moins {category} et activer ce contenu"};
773 +//# sourceURL=cmplz-cookiebanner-js-extra
774 +</script>
775 +<script defer id="cmplz-cookiebanner-js" src="https://groupeimmobilierbrochu.com/wp-content/plugins/complianz-gdpr/cookiebanner/js/complianz.min.js?ver=1715620671"></script>
776 +<script id="wp-emoji-settings" type="application/json">
777 +{"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://groupeimmobilierbrochu.com/wp-includes/js/wp-emoji-release.min.js?ver=7.0.3"}}
778 +</script>
779 +<script type="module">
780 +/*! This file is auto-generated */
781 +var e="script#wp-emoji-settings",t=document.querySelector(e);if(!(t instanceof HTMLScriptElement))throw new Error("Element missing: "+e);const r=JSON.parse(t.text),s=(window._wpemojiSettings=r,"wpEmojiSettingsSupports"),o=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(s,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const r=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===r[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,r){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!r(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,r){let a;const s=(a="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),o=(s.textBaseline="top",s.font="600 32px Arial",{});return e.forEach(e=>{o[e]=t(s,e,n,r)}),o}function a(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}r.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(s));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(o),u.toString(),c.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"});const a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=e=>{i(n=e.data),a.terminate(),t(n)})}catch(e){}i(n=f(o,u,c,p))}t(n)}).then(e=>{for(const n in e)r.supports[n]=e[n],r.supports.everything=r.supports.everything&&r.supports[n],"flag"!==n&&(r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&r.supports[n]);var t;r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&!r.supports.flag,r.supports.everything||((t=r.source||{}).concatemoji?a(t.concatemoji):t.wpemoji&&t.twemoji&&(a(t.twemoji),a(t.wpemoji)))});
782 +//# sourceURL=https://groupeimmobilierbrochu.com/wp-includes/js/wp-emoji-loader.min.js
783 +</script>
784 +
785 +
786 +</body>
787 +
788 +</html>
\ No newline at end of file
added tests/fixtures/brochu/96c01f8312dde6e3b3d8.html +813 −0
@@ -0,0 +1,813 @@
1 +<!doctype html>
2 +<html lang="fr-CA">
3 +
4 +<head>
5 + <meta charset="UTF-8">
6 + <meta name="viewport" content="width=device-width, initial-scale=1">
7 + <link rel="profile" href="https://gmpg.org/xfn/11">
8 + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
9 +
10 +<!-- Google Tag Manager for WordPress by gtm4wp.com -->
11 +<script data-cfasync="false" data-pagespeed-no-defer>
12 + var gtm4wp_datalayer_name = "dataLayer";
13 + var dataLayer = dataLayer || [];
14 +
15 + const gtm4wp_scrollerscript_debugmode = false;
16 + const gtm4wp_scrollerscript_callbacktime = 100;
17 + const gtm4wp_scrollerscript_readerlocation = 150;
18 + const gtm4wp_scrollerscript_contentelementid = "content";
19 + const gtm4wp_scrollerscript_scannertime = 60;
20 +</script>
21 +<!-- End Google Tag Manager for WordPress by gtm4wp.com -->
22 + <!-- This site is optimized with the Yoast SEO plugin v28.2 - https://yoast.com/product/yoast-seo-wordpress/ -->
23 + <title>Seigneurie des Ponts - Groupe Immobilier Brochu</title>
24 + <link rel="canonical" href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/" />
25 + <meta property="og:locale" content="fr_CA" />
26 + <meta property="og:type" content="article" />
27 + <meta property="og:title" content="Seigneurie des Ponts - Groupe Immobilier Brochu" />
28 + <meta property="og:url" content="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/" />
29 + <meta property="og:site_name" content="Groupe Immobilier Brochu" />
30 + <meta property="article:modified_time" content="2026-08-06T18:43:30+00:00" />
31 + <meta name="twitter:card" content="summary_large_image" />
32 + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/groupeimmobilierbrochu.com\/projets\/seigneurie-des-ponts\/","url":"https:\/\/groupeimmobilierbrochu.com\/projets\/seigneurie-des-ponts\/","name":"Seigneurie des Ponts - Groupe Immobilier Brochu","isPartOf":{"@id":"https:\/\/groupeimmobilierbrochu.com\/#website"},"datePublished":"2022-11-26T18:55:24+00:00","dateModified":"2026-08-06T18:43:30+00:00","breadcrumb":{"@id":"https:\/\/groupeimmobilierbrochu.com\/projets\/seigneurie-des-ponts\/#breadcrumb"},"inLanguage":"fr-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/groupeimmobilierbrochu.com\/projets\/seigneurie-des-ponts\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/groupeimmobilierbrochu.com\/projets\/seigneurie-des-ponts\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/groupeimmobilierbrochu.com\/"},{"@type":"ListItem","position":2,"name":"Projets","item":"https:\/\/groupeimmobilierbrochu.com\/projets\/"},{"@type":"ListItem","position":3,"name":"Seigneurie des Ponts"}]},{"@type":"WebSite","@id":"https:\/\/groupeimmobilierbrochu.com\/#website","url":"https:\/\/groupeimmobilierbrochu.com\/","name":"Groupe Immobilier Brochu","description":"Développeurs immobilier","publisher":{"@id":"https:\/\/groupeimmobilierbrochu.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/groupeimmobilierbrochu.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-CA"},{"@type":"Organization","@id":"https:\/\/groupeimmobilierbrochu.com\/#organization","name":"Groupe Immobilier Brochu","url":"https:\/\/groupeimmobilierbrochu.com\/","logo":{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/groupeimmobilierbrochu.com\/#\/schema\/logo\/image\/","url":"https:\/\/groupeimmobilierbrochu.com\/wp-content\/uploads\/2023\/11\/cropped-Logo-jpg.webp","contentUrl":"https:\/\/groupeimmobilierbrochu.com\/wp-content\/uploads\/2023\/11\/cropped-Logo-jpg.webp","width":765,"height":396,"caption":"Groupe Immobilier Brochu"},"image":{"@id":"https:\/\/groupeimmobilierbrochu.com\/#\/schema\/logo\/image\/"}}]}</script>
33 + <!-- / Yoast SEO plugin. -->
34 +
35 +
36 +<link rel='dns-prefetch' href='//maps.googleapis.com' />
37 +<link rel="alternate" type="application/rss+xml" title="Groupe Immobilier Brochu &raquo; Flux" href="https://groupeimmobilierbrochu.com/feed/" />
38 +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://groupeimmobilierbrochu.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fgroupeimmobilierbrochu.com%2Fprojets%2Fseigneurie-des-ponts%2F" />
39 +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://groupeimmobilierbrochu.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fgroupeimmobilierbrochu.com%2Fprojets%2Fseigneurie-des-ponts%2F&#038;format=xml" />
40 +<style id="wp-img-auto-sizes-contain-inline-css">
41 +img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
42 +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
43 +</style>
44 +<link rel='stylesheet' id='formidable-css' href='https://groupeimmobilierbrochu.com/wp-content/plugins/formidable/css/formidableforms.css?ver=7162051' media='all' />
45 +<style id="wp-emoji-styles-inline-css">
46 +
47 + img.wp-smiley, img.emoji {
48 + display: inline !important;
49 + border: none !important;
50 + box-shadow: none !important;
51 + height: 1em !important;
52 + width: 1em !important;
53 + margin: 0 0.07em !important;
54 + vertical-align: -0.1em !important;
55 + background: none !important;
56 + padding: 0 !important;
57 + }
58 +/*# sourceURL=wp-emoji-styles-inline-css */
59 +</style>
60 +<style id="wp-block-library-inline-css">
61 +:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
62 +
63 +/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */
64 +</style>
65 +<style id="classic-theme-styles-inline-css">
66 +/*! This file is auto-generated */
67 +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
68 +/*# sourceURL=/wp-includes/css/classic-themes.min.css */
69 +</style>
70 +
71 +<style id="global-styles-inline-css">
72 +:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
73 +/*# sourceURL=global-styles-inline-css */
74 +</style>
75 +
76 +<link rel='stylesheet' id='cmplz-general-css' href='https://groupeimmobilierbrochu.com/wp-content/plugins/complianz-gdpr/assets/css/cookieblocker.min.css?ver=1715620671' media='all' />
77 +<link rel='stylesheet' id='appartements-brochu-style-css' href='https://groupeimmobilierbrochu.com/wp-content/themes/GIB-appartement/css/theme.min.css?ver=1.1.1674306552' media='all' />
78 +<script id="gtm4wp-scroll-tracking-js" src="https://groupeimmobilierbrochu.com/wp-content/plugins/duracelltomi-google-tag-manager/dist/js/analytics-talk-content-tracking.js?ver=1.22.3"></script>
79 +<script id="jquery-core-js" src="https://groupeimmobilierbrochu.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script>
80 +<script id="jquery-migrate-js" src="https://groupeimmobilierbrochu.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script>
81 +<link rel="https://api.w.org/" href="https://groupeimmobilierbrochu.com/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://groupeimmobilierbrochu.com/xmlrpc.php?rsd" />
82 +<meta name="generator" content="WordPress 7.0.3" />
83 +<link rel='shortlink' href='https://groupeimmobilierbrochu.com/?p=26' />
84 +<meta name="generator" content="performance-lab 4.2.0; plugins: ">
85 +<script>document.documentElement.className += " js";</script>
86 + <style>.cmplz-hidden {
87 + display: none !important;
88 + }</style>
89 +<!-- Google Tag Manager for WordPress by gtm4wp.com -->
90 +<!-- GTM Container placement set to automatic -->
91 +<script data-cfasync="false" data-pagespeed-no-defer>
92 + var dataLayer_content = {"pagePostType":"project","pagePostType2":"single-project","pagePostAuthor":"gael.bouffard"};
93 + dataLayer.push( dataLayer_content );
94 +</script>
95 +<script data-cfasync="false" data-pagespeed-no-defer>
96 +(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
97 +new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
98 +j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
99 +'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
100 +})(window,document,'script','dataLayer','GTM-WRXBQMK3');
101 +</script>
102 +<!-- End Google Tag Manager for WordPress by gtm4wp.com -->
103 +
104 + <!-- <meta property="og:image" content="" /> -->
105 +
106 +
107 +
108 +
109 +<link rel="icon" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" sizes="32x32" />
110 +<link rel="icon" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" sizes="192x192" />
111 +<link rel="apple-touch-icon" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" />
112 +<meta name="msapplication-TileImage" content="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" />
113 +<style id="wp-custom-css">
114 +/* Fix chevauchement titre "Reconnaissances" sur ecrans intermediaires */
115 +@media (min-width: 960px) and (max-width: 1360px) {
116 + #news .uk-grid > .uk-width-1-4\@m,
117 + #news .uk-grid > .uk-width-expand\@m {
118 + width: 100% !important;
119 + max-width: 100% !important;
120 + }
121 +}
122 +
123 +/* Masquer la barre verte des projets quand elle deborderait sur deux lignes */
124 +@media (max-width: 1510px) {
125 + .project-list {
126 + display: none;
127 + }
128 +}
129 +
130 +/* Retarder le basculement vers le menu mobile */
131 +@media (min-width: 992px) {
132 + .tm-header-mobile.uk-hidden\@l {
133 + display: none !important;
134 + }
135 + .tm-header.uk-visible\@l {
136 + display: block !important;
137 + }
138 +}
139 +@media (max-width: 991px) {
140 + .tm-header.uk-visible\@l {
141 + display: none !important;
142 + }
143 + .tm-header-mobile.uk-hidden\@l {
144 + display: block !important;
145 + }
146 +}
147 +</style>
148 +</head>
149 +
150 +
151 +<body data-cmplz=1 class="wp-singular project-template-default single single-project postid-26 wp-custom-logo wp-theme-GIB-appartement no-sidebar">
152 +
153 +<!-- GTM Container placement set to automatic -->
154 +<!-- Google Tag Manager (noscript) -->
155 + <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WRXBQMK3" height="0" width="0" style="display:none;visibility:hidden" aria-hidden="true"></iframe></noscript>
156 +<!-- End Google Tag Manager (noscript) -->
157 + <div id="page-container" class="page-container uk-clearfix">
158 + <div id="page" class="tm-page uk-margin-auto">
159 + <!-- <div class="uk-background-primary uk-padding">
160 + fef
161 + </div> -->
162 + <div class="tm-header-mobile uk-hidden@l">
163 +
164 +
165 + <div uk-sticky="" show-on-up="" animation="uk-animation-slide-top" cls-active="uk-navbar-sticky" sel-target=".uk-navbar-container" class="uk-sticky">
166 +
167 + <div class="uk-navbar-container">
168 + <nav uk-navbar="container: .tm-header-mobile" class="uk-navbar">
169 + <div class="uk-navbar-center">
170 + <div class="uk-width-expand uk-margin-auto logo">
171 + <a href="https://groupeimmobilierbrochu.com/" class="custom-logo-link" rel="home"><img width="765" height="396" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp" class="custom-logo" alt="Groupe Immobilier Brochu" decoding="async" fetchpriority="high" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp 765w, https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg-300x155.webp 300w" sizes="(max-width: 765px) 100vw, 765px" /></a> </div>
172 + </div>
173 +
174 +
175 +
176 + <div class="uk-navbar-right">
177 + <a class="uk-navbar-toggle" href="#tm-mobile" uk-toggle="" aria-expanded="false">
178 + <div uk-navbar-toggle-icon="" class="uk-icon uk-navbar-toggle-icon"></div>
179 + </a>
180 + </div>
181 +
182 +
183 + </nav>
184 + </div>
185 +
186 +
187 + </div>
188 + <div class="uk-sticky-placeholder" style="height: 90px; margin: 0px;" hidden=""></div>
189 +
190 + <div id="tm-mobile" class="uk-modal-full uk-modal" uk-modal>
191 + <div class="uk-modal-dialog uk-modal-body uk-height-viewport">
192 + <button class="uk-modal-close-full uk-icon uk-close" type="button" uk-close=""></button>
193 + <div class="uk-margin-auto-vertical uk-width-1-1">
194 + <div class="uk-child-width-1-1 uk-grid uk-grid-stack" uk-grid>
195 + <div>
196 + <div class="uk-panel">
197 + <ul id="menu-menu" class="uk-nav uk-nav-default uk-nav-divider"><li id="menu-item-42" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-42"><a href="https://groupeimmobilierbrochu.com/">Accueil</a></li>
198 +<li id="menu-item-43" class="menu-item menu-item-type-post_type_archive menu-item-object-project menu-item-43 current-menu-item"><a href="https://groupeimmobilierbrochu.com/projets/">Projets</a></li>
199 +<li id="menu-item-49" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="https://groupeimmobilierbrochu.com/a-propos/">À propos</a></li>
200 +<li id="menu-item-48" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-48"><a href="https://groupeimmobilierbrochu.com/contact/">Contact</a></li>
201 +</ul> <div class="uk-navbar-item uk-margin">
202 + <a href="https://groupeimmobilierbrochu.com/contact/" class="uk-button uk-button-primary uk-button-">Planifiez une visite</a>
203 + </div>
204 + <div class="uk-grid-small uk-child-width-auto uk-flex-middle uk-flex-center uk-margin" uk-grid>
205 + <div><a href="tel:4188326123option1" class="phone uk-text-emphasis">+ 418 832-6123 option 1</a></div>,
206 + <div>
207 + <ul class="uk-iconnav">
208 + <li><a href="https://www.linkedin.com/company/groupe-immobilier-brochu/" class="social" uk-icon="icon: linkedin; ratio:0.85" target="_blank"></a></li>
209 + <li><a href="https://www.facebook.com/groupeimmobilierbrochu" class="social" uk-icon="icon: facebook; ratio:0.85" target="_blank"></a></li>
210 +
211 + </ul>
212 + </div>
213 + </div>
214 + <div class="project-list">
215 + <div class="">
216 + <div class="uk-grid uk-grid-small uk-text-center uk-text-small" uk-grid>
217 +
218 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis secteur<br/>Saint-Romuald / Le Pilier</a></div>
219 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis secteur<br />
220 +Fort numéro 1</a></div>
221 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Lévis secteur<br />
222 +Centre-ville</a></div>
223 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis secteur<br />
224 +Charny / Pionniers</a></div>
225 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Lévis secteur <br />
226 +Charny / Aquaréna</a></div>
227 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Lévis secteur <br />
228 +Saint-Romuald</a></div>
229 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-<br />
230 +de-Lauzon</a></div>
231 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Lévis secteur <br />
232 +Saint-Nicolas</a></div>
233 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Québec secteur <br />
234 +Les Saules</a></div>
235 +
236 + </div>
237 + </div>
238 + </div>
239 + <p class="uk-text-meta uk-text-center">
240 + © 2022-2026 Groupe immobilier Brochu inc. Tous droits réservés. RBQ : 5697-8943-01
241 +
242 + </p>
243 + </div>
244 + </div>
245 +
246 + </div>
247 + </div>
248 +
249 + </div>
250 + </div>
251 +
252 + </div>
253 + <div class="tm-header uk-visible@l tm-header-overlay" uk-header>
254 + <div class="project-list uk-background-primary uk-padding-small uk-light">
255 + <div class="uk-container uk-container-large">
256 + <div class="uk-flex uk-flex-middle uk-flex-right">
257 + <div class="uk-h6 uk-margin-remove">Nos projets :</div>
258 + <ul class="uk-subnav uk-subnav-divider uk-text-center uk-margin-remove">
259 + <li><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis secteur<br/>Saint-Romuald / Le Pilier</a></li>
260 + <li><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis secteur<br />
261 +Fort numéro 1</a></li>
262 + <li><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Lévis secteur<br />
263 +Centre-ville</a></li>
264 + <li><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis secteur<br />
265 +Charny / Pionniers</a></li>
266 + <li><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Lévis secteur <br />
267 +Charny / Aquaréna</a></li>
268 + <li><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Lévis secteur <br />
269 +Saint-Romuald</a></li>
270 + <li><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-<br />
271 +de-Lauzon</a></li>
272 + <li><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Lévis secteur <br />
273 +Saint-Nicolas</a></li>
274 + <li><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Québec secteur <br />
275 +Les Saules</a></li>
276 + </ul>
277 + </div>
278 + </div>
279 + </div>
280 +
281 + <div uk-sticky media="@l" show-on-up="true" animation="uk-animation-slide-top" cls-inactive="" cls-active="" sel-target=".uk-navbar-container">
282 + <div class="uk-navbar-container ">
283 +
284 + <div class="uk-container uk-container-large">
285 + <nav class="uk-navbar uk-flex-middle uk-margin-small-top uk-margin-small-bottom" uk-navbar>
286 + <div class="uk-navbar-left">
287 +
288 + <div class="logo-default">
289 + <a href="https://groupeimmobilierbrochu.com/" class="custom-logo-link" rel="home"><img width="765" height="396" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp" class="custom-logo" alt="Groupe Immobilier Brochu" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp 765w, https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg-300x155.webp 300w" sizes="(max-width: 765px) 100vw, 765px" /></a> </div>
290 +
291 + </div>
292 + <div class="uk-navbar-right">
293 + <div>
294 + <!-- <div class="project-list">
295 +
296 + <ul class="uk-subnav uk-subnav-divider uk-flex uk-flex-bottom uk-flex-right uk-margin-small-bottom uk-text-center">
297 + <li><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis secteur<br/>Saint-Romuald / Le Pilier</a></li>
298 + <li><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis secteur<br />
299 +Fort numéro 1</a></li>
300 + <li><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Lévis secteur<br />
301 +Centre-ville</a></li>
302 + <li><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis secteur<br />
303 +Charny / Pionniers</a></li>
304 + <li><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Lévis secteur <br />
305 +Charny / Aquaréna</a></li>
306 + <li><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Lévis secteur <br />
307 +Saint-Romuald</a></li>
308 + <li><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-<br />
309 +de-Lauzon</a></li>
310 + <li><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Lévis secteur <br />
311 +Saint-Nicolas</a></li>
312 + <li><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Québec secteur <br />
313 +Les Saules</a></li>
314 + </ul>
315 +
316 + </div> -->
317 +
318 + <div class="uk-flex uk-flex-middle uk-flex-right">
319 + <ul id="menu-menu-1" class="uk-navbar-nav"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-42"><a href="https://groupeimmobilierbrochu.com/">Accueil</a></li>
320 +<li class="menu-item menu-item-type-post_type_archive menu-item-object-project menu-item-43 current-menu-item"><a href="https://groupeimmobilierbrochu.com/projets/">Projets</a></li>
321 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="https://groupeimmobilierbrochu.com/a-propos/">À propos</a></li>
322 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-48"><a href="https://groupeimmobilierbrochu.com/contact/">Contact</a></li>
323 +</ul>
324 + <a href="https://www.facebook.com/groupeimmobilierbrochu" class="uk-margin-small-right" uk-icon="icon: facebook" target="_blank"></a>
325 + <a href="https://groupeimmobilierbrochu.com/contact/" class="uk-button uk-button-primary uk-button-">Planifiez une visite</a>
326 + </div>
327 +
328 +
329 +
330 + </div>
331 + </div>
332 +
333 + </nav>
334 +
335 + <!-- </div> -->
336 +
337 + </div>
338 +
339 + </div>
340 +
341 +
342 +
343 + </div>
344 + <!-- <div class="uk-sticky-placeholder" style="height: 90px; margin: 0px;" hidden=""></div> -->
345 + <!-- <div class="uk-sticky-placeholder" style="height: 81px; margin: 0px;"></div> -->
346 +
347 + </div>
348 +
349 +
350 +<main class="project">
351 +
352 + <div class="uk-section-default">
353 + <div class="uk-section-large uk-height-large uk-flex uk-flex-center uk-flex-middle uk-background-cover uk-inline" data-src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/St-Romuald-4-jpg.webp" uk-img>
354 + <div class="uk-overlay-primary uk-position-cover"></div>
355 + <div class="uk-overlay uk-position-top uk-light">
356 + <div class="uk-container uk-container-large">
357 + <a href="https://groupeimmobilierbrochu.com/projets/" class="uk-text-small"><i class="fa-solid fa-chevron-left"></i> Voir tous les projets</a>
358 + </div>
359 + </div>
360 + <div class="uk-overlay uk-position-bottom">
361 + <div class="uk-container uk-container-large">
362 + <div class="">
363 + <div class="uk-margin-bottom">
364 + <span class="uk-label disp">Disponible octobre 2026</span>
365 + </div>
366 + <div class="uk-light">
367 + <div class="uk-h3 uk-margin-remove">
368 + Saint-Romuald </div>
369 + <h1 class="uk-h1 uk-margin-remove">Seigneurie des Ponts</h1>
370 + <div class="uk-margin-top">
371 + <i class="fa-solid fa-location-dot"></i>
372 + <a href="https://goo.gl/maps/7uszxNbELsaq4EwX8" target="_blank"> 1300 rue de Saturne, Lévis</a>
373 + </div>
374 +
375 + </div>
376 + </div>
377 + </div>
378 + </div>
379 + </div>
380 + </div>
381 +
382 + <div class="uk-section">
383 + <div class="uk-container uk-container-large">
384 + <div class="uk-grid-large uk-margin-bottom" uk-grid>
385 + <div class="uk-width-3-5@m">
386 + <h3>Parc immobilier de 42 logements</h3>
387 +<ul>
388 +<li>4 blocs de 6 logements</li>
389 +<li>2 blocs de 9 logements</li>
390 +<li>Grandeur des logements : 4 ½</li>
391 +<li>Date de construction : 2007-2010</li>
392 +</ul>
393 +<p>À quelques minutes de tous les services, nos logements de Saint-Romuald sont situés aux abords des deux ponts, sortie 314 de l’autoroute 20.</p>
394 +<hr />
395 +<h3>Quiétude et proximité d’accès</h3>
396 +<ul>
397 +<li>Grands logements</li>
398 +<li>2 stationnements inclus</li>
399 +<li>Cabanon ou remise intérieure inclus</li>
400 +<li>Espace de rangement dans le logement</li>
401 +<li>Couvre-plancher de céramique et bois flottant</li>
402 +<li>Bonne insonorisation</li>
403 +<li>En retrait de la circulation routière</li>
404 +<li>Quartier ceinturé par un ruisseau</li>
405 +<li>Facilité d&rsquo;accès aux deux ponts par le boulevard Guillaume-Couture.</li>
406 +<li>À proximité de deux zones commerciales importantes (Méga-Centre Rive-Sud et zone Costco)</li>
407 +<li>Bien desservis par les transports en commun vers Québec et vers Lévis, plus d&rsquo;informations au <a href="https://www.stlevis.ca/">www.stlevis.ca</a></li>
408 +</ul>
409 +<p>* Les chiens ne sont pas permis dans nos propriétés</p>
410 +
411 + </div>
412 + <div class="uk-width-expand@m">
413 + <div class="uk-panel uk-background-muted uk-padding uk-text-center">
414 + <h3 class="uk-h3">Statut <span class="uk-label disp"> Disponible</span></h3>
415 + <div class="uk-alert-primary" uk-alert>
416 + <p class="uk-margin-remove uk-text-small uk-text-emphasis">Dès octobre 2026</p>
417 + </div>
418 + <div class="">
419 + <h3 class="uk-h5 uk-margin-small-bottom">À partir de 1425$ pour 4½</h3>
420 + <div class="uk-text-primary uk-text-bold">418-832-6123 option 1</div>
421 + <a href="/cdn-cgi/l/email-protection#b4d8dbd7d5c0dddbdaf4d3c6dbc1c4d1ddd9d9dbd6ddd8ddd1c6d6c6dbd7dcc19ad7dbd9"><span class="__cf_email__" data-cfemail="4925262a283d202627092e3b263c392c202424262b2025202c3b2b3b262a213c672a2624">[email&#160;protected]</span></a>
422 + </div>
423 + </div>
424 + <div class="uk-text-center uk-margin-top">
425 + <div>
426 + <a href="https://goo.gl/maps/7uszxNbELsaq4EwX8" target="_blank"><i class="fa-solid fa-location-dot"></i> 1300 rue de Saturne, Lévis</a>
427 + </div>
428 + </div>
429 + <div class="uk-margin uk-text-center">
430 + <a href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Plans_3-etages_St-Romuald.pdf" target="_blank" class="uk-button uk-button-text"><i class="fa-solid fa-file-pdf"></i> Consulter les plans</a>
431 + </div>
432 + </div>
433 +
434 + </div>
435 + </div>
436 + </div>
437 + <div class="uk-section uk-section-large uk-padding-remove-top">
438 + <div uk-grid>
439 + <div class=" uk-margin-auto uk-text-center uk-margin-medium-bottom">
440 + <h2 class="uk-h2">Découvrez votre nouvel espace de vie</h2>
441 + </div>
442 + </div>
443 + <div class="uk-position-relative uk-visible-toggle uk-light" tabindex="-1" uk-slider="clsActivated: uk-transition-active; center: true">
444 + <ul class="uk-slider-items uk-grid" uk-lightbox="animation: fade">
445 + <li class="uk-width-4-5 uk-width-2-5@m">
446 + <div class="uk-panel">
447 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_1-jpg.webp">
448 + <img width="1024" height="604" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_1-jpg.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_1-jpg.webp 1024w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_1-300x177.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_1-768x453.webp 768w" sizes="(max-width: 1024px) 100vw, 1024px" /> </a>
449 + </div>
450 + </li>
451 + <li class="uk-width-4-5 uk-width-2-5@m">
452 + <div class="uk-panel">
453 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_2-jpg.webp">
454 + <img width="1024" height="604" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_2-jpg.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_2-jpg.webp 1024w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_2-300x177.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_2-768x453.webp 768w" sizes="(max-width: 1024px) 100vw, 1024px" /> </a>
455 + </div>
456 + </li>
457 + <li class="uk-width-4-5 uk-width-2-5@m">
458 + <div class="uk-panel">
459 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_3-jpg.webp">
460 + <img width="1024" height="604" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_3-jpg.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_3-jpg.webp 1024w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_3-300x177.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_3-768x453.webp 768w" sizes="(max-width: 1024px) 100vw, 1024px" /> </a>
461 + </div>
462 + </li>
463 + <li class="uk-width-4-5 uk-width-2-5@m">
464 + <div class="uk-panel">
465 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_4-jpg.webp">
466 + <img width="1024" height="604" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_4-jpg.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_4-jpg.webp 1024w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_4-300x177.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_4-768x453.webp 768w" sizes="(max-width: 1024px) 100vw, 1024px" /> </a>
467 + </div>
468 + </li>
469 + <li class="uk-width-4-5 uk-width-2-5@m">
470 + <div class="uk-panel">
471 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_5-jpg.webp">
472 + <img width="1024" height="683" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_5-jpg.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_5-jpg.webp 1024w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_5-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_5-768x512.webp 768w" sizes="(max-width: 1024px) 100vw, 1024px" /> </a>
473 + </div>
474 + </li>
475 + <li class="uk-width-4-5 uk-width-2-5@m">
476 + <div class="uk-panel">
477 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_6-jpg.webp">
478 + <img width="1024" height="683" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_6-jpg.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_6-jpg.webp 1024w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_6-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_6-768x512.webp 768w" sizes="(max-width: 1024px) 100vw, 1024px" /> </a>
479 + </div>
480 + </li>
481 + <li class="uk-width-4-5 uk-width-2-5@m">
482 + <div class="uk-panel">
483 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_7-jpg.webp">
484 + <img width="1024" height="683" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_7-jpg.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_7-jpg.webp 1024w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_7-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_St-Romuald_11024_7-768x512.webp 768w" sizes="(max-width: 1024px) 100vw, 1024px" /> </a>
485 + </div>
486 + </li>
487 + </ul>
488 + <a class="uk-position-center-left uk-position-small uk-hidden-hover uk-slidenav-large" href="#" uk-slidenav-previous uk-slider-item="previous"></a>
489 + <a class="uk-position-center-right uk-position-small uk-hidden-hover uk-slidenav-large" href="#" uk-slidenav-next uk-slider-item="next"></a>
490 + </div>
491 + </div>
492 + <div class="uk-section-default">
493 + <div class="uk-position-relative">
494 +
495 + <div data-service="acf-custom-maps" data-category="marketing" data-placeholder-image="https://groupeimmobilierbrochu.com/wp-content/plugins/complianz-gdpr/assets/images/placeholders/google-maps-minimal-1280x920.jpg" class="cmplz-placeholder-element acf-map" data-zoom="16">
496 + <div class="marker" data-lat="46.7345942" data-lng="-71.2592529"></div>
497 + </div>
498 + </div>
499 + </div>
500 +
501 + <div class="uk-section uk-section-large uk-section-muted">
502 + <div class="uk-container">
503 + <div uk-grid>
504 + <div class=" uk-margin-auto uk-text-center">
505 + <h3 class="uk-h2">Consultez nos autres projets</h3>
506 + </div>
507 + </div>
508 + <div uk-grid>
509 + <div class="uk-width-1-2@m project">
510 +
511 +
512 + <div class="uk-panel uk-margin-remove-first-child uk-inline">
513 + <a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">
514 + <div class="uk-inline-clip uk-transition-toggle">
515 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/St-Nicolas-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </div>
516 + </a>
517 + <div class="label-container">
518 + <span class="uk-label complete">Complet</span>
519 + </div>
520 + <div class="uk-margin-top uk-flex uk-flex-middle" uk-grid>
521 + <div class="uk-width-expand">
522 + <div class="el-meta uk-h6 uk-text-primary uk-link-reset uk-margin-remove-bottom">
523 + <a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Saint-Nicolas</a>
524 + </div>
525 + <h3 class="el-title uk-h3 uk-margin-remove-top uk-margin-remove-bottom">
526 + <a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/" class="uk-link-reset">Quartier Roc-Pointe</a>
527 + </h3>
528 + </div>
529 +
530 + </div>
531 +
532 + <div class="">
533 + <div class="uk-text-small uk-text-bold uk-text-emphasis">
534 + 1485 $ pour 4 1/2 </div>
535 + </div>
536 + </div>
537 +
538 + </div>
539 + <div class="uk-width-1-2@s">
540 +
541 +
542 + <div class="uk-panel uk-margin-remove-first-child uk-inline">
543 + <a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">
544 + <div class="uk-inline-clip uk-transition-toggle">
545 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Saules_2160_Masson-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Saules_2160_Masson-1380x920.webp 1380w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Saules_2160_Masson-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Saules_2160_Masson-1024x683.webp 1024w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Saules_2160_Masson-768x512.webp 768w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Saules_2160_Masson-1536x1024.webp 1536w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Saules_2160_Masson-2048x1365.webp 2048w" sizes="(max-width: 1380px) 100vw, 1380px" /> </div>
546 + </a>
547 + <div class="label-container">
548 + <span class="uk-label disp">Disponible dès maintenant</span>
549 + </div>
550 + <div class="uk-margin-top uk-flex uk-flex-middle" uk-grid>
551 + <div class="uk-width-expand">
552 + <div class="el-meta uk-h6 uk-text-primary uk-link-reset uk-margin-remove-bottom">
553 + <a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Les Saules</a>
554 + </div>
555 + <h3 class="el-title uk-h3 uk-margin-remove-top uk-margin-remove-bottom">
556 + <a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/" class="uk-link-reset">Les Immeubles Masson</a>
557 + </h3>
558 + </div>
559 +
560 + </div>
561 + <div class="">
562 + <div class="uk-text-small uk-text-bold uk-text-emphasis">
563 + À partir de 1385$ pour 4 1/2 </div>
564 + </div>
565 +
566 + </div>
567 + </div>
568 + </div>
569 + </div>
570 + </div>
571 +
572 +
573 +
574 +
575 +
576 +
577 +</main><!-- #main -->
578 +
579 +
580 +
581 +
582 +
583 +<footer id="colophon" class="site-footer">
584 + <div class="uk-section uk-section-secondary uk-section-small uk-padding-remove-bottom">
585 + <div class="uk-container uk-container-large">
586 + <div class="uk-grid-large uk-margin-medium-bottom uk-text-center uk-text-left@m" uk-grid>
587 + <div class="uk-width-1-2@m uk-width-expand@l">
588 + <a href="">
589 + <img width="200" height="111" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/12/logo-brochu-blanc.png" class="attachment-full size-full" alt="" decoding="async" loading="lazy" /> </a>
590 + <div class="uk-margin uk-text-small">
591 + <a href="https://goo.gl/maps/NRyMwGtJZmP9zpwd8" class="uk-link-text uk-margin-remove-last-child" target="_blank">700, rue des Grands-Jardins<br />
592 +Lévis (Québec) G6W 0Y7</a>
593 + </div>
594 + </div>
595 + <div class="uk-width-1-2@m uk-width-1-5@l">
596 + <h4 class="uk-h5 uk-margin-remove">Menu</h4>
597 + <ul id="menu-menu-2" class="uk-list uk-margin-small uk-text-small"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-42"><a href="https://groupeimmobilierbrochu.com/">Accueil</a></li>
598 +<li class="menu-item menu-item-type-post_type_archive menu-item-object-project menu-item-43 current-menu-item"><a href="https://groupeimmobilierbrochu.com/projets/">Projets</a></li>
599 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="https://groupeimmobilierbrochu.com/a-propos/">À propos</a></li>
600 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-48"><a href="https://groupeimmobilierbrochu.com/contact/">Contact</a></li>
601 +</ul> </div>
602 + <div class="uk-width-1-2@m uk-width-1-5@l">
603 + <h4 class="uk-h5 uk-margin-remove">Projets</h4>
604 + <ul class="uk-list uk-margin-small uk-text-small">
605 + <li><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Le Pilier &#8211; Finaliste du prix Nobilis 2026</a></li>
606 + <li><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">La Sentinelle</a></li>
607 + <li><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Promenade des Forts</a></li>
608 + <li><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Boul. du Centre-Hospitalier</a></li>
609 + <li><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Habitat 2000</a></li>
610 + <li><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Seigneurie des Ponts</a></li>
611 + <li><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">St-Lambert-de-Lauzon</a></li>
612 + <li><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Quartier Roc-Pointe</a></li>
613 + <li><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Les Immeubles Masson</a></li>
614 + </ul>
615 + </div>
616 + <div class="uk-width-1-2@m uk-width-expand@l">
617 + <h4 class="uk-h5 uk-margin-remove">Communiquez avec nous</h4>
618 + <h5 class="uk-h6 uk-margin-small-top uk-margin-remove-bottom">Téléphone</h5>
619 + <div class="uk-text-small uk-margin-"><a href="tel:418 832-6123 option 1" class="uk-link-text uk-margin-remove-last-child">418 832-6123 option 1</a></div>
620 + <h4 class="uk-h6 uk-margin-small-top uk-margin-remove-bottom">Courriel</h4>
621 + <div class="uk-text-small uk-margin-"><a href="/cdn-cgi/l/email-protection#d8b4b7bbb9acb1b7b698bfaab7ada8bdb1b5b5b7bab1b4b1bdaabaaab7bbb0adf6bbb7b5" class="uk-link-text uk-margin-remove-last-child"><span class="__cf_email__" data-cfemail="107c7f737164797f7e5077627f656075797d7d7f72797c79756272627f7378653e737f7d">[email&#160;protected]</span></a></div>
622 + <div class="uk-margin">
623 + <a href="https://www.facebook.com/groupeimmobilierbrochu" class="" uk-icon="icon: facebook" target="_blank"></a>
624 + <a href="https://www.linkedin.com/company/groupe-immobilier-brochu/" class="" uk-icon="icon: linkedin" target="_blank"></a>
625 + </div>
626 +
627 + </div>
628 +
629 + </div>
630 + </div>
631 +
632 + <div class="uk-container uk-container-xlarge">
633 + <hr />
634 + </div>
635 +
636 + <div class="uk-section uk-section-xsmall uk-section-secondary">
637 + <div class="uk-container uk-container-xlarge">
638 +
639 + <div class="site-info">
640 + <div class="uk-text-center uk-text-small">
641 + © 2022-2026 Groupe immobilier Brochu inc. Tous droits réservés. RBQ : 5697-8943-01
642 + </div>
643 + </div><!-- .site-info -->
644 + </div>
645 + </div>
646 + </div>
647 +</footer><!-- #colophon -->
648 +</div><!-- #page -->
649 +</div><!-- #page-container -->
650 +
651 +<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="speculationrules">
652 +{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/GIB-appartement/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
653 +</script>
654 +
655 +<!-- Consent Management powered by Complianz | GDPR/CCPA Cookie Consent https://wordpress.org/plugins/complianz-gdpr -->
656 +<div id="cmplz-cookiebanner-container"><div class="cmplz-cookiebanner cmplz-hidden banner-1 banner-a optin cmplz-bottom-right cmplz-categories-type-view-preferences" aria-modal="true" data-nosnippet="true" role="dialog" aria-live="polite" aria-labelledby="cmplz-header-1-optin" aria-describedby="cmplz-message-1-optin">
657 + <div class="cmplz-header">
658 + <div class="cmplz-logo"></div>
659 + <div class="cmplz-title" id="cmplz-header-1-optin">Gérer le consentement</div>
660 + <div class="cmplz-close" tabindex="0" role="button" aria-label="Fermez la boîte de dialogue">
661 + <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="times" class="svg-inline--fa fa-times fa-w-11" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path fill="currentColor" d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg>
662 + </div>
663 + </div>
664 +
665 + <div class="cmplz-divider cmplz-divider-header"></div>
666 + <div class="cmplz-body">
667 + <div class="cmplz-message" id="cmplz-message-1-optin">Pour offrir les meilleures expériences, nous utilisons des technologies telles que les témoins pour stocker et/ou accéder aux informations des appareils. Le fait de consentir à ces technologies nous permettra de traiter des données telles que le comportement de navigation ou les ID uniques sur ce site. Le fait de ne pas consentir ou de retirer son consentement peut avoir un effet négatif sur certaines caractéristiques et fonctions.</div>
668 + <!-- categories start -->
669 + <div class="cmplz-categories">
670 + <details class="cmplz-category cmplz-functional" >
671 + <summary>
672 + <span class="cmplz-category-header">
673 + <span class="cmplz-category-title">Fonctionnel</span>
674 + <span class='cmplz-always-active'>
675 + <span class="cmplz-banner-checkbox">
676 + <input type="checkbox"
677 + id="cmplz-functional-optin"
678 + data-category="cmplz_functional"
679 + class="cmplz-consent-checkbox cmplz-functional"
680 + size="40"
681 + value="1"/>
682 + <label class="cmplz-label" for="cmplz-functional-optin" tabindex="0"><span class="screen-reader-text">Fonctionnel</span></label>
683 + </span>
684 + Toujours activé </span>
685 + <span class="cmplz-icon cmplz-open">
686 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
687 + </span>
688 + </span>
689 + </summary>
690 + <div class="cmplz-description">
691 + <span class="cmplz-description-functional">Le stockage ou l’accès technique est strictement nécessaire dans la finalité d’intérêt légitime de permettre l’utilisation d’un service spécifique explicitement demandé par l’abonné ou l’utilisateur, ou dans le seul but d’effectuer la transmission d’une communication sur un réseau de communications électroniques.</span>
692 + </div>
693 + </details>
694 +
695 + <details class="cmplz-category cmplz-preferences" >
696 + <summary>
697 + <span class="cmplz-category-header">
698 + <span class="cmplz-category-title">Préférences</span>
699 + <span class="cmplz-banner-checkbox">
700 + <input type="checkbox"
701 + id="cmplz-preferences-optin"
702 + data-category="cmplz_preferences"
703 + class="cmplz-consent-checkbox cmplz-preferences"
704 + size="40"
705 + value="1"/>
706 + <label class="cmplz-label" for="cmplz-preferences-optin" tabindex="0"><span class="screen-reader-text">Préférences</span></label>
707 + </span>
708 + <span class="cmplz-icon cmplz-open">
709 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
710 + </span>
711 + </span>
712 + </summary>
713 + <div class="cmplz-description">
714 + <span class="cmplz-description-preferences">Le stockage ou l’accès technique est nécessaire dans la finalité d’intérêt légitime de stocker des préférences qui ne sont pas demandées par l’abonné ou l’utilisateur.</span>
715 + </div>
716 + </details>
717 +
718 + <details class="cmplz-category cmplz-statistics" >
719 + <summary>
720 + <span class="cmplz-category-header">
721 + <span class="cmplz-category-title">Statistiques</span>
722 + <span class="cmplz-banner-checkbox">
723 + <input type="checkbox"
724 + id="cmplz-statistics-optin"
725 + data-category="cmplz_statistics"
726 + class="cmplz-consent-checkbox cmplz-statistics"
727 + size="40"
728 + value="1"/>
729 + <label class="cmplz-label" for="cmplz-statistics-optin" tabindex="0"><span class="screen-reader-text">Statistiques</span></label>
730 + </span>
731 + <span class="cmplz-icon cmplz-open">
732 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
733 + </span>
734 + </span>
735 + </summary>
736 + <div class="cmplz-description">
737 + <span class="cmplz-description-statistics">Le stockage ou l’accès technique qui est utilisé exclusivement à des fins statistiques.</span>
738 + <span class="cmplz-description-statistics-anonymous">Le stockage ou l’accès technique qui est utilisé exclusivement dans des finalités statistiques anonymes. En l’absence d’une assignation à comparaître, d’une conformité volontaire de la part de votre fournisseur d’accès à internet ou d’enregistrements supplémentaires provenant d’une tierce partie, les informations stockées ou extraites à cette seule fin ne peuvent généralement pas être utilisées pour vous identifier.</span>
739 + </div>
740 + </details>
741 + <details class="cmplz-category cmplz-marketing" >
742 + <summary>
743 + <span class="cmplz-category-header">
744 + <span class="cmplz-category-title">Marketing</span>
745 + <span class="cmplz-banner-checkbox">
746 + <input type="checkbox"
747 + id="cmplz-marketing-optin"
748 + data-category="cmplz_marketing"
749 + class="cmplz-consent-checkbox cmplz-marketing"
750 + size="40"
751 + value="1"/>
752 + <label class="cmplz-label" for="cmplz-marketing-optin" tabindex="0"><span class="screen-reader-text">Marketing</span></label>
753 + </span>
754 + <span class="cmplz-icon cmplz-open">
755 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
756 + </span>
757 + </span>
758 + </summary>
759 + <div class="cmplz-description">
760 + <span class="cmplz-description-marketing">Le stockage ou l’accès technique est nécessaire pour créer des profils d’utilisateurs afin d’envoyer des publicités, ou pour suivre l’utilisateur sur un site web ou sur plusieurs sites web ayant des finalités marketing similaires.</span>
761 + </div>
762 + </details>
763 + </div><!-- categories end -->
764 + </div>
765 +
766 + <div class="cmplz-links cmplz-information">
767 + <a class="cmplz-link cmplz-manage-options cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Gérer les options</a>
768 + <a class="cmplz-link cmplz-manage-third-parties cookie-statement" href="#" data-relative_url="#cmplz-cookies-overview">Gérer les services</a>
769 + <a class="cmplz-link cmplz-manage-vendors tcf cookie-statement" href="#" data-relative_url="#cmplz-tcf-wrapper">Gérer {vendor_count} fournisseurs</a>
770 + <a class="cmplz-link cmplz-external cmplz-read-more-purposes tcf" target="_blank" rel="noopener noreferrer nofollow" href="https://cookiedatabase.org/tcf/purposes/">En savoir plus sur ces finalités</a>
771 + </div>
772 +
773 + <div class="cmplz-divider cmplz-footer"></div>
774 +
775 + <div class="cmplz-buttons">
776 + <button class="cmplz-btn cmplz-accept">Accepter</button>
777 + <button class="cmplz-btn cmplz-deny">Refuser</button>
778 + <button class="cmplz-btn cmplz-view-preferences">Voir les préférences</button>
779 + <button class="cmplz-btn cmplz-save-preferences">Enregistrer les préférences</button>
780 + <a class="cmplz-btn cmplz-manage-options tcf cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Voir les préférences</a>
781 + </div>
782 +
783 + <div class="cmplz-links cmplz-documents">
784 + <a class="cmplz-link cookie-statement" href="#" data-relative_url="">{title}</a>
785 + <a class="cmplz-link privacy-statement" href="#" data-relative_url="">{title}</a>
786 + <a class="cmplz-link impressum" href="#" data-relative_url="">{title}</a>
787 + </div>
788 +
789 +</div>
790 +</div>
791 + <div id="cmplz-manage-consent" data-nosnippet="true"><button class="cmplz-btn cmplz-hidden cmplz-manage-consent manage-consent-1">Gérer le consentement</button>
792 +
793 +</div><script id="appartements-brochu-uikit-js" src="https://groupeimmobilierbrochu.com/wp-content/themes/GIB-appartement/js/theme.min.js?ver=1.1.4"></script>
794 +<script id="appartements-brochu-custom-js" src="https://groupeimmobilierbrochu.com/wp-content/themes/GIB-appartement/js/customizer.js?ver=1.1.4"></script>
795 +<script type="text/plain" data-service="acf-custom-maps" data-category="marketing" id="appartements-brochu-map-js" data-cmplz-src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAp1W5ywuQprlSqthCHR2XLpQBTSyeSBpk&#038;callback=initMaa&#038;ver=1.1.4"></script>
796 +<script id="cmplz-cookiebanner-js-extra">
797 +var complianz = {"prefix":"cmplz_","user_banner_id":"1","set_cookies":[],"block_ajax_content":"","banner_version":"11","version":"7.0.5","store_consent":"","do_not_track_enabled":"1","consenttype":"optin","region":"ca","geoip":"","dismiss_timeout":"","disable_cookiebanner":"","soft_cookiewall":"","dismiss_on_scroll":"","cookie_expiry":"365","url":"https://groupeimmobilierbrochu.com/wp-json/complianz/v1/","locale":"lang=fr&locale=fr_CA","set_cookies_on_root":"","cookie_domain":"","current_policy_id":"34","cookie_path":"/","categories":{"statistics":"statistiques","marketing":"marketing"},"tcf_active":"","placeholdertext":"Cliquez pour accepter les t\u00e9moins {category} et activer ce contenu","css_file":"https://groupeimmobilierbrochu.com/wp-content/uploads/complianz/css/banner-{banner_id}-{type}.css?v=11","page_links":{"ca":{"cookie-statement":{"title":"Politique de confidentialit\u00e9","url":"https://groupeimmobilierbrochu.com/politique-de-confidentialite/"}}},"tm_categories":"","forceEnableStats":"","preview":"","clean_cookies":"","aria_label":"Cliquez pour accepter les t\u00e9moins {category} et activer ce contenu"};
798 +//# sourceURL=cmplz-cookiebanner-js-extra
799 +</script>
800 +<script defer id="cmplz-cookiebanner-js" src="https://groupeimmobilierbrochu.com/wp-content/plugins/complianz-gdpr/cookiebanner/js/complianz.min.js?ver=1715620671"></script>
801 +<script id="wp-emoji-settings" type="application/json">
802 +{"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://groupeimmobilierbrochu.com/wp-includes/js/wp-emoji-release.min.js?ver=7.0.3"}}
803 +</script>
804 +<script type="module">
805 +/*! This file is auto-generated */
806 +var e="script#wp-emoji-settings",t=document.querySelector(e);if(!(t instanceof HTMLScriptElement))throw new Error("Element missing: "+e);const r=JSON.parse(t.text),s=(window._wpemojiSettings=r,"wpEmojiSettingsSupports"),o=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(s,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const r=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===r[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,r){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!r(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,r){let a;const s=(a="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),o=(s.textBaseline="top",s.font="600 32px Arial",{});return e.forEach(e=>{o[e]=t(s,e,n,r)}),o}function a(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}r.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(s));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(o),u.toString(),c.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"});const a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=e=>{i(n=e.data),a.terminate(),t(n)})}catch(e){}i(n=f(o,u,c,p))}t(n)}).then(e=>{for(const n in e)r.supports[n]=e[n],r.supports.everything=r.supports.everything&&r.supports[n],"flag"!==n&&(r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&r.supports[n]);var t;r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&!r.supports.flag,r.supports.everything||((t=r.source||{}).concatemoji?a(t.concatemoji):t.wpemoji&&t.twemoji&&(a(t.twemoji),a(t.wpemoji)))});
807 +//# sourceURL=https://groupeimmobilierbrochu.com/wp-includes/js/wp-emoji-loader.min.js
808 +</script>
809 +
810 +
811 +</body>
812 +
813 +</html>
\ No newline at end of file
added tests/fixtures/brochu/a4d8ddb95815facb0039.html +819 −0
@@ -0,0 +1,819 @@
1 +<!doctype html>
2 +<html lang="fr-CA">
3 +
4 +<head>
5 + <meta charset="UTF-8">
6 + <meta name="viewport" content="width=device-width, initial-scale=1">
7 + <link rel="profile" href="https://gmpg.org/xfn/11">
8 + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
9 +
10 +<!-- Google Tag Manager for WordPress by gtm4wp.com -->
11 +<script data-cfasync="false" data-pagespeed-no-defer>
12 + var gtm4wp_datalayer_name = "dataLayer";
13 + var dataLayer = dataLayer || [];
14 +
15 + const gtm4wp_scrollerscript_debugmode = false;
16 + const gtm4wp_scrollerscript_callbacktime = 100;
17 + const gtm4wp_scrollerscript_readerlocation = 150;
18 + const gtm4wp_scrollerscript_contentelementid = "content";
19 + const gtm4wp_scrollerscript_scannertime = 60;
20 +</script>
21 +<!-- End Google Tag Manager for WordPress by gtm4wp.com -->
22 + <!-- This site is optimized with the Yoast SEO plugin v28.2 - https://yoast.com/product/yoast-seo-wordpress/ -->
23 + <title>Boul. du Centre-Hospitalier - Groupe Immobilier Brochu</title>
24 + <link rel="canonical" href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/" />
25 + <meta property="og:locale" content="fr_CA" />
26 + <meta property="og:type" content="article" />
27 + <meta property="og:title" content="Boul. du Centre-Hospitalier - Groupe Immobilier Brochu" />
28 + <meta property="og:url" content="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/" />
29 + <meta property="og:site_name" content="Groupe Immobilier Brochu" />
30 + <meta property="article:modified_time" content="2026-08-06T18:44:32+00:00" />
31 + <meta name="twitter:card" content="summary_large_image" />
32 + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/groupeimmobilierbrochu.com\/projets\/boul-centre-hospitalier\/","url":"https:\/\/groupeimmobilierbrochu.com\/projets\/boul-centre-hospitalier\/","name":"Boul. du Centre-Hospitalier - Groupe Immobilier Brochu","isPartOf":{"@id":"https:\/\/groupeimmobilierbrochu.com\/#website"},"datePublished":"2023-11-29T19:24:46+00:00","dateModified":"2026-08-06T18:44:32+00:00","breadcrumb":{"@id":"https:\/\/groupeimmobilierbrochu.com\/projets\/boul-centre-hospitalier\/#breadcrumb"},"inLanguage":"fr-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/groupeimmobilierbrochu.com\/projets\/boul-centre-hospitalier\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/groupeimmobilierbrochu.com\/projets\/boul-centre-hospitalier\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/groupeimmobilierbrochu.com\/"},{"@type":"ListItem","position":2,"name":"Projets","item":"https:\/\/groupeimmobilierbrochu.com\/projets\/"},{"@type":"ListItem","position":3,"name":"Boul. du Centre-Hospitalier"}]},{"@type":"WebSite","@id":"https:\/\/groupeimmobilierbrochu.com\/#website","url":"https:\/\/groupeimmobilierbrochu.com\/","name":"Groupe Immobilier Brochu","description":"Développeurs immobilier","publisher":{"@id":"https:\/\/groupeimmobilierbrochu.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/groupeimmobilierbrochu.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-CA"},{"@type":"Organization","@id":"https:\/\/groupeimmobilierbrochu.com\/#organization","name":"Groupe Immobilier Brochu","url":"https:\/\/groupeimmobilierbrochu.com\/","logo":{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/groupeimmobilierbrochu.com\/#\/schema\/logo\/image\/","url":"https:\/\/groupeimmobilierbrochu.com\/wp-content\/uploads\/2023\/11\/cropped-Logo-jpg.webp","contentUrl":"https:\/\/groupeimmobilierbrochu.com\/wp-content\/uploads\/2023\/11\/cropped-Logo-jpg.webp","width":765,"height":396,"caption":"Groupe Immobilier Brochu"},"image":{"@id":"https:\/\/groupeimmobilierbrochu.com\/#\/schema\/logo\/image\/"}}]}</script>
33 + <!-- / Yoast SEO plugin. -->
34 +
35 +
36 +<link rel='dns-prefetch' href='//maps.googleapis.com' />
37 +<link rel="alternate" type="application/rss+xml" title="Groupe Immobilier Brochu &raquo; Flux" href="https://groupeimmobilierbrochu.com/feed/" />
38 +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://groupeimmobilierbrochu.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fgroupeimmobilierbrochu.com%2Fprojets%2Fboul-centre-hospitalier%2F" />
39 +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://groupeimmobilierbrochu.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fgroupeimmobilierbrochu.com%2Fprojets%2Fboul-centre-hospitalier%2F&#038;format=xml" />
40 +<style id="wp-img-auto-sizes-contain-inline-css">
41 +img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
42 +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
43 +</style>
44 +<link rel='stylesheet' id='formidable-css' href='https://groupeimmobilierbrochu.com/wp-content/plugins/formidable/css/formidableforms.css?ver=7162051' media='all' />
45 +<style id="wp-emoji-styles-inline-css">
46 +
47 + img.wp-smiley, img.emoji {
48 + display: inline !important;
49 + border: none !important;
50 + box-shadow: none !important;
51 + height: 1em !important;
52 + width: 1em !important;
53 + margin: 0 0.07em !important;
54 + vertical-align: -0.1em !important;
55 + background: none !important;
56 + padding: 0 !important;
57 + }
58 +/*# sourceURL=wp-emoji-styles-inline-css */
59 +</style>
60 +<style id="wp-block-library-inline-css">
61 +:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
62 +
63 +/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */
64 +</style>
65 +<style id="classic-theme-styles-inline-css">
66 +/*! This file is auto-generated */
67 +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
68 +/*# sourceURL=/wp-includes/css/classic-themes.min.css */
69 +</style>
70 +
71 +<style id="global-styles-inline-css">
72 +:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
73 +/*# sourceURL=global-styles-inline-css */
74 +</style>
75 +
76 +<link rel='stylesheet' id='cmplz-general-css' href='https://groupeimmobilierbrochu.com/wp-content/plugins/complianz-gdpr/assets/css/cookieblocker.min.css?ver=1715620671' media='all' />
77 +<link rel='stylesheet' id='appartements-brochu-style-css' href='https://groupeimmobilierbrochu.com/wp-content/themes/GIB-appartement/css/theme.min.css?ver=1.1.1674306552' media='all' />
78 +<script id="gtm4wp-scroll-tracking-js" src="https://groupeimmobilierbrochu.com/wp-content/plugins/duracelltomi-google-tag-manager/dist/js/analytics-talk-content-tracking.js?ver=1.22.3"></script>
79 +<script id="jquery-core-js" src="https://groupeimmobilierbrochu.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script>
80 +<script id="jquery-migrate-js" src="https://groupeimmobilierbrochu.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script>
81 +<link rel="https://api.w.org/" href="https://groupeimmobilierbrochu.com/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://groupeimmobilierbrochu.com/xmlrpc.php?rsd" />
82 +<meta name="generator" content="WordPress 7.0.3" />
83 +<link rel='shortlink' href='https://groupeimmobilierbrochu.com/?p=358' />
84 +<meta name="generator" content="performance-lab 4.2.0; plugins: ">
85 +<script>document.documentElement.className += " js";</script>
86 + <style>.cmplz-hidden {
87 + display: none !important;
88 + }</style>
89 +<!-- Google Tag Manager for WordPress by gtm4wp.com -->
90 +<!-- GTM Container placement set to automatic -->
91 +<script data-cfasync="false" data-pagespeed-no-defer>
92 + var dataLayer_content = {"pagePostType":"project","pagePostType2":"single-project","pagePostAuthor":"Guillaume Brochu"};
93 + dataLayer.push( dataLayer_content );
94 +</script>
95 +<script data-cfasync="false" data-pagespeed-no-defer>
96 +(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
97 +new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
98 +j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
99 +'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
100 +})(window,document,'script','dataLayer','GTM-WRXBQMK3');
101 +</script>
102 +<!-- End Google Tag Manager for WordPress by gtm4wp.com -->
103 +
104 + <!-- <meta property="og:image" content="" /> -->
105 +
106 +
107 +
108 +
109 +<link rel="icon" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" sizes="32x32" />
110 +<link rel="icon" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" sizes="192x192" />
111 +<link rel="apple-touch-icon" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" />
112 +<meta name="msapplication-TileImage" content="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" />
113 +<style id="wp-custom-css">
114 +/* Fix chevauchement titre "Reconnaissances" sur ecrans intermediaires */
115 +@media (min-width: 960px) and (max-width: 1360px) {
116 + #news .uk-grid > .uk-width-1-4\@m,
117 + #news .uk-grid > .uk-width-expand\@m {
118 + width: 100% !important;
119 + max-width: 100% !important;
120 + }
121 +}
122 +
123 +/* Masquer la barre verte des projets quand elle deborderait sur deux lignes */
124 +@media (max-width: 1510px) {
125 + .project-list {
126 + display: none;
127 + }
128 +}
129 +
130 +/* Retarder le basculement vers le menu mobile */
131 +@media (min-width: 992px) {
132 + .tm-header-mobile.uk-hidden\@l {
133 + display: none !important;
134 + }
135 + .tm-header.uk-visible\@l {
136 + display: block !important;
137 + }
138 +}
139 +@media (max-width: 991px) {
140 + .tm-header.uk-visible\@l {
141 + display: none !important;
142 + }
143 + .tm-header-mobile.uk-hidden\@l {
144 + display: block !important;
145 + }
146 +}
147 +</style>
148 +</head>
149 +
150 +
151 +<body data-cmplz=1 class="wp-singular project-template-default single single-project postid-358 wp-custom-logo wp-theme-GIB-appartement no-sidebar">
152 +
153 +<!-- GTM Container placement set to automatic -->
154 +<!-- Google Tag Manager (noscript) -->
155 + <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WRXBQMK3" height="0" width="0" style="display:none;visibility:hidden" aria-hidden="true"></iframe></noscript>
156 +<!-- End Google Tag Manager (noscript) -->
157 + <div id="page-container" class="page-container uk-clearfix">
158 + <div id="page" class="tm-page uk-margin-auto">
159 + <!-- <div class="uk-background-primary uk-padding">
160 + fef
161 + </div> -->
162 + <div class="tm-header-mobile uk-hidden@l">
163 +
164 +
165 + <div uk-sticky="" show-on-up="" animation="uk-animation-slide-top" cls-active="uk-navbar-sticky" sel-target=".uk-navbar-container" class="uk-sticky">
166 +
167 + <div class="uk-navbar-container">
168 + <nav uk-navbar="container: .tm-header-mobile" class="uk-navbar">
169 + <div class="uk-navbar-center">
170 + <div class="uk-width-expand uk-margin-auto logo">
171 + <a href="https://groupeimmobilierbrochu.com/" class="custom-logo-link" rel="home"><img width="765" height="396" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp" class="custom-logo" alt="Groupe Immobilier Brochu" decoding="async" fetchpriority="high" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp 765w, https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg-300x155.webp 300w" sizes="(max-width: 765px) 100vw, 765px" /></a> </div>
172 + </div>
173 +
174 +
175 +
176 + <div class="uk-navbar-right">
177 + <a class="uk-navbar-toggle" href="#tm-mobile" uk-toggle="" aria-expanded="false">
178 + <div uk-navbar-toggle-icon="" class="uk-icon uk-navbar-toggle-icon"></div>
179 + </a>
180 + </div>
181 +
182 +
183 + </nav>
184 + </div>
185 +
186 +
187 + </div>
188 + <div class="uk-sticky-placeholder" style="height: 90px; margin: 0px;" hidden=""></div>
189 +
190 + <div id="tm-mobile" class="uk-modal-full uk-modal" uk-modal>
191 + <div class="uk-modal-dialog uk-modal-body uk-height-viewport">
192 + <button class="uk-modal-close-full uk-icon uk-close" type="button" uk-close=""></button>
193 + <div class="uk-margin-auto-vertical uk-width-1-1">
194 + <div class="uk-child-width-1-1 uk-grid uk-grid-stack" uk-grid>
195 + <div>
196 + <div class="uk-panel">
197 + <ul id="menu-menu" class="uk-nav uk-nav-default uk-nav-divider"><li id="menu-item-42" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-42"><a href="https://groupeimmobilierbrochu.com/">Accueil</a></li>
198 +<li id="menu-item-43" class="menu-item menu-item-type-post_type_archive menu-item-object-project menu-item-43 current-menu-item"><a href="https://groupeimmobilierbrochu.com/projets/">Projets</a></li>
199 +<li id="menu-item-49" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="https://groupeimmobilierbrochu.com/a-propos/">À propos</a></li>
200 +<li id="menu-item-48" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-48"><a href="https://groupeimmobilierbrochu.com/contact/">Contact</a></li>
201 +</ul> <div class="uk-navbar-item uk-margin">
202 + <a href="https://groupeimmobilierbrochu.com/contact/" class="uk-button uk-button-primary uk-button-">Planifiez une visite</a>
203 + </div>
204 + <div class="uk-grid-small uk-child-width-auto uk-flex-middle uk-flex-center uk-margin" uk-grid>
205 + <div><a href="tel:4188326123option1" class="phone uk-text-emphasis">+ 418 832-6123 option 1</a></div>,
206 + <div>
207 + <ul class="uk-iconnav">
208 + <li><a href="https://www.linkedin.com/company/groupe-immobilier-brochu/" class="social" uk-icon="icon: linkedin; ratio:0.85" target="_blank"></a></li>
209 + <li><a href="https://www.facebook.com/groupeimmobilierbrochu" class="social" uk-icon="icon: facebook; ratio:0.85" target="_blank"></a></li>
210 +
211 + </ul>
212 + </div>
213 + </div>
214 + <div class="project-list">
215 + <div class="">
216 + <div class="uk-grid uk-grid-small uk-text-center uk-text-small" uk-grid>
217 +
218 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis secteur<br/>Saint-Romuald / Le Pilier</a></div>
219 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis secteur<br />
220 +Fort numéro 1</a></div>
221 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Lévis secteur<br />
222 +Centre-ville</a></div>
223 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis secteur<br />
224 +Charny / Pionniers</a></div>
225 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Lévis secteur <br />
226 +Charny / Aquaréna</a></div>
227 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Lévis secteur <br />
228 +Saint-Romuald</a></div>
229 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-<br />
230 +de-Lauzon</a></div>
231 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Lévis secteur <br />
232 +Saint-Nicolas</a></div>
233 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Québec secteur <br />
234 +Les Saules</a></div>
235 +
236 + </div>
237 + </div>
238 + </div>
239 + <p class="uk-text-meta uk-text-center">
240 + © 2022-2026 Groupe immobilier Brochu inc. Tous droits réservés. RBQ : 5697-8943-01
241 +
242 + </p>
243 + </div>
244 + </div>
245 +
246 + </div>
247 + </div>
248 +
249 + </div>
250 + </div>
251 +
252 + </div>
253 + <div class="tm-header uk-visible@l tm-header-overlay" uk-header>
254 + <div class="project-list uk-background-primary uk-padding-small uk-light">
255 + <div class="uk-container uk-container-large">
256 + <div class="uk-flex uk-flex-middle uk-flex-right">
257 + <div class="uk-h6 uk-margin-remove">Nos projets :</div>
258 + <ul class="uk-subnav uk-subnav-divider uk-text-center uk-margin-remove">
259 + <li><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis secteur<br/>Saint-Romuald / Le Pilier</a></li>
260 + <li><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis secteur<br />
261 +Fort numéro 1</a></li>
262 + <li><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Lévis secteur<br />
263 +Centre-ville</a></li>
264 + <li><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis secteur<br />
265 +Charny / Pionniers</a></li>
266 + <li><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Lévis secteur <br />
267 +Charny / Aquaréna</a></li>
268 + <li><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Lévis secteur <br />
269 +Saint-Romuald</a></li>
270 + <li><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-<br />
271 +de-Lauzon</a></li>
272 + <li><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Lévis secteur <br />
273 +Saint-Nicolas</a></li>
274 + <li><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Québec secteur <br />
275 +Les Saules</a></li>
276 + </ul>
277 + </div>
278 + </div>
279 + </div>
280 +
281 + <div uk-sticky media="@l" show-on-up="true" animation="uk-animation-slide-top" cls-inactive="" cls-active="" sel-target=".uk-navbar-container">
282 + <div class="uk-navbar-container ">
283 +
284 + <div class="uk-container uk-container-large">
285 + <nav class="uk-navbar uk-flex-middle uk-margin-small-top uk-margin-small-bottom" uk-navbar>
286 + <div class="uk-navbar-left">
287 +
288 + <div class="logo-default">
289 + <a href="https://groupeimmobilierbrochu.com/" class="custom-logo-link" rel="home"><img width="765" height="396" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp" class="custom-logo" alt="Groupe Immobilier Brochu" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp 765w, https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg-300x155.webp 300w" sizes="(max-width: 765px) 100vw, 765px" /></a> </div>
290 +
291 + </div>
292 + <div class="uk-navbar-right">
293 + <div>
294 + <!-- <div class="project-list">
295 +
296 + <ul class="uk-subnav uk-subnav-divider uk-flex uk-flex-bottom uk-flex-right uk-margin-small-bottom uk-text-center">
297 + <li><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis secteur<br/>Saint-Romuald / Le Pilier</a></li>
298 + <li><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis secteur<br />
299 +Fort numéro 1</a></li>
300 + <li><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Lévis secteur<br />
301 +Centre-ville</a></li>
302 + <li><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis secteur<br />
303 +Charny / Pionniers</a></li>
304 + <li><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Lévis secteur <br />
305 +Charny / Aquaréna</a></li>
306 + <li><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Lévis secteur <br />
307 +Saint-Romuald</a></li>
308 + <li><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-<br />
309 +de-Lauzon</a></li>
310 + <li><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Lévis secteur <br />
311 +Saint-Nicolas</a></li>
312 + <li><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Québec secteur <br />
313 +Les Saules</a></li>
314 + </ul>
315 +
316 + </div> -->
317 +
318 + <div class="uk-flex uk-flex-middle uk-flex-right">
319 + <ul id="menu-menu-1" class="uk-navbar-nav"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-42"><a href="https://groupeimmobilierbrochu.com/">Accueil</a></li>
320 +<li class="menu-item menu-item-type-post_type_archive menu-item-object-project menu-item-43 current-menu-item"><a href="https://groupeimmobilierbrochu.com/projets/">Projets</a></li>
321 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="https://groupeimmobilierbrochu.com/a-propos/">À propos</a></li>
322 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-48"><a href="https://groupeimmobilierbrochu.com/contact/">Contact</a></li>
323 +</ul>
324 + <a href="https://www.facebook.com/groupeimmobilierbrochu" class="uk-margin-small-right" uk-icon="icon: facebook" target="_blank"></a>
325 + <a href="https://groupeimmobilierbrochu.com/contact/" class="uk-button uk-button-primary uk-button-">Planifiez une visite</a>
326 + </div>
327 +
328 +
329 +
330 + </div>
331 + </div>
332 +
333 + </nav>
334 +
335 + <!-- </div> -->
336 +
337 + </div>
338 +
339 + </div>
340 +
341 +
342 +
343 + </div>
344 + <!-- <div class="uk-sticky-placeholder" style="height: 90px; margin: 0px;" hidden=""></div> -->
345 + <!-- <div class="uk-sticky-placeholder" style="height: 81px; margin: 0px;"></div> -->
346 +
347 + </div>
348 +
349 +
350 +<main class="project">
351 +
352 + <div class="uk-section-default">
353 + <div class="uk-section-large uk-height-large uk-flex uk-flex-center uk-flex-middle uk-background-cover uk-inline" data-src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/1-Ext-21-dec-scaled.webp" uk-img>
354 + <div class="uk-overlay-primary uk-position-cover"></div>
355 + <div class="uk-overlay uk-position-top uk-light">
356 + <div class="uk-container uk-container-large">
357 + <a href="https://groupeimmobilierbrochu.com/projets/" class="uk-text-small"><i class="fa-solid fa-chevron-left"></i> Voir tous les projets</a>
358 + </div>
359 + </div>
360 + <div class="uk-overlay uk-position-bottom">
361 + <div class="uk-container uk-container-large">
362 + <div class="">
363 + <div class="uk-margin-bottom">
364 + <span class="uk-label disp">Unités très récentes disponibles</span>
365 + </div>
366 + <div class="uk-light">
367 + <div class="uk-h3 uk-margin-remove">
368 + Lévis </div>
369 + <h1 class="uk-h1 uk-margin-remove">Boul. du Centre-Hospitalier</h1>
370 + <div class="uk-margin-top">
371 + <i class="fa-solid fa-location-dot"></i>
372 + <a href="https://www.google.com/maps/place/9620+Bd+du+Centre-Hospitalier,+Charny,+QC+G6X+1L7/@46.7247313,-71.2597543,17z/data=!3m1!4b1!4m5!3m4!1s0x4cb893cd2c756871:0x9757e29861d876ea!8m2!3d46.7247277!4d-71.2571794?entry=ttu" target="_blank"> 9600, boul. Centre-Hospitalier, Lévis</a>
373 + </div>
374 +
375 + </div>
376 + </div>
377 + </div>
378 + </div>
379 + </div>
380 + </div>
381 +
382 + <div class="uk-section">
383 + <div class="uk-container uk-container-large">
384 + <div class="uk-grid-large uk-margin-bottom" uk-grid>
385 + <div class="uk-width-3-5@m">
386 + <p><strong>Conditions de location :</strong></p>
387 +<ul>
388 +<li>Immeubles très récents à partir de 1495$ dès août 2026 ;</li>
389 +<li>1 x 4½ au 2e étage;</li>
390 +<li>1 x 4½ avec bureau au 3e étage;</li>
391 +<li>Grandes pièces, chauffage, électricité et eau chaude non inclus;</li>
392 +</ul>
393 +<p>Magnifiques condos locatifs neufs dans un immeuble de 6 unités. Finition de haute qualité et une disposition moderne, cette propriété offre un espace de vie luxueux.</p>
394 +<p><strong>Caractéristiques principales :</strong></p>
395 +<ul>
396 +<li>Boiserie, plancher de bois flottant et céramique</li>
397 +<li>Chambres spacieuses avec garde-robe ou walk-in</li>
398 +<li>Cuisine avec grand ilot</li>
399 +<li>Salon lumineux ouvert avec de grandes fenêtres</li>
400 +<li>Salle de bain moderne avec baignoire et douche de verre</li>
401 +<li>Balcon</li>
402 +<li>Entrée indépendante à l&rsquo;extérieur</li>
403 +<li>Air climatisé mural et échangeur d&rsquo;air</li>
404 +<li>Très bonne insonorisation</li>
405 +<li><strong>1 espace de stationnement réservé, 2e espace possible pour 30$ par mois additionnel</strong></li>
406 +<li>Rangement extérieur inclus</li>
407 +</ul>
408 +<p><strong>Localisation :</strong></p>
409 +<p>Unités sont idéalement situées, à quelques pas des restaurants, des commerces, des parcs et des transports en commun, piste cyclable, près des ponts. Vous pourrez profiter d&rsquo;un mode de vie urbain tout en résidant dans un environnement paisible.</p>
410 +<p><strong>* Les chiens ne sont pas acceptés.<br />
411 +* Non fumeur</strong></p>
412 +<p>Si vous recherchez un condo locatif neuf de qualité, n&rsquo;hésitez pas à nous contacter pour planifier une visite. Ne manquez pas l&rsquo;opportunité de vivre dans ce magnifique condo neuf.</p>
413 +<p>Bureau de location : 418-832-6123 option 1</p>
414 +
415 + </div>
416 + <div class="uk-width-expand@m">
417 + <div class="uk-panel uk-background-muted uk-padding uk-text-center">
418 + <h3 class="uk-h3">Statut <span class="uk-label disp"> Disponible</span></h3>
419 + <div class="uk-alert-primary" uk-alert>
420 + <p class="uk-margin-remove uk-text-small uk-text-emphasis">Disponible dès maintenant ou septembre 2026</p>
421 + </div>
422 + <div class="">
423 + <h3 class="uk-h5 uk-margin-small-bottom">À partir de 1495 $ pour 4½</h3>
424 + <div class="uk-text-primary uk-text-bold">418-832-6123 option 1</div>
425 + <a href="/cdn-cgi/l/email-protection#bfd3d0dcdecbd6d0d1ffd8cdd0cacfdad6d2d2d0ddd6d3d6dacdddcdd0dcd7ca91dcd0d2"><span class="__cf_email__" data-cfemail="5a3635393b2e3335341a3d28352f2a3f33373735383336333f2838283539322f74393537">[email&#160;protected]</span></a>
426 + </div>
427 + </div>
428 + <div class="uk-text-center uk-margin-top">
429 + <div>
430 + <a href="https://www.google.com/maps/place/9620+Bd+du+Centre-Hospitalier,+Charny,+QC+G6X+1L7/@46.7247313,-71.2597543,17z/data=!3m1!4b1!4m5!3m4!1s0x4cb893cd2c756871:0x9757e29861d876ea!8m2!3d46.7247277!4d-71.2571794?entry=ttu" target="_blank"><i class="fa-solid fa-location-dot"></i> 9600, boul. Centre-Hospitalier, Lévis</a>
431 + </div>
432 + </div>
433 + <div class="uk-margin uk-text-center">
434 + <a href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/Logements-A-a-F-6-pages.pdf" target="_blank" class="uk-button uk-button-text"><i class="fa-solid fa-file-pdf"></i> Consulter les plans</a>
435 + </div>
436 + </div>
437 +
438 + </div>
439 + </div>
440 + </div>
441 + <div class="uk-section uk-section-large uk-padding-remove-top">
442 + <div uk-grid>
443 + <div class=" uk-margin-auto uk-text-center uk-margin-medium-bottom">
444 + <h2 class="uk-h2">Découvrez votre nouvel espace de vie</h2>
445 + </div>
446 + </div>
447 + <div class="uk-position-relative uk-visible-toggle uk-light" tabindex="-1" uk-slider="clsActivated: uk-transition-active; center: true">
448 + <ul class="uk-slider-items uk-grid" uk-lightbox="animation: fade">
449 + <li class="uk-width-4-5 uk-width-2-5@m">
450 + <div class="uk-panel">
451 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/1-Ext-21-dec-scaled.webp">
452 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/1-Ext-21-dec-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </a>
453 + </div>
454 + </li>
455 + <li class="uk-width-4-5 uk-width-2-5@m">
456 + <div class="uk-panel">
457 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/20231217_104302-scaled.webp">
458 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/20231217_104302-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </a>
459 + </div>
460 + </li>
461 + <li class="uk-width-4-5 uk-width-2-5@m">
462 + <div class="uk-panel">
463 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/20231217_104306-scaled.webp">
464 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/20231217_104306-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </a>
465 + </div>
466 + </li>
467 + <li class="uk-width-4-5 uk-width-2-5@m">
468 + <div class="uk-panel">
469 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/20231217_104310-scaled.webp">
470 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/20231217_104310-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </a>
471 + </div>
472 + </li>
473 + <li class="uk-width-4-5 uk-width-2-5@m">
474 + <div class="uk-panel">
475 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/20231217_104316-scaled.webp">
476 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/20231217_104316-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </a>
477 + </div>
478 + </li>
479 + <li class="uk-width-4-5 uk-width-2-5@m">
480 + <div class="uk-panel">
481 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/20231217_104328-scaled.webp">
482 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/20231217_104328-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </a>
483 + </div>
484 + </li>
485 + <li class="uk-width-4-5 uk-width-2-5@m">
486 + <div class="uk-panel">
487 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/20231217_104343-scaled.webp">
488 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/20231217_104343-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </a>
489 + </div>
490 + </li>
491 + <li class="uk-width-4-5 uk-width-2-5@m">
492 + <div class="uk-panel">
493 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/20231217_104349-scaled.webp">
494 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/20231217_104349-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </a>
495 + </div>
496 + </li>
497 + </ul>
498 + <a class="uk-position-center-left uk-position-small uk-hidden-hover uk-slidenav-large" href="#" uk-slidenav-previous uk-slider-item="previous"></a>
499 + <a class="uk-position-center-right uk-position-small uk-hidden-hover uk-slidenav-large" href="#" uk-slidenav-next uk-slider-item="next"></a>
500 + </div>
501 + </div>
502 + <div class="uk-section-default">
503 + <div class="uk-position-relative">
504 +
505 + <div data-service="acf-custom-maps" data-category="marketing" data-placeholder-image="https://groupeimmobilierbrochu.com/wp-content/plugins/complianz-gdpr/assets/images/placeholders/google-maps-minimal-1280x920.jpg" class="cmplz-placeholder-element acf-map" data-zoom="16">
506 + <div class="marker" data-lat="46.7258525" data-lng="-71.25449"></div>
507 + </div>
508 + </div>
509 + </div>
510 +
511 + <div class="uk-section uk-section-large uk-section-muted">
512 + <div class="uk-container">
513 + <div uk-grid>
514 + <div class=" uk-margin-auto uk-text-center">
515 + <h3 class="uk-h2">Consultez nos autres projets</h3>
516 + </div>
517 + </div>
518 + <div uk-grid>
519 + <div class="uk-width-1-2@m project">
520 +
521 +
522 + <div class="uk-panel uk-margin-remove-first-child uk-inline">
523 + <a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">
524 + <div class="uk-inline-clip uk-transition-toggle">
525 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Charny-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Charny-1380x920.webp 1380w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Charny-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Charny-1024x683.webp 1024w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Charny-768x512.webp 768w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Charny-1536x1024.webp 1536w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Charny-jpg.webp 1920w" sizes="(max-width: 1380px) 100vw, 1380px" /> </div>
526 + </a>
527 + <div class="label-container">
528 + <span class="uk-label disp">Disponible octobre 2026</span>
529 + </div>
530 + <div class="uk-margin-top uk-flex uk-flex-middle" uk-grid>
531 + <div class="uk-width-expand">
532 + <div class="el-meta uk-h6 uk-text-primary uk-link-reset uk-margin-remove-bottom">
533 + <a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Charny</a>
534 + </div>
535 + <h3 class="el-title uk-h3 uk-margin-remove-top uk-margin-remove-bottom">
536 + <a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/" class="uk-link-reset">Habitat 2000</a>
537 + </h3>
538 + </div>
539 +
540 + </div>
541 +
542 + <div class="">
543 + <div class="uk-text-small uk-text-bold uk-text-emphasis">
544 + 1195$ pour 4 1/2 </div>
545 + </div>
546 + </div>
547 +
548 + </div>
549 + <div class="uk-width-1-2@s">
550 +
551 +
552 + <div class="uk-panel uk-margin-remove-first-child uk-inline">
553 + <a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">
554 + <div class="uk-inline-clip uk-transition-toggle">
555 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2025/10/Enscape_2023-10-24-14-20-55_Scene-5-png-1380x920.avif" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </div>
556 + </a>
557 + <div class="label-container">
558 + <span class="uk-label disp">Libre novembre 2026</span>
559 + </div>
560 + <div class="uk-margin-top uk-flex uk-flex-middle" uk-grid>
561 + <div class="uk-width-expand">
562 + <div class="el-meta uk-h6 uk-text-primary uk-link-reset uk-margin-remove-bottom">
563 + <a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis</a>
564 + </div>
565 + <h3 class="el-title uk-h3 uk-margin-remove-top uk-margin-remove-bottom">
566 + <a href="https://groupeimmobilierbrochu.com/projets/le-pilier/" class="uk-link-reset">Le Pilier - Finaliste du prix Nobilis 2026</a>
567 + </h3>
568 + </div>
569 +
570 + </div>
571 +
572 + </div>
573 + </div>
574 + </div>
575 + </div>
576 + </div>
577 +
578 +
579 +
580 +
581 +
582 +
583 +</main><!-- #main -->
584 +
585 +
586 +
587 +
588 +
589 +<footer id="colophon" class="site-footer">
590 + <div class="uk-section uk-section-secondary uk-section-small uk-padding-remove-bottom">
591 + <div class="uk-container uk-container-large">
592 + <div class="uk-grid-large uk-margin-medium-bottom uk-text-center uk-text-left@m" uk-grid>
593 + <div class="uk-width-1-2@m uk-width-expand@l">
594 + <a href="">
595 + <img width="200" height="111" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/12/logo-brochu-blanc.png" class="attachment-full size-full" alt="" decoding="async" loading="lazy" /> </a>
596 + <div class="uk-margin uk-text-small">
597 + <a href="https://goo.gl/maps/NRyMwGtJZmP9zpwd8" class="uk-link-text uk-margin-remove-last-child" target="_blank">700, rue des Grands-Jardins<br />
598 +Lévis (Québec) G6W 0Y7</a>
599 + </div>
600 + </div>
601 + <div class="uk-width-1-2@m uk-width-1-5@l">
602 + <h4 class="uk-h5 uk-margin-remove">Menu</h4>
603 + <ul id="menu-menu-2" class="uk-list uk-margin-small uk-text-small"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-42"><a href="https://groupeimmobilierbrochu.com/">Accueil</a></li>
604 +<li class="menu-item menu-item-type-post_type_archive menu-item-object-project menu-item-43 current-menu-item"><a href="https://groupeimmobilierbrochu.com/projets/">Projets</a></li>
605 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="https://groupeimmobilierbrochu.com/a-propos/">À propos</a></li>
606 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-48"><a href="https://groupeimmobilierbrochu.com/contact/">Contact</a></li>
607 +</ul> </div>
608 + <div class="uk-width-1-2@m uk-width-1-5@l">
609 + <h4 class="uk-h5 uk-margin-remove">Projets</h4>
610 + <ul class="uk-list uk-margin-small uk-text-small">
611 + <li><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Le Pilier &#8211; Finaliste du prix Nobilis 2026</a></li>
612 + <li><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">La Sentinelle</a></li>
613 + <li><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Promenade des Forts</a></li>
614 + <li><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Boul. du Centre-Hospitalier</a></li>
615 + <li><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Habitat 2000</a></li>
616 + <li><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Seigneurie des Ponts</a></li>
617 + <li><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">St-Lambert-de-Lauzon</a></li>
618 + <li><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Quartier Roc-Pointe</a></li>
619 + <li><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Les Immeubles Masson</a></li>
620 + </ul>
621 + </div>
622 + <div class="uk-width-1-2@m uk-width-expand@l">
623 + <h4 class="uk-h5 uk-margin-remove">Communiquez avec nous</h4>
624 + <h5 class="uk-h6 uk-margin-small-top uk-margin-remove-bottom">Téléphone</h5>
625 + <div class="uk-text-small uk-margin-"><a href="tel:418 832-6123 option 1" class="uk-link-text uk-margin-remove-last-child">418 832-6123 option 1</a></div>
626 + <h4 class="uk-h6 uk-margin-small-top uk-margin-remove-bottom">Courriel</h4>
627 + <div class="uk-text-small uk-margin-"><a href="/cdn-cgi/l/email-protection#3c50535f5d485553527c5b4e53494c59555151535e555055594e5e4e535f5449125f5351" class="uk-link-text uk-margin-remove-last-child"><span class="__cf_email__" data-cfemail="25494a4644514c4a4b6542574a5055404c48484a474c494c405747574a464d500b464a48">[email&#160;protected]</span></a></div>
628 + <div class="uk-margin">
629 + <a href="https://www.facebook.com/groupeimmobilierbrochu" class="" uk-icon="icon: facebook" target="_blank"></a>
630 + <a href="https://www.linkedin.com/company/groupe-immobilier-brochu/" class="" uk-icon="icon: linkedin" target="_blank"></a>
631 + </div>
632 +
633 + </div>
634 +
635 + </div>
636 + </div>
637 +
638 + <div class="uk-container uk-container-xlarge">
639 + <hr />
640 + </div>
641 +
642 + <div class="uk-section uk-section-xsmall uk-section-secondary">
643 + <div class="uk-container uk-container-xlarge">
644 +
645 + <div class="site-info">
646 + <div class="uk-text-center uk-text-small">
647 + © 2022-2026 Groupe immobilier Brochu inc. Tous droits réservés. RBQ : 5697-8943-01
648 + </div>
649 + </div><!-- .site-info -->
650 + </div>
651 + </div>
652 + </div>
653 +</footer><!-- #colophon -->
654 +</div><!-- #page -->
655 +</div><!-- #page-container -->
656 +
657 +<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="speculationrules">
658 +{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/GIB-appartement/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
659 +</script>
660 +
661 +<!-- Consent Management powered by Complianz | GDPR/CCPA Cookie Consent https://wordpress.org/plugins/complianz-gdpr -->
662 +<div id="cmplz-cookiebanner-container"><div class="cmplz-cookiebanner cmplz-hidden banner-1 banner-a optin cmplz-bottom-right cmplz-categories-type-view-preferences" aria-modal="true" data-nosnippet="true" role="dialog" aria-live="polite" aria-labelledby="cmplz-header-1-optin" aria-describedby="cmplz-message-1-optin">
663 + <div class="cmplz-header">
664 + <div class="cmplz-logo"></div>
665 + <div class="cmplz-title" id="cmplz-header-1-optin">Gérer le consentement</div>
666 + <div class="cmplz-close" tabindex="0" role="button" aria-label="Fermez la boîte de dialogue">
667 + <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="times" class="svg-inline--fa fa-times fa-w-11" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path fill="currentColor" d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg>
668 + </div>
669 + </div>
670 +
671 + <div class="cmplz-divider cmplz-divider-header"></div>
672 + <div class="cmplz-body">
673 + <div class="cmplz-message" id="cmplz-message-1-optin">Pour offrir les meilleures expériences, nous utilisons des technologies telles que les témoins pour stocker et/ou accéder aux informations des appareils. Le fait de consentir à ces technologies nous permettra de traiter des données telles que le comportement de navigation ou les ID uniques sur ce site. Le fait de ne pas consentir ou de retirer son consentement peut avoir un effet négatif sur certaines caractéristiques et fonctions.</div>
674 + <!-- categories start -->
675 + <div class="cmplz-categories">
676 + <details class="cmplz-category cmplz-functional" >
677 + <summary>
678 + <span class="cmplz-category-header">
679 + <span class="cmplz-category-title">Fonctionnel</span>
680 + <span class='cmplz-always-active'>
681 + <span class="cmplz-banner-checkbox">
682 + <input type="checkbox"
683 + id="cmplz-functional-optin"
684 + data-category="cmplz_functional"
685 + class="cmplz-consent-checkbox cmplz-functional"
686 + size="40"
687 + value="1"/>
688 + <label class="cmplz-label" for="cmplz-functional-optin" tabindex="0"><span class="screen-reader-text">Fonctionnel</span></label>
689 + </span>
690 + Toujours activé </span>
691 + <span class="cmplz-icon cmplz-open">
692 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
693 + </span>
694 + </span>
695 + </summary>
696 + <div class="cmplz-description">
697 + <span class="cmplz-description-functional">Le stockage ou l’accès technique est strictement nécessaire dans la finalité d’intérêt légitime de permettre l’utilisation d’un service spécifique explicitement demandé par l’abonné ou l’utilisateur, ou dans le seul but d’effectuer la transmission d’une communication sur un réseau de communications électroniques.</span>
698 + </div>
699 + </details>
700 +
701 + <details class="cmplz-category cmplz-preferences" >
702 + <summary>
703 + <span class="cmplz-category-header">
704 + <span class="cmplz-category-title">Préférences</span>
705 + <span class="cmplz-banner-checkbox">
706 + <input type="checkbox"
707 + id="cmplz-preferences-optin"
708 + data-category="cmplz_preferences"
709 + class="cmplz-consent-checkbox cmplz-preferences"
710 + size="40"
711 + value="1"/>
712 + <label class="cmplz-label" for="cmplz-preferences-optin" tabindex="0"><span class="screen-reader-text">Préférences</span></label>
713 + </span>
714 + <span class="cmplz-icon cmplz-open">
715 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
716 + </span>
717 + </span>
718 + </summary>
719 + <div class="cmplz-description">
720 + <span class="cmplz-description-preferences">Le stockage ou l’accès technique est nécessaire dans la finalité d’intérêt légitime de stocker des préférences qui ne sont pas demandées par l’abonné ou l’utilisateur.</span>
721 + </div>
722 + </details>
723 +
724 + <details class="cmplz-category cmplz-statistics" >
725 + <summary>
726 + <span class="cmplz-category-header">
727 + <span class="cmplz-category-title">Statistiques</span>
728 + <span class="cmplz-banner-checkbox">
729 + <input type="checkbox"
730 + id="cmplz-statistics-optin"
731 + data-category="cmplz_statistics"
732 + class="cmplz-consent-checkbox cmplz-statistics"
733 + size="40"
734 + value="1"/>
735 + <label class="cmplz-label" for="cmplz-statistics-optin" tabindex="0"><span class="screen-reader-text">Statistiques</span></label>
736 + </span>
737 + <span class="cmplz-icon cmplz-open">
738 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
739 + </span>
740 + </span>
741 + </summary>
742 + <div class="cmplz-description">
743 + <span class="cmplz-description-statistics">Le stockage ou l’accès technique qui est utilisé exclusivement à des fins statistiques.</span>
744 + <span class="cmplz-description-statistics-anonymous">Le stockage ou l’accès technique qui est utilisé exclusivement dans des finalités statistiques anonymes. En l’absence d’une assignation à comparaître, d’une conformité volontaire de la part de votre fournisseur d’accès à internet ou d’enregistrements supplémentaires provenant d’une tierce partie, les informations stockées ou extraites à cette seule fin ne peuvent généralement pas être utilisées pour vous identifier.</span>
745 + </div>
746 + </details>
747 + <details class="cmplz-category cmplz-marketing" >
748 + <summary>
749 + <span class="cmplz-category-header">
750 + <span class="cmplz-category-title">Marketing</span>
751 + <span class="cmplz-banner-checkbox">
752 + <input type="checkbox"
753 + id="cmplz-marketing-optin"
754 + data-category="cmplz_marketing"
755 + class="cmplz-consent-checkbox cmplz-marketing"
756 + size="40"
757 + value="1"/>
758 + <label class="cmplz-label" for="cmplz-marketing-optin" tabindex="0"><span class="screen-reader-text">Marketing</span></label>
759 + </span>
760 + <span class="cmplz-icon cmplz-open">
761 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
762 + </span>
763 + </span>
764 + </summary>
765 + <div class="cmplz-description">
766 + <span class="cmplz-description-marketing">Le stockage ou l’accès technique est nécessaire pour créer des profils d’utilisateurs afin d’envoyer des publicités, ou pour suivre l’utilisateur sur un site web ou sur plusieurs sites web ayant des finalités marketing similaires.</span>
767 + </div>
768 + </details>
769 + </div><!-- categories end -->
770 + </div>
771 +
772 + <div class="cmplz-links cmplz-information">
773 + <a class="cmplz-link cmplz-manage-options cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Gérer les options</a>
774 + <a class="cmplz-link cmplz-manage-third-parties cookie-statement" href="#" data-relative_url="#cmplz-cookies-overview">Gérer les services</a>
775 + <a class="cmplz-link cmplz-manage-vendors tcf cookie-statement" href="#" data-relative_url="#cmplz-tcf-wrapper">Gérer {vendor_count} fournisseurs</a>
776 + <a class="cmplz-link cmplz-external cmplz-read-more-purposes tcf" target="_blank" rel="noopener noreferrer nofollow" href="https://cookiedatabase.org/tcf/purposes/">En savoir plus sur ces finalités</a>
777 + </div>
778 +
779 + <div class="cmplz-divider cmplz-footer"></div>
780 +
781 + <div class="cmplz-buttons">
782 + <button class="cmplz-btn cmplz-accept">Accepter</button>
783 + <button class="cmplz-btn cmplz-deny">Refuser</button>
784 + <button class="cmplz-btn cmplz-view-preferences">Voir les préférences</button>
785 + <button class="cmplz-btn cmplz-save-preferences">Enregistrer les préférences</button>
786 + <a class="cmplz-btn cmplz-manage-options tcf cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Voir les préférences</a>
787 + </div>
788 +
789 + <div class="cmplz-links cmplz-documents">
790 + <a class="cmplz-link cookie-statement" href="#" data-relative_url="">{title}</a>
791 + <a class="cmplz-link privacy-statement" href="#" data-relative_url="">{title}</a>
792 + <a class="cmplz-link impressum" href="#" data-relative_url="">{title}</a>
793 + </div>
794 +
795 +</div>
796 +</div>
797 + <div id="cmplz-manage-consent" data-nosnippet="true"><button class="cmplz-btn cmplz-hidden cmplz-manage-consent manage-consent-1">Gérer le consentement</button>
798 +
799 +</div><script id="appartements-brochu-uikit-js" src="https://groupeimmobilierbrochu.com/wp-content/themes/GIB-appartement/js/theme.min.js?ver=1.1.4"></script>
800 +<script id="appartements-brochu-custom-js" src="https://groupeimmobilierbrochu.com/wp-content/themes/GIB-appartement/js/customizer.js?ver=1.1.4"></script>
801 +<script type="text/plain" data-service="acf-custom-maps" data-category="marketing" id="appartements-brochu-map-js" data-cmplz-src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAp1W5ywuQprlSqthCHR2XLpQBTSyeSBpk&#038;callback=initMaa&#038;ver=1.1.4"></script>
802 +<script id="cmplz-cookiebanner-js-extra">
803 +var complianz = {"prefix":"cmplz_","user_banner_id":"1","set_cookies":[],"block_ajax_content":"","banner_version":"11","version":"7.0.5","store_consent":"","do_not_track_enabled":"1","consenttype":"optin","region":"ca","geoip":"","dismiss_timeout":"","disable_cookiebanner":"","soft_cookiewall":"","dismiss_on_scroll":"","cookie_expiry":"365","url":"https://groupeimmobilierbrochu.com/wp-json/complianz/v1/","locale":"lang=fr&locale=fr_CA","set_cookies_on_root":"","cookie_domain":"","current_policy_id":"34","cookie_path":"/","categories":{"statistics":"statistiques","marketing":"marketing"},"tcf_active":"","placeholdertext":"Cliquez pour accepter les t\u00e9moins {category} et activer ce contenu","css_file":"https://groupeimmobilierbrochu.com/wp-content/uploads/complianz/css/banner-{banner_id}-{type}.css?v=11","page_links":{"ca":{"cookie-statement":{"title":"Politique de confidentialit\u00e9","url":"https://groupeimmobilierbrochu.com/politique-de-confidentialite/"}}},"tm_categories":"","forceEnableStats":"","preview":"","clean_cookies":"","aria_label":"Cliquez pour accepter les t\u00e9moins {category} et activer ce contenu"};
804 +//# sourceURL=cmplz-cookiebanner-js-extra
805 +</script>
806 +<script defer id="cmplz-cookiebanner-js" src="https://groupeimmobilierbrochu.com/wp-content/plugins/complianz-gdpr/cookiebanner/js/complianz.min.js?ver=1715620671"></script>
807 +<script id="wp-emoji-settings" type="application/json">
808 +{"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://groupeimmobilierbrochu.com/wp-includes/js/wp-emoji-release.min.js?ver=7.0.3"}}
809 +</script>
810 +<script type="module">
811 +/*! This file is auto-generated */
812 +var e="script#wp-emoji-settings",t=document.querySelector(e);if(!(t instanceof HTMLScriptElement))throw new Error("Element missing: "+e);const r=JSON.parse(t.text),s=(window._wpemojiSettings=r,"wpEmojiSettingsSupports"),o=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(s,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const r=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===r[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,r){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!r(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,r){let a;const s=(a="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),o=(s.textBaseline="top",s.font="600 32px Arial",{});return e.forEach(e=>{o[e]=t(s,e,n,r)}),o}function a(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}r.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(s));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(o),u.toString(),c.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"});const a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=e=>{i(n=e.data),a.terminate(),t(n)})}catch(e){}i(n=f(o,u,c,p))}t(n)}).then(e=>{for(const n in e)r.supports[n]=e[n],r.supports.everything=r.supports.everything&&r.supports[n],"flag"!==n&&(r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&r.supports[n]);var t;r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&!r.supports.flag,r.supports.everything||((t=r.source||{}).concatemoji?a(t.concatemoji):t.wpemoji&&t.twemoji&&(a(t.twemoji),a(t.wpemoji)))});
813 +//# sourceURL=https://groupeimmobilierbrochu.com/wp-includes/js/wp-emoji-loader.min.js
814 +</script>
815 +
816 +
817 +</body>
818 +
819 +</html>
\ No newline at end of file
added tests/fixtures/brochu/ef2fce0b8ada440f507e.html +799 −0
@@ -0,0 +1,799 @@
1 +<!doctype html>
2 +<html lang="fr-CA">
3 +
4 +<head>
5 + <meta charset="UTF-8">
6 + <meta name="viewport" content="width=device-width, initial-scale=1">
7 + <link rel="profile" href="https://gmpg.org/xfn/11">
8 + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
9 +
10 +<!-- Google Tag Manager for WordPress by gtm4wp.com -->
11 +<script data-cfasync="false" data-pagespeed-no-defer>
12 + var gtm4wp_datalayer_name = "dataLayer";
13 + var dataLayer = dataLayer || [];
14 +
15 + const gtm4wp_scrollerscript_debugmode = false;
16 + const gtm4wp_scrollerscript_callbacktime = 100;
17 + const gtm4wp_scrollerscript_readerlocation = 150;
18 + const gtm4wp_scrollerscript_contentelementid = "content";
19 + const gtm4wp_scrollerscript_scannertime = 60;
20 +</script>
21 +<!-- End Google Tag Manager for WordPress by gtm4wp.com -->
22 + <!-- This site is optimized with the Yoast SEO plugin v28.2 - https://yoast.com/product/yoast-seo-wordpress/ -->
23 + <title>Habitat 2000 - Groupe Immobilier Brochu</title>
24 + <link rel="canonical" href="https://groupeimmobilierbrochu.com/projets/habitat-2000/" />
25 + <meta property="og:locale" content="fr_CA" />
26 + <meta property="og:type" content="article" />
27 + <meta property="og:title" content="Habitat 2000 - Groupe Immobilier Brochu" />
28 + <meta property="og:url" content="https://groupeimmobilierbrochu.com/projets/habitat-2000/" />
29 + <meta property="og:site_name" content="Groupe Immobilier Brochu" />
30 + <meta property="article:modified_time" content="2026-07-15T16:30:49+00:00" />
31 + <meta name="twitter:card" content="summary_large_image" />
32 + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/groupeimmobilierbrochu.com\/projets\/habitat-2000\/","url":"https:\/\/groupeimmobilierbrochu.com\/projets\/habitat-2000\/","name":"Habitat 2000 - Groupe Immobilier Brochu","isPartOf":{"@id":"https:\/\/groupeimmobilierbrochu.com\/#website"},"datePublished":"2022-11-26T18:59:49+00:00","dateModified":"2026-07-15T16:30:49+00:00","breadcrumb":{"@id":"https:\/\/groupeimmobilierbrochu.com\/projets\/habitat-2000\/#breadcrumb"},"inLanguage":"fr-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/groupeimmobilierbrochu.com\/projets\/habitat-2000\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/groupeimmobilierbrochu.com\/projets\/habitat-2000\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/groupeimmobilierbrochu.com\/"},{"@type":"ListItem","position":2,"name":"Projets","item":"https:\/\/groupeimmobilierbrochu.com\/projets\/"},{"@type":"ListItem","position":3,"name":"Habitat 2000"}]},{"@type":"WebSite","@id":"https:\/\/groupeimmobilierbrochu.com\/#website","url":"https:\/\/groupeimmobilierbrochu.com\/","name":"Groupe Immobilier Brochu","description":"Développeurs immobilier","publisher":{"@id":"https:\/\/groupeimmobilierbrochu.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/groupeimmobilierbrochu.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-CA"},{"@type":"Organization","@id":"https:\/\/groupeimmobilierbrochu.com\/#organization","name":"Groupe Immobilier Brochu","url":"https:\/\/groupeimmobilierbrochu.com\/","logo":{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/groupeimmobilierbrochu.com\/#\/schema\/logo\/image\/","url":"https:\/\/groupeimmobilierbrochu.com\/wp-content\/uploads\/2023\/11\/cropped-Logo-jpg.webp","contentUrl":"https:\/\/groupeimmobilierbrochu.com\/wp-content\/uploads\/2023\/11\/cropped-Logo-jpg.webp","width":765,"height":396,"caption":"Groupe Immobilier Brochu"},"image":{"@id":"https:\/\/groupeimmobilierbrochu.com\/#\/schema\/logo\/image\/"}}]}</script>
33 + <!-- / Yoast SEO plugin. -->
34 +
35 +
36 +<link rel='dns-prefetch' href='//maps.googleapis.com' />
37 +<link rel="alternate" type="application/rss+xml" title="Groupe Immobilier Brochu &raquo; Flux" href="https://groupeimmobilierbrochu.com/feed/" />
38 +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://groupeimmobilierbrochu.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fgroupeimmobilierbrochu.com%2Fprojets%2Fhabitat-2000%2F" />
39 +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://groupeimmobilierbrochu.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fgroupeimmobilierbrochu.com%2Fprojets%2Fhabitat-2000%2F&#038;format=xml" />
40 +<style id="wp-img-auto-sizes-contain-inline-css">
41 +img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
42 +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
43 +</style>
44 +<link rel='stylesheet' id='formidable-css' href='https://groupeimmobilierbrochu.com/wp-content/plugins/formidable/css/formidableforms.css?ver=7162051' media='all' />
45 +<style id="wp-emoji-styles-inline-css">
46 +
47 + img.wp-smiley, img.emoji {
48 + display: inline !important;
49 + border: none !important;
50 + box-shadow: none !important;
51 + height: 1em !important;
52 + width: 1em !important;
53 + margin: 0 0.07em !important;
54 + vertical-align: -0.1em !important;
55 + background: none !important;
56 + padding: 0 !important;
57 + }
58 +/*# sourceURL=wp-emoji-styles-inline-css */
59 +</style>
60 +<style id="wp-block-library-inline-css">
61 +:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
62 +
63 +/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */
64 +</style>
65 +<style id="classic-theme-styles-inline-css">
66 +/*! This file is auto-generated */
67 +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
68 +/*# sourceURL=/wp-includes/css/classic-themes.min.css */
69 +</style>
70 +
71 +<style id="global-styles-inline-css">
72 +:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
73 +/*# sourceURL=global-styles-inline-css */
74 +</style>
75 +
76 +<link rel='stylesheet' id='cmplz-general-css' href='https://groupeimmobilierbrochu.com/wp-content/plugins/complianz-gdpr/assets/css/cookieblocker.min.css?ver=1715620671' media='all' />
77 +<link rel='stylesheet' id='appartements-brochu-style-css' href='https://groupeimmobilierbrochu.com/wp-content/themes/GIB-appartement/css/theme.min.css?ver=1.1.1674306552' media='all' />
78 +<script id="gtm4wp-scroll-tracking-js" src="https://groupeimmobilierbrochu.com/wp-content/plugins/duracelltomi-google-tag-manager/dist/js/analytics-talk-content-tracking.js?ver=1.22.3"></script>
79 +<script id="jquery-core-js" src="https://groupeimmobilierbrochu.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script>
80 +<script id="jquery-migrate-js" src="https://groupeimmobilierbrochu.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script>
81 +<link rel="https://api.w.org/" href="https://groupeimmobilierbrochu.com/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://groupeimmobilierbrochu.com/xmlrpc.php?rsd" />
82 +<meta name="generator" content="WordPress 7.0.3" />
83 +<link rel='shortlink' href='https://groupeimmobilierbrochu.com/?p=28' />
84 +<meta name="generator" content="performance-lab 4.2.0; plugins: ">
85 +<script>document.documentElement.className += " js";</script>
86 + <style>.cmplz-hidden {
87 + display: none !important;
88 + }</style>
89 +<!-- Google Tag Manager for WordPress by gtm4wp.com -->
90 +<!-- GTM Container placement set to automatic -->
91 +<script data-cfasync="false" data-pagespeed-no-defer>
92 + var dataLayer_content = {"pagePostType":"project","pagePostType2":"single-project","pagePostAuthor":"gael.bouffard"};
93 + dataLayer.push( dataLayer_content );
94 +</script>
95 +<script data-cfasync="false" data-pagespeed-no-defer>
96 +(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
97 +new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
98 +j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
99 +'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
100 +})(window,document,'script','dataLayer','GTM-WRXBQMK3');
101 +</script>
102 +<!-- End Google Tag Manager for WordPress by gtm4wp.com -->
103 +
104 + <!-- <meta property="og:image" content="" /> -->
105 +
106 +
107 +
108 +
109 +<link rel="icon" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" sizes="32x32" />
110 +<link rel="icon" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" sizes="192x192" />
111 +<link rel="apple-touch-icon" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" />
112 +<meta name="msapplication-TileImage" content="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/01/favicon_groupe_immobilier_brochu1.png" />
113 +<style id="wp-custom-css">
114 +/* Fix chevauchement titre "Reconnaissances" sur ecrans intermediaires */
115 +@media (min-width: 960px) and (max-width: 1360px) {
116 + #news .uk-grid > .uk-width-1-4\@m,
117 + #news .uk-grid > .uk-width-expand\@m {
118 + width: 100% !important;
119 + max-width: 100% !important;
120 + }
121 +}
122 +
123 +/* Masquer la barre verte des projets quand elle deborderait sur deux lignes */
124 +@media (max-width: 1510px) {
125 + .project-list {
126 + display: none;
127 + }
128 +}
129 +
130 +/* Retarder le basculement vers le menu mobile */
131 +@media (min-width: 992px) {
132 + .tm-header-mobile.uk-hidden\@l {
133 + display: none !important;
134 + }
135 + .tm-header.uk-visible\@l {
136 + display: block !important;
137 + }
138 +}
139 +@media (max-width: 991px) {
140 + .tm-header.uk-visible\@l {
141 + display: none !important;
142 + }
143 + .tm-header-mobile.uk-hidden\@l {
144 + display: block !important;
145 + }
146 +}
147 +</style>
148 +</head>
149 +
150 +
151 +<body data-cmplz=1 class="wp-singular project-template-default single single-project postid-28 wp-custom-logo wp-theme-GIB-appartement no-sidebar">
152 +
153 +<!-- GTM Container placement set to automatic -->
154 +<!-- Google Tag Manager (noscript) -->
155 + <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WRXBQMK3" height="0" width="0" style="display:none;visibility:hidden" aria-hidden="true"></iframe></noscript>
156 +<!-- End Google Tag Manager (noscript) -->
157 + <div id="page-container" class="page-container uk-clearfix">
158 + <div id="page" class="tm-page uk-margin-auto">
159 + <!-- <div class="uk-background-primary uk-padding">
160 + fef
161 + </div> -->
162 + <div class="tm-header-mobile uk-hidden@l">
163 +
164 +
165 + <div uk-sticky="" show-on-up="" animation="uk-animation-slide-top" cls-active="uk-navbar-sticky" sel-target=".uk-navbar-container" class="uk-sticky">
166 +
167 + <div class="uk-navbar-container">
168 + <nav uk-navbar="container: .tm-header-mobile" class="uk-navbar">
169 + <div class="uk-navbar-center">
170 + <div class="uk-width-expand uk-margin-auto logo">
171 + <a href="https://groupeimmobilierbrochu.com/" class="custom-logo-link" rel="home"><img width="765" height="396" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp" class="custom-logo" alt="Groupe Immobilier Brochu" decoding="async" fetchpriority="high" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp 765w, https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg-300x155.webp 300w" sizes="(max-width: 765px) 100vw, 765px" /></a> </div>
172 + </div>
173 +
174 +
175 +
176 + <div class="uk-navbar-right">
177 + <a class="uk-navbar-toggle" href="#tm-mobile" uk-toggle="" aria-expanded="false">
178 + <div uk-navbar-toggle-icon="" class="uk-icon uk-navbar-toggle-icon"></div>
179 + </a>
180 + </div>
181 +
182 +
183 + </nav>
184 + </div>
185 +
186 +
187 + </div>
188 + <div class="uk-sticky-placeholder" style="height: 90px; margin: 0px;" hidden=""></div>
189 +
190 + <div id="tm-mobile" class="uk-modal-full uk-modal" uk-modal>
191 + <div class="uk-modal-dialog uk-modal-body uk-height-viewport">
192 + <button class="uk-modal-close-full uk-icon uk-close" type="button" uk-close=""></button>
193 + <div class="uk-margin-auto-vertical uk-width-1-1">
194 + <div class="uk-child-width-1-1 uk-grid uk-grid-stack" uk-grid>
195 + <div>
196 + <div class="uk-panel">
197 + <ul id="menu-menu" class="uk-nav uk-nav-default uk-nav-divider"><li id="menu-item-42" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-42"><a href="https://groupeimmobilierbrochu.com/">Accueil</a></li>
198 +<li id="menu-item-43" class="menu-item menu-item-type-post_type_archive menu-item-object-project menu-item-43 current-menu-item"><a href="https://groupeimmobilierbrochu.com/projets/">Projets</a></li>
199 +<li id="menu-item-49" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="https://groupeimmobilierbrochu.com/a-propos/">À propos</a></li>
200 +<li id="menu-item-48" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-48"><a href="https://groupeimmobilierbrochu.com/contact/">Contact</a></li>
201 +</ul> <div class="uk-navbar-item uk-margin">
202 + <a href="https://groupeimmobilierbrochu.com/contact/" class="uk-button uk-button-primary uk-button-">Planifiez une visite</a>
203 + </div>
204 + <div class="uk-grid-small uk-child-width-auto uk-flex-middle uk-flex-center uk-margin" uk-grid>
205 + <div><a href="tel:4188326123option1" class="phone uk-text-emphasis">+ 418 832-6123 option 1</a></div>,
206 + <div>
207 + <ul class="uk-iconnav">
208 + <li><a href="https://www.linkedin.com/company/groupe-immobilier-brochu/" class="social" uk-icon="icon: linkedin; ratio:0.85" target="_blank"></a></li>
209 + <li><a href="https://www.facebook.com/groupeimmobilierbrochu" class="social" uk-icon="icon: facebook; ratio:0.85" target="_blank"></a></li>
210 +
211 + </ul>
212 + </div>
213 + </div>
214 + <div class="project-list">
215 + <div class="">
216 + <div class="uk-grid uk-grid-small uk-text-center uk-text-small" uk-grid>
217 +
218 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis secteur<br/>Saint-Romuald / Le Pilier</a></div>
219 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis secteur<br />
220 +Fort numéro 1</a></div>
221 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Lévis secteur<br />
222 +Centre-ville</a></div>
223 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis secteur<br />
224 +Charny / Pionniers</a></div>
225 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Lévis secteur <br />
226 +Charny / Aquaréna</a></div>
227 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Lévis secteur <br />
228 +Saint-Romuald</a></div>
229 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-<br />
230 +de-Lauzon</a></div>
231 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Lévis secteur <br />
232 +Saint-Nicolas</a></div>
233 + <div class="uk-width-1-2"><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Québec secteur <br />
234 +Les Saules</a></div>
235 +
236 + </div>
237 + </div>
238 + </div>
239 + <p class="uk-text-meta uk-text-center">
240 + © 2022-2026 Groupe immobilier Brochu inc. Tous droits réservés. RBQ : 5697-8943-01
241 +
242 + </p>
243 + </div>
244 + </div>
245 +
246 + </div>
247 + </div>
248 +
249 + </div>
250 + </div>
251 +
252 + </div>
253 + <div class="tm-header uk-visible@l tm-header-overlay" uk-header>
254 + <div class="project-list uk-background-primary uk-padding-small uk-light">
255 + <div class="uk-container uk-container-large">
256 + <div class="uk-flex uk-flex-middle uk-flex-right">
257 + <div class="uk-h6 uk-margin-remove">Nos projets :</div>
258 + <ul class="uk-subnav uk-subnav-divider uk-text-center uk-margin-remove">
259 + <li><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis secteur<br/>Saint-Romuald / Le Pilier</a></li>
260 + <li><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis secteur<br />
261 +Fort numéro 1</a></li>
262 + <li><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Lévis secteur<br />
263 +Centre-ville</a></li>
264 + <li><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis secteur<br />
265 +Charny / Pionniers</a></li>
266 + <li><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Lévis secteur <br />
267 +Charny / Aquaréna</a></li>
268 + <li><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Lévis secteur <br />
269 +Saint-Romuald</a></li>
270 + <li><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-<br />
271 +de-Lauzon</a></li>
272 + <li><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Lévis secteur <br />
273 +Saint-Nicolas</a></li>
274 + <li><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Québec secteur <br />
275 +Les Saules</a></li>
276 + </ul>
277 + </div>
278 + </div>
279 + </div>
280 +
281 + <div uk-sticky media="@l" show-on-up="true" animation="uk-animation-slide-top" cls-inactive="" cls-active="" sel-target=".uk-navbar-container">
282 + <div class="uk-navbar-container ">
283 +
284 + <div class="uk-container uk-container-large">
285 + <nav class="uk-navbar uk-flex-middle uk-margin-small-top uk-margin-small-bottom" uk-navbar>
286 + <div class="uk-navbar-left">
287 +
288 + <div class="logo-default">
289 + <a href="https://groupeimmobilierbrochu.com/" class="custom-logo-link" rel="home"><img width="765" height="396" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp" class="custom-logo" alt="Groupe Immobilier Brochu" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg.webp 765w, https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/cropped-Logo-jpg-300x155.webp 300w" sizes="(max-width: 765px) 100vw, 765px" /></a> </div>
290 +
291 + </div>
292 + <div class="uk-navbar-right">
293 + <div>
294 + <!-- <div class="project-list">
295 +
296 + <ul class="uk-subnav uk-subnav-divider uk-flex uk-flex-bottom uk-flex-right uk-margin-small-bottom uk-text-center">
297 + <li><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Lévis secteur<br/>Saint-Romuald / Le Pilier</a></li>
298 + <li><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">Lévis secteur<br />
299 +Fort numéro 1</a></li>
300 + <li><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Lévis secteur<br />
301 +Centre-ville</a></li>
302 + <li><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis secteur<br />
303 +Charny / Pionniers</a></li>
304 + <li><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Lévis secteur <br />
305 +Charny / Aquaréna</a></li>
306 + <li><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Lévis secteur <br />
307 +Saint-Romuald</a></li>
308 + <li><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-<br />
309 +de-Lauzon</a></li>
310 + <li><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Lévis secteur <br />
311 +Saint-Nicolas</a></li>
312 + <li><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Québec secteur <br />
313 +Les Saules</a></li>
314 + </ul>
315 +
316 + </div> -->
317 +
318 + <div class="uk-flex uk-flex-middle uk-flex-right">
319 + <ul id="menu-menu-1" class="uk-navbar-nav"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-42"><a href="https://groupeimmobilierbrochu.com/">Accueil</a></li>
320 +<li class="menu-item menu-item-type-post_type_archive menu-item-object-project menu-item-43 current-menu-item"><a href="https://groupeimmobilierbrochu.com/projets/">Projets</a></li>
321 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="https://groupeimmobilierbrochu.com/a-propos/">À propos</a></li>
322 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-48"><a href="https://groupeimmobilierbrochu.com/contact/">Contact</a></li>
323 +</ul>
324 + <a href="https://www.facebook.com/groupeimmobilierbrochu" class="uk-margin-small-right" uk-icon="icon: facebook" target="_blank"></a>
325 + <a href="https://groupeimmobilierbrochu.com/contact/" class="uk-button uk-button-primary uk-button-">Planifiez une visite</a>
326 + </div>
327 +
328 +
329 +
330 + </div>
331 + </div>
332 +
333 + </nav>
334 +
335 + <!-- </div> -->
336 +
337 + </div>
338 +
339 + </div>
340 +
341 +
342 +
343 + </div>
344 + <!-- <div class="uk-sticky-placeholder" style="height: 90px; margin: 0px;" hidden=""></div> -->
345 + <!-- <div class="uk-sticky-placeholder" style="height: 81px; margin: 0px;"></div> -->
346 +
347 + </div>
348 +
349 +
350 +<main class="project">
351 +
352 + <div class="uk-section-default">
353 + <div class="uk-section-large uk-height-large uk-flex uk-flex-center uk-flex-middle uk-background-cover uk-inline" data-src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/Charny-jpg.webp" uk-img>
354 + <div class="uk-overlay-primary uk-position-cover"></div>
355 + <div class="uk-overlay uk-position-top uk-light">
356 + <div class="uk-container uk-container-large">
357 + <a href="https://groupeimmobilierbrochu.com/projets/" class="uk-text-small"><i class="fa-solid fa-chevron-left"></i> Voir tous les projets</a>
358 + </div>
359 + </div>
360 + <div class="uk-overlay uk-position-bottom">
361 + <div class="uk-container uk-container-large">
362 + <div class="">
363 + <div class="uk-margin-bottom">
364 + <span class="uk-label disp">Disponible octobre 2026</span>
365 + </div>
366 + <div class="uk-light">
367 + <div class="uk-h3 uk-margin-remove">
368 + Charny </div>
369 + <h1 class="uk-h1 uk-margin-remove">Habitat 2000</h1>
370 + <div class="uk-margin-top">
371 + <i class="fa-solid fa-location-dot"></i>
372 + <a href="https://goo.gl/maps/x33vq4VyugWd8uPX9" target="_blank"> 9001, 9024, 9025 et 9032 rue de l’Attisée, Lévis</a>
373 + - <a href="https://goo.gl/maps/KBfUV8bS1LYxfryf6" target="_blank"> 6640 rue des Camomilles, Lévis</a>
374 + </div>
375 +
376 + </div>
377 + </div>
378 + </div>
379 + </div>
380 + </div>
381 + </div>
382 +
383 + <div class="uk-section">
384 + <div class="uk-container uk-container-large">
385 + <div class="uk-grid-large uk-margin-bottom" uk-grid>
386 + <div class="uk-width-3-5@m">
387 + <h3>Parc immobilier de 60 logements</h3>
388 +<ul>
389 +<li>5 blocs de 12 logements</li>
390 +<li>Grandeur des logements : 4 ½</li>
391 +<li>Situés dans une zone où la proximité des commerces, des institutions financières<br />
392 +et d’un hôpital permettent de se procurer les biens et services à quelques<br />
393 +minutes à pieds</li>
394 +<li>Bien desservis par les transports en commun vers Québec et vers Lévis, plus d&rsquo;informations au <a href="https://www.stlevis.ca/">www.stlevis.ca</a></li>
395 +<li>Ceinturés par la piste cyclable de Charny et donnant accès à celle<br />
396 +de Saint-Jean-Chrysostome</li>
397 +<li>Aux premières loges pour accéder à la Rive-Nord par la proximité des accès<br />
398 +aux deux ponts</li>
399 +<li>Construction de qualité: en acier et en béton</li>
400 +<li>Excellente insonorisation</li>
401 +</ul>
402 +<p>&nbsp;</p>
403 +<p>* Les chiens ne sont pas permis dans nos propriétés</p>
404 +
405 + </div>
406 + <div class="uk-width-expand@m">
407 + <div class="uk-panel uk-background-muted uk-padding uk-text-center">
408 + <h3 class="uk-h3">Statut <span class="uk-label disp"> Disponible</span></h3>
409 + <div class="uk-alert-primary" uk-alert>
410 + <p class="uk-margin-remove uk-text-small uk-text-emphasis">Disponible octobre 2026</p>
411 + </div>
412 + <div class="">
413 + <h3 class="uk-h5 uk-margin-small-bottom">À partir de 1195$ pour 4 1/2</h3>
414 + <div class="uk-text-primary uk-text-bold">418 832-6123 option 1</div>
415 + <a href="/cdn-cgi/l/email-protection#c7aba8a4a6b3aea8a987a0b5a8b2b7a2aeaaaaa8a5aeabaea2b5a5b5a8a4afb2e9a4a8aa"><span class="__cf_email__" data-cfemail="b9d5d6dad8cdd0d6d7f9decbd6ccc9dcd0d4d4d6dbd0d5d0dccbdbcbd6dad1cc97dad6d4">[email&#160;protected]</span></a>
416 + </div>
417 + </div>
418 + <div class="uk-text-center uk-margin-top">
419 + <div>
420 + <a href="https://goo.gl/maps/x33vq4VyugWd8uPX9" target="_blank"><i class="fa-solid fa-location-dot"></i> 9001, 9024, 9025 et 9032 rue de l’Attisée, Lévis</a>
421 + </div>
422 + <div>
423 + <a href="https://goo.gl/maps/KBfUV8bS1LYxfryf6" target="_blank"><i class="fa-solid fa-location-dot"></i> 6640 rue des Camomilles, Lévis</a>
424 + </div>
425 + </div>
426 + <div class="uk-margin uk-text-center">
427 + <a href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/plan_type_charny-jpg.webp" target="_blank" class="uk-button uk-button-text"><i class="fa-solid fa-file-pdf"></i> Consulter les plans</a>
428 + </div>
429 + </div>
430 +
431 + </div>
432 + </div>
433 + </div>
434 + <div class="uk-section uk-section-large uk-padding-remove-top">
435 + <div uk-grid>
436 + <div class=" uk-margin-auto uk-text-center uk-margin-medium-bottom">
437 + <h2 class="uk-h2">Découvrez votre nouvel espace de vie</h2>
438 + </div>
439 + </div>
440 + <div class="uk-position-relative uk-visible-toggle uk-light" tabindex="-1" uk-slider="clsActivated: uk-transition-active; center: true">
441 + <ul class="uk-slider-items uk-grid" uk-lightbox="animation: fade">
442 + <li class="uk-width-4-5 uk-width-2-5@m">
443 + <div class="uk-panel">
444 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_Charny1024_4-jpg.webp">
445 + <img width="1024" height="683" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_Charny1024_4-jpg.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_Charny1024_4-jpg.webp 1024w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_Charny1024_4-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_Charny1024_4-768x512.webp 768w" sizes="(max-width: 1024px) 100vw, 1024px" /> </a>
446 + </div>
447 + </li>
448 + <li class="uk-width-4-5 uk-width-2-5@m">
449 + <div class="uk-panel">
450 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_Charny1024_5-jpg.webp">
451 + <img width="1024" height="684" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_Charny1024_5-jpg.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_Charny1024_5-jpg.webp 1024w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_Charny1024_5-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_Charny1024_5-768x513.webp 768w" sizes="(max-width: 1024px) 100vw, 1024px" /> </a>
452 + </div>
453 + </li>
454 + <li class="uk-width-4-5 uk-width-2-5@m">
455 + <div class="uk-panel">
456 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_Charny1024_1-jpg.webp">
457 + <img width="1024" height="684" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_Charny1024_1-jpg.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_Charny1024_1-jpg.webp 1024w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_Charny1024_1-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_Charny1024_1-768x513.webp 768w" sizes="(max-width: 1024px) 100vw, 1024px" /> </a>
458 + </div>
459 + </li>
460 + <li class="uk-width-4-5 uk-width-2-5@m">
461 + <div class="uk-panel">
462 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_Charny1024_2-jpg.webp">
463 + <img width="1024" height="683" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_Charny1024_2-jpg.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_Charny1024_2-jpg.webp 1024w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_Charny1024_2-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_Charny1024_2-768x512.webp 768w" sizes="(max-width: 1024px) 100vw, 1024px" /> </a>
464 + </div>
465 + </li>
466 + <li class="uk-width-4-5 uk-width-2-5@m">
467 + <div class="uk-panel">
468 + <a class="uk-inline uk-inline-clip uk-transition-toggle" href="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_Charny1024_3-jpg.webp">
469 + <img width="1024" height="684" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_Charny1024_3-jpg.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_Charny1024_3-jpg.webp 1024w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_Charny1024_3-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/grandes-photos_Charny1024_3-768x513.webp 768w" sizes="(max-width: 1024px) 100vw, 1024px" /> </a>
470 + </div>
471 + </li>
472 + </ul>
473 + <a class="uk-position-center-left uk-position-small uk-hidden-hover uk-slidenav-large" href="#" uk-slidenav-previous uk-slider-item="previous"></a>
474 + <a class="uk-position-center-right uk-position-small uk-hidden-hover uk-slidenav-large" href="#" uk-slidenav-next uk-slider-item="next"></a>
475 + </div>
476 + </div>
477 + <div class="uk-section-default">
478 + <div class="uk-position-relative">
479 +
480 + <div data-service="acf-custom-maps" data-category="marketing" data-placeholder-image="https://groupeimmobilierbrochu.com/wp-content/plugins/complianz-gdpr/assets/images/placeholders/google-maps-minimal-1280x920.jpg" class="cmplz-placeholder-element acf-map" data-zoom="16">
481 + <div class="marker" data-lat="46.7232085" data-lng="-71.2657852"></div>
482 + </div>
483 + </div>
484 + </div>
485 +
486 + <div class="uk-section uk-section-large uk-section-muted">
487 + <div class="uk-container">
488 + <div uk-grid>
489 + <div class=" uk-margin-auto uk-text-center">
490 + <h3 class="uk-h2">Consultez nos autres projets</h3>
491 + </div>
492 + </div>
493 + <div uk-grid>
494 + <div class="uk-width-1-2@m project">
495 +
496 +
497 + <div class="uk-panel uk-margin-remove-first-child uk-inline">
498 + <a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">
499 + <div class="uk-inline-clip uk-transition-toggle">
500 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SL-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" srcset="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SL-1380x920.webp 1380w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SL-300x200.webp 300w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SL-1024x682.webp 1024w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SL-768x512.webp 768w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SL-1536x1023.webp 1536w, https://groupeimmobilierbrochu.com/wp-content/uploads/2022/11/SL-jpg.webp 1920w" sizes="(max-width: 1380px) 100vw, 1380px" /> </div>
501 + </a>
502 + <div class="label-container">
503 + <span class="uk-label complete">Complet</span>
504 + </div>
505 + <div class="uk-margin-top uk-flex uk-flex-middle" uk-grid>
506 + <div class="uk-width-expand">
507 + <div class="el-meta uk-h6 uk-text-primary uk-link-reset uk-margin-remove-bottom">
508 + <a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">Saint-Lambert-de-Lauzon</a>
509 + </div>
510 + <h3 class="el-title uk-h3 uk-margin-remove-top uk-margin-remove-bottom">
511 + <a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/" class="uk-link-reset">St-Lambert-de-Lauzon</a>
512 + </h3>
513 + </div>
514 +
515 + </div>
516 +
517 + <div class="">
518 + <div class="uk-text-small uk-text-bold uk-text-emphasis">
519 + 1er étage/RDC à 1375$ </div>
520 + </div>
521 + </div>
522 +
523 + </div>
524 + <div class="uk-width-1-2@s">
525 +
526 +
527 + <div class="uk-panel uk-margin-remove-first-child uk-inline">
528 + <a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">
529 + <div class="uk-inline-clip uk-transition-toggle">
530 + <img width="1380" height="920" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2023/11/1-Ext-21-dec-1380x920.webp" class="el-image uk-transition-scale-down uk-transition-opaque" alt="" decoding="async" /> </div>
531 + </a>
532 + <div class="label-container">
533 + <span class="uk-label disp">Unités très récentes disponibles</span>
534 + </div>
535 + <div class="uk-margin-top uk-flex uk-flex-middle" uk-grid>
536 + <div class="uk-width-expand">
537 + <div class="el-meta uk-h6 uk-text-primary uk-link-reset uk-margin-remove-bottom">
538 + <a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Lévis </a>
539 + </div>
540 + <h3 class="el-title uk-h3 uk-margin-remove-top uk-margin-remove-bottom">
541 + <a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/" class="uk-link-reset">Boul. du Centre-Hospitalier</a>
542 + </h3>
543 + </div>
544 +
545 + </div>
546 + <div class="">
547 + <div class="uk-text-small uk-text-bold uk-text-emphasis">
548 + Très récent, construction 2024 à 2026<br />
549 +4½ à partir de 1495 $ </div>
550 + </div>
551 +
552 + </div>
553 + </div>
554 + </div>
555 + </div>
556 + </div>
557 +
558 +
559 +
560 +
561 +
562 +
563 +</main><!-- #main -->
564 +
565 +
566 +
567 +
568 +
569 +<footer id="colophon" class="site-footer">
570 + <div class="uk-section uk-section-secondary uk-section-small uk-padding-remove-bottom">
571 + <div class="uk-container uk-container-large">
572 + <div class="uk-grid-large uk-margin-medium-bottom uk-text-center uk-text-left@m" uk-grid>
573 + <div class="uk-width-1-2@m uk-width-expand@l">
574 + <a href="">
575 + <img width="200" height="111" src="https://groupeimmobilierbrochu.com/wp-content/uploads/2022/12/logo-brochu-blanc.png" class="attachment-full size-full" alt="" decoding="async" loading="lazy" /> </a>
576 + <div class="uk-margin uk-text-small">
577 + <a href="https://goo.gl/maps/NRyMwGtJZmP9zpwd8" class="uk-link-text uk-margin-remove-last-child" target="_blank">700, rue des Grands-Jardins<br />
578 +Lévis (Québec) G6W 0Y7</a>
579 + </div>
580 + </div>
581 + <div class="uk-width-1-2@m uk-width-1-5@l">
582 + <h4 class="uk-h5 uk-margin-remove">Menu</h4>
583 + <ul id="menu-menu-2" class="uk-list uk-margin-small uk-text-small"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-42"><a href="https://groupeimmobilierbrochu.com/">Accueil</a></li>
584 +<li class="menu-item menu-item-type-post_type_archive menu-item-object-project menu-item-43 current-menu-item"><a href="https://groupeimmobilierbrochu.com/projets/">Projets</a></li>
585 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="https://groupeimmobilierbrochu.com/a-propos/">À propos</a></li>
586 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-48"><a href="https://groupeimmobilierbrochu.com/contact/">Contact</a></li>
587 +</ul> </div>
588 + <div class="uk-width-1-2@m uk-width-1-5@l">
589 + <h4 class="uk-h5 uk-margin-remove">Projets</h4>
590 + <ul class="uk-list uk-margin-small uk-text-small">
591 + <li><a href="https://groupeimmobilierbrochu.com/projets/le-pilier/">Le Pilier &#8211; Finaliste du prix Nobilis 2026</a></li>
592 + <li><a href="https://groupeimmobilierbrochu.com/projets/la-sentinelle/">La Sentinelle</a></li>
593 + <li><a href="https://groupeimmobilierbrochu.com/projets/promenade-des-forts/">Promenade des Forts</a></li>
594 + <li><a href="https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/">Boul. du Centre-Hospitalier</a></li>
595 + <li><a href="https://groupeimmobilierbrochu.com/projets/habitat-2000/">Habitat 2000</a></li>
596 + <li><a href="https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/">Seigneurie des Ponts</a></li>
597 + <li><a href="https://groupeimmobilierbrochu.com/projets/saint-lambert/">St-Lambert-de-Lauzon</a></li>
598 + <li><a href="https://groupeimmobilierbrochu.com/projets/st-nicolas/">Quartier Roc-Pointe</a></li>
599 + <li><a href="https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/">Les Immeubles Masson</a></li>
600 + </ul>
601 + </div>
602 + <div class="uk-width-1-2@m uk-width-expand@l">
603 + <h4 class="uk-h5 uk-margin-remove">Communiquez avec nous</h4>
604 + <h5 class="uk-h6 uk-margin-small-top uk-margin-remove-bottom">Téléphone</h5>
605 + <div class="uk-text-small uk-margin-"><a href="tel:418 832-6123 option 1" class="uk-link-text uk-margin-remove-last-child">418 832-6123 option 1</a></div>
606 + <h4 class="uk-h6 uk-margin-small-top uk-margin-remove-bottom">Courriel</h4>
607 + <div class="uk-text-small uk-margin-"><a href="/cdn-cgi/l/email-protection#acc0c3cfcdd8c5c3c2eccbdec3d9dcc9c5c1c1c3cec5c0c5c9decedec3cfc4d982cfc3c1" class="uk-link-text uk-margin-remove-last-child"><span class="__cf_email__" data-cfemail="6905060a081d000607290e1b061c190c000404060b0005000c1b0b1b060a011c470a0604">[email&#160;protected]</span></a></div>
608 + <div class="uk-margin">
609 + <a href="https://www.facebook.com/groupeimmobilierbrochu" class="" uk-icon="icon: facebook" target="_blank"></a>
610 + <a href="https://www.linkedin.com/company/groupe-immobilier-brochu/" class="" uk-icon="icon: linkedin" target="_blank"></a>
611 + </div>
612 +
613 + </div>
614 +
615 + </div>
616 + </div>
617 +
618 + <div class="uk-container uk-container-xlarge">
619 + <hr />
620 + </div>
621 +
622 + <div class="uk-section uk-section-xsmall uk-section-secondary">
623 + <div class="uk-container uk-container-xlarge">
624 +
625 + <div class="site-info">
626 + <div class="uk-text-center uk-text-small">
627 + © 2022-2026 Groupe immobilier Brochu inc. Tous droits réservés. RBQ : 5697-8943-01
628 + </div>
629 + </div><!-- .site-info -->
630 + </div>
631 + </div>
632 + </div>
633 +</footer><!-- #colophon -->
634 +</div><!-- #page -->
635 +</div><!-- #page-container -->
636 +
637 +<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="speculationrules">
638 +{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/GIB-appartement/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
639 +</script>
640 +
641 +<!-- Consent Management powered by Complianz | GDPR/CCPA Cookie Consent https://wordpress.org/plugins/complianz-gdpr -->
642 +<div id="cmplz-cookiebanner-container"><div class="cmplz-cookiebanner cmplz-hidden banner-1 banner-a optin cmplz-bottom-right cmplz-categories-type-view-preferences" aria-modal="true" data-nosnippet="true" role="dialog" aria-live="polite" aria-labelledby="cmplz-header-1-optin" aria-describedby="cmplz-message-1-optin">
643 + <div class="cmplz-header">
644 + <div class="cmplz-logo"></div>
645 + <div class="cmplz-title" id="cmplz-header-1-optin">Gérer le consentement</div>
646 + <div class="cmplz-close" tabindex="0" role="button" aria-label="Fermez la boîte de dialogue">
647 + <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="times" class="svg-inline--fa fa-times fa-w-11" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path fill="currentColor" d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg>
648 + </div>
649 + </div>
650 +
651 + <div class="cmplz-divider cmplz-divider-header"></div>
652 + <div class="cmplz-body">
653 + <div class="cmplz-message" id="cmplz-message-1-optin">Pour offrir les meilleures expériences, nous utilisons des technologies telles que les témoins pour stocker et/ou accéder aux informations des appareils. Le fait de consentir à ces technologies nous permettra de traiter des données telles que le comportement de navigation ou les ID uniques sur ce site. Le fait de ne pas consentir ou de retirer son consentement peut avoir un effet négatif sur certaines caractéristiques et fonctions.</div>
654 + <!-- categories start -->
655 + <div class="cmplz-categories">
656 + <details class="cmplz-category cmplz-functional" >
657 + <summary>
658 + <span class="cmplz-category-header">
659 + <span class="cmplz-category-title">Fonctionnel</span>
660 + <span class='cmplz-always-active'>
661 + <span class="cmplz-banner-checkbox">
662 + <input type="checkbox"
663 + id="cmplz-functional-optin"
664 + data-category="cmplz_functional"
665 + class="cmplz-consent-checkbox cmplz-functional"
666 + size="40"
667 + value="1"/>
668 + <label class="cmplz-label" for="cmplz-functional-optin" tabindex="0"><span class="screen-reader-text">Fonctionnel</span></label>
669 + </span>
670 + Toujours activé </span>
671 + <span class="cmplz-icon cmplz-open">
672 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
673 + </span>
674 + </span>
675 + </summary>
676 + <div class="cmplz-description">
677 + <span class="cmplz-description-functional">Le stockage ou l’accès technique est strictement nécessaire dans la finalité d’intérêt légitime de permettre l’utilisation d’un service spécifique explicitement demandé par l’abonné ou l’utilisateur, ou dans le seul but d’effectuer la transmission d’une communication sur un réseau de communications électroniques.</span>
678 + </div>
679 + </details>
680 +
681 + <details class="cmplz-category cmplz-preferences" >
682 + <summary>
683 + <span class="cmplz-category-header">
684 + <span class="cmplz-category-title">Préférences</span>
685 + <span class="cmplz-banner-checkbox">
686 + <input type="checkbox"
687 + id="cmplz-preferences-optin"
688 + data-category="cmplz_preferences"
689 + class="cmplz-consent-checkbox cmplz-preferences"
690 + size="40"
691 + value="1"/>
692 + <label class="cmplz-label" for="cmplz-preferences-optin" tabindex="0"><span class="screen-reader-text">Préférences</span></label>
693 + </span>
694 + <span class="cmplz-icon cmplz-open">
695 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
696 + </span>
697 + </span>
698 + </summary>
699 + <div class="cmplz-description">
700 + <span class="cmplz-description-preferences">Le stockage ou l’accès technique est nécessaire dans la finalité d’intérêt légitime de stocker des préférences qui ne sont pas demandées par l’abonné ou l’utilisateur.</span>
701 + </div>
702 + </details>
703 +
704 + <details class="cmplz-category cmplz-statistics" >
705 + <summary>
706 + <span class="cmplz-category-header">
707 + <span class="cmplz-category-title">Statistiques</span>
708 + <span class="cmplz-banner-checkbox">
709 + <input type="checkbox"
710 + id="cmplz-statistics-optin"
711 + data-category="cmplz_statistics"
712 + class="cmplz-consent-checkbox cmplz-statistics"
713 + size="40"
714 + value="1"/>
715 + <label class="cmplz-label" for="cmplz-statistics-optin" tabindex="0"><span class="screen-reader-text">Statistiques</span></label>
716 + </span>
717 + <span class="cmplz-icon cmplz-open">
718 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
719 + </span>
720 + </span>
721 + </summary>
722 + <div class="cmplz-description">
723 + <span class="cmplz-description-statistics">Le stockage ou l’accès technique qui est utilisé exclusivement à des fins statistiques.</span>
724 + <span class="cmplz-description-statistics-anonymous">Le stockage ou l’accès technique qui est utilisé exclusivement dans des finalités statistiques anonymes. En l’absence d’une assignation à comparaître, d’une conformité volontaire de la part de votre fournisseur d’accès à internet ou d’enregistrements supplémentaires provenant d’une tierce partie, les informations stockées ou extraites à cette seule fin ne peuvent généralement pas être utilisées pour vous identifier.</span>
725 + </div>
726 + </details>
727 + <details class="cmplz-category cmplz-marketing" >
728 + <summary>
729 + <span class="cmplz-category-header">
730 + <span class="cmplz-category-title">Marketing</span>
731 + <span class="cmplz-banner-checkbox">
732 + <input type="checkbox"
733 + id="cmplz-marketing-optin"
734 + data-category="cmplz_marketing"
735 + class="cmplz-consent-checkbox cmplz-marketing"
736 + size="40"
737 + value="1"/>
738 + <label class="cmplz-label" for="cmplz-marketing-optin" tabindex="0"><span class="screen-reader-text">Marketing</span></label>
739 + </span>
740 + <span class="cmplz-icon cmplz-open">
741 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
742 + </span>
743 + </span>
744 + </summary>
745 + <div class="cmplz-description">
746 + <span class="cmplz-description-marketing">Le stockage ou l’accès technique est nécessaire pour créer des profils d’utilisateurs afin d’envoyer des publicités, ou pour suivre l’utilisateur sur un site web ou sur plusieurs sites web ayant des finalités marketing similaires.</span>
747 + </div>
748 + </details>
749 + </div><!-- categories end -->
750 + </div>
751 +
752 + <div class="cmplz-links cmplz-information">
753 + <a class="cmplz-link cmplz-manage-options cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Gérer les options</a>
754 + <a class="cmplz-link cmplz-manage-third-parties cookie-statement" href="#" data-relative_url="#cmplz-cookies-overview">Gérer les services</a>
755 + <a class="cmplz-link cmplz-manage-vendors tcf cookie-statement" href="#" data-relative_url="#cmplz-tcf-wrapper">Gérer {vendor_count} fournisseurs</a>
756 + <a class="cmplz-link cmplz-external cmplz-read-more-purposes tcf" target="_blank" rel="noopener noreferrer nofollow" href="https://cookiedatabase.org/tcf/purposes/">En savoir plus sur ces finalités</a>
757 + </div>
758 +
759 + <div class="cmplz-divider cmplz-footer"></div>
760 +
761 + <div class="cmplz-buttons">
762 + <button class="cmplz-btn cmplz-accept">Accepter</button>
763 + <button class="cmplz-btn cmplz-deny">Refuser</button>
764 + <button class="cmplz-btn cmplz-view-preferences">Voir les préférences</button>
765 + <button class="cmplz-btn cmplz-save-preferences">Enregistrer les préférences</button>
766 + <a class="cmplz-btn cmplz-manage-options tcf cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Voir les préférences</a>
767 + </div>
768 +
769 + <div class="cmplz-links cmplz-documents">
770 + <a class="cmplz-link cookie-statement" href="#" data-relative_url="">{title}</a>
771 + <a class="cmplz-link privacy-statement" href="#" data-relative_url="">{title}</a>
772 + <a class="cmplz-link impressum" href="#" data-relative_url="">{title}</a>
773 + </div>
774 +
775 +</div>
776 +</div>
777 + <div id="cmplz-manage-consent" data-nosnippet="true"><button class="cmplz-btn cmplz-hidden cmplz-manage-consent manage-consent-1">Gérer le consentement</button>
778 +
779 +</div><script id="appartements-brochu-uikit-js" src="https://groupeimmobilierbrochu.com/wp-content/themes/GIB-appartement/js/theme.min.js?ver=1.1.4"></script>
780 +<script id="appartements-brochu-custom-js" src="https://groupeimmobilierbrochu.com/wp-content/themes/GIB-appartement/js/customizer.js?ver=1.1.4"></script>
781 +<script type="text/plain" data-service="acf-custom-maps" data-category="marketing" id="appartements-brochu-map-js" data-cmplz-src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAp1W5ywuQprlSqthCHR2XLpQBTSyeSBpk&#038;callback=initMaa&#038;ver=1.1.4"></script>
782 +<script id="cmplz-cookiebanner-js-extra">
783 +var complianz = {"prefix":"cmplz_","user_banner_id":"1","set_cookies":[],"block_ajax_content":"","banner_version":"11","version":"7.0.5","store_consent":"","do_not_track_enabled":"1","consenttype":"optin","region":"ca","geoip":"","dismiss_timeout":"","disable_cookiebanner":"","soft_cookiewall":"","dismiss_on_scroll":"","cookie_expiry":"365","url":"https://groupeimmobilierbrochu.com/wp-json/complianz/v1/","locale":"lang=fr&locale=fr_CA","set_cookies_on_root":"","cookie_domain":"","current_policy_id":"34","cookie_path":"/","categories":{"statistics":"statistiques","marketing":"marketing"},"tcf_active":"","placeholdertext":"Cliquez pour accepter les t\u00e9moins {category} et activer ce contenu","css_file":"https://groupeimmobilierbrochu.com/wp-content/uploads/complianz/css/banner-{banner_id}-{type}.css?v=11","page_links":{"ca":{"cookie-statement":{"title":"Politique de confidentialit\u00e9","url":"https://groupeimmobilierbrochu.com/politique-de-confidentialite/"}}},"tm_categories":"","forceEnableStats":"","preview":"","clean_cookies":"","aria_label":"Cliquez pour accepter les t\u00e9moins {category} et activer ce contenu"};
784 +//# sourceURL=cmplz-cookiebanner-js-extra
785 +</script>
786 +<script defer id="cmplz-cookiebanner-js" src="https://groupeimmobilierbrochu.com/wp-content/plugins/complianz-gdpr/cookiebanner/js/complianz.min.js?ver=1715620671"></script>
787 +<script id="wp-emoji-settings" type="application/json">
788 +{"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://groupeimmobilierbrochu.com/wp-includes/js/wp-emoji-release.min.js?ver=7.0.3"}}
789 +</script>
790 +<script type="module">
791 +/*! This file is auto-generated */
792 +var e="script#wp-emoji-settings",t=document.querySelector(e);if(!(t instanceof HTMLScriptElement))throw new Error("Element missing: "+e);const r=JSON.parse(t.text),s=(window._wpemojiSettings=r,"wpEmojiSettingsSupports"),o=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(s,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const r=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===r[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,r){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!r(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,r){let a;const s=(a="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),o=(s.textBaseline="top",s.font="600 32px Arial",{});return e.forEach(e=>{o[e]=t(s,e,n,r)}),o}function a(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}r.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(s));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(o),u.toString(),c.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"});const a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=e=>{i(n=e.data),a.terminate(),t(n)})}catch(e){}i(n=f(o,u,c,p))}t(n)}).then(e=>{for(const n in e)r.supports[n]=e[n],r.supports.everything=r.supports.everything&&r.supports[n],"flag"!==n&&(r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&r.supports[n]);var t;r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&!r.supports.flag,r.supports.everything||((t=r.source||{}).concatemoji?a(t.concatemoji):t.wpemoji&&t.twemoji&&(a(t.twemoji),a(t.wpemoji)))});
793 +//# sourceURL=https://groupeimmobilierbrochu.com/wp-includes/js/wp-emoji-loader.min.js
794 +</script>
795 +
796 +
797 +</body>
798 +
799 +</html>
\ No newline at end of file
added tests/fixtures/brochu/expected.json +103 −0
@@ -0,0 +1,103 @@
1 +{
2 + "count": 7,
3 + "listings": [
4 + {
5 + "uid": "brochu:boul-centre-hospitalier",
6 + "url": "https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/",
7 + "title": "Boul. du Centre-Hospitalier",
8 + "address": "9600, boul. Centre-Hospitalier, Lévis",
9 + "sector": "Lévis",
10 + "city": "Lévis",
11 + "unit_type": "4½",
12 + "price": 1495.0,
13 + "availability": "Disponible dès maintenant ou septembre 2026",
14 + "area_sqft": null,
15 + "n_images": 21,
16 + "n_amenities": 15
17 + },
18 + {
19 + "uid": "brochu:habitat-2000",
20 + "url": "https://groupeimmobilierbrochu.com/projets/habitat-2000/",
21 + "title": "Habitat 2000",
22 + "address": "9001, 9024, 9025 et 9032 rue de l’Attisée, Lévis",
23 + "sector": "Charny",
24 + "city": "Lévis",
25 + "unit_type": "4½",
26 + "price": 1195.0,
27 + "availability": "Disponible octobre 2026",
28 + "area_sqft": null,
29 + "n_images": 12,
30 + "n_amenities": 8
31 + },
32 + {
33 + "uid": "brochu:la-sentinelle",
34 + "url": "https://groupeimmobilierbrochu.com/projets/la-sentinelle/",
35 + "title": "La Sentinelle",
36 + "address": "7002, boulevard Guillaume-Couture, Lévis",
37 + "sector": "Lévis",
38 + "city": "Lévis",
39 + "unit_type": "3½",
40 + "price": null,
41 + "availability": "Disponible dès maintenant ou automne 2026",
42 + "area_sqft": null,
43 + "n_images": 12,
44 + "n_amenities": 10
45 + },
46 + {
47 + "uid": "brochu:le-pilier",
48 + "url": "https://groupeimmobilierbrochu.com/projets/le-pilier/",
49 + "title": "Le Pilier – Finaliste du prix Nobilis 2026",
50 + "address": "1275 rue J.-B.-Demers Lévis (QC) G6W 0X9",
51 + "sector": "Lévis",
52 + "city": "Lévis",
53 + "unit_type": "",
54 + "price": null,
55 + "availability": "Très récent : novembre 2026",
56 + "area_sqft": null,
57 + "n_images": 3,
58 + "n_amenities": 0
59 + },
60 + {
61 + "uid": "brochu:les-immeubles-masson",
62 + "url": "https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/",
63 + "title": "Les Immeubles Masson",
64 + "address": "2150 et 2160 boulevard Masson, Québec",
65 + "sector": "Les Saules",
66 + "city": "Québec",
67 + "unit_type": "4½",
68 + "price": 1385.0,
69 + "availability": "Disponible dès maintenant ou automne 2026",
70 + "area_sqft": null,
71 + "n_images": 25,
72 + "n_amenities": 12
73 + },
74 + {
75 + "uid": "brochu:promenade-des-forts",
76 + "url": "https://groupeimmobilierbrochu.com/projets/promenade-des-forts/",
77 + "title": "Promenade des Forts",
78 + "address": "6275 et 6375 boulevard Étienne-Dallaire, Levis",
79 + "sector": "Lévis",
80 + "city": "Lévis",
81 + "unit_type": "4½",
82 + "price": null,
83 + "availability": "Disponible dès maintenant ou automne 2026",
84 + "area_sqft": null,
85 + "n_images": 14,
86 + "n_amenities": 14
87 + },
88 + {
89 + "uid": "brochu:seigneurie-des-ponts",
90 + "url": "https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/",
91 + "title": "Seigneurie des Ponts",
92 + "address": "1300 rue de Saturne, Lévis",
93 + "sector": "Saint-Romuald",
94 + "city": "Lévis",
95 + "unit_type": "4½",
96 + "price": 1425.0,
97 + "availability": "Dès octobre 2026",
98 + "area_sqft": null,
99 + "n_images": 13,
100 + "n_amenities": 15
101 + }
102 + ]
103 +}
\ No newline at end of file
added tests/fixtures/brochu/index.json +58 −0
@@ -0,0 +1,58 @@
1 +{
2 + "178e6d7e9238490fc6ef": {
3 + "method": "GET",
4 + "url": "https://groupeimmobilierbrochu.com/projets/",
5 + "status": 200,
6 + "content_type": "text/html; charset=UTF-8",
7 + "file": "178e6d7e9238490fc6ef.html"
8 + },
9 + "3f509faeda245bde72ff": {
10 + "method": "GET",
11 + "url": "https://groupeimmobilierbrochu.com/projets/le-pilier/",
12 + "status": 200,
13 + "content_type": "text/html; charset=UTF-8",
14 + "file": "3f509faeda245bde72ff.html"
15 + },
16 + "5b68851b24abc9d55d4f": {
17 + "method": "GET",
18 + "url": "https://groupeimmobilierbrochu.com/projets/la-sentinelle/",
19 + "status": 200,
20 + "content_type": "text/html; charset=UTF-8",
21 + "file": "5b68851b24abc9d55d4f.html"
22 + },
23 + "7e7922d588a685f6a351": {
24 + "method": "GET",
25 + "url": "https://groupeimmobilierbrochu.com/projets/promenade-des-forts/",
26 + "status": 200,
27 + "content_type": "text/html; charset=UTF-8",
28 + "file": "7e7922d588a685f6a351.html"
29 + },
30 + "a4d8ddb95815facb0039": {
31 + "method": "GET",
32 + "url": "https://groupeimmobilierbrochu.com/projets/boul-centre-hospitalier/",
33 + "status": 200,
34 + "content_type": "text/html; charset=UTF-8",
35 + "file": "a4d8ddb95815facb0039.html"
36 + },
37 + "ef2fce0b8ada440f507e": {
38 + "method": "GET",
39 + "url": "https://groupeimmobilierbrochu.com/projets/habitat-2000/",
40 + "status": 200,
41 + "content_type": "text/html; charset=UTF-8",
42 + "file": "ef2fce0b8ada440f507e.html"
43 + },
44 + "96c01f8312dde6e3b3d8": {
45 + "method": "GET",
46 + "url": "https://groupeimmobilierbrochu.com/projets/seigneurie-des-ponts/",
47 + "status": 200,
48 + "content_type": "text/html; charset=UTF-8",
49 + "file": "96c01f8312dde6e3b3d8.html"
50 + },
51 + "38efe22528f489507749": {
52 + "method": "GET",
53 + "url": "https://groupeimmobilierbrochu.com/projets/les-immeubles-masson/",
54 + "status": 200,
55 + "content_type": "text/html; charset=UTF-8",
56 + "file": "38efe22528f489507749.html"
57 + }
58 +}
\ No newline at end of file
added tests/fixtures/capreit/07b65340566a5c352759.html +2697 −0
@@ -0,0 +1,2697 @@
1 +<!doctype html>
2 +<html lang="fr">
3 +<head>
4 + <meta charset="utf-8">
5 + <meta http-equiv="x-ua-compatible" content="ie=edge">
6 + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
7 + <meta name="facebook-domain-verification" content="uu15rq8zjxxh0qtrav90ttd4jvq10g" />
8 + <title>Glö2 | Appartements haut de gamme à louer à Montréal</title>
9 +<link rel="alternate" hreflang="en" href="https://www.capreit.ca/apartments-for-rent/montreal-qc/glo2-apartments/" />
10 +<link rel="alternate" hreflang="fr" href="https://www.capreit.ca/fr/appartements-a-louer/montreal-qc/appartements-glo2/" />
11 +<link rel="alternate" hreflang="x-default" href="https://www.capreit.ca/apartments-for-rent/montreal-qc/glo2-apartments/" />
12 +<meta name="dc.title" content="Glö2 | Appartements haut de gamme à louer à Montréal">
13 +<meta name="dc.description" content="Chez Glö2, au coeur de Ville-Marie, Montréal, votre vie devient l&#039;art. Chaque appartement est une toile qui attend que vous y ajoutiez votre touche personnelle.">
14 +<meta name="dc.relation" content="https://www.capreit.ca/fr/appartements-a-louer/montreal-qc/appartements-glo2/">
15 +<meta name="dc.source" content="https://www.capreit.ca/fr/">
16 +<meta name="dc.language" content="fr_FR">
17 +<meta name="description" content="Chez Glö2, au coeur de Ville-Marie, Montréal, votre vie devient l&#039;art. Chaque appartement est une toile qui attend que vous y ajoutiez votre touche personnelle.">
18 +<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1">
19 +<link rel="canonical" href="https://www.capreit.ca/fr/appartements-a-louer/montreal-qc/appartements-glo2/">
20 +<meta property="og:url" content="https://www.capreit.ca/fr/appartements-a-louer/montreal-qc/appartements-glo2/">
21 +<meta property="og:site_name" content="Canadian Apartment Properties REIT">
22 +<meta property="og:locale" content="fr_FR">
23 +<meta property="og:locale:alternate" content="en_US">
24 +<meta property="og:type" content="article">
25 +<meta property="article:author" content="">
26 +<meta property="article:publisher" content="">
27 +<meta property="og:title" content="Glö2 | Appartements haut de gamme à louer à Montréal">
28 +<meta property="og:description" content="Chez Glö2, au coeur de Ville-Marie, Montréal, votre vie devient l&#039;art. Chaque appartement est une toile qui attend que vous y ajoutiez votre touche personnelle.">
29 +<meta property="og:image" content="https://www.capreit.ca/wp-content/uploads/2021/09/1-Month-Rent-Free-BIL-2.jpg">
30 +<meta property="og:image:secure_url" content="https://www.capreit.ca/wp-content/uploads/2021/09/1-Month-Rent-Free-BIL-2.jpg">
31 +<meta property="og:image:width" content="1200">
32 +<meta property="og:image:height" content="800">
33 +<meta property="fb:pages" content="">
34 +<meta property="fb:app_id" content="">
35 +<meta name="twitter:card" content="summary">
36 +<meta name="twitter:site" content="">
37 +<meta name="twitter:creator" content="">
38 +<meta name="twitter:title" content="Glö2 | Appartements haut de gamme à louer à Montréal">
39 +<meta name="twitter:description" content="Chez Glö2, au coeur de Ville-Marie, Montréal, votre vie devient l&#039;art. Chaque appartement est une toile qui attend que vous y ajoutiez votre touche personnelle.">
40 +<meta name="twitter:image" content="https://www.capreit.ca/wp-content/uploads/2021/09/1-Month-Rent-Free-BIL-2.jpg">
41 +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://www.capreit.ca/fr/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.capreit.ca%2Ffr%2Fappartements-a-louer%2Fmontreal-qc%2Fappartements-glo2%2F" />
42 +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://www.capreit.ca/fr/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.capreit.ca%2Ffr%2Fappartements-a-louer%2Fmontreal-qc%2Fappartements-glo2%2F&#038;format=xml" />
43 +<style id='wp-img-auto-sizes-contain-inline-css' type='text/css'>
44 +img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
45 +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
46 +</style>
47 +<style id='wpseopress-local-business-style-inline-css' type='text/css'>
48 +span.wp-block-wpseopress-local-business-field{margin-right:8px}
49 +
50 +/*# sourceURL=https://www.capreit.ca/wp-content/plugins/wp-seopress-pro/public/editor/blocks/local-business/style-index.css */
51 +</style>
52 +<style id='wpseopress-table-of-contents-style-inline-css' type='text/css'>
53 +.wp-block-wpseopress-table-of-contents li.active>a{font-weight:bold}
54 +
55 +/*# sourceURL=https://www.capreit.ca/wp-content/plugins/wp-seopress-pro/public/editor/blocks/table-of-contents/style-index.css */
56 +</style>
57 +<style id='global-styles-inline-css' type='text/css'>
58 +:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){margin-left: auto !important;margin-right: auto !important;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: underline;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
59 +:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
60 +:where(.wp-block-term-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-term-template.is-layout-grid){gap: 1.25em;}
61 +:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
62 +:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
63 +/*# sourceURL=global-styles-inline-css */
64 +</style>
65 +<link rel='stylesheet' id='elementor-frontend-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=4.2.1' type='text/css' media='all' />
66 +<style id='elementor-frontend-inline-css' type='text/css'>
67 +.elementor-kit-7265{--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-weight:500;}.elementor-kit-7265 e-page-transition{background-color:#FFBC7D;}.elementor-kit-7265 button,.elementor-kit-7265 input[type="button"],.elementor-kit-7265 input[type="submit"],.elementor-kit-7265 .elementor-button{font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-kit-7265 button:hover,.elementor-kit-7265 button:focus,.elementor-kit-7265 input[type="button"]:hover,.elementor-kit-7265 input[type="button"]:focus,.elementor-kit-7265 input[type="submit"]:hover,.elementor-kit-7265 input[type="submit"]:focus,.elementor-kit-7265 .elementor-button:hover,.elementor-kit-7265 .elementor-button:focus{border-radius:8px 8px 30px 8px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
68 +.elementor-74262 .elementor-element.elementor-element-6872faff > .elementor-widget-container{padding:10px 10px 10px 10px;}.elementor-74262 .elementor-element.elementor-element-25ce557a{padding:10px 10px 10px 10px;}.elementor-74262 .elementor-element.elementor-element-62d6acf0 .elementor-button{background-color:#314561;}.elementor-74262 .elementor-element.elementor-element-6e09c9c9 .elementor-button{background-color:#314561;}#elementor-popup-modal-74262{background-color:#0000008A;justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-74262 .dialog-message{width:533px;height:auto;padding:20px 20px 20px 20px;}#elementor-popup-modal-74262 .dialog-widget-content{box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}@media(max-width:767px){.elementor-74262 .elementor-element.elementor-element-25ce557a{padding:0px 0px 0px 0px;}#elementor-popup-modal-74262 .dialog-message{width:440px;}}
69 +/*# sourceURL=elementor-frontend-inline-css */
70 +</style>
71 +<link rel='stylesheet' id='widget-heading-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver=4.2.1' type='text/css' media='all' />
72 +<link rel='stylesheet' id='e-popup-css' href='https://www.capreit.ca/wp-content/plugins/elementor-pro/assets/css/conditionals/popup.min.css?ver=4.2.1' type='text/css' media='all' />
73 +<link rel='stylesheet' id='elementor-icons-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.53.0' type='text/css' media='all' />
74 +<link rel='stylesheet' id='uael-frontend-css' href='https://www.capreit.ca/wp-content/plugins/ultimate-elementor/assets/min-css/uael-frontend.min.css?ver=1.44.4' type='text/css' media='all' />
75 +<link rel='stylesheet' id='uael-teammember-social-icons-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/css/widget-social-icons.min.css?ver=3.24.0' type='text/css' media='all' />
76 +<link rel='stylesheet' id='uael-social-share-icons-brands-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.css?ver=5.15.3' type='text/css' media='all' />
77 +<link rel='stylesheet' id='uael-social-share-icons-fontawesome-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.css?ver=5.15.3' type='text/css' media='all' />
78 +<link rel='stylesheet' id='uael-nav-menu-icons-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.css?ver=5.15.3' type='text/css' media='all' />
79 +<link rel='stylesheet' id='font-awesome-5-all-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css?ver=4.2.1' type='text/css' media='all' />
80 +<link rel='stylesheet' id='font-awesome-4-shim-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css?ver=4.2.1' type='text/css' media='all' />
81 +<link rel='stylesheet' id='sage/main.css-css' href='https://www.capreit.ca/wp-content/themes/capreit/dist/styles/main_5feac275.css' type='text/css' media='all' />
82 +<script type="text/javascript" src="https://www.capreit.ca/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script>
83 +<script type="text/javascript" src="https://www.capreit.ca/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script>
84 +<script type="text/javascript" id="wpml-cookie-js-extra">
85 +/* <![CDATA[ */
86 +var wpml_cookies = {"wp-wpml_current_language":{"value":"fr","expires":1,"path":"/"}};
87 +var wpml_cookies = {"wp-wpml_current_language":{"value":"fr","expires":1,"path":"/"}};
88 +//# sourceURL=wpml-cookie-js-extra
89 +/* ]]> */
90 +</script>
91 +<script type="text/javascript" src="https://www.capreit.ca/wp-content/plugins/sitepress-multilingual-cms/res/js/cookies/language-cookie.js?ver=494000" id="wpml-cookie-js" defer="defer" data-wp-strategy="defer"></script>
92 +<script type="text/javascript" src="https://www.capreit.ca/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js?ver=4.2.1" id="font-awesome-4-shim-js"></script>
93 +<link rel="https://api.w.org/" href="https://www.capreit.ca/fr/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.capreit.ca/xmlrpc.php?rsd" />
94 +<link rel='shortlink' href='https://www.capreit.ca/fr/?p=82397' />
95 +<meta name="generator" content="WPML ver:4.9.4 stt:1,4;" />
96 +<script>window.schema_highlighter={accountId: "CAPREIT", output: false, outputCache: false}</script> <script async src="https://cdn.schemaapp.com/javascript/highlight.js"></script><script type="application/ld+json" data-source="JSCaching:http://schemaapp.com/resources/admin/Organization_DevCAPREIT/Template20211201151522" data-schema="82397-property-App">[{"@type":["Apartment","Product"],"@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#Apartment_Product","@context":{"@vocab":"http:\/\/schema.org\/","kg":"http:\/\/g.co\/kg"},"url":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/","address":[{"@type":"PostalAddress","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#Apartment_Product_address_PostalAddress","addressCountry":[{"@type":"Country","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#Apartment_Product_address_PostalAddress_addressCountry_Country","name":"https:\/\/www.wikidata.org\/wiki\/Q16"}],"addressLocality":" Montr\u00e9al","streetAddress":"\n \n 1050 Bd Ren\u00e9-L\u00e9vesque E","addressRegion":" QC","postalCode":" H2L 2L6\n "}],"petsAllowed":["Dog Friendly","Cat Friendly"],"offers":[{"@type":"AggregateOffer","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#Apartment_Product_offers_AggregateOffer","priceCurrency":"CAD","offeredBy":[{"@id":"https:\/\/www.capreit.ca\/"}],"availability":"https:\/\/schema.org\/InStock","lowPrice":1480,"highPrice":2325}],"subjectOf":[{"@type":"WebPage","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#Apartment_Product_subjectOf_WebPage","inLanguage":"fr-CA"},{"@type":"BreadcrumbList","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#Apartment_Product_subjectOf_BreadcrumbList","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#TagList_CAPREITApartmentPagesBreadcrumbList_0_Apartment_Product_subjectOf_BreadcrumbList_itemListElement_ListItem","name":"Montr\u00e9al","item":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/","position":1},{"@type":"ListItem","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#TagList_CAPREITApartmentPagesBreadcrumbList_1_Apartment_Product_subjectOf_BreadcrumbList_itemListElement_ListItem","name":"Bd Ren\u00e9-L\u00e9vesque E & R. Atateken","item":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/bd-rene-levesque-e-r-atateken-montreal-qc\/","position":2}]}],"name":"\n Appartements Gl\u00f62\n ","description":"Chez Gl\u00f62, au coeur de Ville-Marie, Montr\u00e9al, votre vie devient l'art. Chaque appartement est une toile qui attend que vous y ajoutiez votre touche personnelle.","amenityFeature":["Vue sur la ville",{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#Highlight-20240612135615332_0_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Lave-vaisselle\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#Highlight-20240612135615332_1_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Coin-buanderie dans l\u2019unit\u00e9\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#Highlight-20240612135615332_2_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Comptoirs en pierre\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#Highlight-20240612135615332_3_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Rev\u00eatement de sol haut de gamme\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#Highlight-20240612135615332_4_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Balcons priv\u00e9s\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#Highlight-20240612135615332_5_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Micro-ondes inclus*\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#Highlight-20240612135615332_6_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Cuisini\u00e8re incluse*\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#Highlight-20240612135615332_7_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Climatisation centrale\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#Highlight-20240612135615332_8_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Salle d'entra\u00eenement\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#Highlight-20240612135615332_9_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Terrasse sur le toit\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#Highlight-20240612135615332_10_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Entrep\u00f4t pour v\u00e9los\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#Highlight-20240612135615332_11_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Ascenseurs\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#Highlight-20240612135615332_12_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Chauffage inclus\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#Highlight-20240612135615332_13_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Eau inclus\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#Highlight-20240612135615332_14_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n \u00c9lectricit\u00e9 inclus\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#Highlight-20240612135615332_15_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Entreposage*\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#Highlight-20240612135615332_16_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Stationnement*\n "}],"image":[{"@type":"ImageObject","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#TagList_6a58fcc24bb0b4.31288446_0_Apartment_Product_image_ImageObject","url":"https:\/\/www.capreit.ca\/wp-content\/uploads\/2021\/09\/1-Month-Rent-Free-BIL-2.jpg"},{"@type":"ImageObject","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#TagList_6a58fcc24bb0b4.31288446_1_Apartment_Product_image_ImageObject","url":"https:\/\/www.capreit.ca\/wp-content\/uploads\/2025\/04\/Glo2-Montreal-Exterior-1.png"},{"@type":"ImageObject","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#TagList_6a58fcc24bb0b4.31288446_2_Apartment_Product_image_ImageObject","url":"https:\/\/www.capreit.ca\/wp-content\/uploads\/2025\/04\/Glo2-Montreal-Salon-2.png"},{"@type":"ImageObject","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#TagList_6a58fcc24bb0b4.31288446_3_Apartment_Product_image_ImageObject","url":"https:\/\/www.capreit.ca\/wp-content\/uploads\/2025\/04\/Glo2-Montreal-CaC.png"},{"@type":"ImageObject","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#TagList_6a58fcc24bb0b4.31288446_4_Apartment_Product_image_ImageObject","url":"https:\/\/www.capreit.ca\/wp-content\/uploads\/2025\/04\/Glo2-Montreal-Cuisine.png"}],"containedIn":[{"@type":"Place","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#Apartment_Product_containedIn_Place","name":"Montr\u00e9al"}],"geo":[{"@type":"GeoCoordinates","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-glo2\/#Apartment_Product_geo_GeoCoordinates","latitude":"45.516220496954","longitude":"-73.554649437469"}],"numberOfBedrooms":1},{"@context":"http:\/\/schema.org","@type":"Corporation","sameAs":["https:\/\/www.linkedin.com\/company\/capreit\/","https:\/\/www.youtube.com\/user\/CAPRENT","https:\/\/g.co\/kgs\/QTkLuSJ","https:\/\/www.instagram.com\/caprent\/","https:\/\/twitter.com\/caprent","https:\/\/www.facebook.com\/caprent\/"],"areaServed":"https:\/\/en.wikipedia.org\/wiki\/Canada","foundingDate":"1997-01-01","description":"Search more than 30000 apartments and townhouses across Canada. Our Apartments for Rent in Toronto, Montreal and Vancouver are all excellent choices.","name":"CAPREIT","logo":"https:\/\/www.capreit.ca\/wp-content\/themes\/capreit\/resources\/assets\/images\/logo-header.svg","alternateName":"Canadian Apartment Properties REIT","url":"https:\/\/www.capreit.ca\/","image":"https:\/\/www.capreit.ca\/img\/logo.png","email":"hello@capreit.net","telephone":"+14168619404","address":{"@type":"PostalAddress","streetAddress":"11 Church Street","postalCode":"M5E 1W1","addressRegion":"ON","addressLocality":"Toronto","addressCountry":"CA","name":"CAPREIT Address","@id":"https:\/\/www.capreit.ca\/#PostalAddress"},"contactPoint":{"@type":"ContactPoint","contactOption":"https:\/\/en.wikipedia.org\/wiki\/Telephone_call","availableLanguage":"https:\/\/en.wikipedia.org\/wiki\/English_language","areaServed":"https:\/\/en.wikipedia.org\/wiki\/Canada","contactType":"customer support","telephone":"+1 (416) 861-9404","description":"Canadian Apartment Properties Real Estate Investment Trust (CAPREIT) is a fully internalized growth-oriented investment trust owning freehold interests in multi-unit residential properties, including apartment buildings, townhouses and land lease communities located in or near major urban centers across Canada.","name":"Contact Us","image":"https:\/\/www.capreit.ca\/uploadedImages\/Content\/Aon_BE_Stamp_WinnCirc_Platinum_CA2016_Eng_Color.jpg","faxNumber":"+1 (416) 354-0192 ","url":["https:\/\/www.caprent.com\/contact-us\/","https:\/\/www.capreit.ca\/contact-us\/"],"@id":"https:\/\/www.capreit.ca\/contact-us\/"},"@id":"https:\/\/www.capreit.ca\/"}]</script>
97 +<meta name="generator" content="Elementor 4.2.1; features: additional_custom_breakpoints; settings: css_print_method-internal, google_font-enabled, font_display-auto">
98 +<script type="text/javascript">
99 + var _ss = _ss || [];
100 + _ss.push(['_setDomain', 'https://koi-3QNMRO6SRA.marketingautomation.services/net']);
101 + _ss.push(['_setAccount', 'KOI-4LZL0GS9QG']);
102 + _ss.push(['_trackPageView']);
103 + window._pa = window._pa || {};
104 + // _pa.orderId = "myOrderId"; // OPTIONAL: attach unique conversion identifier to conversions
105 + // _pa.revenue = "19.99"; // OPTIONAL: attach dynamic purchase values to conversions
106 + // _pa.productId = "myProductId"; // OPTIONAL: Include product ID for use with dynamic ads
107 +(function() {
108 + var ss = document.createElement('script');
109 + ss.type = 'text/javascript'; ss.async = true;
110 + ss.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'koi-3QNMRO6SRA.marketingautomation.services/client/ss.js?ver=2.4.0';
111 + var scr = document.getElementsByTagName('script')[0];
112 + scr.parentNode.insertBefore(ss, scr);
113 +})();
114 +</script>
115 +
116 +<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style> <style>
117 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
118 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
119 + background-image: none !important;
120 + }
121 + @media screen and (max-height: 1024px) {
122 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
123 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
124 + background-image: none !important;
125 + }
126 + }
127 + @media screen and (max-height: 640px) {
128 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
129 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
130 + background-image: none !important;
131 + }
132 + }
133 + </style>
134 + <link rel="icon" href="https://www.capreit.ca/wp-content/uploads/2021/11/cropped-cropped-Capreit_Icon_Indigo_RGB_600px@72ppi-32x32.png" sizes="32x32" />
135 +<link rel="icon" href="https://www.capreit.ca/wp-content/uploads/2021/11/cropped-cropped-Capreit_Icon_Indigo_RGB_600px@72ppi-192x192.png" sizes="192x192" />
136 +<link rel="apple-touch-icon" href="https://www.capreit.ca/wp-content/uploads/2021/11/cropped-cropped-Capreit_Icon_Indigo_RGB_600px@72ppi-180x180.png" />
137 +<meta name="msapplication-TileImage" content="https://www.capreit.ca/wp-content/uploads/2021/11/cropped-cropped-Capreit_Icon_Indigo_RGB_600px@72ppi-270x270.png" />
138 + <link rel="stylesheet" href="https://use.typekit.net/tuu1tlg.css">
139 + <!-- Google Tag Manager -->
140 + <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
141 + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
142 + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
143 + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
144 + })(window,document,'script','dataLayer','GTM-K5G93XF');</script>
145 + <!-- End Google Tag Manager -->
146 + <script>
147 + var CURRENT_LANGUAGE = "fr";
148 + </script>
149 +</head>
150 +<body class="wp-singular property-template-default single single-property postid-82397 wp-theme-capreitresources appartements-glo2 app-data index-data singular-data single-data single-property-data single-property-appartements-glo2-data elementor-default elementor-kit-7265">
151 + <!-- Google Tag Manager (noscript) -->
152 + <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-K5G93XF"
153 + height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
154 + <!-- End Google Tag Manager (noscript) -->
155 + <header class="header">
156 + <div class="wrapper">
157 + <a class="header-logo" href="https://www.capreit.ca/fr/">
158 + Canadian Apartment Properties REIT
159 + </a>
160 + <div class="header-wrap">
161 + <nav class="header-navigation" aria-label="primary">
162 + <div class="menu-main-menu-french-container"><ul id="menu-main-menu-french" class="nav"><li class="navigation-listitem has-submenu" role="presentation"> <a class="navigation-item" id="main-menu-item-0-17000" href="#navigation-louer" aria-haspopup="true" aria-expanded="false" aria-controls="main-menu-0-17000" role="menuitem" tabindex="0"><span>Louer</span></a><div class="sub-navigation" id="main-menu-0-17000" role="region" aria-labelledby="main-menu-item-0-17000"><ul class="sub-navigation-wrapper" role="menu"><li class="sub-navigation-listitem" role="presentation"> <a class="sub-navigation-item" href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" role="menuitem" tabindex="0"><span>Pourquoi louer chez nous</span></a></li></ul></div></li><li class="navigation-listitem has-submenu" role="presentation"> <a class="navigation-item" id="main-menu-item-0-68522" href="#navigation-partnerfr" aria-haspopup="true" aria-expanded="false" aria-controls="main-menu-0-68522" role="menuitem" tabindex="0"><span>Collaborer avec CAPREIT</span></a><div class="sub-navigation" id="main-menu-0-68522" role="region" aria-labelledby="main-menu-item-0-68522"><ul class="sub-navigation-wrapper" role="menu"><li class="sub-navigation-listitem" role="presentation"> <a class="sub-navigation-item" href="https://www.capreit.ca/fr/commercial/" role="menuitem" tabindex="0"><span>Commercial</span></a></li></ul></div></li><li class="navigation-listitem has-submenu" role="presentation"> <a class="navigation-item" id="main-menu-item-0-17001" href="#navigation-apropos" aria-haspopup="true" aria-expanded="false" aria-controls="main-menu-0-17001" role="menuitem" tabindex="0"><span>À propos</span></a><div class="sub-navigation" id="main-menu-0-17001" role="region" aria-labelledby="main-menu-item-0-17001"><ul class="sub-navigation-wrapper" role="menu"><li class="sub-navigation-listitem" role="presentation"> <a class="sub-navigation-item" href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" role="menuitem" tabindex="0"><span>Programmes de perfectionnement des employés</span></a></li></ul></div></li><li class="navigation-listitem" role="presentation"> <a class="navigation-item" href="https://ir.capreit.ca/overview/default.aspx" role="menuitem" tabindex="0"><span>Investisseurs</span></a></li><li class="navigation-listitem" role="presentation"> <a class="navigation-item" href="https://www.capreit.ca/fr/appartements-a-louer/" role="menuitem" tabindex="0"><span>Trouver un appartement</span></a></li><li class="navigation-listitem" role="presentation"> <a class="navigation-item" href="https://www.capreit.ca/fr/a-propos/qui-nous-sommes/" role="menuitem" tabindex="0"><span>Qui nous sommes</span></a></li><li class="navigation-listitem" role="presentation"> <a class="navigation-item" href="https://www.capreit.ca/fr/commercial/" role="menuitem" tabindex="0"><span>Commercial</span></a></li></ul></div>
163 + </nav>
164 + <div class="header-wrap-sub">
165 + <div class="header-language">
166 + <button class="header-language-toggle">
167 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-header-globe.svg"
168 + alt="">
169 + FR
170 + </button>
171 + <nav class="header-language-navigation" aria-label="language">
172 + <ul>
173 + <li>
174 + <a class="header-language-navigation-link" href="https://www.capreit.ca/fr/appartements-a-louer/montreal-qc/appartements-glo2/" aria-current>
175 + Français
176 + </a>
177 + </li>
178 + <li>
179 + <a class="header-language-navigation-link" href="https://www.capreit.ca/apartments-for-rent/montreal-qc/glo2-apartments/">
180 + English
181 + </a>
182 + </li>
183 + </ul>
184 + </nav>
185 + </div>
186 + <a class="header-login"
187 + href="https://capreit.residentonline.ca/"
188 + target="_blank">
189 + <div class="header-login-icon"></div>
190 + Connexion-résident(e) </a>
191 + </div>
192 + </div>
193 + <button class="header-toggle">
194 + Toggle Menu </button>
195 + </div>
196 + <div class="header-sub" id="navigation-rent">
197 + <div class="wrapper">
198 + <style id="elementor-post-13474">.elementor-13474 .elementor-element.elementor-element-55e0e5d5{border-style:solid;border-width:1px 1px 1px 1px;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:1px 1px 1px 40px;z-index:99;}.elementor-13474 .elementor-element.elementor-element-55e0e5d5 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-13474 .elementor-element.elementor-element-b35e1f1:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-13474 .elementor-element.elementor-element-b35e1f1 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFCF7;}.elementor-13474 .elementor-element.elementor-element-b35e1f1 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-13474 .elementor-element.elementor-element-b35e1f1 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-13474 .elementor-element.elementor-element-2bac18c8{padding:1px 1px 1px 1px;}.elementor-13474 .elementor-element.elementor-element-51b29768{padding:1px 1px 1px 1px;}.elementor-13474 .elementor-element.elementor-element-6e62710e > .elementor-widget-container{background-color:#FFFCF7;}.elementor-13474 .elementor-element.elementor-element-6e62710e .elementor-nav-menu .elementor-item{font-weight:var( --e-global-typography-text-font-weight );}.elementor-13474 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown{background-color:#FFFCF7;}.elementor-13474 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a:hover,
199 + .elementor-13474 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a:focus,
200 + .elementor-13474 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a.elementor-item-active,
201 + .elementor-13474 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a.highlighted{background-color:#FFFFFF;}.elementor-13474 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a.elementor-item-active{color:#AF5341;}.elementor-13474 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu .elementor-item{font-weight:var( --e-global-typography-text-font-weight );}.elementor-13474 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown{background-color:#FFFCF7;}.elementor-13474 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown a:hover,
202 + .elementor-13474 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown a:focus,
203 + .elementor-13474 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown a.elementor-item-active,
204 + .elementor-13474 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown a.highlighted{background-color:#FFFFFF;}.elementor-13474 .elementor-element.elementor-element-236b8d18{padding:1px 1px 1px 1px;}.elementor-13474 .elementor-element.elementor-element-422d2e4a > .elementor-widget-container{padding:1px 1px 1px 1px;}.elementor-13474 .elementor-element.elementor-element-422d2e4a .elementor-heading-title{font-family:"Arial", Sans-serif;font-weight:bold;}.elementor-13474 .elementor-element.elementor-element-6d35b1bc{padding:1px 1px 1px 1px;}.elementor-13474 .elementor-element.elementor-element-760957ba .elementor-cta .elementor-cta__bg, .elementor-13474 .elementor-element.elementor-element-760957ba .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-13474 .elementor-element.elementor-element-760957ba .elementor-cta__content{text-align:center;}.elementor-13474 .elementor-element.elementor-element-760957ba .elementor-cta__bg-wrapper{min-height:140px;}.elementor-13474 .elementor-element.elementor-element-760957ba .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-13474 .elementor-element.elementor-element-19a93452 .elementor-cta .elementor-cta__bg, .elementor-13474 .elementor-element.elementor-element-19a93452 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-13474 .elementor-element.elementor-element-19a93452 .elementor-cta__content{text-align:center;}.elementor-13474 .elementor-element.elementor-element-19a93452 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-13474 .elementor-element.elementor-element-19a93452 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-13474 .elementor-element.elementor-element-4324ab2 .elementor-cta .elementor-cta__bg, .elementor-13474 .elementor-element.elementor-element-4324ab2 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-13474 .elementor-element.elementor-element-4324ab2 .elementor-cta__content{text-align:center;}.elementor-13474 .elementor-element.elementor-element-4324ab2 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-13474 .elementor-element.elementor-element-4324ab2 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}@media(min-width:768px){.elementor-13474 .elementor-element.elementor-element-b35e1f1{width:50.134%;}.elementor-13474 .elementor-element.elementor-element-6160a416{width:49.866%;}}</style> <div data-elementor-type="section" data-elementor-id="17029" class="elementor elementor-17029 elementor-13474" data-elementor-post-type="elementor_library">
205 + <section class="elementor-section elementor-top-section elementor-element elementor-element-55e0e5d5 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="55e0e5d5" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
206 + <div class="elementor-container elementor-column-gap-default">
207 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-b35e1f1" data-id="b35e1f1" data-element_type="column" data-e-type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
208 + <div class="elementor-widget-wrap elementor-element-populated">
209 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-2bac18c8 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2bac18c8" data-element_type="section" data-e-type="section">
210 + <div class="elementor-container elementor-column-gap-default">
211 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-6fbcc080" data-id="6fbcc080" data-element_type="column" data-e-type="column">
212 + <div class="elementor-widget-wrap elementor-element-populated">
213 + <div class="elementor-element elementor-element-25ed71d6 elementor-widget elementor-widget-heading" data-id="25ed71d6" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
214 + <div class="elementor-widget-container">
215 + <h5 class="elementor-heading-title elementor-size-default">Trouver</h5> </div>
216 + </div>
217 + </div>
218 + </div>
219 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-58f2808d elementor-hidden-mobile" data-id="58f2808d" data-element_type="column" data-e-type="column">
220 + <div class="elementor-widget-wrap elementor-element-populated">
221 + <div class="elementor-element elementor-element-1bab0703 elementor-widget elementor-widget-heading" data-id="1bab0703" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
222 + <div class="elementor-widget-container">
223 + <h5 class="elementor-heading-title elementor-size-default">En savoir plus</h5> </div>
224 + </div>
225 + </div>
226 + </div>
227 + </div>
228 + </section>
229 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-51b29768 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="51b29768" data-element_type="section" data-e-type="section">
230 + <div class="elementor-container elementor-column-gap-default">
231 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-6cbedca5" data-id="6cbedca5" data-element_type="column" data-e-type="column">
232 + <div class="elementor-widget-wrap elementor-element-populated">
233 + <div class="elementor-element elementor-element-6e62710e elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="6e62710e" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
234 + <div class="elementor-widget-container">
235 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-none">
236 + <ul id="menu-1-6e62710e" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29486"><a href="https://www.capreit.ca/fr/appartements-a-louer/" class="elementor-item">Trouver un appartement</a></li>
237 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-99990"><a href="https://www.capreit.ca/fr/logements-en-colocation/" class="elementor-item">Logements en colocation</a></li>
238 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-33891"><a href="https://www.capreit.ca/fr/nous-joindre/" class="elementor-item">Nous joindre</a></li>
239 +</ul> </nav>
240 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
241 + <ul id="menu-2-6e62710e" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29486"><a href="https://www.capreit.ca/fr/appartements-a-louer/" class="elementor-item" tabindex="-1">Trouver un appartement</a></li>
242 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-99990"><a href="https://www.capreit.ca/fr/logements-en-colocation/" class="elementor-item" tabindex="-1">Logements en colocation</a></li>
243 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-33891"><a href="https://www.capreit.ca/fr/nous-joindre/" class="elementor-item" tabindex="-1">Nous joindre</a></li>
244 +</ul> </nav>
245 + </div>
246 + </div>
247 + </div>
248 + </div>
249 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-2272c71e" data-id="2272c71e" data-element_type="column" data-e-type="column">
250 + <div class="elementor-widget-wrap elementor-element-populated">
251 + <div class="elementor-element elementor-element-dd3febe elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-heading" data-id="dd3febe" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
252 + <div class="elementor-widget-container">
253 + <h5 class="elementor-heading-title elementor-size-default">En savoir plus</h5> </div>
254 + </div>
255 + <div class="elementor-element elementor-element-a4d85ea elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="a4d85ea" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
256 + <div class="elementor-widget-container">
257 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
258 + <ul id="menu-1-a4d85ea" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31875"><a href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" class="elementor-item">Pourquoi louer chez nous</a></li>
259 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31874"><a href="https://www.capreit.ca/fr/louer/portail-des-locataires/" class="elementor-item">Portail des locataires</a></li>
260 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31876"><a href="https://www.capreit.ca/fr/louer/questions-frequentes/" class="elementor-item">Questions posées fréquemment</a></li>
261 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-68454"><a href="/fr/louer/vivre-chez-canadian-apartment-properties-reit#style-de-vie-en-appartement" class="elementor-item elementor-item-anchor">Vivre chez CAPREIT</a></li>
262 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31873"><a href="https://www.capreit.ca/fr/louer/le-processus-de-location/" class="elementor-item">Le processus de location</a></li>
263 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-35371"><a href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" class="elementor-item">Pourquoi louer chez nous</a></li>
264 +</ul> </nav>
265 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
266 + <ul id="menu-2-a4d85ea" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31875"><a href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" class="elementor-item" tabindex="-1">Pourquoi louer chez nous</a></li>
267 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31874"><a href="https://www.capreit.ca/fr/louer/portail-des-locataires/" class="elementor-item" tabindex="-1">Portail des locataires</a></li>
268 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31876"><a href="https://www.capreit.ca/fr/louer/questions-frequentes/" class="elementor-item" tabindex="-1">Questions posées fréquemment</a></li>
269 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-68454"><a href="/fr/louer/vivre-chez-canadian-apartment-properties-reit#style-de-vie-en-appartement" class="elementor-item elementor-item-anchor" tabindex="-1">Vivre chez CAPREIT</a></li>
270 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31873"><a href="https://www.capreit.ca/fr/louer/le-processus-de-location/" class="elementor-item" tabindex="-1">Le processus de location</a></li>
271 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-35371"><a href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" class="elementor-item" tabindex="-1">Pourquoi louer chez nous</a></li>
272 +</ul> </nav>
273 + </div>
274 + </div>
275 + </div>
276 + </div>
277 + </div>
278 + </section>
279 + </div>
280 + </div>
281 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-6160a416" data-id="6160a416" data-element_type="column" data-e-type="column">
282 + <div class="elementor-widget-wrap elementor-element-populated">
283 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-236b8d18 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="236b8d18" data-element_type="section" data-e-type="section">
284 + <div class="elementor-container elementor-column-gap-default">
285 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-22560467" data-id="22560467" data-element_type="column" data-e-type="column">
286 + <div class="elementor-widget-wrap elementor-element-populated">
287 + <div class="elementor-element elementor-element-422d2e4a elementor-widget elementor-widget-heading" data-id="422d2e4a" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
288 + <div class="elementor-widget-container">
289 + <h5 class="elementor-heading-title elementor-size-default">En vedette</h5> </div>
290 + </div>
291 + </div>
292 + </div>
293 + </div>
294 + </section>
295 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-6d35b1bc elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6d35b1bc" data-element_type="section" data-e-type="section">
296 + <div class="elementor-container elementor-column-gap-default">
297 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-651c85c2" data-id="651c85c2" data-element_type="column" data-e-type="column">
298 + <div class="elementor-widget-wrap elementor-element-populated">
299 + <div class="elementor-element elementor-element-760957ba elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="760957ba" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
300 + <div class="elementor-widget-container">
301 + <a class="elementor-cta" href="https://www.capreit.ca/fr/charte-des-droits-des-locataires-capreit-multifamiliaux/">
302 + <div class="elementor-cta__bg-wrapper">
303 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2023/09/FR-BOR-Call-out-02-1024x541.png);" role="img" aria-label="FR-BOR-Call-out-02"></div>
304 + <div class="elementor-cta__bg-overlay"></div>
305 + </div>
306 + <div class="elementor-cta__content">
307 +
308 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
309 + CAPREIT se soucie de ses locataires. Nous nous soucions de la protection de leurs droits. </h4>
310 +
311 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
312 + En savoir plus </div>
313 +
314 + </div>
315 + </a>
316 + </div>
317 + </div>
318 + </div>
319 + </div>
320 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4821cc" data-id="4821cc" data-element_type="column" data-e-type="column">
321 + <div class="elementor-widget-wrap elementor-element-populated">
322 + <div class="elementor-element elementor-element-19a93452 elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="19a93452" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
323 + <div class="elementor-widget-container">
324 + <a class="elementor-cta" href="https://www.capreit.ca/fr/louer/questions-frequentes/">
325 + <div class="elementor-cta__bg-wrapper">
326 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2021/11/img-callout-faq.png);" role="img" aria-label="img-callout-faq"></div>
327 + <div class="elementor-cta__bg-overlay"></div>
328 + </div>
329 + <div class="elementor-cta__content">
330 +
331 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
332 + Questions posées fréquemment </h4>
333 +
334 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
335 + Vous avez des questions? Nous avons les réponses. </div>
336 +
337 + </div>
338 + </a>
339 + </div>
340 + </div>
341 + </div>
342 + </div>
343 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-792700e" data-id="792700e" data-element_type="column" data-e-type="column">
344 + <div class="elementor-widget-wrap elementor-element-populated">
345 + <div class="elementor-element elementor-element-4324ab2 elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="4324ab2" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
346 + <div class="elementor-widget-container">
347 + <a class="elementor-cta" href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/">
348 + <div class="elementor-cta__bg-wrapper">
349 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2021/11/Blog-Call-out-FR-1024x683.png);" role="img" aria-label="Blog-Call-out-FR"></div>
350 + <div class="elementor-cta__bg-overlay"></div>
351 + </div>
352 + <div class="elementor-cta__content">
353 +
354 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
355 + Visitez notre blogue </h4>
356 +
357 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
358 + Pour les dernières nouvelles, événements, concours, articles et conseils utiles et plus encore. </div>
359 +
360 + </div>
361 + </a>
362 + </div>
363 + </div>
364 + </div>
365 + </div>
366 + </div>
367 + </section>
368 + </div>
369 + </div>
370 + </div>
371 + </section>
372 + </div>
373 + </div>
374 + </div>
375 + <div class="header-sub" id="navigation-louer">
376 + <div class="wrapper">
377 + <style id="elementor-post-17029">.elementor-17029 .elementor-element.elementor-element-55e0e5d5{border-style:solid;border-width:1px 1px 1px 1px;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:1px 1px 1px 40px;z-index:99;}.elementor-17029 .elementor-element.elementor-element-55e0e5d5 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-17029 .elementor-element.elementor-element-b35e1f1:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-17029 .elementor-element.elementor-element-b35e1f1 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFCF7;}.elementor-17029 .elementor-element.elementor-element-b35e1f1 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-17029 .elementor-element.elementor-element-b35e1f1 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-17029 .elementor-element.elementor-element-2bac18c8{padding:1px 1px 1px 1px;}.elementor-17029 .elementor-element.elementor-element-51b29768{padding:1px 1px 1px 1px;}.elementor-17029 .elementor-element.elementor-element-6e62710e > .elementor-widget-container{background-color:#FFFCF7;}.elementor-17029 .elementor-element.elementor-element-6e62710e .elementor-nav-menu .elementor-item{font-weight:var( --e-global-typography-text-font-weight );}.elementor-17029 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown{background-color:#FFFCF7;}.elementor-17029 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a:hover,
378 + .elementor-17029 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a:focus,
379 + .elementor-17029 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a.elementor-item-active,
380 + .elementor-17029 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a.highlighted{background-color:#FFFFFF;}.elementor-17029 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a.elementor-item-active{color:#AF5341;}.elementor-17029 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu .elementor-item{font-weight:var( --e-global-typography-text-font-weight );}.elementor-17029 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown{background-color:#FFFCF7;}.elementor-17029 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown a:hover,
381 + .elementor-17029 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown a:focus,
382 + .elementor-17029 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown a.elementor-item-active,
383 + .elementor-17029 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown a.highlighted{background-color:#FFFFFF;}.elementor-17029 .elementor-element.elementor-element-236b8d18{padding:1px 1px 1px 1px;}.elementor-17029 .elementor-element.elementor-element-422d2e4a > .elementor-widget-container{padding:1px 1px 1px 1px;}.elementor-17029 .elementor-element.elementor-element-422d2e4a .elementor-heading-title{font-family:"Arial", Sans-serif;font-weight:bold;}.elementor-17029 .elementor-element.elementor-element-6d35b1bc{padding:1px 1px 1px 1px;}.elementor-17029 .elementor-element.elementor-element-760957ba .elementor-cta .elementor-cta__bg, .elementor-17029 .elementor-element.elementor-element-760957ba .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-17029 .elementor-element.elementor-element-760957ba .elementor-cta__content{text-align:center;}.elementor-17029 .elementor-element.elementor-element-760957ba .elementor-cta__bg-wrapper{min-height:140px;}.elementor-17029 .elementor-element.elementor-element-760957ba .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-17029 .elementor-element.elementor-element-19a93452 .elementor-cta .elementor-cta__bg, .elementor-17029 .elementor-element.elementor-element-19a93452 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-17029 .elementor-element.elementor-element-19a93452 .elementor-cta__content{text-align:center;}.elementor-17029 .elementor-element.elementor-element-19a93452 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-17029 .elementor-element.elementor-element-19a93452 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-17029 .elementor-element.elementor-element-4324ab2 .elementor-cta .elementor-cta__bg, .elementor-17029 .elementor-element.elementor-element-4324ab2 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-17029 .elementor-element.elementor-element-4324ab2 .elementor-cta__content{text-align:center;}.elementor-17029 .elementor-element.elementor-element-4324ab2 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-17029 .elementor-element.elementor-element-4324ab2 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}@media(min-width:768px){.elementor-17029 .elementor-element.elementor-element-b35e1f1{width:50.134%;}.elementor-17029 .elementor-element.elementor-element-6160a416{width:49.866%;}}</style> <div data-elementor-type="section" data-elementor-id="17029" class="elementor elementor-17029 elementor-13474" data-elementor-post-type="elementor_library">
384 + <section class="elementor-section elementor-top-section elementor-element elementor-element-55e0e5d5 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="55e0e5d5" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
385 + <div class="elementor-container elementor-column-gap-default">
386 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-b35e1f1" data-id="b35e1f1" data-element_type="column" data-e-type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
387 + <div class="elementor-widget-wrap elementor-element-populated">
388 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-2bac18c8 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2bac18c8" data-element_type="section" data-e-type="section">
389 + <div class="elementor-container elementor-column-gap-default">
390 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-6fbcc080" data-id="6fbcc080" data-element_type="column" data-e-type="column">
391 + <div class="elementor-widget-wrap elementor-element-populated">
392 + <div class="elementor-element elementor-element-25ed71d6 elementor-widget elementor-widget-heading" data-id="25ed71d6" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
393 + <div class="elementor-widget-container">
394 + <h5 class="elementor-heading-title elementor-size-default">Trouver</h5> </div>
395 + </div>
396 + </div>
397 + </div>
398 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-58f2808d elementor-hidden-mobile" data-id="58f2808d" data-element_type="column" data-e-type="column">
399 + <div class="elementor-widget-wrap elementor-element-populated">
400 + <div class="elementor-element elementor-element-1bab0703 elementor-widget elementor-widget-heading" data-id="1bab0703" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
401 + <div class="elementor-widget-container">
402 + <h5 class="elementor-heading-title elementor-size-default">En savoir plus</h5> </div>
403 + </div>
404 + </div>
405 + </div>
406 + </div>
407 + </section>
408 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-51b29768 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="51b29768" data-element_type="section" data-e-type="section">
409 + <div class="elementor-container elementor-column-gap-default">
410 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-6cbedca5" data-id="6cbedca5" data-element_type="column" data-e-type="column">
411 + <div class="elementor-widget-wrap elementor-element-populated">
412 + <div class="elementor-element elementor-element-6e62710e elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="6e62710e" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
413 + <div class="elementor-widget-container">
414 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-none">
415 + <ul id="menu-1-6e62710e" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29486"><a href="https://www.capreit.ca/fr/appartements-a-louer/" class="elementor-item">Trouver un appartement</a></li>
416 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-99990"><a href="https://www.capreit.ca/fr/logements-en-colocation/" class="elementor-item">Logements en colocation</a></li>
417 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-33891"><a href="https://www.capreit.ca/fr/nous-joindre/" class="elementor-item">Nous joindre</a></li>
418 +</ul> </nav>
419 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
420 + <ul id="menu-2-6e62710e" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29486"><a href="https://www.capreit.ca/fr/appartements-a-louer/" class="elementor-item" tabindex="-1">Trouver un appartement</a></li>
421 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-99990"><a href="https://www.capreit.ca/fr/logements-en-colocation/" class="elementor-item" tabindex="-1">Logements en colocation</a></li>
422 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-33891"><a href="https://www.capreit.ca/fr/nous-joindre/" class="elementor-item" tabindex="-1">Nous joindre</a></li>
423 +</ul> </nav>
424 + </div>
425 + </div>
426 + </div>
427 + </div>
428 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-2272c71e" data-id="2272c71e" data-element_type="column" data-e-type="column">
429 + <div class="elementor-widget-wrap elementor-element-populated">
430 + <div class="elementor-element elementor-element-dd3febe elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-heading" data-id="dd3febe" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
431 + <div class="elementor-widget-container">
432 + <h5 class="elementor-heading-title elementor-size-default">En savoir plus</h5> </div>
433 + </div>
434 + <div class="elementor-element elementor-element-a4d85ea elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="a4d85ea" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
435 + <div class="elementor-widget-container">
436 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
437 + <ul id="menu-1-a4d85ea" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31875"><a href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" class="elementor-item">Pourquoi louer chez nous</a></li>
438 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31874"><a href="https://www.capreit.ca/fr/louer/portail-des-locataires/" class="elementor-item">Portail des locataires</a></li>
439 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31876"><a href="https://www.capreit.ca/fr/louer/questions-frequentes/" class="elementor-item">Questions posées fréquemment</a></li>
440 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-68454"><a href="/fr/louer/vivre-chez-canadian-apartment-properties-reit#style-de-vie-en-appartement" class="elementor-item elementor-item-anchor">Vivre chez CAPREIT</a></li>
441 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31873"><a href="https://www.capreit.ca/fr/louer/le-processus-de-location/" class="elementor-item">Le processus de location</a></li>
442 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-35371"><a href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" class="elementor-item">Pourquoi louer chez nous</a></li>
443 +</ul> </nav>
444 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
445 + <ul id="menu-2-a4d85ea" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31875"><a href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" class="elementor-item" tabindex="-1">Pourquoi louer chez nous</a></li>
446 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31874"><a href="https://www.capreit.ca/fr/louer/portail-des-locataires/" class="elementor-item" tabindex="-1">Portail des locataires</a></li>
447 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31876"><a href="https://www.capreit.ca/fr/louer/questions-frequentes/" class="elementor-item" tabindex="-1">Questions posées fréquemment</a></li>
448 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-68454"><a href="/fr/louer/vivre-chez-canadian-apartment-properties-reit#style-de-vie-en-appartement" class="elementor-item elementor-item-anchor" tabindex="-1">Vivre chez CAPREIT</a></li>
449 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31873"><a href="https://www.capreit.ca/fr/louer/le-processus-de-location/" class="elementor-item" tabindex="-1">Le processus de location</a></li>
450 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-35371"><a href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" class="elementor-item" tabindex="-1">Pourquoi louer chez nous</a></li>
451 +</ul> </nav>
452 + </div>
453 + </div>
454 + </div>
455 + </div>
456 + </div>
457 + </section>
458 + </div>
459 + </div>
460 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-6160a416" data-id="6160a416" data-element_type="column" data-e-type="column">
461 + <div class="elementor-widget-wrap elementor-element-populated">
462 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-236b8d18 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="236b8d18" data-element_type="section" data-e-type="section">
463 + <div class="elementor-container elementor-column-gap-default">
464 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-22560467" data-id="22560467" data-element_type="column" data-e-type="column">
465 + <div class="elementor-widget-wrap elementor-element-populated">
466 + <div class="elementor-element elementor-element-422d2e4a elementor-widget elementor-widget-heading" data-id="422d2e4a" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
467 + <div class="elementor-widget-container">
468 + <h5 class="elementor-heading-title elementor-size-default">En vedette</h5> </div>
469 + </div>
470 + </div>
471 + </div>
472 + </div>
473 + </section>
474 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-6d35b1bc elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6d35b1bc" data-element_type="section" data-e-type="section">
475 + <div class="elementor-container elementor-column-gap-default">
476 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-651c85c2" data-id="651c85c2" data-element_type="column" data-e-type="column">
477 + <div class="elementor-widget-wrap elementor-element-populated">
478 + <div class="elementor-element elementor-element-760957ba elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="760957ba" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
479 + <div class="elementor-widget-container">
480 + <a class="elementor-cta" href="https://www.capreit.ca/fr/charte-des-droits-des-locataires-capreit-multifamiliaux/">
481 + <div class="elementor-cta__bg-wrapper">
482 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2023/09/FR-BOR-Call-out-02-1024x541.png);" role="img" aria-label="FR-BOR-Call-out-02"></div>
483 + <div class="elementor-cta__bg-overlay"></div>
484 + </div>
485 + <div class="elementor-cta__content">
486 +
487 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
488 + CAPREIT se soucie de ses locataires. Nous nous soucions de la protection de leurs droits. </h4>
489 +
490 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
491 + En savoir plus </div>
492 +
493 + </div>
494 + </a>
495 + </div>
496 + </div>
497 + </div>
498 + </div>
499 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4821cc" data-id="4821cc" data-element_type="column" data-e-type="column">
500 + <div class="elementor-widget-wrap elementor-element-populated">
501 + <div class="elementor-element elementor-element-19a93452 elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="19a93452" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
502 + <div class="elementor-widget-container">
503 + <a class="elementor-cta" href="https://www.capreit.ca/fr/louer/questions-frequentes/">
504 + <div class="elementor-cta__bg-wrapper">
505 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2021/11/img-callout-faq.png);" role="img" aria-label="img-callout-faq"></div>
506 + <div class="elementor-cta__bg-overlay"></div>
507 + </div>
508 + <div class="elementor-cta__content">
509 +
510 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
511 + Questions posées fréquemment </h4>
512 +
513 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
514 + Vous avez des questions? Nous avons les réponses. </div>
515 +
516 + </div>
517 + </a>
518 + </div>
519 + </div>
520 + </div>
521 + </div>
522 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-792700e" data-id="792700e" data-element_type="column" data-e-type="column">
523 + <div class="elementor-widget-wrap elementor-element-populated">
524 + <div class="elementor-element elementor-element-4324ab2 elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="4324ab2" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
525 + <div class="elementor-widget-container">
526 + <a class="elementor-cta" href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/">
527 + <div class="elementor-cta__bg-wrapper">
528 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2021/11/Blog-Call-out-FR-1024x683.png);" role="img" aria-label="Blog-Call-out-FR"></div>
529 + <div class="elementor-cta__bg-overlay"></div>
530 + </div>
531 + <div class="elementor-cta__content">
532 +
533 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
534 + Visitez notre blogue </h4>
535 +
536 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
537 + Pour les dernières nouvelles, événements, concours, articles et conseils utiles et plus encore. </div>
538 +
539 + </div>
540 + </a>
541 + </div>
542 + </div>
543 + </div>
544 + </div>
545 + </div>
546 + </section>
547 + </div>
548 + </div>
549 + </div>
550 + </section>
551 + </div>
552 + </div>
553 + </div>
554 + <div class="header-sub" id="navigation-about">
555 + <div class="wrapper">
556 + <style id="elementor-post-13460">.elementor-13460 .elementor-element.elementor-element-ad30f1e{border-style:solid;border-width:1px 1px 1px 1px;padding:1px 1px 1px 40px;z-index:99;}.elementor-13460 .elementor-element.elementor-element-292c159f{padding:1px 1px 1px 1px;}.elementor-13460 .elementor-element.elementor-element-3bb72597{padding:1px 1px 1px 1px;}.elementor-13460 .elementor-element.elementor-element-55c96f09 .elementor-nav-menu .elementor-item{font-family:"Arial", Sans-serif;font-size:16px;font-weight:500;font-style:normal;}.elementor-13460 .elementor-element.elementor-element-6f3ca6c6 .elementor-nav-menu .elementor-item{font-family:"Arial", Sans-serif;font-size:16px;font-weight:500;}.elementor-13460 .elementor-element.elementor-element-1654cfe0{padding:1px 1px 1px 1px;}.elementor-13460 .elementor-element.elementor-element-3706ad6b > .elementor-widget-container{padding:1px 1px 1px 1px;}.elementor-13460 .elementor-element.elementor-element-3706ad6b .elementor-heading-title{font-family:"Arial", Sans-serif;font-weight:bold;}.elementor-13460 .elementor-element.elementor-element-9a23d29{padding:1px 1px 1px 1px;}.elementor-13460 .elementor-element.elementor-element-8cc5b41 .elementor-cta .elementor-cta__bg, .elementor-13460 .elementor-element.elementor-element-8cc5b41 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-13460 .elementor-element.elementor-element-8cc5b41 .elementor-cta__content{text-align:center;}.elementor-13460 .elementor-element.elementor-element-8cc5b41 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-13460 .elementor-element.elementor-element-8cc5b41 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-13460 .elementor-element.elementor-element-e29d566 .elementor-cta .elementor-cta__bg, .elementor-13460 .elementor-element.elementor-element-e29d566 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-13460 .elementor-element.elementor-element-e29d566 .elementor-cta__content{text-align:center;}.elementor-13460 .elementor-element.elementor-element-e29d566 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-13460 .elementor-element.elementor-element-e29d566 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-13460 .elementor-element.elementor-element-71168b79 .elementor-cta .elementor-cta__bg, .elementor-13460 .elementor-element.elementor-element-71168b79 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-13460 .elementor-element.elementor-element-71168b79 .elementor-cta__content{text-align:center;}.elementor-13460 .elementor-element.elementor-element-71168b79 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-13460 .elementor-element.elementor-element-71168b79 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}@media(min-width:768px){.elementor-13460 .elementor-element.elementor-element-65d657c8{width:50.134%;}.elementor-13460 .elementor-element.elementor-element-50c0cf5e{width:49.866%;}}</style> <div data-elementor-type="section" data-elementor-id="17031" class="elementor elementor-17031 elementor-13460" data-elementor-post-type="elementor_library">
557 + <section class="elementor-section elementor-top-section elementor-element elementor-element-ad30f1e elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="ad30f1e" data-element_type="section" data-e-type="section">
558 + <div class="elementor-container elementor-column-gap-default">
559 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65d657c8" data-id="65d657c8" data-element_type="column" data-e-type="column">
560 + <div class="elementor-widget-wrap elementor-element-populated">
561 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-292c159f elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="292c159f" data-element_type="section" data-e-type="section">
562 + <div class="elementor-container elementor-column-gap-default">
563 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-7bb1347f" data-id="7bb1347f" data-element_type="column" data-e-type="column">
564 + <div class="elementor-widget-wrap elementor-element-populated">
565 + <div class="elementor-element elementor-element-41f77c37 elementor-widget elementor-widget-heading" data-id="41f77c37" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
566 + <div class="elementor-widget-container">
567 + <h5 class="elementor-heading-title elementor-size-default">À PROPOS DE CANADIAN APARTMENT PROPERTIES REIT
568 +</h5> </div>
569 + </div>
570 + </div>
571 + </div>
572 + </div>
573 + </section>
574 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-3bb72597 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3bb72597" data-element_type="section" data-e-type="section">
575 + <div class="elementor-container elementor-column-gap-default">
576 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7b3c9712" data-id="7b3c9712" data-element_type="column" data-e-type="column">
577 + <div class="elementor-widget-wrap elementor-element-populated">
578 + <div class="elementor-element elementor-element-55c96f09 elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="55c96f09" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&quot;,&quot;library&quot;:&quot;&quot;}}" data-widget_type="nav-menu.default">
579 + <div class="elementor-widget-container">
580 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
581 + <ul id="menu-1-55c96f09" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29501"><a href="https://www.capreit.ca/fr/a-propos/qui-nous-sommes/" class="elementor-item">Qui nous sommes</a></li>
582 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29609"><a href="https://www.capreit.ca/fr/a-propos/equipe-de-direction/" class="elementor-item">Équipe de direction</a></li>
583 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-48869"><a href="/fr/louer/vivre-chez-canadian-apartment-properties-reit/#nouvelles-capreit" class="elementor-item elementor-item-anchor">Nouvelles CAPREIT</a></li>
584 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-32046"><a href="https://www.capreit.ca/fr/a-propos/notre-bilan-esg/" class="elementor-item">Notre histoire en matière d&rsquo;environnement, de société et de gouvernance</a></li>
585 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49615"><a href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/" class="elementor-item">Notre blogue</a></li>
586 +</ul> </nav>
587 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
588 + <ul id="menu-2-55c96f09" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29501"><a href="https://www.capreit.ca/fr/a-propos/qui-nous-sommes/" class="elementor-item" tabindex="-1">Qui nous sommes</a></li>
589 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29609"><a href="https://www.capreit.ca/fr/a-propos/equipe-de-direction/" class="elementor-item" tabindex="-1">Équipe de direction</a></li>
590 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-48869"><a href="/fr/louer/vivre-chez-canadian-apartment-properties-reit/#nouvelles-capreit" class="elementor-item elementor-item-anchor" tabindex="-1">Nouvelles CAPREIT</a></li>
591 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-32046"><a href="https://www.capreit.ca/fr/a-propos/notre-bilan-esg/" class="elementor-item" tabindex="-1">Notre histoire en matière d&rsquo;environnement, de société et de gouvernance</a></li>
592 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49615"><a href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/" class="elementor-item" tabindex="-1">Notre blogue</a></li>
593 +</ul> </nav>
594 + </div>
595 + </div>
596 + </div>
597 + </div>
598 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3355ff44" data-id="3355ff44" data-element_type="column" data-e-type="column">
599 + <div class="elementor-widget-wrap elementor-element-populated">
600 + <div class="elementor-element elementor-element-6f3ca6c6 elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="6f3ca6c6" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
601 + <div class="elementor-widget-container">
602 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
603 + <ul id="menu-1-6f3ca6c6" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29509"><a href="https://www.capreit.ca/fr/a-propos/se-joindre-a-notre-equipe/" class="elementor-item">Se joindre à notre équipe</a></li>
604 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29506"><a href="https://www.capreit.ca/fr/a-propos/notre-processus-dembauche/" class="elementor-item">Notre processus d’embauche</a></li>
605 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-41109"><a href="https://careers2-capreit.icims.com/jobs/search" class="elementor-item">Voir les postes ouverts</a></li>
606 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29507"><a href="https://www.capreit.ca/fr/a-propos/parcours-de-carriere/" class="elementor-item">Parcours de carrière</a></li>
607 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29508"><a href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" class="elementor-item">Programmes de perfectionnement des employés</a></li>
608 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-28230"><a href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" class="elementor-item">Programmes de perfectionnement des employés</a></li>
609 +</ul> </nav>
610 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
611 + <ul id="menu-2-6f3ca6c6" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29509"><a href="https://www.capreit.ca/fr/a-propos/se-joindre-a-notre-equipe/" class="elementor-item" tabindex="-1">Se joindre à notre équipe</a></li>
612 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29506"><a href="https://www.capreit.ca/fr/a-propos/notre-processus-dembauche/" class="elementor-item" tabindex="-1">Notre processus d’embauche</a></li>
613 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-41109"><a href="https://careers2-capreit.icims.com/jobs/search" class="elementor-item" tabindex="-1">Voir les postes ouverts</a></li>
614 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29507"><a href="https://www.capreit.ca/fr/a-propos/parcours-de-carriere/" class="elementor-item" tabindex="-1">Parcours de carrière</a></li>
615 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29508"><a href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" class="elementor-item" tabindex="-1">Programmes de perfectionnement des employés</a></li>
616 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-28230"><a href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" class="elementor-item" tabindex="-1">Programmes de perfectionnement des employés</a></li>
617 +</ul> </nav>
618 + </div>
619 + </div>
620 + </div>
621 + </div>
622 + </div>
623 + </section>
624 + </div>
625 + </div>
626 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-50c0cf5e" data-id="50c0cf5e" data-element_type="column" data-e-type="column">
627 + <div class="elementor-widget-wrap elementor-element-populated">
628 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-1654cfe0 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="1654cfe0" data-element_type="section" data-e-type="section">
629 + <div class="elementor-container elementor-column-gap-default">
630 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-67ad697c" data-id="67ad697c" data-element_type="column" data-e-type="column">
631 + <div class="elementor-widget-wrap elementor-element-populated">
632 + <div class="elementor-element elementor-element-3706ad6b elementor-widget elementor-widget-heading" data-id="3706ad6b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
633 + <div class="elementor-widget-container">
634 + <h5 class="elementor-heading-title elementor-size-default">En vedette</h5> </div>
635 + </div>
636 + </div>
637 + </div>
638 + </div>
639 + </section>
640 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-9a23d29 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="9a23d29" data-element_type="section" data-e-type="section">
641 + <div class="elementor-container elementor-column-gap-default">
642 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-fb9cab4" data-id="fb9cab4" data-element_type="column" data-e-type="column">
643 + <div class="elementor-widget-wrap elementor-element-populated">
644 + <div class="elementor-element elementor-element-8cc5b41 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="8cc5b41" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
645 + <div class="elementor-widget-container">
646 + <a class="elementor-cta" href="https://capreit.ca/fr/capgenerosite/">
647 + <div class="elementor-cta__bg-wrapper">
648 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2024/11/CAPGiving-Header-1024x541.png);" role="img" aria-label="CAPGiving-Header"></div>
649 + <div class="elementor-cta__bg-overlay"></div>
650 + </div>
651 + <div class="elementor-cta__content">
652 +
653 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
654 + L’engagement de CAPREIT envers les communautés par CAPGénérosité </h4>
655 +
656 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
657 + Nous sommes profondément engagés à faire une différence dans les communautés où nous travaillons </div>
658 +
659 + </div>
660 + </a>
661 + </div>
662 + </div>
663 + </div>
664 + </div>
665 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-1d7c06e" data-id="1d7c06e" data-element_type="column" data-e-type="column">
666 + <div class="elementor-widget-wrap elementor-element-populated">
667 + <div class="elementor-element elementor-element-e29d566 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="e29d566" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
668 + <div class="elementor-widget-container">
669 + <a class="elementor-cta" href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/#nouvelles-capreit">
670 + <div class="elementor-cta__bg-wrapper">
671 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2026/04/CAPREIT-NEWS-FR-CTA-1024x541.png);" role="img" aria-label="CAPREIT-NEWS-FR-CTA"></div>
672 + <div class="elementor-cta__bg-overlay"></div>
673 + </div>
674 + <div class="elementor-cta__content">
675 +
676 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
677 + Nouvelles CAPREIT </h4>
678 +
679 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
680 + Les dernières nouvelles et communiqués de presse concernant CAPREIT. </div>
681 +
682 + </div>
683 + </a>
684 + </div>
685 + </div>
686 + </div>
687 + </div>
688 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-5a4e66e0" data-id="5a4e66e0" data-element_type="column" data-e-type="column">
689 + <div class="elementor-widget-wrap elementor-element-populated">
690 + <div class="elementor-element elementor-element-71168b79 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="71168b79" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
691 + <div class="elementor-widget-container">
692 + <a class="elementor-cta" href="https://www.capreit.ca/fr/la-conservation-et-la-durabilite-partie-1-entreprise-responsable-avenir-durable/">
693 + <div class="elementor-cta__bg-wrapper">
694 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2024/02/ESG-video-series-Mega-Menu-CTA-01-1024x541.jpg);" role="img" aria-label="Wooden building blocks with green environmental symbols painted on each."></div>
695 + <div class="elementor-cta__bg-overlay"></div>
696 + </div>
697 + <div class="elementor-cta__content">
698 +
699 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
700 + La conservation et la durabilité chez CAPREIT </h4>
701 +
702 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
703 + Une série de vidéos sur notre gestion responsable
704 +de l'environnement </div>
705 +
706 + </div>
707 + </a>
708 + </div>
709 + </div>
710 + </div>
711 + </div>
712 + </div>
713 + </section>
714 + </div>
715 + </div>
716 + </div>
717 + </section>
718 + </div>
719 + </div>
720 + </div>
721 + <div class="header-sub" id="navigation-apropos">
722 + <div class="wrapper">
723 + <style id="elementor-post-17031">.elementor-17031 .elementor-element.elementor-element-ad30f1e{border-style:solid;border-width:1px 1px 1px 1px;padding:1px 1px 1px 40px;z-index:99;}.elementor-17031 .elementor-element.elementor-element-292c159f{padding:1px 1px 1px 1px;}.elementor-17031 .elementor-element.elementor-element-3bb72597{padding:1px 1px 1px 1px;}.elementor-17031 .elementor-element.elementor-element-55c96f09 .elementor-nav-menu .elementor-item{font-family:"Arial", Sans-serif;font-size:16px;font-weight:500;font-style:normal;}.elementor-17031 .elementor-element.elementor-element-6f3ca6c6 .elementor-nav-menu .elementor-item{font-family:"Arial", Sans-serif;font-size:16px;font-weight:500;}.elementor-17031 .elementor-element.elementor-element-1654cfe0{padding:1px 1px 1px 1px;}.elementor-17031 .elementor-element.elementor-element-3706ad6b > .elementor-widget-container{padding:1px 1px 1px 1px;}.elementor-17031 .elementor-element.elementor-element-3706ad6b .elementor-heading-title{font-family:"Arial", Sans-serif;font-weight:bold;}.elementor-17031 .elementor-element.elementor-element-9a23d29{padding:1px 1px 1px 1px;}.elementor-17031 .elementor-element.elementor-element-8cc5b41 .elementor-cta .elementor-cta__bg, .elementor-17031 .elementor-element.elementor-element-8cc5b41 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-17031 .elementor-element.elementor-element-8cc5b41 .elementor-cta__content{text-align:center;}.elementor-17031 .elementor-element.elementor-element-8cc5b41 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-17031 .elementor-element.elementor-element-8cc5b41 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-17031 .elementor-element.elementor-element-e29d566 .elementor-cta .elementor-cta__bg, .elementor-17031 .elementor-element.elementor-element-e29d566 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-17031 .elementor-element.elementor-element-e29d566 .elementor-cta__content{text-align:center;}.elementor-17031 .elementor-element.elementor-element-e29d566 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-17031 .elementor-element.elementor-element-e29d566 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-17031 .elementor-element.elementor-element-71168b79 .elementor-cta .elementor-cta__bg, .elementor-17031 .elementor-element.elementor-element-71168b79 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-17031 .elementor-element.elementor-element-71168b79 .elementor-cta__content{text-align:center;}.elementor-17031 .elementor-element.elementor-element-71168b79 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-17031 .elementor-element.elementor-element-71168b79 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}@media(min-width:768px){.elementor-17031 .elementor-element.elementor-element-65d657c8{width:50.134%;}.elementor-17031 .elementor-element.elementor-element-50c0cf5e{width:49.866%;}}</style> <div data-elementor-type="section" data-elementor-id="17031" class="elementor elementor-17031 elementor-13460" data-elementor-post-type="elementor_library">
724 + <section class="elementor-section elementor-top-section elementor-element elementor-element-ad30f1e elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="ad30f1e" data-element_type="section" data-e-type="section">
725 + <div class="elementor-container elementor-column-gap-default">
726 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65d657c8" data-id="65d657c8" data-element_type="column" data-e-type="column">
727 + <div class="elementor-widget-wrap elementor-element-populated">
728 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-292c159f elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="292c159f" data-element_type="section" data-e-type="section">
729 + <div class="elementor-container elementor-column-gap-default">
730 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-7bb1347f" data-id="7bb1347f" data-element_type="column" data-e-type="column">
731 + <div class="elementor-widget-wrap elementor-element-populated">
732 + <div class="elementor-element elementor-element-41f77c37 elementor-widget elementor-widget-heading" data-id="41f77c37" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
733 + <div class="elementor-widget-container">
734 + <h5 class="elementor-heading-title elementor-size-default">À PROPOS DE CANADIAN APARTMENT PROPERTIES REIT
735 +</h5> </div>
736 + </div>
737 + </div>
738 + </div>
739 + </div>
740 + </section>
741 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-3bb72597 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3bb72597" data-element_type="section" data-e-type="section">
742 + <div class="elementor-container elementor-column-gap-default">
743 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7b3c9712" data-id="7b3c9712" data-element_type="column" data-e-type="column">
744 + <div class="elementor-widget-wrap elementor-element-populated">
745 + <div class="elementor-element elementor-element-55c96f09 elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="55c96f09" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&quot;,&quot;library&quot;:&quot;&quot;}}" data-widget_type="nav-menu.default">
746 + <div class="elementor-widget-container">
747 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
748 + <ul id="menu-1-55c96f09" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29501"><a href="https://www.capreit.ca/fr/a-propos/qui-nous-sommes/" class="elementor-item">Qui nous sommes</a></li>
749 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29609"><a href="https://www.capreit.ca/fr/a-propos/equipe-de-direction/" class="elementor-item">Équipe de direction</a></li>
750 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-48869"><a href="/fr/louer/vivre-chez-canadian-apartment-properties-reit/#nouvelles-capreit" class="elementor-item elementor-item-anchor">Nouvelles CAPREIT</a></li>
751 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-32046"><a href="https://www.capreit.ca/fr/a-propos/notre-bilan-esg/" class="elementor-item">Notre histoire en matière d&rsquo;environnement, de société et de gouvernance</a></li>
752 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49615"><a href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/" class="elementor-item">Notre blogue</a></li>
753 +</ul> </nav>
754 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
755 + <ul id="menu-2-55c96f09" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29501"><a href="https://www.capreit.ca/fr/a-propos/qui-nous-sommes/" class="elementor-item" tabindex="-1">Qui nous sommes</a></li>
756 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29609"><a href="https://www.capreit.ca/fr/a-propos/equipe-de-direction/" class="elementor-item" tabindex="-1">Équipe de direction</a></li>
757 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-48869"><a href="/fr/louer/vivre-chez-canadian-apartment-properties-reit/#nouvelles-capreit" class="elementor-item elementor-item-anchor" tabindex="-1">Nouvelles CAPREIT</a></li>
758 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-32046"><a href="https://www.capreit.ca/fr/a-propos/notre-bilan-esg/" class="elementor-item" tabindex="-1">Notre histoire en matière d&rsquo;environnement, de société et de gouvernance</a></li>
759 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49615"><a href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/" class="elementor-item" tabindex="-1">Notre blogue</a></li>
760 +</ul> </nav>
761 + </div>
762 + </div>
763 + </div>
764 + </div>
765 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3355ff44" data-id="3355ff44" data-element_type="column" data-e-type="column">
766 + <div class="elementor-widget-wrap elementor-element-populated">
767 + <div class="elementor-element elementor-element-6f3ca6c6 elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="6f3ca6c6" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
768 + <div class="elementor-widget-container">
769 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
770 + <ul id="menu-1-6f3ca6c6" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29509"><a href="https://www.capreit.ca/fr/a-propos/se-joindre-a-notre-equipe/" class="elementor-item">Se joindre à notre équipe</a></li>
771 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29506"><a href="https://www.capreit.ca/fr/a-propos/notre-processus-dembauche/" class="elementor-item">Notre processus d’embauche</a></li>
772 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-41109"><a href="https://careers2-capreit.icims.com/jobs/search" class="elementor-item">Voir les postes ouverts</a></li>
773 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29507"><a href="https://www.capreit.ca/fr/a-propos/parcours-de-carriere/" class="elementor-item">Parcours de carrière</a></li>
774 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29508"><a href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" class="elementor-item">Programmes de perfectionnement des employés</a></li>
775 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-28230"><a href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" class="elementor-item">Programmes de perfectionnement des employés</a></li>
776 +</ul> </nav>
777 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
778 + <ul id="menu-2-6f3ca6c6" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29509"><a href="https://www.capreit.ca/fr/a-propos/se-joindre-a-notre-equipe/" class="elementor-item" tabindex="-1">Se joindre à notre équipe</a></li>
779 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29506"><a href="https://www.capreit.ca/fr/a-propos/notre-processus-dembauche/" class="elementor-item" tabindex="-1">Notre processus d’embauche</a></li>
780 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-41109"><a href="https://careers2-capreit.icims.com/jobs/search" class="elementor-item" tabindex="-1">Voir les postes ouverts</a></li>
781 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29507"><a href="https://www.capreit.ca/fr/a-propos/parcours-de-carriere/" class="elementor-item" tabindex="-1">Parcours de carrière</a></li>
782 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29508"><a href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" class="elementor-item" tabindex="-1">Programmes de perfectionnement des employés</a></li>
783 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-28230"><a href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" class="elementor-item" tabindex="-1">Programmes de perfectionnement des employés</a></li>
784 +</ul> </nav>
785 + </div>
786 + </div>
787 + </div>
788 + </div>
789 + </div>
790 + </section>
791 + </div>
792 + </div>
793 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-50c0cf5e" data-id="50c0cf5e" data-element_type="column" data-e-type="column">
794 + <div class="elementor-widget-wrap elementor-element-populated">
795 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-1654cfe0 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="1654cfe0" data-element_type="section" data-e-type="section">
796 + <div class="elementor-container elementor-column-gap-default">
797 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-67ad697c" data-id="67ad697c" data-element_type="column" data-e-type="column">
798 + <div class="elementor-widget-wrap elementor-element-populated">
799 + <div class="elementor-element elementor-element-3706ad6b elementor-widget elementor-widget-heading" data-id="3706ad6b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
800 + <div class="elementor-widget-container">
801 + <h5 class="elementor-heading-title elementor-size-default">En vedette</h5> </div>
802 + </div>
803 + </div>
804 + </div>
805 + </div>
806 + </section>
807 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-9a23d29 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="9a23d29" data-element_type="section" data-e-type="section">
808 + <div class="elementor-container elementor-column-gap-default">
809 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-fb9cab4" data-id="fb9cab4" data-element_type="column" data-e-type="column">
810 + <div class="elementor-widget-wrap elementor-element-populated">
811 + <div class="elementor-element elementor-element-8cc5b41 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="8cc5b41" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
812 + <div class="elementor-widget-container">
813 + <a class="elementor-cta" href="https://capreit.ca/fr/capgenerosite/">
814 + <div class="elementor-cta__bg-wrapper">
815 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2024/11/CAPGiving-Header-1024x541.png);" role="img" aria-label="CAPGiving-Header"></div>
816 + <div class="elementor-cta__bg-overlay"></div>
817 + </div>
818 + <div class="elementor-cta__content">
819 +
820 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
821 + L’engagement de CAPREIT envers les communautés par CAPGénérosité </h4>
822 +
823 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
824 + Nous sommes profondément engagés à faire une différence dans les communautés où nous travaillons </div>
825 +
826 + </div>
827 + </a>
828 + </div>
829 + </div>
830 + </div>
831 + </div>
832 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-1d7c06e" data-id="1d7c06e" data-element_type="column" data-e-type="column">
833 + <div class="elementor-widget-wrap elementor-element-populated">
834 + <div class="elementor-element elementor-element-e29d566 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="e29d566" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
835 + <div class="elementor-widget-container">
836 + <a class="elementor-cta" href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/#nouvelles-capreit">
837 + <div class="elementor-cta__bg-wrapper">
838 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2026/04/CAPREIT-NEWS-FR-CTA-1024x541.png);" role="img" aria-label="CAPREIT-NEWS-FR-CTA"></div>
839 + <div class="elementor-cta__bg-overlay"></div>
840 + </div>
841 + <div class="elementor-cta__content">
842 +
843 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
844 + Nouvelles CAPREIT </h4>
845 +
846 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
847 + Les dernières nouvelles et communiqués de presse concernant CAPREIT. </div>
848 +
849 + </div>
850 + </a>
851 + </div>
852 + </div>
853 + </div>
854 + </div>
855 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-5a4e66e0" data-id="5a4e66e0" data-element_type="column" data-e-type="column">
856 + <div class="elementor-widget-wrap elementor-element-populated">
857 + <div class="elementor-element elementor-element-71168b79 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="71168b79" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
858 + <div class="elementor-widget-container">
859 + <a class="elementor-cta" href="https://www.capreit.ca/fr/la-conservation-et-la-durabilite-partie-1-entreprise-responsable-avenir-durable/">
860 + <div class="elementor-cta__bg-wrapper">
861 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2024/02/ESG-video-series-Mega-Menu-CTA-01-1024x541.jpg);" role="img" aria-label="Wooden building blocks with green environmental symbols painted on each."></div>
862 + <div class="elementor-cta__bg-overlay"></div>
863 + </div>
864 + <div class="elementor-cta__content">
865 +
866 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
867 + La conservation et la durabilité chez CAPREIT </h4>
868 +
869 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
870 + Une série de vidéos sur notre gestion responsable
871 +de l'environnement </div>
872 +
873 + </div>
874 + </a>
875 + </div>
876 + </div>
877 + </div>
878 + </div>
879 + </div>
880 + </section>
881 + </div>
882 + </div>
883 + </div>
884 + </section>
885 + </div>
886 + </div>
887 + </div>
888 + <div class="header-sub" id="navigation-partner">
889 + <div class="wrapper">
890 + <style id="elementor-post-64019">.elementor-64019 .elementor-element.elementor-element-34f63c5{border-style:solid;border-width:1px 1px 1px 1px;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:1px 1px 1px 40px;z-index:99;}.elementor-64019 .elementor-element.elementor-element-34f63c5 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-64019 .elementor-element.elementor-element-13c9536{padding:1px 1px 1px 1px;}.elementor-64019 .elementor-element.elementor-element-6713857c{padding:1px 1px 1px 1px;}.elementor-64019 .elementor-element.elementor-element-2caa34e > .elementor-widget-container{background-color:#FFFCF7;}.elementor-64019 .elementor-element.elementor-element-2caa34e .elementor-nav-menu .elementor-item{font-family:"Arial", Sans-serif;font-size:16px;font-weight:500;font-style:normal;}.elementor-64019 .elementor-element.elementor-element-2caa34e .elementor-nav-menu--dropdown{background-color:#FFFCF7;}.elementor-64019 .elementor-element.elementor-element-2caa34e .elementor-nav-menu--dropdown a:hover,
891 + .elementor-64019 .elementor-element.elementor-element-2caa34e .elementor-nav-menu--dropdown a:focus,
892 + .elementor-64019 .elementor-element.elementor-element-2caa34e .elementor-nav-menu--dropdown a.elementor-item-active,
893 + .elementor-64019 .elementor-element.elementor-element-2caa34e .elementor-nav-menu--dropdown a.highlighted{background-color:#FFFFFF;}.elementor-64019 .elementor-element.elementor-element-2caa34e .elementor-nav-menu--dropdown a.elementor-item-active{color:#AF5341;}.elementor-64019 .elementor-element.elementor-element-3a518e > .elementor-widget-container{background-color:#FFFCF7;}.elementor-64019 .elementor-element.elementor-element-3a518e .elementor-nav-menu .elementor-item{font-family:"Arial", Sans-serif;font-size:16px;font-weight:500;}.elementor-64019 .elementor-element.elementor-element-3a518e .elementor-nav-menu--dropdown{background-color:#FFFCF7;}.elementor-64019 .elementor-element.elementor-element-3a518e .elementor-nav-menu--dropdown a:hover,
894 + .elementor-64019 .elementor-element.elementor-element-3a518e .elementor-nav-menu--dropdown a:focus,
895 + .elementor-64019 .elementor-element.elementor-element-3a518e .elementor-nav-menu--dropdown a.elementor-item-active,
896 + .elementor-64019 .elementor-element.elementor-element-3a518e .elementor-nav-menu--dropdown a.highlighted{background-color:#FFFFFF;}.elementor-64019 .elementor-element.elementor-element-3a518e .elementor-nav-menu--dropdown a.elementor-item-active{color:#AF5341;}.elementor-64019 .elementor-element.elementor-element-58b3b64d{padding:1px 1px 1px 1px;}.elementor-64019 .elementor-element.elementor-element-3a1d2d62 > .elementor-widget-container{padding:1px 1px 1px 1px;}.elementor-64019 .elementor-element.elementor-element-3a1d2d62 .elementor-heading-title{font-family:"Arial", Sans-serif;font-weight:bold;}.elementor-64019 .elementor-element.elementor-element-23edf8cc{padding:1px 1px 1px 1px;}.elementor-64019 .elementor-element.elementor-element-6c3bb8a4 .elementor-cta .elementor-cta__bg, .elementor-64019 .elementor-element.elementor-element-6c3bb8a4 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-64019 .elementor-element.elementor-element-6c3bb8a4 .elementor-cta__content{text-align:center;}.elementor-64019 .elementor-element.elementor-element-6c3bb8a4 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-64019 .elementor-element.elementor-element-12dbd159 .elementor-cta .elementor-cta__bg, .elementor-64019 .elementor-element.elementor-element-12dbd159 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-64019 .elementor-element.elementor-element-12dbd159 .elementor-cta__content{text-align:center;}.elementor-64019 .elementor-element.elementor-element-12dbd159 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-64019 .elementor-element.elementor-element-7bcea2d0 .elementor-cta .elementor-cta__bg, .elementor-64019 .elementor-element.elementor-element-7bcea2d0 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-64019 .elementor-element.elementor-element-7bcea2d0 .elementor-cta__content{text-align:center;}.elementor-64019 .elementor-element.elementor-element-7bcea2d0 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}@media(min-width:768px){.elementor-64019 .elementor-element.elementor-element-7b29acf2{width:50.134%;}.elementor-64019 .elementor-element.elementor-element-5a8d58db{width:49.866%;}}</style> <div data-elementor-type="section" data-elementor-id="64019" class="elementor elementor-64019" data-elementor-post-type="elementor_library">
897 + <section class="elementor-section elementor-top-section elementor-element elementor-element-34f63c5 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="34f63c5" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
898 + <div class="elementor-container elementor-column-gap-default">
899 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-7b29acf2" data-id="7b29acf2" data-element_type="column" data-e-type="column">
900 + <div class="elementor-widget-wrap elementor-element-populated">
901 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-13c9536 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="13c9536" data-element_type="section" data-e-type="section">
902 + <div class="elementor-container elementor-column-gap-default">
903 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-1cbbb382" data-id="1cbbb382" data-element_type="column" data-e-type="column">
904 + <div class="elementor-widget-wrap elementor-element-populated">
905 + <div class="elementor-element elementor-element-1884e6e0 elementor-widget elementor-widget-heading" data-id="1884e6e0" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
906 + <div class="elementor-widget-container">
907 + <h5 class="elementor-heading-title elementor-size-default">Partner with CAPREIT </h5> </div>
908 + </div>
909 + </div>
910 + </div>
911 + </div>
912 + </section>
913 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-6713857c elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6713857c" data-element_type="section" data-e-type="section">
914 + <div class="elementor-container elementor-column-gap-default">
915 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-2eab85e7" data-id="2eab85e7" data-element_type="column" data-e-type="column">
916 + <div class="elementor-widget-wrap elementor-element-populated">
917 + <div class="elementor-element elementor-element-2caa34e elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="2caa34e" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&quot;,&quot;library&quot;:&quot;&quot;}}" data-widget_type="nav-menu.default">
918 + <div class="elementor-widget-container">
919 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-none">
920 + <ul id="menu-1-2caa34e" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66984"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/" class="elementor-item">Collaborer avec CAPREIT​</a></li>
921 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66985"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/devenir-un-fournisseur/" class="elementor-item">Devenir un fournisseur</a></li>
922 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-72485"><a href="https://www.capreit.ca/vendor-code-of-conduct" class="elementor-item">CAPREIT&rsquo;s Vendor Code of Conduct</a></li>
923 +</ul> </nav>
924 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
925 + <ul id="menu-2-2caa34e" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66984"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/" class="elementor-item" tabindex="-1">Collaborer avec CAPREIT​</a></li>
926 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66985"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/devenir-un-fournisseur/" class="elementor-item" tabindex="-1">Devenir un fournisseur</a></li>
927 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-72485"><a href="https://www.capreit.ca/vendor-code-of-conduct" class="elementor-item" tabindex="-1">CAPREIT&rsquo;s Vendor Code of Conduct</a></li>
928 +</ul> </nav>
929 + </div>
930 + </div>
931 + </div>
932 + </div>
933 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-4f989c82" data-id="4f989c82" data-element_type="column" data-e-type="column">
934 + <div class="elementor-widget-wrap elementor-element-populated">
935 + <div class="elementor-element elementor-element-3a518e elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="3a518e" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
936 + <div class="elementor-widget-container">
937 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
938 + <ul id="menu-1-3a518e" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66979"><a href="https://www.capreit.ca/fr/commercial/" class="elementor-item">Commercial</a></li>
939 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66986"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/revenus-accessoires-et-partenariats-daffaires/" class="elementor-item">Revenus accessoires et partenariats d’affaires</a></li>
940 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66987"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/partager-vos-commentaires/" class="elementor-item">Partager vos commentaires</a></li>
941 +</ul> </nav>
942 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
943 + <ul id="menu-2-3a518e" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66979"><a href="https://www.capreit.ca/fr/commercial/" class="elementor-item" tabindex="-1">Commercial</a></li>
944 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66986"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/revenus-accessoires-et-partenariats-daffaires/" class="elementor-item" tabindex="-1">Revenus accessoires et partenariats d’affaires</a></li>
945 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66987"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/partager-vos-commentaires/" class="elementor-item" tabindex="-1">Partager vos commentaires</a></li>
946 +</ul> </nav>
947 + </div>
948 + </div>
949 + </div>
950 + </div>
951 + </div>
952 + </section>
953 + </div>
954 + </div>
955 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-5a8d58db" data-id="5a8d58db" data-element_type="column" data-e-type="column">
956 + <div class="elementor-widget-wrap elementor-element-populated">
957 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-58b3b64d elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="58b3b64d" data-element_type="section" data-e-type="section">
958 + <div class="elementor-container elementor-column-gap-default">
959 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5398c5db" data-id="5398c5db" data-element_type="column" data-e-type="column">
960 + <div class="elementor-widget-wrap elementor-element-populated">
961 + <div class="elementor-element elementor-element-3a1d2d62 elementor-widget elementor-widget-heading" data-id="3a1d2d62" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
962 + <div class="elementor-widget-container">
963 + <h5 class="elementor-heading-title elementor-size-default">Featured</h5> </div>
964 + </div>
965 + </div>
966 + </div>
967 + </div>
968 + </section>
969 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-23edf8cc elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="23edf8cc" data-element_type="section" data-e-type="section">
970 + <div class="elementor-container elementor-column-gap-default">
971 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-6c601002" data-id="6c601002" data-element_type="column" data-e-type="column">
972 + <div class="elementor-widget-wrap elementor-element-populated">
973 + <div class="elementor-element elementor-element-6c3bb8a4 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="6c3bb8a4" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
974 + <div class="elementor-widget-container">
975 + <a class="elementor-cta" href="/partner-with-capreit/become-a-vendor/">
976 + <div class="elementor-cta__bg-wrapper">
977 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2024/03/Vendor-button-01-1-300x200.png);" role="img" aria-label="Vendor-button-01.png"></div>
978 + <div class="elementor-cta__bg-overlay"></div>
979 + </div>
980 + <div class="elementor-cta__content">
981 +
982 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
983 + Become a Vendor </h4>
984 +
985 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
986 + Interested in providing goods or services to our communities? </div>
987 +
988 + </div>
989 + </a>
990 + </div>
991 + </div>
992 + </div>
993 + </div>
994 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4d894f72" data-id="4d894f72" data-element_type="column" data-e-type="column">
995 + <div class="elementor-widget-wrap elementor-element-populated">
996 + <div class="elementor-element elementor-element-12dbd159 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="12dbd159" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
997 + <div class="elementor-widget-container">
998 + <a class="elementor-cta" href="/commercial/">
999 + <div class="elementor-cta__bg-wrapper">
1000 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2023/12/Commercial-Button-02-300x200.png);" role="img" aria-label="Commercial-Button-02.png"></div>
1001 + <div class="elementor-cta__bg-overlay"></div>
1002 + </div>
1003 + <div class="elementor-cta__content">
1004 +
1005 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
1006 + Commercial Leasing </h4>
1007 +
1008 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
1009 + Find the perfect space for your business </div>
1010 +
1011 + </div>
1012 + </a>
1013 + </div>
1014 + </div>
1015 + </div>
1016 + </div>
1017 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-401f3f2e" data-id="401f3f2e" data-element_type="column" data-e-type="column">
1018 + <div class="elementor-widget-wrap elementor-element-populated">
1019 + <div class="elementor-element elementor-element-7bcea2d0 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="7bcea2d0" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
1020 + <div class="elementor-widget-container">
1021 + <a class="elementor-cta" href="/partner-with-capreit/vendor-feedback/">
1022 + <div class="elementor-cta__bg-wrapper">
1023 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2023/12/fedback-01-1-300x200.jpg);" role="img" aria-label="fedback-01-1.jpg"></div>
1024 + <div class="elementor-cta__bg-overlay"></div>
1025 + </div>
1026 + <div class="elementor-cta__content">
1027 +
1028 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
1029 + Feedback for us? </h4>
1030 +
1031 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
1032 + Confidential Vendor Complaint Process </div>
1033 +
1034 + </div>
1035 + </a>
1036 + </div>
1037 + </div>
1038 + </div>
1039 + </div>
1040 + </div>
1041 + </section>
1042 + </div>
1043 + </div>
1044 + </div>
1045 + </section>
1046 + </div>
1047 + </div>
1048 + </div>
1049 + <div class="header-sub" id="navigation-partnerfr">
1050 + <div class="wrapper">
1051 + <style id="elementor-post-64027">.elementor-64027 .elementor-element.elementor-element-73223984{border-style:solid;border-width:1px 1px 1px 1px;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:1px 1px 1px 40px;z-index:99;}.elementor-64027 .elementor-element.elementor-element-73223984 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-64027 .elementor-element.elementor-element-5dfa35a7{padding:1px 1px 1px 1px;}.elementor-64027 .elementor-element.elementor-element-2cb329ad{padding:1px 1px 1px 1px;}.elementor-64027 .elementor-element.elementor-element-5340691c > .elementor-widget-container{background-color:#FFFCF7;}.elementor-64027 .elementor-element.elementor-element-5340691c .elementor-nav-menu .elementor-item{font-family:"Arial", Sans-serif;font-size:16px;font-weight:500;font-style:normal;}.elementor-64027 .elementor-element.elementor-element-5340691c .elementor-nav-menu--dropdown{background-color:#FFFCF7;}.elementor-64027 .elementor-element.elementor-element-5340691c .elementor-nav-menu--dropdown a:hover,
1052 + .elementor-64027 .elementor-element.elementor-element-5340691c .elementor-nav-menu--dropdown a:focus,
1053 + .elementor-64027 .elementor-element.elementor-element-5340691c .elementor-nav-menu--dropdown a.elementor-item-active,
1054 + .elementor-64027 .elementor-element.elementor-element-5340691c .elementor-nav-menu--dropdown a.highlighted{background-color:#FFFFFF;}.elementor-64027 .elementor-element.elementor-element-5340691c .elementor-nav-menu--dropdown a.elementor-item-active{color:#AF5341;}.elementor-64027 .elementor-element.elementor-element-5491f69a > .elementor-widget-container{background-color:#FFFCF7;}.elementor-64027 .elementor-element.elementor-element-5491f69a .elementor-nav-menu .elementor-item{font-family:"Arial", Sans-serif;font-size:16px;font-weight:500;}.elementor-64027 .elementor-element.elementor-element-5491f69a .elementor-nav-menu--dropdown{background-color:#FFFCF7;}.elementor-64027 .elementor-element.elementor-element-5491f69a .elementor-nav-menu--dropdown a:hover,
1055 + .elementor-64027 .elementor-element.elementor-element-5491f69a .elementor-nav-menu--dropdown a:focus,
1056 + .elementor-64027 .elementor-element.elementor-element-5491f69a .elementor-nav-menu--dropdown a.elementor-item-active,
1057 + .elementor-64027 .elementor-element.elementor-element-5491f69a .elementor-nav-menu--dropdown a.highlighted{background-color:#FFFFFF;}.elementor-64027 .elementor-element.elementor-element-5491f69a .elementor-nav-menu--dropdown a.elementor-item-active{color:#AF5341;}.elementor-64027 .elementor-element.elementor-element-1e3dfeb5{padding:1px 1px 1px 1px;}.elementor-64027 .elementor-element.elementor-element-75cff038 > .elementor-widget-container{padding:1px 1px 1px 1px;}.elementor-64027 .elementor-element.elementor-element-75cff038 .elementor-heading-title{font-family:"Arial", Sans-serif;font-weight:bold;}.elementor-64027 .elementor-element.elementor-element-1d19e2c7{padding:1px 1px 1px 1px;}.elementor-64027 .elementor-element.elementor-element-fc9f546 .elementor-cta .elementor-cta__bg, .elementor-64027 .elementor-element.elementor-element-fc9f546 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-64027 .elementor-element.elementor-element-fc9f546 .elementor-cta__content{text-align:center;}.elementor-64027 .elementor-element.elementor-element-fc9f546 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-64027 .elementor-element.elementor-element-f739425 .elementor-cta .elementor-cta__bg, .elementor-64027 .elementor-element.elementor-element-f739425 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-64027 .elementor-element.elementor-element-f739425 .elementor-cta__content{text-align:center;}.elementor-64027 .elementor-element.elementor-element-f739425 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-64027 .elementor-element.elementor-element-326f244 .elementor-cta .elementor-cta__bg, .elementor-64027 .elementor-element.elementor-element-326f244 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-64027 .elementor-element.elementor-element-326f244 .elementor-cta__content{text-align:center;}.elementor-64027 .elementor-element.elementor-element-326f244 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}@media(min-width:768px){.elementor-64027 .elementor-element.elementor-element-446ec180{width:50.134%;}.elementor-64027 .elementor-element.elementor-element-5c8911ab{width:49.866%;}}</style> <div data-elementor-type="section" data-elementor-id="64027" class="elementor elementor-64027" data-elementor-post-type="elementor_library">
1058 + <section class="elementor-section elementor-top-section elementor-element elementor-element-73223984 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="73223984" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
1059 + <div class="elementor-container elementor-column-gap-default">
1060 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-446ec180" data-id="446ec180" data-element_type="column" data-e-type="column">
1061 + <div class="elementor-widget-wrap elementor-element-populated">
1062 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-5dfa35a7 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5dfa35a7" data-element_type="section" data-e-type="section">
1063 + <div class="elementor-container elementor-column-gap-default">
1064 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-354a0545" data-id="354a0545" data-element_type="column" data-e-type="column">
1065 + <div class="elementor-widget-wrap elementor-element-populated">
1066 + <div class="elementor-element elementor-element-52e25c65 elementor-widget elementor-widget-heading" data-id="52e25c65" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
1067 + <div class="elementor-widget-container">
1068 + <h5 class="elementor-heading-title elementor-size-default">Collaborer avec CAPREIT </h5> </div>
1069 + </div>
1070 + </div>
1071 + </div>
1072 + </div>
1073 + </section>
1074 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-2cb329ad elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2cb329ad" data-element_type="section" data-e-type="section">
1075 + <div class="elementor-container elementor-column-gap-default">
1076 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-4dd35f99" data-id="4dd35f99" data-element_type="column" data-e-type="column">
1077 + <div class="elementor-widget-wrap elementor-element-populated">
1078 + <div class="elementor-element elementor-element-5340691c elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="5340691c" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&quot;,&quot;library&quot;:&quot;&quot;}}" data-widget_type="nav-menu.default">
1079 + <div class="elementor-widget-container">
1080 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-none">
1081 + <ul id="menu-1-5340691c" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68515"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/devenir-un-fournisseur/" class="elementor-item">Devenir un fournisseur</a></li>
1082 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-72490"><a href="https://www.capreit.ca/code-de-conduite-des-fournisseurs" class="elementor-item">Code de conduite des fournisseurs de CAPREIT</a></li>
1083 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68514"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/" class="elementor-item">Collaborer avec CAPREIT​</a></li>
1084 +</ul> </nav>
1085 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
1086 + <ul id="menu-2-5340691c" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68515"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/devenir-un-fournisseur/" class="elementor-item" tabindex="-1">Devenir un fournisseur</a></li>
1087 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-72490"><a href="https://www.capreit.ca/code-de-conduite-des-fournisseurs" class="elementor-item" tabindex="-1">Code de conduite des fournisseurs de CAPREIT</a></li>
1088 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68514"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/" class="elementor-item" tabindex="-1">Collaborer avec CAPREIT​</a></li>
1089 +</ul> </nav>
1090 + </div>
1091 + </div>
1092 + </div>
1093 + </div>
1094 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7b3f8d5c" data-id="7b3f8d5c" data-element_type="column" data-e-type="column">
1095 + <div class="elementor-widget-wrap elementor-element-populated">
1096 + <div class="elementor-element elementor-element-5491f69a elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="5491f69a" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
1097 + <div class="elementor-widget-container">
1098 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
1099 + <ul id="menu-1-5491f69a" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68516"><a href="https://www.capreit.ca/fr/commercial/" class="elementor-item">Commercial</a></li>
1100 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68517"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/revenus-accessoires-et-partenariats-daffaires/" class="elementor-item">Revenus accessoires et partenariats d’affaires</a></li>
1101 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68518"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/partager-vos-commentaires/" class="elementor-item">Partager vos commentaires</a></li>
1102 +</ul> </nav>
1103 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
1104 + <ul id="menu-2-5491f69a" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68516"><a href="https://www.capreit.ca/fr/commercial/" class="elementor-item" tabindex="-1">Commercial</a></li>
1105 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68517"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/revenus-accessoires-et-partenariats-daffaires/" class="elementor-item" tabindex="-1">Revenus accessoires et partenariats d’affaires</a></li>
1106 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68518"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/partager-vos-commentaires/" class="elementor-item" tabindex="-1">Partager vos commentaires</a></li>
1107 +</ul> </nav>
1108 + </div>
1109 + </div>
1110 + </div>
1111 + </div>
1112 + </div>
1113 + </section>
1114 + </div>
1115 + </div>
1116 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-5c8911ab" data-id="5c8911ab" data-element_type="column" data-e-type="column">
1117 + <div class="elementor-widget-wrap elementor-element-populated">
1118 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-1e3dfeb5 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="1e3dfeb5" data-element_type="section" data-e-type="section">
1119 + <div class="elementor-container elementor-column-gap-default">
1120 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-43fb11d2" data-id="43fb11d2" data-element_type="column" data-e-type="column">
1121 + <div class="elementor-widget-wrap elementor-element-populated">
1122 + <div class="elementor-element elementor-element-75cff038 elementor-widget elementor-widget-heading" data-id="75cff038" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
1123 + <div class="elementor-widget-container">
1124 + <h5 class="elementor-heading-title elementor-size-default">EN VEDETTE</h5> </div>
1125 + </div>
1126 + </div>
1127 + </div>
1128 + </div>
1129 + </section>
1130 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-1d19e2c7 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="1d19e2c7" data-element_type="section" data-e-type="section">
1131 + <div class="elementor-container elementor-column-gap-default">
1132 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-6f5ffde2" data-id="6f5ffde2" data-element_type="column" data-e-type="column">
1133 + <div class="elementor-widget-wrap elementor-element-populated">
1134 + <div class="elementor-element elementor-element-fc9f546 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="fc9f546" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
1135 + <div class="elementor-widget-container">
1136 + <a class="elementor-cta" href="https://www.capreit.ca/fr/collaborer-avec-capreit/devenir-un-fournisseur/">
1137 + <div class="elementor-cta__bg-wrapper">
1138 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2024/03/Vendor-button-01-1-300x200.png);" role="img" aria-label="Vendor-button-01.png"></div>
1139 + <div class="elementor-cta__bg-overlay"></div>
1140 + </div>
1141 + <div class="elementor-cta__content">
1142 +
1143 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
1144 + Devenir fournisseur </h4>
1145 +
1146 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
1147 + Intéressés à fournir des biens ou des services à nos communautés? </div>
1148 +
1149 + </div>
1150 + </a>
1151 + </div>
1152 + </div>
1153 + </div>
1154 + </div>
1155 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-1a1af82e" data-id="1a1af82e" data-element_type="column" data-e-type="column">
1156 + <div class="elementor-widget-wrap elementor-element-populated">
1157 + <div class="elementor-element elementor-element-f739425 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="f739425" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
1158 + <div class="elementor-widget-container">
1159 + <a class="elementor-cta" href="https://www.capreit.ca/fr/commercial/">
1160 + <div class="elementor-cta__bg-wrapper">
1161 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2023/12/Commercial-Button-02-300x200.png);" role="img" aria-label="Commercial-Button-02.png"></div>
1162 + <div class="elementor-cta__bg-overlay"></div>
1163 + </div>
1164 + <div class="elementor-cta__content">
1165 +
1166 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
1167 + Location commerciale </h4>
1168 +
1169 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
1170 + Trouvez l’espace parfait pour votre entreprise </div>
1171 +
1172 + </div>
1173 + </a>
1174 + </div>
1175 + </div>
1176 + </div>
1177 + </div>
1178 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-24f7917d" data-id="24f7917d" data-element_type="column" data-e-type="column">
1179 + <div class="elementor-widget-wrap elementor-element-populated">
1180 + <div class="elementor-element elementor-element-326f244 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="326f244" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
1181 + <div class="elementor-widget-container">
1182 + <a class="elementor-cta" href="https://www.capreit.ca/fr/collaborer-avec-capreit/partager-vos-commentaires/">
1183 + <div class="elementor-cta__bg-wrapper">
1184 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2023/12/fedback-01-1-300x200.jpg);" role="img" aria-label="fedback-01-1.jpg"></div>
1185 + <div class="elementor-cta__bg-overlay"></div>
1186 + </div>
1187 + <div class="elementor-cta__content">
1188 +
1189 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
1190 + Des commentaires pour nous? </h4>
1191 +
1192 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
1193 + Processus confidentiel de plaintes de fournisseur </div>
1194 +
1195 + </div>
1196 + </a>
1197 + </div>
1198 + </div>
1199 + </div>
1200 + </div>
1201 + </div>
1202 + </section>
1203 + </div>
1204 + </div>
1205 + </div>
1206 + </section>
1207 + </div>
1208 + </div>
1209 + </div>
1210 +</header>
1211 + <main class="main" id="main">
1212 +
1213 +<div class="property-header" id="property-header" data-id="82397">
1214 + <div class="wrapper">
1215 + <div class="property-main-menu">
1216 + <div class="property-main-menu-logo">
1217 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-propertydetail-mapmarker.svg"
1218 + alt="">
1219 + <a href="/fr/appartements-a-louer/montreal-qc/">Montréal</a>
1220 + <span class="spacer">|</span>
1221 + <a href="/fr/appartements-a-louer/bd-rene-levesque-e-r-atateken-montreal-qc/">Bd René-Lévesque E &amp; R. Atateken</a>
1222 + </div>
1223 + <div class="property-main-menu-links">
1224 + <ul class="property-main-menu-links-list">
1225 + <li>
1226 + <div class="icon icon-heart"></div>
1227 + <button class="property-main-menu-toggle" data-overlay="list">
1228 + Voir ma liste </button>
1229 + </li>
1230 + <li>
1231 + <a class="property-main-menu-search button-large" href="/fr/appartements-a-louer/">
1232 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-propertydetail-search.svg"
1233 + alt="">
1234 + Chercher Unités à louer </a>
1235 + </li>
1236 + </ul>
1237 + </div>
1238 + </div>
1239 + </div>
1240 +</div>
1241 +
1242 +<div class="wrapper">
1243 +
1244 + <section class="property-hero">
1245 + <div class="property-hero-intro">
1246 + <div class="property-hero-primary">
1247 + <div class="property-hero-primary-image">
1248 + <img src="https://www.capreit.ca/wp-content/uploads/2021/09/1-Month-Rent-Free-BIL-2.jpg"
1249 + alt="Glö2 Apartments"
1250 + data-overlay="photos"
1251 + data-type="image"
1252 + data-video-id="">
1253 + </div>
1254 + <div class="property-hero-primary-logo">
1255 + Appartements Glö2
1256 + </div>
1257 + <ul class="property-hero-primary-features">
1258 + <li>
1259 + <a href="#incentives" class="button-small">
1260 + Incitatifs exclusifs
1261 + </a>
1262 + </li>
1263 + </ul>
1264 + <ul class="property-hero-primary-links">
1265 + <li>
1266 + <button class="property-hero-primary-links-tour button-small"
1267 + data-overlay="tour">
1268 + Tour virtuel </button>
1269 + </li>
1270 + <li>
1271 + <button class="property-hero-primary-links-photos button-small"
1272 + data-overlay="photos">
1273 + Voir la Galerie </button>
1274 + </li>
1275 + </ul>
1276 + </div>
1277 + <div class="property-hero-secondary">
1278 + <ul class="property-hero-secondary-images">
1279 + <li class="property-hero-secondary-images-item">
1280 + <img src="https://www.capreit.ca/wp-content/uploads/2025/04/Glo2-Montreal-Exterior-1.png"
1281 + alt=""
1282 + data-overlay="photos"
1283 + data-index="1"
1284 + data-type="image"
1285 + data-video-id="">
1286 + </li>
1287 + <li class="property-hero-secondary-images-item">
1288 + <img src="https://www.capreit.ca/wp-content/uploads/2025/04/Glo2-Montreal-Salon-2.png"
1289 + alt=""
1290 + data-overlay="photos"
1291 + data-index="2"
1292 + data-type="image"
1293 + data-video-id="">
1294 + </li>
1295 + <li class="property-hero-secondary-images-item">
1296 + <img src="https://www.capreit.ca/wp-content/uploads/2025/04/Glo2-Montreal-CaC.png"
1297 + alt=""
1298 + data-overlay="photos"
1299 + data-index="3"
1300 + data-type="image"
1301 + data-video-id="">
1302 + </li>
1303 + <li class="property-hero-secondary-images-item">
1304 + <img src="https://www.capreit.ca/wp-content/uploads/2025/04/Glo2-Montreal-Cuisine.png"
1305 + alt=""
1306 + data-overlay="photos"
1307 + data-index="4"
1308 + data-type="image"
1309 + data-video-id="">
1310 + </li>
1311 + </ul>
1312 + </div>
1313 + </div>
1314 + <div class="property-hero-details"
1315 +
1316 + >
1317 + <div class="property-hero-details-address">
1318 + <div class="property-hero-details-address-wrapper">
1319 + <h1 class="property-hero-details-address-title"
1320 + >
1321 + Appartements Glö2
1322 + </h1>
1323 + <ul class="property-hero-details-share">
1324 + <li>
1325 + <button id="my-list-82397" class="property-hero-details-share-item icon" onclick="window.toggleMyList(82397);">
1326 + Ajouter à ma liste </button>
1327 + </li>
1328 + <li>
1329 + <button class="property-hero-details-share-item icon icon-share"
1330 + data-share="toggle"
1331 + data-target="hero-details-share">
1332 + Partager </button>
1333 + </li>
1334 + </ul>
1335 + </div>
1336 + <div class="property-item-content-share" id="hero-details-share">
1337 + <div class="property-item-content-share-title">
1338 + Partager cette propriété
1339 + </div>
1340 + <ul class="property-item-content-share-list">
1341 + <li>
1342 + <button class="property-item-content-share-list-item"
1343 + data-share="facebook"
1344 + aria-label="Share via Facebook">
1345 + <div class="icon icon-share-facebook"></div>
1346 + </button>
1347 + </li>
1348 + <li>
1349 + <button class="property-item-content-share-list-item"
1350 + data-share="twitter"
1351 + data-text="Appartements Glö2"
1352 + aria-label="Share via Twitter">
1353 + <div class="icon icon-share-twitter"></div>
1354 + </button>
1355 + </li>
1356 + <li>
1357 + <button class="property-item-content-share-list-item"
1358 + data-share="linkedin"
1359 + data-text="Appartements Glö2"
1360 + aria-label="Share via LinkedIn">
1361 + <div class="icon icon-share-linkedin"></div>
1362 + </button>
1363 + </li>
1364 + <li>
1365 + <button class="property-item-content-share-list-item"
1366 + data-share="email"
1367 + data-text="Appartements Glö2"
1368 + aria-label="Share via E-Mail">
1369 + <div class="icon icon-share-email"></div>
1370 + </button>
1371 + </li>
1372 + <li>
1373 + <button class="property-item-content-share-list-item"
1374 + data-share="sms"
1375 + aria-label="Share via SMS">
1376 + <div class="icon icon-share-sms"></div>
1377 + </button>
1378 + </li>
1379 + </ul>
1380 + <button class="property-item-content-share-close" data-share="close"
1381 + data-target="hero-details-share">
1382 + Close
1383 + </button>
1384 + </div>
1385 + <div class="property-hero-details-address-street"
1386 +
1387 +
1388 + >
1389 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-propertydetail-mapmarker.svg"
1390 + alt="">
1391 + 1050 Bd René-Lévesque E, Montréal, QC, H2L 2L6
1392 + </div>
1393 + </div>
1394 + <ul class="property-hero-details-links">
1395 + <li>
1396 + <a class="button-large" target="_blank" href="https://book.glo2-montreal.ca/">
1397 + Réserver une visite </a>
1398 + </li>
1399 + <li>
1400 + <a class="button-link button-floorplans" target="_blank" href="https://www.capreit.ca/wp-content/uploads/2025/04/Glo2-all-floorplans-web.pdf">
1401 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-propertydetail-floorplans.svg"
1402 + alt="">
1403 + Voir les plans* </a><br>
1404 + </li>
1405 + </ul>
1406 + <div class="property-hero-details-office"
1407 + data-loaded="true">
1408 + <h2>
1409 + Contacter le bureau de location </h2>
1410 + <div class="property-hero-details-office-address">
1411 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-propertydetail-mapmarker.svg"
1412 + alt="">
1413 + 1050 Bd René-Lévesque E, Montréal , QC, H2L 2L6
1414 + </div>
1415 + <div class="property-hero-details-office-hours">
1416 +
1417 + Lun - Ven : 9h00-17h00 <br />
1418 +Samedi : Fermé <br />
1419 +Dimanche : Fermé
1420 + </div>
1421 + </div>
1422 + <ul class="property-hero-details-contact">
1423 + <li>
1424 + <a href="tel:514-556-3575">
1425 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-propertydetail-phone.svg"
1426 + alt="">
1427 + 514-556-3575
1428 + </a>
1429 + </li>
1430 + <li>
1431 + <a target="_blank" href="./inquiry-form/">
1432 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-propertydetail-question.svg"
1433 + alt="">
1434 + Contactez-nous </a>
1435 + </li>
1436 + </ul>
1437 + </div>
1438 + </section>
1439 +
1440 + <div class="property-intro">
1441 + <div class="property-intro-logo">
1442 + <img src="https://www.capreit.ca/wp-content/uploads/2025/04/header-logo-Glo2-v3-e1744282555271.png" alt="">
1443 + </div>
1444 + <div class="property-intro-content">
1445 + <p><strong>Au Glö2, au cœur de Ville-Marie à Montréal, votre vie devient une œuvre d’art.</strong> Chaque appartement est une toile qui n’attend que votre touche personnelle. Entourés par l’énergie du centre-ville, ces espaces offrent la toile de fond parfaite pour votre style de vie unique. Les appartements du Glö2 sont offerts en plusieurs modèles, allant du studio aux options à 3 chambres, vous donnant ainsi une variété de choix pour convenir à votre style de vie.</p>
1446 +
1447 + </div>
1448 + </div>
1449 +
1450 + <section class="property-options">
1451 +
1452 + <div class="property-options-header">
1453 + <h2 class="property-options-header-heading">
1454 + Vos options </h2>
1455 + <ul class="property-options-header-list">
1456 + <li>
1457 + Toutes les unités:
1458 + </li>
1459 + <li>
1460 + <div class="icon icon-dishwasher-included"></div>
1461 + Lave-vaisselle
1462 + </li>
1463 + <li>
1464 + <div class="icon icon-laundry-in-unit"></div>
1465 + Coin-buanderie dans l’unité
1466 + </li>
1467 + <li>
1468 + <div class="icon icon-floor-to-ceiling-windows"></div>
1469 + Fenêtres du sol au plafond
1470 + </li>
1471 + <li>
1472 + <div class="icon icon-central-ac"></div>
1473 + Climatisation centrale
1474 + </li>
1475 + <li>
1476 + <div class="icon icon-stone-countertops"></div>
1477 + Comptoirs en pierre
1478 + </li>
1479 + <li>
1480 + <div class="icon icon-high-ceilings"></div>
1481 + Plafonds hauts
1482 + </li>
1483 + <li>
1484 + <div class="icon icon-gym"></div>
1485 + Salle d&#039;entraînement
1486 + </li>
1487 + <li>
1488 + <div class="icon icon-rooftop-outdoor-patio"></div>
1489 + Terrasse sur le toit
1490 + </li>
1491 + <li>
1492 + <div class="icon icon-ensuite-bathroom"></div>
1493 + Salle de bain
1494 + </li>
1495 + <li>
1496 + <div class="icon icon-premium-flooring"></div>
1497 + Revêtement de sol haut de gamme
1498 + </li>
1499 + <li>
1500 + <div class="icon icon-balcony"></div>
1501 + Balcons privés
1502 + </li>
1503 + <li>
1504 + <div class="icon icon-private-terrace"></div>
1505 + Terrasse privée dans certains appartements
1506 + </li>
1507 + <li>
1508 + <div class="icon icon-microwave-included"></div>
1509 + Micro-ondes inclus*
1510 + </li>
1511 + <li>
1512 + <div class="icon icon-stove"></div>
1513 + Cuisinière incluse*
1514 + </li>
1515 + <li>
1516 + <div class="icon icon-fridge-included"></div>
1517 + Réfrigérateur inclus*
1518 + </li>
1519 + <li>
1520 + <div class="icon icon-bicycle-parking"></div>
1521 + Entrepôt pour vélos
1522 + </li>
1523 + <li>
1524 + <div class="icon icon-city-views"></div>
1525 + Vue sur la ville
1526 + </li>
1527 + <li>
1528 + <div class="icon icon-elevators"></div>
1529 + Ascenseurs
1530 + </li>
1531 + </ul>
1532 + </div>
1533 +
1534 + <ul class="property-options-list">
1535 +
1536 + <li class="property-options-list-item"
1537 + data-available="true">
1538 +
1539 +
1540 +
1541 + <div class="property-options-list-item-availability">
1542 + Immédiatement
1543 + </div>
1544 +
1545 + <div class="property-options-list-item-price">
1546 + Débutant à <b>1 480 $ - 1 555 $</b>
1547 + </div>
1548 +
1549 + <ul class="property-options-list-item-details">
1550 + <li class="property-options-item">
1551 + <div class="icon icon-bedroom"></div>
1552 + 1 1/2
1553 + </li>
1554 + <li class="property-options-item">
1555 + <div class="icon icon-floorplans"></div>
1556 +
1557 + <a target="_blank" href="https://www.capreit.ca/wp-content/uploads/2025/04/Glo2-bachelorsweb.pdf">
1558 +
1559 +
1560 + Jusqu’à 489 pi ca.*
1561 +
1562 +
1563 + </a>
1564 +
1565 + </li>
1566 + </ul>
1567 +
1568 + <ul class="property-options-list-item-cta">
1569 + <li>
1570 + <a class="button"
1571 + target="_blank"
1572 + href="./inquiry-form/1-1-2/">
1573 + Contactez-nous </a>
1574 + </li>
1575 + <li>
1576 + <a class="button"
1577 + target="_blank"
1578 + href="./application-form/1-1-2/">
1579 + Allez-y! </a>
1580 + </li>
1581 + </ul>
1582 +
1583 +
1584 + </li>
1585 + <li class="property-options-list-item"
1586 + data-available="true">
1587 +
1588 +
1589 +
1590 + <div class="property-options-list-item-availability">
1591 + 01 septembre 2026
1592 + </div>
1593 +
1594 + <div class="property-options-list-item-price">
1595 + Débutant à <b>1 750 $ - 1 885 $</b>
1596 + </div>
1597 +
1598 + <ul class="property-options-list-item-details">
1599 + <li class="property-options-item">
1600 + <div class="icon icon-bedroom"></div>
1601 + 3 1/2
1602 + </li>
1603 + <li class="property-options-item">
1604 + <div class="icon icon-floorplans"></div>
1605 +
1606 + <a target="_blank" href="https://www.capreit.ca/wp-content/uploads/2025/04/Glo2-1-bedrooms-web.pdf">
1607 +
1608 +
1609 + Jusqu’à 796 pi ca.*
1610 +
1611 +
1612 + </a>
1613 +
1614 + </li>
1615 + </ul>
1616 +
1617 + <ul class="property-options-list-item-cta">
1618 + <li>
1619 + <a class="button"
1620 + target="_blank"
1621 + href="./inquiry-form/3-1-2/">
1622 + Contactez-nous </a>
1623 + </li>
1624 + <li>
1625 + <a class="button"
1626 + target="_blank"
1627 + href="./application-form/3-1-2/">
1628 + Allez-y! </a>
1629 + </li>
1630 + </ul>
1631 +
1632 +
1633 + </li>
1634 + <li class="property-options-list-item"
1635 + data-available="true">
1636 +
1637 +
1638 +
1639 + <div class="property-options-list-item-availability">
1640 + Immédiatement
1641 + </div>
1642 +
1643 + <div class="property-options-list-item-price">
1644 + Débutant à <b>2 325 $</b>
1645 + </div>
1646 +
1647 + <ul class="property-options-list-item-details">
1648 + <li class="property-options-item">
1649 + <div class="icon icon-bedroom"></div>
1650 + 4 1/2
1651 + </li>
1652 + <li class="property-options-item">
1653 + <div class="icon icon-floorplans"></div>
1654 +
1655 + <a target="_blank" href="https://www.capreit.ca/wp-content/uploads/2025/04/Glo2-2-bedrooms-web.pdf">
1656 +
1657 +
1658 + Jusqu’à 821 pi ca.*
1659 +
1660 +
1661 + </a>
1662 +
1663 + </li>
1664 + </ul>
1665 +
1666 + <ul class="property-options-list-item-cta">
1667 + <li>
1668 + <a class="button"
1669 + target="_blank"
1670 + href="./inquiry-form/4-1-2/">
1671 + Contactez-nous </a>
1672 + </li>
1673 + <li>
1674 + <a class="button"
1675 + target="_blank"
1676 + href="./application-form/4-1-2/">
1677 + Allez-y! </a>
1678 + </li>
1679 + </ul>
1680 +
1681 +
1682 + </li>
1683 + <li class="property-options-list-item"
1684 + data-available="false">
1685 +
1686 +
1687 +
1688 + <div class="property-options-list-item-availability">
1689 + Aucune disponibilité
1690 + </div>
1691 +
1692 + <div class="property-options-list-item-price">
1693 + Rejoignez la liste d’attente </div>
1694 +
1695 + <ul class="property-options-list-item-details">
1696 + <li class="property-options-item">
1697 + <div class="icon icon-bedroom"></div>
1698 + 5 1/2
1699 + </li>
1700 + <li class="property-options-item">
1701 + <div class="icon icon-floorplans"></div>
1702 +
1703 + <a target="_blank" href="https://www.capreit.ca/wp-content/uploads/2025/04/Glo2-3-bedrooms-web.pdf">
1704 +
1705 +
1706 + Plans d&#039;étage*
1707 +
1708 +
1709 + </a>
1710 +
1711 + </li>
1712 + </ul>
1713 +
1714 + <ul class="property-options-list-item-cta">
1715 + <li>
1716 + <a class="button"
1717 + target="_blank"
1718 + href="./inquiry-form/5-1-2/">
1719 + Contactez-nous </a>
1720 + </li>
1721 + <li>
1722 + <a class="button"
1723 + target="_blank"
1724 + href="./wait-list-form/5-1-2/">
1725 + Liste d’attente </a>
1726 + </li>
1727 + </ul>
1728 +
1729 +
1730 + </li>
1731 +
1732 + <li aria-hidden="true">&nbsp;</li>
1733 +
1734 + </ul>
1735 +
1736 + <ul class="carousel-controls">
1737 + <li>
1738 + <button class="carousel-controls-item" data-direction="prev">
1739 + Previous
1740 + </button>
1741 + </li>
1742 + <li>
1743 + <button class="carousel-controls-item" data-direction="next">
1744 + Next
1745 + </button>
1746 + </li>
1747 + </ul>
1748 +
1749 + <div class="property-options-details">
1750 +
1751 + <div class="property-options-details-container">
1752 + <h3>
1753 + Caractéristiques de l’unité </h3>
1754 + <ul class="property-options-details-container-icons">
1755 + <li class="property-options-item">
1756 + <div class="icon icon-large icon-unit-dishwasher"></div>
1757 + Lave-vaisselle
1758 + </li>
1759 + <li class="property-options-item">
1760 + <div class="icon icon-large icon-unit-clotheswasher"></div>
1761 + Coin-buanderie dans l’unité
1762 + </li>
1763 + <li class="property-options-item">
1764 + <div class="icon icon-large icon-unit-counter"></div>
1765 + Comptoirs en pierre
1766 + </li>
1767 + <li class="property-options-item">
1768 + <div class="icon icon-large icon-unit-woodfloors"></div>
1769 + Revêtement de sol haut de gamme
1770 + </li>
1771 + <li class="property-options-item">
1772 + <div class="icon icon-large icon-unit-balcony"></div>
1773 + Balcons privés
1774 + </li>
1775 + <li class="property-options-item">
1776 + <div class="icon icon-large icon-unit-microwave"></div>
1777 + Micro-ondes inclus*
1778 + </li>
1779 + <li class="property-options-item">
1780 + <div class="icon icon-large icon-unit-oven"></div>
1781 + Cuisinière incluse*
1782 + </li>
1783 +
1784 + </ul>
1785 +
1786 + <div class="property-options-details-container-list">
1787 + <ul>
1788 + <li>Fenêtres du sol au plafond</li>
1789 + <li>Plafonds hauts</li>
1790 + <li>Salle de bain</li>
1791 + </ul>
1792 + <ul>
1793 + <li>Terrasse privée dans certains appartements</li>
1794 + <li>Réfrigérateur inclus*</li>
1795 + </ul>
1796 + </div>
1797 +
1798 + </div>
1799 +
1800 + <div class="property-options-details-container">
1801 + <h3>
1802 + Commodités de l'immeuble </h3>
1803 + <ul class="property-options-details-container-icons">
1804 + <li class="property-options-item">
1805 + <div class="icon icon-large icon-unit-airconditioning"></div>
1806 + Climatisation centrale
1807 + </li>
1808 + <li class="property-options-item">
1809 + <div class="icon icon-large icon-building-fitness"></div>
1810 + Salle d&#039;entraînement
1811 + </li>
1812 + <li class="property-options-item">
1813 + <div class="icon icon-large icon-building-rooftop"></div>
1814 + Terrasse sur le toit
1815 + </li>
1816 + <li class="property-options-item">
1817 + <div class="icon icon-large icon-building-bike-storage"></div>
1818 + Entrepôt pour vélos
1819 + </li>
1820 + <li class="property-options-item">
1821 + <div class="icon icon-large icon-building-elevator"></div>
1822 + Ascenseurs
1823 + </li>
1824 +
1825 + </ul>
1826 +
1827 + <div class="property-options-details-container-list">
1828 + <ul>
1829 + <li>Vue sur la ville</li>
1830 + </ul>
1831 + <ul>
1832 + </ul>
1833 + </div>
1834 + </div>
1835 +
1836 +
1837 + </div>
1838 +
1839 + <div class="property-options-details">
1840 +
1841 + <div class="property-options-details-container">
1842 + <h3>
1843 + Services publics, Politiques et Frais </h3>
1844 + <ul class="property-options-details-container-icons">
1845 + <li class="property-options-item">
1846 + <div class="icon icon-large icon-heat"></div>
1847 + Chauffage inclus
1848 + </li>
1849 + <li class="property-options-item">
1850 + <div class="icon icon-large icon-water"></div>
1851 + Eau inclus
1852 + </li>
1853 + <li class="property-options-item">
1854 + <div class="icon icon-large icon-hydro"></div>
1855 + Électricité inclus
1856 + </li>
1857 + <li class="property-options-item">
1858 + <div class="icon icon-large icon-storage"></div>
1859 + Entreposage*
1860 + </li>
1861 + <li class="property-options-item">
1862 + <div class="icon icon-large icon-parking"></div>
1863 + Stationnement*
1864 + </li>
1865 + </ul>
1866 +
1867 + <div class="property-options-details-container-list">
1868 + <ul>
1869 + <li>*Veuillez appeler pour le prix et la disponibilité du stationnement</li>
1870 + <li>*Veuillez appeler pour le prix et la disponibilité de l&#039;entreposage</li>
1871 + </ul>
1872 + <ul>
1873 + <li>Stationnement de rue</li>
1874 + <li>Stationnement disponible au prix de 200 $ par place par mois. Possibilité de louer jusqu&#039;à deux places.</li>
1875 + </ul>
1876 + </div>
1877 +
1878 + </div>
1879 +
1880 + <div class="property-options-details-container" id="incentives">
1881 + <h3>
1882 + Offres et Promotions </h3>
1883 + <div class="property-options-details-container-wrap">
1884 + <div id="incentive-102392">
1885 + <h4>Incitatifs exclusifs</h4>
1886 +
1887 + <p><img loading="lazy" decoding="async" class="alignnone size-medium wp-image-102393" src="https://www.capreit.ca/wp-content/uploads/2026/07/Exclusive-Incentives-FR-300x200.jpg" alt="" width="300" height="200" srcset="https://www.capreit.ca/wp-content/uploads/2026/07/Exclusive-Incentives-FR-300x200.jpg 300w, https://www.capreit.ca/wp-content/uploads/2026/07/Exclusive-Incentives-FR-1024x683.jpg 1024w, https://www.capreit.ca/wp-content/uploads/2026/07/Exclusive-Incentives-FR-768x512.jpg 768w, https://www.capreit.ca/wp-content/uploads/2026/07/Exclusive-Incentives-FR.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></p>
1888 +
1889 + <p>Des conditions s'appliquent. Offre disponible uniquement pour les nouveaux résidents.</p>
1890 + </div>
1891 + </div>
1892 + </div>
1893 +
1894 + </div>
1895 +
1896 + <div class="property-options-legal">
1897 + *Les prix, la disponibilité et les incitatifs sont sous réserve de modifications. Des conditions s'appliquent. *Superficie en pieds carrés, et les caractéristiques d’appartement sont sous réserve de modifications et de la disponibilité. *Les espaces de stationnement et d’entreposage sont sous réserve de la disponibilité. </div>
1898 +
1899 + </section>
1900 +
1901 +</div>
1902 +
1903 +<section class="property-features" data-component="tabs">
1904 +
1905 + <div class="wrapper">
1906 + <ul class="property-features-tabs" role="tablist"
1907 + aria-label="Building Features">
1908 + <li role="presentation">
1909 + <button class="property-features-tabs-item"
1910 + role="tab"
1911 + id="tab-features-location"
1912 + aria-selected="false"
1913 + aria-controls="tab-panel-features-location">
1914 + Lieu </button>
1915 + </li>
1916 + <li role="presentation">
1917 + <button class="property-features-tabs-item"
1918 + role="tab"
1919 + id="tab-features-amenities"
1920 + aria-selected="false"
1921 + aria-controls="tab-panel-features-amenities">
1922 + Caractéristiques de l'immeuble </button>
1923 + </li>
1924 + <li role="presentation">
1925 + <button class="property-features-tabs-item"
1926 + role="tab"
1927 + id="tab-features-neighbourhood"
1928 + aria-selected="false"
1929 + aria-controls="tab-panel-features-neighbourhood">
1930 + Quartier </button>
1931 + </li>
1932 + <li role="presentation">
1933 + <button class="property-features-tabs-item"
1934 + role="tab"
1935 + id="tab-features-faqs"
1936 + aria-selected="false"
1937 + aria-controls="tab-panel-features-faqs">
1938 + Questions fréquentes </button>
1939 + </li>
1940 + </ul>
1941 + </div>
1942 +
1943 + <div class="property-features-content">
1944 + <div class="wrapper">
1945 + <ul class="property-features-content-panels">
1946 +
1947 + <li class="property-features-content-panels-item"
1948 + id="tab-panel-features-location"
1949 + role="tabpanel"
1950 + aria-labelledby="tab-features-location"
1951 + tabindex="0"
1952 + hidden>
1953 +
1954 + <div class="property-features-content-panels-item-header">
1955 + <button class="property-features-content-panels-item-header-back">
1956 + Retour </button>
1957 + <h2>Lieu</h2>
1958 + </div>
1959 +
1960 + <div class="property-features-content-panels-item-scores">
1961 + <div class="property-features-content-panels-item-scores-wrapper">
1962 +
1963 +
1964 + <figure class="chart-score"
1965 + data-label="Indice de Marchabilité"
1966 + data-score="96"
1967 + data-animate>
1968 + <svg class="chart-score-circle"
1969 + role="img"
1970 + aria-labelledby="chart-score-label-01"
1971 + xmlns="http://www.w3.org/2000/svg">
1972 + <title>Indice de Marchabilité 96%</title>
1973 + <desc>Indice de Marchabilité 96%</desc>
1974 + <circle class="chart-score-background"/>
1975 + <circle class="chart-score-foreground"/>
1976 + </svg>
1977 + <figcaption class="chart-score-label" id="chart-score-label-01">
1978 + Indice de Marchabilité 96%.
1979 + </figcaption>
1980 + </figure>
1981 +
1982 +
1983 + <figure class="chart-score"
1984 + data-label="Indice de convivialité vélo"
1985 + data-score="97"
1986 + data-animate>
1987 + <svg class="chart-score-circle"
1988 + role="img"
1989 + aria-labelledby="chart-score-label-03"
1990 + xmlns="http://www.w3.org/2000/svg">
1991 + <title>Indice de convivialité vélo 97%</title>
1992 + <desc>Indice de convivialité vélo 97%</desc>
1993 + <circle class="chart-score-background"/>
1994 + <circle class="chart-score-foreground"/>
1995 + </svg>
1996 + <figcaption class="chart-score-label" id="chart-score-label-03">
1997 + Indice de convivialité vélo 97%.
1998 + </figcaption>
1999 + </figure>
2000 + </div>
2001 +
2002 + <a href="https://www.google.com/maps/dir/?api=1&destination=1050+Bd+Ren%C3%A9-L%C3%A9vesque+E+Montr%C3%A9al+QC+H2L+2L6" target="_blank" class="button-large">
2003 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-propertydetail-calculator.svg"
2004 + alt="Temps de déplacement">
2005 + Temps de déplacement </a>
2006 + </div>
2007 +
2008 + <div class="property-features-content-panels-item-map">
2009 + <div id="property-map"
2010 + data-latitude="45.516220496954"
2011 + data-longitude="-73.554649437469"
2012 + data-placesid="">
2013 + </div>
2014 + <a class="button"
2015 + href="/fr/appartements-a-louer/?latitude=45.516220496954&longitude=-73.554649437469"
2016 + rel="noopener">
2017 + Chercher des unités proches </a>
2018 + </div>
2019 +
2020 + <template id="property-infowindow">
2021 +
2022 + <div class='property-item infowindow'>
2023 + <div class='property-item-wrapper'>
2024 +
2025 + <div class='property-item-image'>
2026 + <img src='https://www.capreit.ca/wp-content/uploads/2021/09/1-Month-Rent-Free-BIL-2-300x200.jpg' alt='Appartements Glö2'>
2027 + </div>
2028 + <div class='property-item-content'>
2029 + <div>
2030 + <a class='property-item-content-title' href='https://www.capreit.ca/fr/appartements-a-louer/montreal-qc/appartements-glo2/'>
2031 + Appartements Glö2
2032 + </a>
2033 + <div class='property-item-content-address'>
2034 + 1050 Bd René-Lévesque E, Montréal, QC
2035 + </div>
2036 +
2037 + <div class='property-item-content-price'>
2038 + 1 480 $ - 2 325 $
2039 + </div>
2040 +
2041 + <div class='property-item-content-rooms'>
2042 + <span class='icon icon-bedroom'></span>
2043 + 1 1/2 - 5 1/2
2044 + </div>
2045 + </div>
2046 + </div>
2047 + </div>
2048 + </div>
2049 + </template>
2050 +
2051 + </li>
2052 +
2053 + <li class="property-features-content-panels-item"
2054 + id="tab-panel-features-amenities"
2055 + role="tabpanel"
2056 + aria-labelledby="tab-features-amenities"
2057 + tabindex="0"
2058 + hidden>
2059 +
2060 + <div class="property-features-content-panels-item-header">
2061 + <button class="property-features-content-panels-item-header-back">
2062 + Retour </button>
2063 + <h2>Caractéristiques de l'immeuble</h2>
2064 + </div>
2065 +
2066 + <div class="property-features-content-container">
2067 + <div class="property-features-content-container-left">
2068 + <div class="property-features-content-container-photo">
2069 + <img class="property-features-content-container-photo-img"
2070 + src="https://www.capreit.ca/wp-content/uploads/2025/04/Glo2-Montreal-Exterior-1.png"
2071 + alt="L'extérieur | Exterior "
2072 + data-overlay="photos"
2073 + data-index="2"
2074 + data-type="image"
2075 + data-video-id="">
2076 + </div>
2077 + </div>
2078 + <div class="property-features-content-container-right">
2079 + <h2>
2080 + Caractéristiques de l'immeuble </h2>
2081 + <div>
2082 + <p><strong>Nos équipements enrichissent votre expérience de vie, créant une tapisserie dynamique de bien-être et de vie artistique qui inspire et élève chaque instant.</strong></p>
2083 +<p>L’art du bien-être est à l’honneur : le <a href="https://www.capreit.ca/fr/transformer-votre-appartement-en-un-havre-de-paix-spacieux/">spacieux</a> centre de remise en forme devient votre atelier personnel pour vous sculpter une meilleure santé.</p>
2084 +<p>Montez sur le toit-terrasse, une galerie surélevée aux vues époustouflantes, où chaque coucher de soleil transforme la ville en une œuvre d’art, parfaite pour des moments de réflexion et d’inspiration.</p>
2085 +<p>• Salle de sport<br />
2086 +• Terrasse sur le toit<br />
2087 +• Local à vélos<br />
2088 +• Climatisation centrale<br />
2089 +• Ascenseurs<br />
2090 +• Proche des principales <a href="https://www.capreit.ca/fr/les-8-principales-commodites-a-rechercher-lorsque-vous-louez-un-appartement/">commodités</a> et des transports en commun</p>
2091 +
2092 + </div>
2093 + </div>
2094 + </div>
2095 +
2096 + </li>
2097 +
2098 + <li class="property-features-content-panels-item"
2099 + id="tab-panel-features-neighbourhood"
2100 + role="tabpanel"
2101 + aria-labelledby="tab-features-neighbourhood"
2102 + tabindex="0"
2103 + hidden>
2104 +
2105 + <div class="property-features-content-panels-item-header">
2106 + <button class="property-features-content-panels-item-header-back">
2107 + Retour </button>
2108 + <h2>Quartier</h2>
2109 + </div>
2110 +
2111 + <div class="property-features-content-container">
2112 + <div class="property-features-content-container-left">
2113 + <div class="property-features-content-container-photo">
2114 + <img class="property-features-content-container-photo-img"
2115 + src="https://www.capreit.ca/wp-content/uploads/2025/04/Glo2-Montreal-Salon-2.png"
2116 + alt="La salle à manger | Dining room"
2117 + data-overlay="photos"
2118 + data-index="3"
2119 + data-type="image"
2120 + data-video-id="">
2121 + </div>
2122 + </div>
2123 + <div class="property-features-content-container-right">
2124 + <h2>
2125 + Faites connaissance avec le quartier </h2>
2126 + <div><p>Montréal est l’une des villes les plus dynamiques du Canada. Elle se distingue par son riche patrimoine et son énergie cosmopolite. Aujourd’hui, Montréal prospère en tant que métropole moderne, mêlant ses racines historiques à un présent vibrant. Promenez-vous dans la ville pour apprécier son art, sa culture et ses magnifiques espaces extérieurs.</p>
2127 +<p>&nbsp;</p>
2128 +<p>La scène culturelle vibrante de Montréal est à votre porte &#8211; les citoyens et citoyennes peuvent profiter de festivals de renommée mondiale, dîner dans les meilleurs restaurants et explorer des musées fascinants dans le cadre de leur vie quotidienne. Avec un accès facile aux expériences culturelles, sociales et extérieures de Montréal, vous êtes libre de peindre vos journées avec les couleurs de la ville tout en profitant du confort d’un espace conçu spécialement pour vous.</p>
2129 +<p>&nbsp;</p>
2130 +<p>Au Glö2, vous êtes au carrefour de deux des quartiers les plus animés de Montréal. À quelques pas du centre 2SLGBTQI+, le village est connu pour ses rues colorées, ses cafés branchés et sa vie nocturne éclectique. Les quartiers voisins notables comprennent <a href="https://www.capreit.ca/fr/neighbourhood/cote-saint-luc/">Le Côte-Saint-Luc</a> et <a href="https://www.capreit.ca/fr/neighbourhood/cote-des-neiges-montreal/">Côte-des-Neiges</a>, offrant à la population une variété d’options pour les repas, le magasinage et les divertissements.<br />
2131 +Vous pouvez également vous promener le long du pittoresque fleuve Saint-Laurent, qui se trouve à une courte distance, idéal pour profiter de l’atmosphère vibrante de Montréal. Découvrez les attractions locales et trouvez votre lieu de prédilection dans ce quartier dynamique.</p>
2132 +<p>&nbsp;</p>
2133 +<p>• L’Olympia (4 min à pied)<br />
2134 +• Le Quartier latin (14 min à pied)<br />
2135 +• Vieux-Port (19 min à pied)<br />
2136 +• Place des Arts (La Maison Symphonique, Théâtre Maisonneuve) (7 min de route)<br />
2137 +• CHUM (Centre hospitalier de l’Université de Montréal) (8 min à pied)<br />
2138 +• La Ronde (8 min en voiture)<br />
2139 +• Île Notre-Dame (12 min en voiture)<br />
2140 +• Marché Bonsecours (5 min en voiture)</p>
2141 +</div>
2142 +
2143 +
2144 + </div>
2145 + </div>
2146 +
2147 + </li>
2148 +
2149 + <li class="property-features-content-panels-item"
2150 + id="tab-panel-features-faqs"
2151 + role="tabpanel"
2152 + aria-labelledby="tab-features-faqs"
2153 + tabindex="0"
2154 + hidden>
2155 +
2156 + <div class="property-features-content-panels-item-header">
2157 + <button class="property-features-content-panels-item-header-back">
2158 + Retour </button>
2159 + <h2>Questions fréquentes</h2>
2160 + </div>
2161 +
2162 + <div class="property-features-content-container">
2163 + <div class="property-features-content-container-left">
2164 + <div class="property-features-content-container-photo">
2165 + <img class="property-features-content-container-photo-img"
2166 + src="https://www.capreit.ca/wp-content/uploads/2025/04/Glo2-Montreal-CaC.png"
2167 + alt="La chambre à coucher | Bedroom"
2168 + data-overlay="photos"
2169 + data-index="1"
2170 + data-type="image"
2171 + data-video-id="">
2172 + </div>
2173 + </div>
2174 + <div class="property-features-content-container-right">
2175 + <h2>
2176 + Questions fréquentes </h2>
2177 + <ul>
2178 + <li>
2179 + <a href="https://www.capreit.ca/fr/faq/politique-relative-aux-animaux-dassistance/">
2180 + Politique relative aux animaux d’assistance
2181 + </a>
2182 + </li>
2183 + <li>
2184 + <a href="https://www.capreit.ca/fr/faq/protegez-vous-contre-les-escroqueries-et-les-fraudes/">
2185 + Protégez-vous contre les escroqueries et les fraudes
2186 + </a>
2187 + </li>
2188 + <li>
2189 + <a href="https://www.capreit.ca/fr/faq/comment-payer-le-loyer/">
2190 + Comment payer le loyer?
2191 + </a>
2192 + </li>
2193 + </ul>
2194 + <h3>
2195 + Vous avez d’autres questions? </h3>
2196 + <div class="property-options-details-faq-other">
2197 + <a href="/frequently-asked-questions/">
2198 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-propertydetail-question.svg"
2199 + alt="">
2200 + Vérifiez nos FAQ sur la location. </a>
2201 + </div>
2202 + </div>
2203 + </div>
2204 +
2205 + </li>
2206 +
2207 + </ul>
2208 + </div>
2209 + </div>
2210 +
2211 +</section>
2212 +
2213 +<section class="property-quotes">
2214 + <div class="testimonial-carousel carousel" data-component="carousel">
2215 + <div class="wrapper">
2216 + <div class="carousel-wrapper">
2217 + <ul class="carousel-list" style="width: 200%;">
2218 + <li class="carousel-list-item" style="width: 50%;">
2219 + <figure class="carousel-list-item-figure">
2220 + <blockquote class="carousel-list-item-figure-quote">
2221 + <p>Qu’est-ce que je préfère dans ma communauté CAPREIT? J’ignore si c’est mon immense salon avec de magnifiques matériaux de finition originaux, la splendide vue que l’on a à partir du parc de l’immeuble, ou si c’est l’environnement historique et l’architecture. <span></span></p>
2222 + </blockquote>
2223 + <figcaption class="carousel-list-item-figure-cite">
2224 + <p>Britney</p>
2225 + </figcaption>
2226 + </figure>
2227 + </li>
2228 + </ul>
2229 + </div>
2230 + </div>
2231 +</div>
2232 +</section>
2233 +
2234 +
2235 +<div class="overlay" data-type="photos">
2236 + <div class="wrapper">
2237 + <h2>Galerie</h2>
2238 + <div class="overlay-photo"
2239 + style="background-image:url('https://www.capreit.ca/wp-content/uploads/2021/09/1-Month-Rent-Free-BIL-2.jpg')">
2240 + </div>
2241 + <div class="overlay-caption">
2242 + Glö2 Apartments
2243 + </div>
2244 + <ul class="overlay-thumbnails">
2245 + <li
2246 + data-overlay="photos"
2247 + data-src="https://www.capreit.ca/wp-content/uploads/2021/09/1-Month-Rent-Free-BIL-2.jpg"
2248 + data-description="Glö2 Apartments"
2249 + data-type="image"
2250 + data-video-id="">
2251 + </li>
2252 + <li
2253 + data-overlay="photos"
2254 + data-src="https://www.capreit.ca/wp-content/uploads/2025/04/Glo2-Montreal-Exterior-1.png"
2255 + data-description="L'extérieur | Exterior "
2256 + data-type="image"
2257 + data-video-id="">
2258 + </li>
2259 + <li
2260 + data-overlay="photos"
2261 + data-src="https://www.capreit.ca/wp-content/uploads/2025/04/Glo2-Montreal-Salon-2.png"
2262 + data-description="La salle à manger | Dining room"
2263 + data-type="image"
2264 + data-video-id="">
2265 + </li>
2266 + <li
2267 + data-overlay="photos"
2268 + data-src="https://www.capreit.ca/wp-content/uploads/2025/04/Glo2-Montreal-CaC.png"
2269 + data-description="La chambre à coucher | Bedroom"
2270 + data-type="image"
2271 + data-video-id="">
2272 + </li>
2273 + <li
2274 + data-overlay="photos"
2275 + data-src="https://www.capreit.ca/wp-content/uploads/2025/04/Glo2-Montreal-Cuisine.png"
2276 + data-description="La cuisine | Kitchen"
2277 + data-type="image"
2278 + data-video-id="">
2279 + </li>
2280 + <li
2281 + data-overlay="photos"
2282 + data-src="https://www.capreit.ca/wp-content/uploads/2025/04/Glo2-Montreal-SDB.png"
2283 + data-description="La salle de bain | Bathroom"
2284 + data-type="image"
2285 + data-video-id="">
2286 + </li>
2287 + <li
2288 + data-overlay="photos"
2289 + data-src="https://www.capreit.ca/wp-content/uploads/2025/04/Glo2-Montreal-SDB-Laundry.png"
2290 + data-description="Coin-buanderie dans l’unité | Laundry in unit"
2291 + data-type="image"
2292 + data-video-id="">
2293 + </li>
2294 + <li
2295 + data-overlay="photos"
2296 + data-src="https://www.capreit.ca/wp-content/uploads/2025/04/Glo2-Montreal-Interieur-2.png"
2297 + data-description="Des fenêtres du sol au plafond | Floor to ceiling windows"
2298 + data-type="image"
2299 + data-video-id="">
2300 + </li>
2301 + <li
2302 + data-overlay="photos"
2303 + data-src="https://www.capreit.ca/wp-content/uploads/2025/04/Glo2-Montreal-Rooftop.png"
2304 + data-description="La terrasse sur le toit | Rooftop terrace"
2305 + data-type="image"
2306 + data-video-id="">
2307 + </li>
2308 + <li
2309 + data-overlay="photos"
2310 + data-src="https://www.capreit.ca/wp-content/uploads/2025/04/Glo2-Montreal-Gym-3.png"
2311 + data-description="Salle d'entraînement | Fitness centre"
2312 + data-type="image"
2313 + data-video-id="">
2314 + </li>
2315 + <li
2316 + data-overlay="photos"
2317 + data-src="https://www.capreit.ca/wp-content/uploads/2025/04/Glo2-Montreal-Gym-2.png"
2318 + data-description="Salle d'entraînement | Fitness centre"
2319 + data-type="image"
2320 + data-video-id="">
2321 + </li>
2322 + </ul>
2323 + <ul class="overlay-controls" data-index="0">
2324 + <li>
2325 + <button class="overlay-controls-item icon icon-previous" data-direction="previous">
2326 + Précédent </button>
2327 + </li>
2328 + <li>
2329 + <button class="overlay-controls-item icon icon-next" data-direction="next">
2330 + Suivant </button>
2331 + </li>
2332 + </ul>
2333 + <button class="overlay-close icon icon-close">
2334 + Fermer </button>
2335 + </div>
2336 +</div>
2337 +
2338 +<div class="overlay" data-type="tour">
2339 + <div class="wrapper">
2340 + <div class="overlay-tour">
2341 + <iframe
2342 + src="https://3d.gryd.com/s/RUBLTJ"
2343 + title="Virtual Tour"
2344 + scrolling="no"
2345 + frameborder="0"
2346 + allowfullscreen>
2347 + </iframe>
2348 + <button class="overlay-close icon icon-close">
2349 + Fermer </button>
2350 + </div>
2351 + </div>
2352 +</div>
2353 +
2354 +<div class="overlay" data-type="list">
2355 + <div class="overlay-list">
2356 + <div class="overlay-list-header">
2357 + <div class="overlay-list-header-lockup">
2358 + <button class="overlay-close overlay-back icon icon-chevron-left">
2359 + Fermer </button>
2360 + <h2>
2361 + Vos offres sauvegardées </h2>
2362 + </div>
2363 + <div>
2364 + <button onclick="window.clearMyList();">Effacer tout</button>
2365 + </div>
2366 + </div>
2367 + <div class="overlay-list-results">
2368 + <ul class="overlay-list-results-wrapper">
2369 +
2370 + </ul>
2371 + </div>
2372 + </div>
2373 +</div>
2374 +
2375 + </main>
2376 + <footer class="footer">
2377 +
2378 + <div class="wrapper">
2379 +
2380 + <nav class="footer-navigation">
2381 + <div class="menu-global-footer-fr-container"><ul id="menu-global-footer-fr" class="nav"><li class="footer-navigation-listitem" role="presentation"> <a class="footer-navigation-item" id="global-footer-item-0-17003" href="/" role="menuitem" tabindex="0">Louer</a><div class="footer-sub-navigation" id="global-footer-0-17003" role="region" aria-labelledby="global-footer-item-0-17003"><ul class="footer-sub-navigation-wrapper" role="menu"><li class="footer-sub-navigation-listitem" role="presentation"> <a class="footer-sub-navigation-item" href="https://www.capreit.ca/fr/appartements-a-louer/" role="menuitem" tabindex="0">Trouver un appartement</a></li><li class="footer-sub-navigation-listitem" role="presentation"> <a class="footer-sub-navigation-item" href="https://www.capreit.ca/fr/logements-en-colocation/" role="menuitem" tabindex="0">Logements en colocation</a></li><li class="footer-sub-navigation-listitem" role="presentation"> <a class="footer-sub-navigation-item" href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" role="menuitem" tabindex="0">Pourquoi louer chez nous</a></li><li class="footer-sub-navigation-listitem" role="presentation"> <a class="footer-sub-navigation-item" href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/" role="menuitem" tabindex="0">Vivre chez CAPREIT</a></li></ul></div></li><li class="footer-navigation-listitem" role="presentation"> <a class="footer-navigation-item" href="https://www.capreit.ca/fr/collaborer-avec-capreit/" role="menuitem" tabindex="0">Collaborer avec CAPREIT​</a></li><li class="footer-navigation-listitem" role="presentation"> <a class="footer-navigation-item" href="https://www.capreit.ca/fr/louer/le-processus-de-location/" role="menuitem" tabindex="0">Le processus de location</a></li><li class="footer-navigation-listitem" role="presentation"> <a class="footer-navigation-item" id="global-footer-item-0-17006" href="/fr/a-propos/qui-nous-sommes/" role="menuitem" tabindex="0">À propos</a><div class="footer-sub-navigation" id="global-footer-0-17006" role="region" aria-labelledby="global-footer-item-0-17006"><ul class="footer-sub-navigation-wrapper" role="menu"><li class="footer-sub-navigation-listitem" role="presentation"> <a class="footer-sub-navigation-item" href="https://www.capreit.ca/fr/a-propos/qui-nous-sommes/" role="menuitem" tabindex="0">Qui nous sommes</a></li><li class="footer-sub-navigation-listitem" role="presentation"> <a class="footer-sub-navigation-item" href="https://www.capreit.ca/fr/a-propos/se-joindre-a-notre-equipe/" role="menuitem" tabindex="0">Se joindre à notre équipe</a></li><li class="footer-sub-navigation-listitem" role="presentation"> <a class="footer-sub-navigation-item" href="https://careers2-capreit.icims.com/jobs/intro" role="menuitem" tabindex="0">Voir les postes ouvertes</a></li><li class="footer-sub-navigation-listitem" role="presentation"> <a class="footer-sub-navigation-item" href="/fr/louer/vivre-chez-canadian-apartment-properties-reit/#nouvelles-capreit" role="menuitem" tabindex="0">Nouvelles CAPREIT</a></li><li class="footer-sub-navigation-listitem" role="presentation"> <a class="footer-sub-navigation-item" href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/" role="menuitem" tabindex="0">Notre blogue</a></li><li class="footer-sub-navigation-listitem" role="presentation"> <a class="footer-sub-navigation-item" href="https://www.capreit.ca/fr/nous-joindre/" role="menuitem" tabindex="0">Nous joindre</a></li></ul></div></li><li class="footer-navigation-listitem" role="presentation"> <a class="footer-navigation-item" id="global-footer-item-0-17009" href="#" role="menuitem" tabindex="0">International &#038; Commercial</a><div class="footer-sub-navigation" id="global-footer-0-17009" role="region" aria-labelledby="global-footer-item-0-17009"><ul class="footer-sub-navigation-wrapper" role="menu"><li class="footer-sub-navigation-listitem" role="presentation"> <a class="footer-sub-navigation-item" href="https://www.capreit.ca/fr/commercial/" role="menuitem" tabindex="0">Commercial</a></li></ul></div></li></ul></div>
2382 + </nav>
2383 +
2384 + <div class="footer-details">
2385 + <a class="footer-logo" href="https://www.capreit.ca/fr/">
2386 + Canadian Apartment Properties REIT
2387 + </a>
2388 + <h2>
2389 + Communiquez avec nous </h2>
2390 + <div>
2391 + <ul class="footer-share">
2392 + <li class="footer-share-item">
2393 + <a class="footer-share-item-link" target="_blank" rel="noopener"
2394 + href="https://www.facebook.com/CaprentQC">
2395 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-footer-facebook.svg"
2396 + alt="Facebook">
2397 + </a>
2398 + </li>
2399 + <li class="footer-share-item">
2400 + <a class="footer-share-item-link" target="_blank" rel="noopener"
2401 + href="https://www.instagram.com/caprentqc/">
2402 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-footer-instagram.svg"
2403 + alt="Instagram">
2404 + </a>
2405 + </li>
2406 + <li class="footer-share-item">
2407 + <a class="footer-share-item-link" target="_blank" rel="noopener"
2408 + href="https://twitter.com/CaprentQC">
2409 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-footer-twitter.svg"
2410 + alt="Twitter">
2411 + </a>
2412 + </li>
2413 + <li class="footer-share-item">
2414 + <a class="footer-share-item-link" target="_blank" rel="noopener"
2415 + href="https://www.linkedin.com/company/capreit/">
2416 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-footer-linkedin.svg"
2417 + alt="LinkedIn">
2418 + </a>
2419 + </li>
2420 + </ul>
2421 + </div>
2422 + </div>
2423 +
2424 + </div>
2425 +
2426 + <div class="footer-bottom wrapper">
2427 + <div class="footer-legal">
2428 + &copy; 2026 CAPREIT. Tous droits réservés. </div>
2429 + <ul class="footer-links">
2430 + <li class="footer-links-item">
2431 + <a href="/fr/accessibilite/">
2432 + Accessibilité </a>
2433 + </li>
2434 + <li class="footer-links-item">
2435 + <a href="/fr/politique-de-vie-privee/">
2436 + Politique de vie privée </a>
2437 + </li>
2438 + <li class="footer-links-item">
2439 + <a href="/fr/conditions-d-utilisation/">
2440 + Conditions d’utilisation </a>
2441 + </li>
2442 + <li class="footer-links-item">
2443 + <a href="/fr/politique-de-cookies/">
2444 + Politique d'utilisation des témoins </a>
2445 + </li>
2446 + </ul>
2447 + </div>
2448 +
2449 +</footer>
2450 + <script type="speculationrules">
2451 +{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/fr/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/capreit/resources/*","/fr/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
2452 +</script>
2453 + <script type="text/javascript">
2454 + (function() {
2455 + // Global page view and session tracking for UAEL Modal Popup feature
2456 + try {
2457 + // Session tracking: increment if this is a new session
2458 +
2459 + // Check if any popup on this page uses current page tracking
2460 + var hasCurrentPageTracking = false;
2461 + var currentPagePopups = [];
2462 + // Check all modal popups on this page for current page tracking
2463 + if (typeof jQuery !== 'undefined') {
2464 + jQuery('.uael-modal-parent-wrapper').each(function() {
2465 + var scope = jQuery(this).data('page-views-scope');
2466 + var enabled = jQuery(this).data('page-views-enabled');
2467 + var popupId = jQuery(this).attr('id').replace('-overlay', '');
2468 + if (enabled === 'yes' && scope === 'current') {
2469 + hasCurrentPageTracking = true;
2470 + currentPagePopups.push(popupId);
2471 + }
2472 + });
2473 + }
2474 + // Global tracking: ALWAYS increment if ANY popup on the site uses global tracking
2475 + // Current page tracking: increment per-page counters
2476 + if (hasCurrentPageTracking && currentPagePopups.length > 0) {
2477 + var currentUrl = window.location.href;
2478 + var urlKey = 'uael_page_views_' + btoa(currentUrl).replace(/[^a-zA-Z0-9]/g, '').substring(0, 50);
2479 + var currentPageViews = parseInt(localStorage.getItem(urlKey) || '0');
2480 + currentPageViews++;
2481 + localStorage.setItem(urlKey, currentPageViews.toString());
2482 + // Store URL mapping for each popup
2483 + for (var i = 0; i < currentPagePopups.length; i++) {
2484 + var popupUrlKey = 'uael_popup_' + currentPagePopups[i] + '_url_key';
2485 + localStorage.setItem(popupUrlKey, urlKey);
2486 + }
2487 + }
2488 + } catch (e) {
2489 + // Silently fail if localStorage is not available
2490 + }
2491 + })();
2492 + </script>
2493 + <div data-elementor-type="popup" data-elementor-id="74262" class="elementor elementor-74262 elementor-location-popup" data-elementor-settings="{&quot;open_selector&quot;:&quot;a[href=\&quot;#ir-link-popup\&quot;]&quot;,&quot;a11y_navigation&quot;:&quot;yes&quot;,&quot;triggers&quot;:[],&quot;timing&quot;:[]}" data-elementor-post-type="elementor_library">
2494 + <section class="elementor-section elementor-top-section elementor-element elementor-element-55b84f2 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="55b84f2" data-element_type="section" data-e-type="section">
2495 + <div class="elementor-container elementor-column-gap-default">
2496 + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5f53881e" data-id="5f53881e" data-element_type="column" data-e-type="column">
2497 + <div class="elementor-widget-wrap elementor-element-populated">
2498 + <div class="elementor-element elementor-element-6872faff elementor-widget elementor-widget-heading" data-id="6872faff" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
2499 + <div class="elementor-widget-container">
2500 + <h3 class="elementor-heading-title elementor-size-default">En cliquant sur ce lien, vous serez redirigé vers un site unilingue en anglais.</h3> </div>
2501 + </div>
2502 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-25ce557a elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="25ce557a" data-element_type="section" data-e-type="section">
2503 + <div class="elementor-container elementor-column-gap-default">
2504 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-ac2854f" data-id="ac2854f" data-element_type="column" data-e-type="column">
2505 + <div class="elementor-widget-wrap elementor-element-populated">
2506 + <div class="elementor-element elementor-element-62d6acf0 button-small elementor-widget elementor-widget-button" data-id="62d6acf0" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
2507 + <div class="elementor-widget-container">
2508 + <div class="elementor-button-wrapper">
2509 + <a class="elementor-button elementor-button-link elementor-size-sm" href="#elementor-action%3Aaction%3Dpopup%3Aclose%26settings%3DeyJkb19ub3Rfc2hvd19hZ2FpbiI6IiJ9">
2510 + <span class="elementor-button-content-wrapper">
2511 + <span class="elementor-button-text">Annuler</span>
2512 + </span>
2513 + </a>
2514 + </div>
2515 + </div>
2516 + </div>
2517 + </div>
2518 + </div>
2519 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-6f240ef1" data-id="6f240ef1" data-element_type="column" data-e-type="column">
2520 + <div class="elementor-widget-wrap elementor-element-populated">
2521 + <div class="elementor-element elementor-element-6e09c9c9 button-small elementor-widget elementor-widget-button" data-id="6e09c9c9" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
2522 + <div class="elementor-widget-container">
2523 + <div class="elementor-button-wrapper">
2524 + <a class="elementor-button elementor-button-link elementor-size-sm" href="https://ir.capreit.ca/ir-overview/default.aspx" target="_blank">
2525 + <span class="elementor-button-content-wrapper">
2526 + <span class="elementor-button-text">Procéder</span>
2527 + </span>
2528 + </a>
2529 + </div>
2530 + </div>
2531 + </div>
2532 + </div>
2533 + </div>
2534 + </div>
2535 + </section>
2536 + </div>
2537 + </div>
2538 + </div>
2539 + </section>
2540 + </div>
2541 + <script>
2542 + ( () => {
2543 + const lazyloadRunObserver = () => {
2544 + const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` );
2545 + const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => {
2546 + entries.forEach( ( entry ) => {
2547 + if ( entry.isIntersecting ) {
2548 + let lazyloadBackground = entry.target;
2549 + if( lazyloadBackground ) {
2550 + lazyloadBackground.classList.add( 'e-lazyloaded' );
2551 + }
2552 + lazyloadBackgroundObserver.unobserve( entry.target );
2553 + }
2554 + });
2555 + }, { rootMargin: '200px 0px 200px 0px' } );
2556 + lazyloadBackgrounds.forEach( ( lazyloadBackground ) => {
2557 + lazyloadBackgroundObserver.observe( lazyloadBackground );
2558 + } );
2559 + };
2560 + const events = [
2561 + 'DOMContentLoaded',
2562 + 'elementor/lazyload/observe',
2563 + ];
2564 + events.forEach( ( event ) => {
2565 + document.addEventListener( event, lazyloadRunObserver );
2566 + } );
2567 + } )();
2568 + </script>
2569 + <link rel='stylesheet' id='widget-nav-menu-css' href='https://www.capreit.ca/wp-content/plugins/elementor-pro/assets/css/widget-nav-menu.min.css?ver=4.2.1' type='text/css' media='all' />
2570 +<link rel='stylesheet' id='widget-call-to-action-css' href='https://www.capreit.ca/wp-content/plugins/elementor-pro/assets/css/widget-call-to-action.min.css?ver=4.2.1' type='text/css' media='all' />
2571 +<link rel='stylesheet' id='e-transitions-css' href='https://www.capreit.ca/wp-content/plugins/elementor-pro/assets/css/conditionals/transitions.min.css?ver=4.2.1' type='text/css' media='all' />
2572 +<link rel='stylesheet' id='elementor-icons-shared-0-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css?ver=5.15.3' type='text/css' media='all' />
2573 +<link rel='stylesheet' id='elementor-icons-fa-solid-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.min.css?ver=5.15.3' type='text/css' media='all' />
2574 +<script type="text/javascript" src="https://www.capreit.ca/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js?ver=4.2.1" id="elementor-webpack-runtime-js"></script>
2575 +<script type="text/javascript" src="https://www.capreit.ca/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=4.2.1" id="elementor-frontend-modules-js"></script>
2576 +<script type="text/javascript" src="https://www.capreit.ca/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3" id="jquery-ui-core-js"></script>
2577 +<script type="text/javascript" id="elementor-frontend-js-extra">
2578 +/* <![CDATA[ */
2579 +var uael_particles_script = {"uael_particles_url":"https://www.capreit.ca/wp-content/plugins/ultimate-elementor/assets/min-js/uael-particles.min.js","particles_url":"https://www.capreit.ca/wp-content/plugins/ultimate-elementor/assets/lib/particles/particles.min.js","snowflakes_image":"https://www.capreit.ca/wp-content/plugins/ultimate-elementor/assets/img/snowflake.svg","gift":"https://www.capreit.ca/wp-content/plugins/ultimate-elementor/assets/img/gift.png","tree":"https://www.capreit.ca/wp-content/plugins/ultimate-elementor/assets/img/tree.png","skull":"https://www.capreit.ca/wp-content/plugins/ultimate-elementor/assets/img/skull.png","ghost":"https://www.capreit.ca/wp-content/plugins/ultimate-elementor/assets/img/ghost.png","moon":"https://www.capreit.ca/wp-content/plugins/ultimate-elementor/assets/img/moon.png","bat":"https://www.capreit.ca/wp-content/plugins/ultimate-elementor/assets/img/bat.png","pumpkin":"https://www.capreit.ca/wp-content/plugins/ultimate-elementor/assets/img/pumpkin.png"};
2580 +//# sourceURL=elementor-frontend-js-extra
2581 +/* ]]> */
2582 +</script>
2583 +<script type="text/javascript" id="elementor-frontend-js-before">
2584 +/* <![CDATA[ */
2585 +var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Partager sur Facebook","shareOnX":"Share on X","pinIt":"L\u2019\u00e9pingler","download":"T\u00e9l\u00e9charger","downloadImage":"T\u00e9l\u00e9charger une image","fullscreen":"Plein \u00e9cran","zoom":"Zoom","share":"Partager","playVideo":"Lire la vid\u00e9o","previous":"Pr\u00e9c\u00e9dent","next":"Suivant","close":"Fermer","a11yCarouselPrevSlideMessage":"Diapositive pr\u00e9c\u00e9dente","a11yCarouselNextSlideMessage":"Diapositive suivante","a11yCarouselFirstSlideMessage":"Ceci est la premi\u00e8re diapositive","a11yCarouselLastSlideMessage":"Ceci est la derni\u00e8re diapositive","a11yCarouselPaginationBulletMessage":"Aller \u00e0 la diapositive"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Portrait mobile","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Paysage","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablette en mode portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablette en mode paysage","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Portable","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"\u00c9cran large","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":false},"version":"4.2.1","is_static":false,"experimentalFeatures":{"additional_custom_breakpoints":true,"e_panel_promotions":true,"theme_builder_v2":true,"global_classes_should_enforce_capabilities":true,"e_variables":true,"e_opt_in_v4_page":true,"e_components":true,"e_interactions":true,"e_widget_creation":true,"import-export-customization":true,"e_pro_atomic_form":true,"e_pro_collection_loop":true,"e_pro_variables":true,"e_pro_interactions":true},"urls":{"assets":"https:\/\/www.capreit.ca\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/www.capreit.ca\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/www.capreit.ca\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"4c1d708589","atomicFormsSendForm":"7c4241cea2"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":82397,"title":"Gl%C3%B62%20%7C%20Appartements%20haut%20de%20gamme%20%C3%A0%20louer%20%C3%A0%20Montr%C3%A9al","excerpt":"","featuredImage":"https:\/\/www.capreit.ca\/wp-content\/uploads\/2021\/09\/1-Month-Rent-Free-BIL-2-1024x683.jpg"}};
2586 +//# sourceURL=elementor-frontend-js-before
2587 +/* ]]> */
2588 +</script>
2589 +<script type="text/javascript" src="https://www.capreit.ca/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=4.2.1" id="elementor-frontend-js"></script>
2590 +<script type="text/javascript" id="elementor-frontend-js-after">
2591 +/* <![CDATA[ */
2592 +window.scope_array = [];
2593 + window.backend = 0;
2594 + jQuery.cachedScript = function( url, options ) {
2595 + // Allow user to set any option except for dataType, cache, and url.
2596 + options = jQuery.extend( options || {}, {
2597 + dataType: "script",
2598 + cache: true,
2599 + url: url
2600 + });
2601 + // Return the jqXHR object so we can chain callbacks.
2602 + return jQuery.ajax( options );
2603 + };
2604 + jQuery( window ).on( "elementor/frontend/init", function() {
2605 + elementorFrontend.hooks.addAction( "frontend/element_ready/global", function( $scope, $ ){
2606 + if ( "undefined" == typeof $scope ) {
2607 + return;
2608 + }
2609 + if ( $scope.hasClass( "uael-particle-yes" ) ) {
2610 + window.scope_array.push( $scope );
2611 + $scope.find(".uael-particle-wrapper").addClass("js-is-enabled");
2612 + }else{
2613 + return;
2614 + }
2615 + if(elementorFrontend.isEditMode() && $scope.find(".uael-particle-wrapper").hasClass("js-is-enabled") && window.backend == 0 ){
2616 + var uael_url = uael_particles_script.uael_particles_url;
2617 +
2618 + jQuery.cachedScript( uael_url );
2619 + window.backend = 1;
2620 + }else if(elementorFrontend.isEditMode()){
2621 + var uael_url = uael_particles_script.uael_particles_url;
2622 + jQuery.cachedScript( uael_url ).done(function(){
2623 + var flag = true;
2624 + });
2625 + }
2626 + });
2627 + });
2628 +
2629 + // Added both `document` and `window` event listeners to address issues where some users faced problems with the `document` event not triggering as expected.
2630 + // Define cachedScript globally to avoid redefining it.
2631 +
2632 + jQuery.cachedScript = function(url, options) {
2633 + options = jQuery.extend(options || {}, {
2634 + dataType: "script",
2635 + cache: true,
2636 + url: url
2637 + });
2638 + return jQuery.ajax(options); // Return the jqXHR object so we can chain callbacks
2639 + };
2640 +
2641 + let uael_particle_loaded = false; //flag to prevent multiple script loads.
2642 +
2643 + jQuery( document ).on( "ready elementor/popup/show", () => {
2644 + loadParticleScript();
2645 + });
2646 +
2647 + jQuery( window ).one( "elementor/frontend/init", () => {
2648 + if (!uael_particle_loaded) {
2649 + loadParticleScript();
2650 + }
2651 + });
2652 +
2653 + function loadParticleScript(){
2654 + // Use jQuery to check for the presence of the element
2655 + if (jQuery(".uael-particle-yes").length < 1) {
2656 + return;
2657 + }
2658 +
2659 + uael_particle_loaded = true;
2660 + var uael_url = uael_particles_script.uael_particles_url;
2661 + // Call the cachedScript function
2662 + jQuery.cachedScript(uael_url);
2663 + }
2664 +//# sourceURL=elementor-frontend-js-after
2665 +/* ]]> */
2666 +</script>
2667 +<script type="text/javascript" src="https://www.capreit.ca/wp-content/themes/capreit/dist/scripts/main_5feac275.js" id="sage/main.js-js"></script>
2668 +<script type="text/javascript" src="https://www.capreit.ca/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.min.js?ver=1.2.1" id="smartmenus-js"></script>
2669 +<script type="text/javascript" src="https://www.capreit.ca/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js?ver=4.2.1" id="elementor-pro-webpack-runtime-js"></script>
2670 +<script type="text/javascript" src="https://www.capreit.ca/wp-includes/js/dist/hooks.min.js?ver=dd5603f07f9220ed27f1" id="wp-hooks-js"></script>
2671 +<script type="text/javascript" src="https://www.capreit.ca/wp-includes/js/dist/i18n.min.js?ver=c26c3dc7bed366793375" id="wp-i18n-js"></script>
2672 +<script type="text/javascript" id="wp-i18n-js-after">
2673 +/* <![CDATA[ */
2674 +wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
2675 +//# sourceURL=wp-i18n-js-after
2676 +/* ]]> */
2677 +</script>
2678 +<script type="text/javascript" id="elementor-pro-frontend-js-before">
2679 +/* <![CDATA[ */
2680 +var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/www.capreit.ca\/wp-admin\/admin-ajax.php","nonce":"ded7905752","urls":{"assets":"https:\/\/www.capreit.ca\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/www.capreit.ca\/fr\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":true},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"fr_FR","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/www.capreit.ca\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}};
2681 +//# sourceURL=elementor-pro-frontend-js-before
2682 +/* ]]> */
2683 +</script>
2684 +<script type="text/javascript" src="https://www.capreit.ca/wp-content/plugins/elementor-pro/assets/js/frontend.min.js?ver=4.2.1" id="elementor-pro-frontend-js"></script>
2685 +<script type="text/javascript" src="https://www.capreit.ca/wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js?ver=4.2.1" id="pro-elements-handlers-js"></script>
2686 +<script> (function(){ var s = document.createElement('script'); var h = document.querySelector('head') || document.body; s.src = 'https://acsbapp.com/apps/app/dist/js/app.js'; s.async = true; s.onload = function(){ acsbJS.init({ statementLink : '', footerHtml : '', hideMobile : false, hideTrigger : false, disableBgProcess : false, language : 'en', position : 'left', leadColor : '#146ff8', triggerColor : '#af5341', triggerRadius : '50%', triggerPositionX : 'left', triggerPositionY : 'bottom', triggerIcon : 'people', triggerSize : 'medium', triggerOffsetX : 20, triggerOffsetY : 20, mobile : { triggerSize : 'small', triggerPositionX : 'left', triggerPositionY : 'bottom', triggerOffsetX : 10, triggerOffsetY : 10, triggerRadius : '50%' } }); }; h.appendChild(s); })(); </script>
2687 + <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyC9YibQpxYs70R0XJA7VAXx0eIm9cYcfEE&v=3&libraries=places&language=fr&callback=Function.prototype"></script>
2688 +</body>
2689 +</html>
2690 +
2691 +<!--
2692 +Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin
2693 +
2694 +Mise en cache de page à l’aide de Disk: Enhanced
2695 +
2696 +Served from: www.capreit.ca @ 2026-08-08 17:41:35 by W3 Total Cache
2697 +-->
\ No newline at end of file
added tests/fixtures/capreit/1bbf00ba7cbb88a5376f.html +2954 −0
@@ -0,0 +1,2954 @@
1 +<!doctype html>
2 +<html lang="fr">
3 +<head>
4 + <meta charset="utf-8">
5 + <meta http-equiv="x-ua-compatible" content="ie=edge">
6 + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
7 + <meta name="facebook-domain-verification" content="uu15rq8zjxxh0qtrav90ttd4jvq10g" />
8 + <title>Appartements Le Samuel-Holland | Ville de Québec, QC</title>
9 +<link rel="alternate" hreflang="en" href="https://www.capreit.ca/apartments-for-rent/quebec-city-qc/samuel-holland-apartments/" />
10 +<link rel="alternate" hreflang="fr" href="https://www.capreit.ca/fr/appartements-a-louer/ville-de-quebec-qc/appartements-le-samuel-holland/" />
11 +<link rel="alternate" hreflang="x-default" href="https://www.capreit.ca/apartments-for-rent/quebec-city-qc/samuel-holland-apartments/" />
12 +<meta name="dc.title" content="Appartements Le Samuel-Holland | Ville de Québec, QC">
13 +<meta name="dc.description" content="Ce complexe résidentiel à l’architecture unique est constitué de 6 immeubles méticuleusement conçus et est une destination de premier choix pour ceux qui recherchent un studio ou un 3 ½, 4 ½ ou 5 ½.">
14 +<meta name="dc.relation" content="https://www.capreit.ca/fr/appartements-a-louer/ville-de-quebec-qc/appartements-le-samuel-holland/">
15 +<meta name="dc.source" content="https://www.capreit.ca/fr/">
16 +<meta name="dc.language" content="fr_FR">
17 +<meta name="description" content="Ce complexe résidentiel à l’architecture unique est constitué de 6 immeubles méticuleusement conçus et est une destination de premier choix pour ceux qui recherchent un studio ou un 3 ½, 4 ½ ou 5 ½.">
18 +<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1">
19 +<link rel="canonical" href="https://www.capreit.ca/fr/appartements-a-louer/ville-de-quebec-qc/appartements-le-samuel-holland/">
20 +<meta property="og:url" content="https://www.capreit.ca/fr/appartements-a-louer/ville-de-quebec-qc/appartements-le-samuel-holland/">
21 +<meta property="og:site_name" content="Canadian Apartment Properties REIT">
22 +<meta property="og:locale" content="fr_FR">
23 +<meta property="og:locale:alternate" content="en_US">
24 +<meta property="og:type" content="article">
25 +<meta property="article:author" content="">
26 +<meta property="article:publisher" content="">
27 +<meta property="og:title" content="Appartements Le Samuel-Holland | Ville de Québec, QC">
28 +<meta property="og:description" content="Ce complexe résidentiel à l’architecture unique est constitué de 6 immeubles méticuleusement conçus et est une destination de premier choix pour ceux qui recherchent un studio ou un 3 ½, 4 ½ ou 5 ½.">
29 +<meta property="og:image" content="https://www.capreit.ca/wp-content/uploads/2021/09/0000_le-Samuel-Holland-830-ave-Ernest-Gagnon-Ville-de-Quebec-exterieur.jpg">
30 +<meta property="og:image:secure_url" content="https://www.capreit.ca/wp-content/uploads/2021/09/0000_le-Samuel-Holland-830-ave-Ernest-Gagnon-Ville-de-Quebec-exterieur.jpg">
31 +<meta property="og:image:width" content="1200">
32 +<meta property="og:image:height" content="800">
33 +<meta property="fb:pages" content="">
34 +<meta property="fb:app_id" content="">
35 +<meta name="twitter:card" content="summary">
36 +<meta name="twitter:site" content="">
37 +<meta name="twitter:creator" content="">
38 +<meta name="twitter:title" content="Appartements Le Samuel-Holland | Ville de Québec, QC">
39 +<meta name="twitter:description" content="Ce complexe résidentiel à l’architecture unique est constitué de 6 immeubles méticuleusement conçus et est une destination de premier choix pour ceux qui recherchent un studio ou un 3 ½, 4 ½ ou 5 ½.">
40 +<meta name="twitter:image" content="https://www.capreit.ca/wp-content/uploads/2021/09/0000_le-Samuel-Holland-830-ave-Ernest-Gagnon-Ville-de-Quebec-exterieur.jpg">
41 +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://www.capreit.ca/fr/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.capreit.ca%2Ffr%2Fappartements-a-louer%2Fville-de-quebec-qc%2Fappartements-le-samuel-holland%2F" />
42 +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://www.capreit.ca/fr/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.capreit.ca%2Ffr%2Fappartements-a-louer%2Fville-de-quebec-qc%2Fappartements-le-samuel-holland%2F&#038;format=xml" />
43 +<style id='wp-img-auto-sizes-contain-inline-css' type='text/css'>
44 +img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
45 +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
46 +</style>
47 +<style id='wpseopress-local-business-style-inline-css' type='text/css'>
48 +span.wp-block-wpseopress-local-business-field{margin-right:8px}
49 +
50 +/*# sourceURL=https://www.capreit.ca/wp-content/plugins/wp-seopress-pro/public/editor/blocks/local-business/style-index.css */
51 +</style>
52 +<style id='wpseopress-table-of-contents-style-inline-css' type='text/css'>
53 +.wp-block-wpseopress-table-of-contents li.active>a{font-weight:bold}
54 +
55 +/*# sourceURL=https://www.capreit.ca/wp-content/plugins/wp-seopress-pro/public/editor/blocks/table-of-contents/style-index.css */
56 +</style>
57 +<style id='global-styles-inline-css' type='text/css'>
58 +:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){margin-left: auto !important;margin-right: auto !important;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: underline;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
59 +:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
60 +:where(.wp-block-term-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-term-template.is-layout-grid){gap: 1.25em;}
61 +:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
62 +:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
63 +/*# sourceURL=global-styles-inline-css */
64 +</style>
65 +<link rel='stylesheet' id='elementor-frontend-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=4.2.1' type='text/css' media='all' />
66 +<style id='elementor-frontend-inline-css' type='text/css'>
67 +.elementor-kit-7265{--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-weight:500;}.elementor-kit-7265 e-page-transition{background-color:#FFBC7D;}.elementor-kit-7265 button,.elementor-kit-7265 input[type="button"],.elementor-kit-7265 input[type="submit"],.elementor-kit-7265 .elementor-button{font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-kit-7265 button:hover,.elementor-kit-7265 button:focus,.elementor-kit-7265 input[type="button"]:hover,.elementor-kit-7265 input[type="button"]:focus,.elementor-kit-7265 input[type="submit"]:hover,.elementor-kit-7265 input[type="submit"]:focus,.elementor-kit-7265 .elementor-button:hover,.elementor-kit-7265 .elementor-button:focus{border-radius:8px 8px 30px 8px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
68 +.elementor-99081 .elementor-element.elementor-element-25210ed2 > .elementor-container > .elementor-column > .elementor-widget-wrap{align-content:flex-end;align-items:flex-end;}.elementor-99081 .elementor-element.elementor-element-25210ed2:not(.elementor-motion-effects-element-type-background), .elementor-99081 .elementor-element.elementor-element-25210ed2 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F3E5CF;}.elementor-99081 .elementor-element.elementor-element-25210ed2{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:4px 4px 04px 4px;}.elementor-99081 .elementor-element.elementor-element-25210ed2 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-bc-flex-widget .elementor-99081 .elementor-element.elementor-element-5f364150.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-99081 .elementor-element.elementor-element-5f364150.elementor-column.elementor-element[data-element_type="column"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-99081 .elementor-element.elementor-element-7747c847:not(.elementor-motion-effects-element-type-background), .elementor-99081 .elementor-element.elementor-element-7747c847 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-99081 .elementor-element.elementor-element-7747c847, .elementor-99081 .elementor-element.elementor-element-7747c847 > .elementor-background-overlay{border-radius:5px 5px 5px 5px;}.elementor-99081 .elementor-element.elementor-element-7747c847{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:40px 40px 20px 40px;}.elementor-99081 .elementor-element.elementor-element-7747c847 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-99081 .elementor-element.elementor-element-41221e87 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-99081 .elementor-element.elementor-element-41221e87 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-99081 .elementor-element.elementor-element-738e044a:not(.elementor-motion-effects-element-type-background), .elementor-99081 .elementor-element.elementor-element-738e044a > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-99081 .elementor-element.elementor-element-738e044a, .elementor-99081 .elementor-element.elementor-element-738e044a > .elementor-background-overlay{border-radius:5px 5px 5px 5px;}.elementor-99081 .elementor-element.elementor-element-738e044a{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:40px 40px 20px 40px;}.elementor-99081 .elementor-element.elementor-element-738e044a > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-99081 .elementor-element.elementor-element-12612d3e .elementor-icon-list-icon i{transition:color 0.3s;}.elementor-99081 .elementor-element.elementor-element-12612d3e .elementor-icon-list-icon svg{transition:fill 0.3s;}.elementor-99081 .elementor-element.elementor-element-12612d3e{--e-icon-list-icon-size:14px;--icon-vertical-offset:0px;}.elementor-99081 .elementor-element.elementor-element-12612d3e .elementor-icon-list-text{transition:color 0.3s;}.elementor-99081 .elementor-element.elementor-element-2c67c69b .elementor-icon-list-icon i{transition:color 0.3s;}.elementor-99081 .elementor-element.elementor-element-2c67c69b .elementor-icon-list-icon svg{transition:fill 0.3s;}.elementor-99081 .elementor-element.elementor-element-2c67c69b{--e-icon-list-icon-size:14px;--icon-vertical-offset:0px;}.elementor-99081 .elementor-element.elementor-element-2c67c69b .elementor-icon-list-text{transition:color 0.3s;}#elementor-popup-modal-99081 .dialog-widget-content{animation-duration:1.2s;box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}#elementor-popup-modal-99081 .dialog-message{width:989px;height:auto;}#elementor-popup-modal-99081{justify-content:center;align-items:flex-end;}#elementor-popup-modal-99081 .dialog-close-button{display:flex;}@media(max-width:767px){.elementor-99081 .elementor-element.elementor-element-738e044a{padding:5px 5px 5px 5px;}.elementor-99081 .elementor-element.elementor-element-12612d3e .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child){padding-block-end:calc(4px/2);}.elementor-99081 .elementor-element.elementor-element-12612d3e .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:first-child){margin-block-start:calc(4px/2);}.elementor-99081 .elementor-element.elementor-element-12612d3e .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-inline:calc(4px/2);}.elementor-99081 .elementor-element.elementor-element-12612d3e .elementor-icon-list-items.elementor-inline-items{margin-inline:calc(-4px/2);}.elementor-99081 .elementor-element.elementor-element-12612d3e .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{inset-inline-end:calc(-4px/2);}.elementor-99081 .elementor-element.elementor-element-12612d3e{--e-icon-list-icon-size:32px;}.elementor-99081 .elementor-element.elementor-element-12612d3e .elementor-icon-list-item > .elementor-icon-list-text, .elementor-99081 .elementor-element.elementor-element-12612d3e .elementor-icon-list-item > a{font-size:16px;}.elementor-99081 .elementor-element.elementor-element-2c67c69b .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child){padding-block-end:calc(4px/2);}.elementor-99081 .elementor-element.elementor-element-2c67c69b .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:first-child){margin-block-start:calc(4px/2);}.elementor-99081 .elementor-element.elementor-element-2c67c69b .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-inline:calc(4px/2);}.elementor-99081 .elementor-element.elementor-element-2c67c69b .elementor-icon-list-items.elementor-inline-items{margin-inline:calc(-4px/2);}.elementor-99081 .elementor-element.elementor-element-2c67c69b .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{inset-inline-end:calc(-4px/2);}.elementor-99081 .elementor-element.elementor-element-2c67c69b{--e-icon-list-icon-size:32px;}.elementor-99081 .elementor-element.elementor-element-2c67c69b .elementor-icon-list-item > .elementor-icon-list-text, .elementor-99081 .elementor-element.elementor-element-2c67c69b .elementor-icon-list-item > a{font-size:16px;}}@media(min-width:768px){.elementor-99081 .elementor-element.elementor-element-41221e87{width:38.422%;}.elementor-99081 .elementor-element.elementor-element-393ad0bf{width:61.578%;}}
69 +.elementor-74262 .elementor-element.elementor-element-6872faff > .elementor-widget-container{padding:10px 10px 10px 10px;}.elementor-74262 .elementor-element.elementor-element-25ce557a{padding:10px 10px 10px 10px;}.elementor-74262 .elementor-element.elementor-element-62d6acf0 .elementor-button{background-color:#314561;}.elementor-74262 .elementor-element.elementor-element-6e09c9c9 .elementor-button{background-color:#314561;}#elementor-popup-modal-74262{background-color:#0000008A;justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-74262 .dialog-message{width:533px;height:auto;padding:20px 20px 20px 20px;}#elementor-popup-modal-74262 .dialog-widget-content{box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}@media(max-width:767px){.elementor-74262 .elementor-element.elementor-element-25ce557a{padding:0px 0px 0px 0px;}#elementor-popup-modal-74262 .dialog-message{width:440px;}}
70 +/*# sourceURL=elementor-frontend-inline-css */
71 +</style>
72 +<link rel='stylesheet' id='widget-image-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver=4.2.1' type='text/css' media='all' />
73 +<link rel='stylesheet' id='widget-heading-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver=4.2.1' type='text/css' media='all' />
74 +<link rel='stylesheet' id='widget-icon-list-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css?ver=4.2.1' type='text/css' media='all' />
75 +<link rel='stylesheet' id='e-animation-fadeInUp-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInUp.min.css?ver=4.2.1' type='text/css' media='all' />
76 +<link rel='stylesheet' id='e-popup-css' href='https://www.capreit.ca/wp-content/plugins/elementor-pro/assets/css/conditionals/popup.min.css?ver=4.2.1' type='text/css' media='all' />
77 +<link rel='stylesheet' id='elementor-icons-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.53.0' type='text/css' media='all' />
78 +<link rel='stylesheet' id='uael-frontend-css' href='https://www.capreit.ca/wp-content/plugins/ultimate-elementor/assets/min-css/uael-frontend.min.css?ver=1.44.4' type='text/css' media='all' />
79 +<link rel='stylesheet' id='uael-teammember-social-icons-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/css/widget-social-icons.min.css?ver=3.24.0' type='text/css' media='all' />
80 +<link rel='stylesheet' id='uael-social-share-icons-brands-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.css?ver=5.15.3' type='text/css' media='all' />
81 +<link rel='stylesheet' id='uael-social-share-icons-fontawesome-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.css?ver=5.15.3' type='text/css' media='all' />
82 +<link rel='stylesheet' id='uael-nav-menu-icons-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.css?ver=5.15.3' type='text/css' media='all' />
83 +<link rel='stylesheet' id='font-awesome-5-all-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css?ver=4.2.1' type='text/css' media='all' />
84 +<link rel='stylesheet' id='font-awesome-4-shim-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css?ver=4.2.1' type='text/css' media='all' />
85 +<link rel='stylesheet' id='sage/main.css-css' href='https://www.capreit.ca/wp-content/themes/capreit/dist/styles/main_5feac275.css' type='text/css' media='all' />
86 +<link rel='stylesheet' id='elementor-icons-shared-0-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css?ver=5.15.3' type='text/css' media='all' />
87 +<link rel='stylesheet' id='elementor-icons-fa-solid-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.min.css?ver=5.15.3' type='text/css' media='all' />
88 +<script type="text/javascript" src="https://www.capreit.ca/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script>
89 +<script type="text/javascript" src="https://www.capreit.ca/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script>
90 +<script type="text/javascript" id="wpml-cookie-js-extra">
91 +/* <![CDATA[ */
92 +var wpml_cookies = {"wp-wpml_current_language":{"value":"fr","expires":1,"path":"/"}};
93 +var wpml_cookies = {"wp-wpml_current_language":{"value":"fr","expires":1,"path":"/"}};
94 +//# sourceURL=wpml-cookie-js-extra
95 +/* ]]> */
96 +</script>
97 +<script type="text/javascript" src="https://www.capreit.ca/wp-content/plugins/sitepress-multilingual-cms/res/js/cookies/language-cookie.js?ver=494000" id="wpml-cookie-js" defer="defer" data-wp-strategy="defer"></script>
98 +<script type="text/javascript" src="https://www.capreit.ca/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js?ver=4.2.1" id="font-awesome-4-shim-js"></script>
99 +<link rel="https://api.w.org/" href="https://www.capreit.ca/fr/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.capreit.ca/xmlrpc.php?rsd" />
100 +<link rel='shortlink' href='https://www.capreit.ca/fr/?p=23547' />
101 +<meta name="generator" content="WPML ver:4.9.4 stt:1,4;" />
102 +<script>window.schema_highlighter={accountId: "CAPREIT", output: false, outputCache: false}</script> <script async src="https://cdn.schemaapp.com/javascript/highlight.js"></script><script type="application/ld+json" data-source="JSCaching:http://schemaapp.com/resources/admin/Organization_DevCAPREIT/Template20211201151522" data-schema="23547-property-App">[{"@type":["Apartment","Product"],"@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#Apartment_Product","@context":{"@vocab":"http:\/\/schema.org\/","kg":"http:\/\/g.co\/kg"},"url":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/","address":[{"@type":"PostalAddress","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#Apartment_Product_address_PostalAddress","addressCountry":[{"@type":"Country","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#Apartment_Product_address_PostalAddress_addressCountry_Country","name":"https:\/\/www.wikidata.org\/wiki\/Q16"}],"addressLocality":" 1275 Chemin Ste. Foy","streetAddress":"\n \n 1245","addressRegion":" 830","postalCode":" 840, 850 Ave. Ernest-Gagnon, 875 Ave. Holland, Ville de Qu\u00e9bec, QC, G1S 3R3\n "}],"petsAllowed":["Dog Friendly","Cat Friendly"],"offers":[{"@type":"AggregateOffer","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#Apartment_Product_offers_AggregateOffer","priceCurrency":"CAD","offeredBy":[{"@id":"https:\/\/www.capreit.ca\/"}],"highPrice":2220,"availability":"https:\/\/schema.org\/InStock","lowPrice":1175}],"subjectOf":[{"@type":"WebPage","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#Apartment_Product_subjectOf_WebPage","inLanguage":"fr-CA"},{"@type":"BreadcrumbList","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#Apartment_Product_subjectOf_BreadcrumbList","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#TagList_CAPREITApartmentPagesBreadcrumbList_0_Apartment_Product_subjectOf_BreadcrumbList_itemListElement_ListItem","name":"Ville de Qu\u00e9bec","item":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/","position":1},{"@type":"ListItem","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#TagList_CAPREITApartmentPagesBreadcrumbList_1_Apartment_Product_subjectOf_BreadcrumbList_itemListElement_ListItem","name":"Saint-Sacrement","item":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/saint-sacrement-ville-de-quebec-qc\/","position":2}]}],"name":"\n Appartements Le Samuel-Holland\n ","description":"Ce complexe r\u00e9sidentiel \u00e0 l\u2019architecture unique est constitu\u00e9 de 6 immeubles m\u00e9ticuleusement con\u00e7us et est une destination de premier choix pour ceux qui recherchent un studio ou un 3\u202f\u00bd, 4\u202f\u00bd ou 5\u202f\u00bd.","amenityFeature":["Patio ext\u00e9rieur",{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#Highlight-20240612135615332_0_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Balcons priv\u00e9s\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#Highlight-20240612135615332_1_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Cuisini\u00e8re incluse*\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#Highlight-20240612135615332_2_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n R\u00e9frig\u00e9rateur inclus*\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#Highlight-20240612135615332_3_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Piscine *\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#Highlight-20240612135615332_4_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Salle d'entra\u00eenement\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#Highlight-20240612135615332_5_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Salle d\u2019activit\u00e9s\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#Highlight-20240612135615332_6_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Recharge pour V\u00c9\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#Highlight-20240612135615332_7_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Salle de jeux\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#Highlight-20240612135615332_8_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Buanderie dans l\u2019immeuble\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#Highlight-20240612135615332_9_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Ascenseurs\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#Highlight-20240612135615332_10_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Chauffage inclus\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#Highlight-20240612135615332_11_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Eau inclus\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#Highlight-20240612135615332_12_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n \u00c9lectricit\u00e9 inclus\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#Highlight-20240612135615332_13_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Stationnement*\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#Highlight-20240612135615332_14_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Chiens* accept\u00e9s\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#Highlight-20240612135615332_15_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Chats* accept\u00e9s\n "}],"image":[{"@type":"ImageObject","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#TagList_6a58fcc24bb0b4.31288446_0_Apartment_Product_image_ImageObject","url":"https:\/\/www.capreit.ca\/wp-content\/uploads\/2021\/09\/1-Month-Rent-Free-BIL-2.jpg"},{"@type":"ImageObject","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#TagList_6a58fcc24bb0b4.31288446_1_Apartment_Product_image_ImageObject","url":"https:\/\/www.capreit.ca\/wp-content\/uploads\/2021\/09\/0000_le-Samuel-Holland-830-ave-Ernest-Gagnon-Ville-de-Quebec-exterieur.jpg"},{"@type":"ImageObject","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#TagList_6a58fcc24bb0b4.31288446_2_Apartment_Product_image_ImageObject","url":"https:\/\/www.capreit.ca\/wp-content\/uploads\/2021\/09\/0004_le-Samuel-Holland-830-ave-Ernest-Gagnon-Ville-de-Quebec-salon-2.jpg"},{"@type":"ImageObject","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#TagList_6a58fcc24bb0b4.31288446_3_Apartment_Product_image_ImageObject","url":"https:\/\/www.capreit.ca\/wp-content\/uploads\/2022\/05\/Samuel-Holland-pool.jpg"},{"@type":"ImageObject","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#TagList_6a58fcc24bb0b4.31288446_4_Apartment_Product_image_ImageObject","url":"https:\/\/www.capreit.ca\/wp-content\/uploads\/2021\/09\/EDC_8210.jpg"}],"containedIn":[{"@type":"Place","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#Apartment_Product_containedIn_Place","name":"1275 Chemin Ste. Foy"}],"geo":[{"@type":"GeoCoordinates","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#Apartment_Product_geo_GeoCoordinates","latitude":"46.79526","longitude":"-71.25025"}],"numberOfBedrooms":1,"hasMap":[{"@type":"Map","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/ville-de-quebec-qc\/appartements-le-samuel-holland\/#Apartment_Product_hasMap_Map","url":"https:\/\/maps.google.com\/maps?ll=46.79526,-71.25025&z=15&t=m&hl=fr&gl=US&mapclient=apiv3"}]},{"@context":"http:\/\/schema.org","@type":"Corporation","sameAs":["https:\/\/www.linkedin.com\/company\/capreit\/","https:\/\/www.youtube.com\/user\/CAPRENT","https:\/\/g.co\/kgs\/QTkLuSJ","https:\/\/www.instagram.com\/caprent\/","https:\/\/twitter.com\/caprent","https:\/\/www.facebook.com\/caprent\/"],"areaServed":"https:\/\/en.wikipedia.org\/wiki\/Canada","foundingDate":"1997-01-01","description":"Search more than 30000 apartments and townhouses across Canada. Our Apartments for Rent in Toronto, Montreal and Vancouver are all excellent choices.","name":"CAPREIT","logo":"https:\/\/www.capreit.ca\/wp-content\/themes\/capreit\/resources\/assets\/images\/logo-header.svg","alternateName":"Canadian Apartment Properties REIT","url":"https:\/\/www.capreit.ca\/","image":"https:\/\/www.capreit.ca\/img\/logo.png","email":"hello@capreit.net","telephone":"+14168619404","address":{"@type":"PostalAddress","streetAddress":"11 Church Street","postalCode":"M5E 1W1","addressRegion":"ON","addressLocality":"Toronto","addressCountry":"CA","name":"CAPREIT Address","@id":"https:\/\/www.capreit.ca\/#PostalAddress"},"contactPoint":{"@type":"ContactPoint","contactOption":"https:\/\/en.wikipedia.org\/wiki\/Telephone_call","availableLanguage":"https:\/\/en.wikipedia.org\/wiki\/English_language","areaServed":"https:\/\/en.wikipedia.org\/wiki\/Canada","contactType":"customer support","telephone":"+1 (416) 861-9404","description":"Canadian Apartment Properties Real Estate Investment Trust (CAPREIT) is a fully internalized growth-oriented investment trust owning freehold interests in multi-unit residential properties, including apartment buildings, townhouses and land lease communities located in or near major urban centers across Canada.","name":"Contact Us","image":"https:\/\/www.capreit.ca\/uploadedImages\/Content\/Aon_BE_Stamp_WinnCirc_Platinum_CA2016_Eng_Color.jpg","faxNumber":"+1 (416) 354-0192 ","url":["https:\/\/www.caprent.com\/contact-us\/","https:\/\/www.capreit.ca\/contact-us\/"],"@id":"https:\/\/www.capreit.ca\/contact-us\/"},"@id":"https:\/\/www.capreit.ca\/"}]</script>
103 +<meta name="generator" content="Elementor 4.2.1; features: additional_custom_breakpoints; settings: css_print_method-internal, google_font-enabled, font_display-auto">
104 +<script type="text/javascript">
105 + var _ss = _ss || [];
106 + _ss.push(['_setDomain', 'https://koi-3QNMRO6SRA.marketingautomation.services/net']);
107 + _ss.push(['_setAccount', 'KOI-4LZL0GS9QG']);
108 + _ss.push(['_trackPageView']);
109 + window._pa = window._pa || {};
110 + // _pa.orderId = "myOrderId"; // OPTIONAL: attach unique conversion identifier to conversions
111 + // _pa.revenue = "19.99"; // OPTIONAL: attach dynamic purchase values to conversions
112 + // _pa.productId = "myProductId"; // OPTIONAL: Include product ID for use with dynamic ads
113 +(function() {
114 + var ss = document.createElement('script');
115 + ss.type = 'text/javascript'; ss.async = true;
116 + ss.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'koi-3QNMRO6SRA.marketingautomation.services/client/ss.js?ver=2.4.0';
117 + var scr = document.getElementsByTagName('script')[0];
118 + scr.parentNode.insertBefore(ss, scr);
119 +})();
120 +</script>
121 +
122 +<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style> <style>
123 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
124 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
125 + background-image: none !important;
126 + }
127 + @media screen and (max-height: 1024px) {
128 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
129 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
130 + background-image: none !important;
131 + }
132 + }
133 + @media screen and (max-height: 640px) {
134 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
135 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
136 + background-image: none !important;
137 + }
138 + }
139 + </style>
140 + <link rel="icon" href="https://www.capreit.ca/wp-content/uploads/2021/11/cropped-cropped-Capreit_Icon_Indigo_RGB_600px@72ppi-32x32.png" sizes="32x32" />
141 +<link rel="icon" href="https://www.capreit.ca/wp-content/uploads/2021/11/cropped-cropped-Capreit_Icon_Indigo_RGB_600px@72ppi-192x192.png" sizes="192x192" />
142 +<link rel="apple-touch-icon" href="https://www.capreit.ca/wp-content/uploads/2021/11/cropped-cropped-Capreit_Icon_Indigo_RGB_600px@72ppi-180x180.png" />
143 +<meta name="msapplication-TileImage" content="https://www.capreit.ca/wp-content/uploads/2021/11/cropped-cropped-Capreit_Icon_Indigo_RGB_600px@72ppi-270x270.png" />
144 + <link rel="stylesheet" href="https://use.typekit.net/tuu1tlg.css">
145 + <!-- Google Tag Manager -->
146 + <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
147 + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
148 + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
149 + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
150 + })(window,document,'script','dataLayer','GTM-K5G93XF');</script>
151 + <!-- End Google Tag Manager -->
152 + <script>
153 + var CURRENT_LANGUAGE = "fr";
154 + </script>
155 +</head>
156 +<body class="wp-singular property-template-default single single-property postid-23547 wp-theme-capreitresources appartements-le-samuel-holland app-data index-data singular-data single-data single-property-data single-property-appartements-le-samuel-holland-data elementor-default elementor-kit-7265">
157 + <!-- Google Tag Manager (noscript) -->
158 + <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-K5G93XF"
159 + height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
160 + <!-- End Google Tag Manager (noscript) -->
161 + <header class="header">
162 + <div class="wrapper">
163 + <a class="header-logo" href="https://www.capreit.ca/fr/">
164 + Canadian Apartment Properties REIT
165 + </a>
166 + <div class="header-wrap">
167 + <nav class="header-navigation" aria-label="primary">
168 + <div class="menu-main-menu-french-container"><ul id="menu-main-menu-french" class="nav"><li class="navigation-listitem has-submenu" role="presentation"> <a class="navigation-item" id="main-menu-item-0-17000" href="#navigation-louer" aria-haspopup="true" aria-expanded="false" aria-controls="main-menu-0-17000" role="menuitem" tabindex="0"><span>Louer</span></a><div class="sub-navigation" id="main-menu-0-17000" role="region" aria-labelledby="main-menu-item-0-17000"><ul class="sub-navigation-wrapper" role="menu"><li class="sub-navigation-listitem" role="presentation"> <a class="sub-navigation-item" href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" role="menuitem" tabindex="0"><span>Pourquoi louer chez nous</span></a></li></ul></div></li><li class="navigation-listitem has-submenu" role="presentation"> <a class="navigation-item" id="main-menu-item-0-68522" href="#navigation-partnerfr" aria-haspopup="true" aria-expanded="false" aria-controls="main-menu-0-68522" role="menuitem" tabindex="0"><span>Collaborer avec CAPREIT</span></a><div class="sub-navigation" id="main-menu-0-68522" role="region" aria-labelledby="main-menu-item-0-68522"><ul class="sub-navigation-wrapper" role="menu"><li class="sub-navigation-listitem" role="presentation"> <a class="sub-navigation-item" href="https://www.capreit.ca/fr/commercial/" role="menuitem" tabindex="0"><span>Commercial</span></a></li></ul></div></li><li class="navigation-listitem has-submenu" role="presentation"> <a class="navigation-item" id="main-menu-item-0-17001" href="#navigation-apropos" aria-haspopup="true" aria-expanded="false" aria-controls="main-menu-0-17001" role="menuitem" tabindex="0"><span>À propos</span></a><div class="sub-navigation" id="main-menu-0-17001" role="region" aria-labelledby="main-menu-item-0-17001"><ul class="sub-navigation-wrapper" role="menu"><li class="sub-navigation-listitem" role="presentation"> <a class="sub-navigation-item" href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" role="menuitem" tabindex="0"><span>Programmes de perfectionnement des employés</span></a></li></ul></div></li><li class="navigation-listitem" role="presentation"> <a class="navigation-item" href="https://ir.capreit.ca/overview/default.aspx" role="menuitem" tabindex="0"><span>Investisseurs</span></a></li><li class="navigation-listitem" role="presentation"> <a class="navigation-item" href="https://www.capreit.ca/fr/appartements-a-louer/" role="menuitem" tabindex="0"><span>Trouver un appartement</span></a></li><li class="navigation-listitem" role="presentation"> <a class="navigation-item" href="https://www.capreit.ca/fr/a-propos/qui-nous-sommes/" role="menuitem" tabindex="0"><span>Qui nous sommes</span></a></li><li class="navigation-listitem" role="presentation"> <a class="navigation-item" href="https://www.capreit.ca/fr/commercial/" role="menuitem" tabindex="0"><span>Commercial</span></a></li></ul></div>
169 + </nav>
170 + <div class="header-wrap-sub">
171 + <div class="header-language">
172 + <button class="header-language-toggle">
173 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-header-globe.svg"
174 + alt="">
175 + FR
176 + </button>
177 + <nav class="header-language-navigation" aria-label="language">
178 + <ul>
179 + <li>
180 + <a class="header-language-navigation-link" href="https://www.capreit.ca/fr/appartements-a-louer/ville-de-quebec-qc/appartements-le-samuel-holland/" aria-current>
181 + Français
182 + </a>
183 + </li>
184 + <li>
185 + <a class="header-language-navigation-link" href="https://www.capreit.ca/apartments-for-rent/quebec-city-qc/samuel-holland-apartments/">
186 + English
187 + </a>
188 + </li>
189 + </ul>
190 + </nav>
191 + </div>
192 + <a class="header-login"
193 + href="https://capreit.residentonline.ca/"
194 + target="_blank">
195 + <div class="header-login-icon"></div>
196 + Connexion-résident(e) </a>
197 + </div>
198 + </div>
199 + <button class="header-toggle">
200 + Toggle Menu </button>
201 + </div>
202 + <div class="header-sub" id="navigation-rent">
203 + <div class="wrapper">
204 + <style id="elementor-post-13474">.elementor-13474 .elementor-element.elementor-element-55e0e5d5{border-style:solid;border-width:1px 1px 1px 1px;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:1px 1px 1px 40px;z-index:99;}.elementor-13474 .elementor-element.elementor-element-55e0e5d5 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-13474 .elementor-element.elementor-element-b35e1f1:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-13474 .elementor-element.elementor-element-b35e1f1 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFCF7;}.elementor-13474 .elementor-element.elementor-element-b35e1f1 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-13474 .elementor-element.elementor-element-b35e1f1 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-13474 .elementor-element.elementor-element-2bac18c8{padding:1px 1px 1px 1px;}.elementor-13474 .elementor-element.elementor-element-51b29768{padding:1px 1px 1px 1px;}.elementor-13474 .elementor-element.elementor-element-6e62710e > .elementor-widget-container{background-color:#FFFCF7;}.elementor-13474 .elementor-element.elementor-element-6e62710e .elementor-nav-menu .elementor-item{font-weight:var( --e-global-typography-text-font-weight );}.elementor-13474 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown{background-color:#FFFCF7;}.elementor-13474 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a:hover,
205 + .elementor-13474 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a:focus,
206 + .elementor-13474 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a.elementor-item-active,
207 + .elementor-13474 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a.highlighted{background-color:#FFFFFF;}.elementor-13474 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a.elementor-item-active{color:#AF5341;}.elementor-13474 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu .elementor-item{font-weight:var( --e-global-typography-text-font-weight );}.elementor-13474 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown{background-color:#FFFCF7;}.elementor-13474 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown a:hover,
208 + .elementor-13474 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown a:focus,
209 + .elementor-13474 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown a.elementor-item-active,
210 + .elementor-13474 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown a.highlighted{background-color:#FFFFFF;}.elementor-13474 .elementor-element.elementor-element-236b8d18{padding:1px 1px 1px 1px;}.elementor-13474 .elementor-element.elementor-element-422d2e4a > .elementor-widget-container{padding:1px 1px 1px 1px;}.elementor-13474 .elementor-element.elementor-element-422d2e4a .elementor-heading-title{font-family:"Arial", Sans-serif;font-weight:bold;}.elementor-13474 .elementor-element.elementor-element-6d35b1bc{padding:1px 1px 1px 1px;}.elementor-13474 .elementor-element.elementor-element-760957ba .elementor-cta .elementor-cta__bg, .elementor-13474 .elementor-element.elementor-element-760957ba .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-13474 .elementor-element.elementor-element-760957ba .elementor-cta__content{text-align:center;}.elementor-13474 .elementor-element.elementor-element-760957ba .elementor-cta__bg-wrapper{min-height:140px;}.elementor-13474 .elementor-element.elementor-element-760957ba .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-13474 .elementor-element.elementor-element-19a93452 .elementor-cta .elementor-cta__bg, .elementor-13474 .elementor-element.elementor-element-19a93452 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-13474 .elementor-element.elementor-element-19a93452 .elementor-cta__content{text-align:center;}.elementor-13474 .elementor-element.elementor-element-19a93452 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-13474 .elementor-element.elementor-element-19a93452 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-13474 .elementor-element.elementor-element-4324ab2 .elementor-cta .elementor-cta__bg, .elementor-13474 .elementor-element.elementor-element-4324ab2 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-13474 .elementor-element.elementor-element-4324ab2 .elementor-cta__content{text-align:center;}.elementor-13474 .elementor-element.elementor-element-4324ab2 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-13474 .elementor-element.elementor-element-4324ab2 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}@media(min-width:768px){.elementor-13474 .elementor-element.elementor-element-b35e1f1{width:50.134%;}.elementor-13474 .elementor-element.elementor-element-6160a416{width:49.866%;}}</style> <div data-elementor-type="section" data-elementor-id="17029" class="elementor elementor-17029 elementor-13474" data-elementor-post-type="elementor_library">
211 + <section class="elementor-section elementor-top-section elementor-element elementor-element-55e0e5d5 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="55e0e5d5" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
212 + <div class="elementor-container elementor-column-gap-default">
213 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-b35e1f1" data-id="b35e1f1" data-element_type="column" data-e-type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
214 + <div class="elementor-widget-wrap elementor-element-populated">
215 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-2bac18c8 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2bac18c8" data-element_type="section" data-e-type="section">
216 + <div class="elementor-container elementor-column-gap-default">
217 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-6fbcc080" data-id="6fbcc080" data-element_type="column" data-e-type="column">
218 + <div class="elementor-widget-wrap elementor-element-populated">
219 + <div class="elementor-element elementor-element-25ed71d6 elementor-widget elementor-widget-heading" data-id="25ed71d6" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
220 + <div class="elementor-widget-container">
221 + <h5 class="elementor-heading-title elementor-size-default">Trouver</h5> </div>
222 + </div>
223 + </div>
224 + </div>
225 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-58f2808d elementor-hidden-mobile" data-id="58f2808d" data-element_type="column" data-e-type="column">
226 + <div class="elementor-widget-wrap elementor-element-populated">
227 + <div class="elementor-element elementor-element-1bab0703 elementor-widget elementor-widget-heading" data-id="1bab0703" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
228 + <div class="elementor-widget-container">
229 + <h5 class="elementor-heading-title elementor-size-default">En savoir plus</h5> </div>
230 + </div>
231 + </div>
232 + </div>
233 + </div>
234 + </section>
235 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-51b29768 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="51b29768" data-element_type="section" data-e-type="section">
236 + <div class="elementor-container elementor-column-gap-default">
237 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-6cbedca5" data-id="6cbedca5" data-element_type="column" data-e-type="column">
238 + <div class="elementor-widget-wrap elementor-element-populated">
239 + <div class="elementor-element elementor-element-6e62710e elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="6e62710e" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
240 + <div class="elementor-widget-container">
241 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-none">
242 + <ul id="menu-1-6e62710e" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29486"><a href="https://www.capreit.ca/fr/appartements-a-louer/" class="elementor-item">Trouver un appartement</a></li>
243 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-99990"><a href="https://www.capreit.ca/fr/logements-en-colocation/" class="elementor-item">Logements en colocation</a></li>
244 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-33891"><a href="https://www.capreit.ca/fr/nous-joindre/" class="elementor-item">Nous joindre</a></li>
245 +</ul> </nav>
246 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
247 + <ul id="menu-2-6e62710e" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29486"><a href="https://www.capreit.ca/fr/appartements-a-louer/" class="elementor-item" tabindex="-1">Trouver un appartement</a></li>
248 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-99990"><a href="https://www.capreit.ca/fr/logements-en-colocation/" class="elementor-item" tabindex="-1">Logements en colocation</a></li>
249 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-33891"><a href="https://www.capreit.ca/fr/nous-joindre/" class="elementor-item" tabindex="-1">Nous joindre</a></li>
250 +</ul> </nav>
251 + </div>
252 + </div>
253 + </div>
254 + </div>
255 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-2272c71e" data-id="2272c71e" data-element_type="column" data-e-type="column">
256 + <div class="elementor-widget-wrap elementor-element-populated">
257 + <div class="elementor-element elementor-element-dd3febe elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-heading" data-id="dd3febe" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
258 + <div class="elementor-widget-container">
259 + <h5 class="elementor-heading-title elementor-size-default">En savoir plus</h5> </div>
260 + </div>
261 + <div class="elementor-element elementor-element-a4d85ea elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="a4d85ea" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
262 + <div class="elementor-widget-container">
263 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
264 + <ul id="menu-1-a4d85ea" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31875"><a href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" class="elementor-item">Pourquoi louer chez nous</a></li>
265 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31874"><a href="https://www.capreit.ca/fr/louer/portail-des-locataires/" class="elementor-item">Portail des locataires</a></li>
266 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31876"><a href="https://www.capreit.ca/fr/louer/questions-frequentes/" class="elementor-item">Questions posées fréquemment</a></li>
267 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-68454"><a href="/fr/louer/vivre-chez-canadian-apartment-properties-reit#style-de-vie-en-appartement" class="elementor-item elementor-item-anchor">Vivre chez CAPREIT</a></li>
268 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31873"><a href="https://www.capreit.ca/fr/louer/le-processus-de-location/" class="elementor-item">Le processus de location</a></li>
269 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-35371"><a href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" class="elementor-item">Pourquoi louer chez nous</a></li>
270 +</ul> </nav>
271 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
272 + <ul id="menu-2-a4d85ea" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31875"><a href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" class="elementor-item" tabindex="-1">Pourquoi louer chez nous</a></li>
273 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31874"><a href="https://www.capreit.ca/fr/louer/portail-des-locataires/" class="elementor-item" tabindex="-1">Portail des locataires</a></li>
274 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31876"><a href="https://www.capreit.ca/fr/louer/questions-frequentes/" class="elementor-item" tabindex="-1">Questions posées fréquemment</a></li>
275 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-68454"><a href="/fr/louer/vivre-chez-canadian-apartment-properties-reit#style-de-vie-en-appartement" class="elementor-item elementor-item-anchor" tabindex="-1">Vivre chez CAPREIT</a></li>
276 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31873"><a href="https://www.capreit.ca/fr/louer/le-processus-de-location/" class="elementor-item" tabindex="-1">Le processus de location</a></li>
277 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-35371"><a href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" class="elementor-item" tabindex="-1">Pourquoi louer chez nous</a></li>
278 +</ul> </nav>
279 + </div>
280 + </div>
281 + </div>
282 + </div>
283 + </div>
284 + </section>
285 + </div>
286 + </div>
287 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-6160a416" data-id="6160a416" data-element_type="column" data-e-type="column">
288 + <div class="elementor-widget-wrap elementor-element-populated">
289 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-236b8d18 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="236b8d18" data-element_type="section" data-e-type="section">
290 + <div class="elementor-container elementor-column-gap-default">
291 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-22560467" data-id="22560467" data-element_type="column" data-e-type="column">
292 + <div class="elementor-widget-wrap elementor-element-populated">
293 + <div class="elementor-element elementor-element-422d2e4a elementor-widget elementor-widget-heading" data-id="422d2e4a" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
294 + <div class="elementor-widget-container">
295 + <h5 class="elementor-heading-title elementor-size-default">En vedette</h5> </div>
296 + </div>
297 + </div>
298 + </div>
299 + </div>
300 + </section>
301 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-6d35b1bc elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6d35b1bc" data-element_type="section" data-e-type="section">
302 + <div class="elementor-container elementor-column-gap-default">
303 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-651c85c2" data-id="651c85c2" data-element_type="column" data-e-type="column">
304 + <div class="elementor-widget-wrap elementor-element-populated">
305 + <div class="elementor-element elementor-element-760957ba elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="760957ba" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
306 + <div class="elementor-widget-container">
307 + <a class="elementor-cta" href="https://www.capreit.ca/fr/charte-des-droits-des-locataires-capreit-multifamiliaux/">
308 + <div class="elementor-cta__bg-wrapper">
309 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2023/09/FR-BOR-Call-out-02-1024x541.png);" role="img" aria-label="FR-BOR-Call-out-02"></div>
310 + <div class="elementor-cta__bg-overlay"></div>
311 + </div>
312 + <div class="elementor-cta__content">
313 +
314 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
315 + CAPREIT se soucie de ses locataires. Nous nous soucions de la protection de leurs droits. </h4>
316 +
317 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
318 + En savoir plus </div>
319 +
320 + </div>
321 + </a>
322 + </div>
323 + </div>
324 + </div>
325 + </div>
326 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4821cc" data-id="4821cc" data-element_type="column" data-e-type="column">
327 + <div class="elementor-widget-wrap elementor-element-populated">
328 + <div class="elementor-element elementor-element-19a93452 elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="19a93452" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
329 + <div class="elementor-widget-container">
330 + <a class="elementor-cta" href="https://www.capreit.ca/fr/louer/questions-frequentes/">
331 + <div class="elementor-cta__bg-wrapper">
332 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2021/11/img-callout-faq.png);" role="img" aria-label="img-callout-faq"></div>
333 + <div class="elementor-cta__bg-overlay"></div>
334 + </div>
335 + <div class="elementor-cta__content">
336 +
337 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
338 + Questions posées fréquemment </h4>
339 +
340 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
341 + Vous avez des questions? Nous avons les réponses. </div>
342 +
343 + </div>
344 + </a>
345 + </div>
346 + </div>
347 + </div>
348 + </div>
349 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-792700e" data-id="792700e" data-element_type="column" data-e-type="column">
350 + <div class="elementor-widget-wrap elementor-element-populated">
351 + <div class="elementor-element elementor-element-4324ab2 elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="4324ab2" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
352 + <div class="elementor-widget-container">
353 + <a class="elementor-cta" href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/">
354 + <div class="elementor-cta__bg-wrapper">
355 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2021/11/Blog-Call-out-FR-1024x683.png);" role="img" aria-label="Blog-Call-out-FR"></div>
356 + <div class="elementor-cta__bg-overlay"></div>
357 + </div>
358 + <div class="elementor-cta__content">
359 +
360 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
361 + Visitez notre blogue </h4>
362 +
363 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
364 + Pour les dernières nouvelles, événements, concours, articles et conseils utiles et plus encore. </div>
365 +
366 + </div>
367 + </a>
368 + </div>
369 + </div>
370 + </div>
371 + </div>
372 + </div>
373 + </section>
374 + </div>
375 + </div>
376 + </div>
377 + </section>
378 + </div>
379 + </div>
380 + </div>
381 + <div class="header-sub" id="navigation-louer">
382 + <div class="wrapper">
383 + <style id="elementor-post-17029">.elementor-17029 .elementor-element.elementor-element-55e0e5d5{border-style:solid;border-width:1px 1px 1px 1px;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:1px 1px 1px 40px;z-index:99;}.elementor-17029 .elementor-element.elementor-element-55e0e5d5 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-17029 .elementor-element.elementor-element-b35e1f1:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-17029 .elementor-element.elementor-element-b35e1f1 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFCF7;}.elementor-17029 .elementor-element.elementor-element-b35e1f1 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-17029 .elementor-element.elementor-element-b35e1f1 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-17029 .elementor-element.elementor-element-2bac18c8{padding:1px 1px 1px 1px;}.elementor-17029 .elementor-element.elementor-element-51b29768{padding:1px 1px 1px 1px;}.elementor-17029 .elementor-element.elementor-element-6e62710e > .elementor-widget-container{background-color:#FFFCF7;}.elementor-17029 .elementor-element.elementor-element-6e62710e .elementor-nav-menu .elementor-item{font-weight:var( --e-global-typography-text-font-weight );}.elementor-17029 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown{background-color:#FFFCF7;}.elementor-17029 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a:hover,
384 + .elementor-17029 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a:focus,
385 + .elementor-17029 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a.elementor-item-active,
386 + .elementor-17029 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a.highlighted{background-color:#FFFFFF;}.elementor-17029 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a.elementor-item-active{color:#AF5341;}.elementor-17029 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu .elementor-item{font-weight:var( --e-global-typography-text-font-weight );}.elementor-17029 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown{background-color:#FFFCF7;}.elementor-17029 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown a:hover,
387 + .elementor-17029 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown a:focus,
388 + .elementor-17029 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown a.elementor-item-active,
389 + .elementor-17029 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown a.highlighted{background-color:#FFFFFF;}.elementor-17029 .elementor-element.elementor-element-236b8d18{padding:1px 1px 1px 1px;}.elementor-17029 .elementor-element.elementor-element-422d2e4a > .elementor-widget-container{padding:1px 1px 1px 1px;}.elementor-17029 .elementor-element.elementor-element-422d2e4a .elementor-heading-title{font-family:"Arial", Sans-serif;font-weight:bold;}.elementor-17029 .elementor-element.elementor-element-6d35b1bc{padding:1px 1px 1px 1px;}.elementor-17029 .elementor-element.elementor-element-760957ba .elementor-cta .elementor-cta__bg, .elementor-17029 .elementor-element.elementor-element-760957ba .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-17029 .elementor-element.elementor-element-760957ba .elementor-cta__content{text-align:center;}.elementor-17029 .elementor-element.elementor-element-760957ba .elementor-cta__bg-wrapper{min-height:140px;}.elementor-17029 .elementor-element.elementor-element-760957ba .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-17029 .elementor-element.elementor-element-19a93452 .elementor-cta .elementor-cta__bg, .elementor-17029 .elementor-element.elementor-element-19a93452 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-17029 .elementor-element.elementor-element-19a93452 .elementor-cta__content{text-align:center;}.elementor-17029 .elementor-element.elementor-element-19a93452 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-17029 .elementor-element.elementor-element-19a93452 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-17029 .elementor-element.elementor-element-4324ab2 .elementor-cta .elementor-cta__bg, .elementor-17029 .elementor-element.elementor-element-4324ab2 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-17029 .elementor-element.elementor-element-4324ab2 .elementor-cta__content{text-align:center;}.elementor-17029 .elementor-element.elementor-element-4324ab2 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-17029 .elementor-element.elementor-element-4324ab2 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}@media(min-width:768px){.elementor-17029 .elementor-element.elementor-element-b35e1f1{width:50.134%;}.elementor-17029 .elementor-element.elementor-element-6160a416{width:49.866%;}}</style> <div data-elementor-type="section" data-elementor-id="17029" class="elementor elementor-17029 elementor-13474" data-elementor-post-type="elementor_library">
390 + <section class="elementor-section elementor-top-section elementor-element elementor-element-55e0e5d5 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="55e0e5d5" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
391 + <div class="elementor-container elementor-column-gap-default">
392 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-b35e1f1" data-id="b35e1f1" data-element_type="column" data-e-type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
393 + <div class="elementor-widget-wrap elementor-element-populated">
394 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-2bac18c8 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2bac18c8" data-element_type="section" data-e-type="section">
395 + <div class="elementor-container elementor-column-gap-default">
396 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-6fbcc080" data-id="6fbcc080" data-element_type="column" data-e-type="column">
397 + <div class="elementor-widget-wrap elementor-element-populated">
398 + <div class="elementor-element elementor-element-25ed71d6 elementor-widget elementor-widget-heading" data-id="25ed71d6" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
399 + <div class="elementor-widget-container">
400 + <h5 class="elementor-heading-title elementor-size-default">Trouver</h5> </div>
401 + </div>
402 + </div>
403 + </div>
404 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-58f2808d elementor-hidden-mobile" data-id="58f2808d" data-element_type="column" data-e-type="column">
405 + <div class="elementor-widget-wrap elementor-element-populated">
406 + <div class="elementor-element elementor-element-1bab0703 elementor-widget elementor-widget-heading" data-id="1bab0703" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
407 + <div class="elementor-widget-container">
408 + <h5 class="elementor-heading-title elementor-size-default">En savoir plus</h5> </div>
409 + </div>
410 + </div>
411 + </div>
412 + </div>
413 + </section>
414 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-51b29768 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="51b29768" data-element_type="section" data-e-type="section">
415 + <div class="elementor-container elementor-column-gap-default">
416 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-6cbedca5" data-id="6cbedca5" data-element_type="column" data-e-type="column">
417 + <div class="elementor-widget-wrap elementor-element-populated">
418 + <div class="elementor-element elementor-element-6e62710e elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="6e62710e" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
419 + <div class="elementor-widget-container">
420 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-none">
421 + <ul id="menu-1-6e62710e" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29486"><a href="https://www.capreit.ca/fr/appartements-a-louer/" class="elementor-item">Trouver un appartement</a></li>
422 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-99990"><a href="https://www.capreit.ca/fr/logements-en-colocation/" class="elementor-item">Logements en colocation</a></li>
423 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-33891"><a href="https://www.capreit.ca/fr/nous-joindre/" class="elementor-item">Nous joindre</a></li>
424 +</ul> </nav>
425 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
426 + <ul id="menu-2-6e62710e" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29486"><a href="https://www.capreit.ca/fr/appartements-a-louer/" class="elementor-item" tabindex="-1">Trouver un appartement</a></li>
427 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-99990"><a href="https://www.capreit.ca/fr/logements-en-colocation/" class="elementor-item" tabindex="-1">Logements en colocation</a></li>
428 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-33891"><a href="https://www.capreit.ca/fr/nous-joindre/" class="elementor-item" tabindex="-1">Nous joindre</a></li>
429 +</ul> </nav>
430 + </div>
431 + </div>
432 + </div>
433 + </div>
434 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-2272c71e" data-id="2272c71e" data-element_type="column" data-e-type="column">
435 + <div class="elementor-widget-wrap elementor-element-populated">
436 + <div class="elementor-element elementor-element-dd3febe elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-heading" data-id="dd3febe" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
437 + <div class="elementor-widget-container">
438 + <h5 class="elementor-heading-title elementor-size-default">En savoir plus</h5> </div>
439 + </div>
440 + <div class="elementor-element elementor-element-a4d85ea elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="a4d85ea" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
441 + <div class="elementor-widget-container">
442 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
443 + <ul id="menu-1-a4d85ea" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31875"><a href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" class="elementor-item">Pourquoi louer chez nous</a></li>
444 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31874"><a href="https://www.capreit.ca/fr/louer/portail-des-locataires/" class="elementor-item">Portail des locataires</a></li>
445 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31876"><a href="https://www.capreit.ca/fr/louer/questions-frequentes/" class="elementor-item">Questions posées fréquemment</a></li>
446 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-68454"><a href="/fr/louer/vivre-chez-canadian-apartment-properties-reit#style-de-vie-en-appartement" class="elementor-item elementor-item-anchor">Vivre chez CAPREIT</a></li>
447 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31873"><a href="https://www.capreit.ca/fr/louer/le-processus-de-location/" class="elementor-item">Le processus de location</a></li>
448 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-35371"><a href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" class="elementor-item">Pourquoi louer chez nous</a></li>
449 +</ul> </nav>
450 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
451 + <ul id="menu-2-a4d85ea" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31875"><a href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" class="elementor-item" tabindex="-1">Pourquoi louer chez nous</a></li>
452 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31874"><a href="https://www.capreit.ca/fr/louer/portail-des-locataires/" class="elementor-item" tabindex="-1">Portail des locataires</a></li>
453 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31876"><a href="https://www.capreit.ca/fr/louer/questions-frequentes/" class="elementor-item" tabindex="-1">Questions posées fréquemment</a></li>
454 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-68454"><a href="/fr/louer/vivre-chez-canadian-apartment-properties-reit#style-de-vie-en-appartement" class="elementor-item elementor-item-anchor" tabindex="-1">Vivre chez CAPREIT</a></li>
455 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31873"><a href="https://www.capreit.ca/fr/louer/le-processus-de-location/" class="elementor-item" tabindex="-1">Le processus de location</a></li>
456 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-35371"><a href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" class="elementor-item" tabindex="-1">Pourquoi louer chez nous</a></li>
457 +</ul> </nav>
458 + </div>
459 + </div>
460 + </div>
461 + </div>
462 + </div>
463 + </section>
464 + </div>
465 + </div>
466 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-6160a416" data-id="6160a416" data-element_type="column" data-e-type="column">
467 + <div class="elementor-widget-wrap elementor-element-populated">
468 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-236b8d18 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="236b8d18" data-element_type="section" data-e-type="section">
469 + <div class="elementor-container elementor-column-gap-default">
470 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-22560467" data-id="22560467" data-element_type="column" data-e-type="column">
471 + <div class="elementor-widget-wrap elementor-element-populated">
472 + <div class="elementor-element elementor-element-422d2e4a elementor-widget elementor-widget-heading" data-id="422d2e4a" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
473 + <div class="elementor-widget-container">
474 + <h5 class="elementor-heading-title elementor-size-default">En vedette</h5> </div>
475 + </div>
476 + </div>
477 + </div>
478 + </div>
479 + </section>
480 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-6d35b1bc elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6d35b1bc" data-element_type="section" data-e-type="section">
481 + <div class="elementor-container elementor-column-gap-default">
482 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-651c85c2" data-id="651c85c2" data-element_type="column" data-e-type="column">
483 + <div class="elementor-widget-wrap elementor-element-populated">
484 + <div class="elementor-element elementor-element-760957ba elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="760957ba" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
485 + <div class="elementor-widget-container">
486 + <a class="elementor-cta" href="https://www.capreit.ca/fr/charte-des-droits-des-locataires-capreit-multifamiliaux/">
487 + <div class="elementor-cta__bg-wrapper">
488 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2023/09/FR-BOR-Call-out-02-1024x541.png);" role="img" aria-label="FR-BOR-Call-out-02"></div>
489 + <div class="elementor-cta__bg-overlay"></div>
490 + </div>
491 + <div class="elementor-cta__content">
492 +
493 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
494 + CAPREIT se soucie de ses locataires. Nous nous soucions de la protection de leurs droits. </h4>
495 +
496 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
497 + En savoir plus </div>
498 +
499 + </div>
500 + </a>
501 + </div>
502 + </div>
503 + </div>
504 + </div>
505 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4821cc" data-id="4821cc" data-element_type="column" data-e-type="column">
506 + <div class="elementor-widget-wrap elementor-element-populated">
507 + <div class="elementor-element elementor-element-19a93452 elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="19a93452" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
508 + <div class="elementor-widget-container">
509 + <a class="elementor-cta" href="https://www.capreit.ca/fr/louer/questions-frequentes/">
510 + <div class="elementor-cta__bg-wrapper">
511 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2021/11/img-callout-faq.png);" role="img" aria-label="img-callout-faq"></div>
512 + <div class="elementor-cta__bg-overlay"></div>
513 + </div>
514 + <div class="elementor-cta__content">
515 +
516 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
517 + Questions posées fréquemment </h4>
518 +
519 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
520 + Vous avez des questions? Nous avons les réponses. </div>
521 +
522 + </div>
523 + </a>
524 + </div>
525 + </div>
526 + </div>
527 + </div>
528 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-792700e" data-id="792700e" data-element_type="column" data-e-type="column">
529 + <div class="elementor-widget-wrap elementor-element-populated">
530 + <div class="elementor-element elementor-element-4324ab2 elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="4324ab2" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
531 + <div class="elementor-widget-container">
532 + <a class="elementor-cta" href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/">
533 + <div class="elementor-cta__bg-wrapper">
534 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2021/11/Blog-Call-out-FR-1024x683.png);" role="img" aria-label="Blog-Call-out-FR"></div>
535 + <div class="elementor-cta__bg-overlay"></div>
536 + </div>
537 + <div class="elementor-cta__content">
538 +
539 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
540 + Visitez notre blogue </h4>
541 +
542 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
543 + Pour les dernières nouvelles, événements, concours, articles et conseils utiles et plus encore. </div>
544 +
545 + </div>
546 + </a>
547 + </div>
548 + </div>
549 + </div>
550 + </div>
551 + </div>
552 + </section>
553 + </div>
554 + </div>
555 + </div>
556 + </section>
557 + </div>
558 + </div>
559 + </div>
560 + <div class="header-sub" id="navigation-about">
561 + <div class="wrapper">
562 + <style id="elementor-post-13460">.elementor-13460 .elementor-element.elementor-element-ad30f1e{border-style:solid;border-width:1px 1px 1px 1px;padding:1px 1px 1px 40px;z-index:99;}.elementor-13460 .elementor-element.elementor-element-292c159f{padding:1px 1px 1px 1px;}.elementor-13460 .elementor-element.elementor-element-3bb72597{padding:1px 1px 1px 1px;}.elementor-13460 .elementor-element.elementor-element-55c96f09 .elementor-nav-menu .elementor-item{font-family:"Arial", Sans-serif;font-size:16px;font-weight:500;font-style:normal;}.elementor-13460 .elementor-element.elementor-element-6f3ca6c6 .elementor-nav-menu .elementor-item{font-family:"Arial", Sans-serif;font-size:16px;font-weight:500;}.elementor-13460 .elementor-element.elementor-element-1654cfe0{padding:1px 1px 1px 1px;}.elementor-13460 .elementor-element.elementor-element-3706ad6b > .elementor-widget-container{padding:1px 1px 1px 1px;}.elementor-13460 .elementor-element.elementor-element-3706ad6b .elementor-heading-title{font-family:"Arial", Sans-serif;font-weight:bold;}.elementor-13460 .elementor-element.elementor-element-9a23d29{padding:1px 1px 1px 1px;}.elementor-13460 .elementor-element.elementor-element-8cc5b41 .elementor-cta .elementor-cta__bg, .elementor-13460 .elementor-element.elementor-element-8cc5b41 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-13460 .elementor-element.elementor-element-8cc5b41 .elementor-cta__content{text-align:center;}.elementor-13460 .elementor-element.elementor-element-8cc5b41 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-13460 .elementor-element.elementor-element-8cc5b41 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-13460 .elementor-element.elementor-element-e29d566 .elementor-cta .elementor-cta__bg, .elementor-13460 .elementor-element.elementor-element-e29d566 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-13460 .elementor-element.elementor-element-e29d566 .elementor-cta__content{text-align:center;}.elementor-13460 .elementor-element.elementor-element-e29d566 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-13460 .elementor-element.elementor-element-e29d566 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-13460 .elementor-element.elementor-element-71168b79 .elementor-cta .elementor-cta__bg, .elementor-13460 .elementor-element.elementor-element-71168b79 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-13460 .elementor-element.elementor-element-71168b79 .elementor-cta__content{text-align:center;}.elementor-13460 .elementor-element.elementor-element-71168b79 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-13460 .elementor-element.elementor-element-71168b79 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}@media(min-width:768px){.elementor-13460 .elementor-element.elementor-element-65d657c8{width:50.134%;}.elementor-13460 .elementor-element.elementor-element-50c0cf5e{width:49.866%;}}</style> <div data-elementor-type="section" data-elementor-id="17031" class="elementor elementor-17031 elementor-13460" data-elementor-post-type="elementor_library">
563 + <section class="elementor-section elementor-top-section elementor-element elementor-element-ad30f1e elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="ad30f1e" data-element_type="section" data-e-type="section">
564 + <div class="elementor-container elementor-column-gap-default">
565 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65d657c8" data-id="65d657c8" data-element_type="column" data-e-type="column">
566 + <div class="elementor-widget-wrap elementor-element-populated">
567 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-292c159f elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="292c159f" data-element_type="section" data-e-type="section">
568 + <div class="elementor-container elementor-column-gap-default">
569 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-7bb1347f" data-id="7bb1347f" data-element_type="column" data-e-type="column">
570 + <div class="elementor-widget-wrap elementor-element-populated">
571 + <div class="elementor-element elementor-element-41f77c37 elementor-widget elementor-widget-heading" data-id="41f77c37" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
572 + <div class="elementor-widget-container">
573 + <h5 class="elementor-heading-title elementor-size-default">À PROPOS DE CANADIAN APARTMENT PROPERTIES REIT
574 +</h5> </div>
575 + </div>
576 + </div>
577 + </div>
578 + </div>
579 + </section>
580 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-3bb72597 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3bb72597" data-element_type="section" data-e-type="section">
581 + <div class="elementor-container elementor-column-gap-default">
582 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7b3c9712" data-id="7b3c9712" data-element_type="column" data-e-type="column">
583 + <div class="elementor-widget-wrap elementor-element-populated">
584 + <div class="elementor-element elementor-element-55c96f09 elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="55c96f09" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&quot;,&quot;library&quot;:&quot;&quot;}}" data-widget_type="nav-menu.default">
585 + <div class="elementor-widget-container">
586 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
587 + <ul id="menu-1-55c96f09" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29501"><a href="https://www.capreit.ca/fr/a-propos/qui-nous-sommes/" class="elementor-item">Qui nous sommes</a></li>
588 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29609"><a href="https://www.capreit.ca/fr/a-propos/equipe-de-direction/" class="elementor-item">Équipe de direction</a></li>
589 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-48869"><a href="/fr/louer/vivre-chez-canadian-apartment-properties-reit/#nouvelles-capreit" class="elementor-item elementor-item-anchor">Nouvelles CAPREIT</a></li>
590 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-32046"><a href="https://www.capreit.ca/fr/a-propos/notre-bilan-esg/" class="elementor-item">Notre histoire en matière d&rsquo;environnement, de société et de gouvernance</a></li>
591 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49615"><a href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/" class="elementor-item">Notre blogue</a></li>
592 +</ul> </nav>
593 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
594 + <ul id="menu-2-55c96f09" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29501"><a href="https://www.capreit.ca/fr/a-propos/qui-nous-sommes/" class="elementor-item" tabindex="-1">Qui nous sommes</a></li>
595 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29609"><a href="https://www.capreit.ca/fr/a-propos/equipe-de-direction/" class="elementor-item" tabindex="-1">Équipe de direction</a></li>
596 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-48869"><a href="/fr/louer/vivre-chez-canadian-apartment-properties-reit/#nouvelles-capreit" class="elementor-item elementor-item-anchor" tabindex="-1">Nouvelles CAPREIT</a></li>
597 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-32046"><a href="https://www.capreit.ca/fr/a-propos/notre-bilan-esg/" class="elementor-item" tabindex="-1">Notre histoire en matière d&rsquo;environnement, de société et de gouvernance</a></li>
598 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49615"><a href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/" class="elementor-item" tabindex="-1">Notre blogue</a></li>
599 +</ul> </nav>
600 + </div>
601 + </div>
602 + </div>
603 + </div>
604 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3355ff44" data-id="3355ff44" data-element_type="column" data-e-type="column">
605 + <div class="elementor-widget-wrap elementor-element-populated">
606 + <div class="elementor-element elementor-element-6f3ca6c6 elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="6f3ca6c6" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
607 + <div class="elementor-widget-container">
608 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
609 + <ul id="menu-1-6f3ca6c6" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29509"><a href="https://www.capreit.ca/fr/a-propos/se-joindre-a-notre-equipe/" class="elementor-item">Se joindre à notre équipe</a></li>
610 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29506"><a href="https://www.capreit.ca/fr/a-propos/notre-processus-dembauche/" class="elementor-item">Notre processus d’embauche</a></li>
611 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-41109"><a href="https://careers2-capreit.icims.com/jobs/search" class="elementor-item">Voir les postes ouverts</a></li>
612 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29507"><a href="https://www.capreit.ca/fr/a-propos/parcours-de-carriere/" class="elementor-item">Parcours de carrière</a></li>
613 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29508"><a href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" class="elementor-item">Programmes de perfectionnement des employés</a></li>
614 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-28230"><a href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" class="elementor-item">Programmes de perfectionnement des employés</a></li>
615 +</ul> </nav>
616 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
617 + <ul id="menu-2-6f3ca6c6" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29509"><a href="https://www.capreit.ca/fr/a-propos/se-joindre-a-notre-equipe/" class="elementor-item" tabindex="-1">Se joindre à notre équipe</a></li>
618 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29506"><a href="https://www.capreit.ca/fr/a-propos/notre-processus-dembauche/" class="elementor-item" tabindex="-1">Notre processus d’embauche</a></li>
619 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-41109"><a href="https://careers2-capreit.icims.com/jobs/search" class="elementor-item" tabindex="-1">Voir les postes ouverts</a></li>
620 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29507"><a href="https://www.capreit.ca/fr/a-propos/parcours-de-carriere/" class="elementor-item" tabindex="-1">Parcours de carrière</a></li>
621 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29508"><a href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" class="elementor-item" tabindex="-1">Programmes de perfectionnement des employés</a></li>
622 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-28230"><a href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" class="elementor-item" tabindex="-1">Programmes de perfectionnement des employés</a></li>
623 +</ul> </nav>
624 + </div>
625 + </div>
626 + </div>
627 + </div>
628 + </div>
629 + </section>
630 + </div>
631 + </div>
632 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-50c0cf5e" data-id="50c0cf5e" data-element_type="column" data-e-type="column">
633 + <div class="elementor-widget-wrap elementor-element-populated">
634 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-1654cfe0 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="1654cfe0" data-element_type="section" data-e-type="section">
635 + <div class="elementor-container elementor-column-gap-default">
636 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-67ad697c" data-id="67ad697c" data-element_type="column" data-e-type="column">
637 + <div class="elementor-widget-wrap elementor-element-populated">
638 + <div class="elementor-element elementor-element-3706ad6b elementor-widget elementor-widget-heading" data-id="3706ad6b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
639 + <div class="elementor-widget-container">
640 + <h5 class="elementor-heading-title elementor-size-default">En vedette</h5> </div>
641 + </div>
642 + </div>
643 + </div>
644 + </div>
645 + </section>
646 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-9a23d29 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="9a23d29" data-element_type="section" data-e-type="section">
647 + <div class="elementor-container elementor-column-gap-default">
648 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-fb9cab4" data-id="fb9cab4" data-element_type="column" data-e-type="column">
649 + <div class="elementor-widget-wrap elementor-element-populated">
650 + <div class="elementor-element elementor-element-8cc5b41 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="8cc5b41" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
651 + <div class="elementor-widget-container">
652 + <a class="elementor-cta" href="https://capreit.ca/fr/capgenerosite/">
653 + <div class="elementor-cta__bg-wrapper">
654 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2024/11/CAPGiving-Header-1024x541.png);" role="img" aria-label="CAPGiving-Header"></div>
655 + <div class="elementor-cta__bg-overlay"></div>
656 + </div>
657 + <div class="elementor-cta__content">
658 +
659 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
660 + L’engagement de CAPREIT envers les communautés par CAPGénérosité </h4>
661 +
662 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
663 + Nous sommes profondément engagés à faire une différence dans les communautés où nous travaillons </div>
664 +
665 + </div>
666 + </a>
667 + </div>
668 + </div>
669 + </div>
670 + </div>
671 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-1d7c06e" data-id="1d7c06e" data-element_type="column" data-e-type="column">
672 + <div class="elementor-widget-wrap elementor-element-populated">
673 + <div class="elementor-element elementor-element-e29d566 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="e29d566" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
674 + <div class="elementor-widget-container">
675 + <a class="elementor-cta" href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/#nouvelles-capreit">
676 + <div class="elementor-cta__bg-wrapper">
677 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2026/04/CAPREIT-NEWS-FR-CTA-1024x541.png);" role="img" aria-label="CAPREIT-NEWS-FR-CTA"></div>
678 + <div class="elementor-cta__bg-overlay"></div>
679 + </div>
680 + <div class="elementor-cta__content">
681 +
682 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
683 + Nouvelles CAPREIT </h4>
684 +
685 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
686 + Les dernières nouvelles et communiqués de presse concernant CAPREIT. </div>
687 +
688 + </div>
689 + </a>
690 + </div>
691 + </div>
692 + </div>
693 + </div>
694 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-5a4e66e0" data-id="5a4e66e0" data-element_type="column" data-e-type="column">
695 + <div class="elementor-widget-wrap elementor-element-populated">
696 + <div class="elementor-element elementor-element-71168b79 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="71168b79" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
697 + <div class="elementor-widget-container">
698 + <a class="elementor-cta" href="https://www.capreit.ca/fr/la-conservation-et-la-durabilite-partie-1-entreprise-responsable-avenir-durable/">
699 + <div class="elementor-cta__bg-wrapper">
700 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2024/02/ESG-video-series-Mega-Menu-CTA-01-1024x541.jpg);" role="img" aria-label="Wooden building blocks with green environmental symbols painted on each."></div>
701 + <div class="elementor-cta__bg-overlay"></div>
702 + </div>
703 + <div class="elementor-cta__content">
704 +
705 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
706 + La conservation et la durabilité chez CAPREIT </h4>
707 +
708 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
709 + Une série de vidéos sur notre gestion responsable
710 +de l'environnement </div>
711 +
712 + </div>
713 + </a>
714 + </div>
715 + </div>
716 + </div>
717 + </div>
718 + </div>
719 + </section>
720 + </div>
721 + </div>
722 + </div>
723 + </section>
724 + </div>
725 + </div>
726 + </div>
727 + <div class="header-sub" id="navigation-apropos">
728 + <div class="wrapper">
729 + <style id="elementor-post-17031">.elementor-17031 .elementor-element.elementor-element-ad30f1e{border-style:solid;border-width:1px 1px 1px 1px;padding:1px 1px 1px 40px;z-index:99;}.elementor-17031 .elementor-element.elementor-element-292c159f{padding:1px 1px 1px 1px;}.elementor-17031 .elementor-element.elementor-element-3bb72597{padding:1px 1px 1px 1px;}.elementor-17031 .elementor-element.elementor-element-55c96f09 .elementor-nav-menu .elementor-item{font-family:"Arial", Sans-serif;font-size:16px;font-weight:500;font-style:normal;}.elementor-17031 .elementor-element.elementor-element-6f3ca6c6 .elementor-nav-menu .elementor-item{font-family:"Arial", Sans-serif;font-size:16px;font-weight:500;}.elementor-17031 .elementor-element.elementor-element-1654cfe0{padding:1px 1px 1px 1px;}.elementor-17031 .elementor-element.elementor-element-3706ad6b > .elementor-widget-container{padding:1px 1px 1px 1px;}.elementor-17031 .elementor-element.elementor-element-3706ad6b .elementor-heading-title{font-family:"Arial", Sans-serif;font-weight:bold;}.elementor-17031 .elementor-element.elementor-element-9a23d29{padding:1px 1px 1px 1px;}.elementor-17031 .elementor-element.elementor-element-8cc5b41 .elementor-cta .elementor-cta__bg, .elementor-17031 .elementor-element.elementor-element-8cc5b41 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-17031 .elementor-element.elementor-element-8cc5b41 .elementor-cta__content{text-align:center;}.elementor-17031 .elementor-element.elementor-element-8cc5b41 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-17031 .elementor-element.elementor-element-8cc5b41 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-17031 .elementor-element.elementor-element-e29d566 .elementor-cta .elementor-cta__bg, .elementor-17031 .elementor-element.elementor-element-e29d566 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-17031 .elementor-element.elementor-element-e29d566 .elementor-cta__content{text-align:center;}.elementor-17031 .elementor-element.elementor-element-e29d566 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-17031 .elementor-element.elementor-element-e29d566 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-17031 .elementor-element.elementor-element-71168b79 .elementor-cta .elementor-cta__bg, .elementor-17031 .elementor-element.elementor-element-71168b79 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-17031 .elementor-element.elementor-element-71168b79 .elementor-cta__content{text-align:center;}.elementor-17031 .elementor-element.elementor-element-71168b79 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-17031 .elementor-element.elementor-element-71168b79 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}@media(min-width:768px){.elementor-17031 .elementor-element.elementor-element-65d657c8{width:50.134%;}.elementor-17031 .elementor-element.elementor-element-50c0cf5e{width:49.866%;}}</style> <div data-elementor-type="section" data-elementor-id="17031" class="elementor elementor-17031 elementor-13460" data-elementor-post-type="elementor_library">
730 + <section class="elementor-section elementor-top-section elementor-element elementor-element-ad30f1e elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="ad30f1e" data-element_type="section" data-e-type="section">
731 + <div class="elementor-container elementor-column-gap-default">
732 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65d657c8" data-id="65d657c8" data-element_type="column" data-e-type="column">
733 + <div class="elementor-widget-wrap elementor-element-populated">
734 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-292c159f elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="292c159f" data-element_type="section" data-e-type="section">
735 + <div class="elementor-container elementor-column-gap-default">
736 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-7bb1347f" data-id="7bb1347f" data-element_type="column" data-e-type="column">
737 + <div class="elementor-widget-wrap elementor-element-populated">
738 + <div class="elementor-element elementor-element-41f77c37 elementor-widget elementor-widget-heading" data-id="41f77c37" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
739 + <div class="elementor-widget-container">
740 + <h5 class="elementor-heading-title elementor-size-default">À PROPOS DE CANADIAN APARTMENT PROPERTIES REIT
741 +</h5> </div>
742 + </div>
743 + </div>
744 + </div>
745 + </div>
746 + </section>
747 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-3bb72597 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3bb72597" data-element_type="section" data-e-type="section">
748 + <div class="elementor-container elementor-column-gap-default">
749 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7b3c9712" data-id="7b3c9712" data-element_type="column" data-e-type="column">
750 + <div class="elementor-widget-wrap elementor-element-populated">
751 + <div class="elementor-element elementor-element-55c96f09 elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="55c96f09" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&quot;,&quot;library&quot;:&quot;&quot;}}" data-widget_type="nav-menu.default">
752 + <div class="elementor-widget-container">
753 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
754 + <ul id="menu-1-55c96f09" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29501"><a href="https://www.capreit.ca/fr/a-propos/qui-nous-sommes/" class="elementor-item">Qui nous sommes</a></li>
755 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29609"><a href="https://www.capreit.ca/fr/a-propos/equipe-de-direction/" class="elementor-item">Équipe de direction</a></li>
756 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-48869"><a href="/fr/louer/vivre-chez-canadian-apartment-properties-reit/#nouvelles-capreit" class="elementor-item elementor-item-anchor">Nouvelles CAPREIT</a></li>
757 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-32046"><a href="https://www.capreit.ca/fr/a-propos/notre-bilan-esg/" class="elementor-item">Notre histoire en matière d&rsquo;environnement, de société et de gouvernance</a></li>
758 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49615"><a href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/" class="elementor-item">Notre blogue</a></li>
759 +</ul> </nav>
760 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
761 + <ul id="menu-2-55c96f09" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29501"><a href="https://www.capreit.ca/fr/a-propos/qui-nous-sommes/" class="elementor-item" tabindex="-1">Qui nous sommes</a></li>
762 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29609"><a href="https://www.capreit.ca/fr/a-propos/equipe-de-direction/" class="elementor-item" tabindex="-1">Équipe de direction</a></li>
763 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-48869"><a href="/fr/louer/vivre-chez-canadian-apartment-properties-reit/#nouvelles-capreit" class="elementor-item elementor-item-anchor" tabindex="-1">Nouvelles CAPREIT</a></li>
764 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-32046"><a href="https://www.capreit.ca/fr/a-propos/notre-bilan-esg/" class="elementor-item" tabindex="-1">Notre histoire en matière d&rsquo;environnement, de société et de gouvernance</a></li>
765 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49615"><a href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/" class="elementor-item" tabindex="-1">Notre blogue</a></li>
766 +</ul> </nav>
767 + </div>
768 + </div>
769 + </div>
770 + </div>
771 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3355ff44" data-id="3355ff44" data-element_type="column" data-e-type="column">
772 + <div class="elementor-widget-wrap elementor-element-populated">
773 + <div class="elementor-element elementor-element-6f3ca6c6 elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="6f3ca6c6" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
774 + <div class="elementor-widget-container">
775 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
776 + <ul id="menu-1-6f3ca6c6" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29509"><a href="https://www.capreit.ca/fr/a-propos/se-joindre-a-notre-equipe/" class="elementor-item">Se joindre à notre équipe</a></li>
777 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29506"><a href="https://www.capreit.ca/fr/a-propos/notre-processus-dembauche/" class="elementor-item">Notre processus d’embauche</a></li>
778 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-41109"><a href="https://careers2-capreit.icims.com/jobs/search" class="elementor-item">Voir les postes ouverts</a></li>
779 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29507"><a href="https://www.capreit.ca/fr/a-propos/parcours-de-carriere/" class="elementor-item">Parcours de carrière</a></li>
780 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29508"><a href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" class="elementor-item">Programmes de perfectionnement des employés</a></li>
781 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-28230"><a href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" class="elementor-item">Programmes de perfectionnement des employés</a></li>
782 +</ul> </nav>
783 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
784 + <ul id="menu-2-6f3ca6c6" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29509"><a href="https://www.capreit.ca/fr/a-propos/se-joindre-a-notre-equipe/" class="elementor-item" tabindex="-1">Se joindre à notre équipe</a></li>
785 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29506"><a href="https://www.capreit.ca/fr/a-propos/notre-processus-dembauche/" class="elementor-item" tabindex="-1">Notre processus d’embauche</a></li>
786 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-41109"><a href="https://careers2-capreit.icims.com/jobs/search" class="elementor-item" tabindex="-1">Voir les postes ouverts</a></li>
787 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29507"><a href="https://www.capreit.ca/fr/a-propos/parcours-de-carriere/" class="elementor-item" tabindex="-1">Parcours de carrière</a></li>
788 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29508"><a href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" class="elementor-item" tabindex="-1">Programmes de perfectionnement des employés</a></li>
789 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-28230"><a href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" class="elementor-item" tabindex="-1">Programmes de perfectionnement des employés</a></li>
790 +</ul> </nav>
791 + </div>
792 + </div>
793 + </div>
794 + </div>
795 + </div>
796 + </section>
797 + </div>
798 + </div>
799 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-50c0cf5e" data-id="50c0cf5e" data-element_type="column" data-e-type="column">
800 + <div class="elementor-widget-wrap elementor-element-populated">
801 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-1654cfe0 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="1654cfe0" data-element_type="section" data-e-type="section">
802 + <div class="elementor-container elementor-column-gap-default">
803 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-67ad697c" data-id="67ad697c" data-element_type="column" data-e-type="column">
804 + <div class="elementor-widget-wrap elementor-element-populated">
805 + <div class="elementor-element elementor-element-3706ad6b elementor-widget elementor-widget-heading" data-id="3706ad6b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
806 + <div class="elementor-widget-container">
807 + <h5 class="elementor-heading-title elementor-size-default">En vedette</h5> </div>
808 + </div>
809 + </div>
810 + </div>
811 + </div>
812 + </section>
813 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-9a23d29 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="9a23d29" data-element_type="section" data-e-type="section">
814 + <div class="elementor-container elementor-column-gap-default">
815 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-fb9cab4" data-id="fb9cab4" data-element_type="column" data-e-type="column">
816 + <div class="elementor-widget-wrap elementor-element-populated">
817 + <div class="elementor-element elementor-element-8cc5b41 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="8cc5b41" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
818 + <div class="elementor-widget-container">
819 + <a class="elementor-cta" href="https://capreit.ca/fr/capgenerosite/">
820 + <div class="elementor-cta__bg-wrapper">
821 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2024/11/CAPGiving-Header-1024x541.png);" role="img" aria-label="CAPGiving-Header"></div>
822 + <div class="elementor-cta__bg-overlay"></div>
823 + </div>
824 + <div class="elementor-cta__content">
825 +
826 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
827 + L’engagement de CAPREIT envers les communautés par CAPGénérosité </h4>
828 +
829 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
830 + Nous sommes profondément engagés à faire une différence dans les communautés où nous travaillons </div>
831 +
832 + </div>
833 + </a>
834 + </div>
835 + </div>
836 + </div>
837 + </div>
838 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-1d7c06e" data-id="1d7c06e" data-element_type="column" data-e-type="column">
839 + <div class="elementor-widget-wrap elementor-element-populated">
840 + <div class="elementor-element elementor-element-e29d566 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="e29d566" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
841 + <div class="elementor-widget-container">
842 + <a class="elementor-cta" href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/#nouvelles-capreit">
843 + <div class="elementor-cta__bg-wrapper">
844 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2026/04/CAPREIT-NEWS-FR-CTA-1024x541.png);" role="img" aria-label="CAPREIT-NEWS-FR-CTA"></div>
845 + <div class="elementor-cta__bg-overlay"></div>
846 + </div>
847 + <div class="elementor-cta__content">
848 +
849 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
850 + Nouvelles CAPREIT </h4>
851 +
852 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
853 + Les dernières nouvelles et communiqués de presse concernant CAPREIT. </div>
854 +
855 + </div>
856 + </a>
857 + </div>
858 + </div>
859 + </div>
860 + </div>
861 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-5a4e66e0" data-id="5a4e66e0" data-element_type="column" data-e-type="column">
862 + <div class="elementor-widget-wrap elementor-element-populated">
863 + <div class="elementor-element elementor-element-71168b79 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="71168b79" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
864 + <div class="elementor-widget-container">
865 + <a class="elementor-cta" href="https://www.capreit.ca/fr/la-conservation-et-la-durabilite-partie-1-entreprise-responsable-avenir-durable/">
866 + <div class="elementor-cta__bg-wrapper">
867 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2024/02/ESG-video-series-Mega-Menu-CTA-01-1024x541.jpg);" role="img" aria-label="Wooden building blocks with green environmental symbols painted on each."></div>
868 + <div class="elementor-cta__bg-overlay"></div>
869 + </div>
870 + <div class="elementor-cta__content">
871 +
872 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
873 + La conservation et la durabilité chez CAPREIT </h4>
874 +
875 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
876 + Une série de vidéos sur notre gestion responsable
877 +de l'environnement </div>
878 +
879 + </div>
880 + </a>
881 + </div>
882 + </div>
883 + </div>
884 + </div>
885 + </div>
886 + </section>
887 + </div>
888 + </div>
889 + </div>
890 + </section>
891 + </div>
892 + </div>
893 + </div>
894 + <div class="header-sub" id="navigation-partner">
895 + <div class="wrapper">
896 + <style id="elementor-post-64019">.elementor-64019 .elementor-element.elementor-element-34f63c5{border-style:solid;border-width:1px 1px 1px 1px;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:1px 1px 1px 40px;z-index:99;}.elementor-64019 .elementor-element.elementor-element-34f63c5 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-64019 .elementor-element.elementor-element-13c9536{padding:1px 1px 1px 1px;}.elementor-64019 .elementor-element.elementor-element-6713857c{padding:1px 1px 1px 1px;}.elementor-64019 .elementor-element.elementor-element-2caa34e > .elementor-widget-container{background-color:#FFFCF7;}.elementor-64019 .elementor-element.elementor-element-2caa34e .elementor-nav-menu .elementor-item{font-family:"Arial", Sans-serif;font-size:16px;font-weight:500;font-style:normal;}.elementor-64019 .elementor-element.elementor-element-2caa34e .elementor-nav-menu--dropdown{background-color:#FFFCF7;}.elementor-64019 .elementor-element.elementor-element-2caa34e .elementor-nav-menu--dropdown a:hover,
897 + .elementor-64019 .elementor-element.elementor-element-2caa34e .elementor-nav-menu--dropdown a:focus,
898 + .elementor-64019 .elementor-element.elementor-element-2caa34e .elementor-nav-menu--dropdown a.elementor-item-active,
899 + .elementor-64019 .elementor-element.elementor-element-2caa34e .elementor-nav-menu--dropdown a.highlighted{background-color:#FFFFFF;}.elementor-64019 .elementor-element.elementor-element-2caa34e .elementor-nav-menu--dropdown a.elementor-item-active{color:#AF5341;}.elementor-64019 .elementor-element.elementor-element-3a518e > .elementor-widget-container{background-color:#FFFCF7;}.elementor-64019 .elementor-element.elementor-element-3a518e .elementor-nav-menu .elementor-item{font-family:"Arial", Sans-serif;font-size:16px;font-weight:500;}.elementor-64019 .elementor-element.elementor-element-3a518e .elementor-nav-menu--dropdown{background-color:#FFFCF7;}.elementor-64019 .elementor-element.elementor-element-3a518e .elementor-nav-menu--dropdown a:hover,
900 + .elementor-64019 .elementor-element.elementor-element-3a518e .elementor-nav-menu--dropdown a:focus,
901 + .elementor-64019 .elementor-element.elementor-element-3a518e .elementor-nav-menu--dropdown a.elementor-item-active,
902 + .elementor-64019 .elementor-element.elementor-element-3a518e .elementor-nav-menu--dropdown a.highlighted{background-color:#FFFFFF;}.elementor-64019 .elementor-element.elementor-element-3a518e .elementor-nav-menu--dropdown a.elementor-item-active{color:#AF5341;}.elementor-64019 .elementor-element.elementor-element-58b3b64d{padding:1px 1px 1px 1px;}.elementor-64019 .elementor-element.elementor-element-3a1d2d62 > .elementor-widget-container{padding:1px 1px 1px 1px;}.elementor-64019 .elementor-element.elementor-element-3a1d2d62 .elementor-heading-title{font-family:"Arial", Sans-serif;font-weight:bold;}.elementor-64019 .elementor-element.elementor-element-23edf8cc{padding:1px 1px 1px 1px;}.elementor-64019 .elementor-element.elementor-element-6c3bb8a4 .elementor-cta .elementor-cta__bg, .elementor-64019 .elementor-element.elementor-element-6c3bb8a4 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-64019 .elementor-element.elementor-element-6c3bb8a4 .elementor-cta__content{text-align:center;}.elementor-64019 .elementor-element.elementor-element-6c3bb8a4 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-64019 .elementor-element.elementor-element-12dbd159 .elementor-cta .elementor-cta__bg, .elementor-64019 .elementor-element.elementor-element-12dbd159 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-64019 .elementor-element.elementor-element-12dbd159 .elementor-cta__content{text-align:center;}.elementor-64019 .elementor-element.elementor-element-12dbd159 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-64019 .elementor-element.elementor-element-7bcea2d0 .elementor-cta .elementor-cta__bg, .elementor-64019 .elementor-element.elementor-element-7bcea2d0 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-64019 .elementor-element.elementor-element-7bcea2d0 .elementor-cta__content{text-align:center;}.elementor-64019 .elementor-element.elementor-element-7bcea2d0 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}@media(min-width:768px){.elementor-64019 .elementor-element.elementor-element-7b29acf2{width:50.134%;}.elementor-64019 .elementor-element.elementor-element-5a8d58db{width:49.866%;}}</style> <div data-elementor-type="section" data-elementor-id="64019" class="elementor elementor-64019" data-elementor-post-type="elementor_library">
903 + <section class="elementor-section elementor-top-section elementor-element elementor-element-34f63c5 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="34f63c5" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
904 + <div class="elementor-container elementor-column-gap-default">
905 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-7b29acf2" data-id="7b29acf2" data-element_type="column" data-e-type="column">
906 + <div class="elementor-widget-wrap elementor-element-populated">
907 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-13c9536 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="13c9536" data-element_type="section" data-e-type="section">
908 + <div class="elementor-container elementor-column-gap-default">
909 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-1cbbb382" data-id="1cbbb382" data-element_type="column" data-e-type="column">
910 + <div class="elementor-widget-wrap elementor-element-populated">
911 + <div class="elementor-element elementor-element-1884e6e0 elementor-widget elementor-widget-heading" data-id="1884e6e0" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
912 + <div class="elementor-widget-container">
913 + <h5 class="elementor-heading-title elementor-size-default">Partner with CAPREIT </h5> </div>
914 + </div>
915 + </div>
916 + </div>
917 + </div>
918 + </section>
919 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-6713857c elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6713857c" data-element_type="section" data-e-type="section">
920 + <div class="elementor-container elementor-column-gap-default">
921 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-2eab85e7" data-id="2eab85e7" data-element_type="column" data-e-type="column">
922 + <div class="elementor-widget-wrap elementor-element-populated">
923 + <div class="elementor-element elementor-element-2caa34e elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="2caa34e" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&quot;,&quot;library&quot;:&quot;&quot;}}" data-widget_type="nav-menu.default">
924 + <div class="elementor-widget-container">
925 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-none">
926 + <ul id="menu-1-2caa34e" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66984"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/" class="elementor-item">Collaborer avec CAPREIT​</a></li>
927 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66985"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/devenir-un-fournisseur/" class="elementor-item">Devenir un fournisseur</a></li>
928 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-72485"><a href="https://www.capreit.ca/vendor-code-of-conduct" class="elementor-item">CAPREIT&rsquo;s Vendor Code of Conduct</a></li>
929 +</ul> </nav>
930 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
931 + <ul id="menu-2-2caa34e" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66984"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/" class="elementor-item" tabindex="-1">Collaborer avec CAPREIT​</a></li>
932 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66985"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/devenir-un-fournisseur/" class="elementor-item" tabindex="-1">Devenir un fournisseur</a></li>
933 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-72485"><a href="https://www.capreit.ca/vendor-code-of-conduct" class="elementor-item" tabindex="-1">CAPREIT&rsquo;s Vendor Code of Conduct</a></li>
934 +</ul> </nav>
935 + </div>
936 + </div>
937 + </div>
938 + </div>
939 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-4f989c82" data-id="4f989c82" data-element_type="column" data-e-type="column">
940 + <div class="elementor-widget-wrap elementor-element-populated">
941 + <div class="elementor-element elementor-element-3a518e elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="3a518e" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
942 + <div class="elementor-widget-container">
943 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
944 + <ul id="menu-1-3a518e" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66979"><a href="https://www.capreit.ca/fr/commercial/" class="elementor-item">Commercial</a></li>
945 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66986"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/revenus-accessoires-et-partenariats-daffaires/" class="elementor-item">Revenus accessoires et partenariats d’affaires</a></li>
946 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66987"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/partager-vos-commentaires/" class="elementor-item">Partager vos commentaires</a></li>
947 +</ul> </nav>
948 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
949 + <ul id="menu-2-3a518e" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66979"><a href="https://www.capreit.ca/fr/commercial/" class="elementor-item" tabindex="-1">Commercial</a></li>
950 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66986"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/revenus-accessoires-et-partenariats-daffaires/" class="elementor-item" tabindex="-1">Revenus accessoires et partenariats d’affaires</a></li>
951 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66987"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/partager-vos-commentaires/" class="elementor-item" tabindex="-1">Partager vos commentaires</a></li>
952 +</ul> </nav>
953 + </div>
954 + </div>
955 + </div>
956 + </div>
957 + </div>
958 + </section>
959 + </div>
960 + </div>
961 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-5a8d58db" data-id="5a8d58db" data-element_type="column" data-e-type="column">
962 + <div class="elementor-widget-wrap elementor-element-populated">
963 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-58b3b64d elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="58b3b64d" data-element_type="section" data-e-type="section">
964 + <div class="elementor-container elementor-column-gap-default">
965 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5398c5db" data-id="5398c5db" data-element_type="column" data-e-type="column">
966 + <div class="elementor-widget-wrap elementor-element-populated">
967 + <div class="elementor-element elementor-element-3a1d2d62 elementor-widget elementor-widget-heading" data-id="3a1d2d62" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
968 + <div class="elementor-widget-container">
969 + <h5 class="elementor-heading-title elementor-size-default">Featured</h5> </div>
970 + </div>
971 + </div>
972 + </div>
973 + </div>
974 + </section>
975 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-23edf8cc elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="23edf8cc" data-element_type="section" data-e-type="section">
976 + <div class="elementor-container elementor-column-gap-default">
977 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-6c601002" data-id="6c601002" data-element_type="column" data-e-type="column">
978 + <div class="elementor-widget-wrap elementor-element-populated">
979 + <div class="elementor-element elementor-element-6c3bb8a4 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="6c3bb8a4" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
980 + <div class="elementor-widget-container">
981 + <a class="elementor-cta" href="/partner-with-capreit/become-a-vendor/">
982 + <div class="elementor-cta__bg-wrapper">
983 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2024/03/Vendor-button-01-1-300x200.png);" role="img" aria-label="Vendor-button-01.png"></div>
984 + <div class="elementor-cta__bg-overlay"></div>
985 + </div>
986 + <div class="elementor-cta__content">
987 +
988 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
989 + Become a Vendor </h4>
990 +
991 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
992 + Interested in providing goods or services to our communities? </div>
993 +
994 + </div>
995 + </a>
996 + </div>
997 + </div>
998 + </div>
999 + </div>
1000 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4d894f72" data-id="4d894f72" data-element_type="column" data-e-type="column">
1001 + <div class="elementor-widget-wrap elementor-element-populated">
1002 + <div class="elementor-element elementor-element-12dbd159 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="12dbd159" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
1003 + <div class="elementor-widget-container">
1004 + <a class="elementor-cta" href="/commercial/">
1005 + <div class="elementor-cta__bg-wrapper">
1006 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2023/12/Commercial-Button-02-300x200.png);" role="img" aria-label="Commercial-Button-02.png"></div>
1007 + <div class="elementor-cta__bg-overlay"></div>
1008 + </div>
1009 + <div class="elementor-cta__content">
1010 +
1011 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
1012 + Commercial Leasing </h4>
1013 +
1014 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
1015 + Find the perfect space for your business </div>
1016 +
1017 + </div>
1018 + </a>
1019 + </div>
1020 + </div>
1021 + </div>
1022 + </div>
1023 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-401f3f2e" data-id="401f3f2e" data-element_type="column" data-e-type="column">
1024 + <div class="elementor-widget-wrap elementor-element-populated">
1025 + <div class="elementor-element elementor-element-7bcea2d0 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="7bcea2d0" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
1026 + <div class="elementor-widget-container">
1027 + <a class="elementor-cta" href="/partner-with-capreit/vendor-feedback/">
1028 + <div class="elementor-cta__bg-wrapper">
1029 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2023/12/fedback-01-1-300x200.jpg);" role="img" aria-label="fedback-01-1.jpg"></div>
1030 + <div class="elementor-cta__bg-overlay"></div>
1031 + </div>
1032 + <div class="elementor-cta__content">
1033 +
1034 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
1035 + Feedback for us? </h4>
1036 +
1037 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
1038 + Confidential Vendor Complaint Process </div>
1039 +
1040 + </div>
1041 + </a>
1042 + </div>
1043 + </div>
1044 + </div>
1045 + </div>
1046 + </div>
1047 + </section>
1048 + </div>
1049 + </div>
1050 + </div>
1051 + </section>
1052 + </div>
1053 + </div>
1054 + </div>
1055 + <div class="header-sub" id="navigation-partnerfr">
1056 + <div class="wrapper">
1057 + <style id="elementor-post-64027">.elementor-64027 .elementor-element.elementor-element-73223984{border-style:solid;border-width:1px 1px 1px 1px;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:1px 1px 1px 40px;z-index:99;}.elementor-64027 .elementor-element.elementor-element-73223984 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-64027 .elementor-element.elementor-element-5dfa35a7{padding:1px 1px 1px 1px;}.elementor-64027 .elementor-element.elementor-element-2cb329ad{padding:1px 1px 1px 1px;}.elementor-64027 .elementor-element.elementor-element-5340691c > .elementor-widget-container{background-color:#FFFCF7;}.elementor-64027 .elementor-element.elementor-element-5340691c .elementor-nav-menu .elementor-item{font-family:"Arial", Sans-serif;font-size:16px;font-weight:500;font-style:normal;}.elementor-64027 .elementor-element.elementor-element-5340691c .elementor-nav-menu--dropdown{background-color:#FFFCF7;}.elementor-64027 .elementor-element.elementor-element-5340691c .elementor-nav-menu--dropdown a:hover,
1058 + .elementor-64027 .elementor-element.elementor-element-5340691c .elementor-nav-menu--dropdown a:focus,
1059 + .elementor-64027 .elementor-element.elementor-element-5340691c .elementor-nav-menu--dropdown a.elementor-item-active,
1060 + .elementor-64027 .elementor-element.elementor-element-5340691c .elementor-nav-menu--dropdown a.highlighted{background-color:#FFFFFF;}.elementor-64027 .elementor-element.elementor-element-5340691c .elementor-nav-menu--dropdown a.elementor-item-active{color:#AF5341;}.elementor-64027 .elementor-element.elementor-element-5491f69a > .elementor-widget-container{background-color:#FFFCF7;}.elementor-64027 .elementor-element.elementor-element-5491f69a .elementor-nav-menu .elementor-item{font-family:"Arial", Sans-serif;font-size:16px;font-weight:500;}.elementor-64027 .elementor-element.elementor-element-5491f69a .elementor-nav-menu--dropdown{background-color:#FFFCF7;}.elementor-64027 .elementor-element.elementor-element-5491f69a .elementor-nav-menu--dropdown a:hover,
1061 + .elementor-64027 .elementor-element.elementor-element-5491f69a .elementor-nav-menu--dropdown a:focus,
1062 + .elementor-64027 .elementor-element.elementor-element-5491f69a .elementor-nav-menu--dropdown a.elementor-item-active,
1063 + .elementor-64027 .elementor-element.elementor-element-5491f69a .elementor-nav-menu--dropdown a.highlighted{background-color:#FFFFFF;}.elementor-64027 .elementor-element.elementor-element-5491f69a .elementor-nav-menu--dropdown a.elementor-item-active{color:#AF5341;}.elementor-64027 .elementor-element.elementor-element-1e3dfeb5{padding:1px 1px 1px 1px;}.elementor-64027 .elementor-element.elementor-element-75cff038 > .elementor-widget-container{padding:1px 1px 1px 1px;}.elementor-64027 .elementor-element.elementor-element-75cff038 .elementor-heading-title{font-family:"Arial", Sans-serif;font-weight:bold;}.elementor-64027 .elementor-element.elementor-element-1d19e2c7{padding:1px 1px 1px 1px;}.elementor-64027 .elementor-element.elementor-element-fc9f546 .elementor-cta .elementor-cta__bg, .elementor-64027 .elementor-element.elementor-element-fc9f546 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-64027 .elementor-element.elementor-element-fc9f546 .elementor-cta__content{text-align:center;}.elementor-64027 .elementor-element.elementor-element-fc9f546 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-64027 .elementor-element.elementor-element-f739425 .elementor-cta .elementor-cta__bg, .elementor-64027 .elementor-element.elementor-element-f739425 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-64027 .elementor-element.elementor-element-f739425 .elementor-cta__content{text-align:center;}.elementor-64027 .elementor-element.elementor-element-f739425 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-64027 .elementor-element.elementor-element-326f244 .elementor-cta .elementor-cta__bg, .elementor-64027 .elementor-element.elementor-element-326f244 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-64027 .elementor-element.elementor-element-326f244 .elementor-cta__content{text-align:center;}.elementor-64027 .elementor-element.elementor-element-326f244 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}@media(min-width:768px){.elementor-64027 .elementor-element.elementor-element-446ec180{width:50.134%;}.elementor-64027 .elementor-element.elementor-element-5c8911ab{width:49.866%;}}</style> <div data-elementor-type="section" data-elementor-id="64027" class="elementor elementor-64027" data-elementor-post-type="elementor_library">
1064 + <section class="elementor-section elementor-top-section elementor-element elementor-element-73223984 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="73223984" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
1065 + <div class="elementor-container elementor-column-gap-default">
1066 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-446ec180" data-id="446ec180" data-element_type="column" data-e-type="column">
1067 + <div class="elementor-widget-wrap elementor-element-populated">
1068 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-5dfa35a7 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5dfa35a7" data-element_type="section" data-e-type="section">
1069 + <div class="elementor-container elementor-column-gap-default">
1070 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-354a0545" data-id="354a0545" data-element_type="column" data-e-type="column">
1071 + <div class="elementor-widget-wrap elementor-element-populated">
1072 + <div class="elementor-element elementor-element-52e25c65 elementor-widget elementor-widget-heading" data-id="52e25c65" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
1073 + <div class="elementor-widget-container">
1074 + <h5 class="elementor-heading-title elementor-size-default">Collaborer avec CAPREIT </h5> </div>
1075 + </div>
1076 + </div>
1077 + </div>
1078 + </div>
1079 + </section>
1080 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-2cb329ad elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2cb329ad" data-element_type="section" data-e-type="section">
1081 + <div class="elementor-container elementor-column-gap-default">
1082 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-4dd35f99" data-id="4dd35f99" data-element_type="column" data-e-type="column">
1083 + <div class="elementor-widget-wrap elementor-element-populated">
1084 + <div class="elementor-element elementor-element-5340691c elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="5340691c" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&quot;,&quot;library&quot;:&quot;&quot;}}" data-widget_type="nav-menu.default">
1085 + <div class="elementor-widget-container">
1086 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-none">
1087 + <ul id="menu-1-5340691c" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68515"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/devenir-un-fournisseur/" class="elementor-item">Devenir un fournisseur</a></li>
1088 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-72490"><a href="https://www.capreit.ca/code-de-conduite-des-fournisseurs" class="elementor-item">Code de conduite des fournisseurs de CAPREIT</a></li>
1089 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68514"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/" class="elementor-item">Collaborer avec CAPREIT​</a></li>
1090 +</ul> </nav>
1091 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
1092 + <ul id="menu-2-5340691c" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68515"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/devenir-un-fournisseur/" class="elementor-item" tabindex="-1">Devenir un fournisseur</a></li>
1093 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-72490"><a href="https://www.capreit.ca/code-de-conduite-des-fournisseurs" class="elementor-item" tabindex="-1">Code de conduite des fournisseurs de CAPREIT</a></li>
1094 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68514"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/" class="elementor-item" tabindex="-1">Collaborer avec CAPREIT​</a></li>
1095 +</ul> </nav>
1096 + </div>
1097 + </div>
1098 + </div>
1099 + </div>
1100 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7b3f8d5c" data-id="7b3f8d5c" data-element_type="column" data-e-type="column">
1101 + <div class="elementor-widget-wrap elementor-element-populated">
1102 + <div class="elementor-element elementor-element-5491f69a elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="5491f69a" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
1103 + <div class="elementor-widget-container">
1104 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
1105 + <ul id="menu-1-5491f69a" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68516"><a href="https://www.capreit.ca/fr/commercial/" class="elementor-item">Commercial</a></li>
1106 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68517"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/revenus-accessoires-et-partenariats-daffaires/" class="elementor-item">Revenus accessoires et partenariats d’affaires</a></li>
1107 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68518"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/partager-vos-commentaires/" class="elementor-item">Partager vos commentaires</a></li>
1108 +</ul> </nav>
1109 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
1110 + <ul id="menu-2-5491f69a" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68516"><a href="https://www.capreit.ca/fr/commercial/" class="elementor-item" tabindex="-1">Commercial</a></li>
1111 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68517"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/revenus-accessoires-et-partenariats-daffaires/" class="elementor-item" tabindex="-1">Revenus accessoires et partenariats d’affaires</a></li>
1112 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68518"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/partager-vos-commentaires/" class="elementor-item" tabindex="-1">Partager vos commentaires</a></li>
1113 +</ul> </nav>
1114 + </div>
1115 + </div>
1116 + </div>
1117 + </div>
1118 + </div>
1119 + </section>
1120 + </div>
1121 + </div>
1122 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-5c8911ab" data-id="5c8911ab" data-element_type="column" data-e-type="column">
1123 + <div class="elementor-widget-wrap elementor-element-populated">
1124 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-1e3dfeb5 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="1e3dfeb5" data-element_type="section" data-e-type="section">
1125 + <div class="elementor-container elementor-column-gap-default">
1126 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-43fb11d2" data-id="43fb11d2" data-element_type="column" data-e-type="column">
1127 + <div class="elementor-widget-wrap elementor-element-populated">
1128 + <div class="elementor-element elementor-element-75cff038 elementor-widget elementor-widget-heading" data-id="75cff038" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
1129 + <div class="elementor-widget-container">
1130 + <h5 class="elementor-heading-title elementor-size-default">EN VEDETTE</h5> </div>
1131 + </div>
1132 + </div>
1133 + </div>
1134 + </div>
1135 + </section>
1136 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-1d19e2c7 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="1d19e2c7" data-element_type="section" data-e-type="section">
1137 + <div class="elementor-container elementor-column-gap-default">
1138 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-6f5ffde2" data-id="6f5ffde2" data-element_type="column" data-e-type="column">
1139 + <div class="elementor-widget-wrap elementor-element-populated">
1140 + <div class="elementor-element elementor-element-fc9f546 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="fc9f546" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
1141 + <div class="elementor-widget-container">
1142 + <a class="elementor-cta" href="https://www.capreit.ca/fr/collaborer-avec-capreit/devenir-un-fournisseur/">
1143 + <div class="elementor-cta__bg-wrapper">
1144 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2024/03/Vendor-button-01-1-300x200.png);" role="img" aria-label="Vendor-button-01.png"></div>
1145 + <div class="elementor-cta__bg-overlay"></div>
1146 + </div>
1147 + <div class="elementor-cta__content">
1148 +
1149 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
1150 + Devenir fournisseur </h4>
1151 +
1152 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
1153 + Intéressés à fournir des biens ou des services à nos communautés? </div>
1154 +
1155 + </div>
1156 + </a>
1157 + </div>
1158 + </div>
1159 + </div>
1160 + </div>
1161 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-1a1af82e" data-id="1a1af82e" data-element_type="column" data-e-type="column">
1162 + <div class="elementor-widget-wrap elementor-element-populated">
1163 + <div class="elementor-element elementor-element-f739425 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="f739425" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
1164 + <div class="elementor-widget-container">
1165 + <a class="elementor-cta" href="https://www.capreit.ca/fr/commercial/">
1166 + <div class="elementor-cta__bg-wrapper">
1167 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2023/12/Commercial-Button-02-300x200.png);" role="img" aria-label="Commercial-Button-02.png"></div>
1168 + <div class="elementor-cta__bg-overlay"></div>
1169 + </div>
1170 + <div class="elementor-cta__content">
1171 +
1172 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
1173 + Location commerciale </h4>
1174 +
1175 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
1176 + Trouvez l’espace parfait pour votre entreprise </div>
1177 +
1178 + </div>
1179 + </a>
1180 + </div>
1181 + </div>
1182 + </div>
1183 + </div>
1184 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-24f7917d" data-id="24f7917d" data-element_type="column" data-e-type="column">
1185 + <div class="elementor-widget-wrap elementor-element-populated">
1186 + <div class="elementor-element elementor-element-326f244 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="326f244" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
1187 + <div class="elementor-widget-container">
1188 + <a class="elementor-cta" href="https://www.capreit.ca/fr/collaborer-avec-capreit/partager-vos-commentaires/">
1189 + <div class="elementor-cta__bg-wrapper">
1190 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2023/12/fedback-01-1-300x200.jpg);" role="img" aria-label="fedback-01-1.jpg"></div>
1191 + <div class="elementor-cta__bg-overlay"></div>
1192 + </div>
1193 + <div class="elementor-cta__content">
1194 +
1195 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
1196 + Des commentaires pour nous? </h4>
1197 +
1198 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
1199 + Processus confidentiel de plaintes de fournisseur </div>
1200 +
1201 + </div>
1202 + </a>
1203 + </div>
1204 + </div>
1205 + </div>
1206 + </div>
1207 + </div>
1208 + </section>
1209 + </div>
1210 + </div>
1211 + </div>
1212 + </section>
1213 + </div>
1214 + </div>
1215 + </div>
1216 +</header>
1217 + <main class="main" id="main">
1218 +
1219 +<div class="property-header" id="property-header" data-id="23547">
1220 + <div class="wrapper">
1221 + <div class="property-main-menu">
1222 + <div class="property-main-menu-logo">
1223 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-propertydetail-mapmarker.svg"
1224 + alt="">
1225 + <a href="/fr/appartements-a-louer/ville-de-quebec-qc/">Ville de Québec</a>
1226 + <span class="spacer">|</span>
1227 + <a href="/fr/appartements-a-louer/saint-sacrement-ville-de-quebec-qc/">Saint-Sacrement</a>
1228 + </div>
1229 + <div class="property-main-menu-links">
1230 + <ul class="property-main-menu-links-list">
1231 + <li>
1232 + <div class="icon icon-heart"></div>
1233 + <button class="property-main-menu-toggle" data-overlay="list">
1234 + Voir ma liste </button>
1235 + </li>
1236 + <li>
1237 + <a class="property-main-menu-search button-large" href="/fr/appartements-a-louer/">
1238 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-propertydetail-search.svg"
1239 + alt="">
1240 + Chercher Unités à louer </a>
1241 + </li>
1242 + </ul>
1243 + </div>
1244 + </div>
1245 + </div>
1246 +</div>
1247 +
1248 +<div class="wrapper">
1249 +
1250 + <section class="property-hero">
1251 + <div class="property-hero-intro">
1252 + <div class="property-hero-primary">
1253 + <div class="property-hero-primary-image">
1254 + <img src="https://www.capreit.ca/wp-content/uploads/2021/09/1-Month-Rent-Free-BIL-2.jpg"
1255 + alt="Le Samuel Holland - Entrée résidentielle - louer à Québec, QC "
1256 + data-overlay="photos"
1257 + data-type="image"
1258 + data-video-id="">
1259 + </div>
1260 + <div class="property-hero-primary-logo">
1261 + Appartements Le Samuel-Holland
1262 + </div>
1263 + <ul class="property-hero-primary-features">
1264 + <li>
1265 + <a href="#incentives" class="button-small">
1266 + 1 mois de loyer gratuit
1267 + </a>
1268 + </li>
1269 + </ul>
1270 + <ul class="property-hero-primary-links">
1271 + <li>
1272 + <button class="property-hero-primary-links-tour button-small"
1273 + data-overlay="tour">
1274 + Tour virtuel </button>
1275 + </li>
1276 + <li>
1277 + <button class="property-hero-primary-links-photos button-small"
1278 + data-overlay="photos">
1279 + Voir la Galerie </button>
1280 + </li>
1281 + </ul>
1282 + </div>
1283 + <div class="property-hero-secondary">
1284 + <ul class="property-hero-secondary-images">
1285 + <li class="property-hero-secondary-images-item">
1286 + <img src="https://www.capreit.ca/wp-content/uploads/2021/09/0000_le-Samuel-Holland-830-ave-Ernest-Gagnon-Ville-de-Quebec-exterieur.jpg"
1287 + alt=""
1288 + data-overlay="photos"
1289 + data-index="1"
1290 + data-type="image"
1291 + data-video-id="">
1292 + </li>
1293 + <li class="property-hero-secondary-images-item">
1294 + <img src="https://www.capreit.ca/wp-content/uploads/2021/09/0004_le-Samuel-Holland-830-ave-Ernest-Gagnon-Ville-de-Quebec-salon-2.jpg"
1295 + alt=""
1296 + data-overlay="photos"
1297 + data-index="2"
1298 + data-type="image"
1299 + data-video-id="">
1300 + </li>
1301 + <li class="property-hero-secondary-images-item">
1302 + <img src="https://www.capreit.ca/wp-content/uploads/2022/05/Samuel-Holland-pool.jpg"
1303 + alt=""
1304 + data-overlay="photos"
1305 + data-index="3"
1306 + data-type="image"
1307 + data-video-id="">
1308 + </li>
1309 + <li class="property-hero-secondary-images-item">
1310 + <img src="https://www.capreit.ca/wp-content/uploads/2021/09/EDC_8210.jpg"
1311 + alt=""
1312 + data-overlay="photos"
1313 + data-index="4"
1314 + data-type="image"
1315 + data-video-id="">
1316 + </li>
1317 + </ul>
1318 + </div>
1319 + </div>
1320 + <div class="property-hero-details"
1321 +
1322 + >
1323 + <div class="property-hero-details-address">
1324 + <div class="property-hero-details-address-wrapper">
1325 + <h1 class="property-hero-details-address-title"
1326 + >
1327 + Appartements Le Samuel-Holland
1328 + </h1>
1329 + <ul class="property-hero-details-share">
1330 + <li>
1331 + <button id="my-list-23547" class="property-hero-details-share-item icon" onclick="window.toggleMyList(23547);">
1332 + Ajouter à ma liste </button>
1333 + </li>
1334 + <li>
1335 + <button class="property-hero-details-share-item icon icon-share"
1336 + data-share="toggle"
1337 + data-target="hero-details-share">
1338 + Partager </button>
1339 + </li>
1340 + </ul>
1341 + </div>
1342 + <div class="property-item-content-share" id="hero-details-share">
1343 + <div class="property-item-content-share-title">
1344 + Partager cette propriété
1345 + </div>
1346 + <ul class="property-item-content-share-list">
1347 + <li>
1348 + <button class="property-item-content-share-list-item"
1349 + data-share="facebook"
1350 + aria-label="Share via Facebook">
1351 + <div class="icon icon-share-facebook"></div>
1352 + </button>
1353 + </li>
1354 + <li>
1355 + <button class="property-item-content-share-list-item"
1356 + data-share="twitter"
1357 + data-text="Appartements Le Samuel-Holland"
1358 + aria-label="Share via Twitter">
1359 + <div class="icon icon-share-twitter"></div>
1360 + </button>
1361 + </li>
1362 + <li>
1363 + <button class="property-item-content-share-list-item"
1364 + data-share="linkedin"
1365 + data-text="Appartements Le Samuel-Holland"
1366 + aria-label="Share via LinkedIn">
1367 + <div class="icon icon-share-linkedin"></div>
1368 + </button>
1369 + </li>
1370 + <li>
1371 + <button class="property-item-content-share-list-item"
1372 + data-share="email"
1373 + data-text="Appartements Le Samuel-Holland"
1374 + aria-label="Share via E-Mail">
1375 + <div class="icon icon-share-email"></div>
1376 + </button>
1377 + </li>
1378 + <li>
1379 + <button class="property-item-content-share-list-item"
1380 + data-share="sms"
1381 + aria-label="Share via SMS">
1382 + <div class="icon icon-share-sms"></div>
1383 + </button>
1384 + </li>
1385 + </ul>
1386 + <button class="property-item-content-share-close" data-share="close"
1387 + data-target="hero-details-share">
1388 + Close
1389 + </button>
1390 + </div>
1391 + <div class="property-hero-details-address-street"
1392 +
1393 +
1394 + >
1395 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-propertydetail-mapmarker.svg"
1396 + alt="">
1397 + 1245, 1275 Chemin Ste. Foy, 830, 840, 850 Ave. Ernest-Gagnon, 875 Ave. Holland, Ville de Québec, QC, G1S 3R3
1398 + </div>
1399 + </div>
1400 + <ul class="property-hero-details-links">
1401 + <li>
1402 + <a class="button-large" target="_blank" href="https://book.le-samuel-holland.ca/">
1403 + Réserver une visite </a>
1404 + </li>
1405 + </ul>
1406 + <div class="property-hero-details-office"
1407 + data-loaded="true">
1408 + <h2>
1409 + Contacter le bureau de location </h2>
1410 + <div class="property-hero-details-office-address">
1411 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-propertydetail-mapmarker.svg"
1412 + alt="">
1413 + 830 avenue Ernest-Gagnon (Édifice 4), Quebec City, QC, G1S 3R3
1414 + </div>
1415 + <div class="property-hero-details-office-hours">
1416 +
1417 + Lun: 8:30 AM – 20:00 PM<br />
1418 +Mar à Ven: 8:30 AM – 17:00 PM<br />
1419 +Sam: 10:00 AM – 16:00 PM<br />
1420 +Dim: Fermé
1421 + </div>
1422 + </div>
1423 + <ul class="property-hero-details-contact">
1424 + <li>
1425 + <a href="tel:418-263-8675">
1426 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-propertydetail-phone.svg"
1427 + alt="">
1428 + 418-263-8675
1429 + </a>
1430 + </li>
1431 + <li>
1432 + <a target="_blank" href="./inquiry-form/">
1433 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-propertydetail-question.svg"
1434 + alt="">
1435 + Contactez-nous </a>
1436 + </li>
1437 + </ul>
1438 + </div>
1439 + </section>
1440 +
1441 +
1442 + <section class="property-options">
1443 +
1444 + <div class="property-options-header">
1445 + <h2 class="property-options-header-heading">
1446 + Vos options </h2>
1447 + <ul class="property-options-header-list">
1448 + <li>
1449 + Toutes les unités:
1450 + </li>
1451 + <li>
1452 + <div class="icon icon-barrier-free-entrances"></div>
1453 + Entrées sans entrave
1454 + </li>
1455 + <li>
1456 + <div class="icon icon-dogs"></div>
1457 + Chiens* acceptés
1458 + </li>
1459 + <li>
1460 + <div class="icon icon-cats"></div>
1461 + Chats* acceptés
1462 + </li>
1463 + <li>
1464 + <div class="icon icon-dog-policy"></div>
1465 + *Seules certaines races de chien sont acceptées
1466 + </li>
1467 + <li>
1468 + <div class="icon icon-pool"></div>
1469 + Piscine *
1470 + </li>
1471 + <li>
1472 + <div class="icon icon-gym"></div>
1473 + Salle d&#039;entraînement
1474 + </li>
1475 + <li>
1476 + <div class="icon icon-balcony"></div>
1477 + Balcons privés
1478 + </li>
1479 + <li>
1480 + <div class="icon icon-stove"></div>
1481 + Cuisinière incluse*
1482 + </li>
1483 + <li>
1484 + <div class="icon icon-fridge-included"></div>
1485 + Réfrigérateur inclus*
1486 + </li>
1487 + <li>
1488 + <div class="icon icon-party-room"></div>
1489 + Salle d’activités
1490 + </li>
1491 + <li>
1492 + <div class="icon icon-ev-charging"></div>
1493 + Recharge pour VÉ
1494 + </li>
1495 + <li>
1496 + <div class="icon icon-games-room"></div>
1497 + Salle de jeux
1498 + </li>
1499 + <li>
1500 + <div class="icon icon-outdoor-patio"></div>
1501 + Patio extérieur
1502 + </li>
1503 + <li>
1504 + <div class="icon icon-convenience-store"></div>
1505 + Dépanneur sur place
1506 + </li>
1507 + <li>
1508 + <div class="icon icon-laundry-in-building"></div>
1509 + Buanderie dans l’immeuble
1510 + </li>
1511 + <li>
1512 + <div class="icon icon-elevators"></div>
1513 + Ascenseurs
1514 + </li>
1515 + </ul>
1516 + </div>
1517 +
1518 + <ul class="property-options-list">
1519 +
1520 + <li class="property-options-list-item"
1521 + data-available="true">
1522 +
1523 +
1524 +
1525 + <div class="property-options-list-item-availability">
1526 + Immédiatement
1527 + </div>
1528 +
1529 + <div class="property-options-list-item-price">
1530 + Débutant à <b>1 175 $ - 1 265 $</b>
1531 + </div>
1532 +
1533 + <ul class="property-options-list-item-details">
1534 + <li class="property-options-item">
1535 + <div class="icon icon-bedroom"></div>
1536 + 1 1/2
1537 + </li>
1538 + <li class="property-options-item">
1539 + <div class="icon icon-floorplans"></div>
1540 +
1541 +
1542 +
1543 + Jusqu’à 370 pi ca.*
1544 +
1545 +
1546 +
1547 + </li>
1548 + </ul>
1549 +
1550 + <ul class="property-options-list-item-cta">
1551 + <li>
1552 + <a class="button"
1553 + target="_blank"
1554 + href="./inquiry-form/1-1-2/">
1555 + Contactez-nous </a>
1556 + </li>
1557 + <li>
1558 + <a class="button"
1559 + target="_blank"
1560 + href="./application-form/1-1-2/">
1561 + Allez-y! </a>
1562 + </li>
1563 + </ul>
1564 +
1565 +
1566 + </li>
1567 + <li class="property-options-list-item"
1568 + data-available="true">
1569 +
1570 +
1571 +
1572 + <div class="property-options-list-item-availability">
1573 + Immédiatement
1574 + </div>
1575 +
1576 + <div class="property-options-list-item-price">
1577 + Débutant à <b>1 250 $ - 1 540 $</b>
1578 + </div>
1579 +
1580 + <ul class="property-options-list-item-details">
1581 + <li class="property-options-item">
1582 + <div class="icon icon-bedroom"></div>
1583 + 3 1/2
1584 + </li>
1585 + <li class="property-options-item">
1586 + <div class="icon icon-floorplans"></div>
1587 +
1588 +
1589 +
1590 + Jusqu’à 995 pi ca.*
1591 +
1592 +
1593 +
1594 + </li>
1595 + </ul>
1596 +
1597 + <ul class="property-options-list-item-cta">
1598 + <li>
1599 + <a class="button"
1600 + target="_blank"
1601 + href="./inquiry-form/3-1-2/">
1602 + Contactez-nous </a>
1603 + </li>
1604 + <li>
1605 + <a class="button"
1606 + target="_blank"
1607 + href="./application-form/3-1-2/">
1608 + Allez-y! </a>
1609 + </li>
1610 + </ul>
1611 +
1612 +
1613 + </li>
1614 + <li class="property-options-list-item"
1615 + data-available="true">
1616 +
1617 +
1618 +
1619 + <div class="property-options-list-item-availability">
1620 + Immédiatement
1621 + </div>
1622 +
1623 + <div class="property-options-list-item-price">
1624 + Débutant à <b>1 485 $ - 1 650 $</b>
1625 + </div>
1626 +
1627 + <ul class="property-options-list-item-details">
1628 + <li class="property-options-item">
1629 + <div class="icon icon-bedroom"></div>
1630 + 3 1/2 + Coin détente
1631 + </li>
1632 + <li class="property-options-item">
1633 + <div class="icon icon-floorplans"></div>
1634 +
1635 +
1636 +
1637 + Jusqu’à 763 pi ca.*
1638 +
1639 +
1640 +
1641 + </li>
1642 + </ul>
1643 +
1644 + <ul class="property-options-list-item-cta">
1645 + <li>
1646 + <a class="button"
1647 + target="_blank"
1648 + href="./inquiry-form/3-1-2-coin-detente/">
1649 + Contactez-nous </a>
1650 + </li>
1651 + <li>
1652 + <a class="button"
1653 + target="_blank"
1654 + href="./application-form/3-1-2-coin-detente/">
1655 + Allez-y! </a>
1656 + </li>
1657 + </ul>
1658 +
1659 +
1660 + </li>
1661 + <li class="property-options-list-item"
1662 + data-available="true">
1663 +
1664 +
1665 +
1666 + <div class="property-options-list-item-availability">
1667 + Immédiatement
1668 + </div>
1669 +
1670 + <div class="property-options-list-item-price">
1671 + Débutant à <b>1 795 $ - 1 995 $</b>
1672 + </div>
1673 +
1674 + <ul class="property-options-list-item-details">
1675 + <li class="property-options-item">
1676 + <div class="icon icon-bedroom"></div>
1677 + 4 1/2
1678 + </li>
1679 + <li class="property-options-item">
1680 + <div class="icon icon-floorplans"></div>
1681 +
1682 +
1683 +
1684 + Jusqu’à 1175 pi ca.*
1685 +
1686 +
1687 +
1688 + </li>
1689 + </ul>
1690 +
1691 + <ul class="property-options-list-item-cta">
1692 + <li>
1693 + <a class="button"
1694 + target="_blank"
1695 + href="./inquiry-form/4-1-2/">
1696 + Contactez-nous </a>
1697 + </li>
1698 + <li>
1699 + <a class="button"
1700 + target="_blank"
1701 + href="./application-form/4-1-2/">
1702 + Allez-y! </a>
1703 + </li>
1704 + </ul>
1705 +
1706 +
1707 + </li>
1708 + <li class="property-options-list-item"
1709 + data-available="true">
1710 +
1711 +
1712 +
1713 + <div class="property-options-list-item-availability">
1714 + Immédiatement
1715 + </div>
1716 +
1717 + <div class="property-options-list-item-price">
1718 + Débutant à <b>1 985 $ - 2 220 $</b>
1719 + </div>
1720 +
1721 + <ul class="property-options-list-item-details">
1722 + <li class="property-options-item">
1723 + <div class="icon icon-bedroom"></div>
1724 + 5 1/2
1725 + </li>
1726 + <li class="property-options-item">
1727 + <div class="icon icon-floorplans"></div>
1728 +
1729 +
1730 +
1731 + Jusqu’à 1339 pi ca.*
1732 +
1733 +
1734 +
1735 + </li>
1736 + </ul>
1737 +
1738 + <ul class="property-options-list-item-cta">
1739 + <li>
1740 + <a class="button"
1741 + target="_blank"
1742 + href="./inquiry-form/5-1-2/">
1743 + Contactez-nous </a>
1744 + </li>
1745 + <li>
1746 + <a class="button"
1747 + target="_blank"
1748 + href="./application-form/5-1-2/">
1749 + Allez-y! </a>
1750 + </li>
1751 + </ul>
1752 +
1753 +
1754 + </li>
1755 +
1756 + <li aria-hidden="true">&nbsp;</li>
1757 +
1758 + </ul>
1759 +
1760 + <ul class="carousel-controls">
1761 + <li>
1762 + <button class="carousel-controls-item" data-direction="prev">
1763 + Previous
1764 + </button>
1765 + </li>
1766 + <li>
1767 + <button class="carousel-controls-item" data-direction="next">
1768 + Next
1769 + </button>
1770 + </li>
1771 + </ul>
1772 +
1773 + <div class="property-options-details">
1774 +
1775 + <div class="property-options-details-container">
1776 + <h3>
1777 + Caractéristiques de l’unité </h3>
1778 + <ul class="property-options-details-container-icons">
1779 + <li class="property-options-item">
1780 + <div class="icon icon-large icon-unit-balcony"></div>
1781 + Balcons privés
1782 + </li>
1783 + <li class="property-options-item">
1784 + <div class="icon icon-large icon-unit-oven"></div>
1785 + Cuisinière incluse*
1786 + </li>
1787 + <li class="property-options-item">
1788 + <div class="icon icon-large icon-unit-refrigerator"></div>
1789 + Réfrigérateur inclus*
1790 + </li>
1791 +
1792 + </ul>
1793 +
1794 +
1795 + </div>
1796 +
1797 + <div class="property-options-details-container">
1798 + <h3>
1799 + Commodités de l'immeuble </h3>
1800 + <ul class="property-options-details-container-icons">
1801 + <li class="property-options-item">
1802 + <div class="icon icon-large icon-building-pool"></div>
1803 + Piscine *
1804 + </li>
1805 + <li class="property-options-item">
1806 + <div class="icon icon-large icon-building-fitness"></div>
1807 + Salle d&#039;entraînement
1808 + </li>
1809 + <li class="property-options-item">
1810 + <div class="icon icon-large icon-building-party-room"></div>
1811 + Salle d’activités
1812 + </li>
1813 + <li class="property-options-item">
1814 + <div class="icon icon-large icon-charging"></div>
1815 + Recharge pour VÉ
1816 + </li>
1817 + <li class="property-options-item">
1818 + <div class="icon icon-large icon-building-games-room"></div>
1819 + Salle de jeux
1820 + </li>
1821 + <li class="property-options-item">
1822 + <div class="icon icon-large icon-laundry"></div>
1823 + Buanderie dans l’immeuble
1824 + </li>
1825 + <li class="property-options-item">
1826 + <div class="icon icon-large icon-building-elevator"></div>
1827 + Ascenseurs
1828 + </li>
1829 +
1830 + </ul>
1831 +
1832 + <div class="property-options-details-container-list">
1833 + <ul>
1834 + <li>Patio extérieur</li>
1835 + </ul>
1836 + <ul>
1837 + <li>Dépanneur sur place</li>
1838 + </ul>
1839 + </div>
1840 + </div>
1841 +
1842 +
1843 + </div>
1844 +
1845 + <div class="property-options-details">
1846 +
1847 + <div class="property-options-details-container">
1848 + <h3>
1849 + Services publics, Politiques et Frais </h3>
1850 + <ul class="property-options-details-container-icons">
1851 + <li class="property-options-item">
1852 + <div class="icon icon-large icon-heat"></div>
1853 + Chauffage inclus
1854 + </li>
1855 + <li class="property-options-item">
1856 + <div class="icon icon-large icon-water"></div>
1857 + Eau inclus
1858 + </li>
1859 + <li class="property-options-item">
1860 + <div class="icon icon-large icon-hydro"></div>
1861 + Électricité inclus
1862 + </li>
1863 + <li class="property-options-item">
1864 + <div class="icon icon-large icon-parking"></div>
1865 + Stationnement*
1866 + </li>
1867 + <li class="property-options-item">
1868 + <div class="icon icon-large icon-dog"></div>
1869 + Chiens* acceptés
1870 + </li>
1871 + <li class="property-options-item">
1872 + <div class="icon icon-large icon-cat"></div>
1873 + Chats* acceptés
1874 + </li>
1875 + </ul>
1876 +
1877 + <div class="property-options-details-container-list">
1878 + <ul>
1879 + <li>Stationnement des visiteurs</li>
1880 + <li>Stationnement extérieur</li>
1881 + </ul>
1882 + <ul>
1883 + <li>Stationnement souterrain</li>
1884 + <li>*Seules certaines races de chien sont acceptées</li>
1885 + </ul>
1886 + </div>
1887 +
1888 + </div>
1889 +
1890 + <div class="property-options-details-container" id="incentives">
1891 + <h3>
1892 + Offres et Promotions </h3>
1893 + <div class="property-options-details-container-wrap">
1894 + <div id="incentive-29470">
1895 + <h4>1 mois de loyer gratuit</h4>
1896 +
1897 + <p><img loading="lazy" decoding="async" class="alignnone size-medium wp-image-90555" src="https://www.capreit.ca/wp-content/uploads/2021/11/1-Month-Rent-Free-FR-2-300x200.jpg" alt="" width="300" height="200" srcset="https://www.capreit.ca/wp-content/uploads/2021/11/1-Month-Rent-Free-FR-2-300x200.jpg 300w, https://www.capreit.ca/wp-content/uploads/2021/11/1-Month-Rent-Free-FR-2-1024x683.jpg 1024w, https://www.capreit.ca/wp-content/uploads/2021/11/1-Month-Rent-Free-FR-2-768x512.jpg 768w, https://www.capreit.ca/wp-content/uploads/2021/11/1-Month-Rent-Free-FR-2.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></p>
1898 +
1899 + <p>Des conditions s'appliquent. Offre disponible uniquement pour les nouveaux résidents.</p>
1900 + </div>
1901 + </div>
1902 + </div>
1903 +
1904 + </div>
1905 +
1906 + <div class="property-options-legal">
1907 + *Les prix, la disponibilité et les incitatifs sont sous réserve de modifications. Des conditions s'appliquent. *Superficie en pieds carrés, et les caractéristiques d’appartement sont sous réserve de modifications et de la disponibilité. *Les espaces de stationnement et d’entreposage sont sous réserve de la disponibilité. </div>
1908 +
1909 + </section>
1910 +
1911 +</div>
1912 +
1913 +<section class="property-features" data-component="tabs">
1914 +
1915 + <div class="wrapper">
1916 + <ul class="property-features-tabs" role="tablist"
1917 + aria-label="Building Features">
1918 + <li role="presentation">
1919 + <button class="property-features-tabs-item"
1920 + role="tab"
1921 + id="tab-features-location"
1922 + aria-selected="false"
1923 + aria-controls="tab-panel-features-location">
1924 + Lieu </button>
1925 + </li>
1926 + <li role="presentation">
1927 + <button class="property-features-tabs-item"
1928 + role="tab"
1929 + id="tab-features-amenities"
1930 + aria-selected="false"
1931 + aria-controls="tab-panel-features-amenities">
1932 + Caractéristiques de l'immeuble </button>
1933 + </li>
1934 + <li role="presentation">
1935 + <button class="property-features-tabs-item"
1936 + role="tab"
1937 + id="tab-features-neighbourhood"
1938 + aria-selected="false"
1939 + aria-controls="tab-panel-features-neighbourhood">
1940 + Quartier </button>
1941 + </li>
1942 + <li role="presentation">
1943 + <button class="property-features-tabs-item"
1944 + role="tab"
1945 + id="tab-features-faqs"
1946 + aria-selected="false"
1947 + aria-controls="tab-panel-features-faqs">
1948 + Questions fréquentes </button>
1949 + </li>
1950 + </ul>
1951 + </div>
1952 +
1953 + <div class="property-features-content">
1954 + <div class="wrapper">
1955 + <ul class="property-features-content-panels">
1956 +
1957 + <li class="property-features-content-panels-item"
1958 + id="tab-panel-features-location"
1959 + role="tabpanel"
1960 + aria-labelledby="tab-features-location"
1961 + tabindex="0"
1962 + hidden>
1963 +
1964 + <div class="property-features-content-panels-item-header">
1965 + <button class="property-features-content-panels-item-header-back">
1966 + Retour </button>
1967 + <h2>Lieu</h2>
1968 + </div>
1969 +
1970 + <div class="property-features-content-panels-item-scores">
1971 + <div class="property-features-content-panels-item-scores-wrapper">
1972 +
1973 +
1974 + <figure class="chart-score"
1975 + data-label="Indice de Marchabilité"
1976 + data-score="81"
1977 + data-animate>
1978 + <svg class="chart-score-circle"
1979 + role="img"
1980 + aria-labelledby="chart-score-label-01"
1981 + xmlns="http://www.w3.org/2000/svg">
1982 + <title>Indice de Marchabilité 81%</title>
1983 + <desc>Indice de Marchabilité 81%</desc>
1984 + <circle class="chart-score-background"/>
1985 + <circle class="chart-score-foreground"/>
1986 + </svg>
1987 + <figcaption class="chart-score-label" id="chart-score-label-01">
1988 + Indice de Marchabilité 81%.
1989 + </figcaption>
1990 + </figure>
1991 +
1992 +
1993 + <figure class="chart-score"
1994 + data-label="Indice de convivialité vélo"
1995 + data-score="86"
1996 + data-animate>
1997 + <svg class="chart-score-circle"
1998 + role="img"
1999 + aria-labelledby="chart-score-label-03"
2000 + xmlns="http://www.w3.org/2000/svg">
2001 + <title>Indice de convivialité vélo 86%</title>
2002 + <desc>Indice de convivialité vélo 86%</desc>
2003 + <circle class="chart-score-background"/>
2004 + <circle class="chart-score-foreground"/>
2005 + </svg>
2006 + <figcaption class="chart-score-label" id="chart-score-label-03">
2007 + Indice de convivialité vélo 86%.
2008 + </figcaption>
2009 + </figure>
2010 + </div>
2011 +
2012 + <a href="https://www.google.com/maps/dir/?api=1&destination=1245%2C+1275+Chemin+Ste.+Foy%2C+830%2C+840%2C+850+Ave.+Ernest-Gagnon%2C+875+Ave.+Holland+Ville+de+Qu%C3%A9bec+QC+G1S+3R3" target="_blank" class="button-large">
2013 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-propertydetail-calculator.svg"
2014 + alt="Temps de déplacement">
2015 + Temps de déplacement </a>
2016 + </div>
2017 +
2018 + <div class="property-features-content-panels-item-map">
2019 + <div id="property-map"
2020 + data-latitude="46.79526"
2021 + data-longitude="-71.25025"
2022 + data-placesid="">
2023 + </div>
2024 + <a class="button"
2025 + href="/fr/appartements-a-louer/?latitude=46.79526&longitude=-71.25025"
2026 + rel="noopener">
2027 + Chercher des unités proches </a>
2028 + </div>
2029 +
2030 + <template id="property-infowindow">
2031 +
2032 + <div class='property-item infowindow'>
2033 + <div class='property-item-wrapper'>
2034 +
2035 + <div class='property-item-image'>
2036 + <img src='https://www.capreit.ca/wp-content/uploads/2021/09/1-Month-Rent-Free-BIL-2-300x200.jpg' alt='Appartements Le Samuel-Holland'>
2037 + </div>
2038 + <div class='property-item-content'>
2039 + <div>
2040 + <a class='property-item-content-title' href='https://www.capreit.ca/fr/appartements-a-louer/ville-de-quebec-qc/appartements-le-samuel-holland/'>
2041 + Appartements Le Samuel-Holland
2042 + </a>
2043 + <div class='property-item-content-address'>
2044 + 1245, 1275 Chemin Ste. Foy, 830, 840, 850 Ave. Ernest-Gagnon, 875 Ave. Holland, Ville de Québec, QC
2045 + </div>
2046 +
2047 + <div class='property-item-content-price'>
2048 + 1 175 $ - 1 985 $
2049 + </div>
2050 +
2051 + <div class='property-item-content-rooms'>
2052 + <span class='icon icon-bedroom'></span>
2053 + 1 1/2 - 5 1/2
2054 + </div>
2055 + </div>
2056 + </div>
2057 + </div>
2058 + </div>
2059 + </template>
2060 +
2061 + </li>
2062 +
2063 + <li class="property-features-content-panels-item"
2064 + id="tab-panel-features-amenities"
2065 + role="tabpanel"
2066 + aria-labelledby="tab-features-amenities"
2067 + tabindex="0"
2068 + hidden>
2069 +
2070 + <div class="property-features-content-panels-item-header">
2071 + <button class="property-features-content-panels-item-header-back">
2072 + Retour </button>
2073 + <h2>Caractéristiques de l'immeuble</h2>
2074 + </div>
2075 +
2076 + <div class="property-features-content-container">
2077 + <div class="property-features-content-container-left">
2078 + <div class="property-features-content-container-photo">
2079 + <img class="property-features-content-container-photo-img"
2080 + src="https://www.capreit.ca/wp-content/uploads/2021/09/0000_le-Samuel-Holland-830-ave-Ernest-Gagnon-Ville-de-Quebec-exterieur.jpg"
2081 + alt="Le Samuel Holland - Entrée résidentielle - louer à Québec, QC "
2082 + data-overlay="photos"
2083 + data-index="2"
2084 + data-type="image"
2085 + data-video-id="">
2086 + </div>
2087 + </div>
2088 + <div class="property-features-content-container-right">
2089 + <h2>
2090 + Caractéristiques de l'immeuble </h2>
2091 + <div>
2092 + <p><span data-contrast="auto">Ce complexe résidentiel à l’architecture unique, voisin d’un mélange de commerces et d’espaces à bureaux, est constitué de 6 immeubles méticuleusement conçus et est une destination de premier choix pour ceux qui recherchent un studio ou un 3 ½, 4 ½ ou 5 ½. Chacun des appartements du complexe offre une variété de commodités recherchées; une buanderie sur place très pratique, un stationnement souterrain assurant la sécurité de votre véhicule, un système de climatisation à la fine pointe de la technologie pour un confort optimal, et des balcons privés dans certains appartements fournissant un lieu serein à l’écart de la cohue quotidienne.</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></p>
2093 +<p><span data-contrast="auto">Ces caractéristiques en font la quintessence de la vie de luxe. Les locataires profitent d’un quartier paisible, offrant des vues magnifiques et des rues tranquilles, tout en étant qu’à quelques minutes de l’énergie vibrante et des attraits du centre-ville de Québec. Cette combinaison de luxe, de commodités et de tranquillité fait de notre complexe résidentiel l’endroit que l’on veut appeler chez soi. </span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></p>
2094 +<ul>
2095 +<li data-leveltext="" data-font="Symbol" data-listid="33" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" aria-setsize="-1" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">Centre commercial sur place : restaurant, pharmacie, fleuriste et plus</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2096 +</ul>
2097 +<ul>
2098 +<li data-leveltext="" data-font="Symbol" data-listid="5" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="2" data-aria-level="1"><span data-contrast="auto">Ascenseurs</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2099 +</ul>
2100 +<ul>
2101 +<li data-leveltext="" data-font="Symbol" data-listid="6" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="3" data-aria-level="1"><span data-contrast="auto">Buanderie sur place</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2102 +</ul>
2103 +<ul>
2104 +<li data-leveltext="" data-font="Symbol" data-listid="7" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="4" data-aria-level="1"><span data-contrast="auto">Chutes à déchets</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2105 +</ul>
2106 +<ul>
2107 +<li data-leveltext="" data-font="Symbol" data-listid="8" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="5" data-aria-level="1"><span data-contrast="auto">Stationnements souterrains et extérieurs disponibles</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2108 +</ul>
2109 +<ul>
2110 +<li data-leveltext="" data-font="Symbol" data-listid="9" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="6" data-aria-level="1"><span data-contrast="auto">Piscine et salle d’entraînement privées</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2111 +</ul>
2112 +<ul>
2113 +<li data-leveltext="" data-font="Symbol" data-listid="10" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="7" data-aria-level="1"><span data-contrast="auto">Salle de billard, bibliothèque et salon</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2114 +</ul>
2115 +<ul>
2116 +<li data-leveltext="" data-font="Symbol" data-listid="11" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="8" data-aria-level="1"><span data-contrast="auto">Pharmacie avec services de clinique dans le complexe</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2117 +</ul>
2118 +<ul>
2119 +<li data-leveltext="" data-font="Symbol" data-listid="12" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="9" data-aria-level="1"><span data-contrast="auto">Garderie sur place</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2120 +</ul>
2121 +<ul>
2122 +<li data-leveltext="" data-font="Symbol" data-listid="13" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="10" data-aria-level="1"><span data-contrast="auto">Supermarchés</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2123 +</ul>
2124 +<ul>
2125 +<li data-leveltext="" data-font="Symbol" data-listid="14" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="11" data-aria-level="1"><span data-contrast="auto">Terrasse extérieure</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2126 +</ul>
2127 +<ul>
2128 +<li data-leveltext="" data-font="Symbol" data-listid="15" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="12" data-aria-level="1"><span data-contrast="auto">Machines interac</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2129 +</ul>
2130 +<ul>
2131 +<li data-leveltext="" data-font="Symbol" data-listid="15" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="13" data-aria-level="1"><span data-contrast="auto">Climatisation</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2132 +</ul>
2133 +<ul>
2134 +<li data-leveltext="" data-font="Symbol" data-listid="16" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="13" data-aria-level="1"><span data-contrast="auto">Animaux de compagnie acceptés (9,1 kg [20 lb] ou moins)</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2135 +</ul>
2136 +<ul>
2137 +<li data-leveltext="" data-font="Symbol" data-listid="17" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="14" data-aria-level="1"><span data-contrast="auto">Stations de recharge pour voitures électriques disponibles</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2138 +</ul>
2139 +<p><span data-contrast="auto">Visitez cet immeuble de choix dans le Vieux-Québec dès aujourd’hui!</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></p>
2140 +
2141 + </div>
2142 + </div>
2143 + </div>
2144 +
2145 + </li>
2146 +
2147 + <li class="property-features-content-panels-item"
2148 + id="tab-panel-features-neighbourhood"
2149 + role="tabpanel"
2150 + aria-labelledby="tab-features-neighbourhood"
2151 + tabindex="0"
2152 + hidden>
2153 +
2154 + <div class="property-features-content-panels-item-header">
2155 + <button class="property-features-content-panels-item-header-back">
2156 + Retour </button>
2157 + <h2>Quartier</h2>
2158 + </div>
2159 +
2160 + <div class="property-features-content-container">
2161 + <div class="property-features-content-container-left">
2162 + <div class="property-features-content-container-photo">
2163 + <img class="property-features-content-container-photo-img"
2164 + src="https://www.capreit.ca/wp-content/uploads/2021/10/Quebec-City-Aerial.jpg"
2165 + alt="Québec">
2166 + </div>
2167 + </div>
2168 + <div class="property-features-content-container-right">
2169 + <h2>
2170 + Faites connaissance avec le quartier </h2>
2171 + <div><p><span data-contrast="auto">Niché dans le charmant quartier Saint-Sacrement de Québec, le Samuel Holland possède un emplacement privilégié, n’étant qu’à quelques minutes de la prestigieuse Assemblée nationale et du vibrant coeur du centre-ville de Québec.</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></p>
2172 +<p><span data-contrast="auto">Cet emplacement idéal offre un accès facile à toute une gamme d’opportunités culturelles, récréatives ou de divertissement, faisant du Samuel Holland une option de choix pour ceux qui recherchent commodité et qualité de vie dans un des secteurs les plus recherchés.</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></p>
2173 +<ul>
2174 +<li data-leveltext="" data-font="Symbol" data-listid="18" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">Gare ferroviaire et terminal d’autobus longue distance</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2175 +</ul>
2176 +<ul>
2177 +<li data-leveltext="" data-font="Symbol" data-listid="19" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="2" data-aria-level="1"><span data-contrast="auto">Centre commercial Place Ste-Foy</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2178 +</ul>
2179 +<ul>
2180 +<li data-leveltext="" data-font="Symbol" data-listid="20" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="3" data-aria-level="1"><span data-contrast="auto">Parc technologique du Québec métropolitain </span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2181 +</ul>
2182 +<ul>
2183 +<li data-leveltext="" data-font="Symbol" data-listid="21" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="4" data-aria-level="1"><span data-contrast="auto">Terminal d’autobus Ste-Foy</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2184 +</ul>
2185 +<ul>
2186 +<li data-leveltext="" data-font="Symbol" data-listid="22" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="5" data-aria-level="1"><span data-contrast="auto">Parc Samuel-Holland</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2187 +</ul>
2188 +<ul>
2189 +<li data-leveltext="" data-font="Symbol" data-listid="23" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="6" data-aria-level="1"><span data-contrast="auto">Hôpitaux Jeffery Hale et St-Sacrement</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2190 +</ul>
2191 +<ul>
2192 +<li data-leveltext="" data-font="Symbol" data-listid="24" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="7" data-aria-level="1"><span data-contrast="auto">La petite école Vision Sillery (préscolaire)</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2193 +</ul>
2194 +<ul>
2195 +<li data-leveltext="" data-font="Symbol" data-listid="25" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="8" data-aria-level="1"><span data-contrast="auto">YWCA de Québec</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2196 +</ul>
2197 +<ul>
2198 +<li data-leveltext="" data-font="Symbol" data-listid="26" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="9" data-aria-level="1"><span data-contrast="auto">De plus, la proximité du Vieux-Québec, désigné trésor patrimonial mondial par l’UNESCO, permet d’explorer un quartier composé d’édifices âgés de 400 ans et des rues en pavé, un attrait historique et culturel incomparable.</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2199 +</ul>
2200 +</div>
2201 +
2202 + <h3>
2203 + <a href="https://www.capreit.ca/fr/neighbourhood/75152-2/">
2204 + Québec,
2205 + Région de Québec, QC
2206 + </a>
2207 + </h3>
2208 +
2209 + <p><span data-contrast="auto">Depuis longtemps, Québec, avec son style gracieux mais simple, charme ses habitants et visiteurs. Sise sur un site enchanteur qui domine le majestueux Saint-Laurent, la ville s&rsquo;enorgueillit d’un patrimoine architectural inestimable qui s’étend sur plusieurs siècles, faisant de celle-ci un musée vivant. Ses rues racontent l’histoire d’un passé riche et coloré, évoquant des moments historiques et des contes d’autrefois.</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></p>
2210 +<p><span data-contrast="auto">Québec possède un esprit chaleureux, d’où se dégage une joie de vivre qui fait la renommée de cette destination depuis des siècles. Avec son mélange unique d’histoire, de culture et de beauté naturelle, combiné avec l’atmosphère vibrante de la ville, Québec a tout ce qu’il faut pour plaire à celui ou celle qui recherche une expérience inoubliable.</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></p>
2211 +
2212 +
2213 + <div class="property-features-content-container-nearby">
2214 + <h4>À proximité </h4>
2215 + <div class="property-features-content-container-nearby-item">
2216 + <h5>Écoles : </h5>
2217 + <ul>
2218 +<li data-leveltext="" data-font="Symbol" data-listid="27" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">École des Ursulines de Québec</span></li>
2219 +<li data-leveltext="" data-font="Symbol" data-listid="27" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">École des Berges</span></li>
2220 +<li data-leveltext="" data-font="Symbol" data-listid="27" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">École Saint-Jean-Baptiste</span></li>
2221 +<li data-leveltext="" data-font="Symbol" data-listid="27" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto"> École du Barreau</span></li>
2222 +<li data-leveltext="" data-font="Symbol" data-listid="27" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">École d’architecture de l’Université Laval</span></li>
2223 +<li data-leveltext="" data-font="Symbol" data-listid="27" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">Conservatoire d’art dramatique de Québec</span></li>
2224 +<li data-leveltext="" data-font="Symbol" data-listid="27" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">École d’art de l’Université Laval</span></li>
2225 +<li data-leveltext="" data-font="Symbol" data-listid="27" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">École Anne-Hébert</span></li>
2226 +<li data-leveltext="" data-font="Symbol" data-listid="27" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">École internationale d’été de Percé  </span></li>
2227 +</ul>
2228 +
2229 + </div>
2230 + <div class="property-features-content-container-nearby-item">
2231 + <h5>Transport : </h5>
2232 + <ul>
2233 +<li><span class="TextRun SCXW30047617 BCX0" lang="FR-CA" xml:lang="FR-CA" data-contrast="auto"><span class="NormalTextRun SCXW30047617 BCX0" data-ccp-parastyle="text-body" data-ccp-parastyle-defn="{&quot;ObjectId&quot;:&quot;f0b01ff1-c52e-4b6a-a21e-0da9ef47a195|125&quot;,&quot;ClassId&quot;:1073872969,&quot;Properties&quot;:[201342446,&quot;1&quot;,201342447,&quot;5&quot;,201342448,&quot;1&quot;,201342449,&quot;1&quot;,469777841,&quot;Times New Roman&quot;,469777842,&quot;Times New Roman&quot;,469777843,&quot;Times New Roman&quot;,469777844,&quot;Times New Roman&quot;,201341986,&quot;1&quot;,469769226,&quot;Times New Roman&quot;,268442635,&quot;24&quot;,469775450,&quot;text-body&quot;,201340122,&quot;2&quot;,134233614,&quot;true&quot;,469778129,&quot;text-body&quot;,335572020,&quot;1&quot;,335559705,&quot;4105&quot;,335559740,&quot;240&quot;,201341983,&quot;0&quot;,134233118,&quot;true&quot;,134233117,&quot;true&quot;,469778324,&quot;Normal&quot;]}">10 arrêts d’autobus à proximité : D’Auteuil 1124, Honoré-Mercier 1259, Palais Montcalm, Honoré-Mercier, Terminus d’Youville  </span></span><span class="EOP SCXW30047617 BCX0" data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2234 +</ul>
2235 +
2236 + </div>
2237 + <div class="property-features-content-container-nearby-item">
2238 + <h5>Lieux d’intérêts :</h5>
2239 + <ul>
2240 +<li data-leveltext="" data-font="Symbol" data-listid="30" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">Hôpitaux : Hôtel-Dieu de Québec, Hôpital Jeffery Hale, Hôpital de l’Enfant-Jésus, Hôpital du Saint-Sacrement  </span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2241 +</ul>
2242 +<ul>
2243 +<li data-leveltext="" data-font="Symbol" data-listid="31" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" aria-setsize="-1" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">Institutions culturelles, divertissement : Musée des plaines d’Abraham, Musée de la civilisation, Musée Royal 22</span><span data-contrast="auto">e</span><span data-contrast="auto"> Régiment, Musée des beaux-arts du Québec, Musée naval de Québec, Musée du Chocolat, Société littéraire et historique de Québec, Musée du Jade, Sentier des Plaines d’Abraham (site historique), Pôle Culturel du Monastère des Ursulines, Maison Henry-Stuart, Château Frontenac  </span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2244 +</ul>
2245 +
2246 + </div>
2247 + <div class="property-features-content-container-nearby-item">
2248 + <h5>Commerces et restaurants : </h5>
2249 + <ul>
2250 +<li><span class="TextRun SCXW220409661 BCX0" lang="FR-CA" xml:lang="FR-CA" data-contrast="auto"><span class="NormalTextRun SCXW220409661 BCX0" data-ccp-parastyle="text-body" data-ccp-parastyle-defn="{&quot;ObjectId&quot;:&quot;f0b01ff1-c52e-4b6a-a21e-0da9ef47a195|125&quot;,&quot;ClassId&quot;:1073872969,&quot;Properties&quot;:[201342446,&quot;1&quot;,201342447,&quot;5&quot;,201342448,&quot;1&quot;,201342449,&quot;1&quot;,469777841,&quot;Times New Roman&quot;,469777842,&quot;Times New Roman&quot;,469777843,&quot;Times New Roman&quot;,469777844,&quot;Times New Roman&quot;,201341986,&quot;1&quot;,469769226,&quot;Times New Roman&quot;,268442635,&quot;24&quot;,469775450,&quot;text-body&quot;,201340122,&quot;2&quot;,134233614,&quot;true&quot;,469778129,&quot;text-body&quot;,335572020,&quot;1&quot;,335559705,&quot;4105&quot;,335559740,&quot;240&quot;,201341983,&quot;0&quot;,134233118,&quot;true&quot;,134233117,&quot;true&quot;,469778324,&quot;Normal&quot;]}">Quartier Petit Champlain</span></span></li>
2251 +<li><span class="TextRun SCXW220409661 BCX0" lang="FR-CA" xml:lang="FR-CA" data-contrast="auto"><span class="NormalTextRun SCXW220409661 BCX0" data-ccp-parastyle="text-body" data-ccp-parastyle-defn="{&quot;ObjectId&quot;:&quot;f0b01ff1-c52e-4b6a-a21e-0da9ef47a195|125&quot;,&quot;ClassId&quot;:1073872969,&quot;Properties&quot;:[201342446,&quot;1&quot;,201342447,&quot;5&quot;,201342448,&quot;1&quot;,201342449,&quot;1&quot;,469777841,&quot;Times New Roman&quot;,469777842,&quot;Times New Roman&quot;,469777843,&quot;Times New Roman&quot;,469777844,&quot;Times New Roman&quot;,201341986,&quot;1&quot;,469769226,&quot;Times New Roman&quot;,268442635,&quot;24&quot;,469775450,&quot;text-body&quot;,201340122,&quot;2&quot;,134233614,&quot;true&quot;,469778129,&quot;text-body&quot;,335572020,&quot;1&quot;,335559705,&quot;4105&quot;,335559740,&quot;240&quot;,201341983,&quot;0&quot;,134233118,&quot;true&quot;,134233117,&quot;true&quot;,469778324,&quot;Normal&quot;]}">Promenades du Vieux-Québec</span></span></li>
2252 +<li><span class="TextRun SCXW220409661 BCX0" lang="FR-CA" xml:lang="FR-CA" data-contrast="auto"><span class="NormalTextRun SCXW220409661 BCX0" data-ccp-parastyle="text-body" data-ccp-parastyle-defn="{&quot;ObjectId&quot;:&quot;f0b01ff1-c52e-4b6a-a21e-0da9ef47a195|125&quot;,&quot;ClassId&quot;:1073872969,&quot;Properties&quot;:[201342446,&quot;1&quot;,201342447,&quot;5&quot;,201342448,&quot;1&quot;,201342449,&quot;1&quot;,469777841,&quot;Times New Roman&quot;,469777842,&quot;Times New Roman&quot;,469777843,&quot;Times New Roman&quot;,469777844,&quot;Times New Roman&quot;,201341986,&quot;1&quot;,469769226,&quot;Times New Roman&quot;,268442635,&quot;24&quot;,469775450,&quot;text-body&quot;,201340122,&quot;2&quot;,134233614,&quot;true&quot;,469778129,&quot;text-body&quot;,335572020,&quot;1&quot;,335559705,&quot;4105&quot;,335559740,&quot;240&quot;,201341983,&quot;0&quot;,134233118,&quot;true&quot;,134233117,&quot;true&quot;,469778324,&quot;Normal&quot;]}">Centre commercial Fleur de Lys</span></span></li>
2253 +<li><span class="TextRun SCXW220409661 BCX0" lang="FR-CA" xml:lang="FR-CA" data-contrast="auto"><span class="NormalTextRun SCXW220409661 BCX0" data-ccp-parastyle="text-body" data-ccp-parastyle-defn="{&quot;ObjectId&quot;:&quot;f0b01ff1-c52e-4b6a-a21e-0da9ef47a195|125&quot;,&quot;ClassId&quot;:1073872969,&quot;Properties&quot;:[201342446,&quot;1&quot;,201342447,&quot;5&quot;,201342448,&quot;1&quot;,201342449,&quot;1&quot;,469777841,&quot;Times New Roman&quot;,469777842,&quot;Times New Roman&quot;,469777843,&quot;Times New Roman&quot;,469777844,&quot;Times New Roman&quot;,201341986,&quot;1&quot;,469769226,&quot;Times New Roman&quot;,268442635,&quot;24&quot;,469775450,&quot;text-body&quot;,201340122,&quot;2&quot;,134233614,&quot;true&quot;,469778129,&quot;text-body&quot;,335572020,&quot;1&quot;,335559705,&quot;4105&quot;,335559740,&quot;240&quot;,201341983,&quot;0&quot;,134233118,&quot;true&quot;,134233117,&quot;true&quot;,469778324,&quot;Normal&quot;]}">La Maison Simons</span></span></li>
2254 +<li><span class="TextRun SCXW220409661 BCX0" lang="FR-CA" xml:lang="FR-CA" data-contrast="auto"><span class="NormalTextRun SCXW220409661 BCX0" data-ccp-parastyle="text-body" data-ccp-parastyle-defn="{&quot;ObjectId&quot;:&quot;f0b01ff1-c52e-4b6a-a21e-0da9ef47a195|125&quot;,&quot;ClassId&quot;:1073872969,&quot;Properties&quot;:[201342446,&quot;1&quot;,201342447,&quot;5&quot;,201342448,&quot;1&quot;,201342449,&quot;1&quot;,469777841,&quot;Times New Roman&quot;,469777842,&quot;Times New Roman&quot;,469777843,&quot;Times New Roman&quot;,469777844,&quot;Times New Roman&quot;,201341986,&quot;1&quot;,469769226,&quot;Times New Roman&quot;,268442635,&quot;24&quot;,469775450,&quot;text-body&quot;,201340122,&quot;2&quot;,134233614,&quot;true&quot;,469778129,&quot;text-body&quot;,335572020,&quot;1&quot;,335559705,&quot;4105&quot;,335559740,&quot;240&quot;,201341983,&quot;0&quot;,134233118,&quot;true&quot;,134233117,&quot;true&quot;,469778324,&quot;Normal&quot;]}">Les Halles Cartier</span></span></li>
2255 +<li><span class="TextRun SCXW220409661 BCX0" lang="FR-CA" xml:lang="FR-CA" data-contrast="auto"><span class="NormalTextRun SCXW220409661 BCX0" data-ccp-parastyle="text-body" data-ccp-parastyle-defn="{&quot;ObjectId&quot;:&quot;f0b01ff1-c52e-4b6a-a21e-0da9ef47a195|125&quot;,&quot;ClassId&quot;:1073872969,&quot;Properties&quot;:[201342446,&quot;1&quot;,201342447,&quot;5&quot;,201342448,&quot;1&quot;,201342449,&quot;1&quot;,469777841,&quot;Times New Roman&quot;,469777842,&quot;Times New Roman&quot;,469777843,&quot;Times New Roman&quot;,469777844,&quot;Times New Roman&quot;,201341986,&quot;1&quot;,469769226,&quot;Times New Roman&quot;,268442635,&quot;24&quot;,469775450,&quot;text-body&quot;,201340122,&quot;2&quot;,134233614,&quot;true&quot;,469778129,&quot;text-body&quot;,335572020,&quot;1&quot;,335559705,&quot;4105&quot;,335559740,&quot;240&quot;,201341983,&quot;0&quot;,134233118,&quot;true&quot;,134233117,&quot;true&quot;,469778324,&quot;Normal&quot;]}">Magasin général P. L. Blouin</span></span></li>
2256 +<li><span class="TextRun SCXW220409661 BCX0" lang="FR-CA" xml:lang="FR-CA" data-contrast="auto"><span class="NormalTextRun SCXW220409661 BCX0" data-ccp-parastyle="text-body" data-ccp-parastyle-defn="{&quot;ObjectId&quot;:&quot;f0b01ff1-c52e-4b6a-a21e-0da9ef47a195|125&quot;,&quot;ClassId&quot;:1073872969,&quot;Properties&quot;:[201342446,&quot;1&quot;,201342447,&quot;5&quot;,201342448,&quot;1&quot;,201342449,&quot;1&quot;,469777841,&quot;Times New Roman&quot;,469777842,&quot;Times New Roman&quot;,469777843,&quot;Times New Roman&quot;,469777844,&quot;Times New Roman&quot;,201341986,&quot;1&quot;,469769226,&quot;Times New Roman&quot;,268442635,&quot;24&quot;,469775450,&quot;text-body&quot;,201340122,&quot;2&quot;,134233614,&quot;true&quot;,469778129,&quot;text-body&quot;,335572020,&quot;1&quot;,335559705,&quot;4105&quot;,335559740,&quot;240&quot;,201341983,&quot;0&quot;,134233118,&quot;true&quot;,134233117,&quot;true&quot;,469778324,&quot;Normal&quot;]}">Roots </span></span><span class="EOP SCXW220409661 BCX0" data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
2257 +</ul>
2258 +
2259 + </div>
2260 + </div>
2261 +
2262 + <a class="button-large"
2263 + href="/fr/appartements-a-louer/quebec-qc/"
2264 + target="_blank"
2265 + rel="noopener">
2266 + Explorer Québec
2267 + </a>
2268 +
2269 + </div>
2270 + </div>
2271 +
2272 + </li>
2273 +
2274 + <li class="property-features-content-panels-item"
2275 + id="tab-panel-features-faqs"
2276 + role="tabpanel"
2277 + aria-labelledby="tab-features-faqs"
2278 + tabindex="0"
2279 + hidden>
2280 +
2281 + <div class="property-features-content-panels-item-header">
2282 + <button class="property-features-content-panels-item-header-back">
2283 + Retour </button>
2284 + <h2>Questions fréquentes</h2>
2285 + </div>
2286 +
2287 + <div class="property-features-content-container">
2288 + <div class="property-features-content-container-left">
2289 + <div class="property-features-content-container-photo">
2290 + <img class="property-features-content-container-photo-img"
2291 + src="https://www.capreit.ca/wp-content/uploads/2022/05/Samuel-Holland-pool.jpg"
2292 + alt="Le Samuel Holland - Piscine"
2293 + data-overlay="photos"
2294 + data-index="1"
2295 + data-type="image"
2296 + data-video-id="">
2297 + </div>
2298 + </div>
2299 + <div class="property-features-content-container-right">
2300 + <h2>
2301 + Questions fréquentes </h2>
2302 + <ul>
2303 + <li>
2304 + <a href="https://www.capreit.ca/fr/faq/politique-relative-aux-animaux-dassistance/">
2305 + Politique relative aux animaux d’assistance
2306 + </a>
2307 + </li>
2308 + <li>
2309 + <a href="https://www.capreit.ca/fr/faq/protegez-vous-contre-les-escroqueries-et-les-fraudes/">
2310 + Protégez-vous contre les escroqueries et les fraudes
2311 + </a>
2312 + </li>
2313 + <li>
2314 + <a href="https://www.capreit.ca/fr/faq/comment-payer-le-loyer/">
2315 + Comment payer le loyer?
2316 + </a>
2317 + </li>
2318 + </ul>
2319 + <h3>
2320 + Vous avez d’autres questions? </h3>
2321 + <div class="property-options-details-faq-other">
2322 + <a href="/frequently-asked-questions/">
2323 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-propertydetail-question.svg"
2324 + alt="">
2325 + Vérifiez nos FAQ sur la location. </a>
2326 + </div>
2327 + </div>
2328 + </div>
2329 +
2330 + </li>
2331 +
2332 + </ul>
2333 + </div>
2334 + </div>
2335 +
2336 +</section>
2337 +
2338 +<section class="property-quotes">
2339 + <div class="testimonial-carousel carousel" data-component="carousel">
2340 + <div class="wrapper">
2341 + <div class="carousel-wrapper">
2342 + <ul class="carousel-list" style="width: 200%;">
2343 + <li class="carousel-list-item" style="width: 50%;">
2344 + <figure class="carousel-list-item-figure">
2345 + <blockquote class="carousel-list-item-figure-quote">
2346 + <p>Chaque demande d’assistance est traitée comme si je vivais seul dans l’immeuble. J’apprécie.
2347 +<span></span></p>
2348 + </blockquote>
2349 + <figcaption class="carousel-list-item-figure-cite">
2350 + <p>- Résident de Samuel Holland</p>
2351 + </figcaption>
2352 + </figure>
2353 + </li>
2354 + <li class="carousel-list-item" style="width: 50%;">
2355 + <figure class="carousel-list-item-figure">
2356 + <blockquote class="carousel-list-item-figure-quote">
2357 + <p>Qu’est-ce que je préfère dans ma communauté CAPREIT? J’ignore si c’est mon immense salon avec de magnifiques matériaux de finition originaux, la splendide vue que l’on a à partir du parc de l’immeuble, ou si c’est l’environnement historique et l’architecture. <span></span></p>
2358 + </blockquote>
2359 + <figcaption class="carousel-list-item-figure-cite">
2360 + <p>Britney</p>
2361 + </figcaption>
2362 + </figure>
2363 + </li>
2364 + </ul>
2365 + <ul class="carousel-pagination">
2366 + <li class="carousel-pagination-item">
2367 + <button class="carousel-pagination-item-button"
2368 + data-index="0"
2369 + data-active="true">
2370 + Slide
2371 + 1
2372 + </button>
2373 + </li>
2374 + <li class="carousel-pagination-item">
2375 + <button class="carousel-pagination-item-button"
2376 + data-index="1"
2377 + data-active="false">
2378 + Slide
2379 + 2
2380 + </button>
2381 + </li>
2382 + </ul>
2383 + </div>
2384 + </div>
2385 +</div>
2386 +</section>
2387 +
2388 +
2389 +<div class="overlay" data-type="photos">
2390 + <div class="wrapper">
2391 + <h2>Galerie</h2>
2392 + <div class="overlay-photo"
2393 + style="background-image:url('https://www.capreit.ca/wp-content/uploads/2021/09/1-Month-Rent-Free-BIL-2.jpg')">
2394 + </div>
2395 + <div class="overlay-caption">
2396 + Le Samuel Holland - Entrée résidentielle - louer à Québec, QC
2397 + </div>
2398 + <ul class="overlay-thumbnails">
2399 + <li
2400 + data-overlay="photos"
2401 + data-src="https://www.capreit.ca/wp-content/uploads/2021/09/1-Month-Rent-Free-BIL-2.jpg"
2402 + data-description="Le Samuel Holland - Entrée résidentielle - louer à Québec, QC "
2403 + data-type="image"
2404 + data-video-id="">
2405 + </li>
2406 + <li
2407 + data-overlay="photos"
2408 + data-src="https://www.capreit.ca/wp-content/uploads/2021/09/0000_le-Samuel-Holland-830-ave-Ernest-Gagnon-Ville-de-Quebec-exterieur.jpg"
2409 + data-description="Le Samuel Holland - Entrée résidentielle - louer à Québec, QC "
2410 + data-type="image"
2411 + data-video-id="">
2412 + </li>
2413 + <li
2414 + data-overlay="photos"
2415 + data-src="https://www.capreit.ca/wp-content/uploads/2021/09/0004_le-Samuel-Holland-830-ave-Ernest-Gagnon-Ville-de-Quebec-salon-2.jpg"
2416 + data-description="Le Samuel Holland - Appartement - Québec, QC - Appartement 3 1/2 à louer à Québec "
2417 + data-type="image"
2418 + data-video-id="">
2419 + </li>
2420 + <li
2421 + data-overlay="photos"
2422 + data-src="https://www.capreit.ca/wp-content/uploads/2022/05/Samuel-Holland-pool.jpg"
2423 + data-description="Le Samuel Holland - Piscine"
2424 + data-type="image"
2425 + data-video-id="">
2426 + </li>
2427 + <li
2428 + data-overlay="photos"
2429 + data-src="https://www.capreit.ca/wp-content/uploads/2021/09/EDC_8210.jpg"
2430 + data-description="Le Samuel Holland - Entrée commerciale"
2431 + data-type="image"
2432 + data-video-id="">
2433 + </li>
2434 + <li
2435 + data-overlay="photos"
2436 + data-src="https://www.capreit.ca/wp-content/uploads/2021/09/DJI_0178-Web.jpg"
2437 + data-description="Le Samuel Holland"
2438 + data-type="image"
2439 + data-video-id="">
2440 + </li>
2441 + <li
2442 + data-overlay="photos"
2443 + data-src="https://www.capreit.ca/wp-content/uploads/2021/09/0006_le-Samuel-Holland-830-ave-Ernest-Gagnon-Ville-de-Quebec-salle-a-manger-2.jpg"
2444 + data-description="Le Samuel Holland - Appartement à louer à Québec"
2445 + data-type="image"
2446 + data-video-id="">
2447 + </li>
2448 + <li
2449 + data-overlay="photos"
2450 + data-src="https://www.capreit.ca/wp-content/uploads/2021/09/0008_le-Samuel-Holland-830-ave-Ernest-Gagnon-Ville-de-Quebec-Cuisine.jpg"
2451 + data-description="Le Samuel Holland - Appartement - Studio ou 3 1/2 à louer - Vérifier la disponibilité "
2452 + data-type="image"
2453 + data-video-id="">
2454 + </li>
2455 + <li
2456 + data-overlay="photos"
2457 + data-src="https://www.capreit.ca/wp-content/uploads/2021/09/le-Samuel-Holland-Ville-de-Quebec-1.jpg"
2458 + data-description="Le Samuel Holland - Appartement une chambre - vérifier la disponibilité"
2459 + data-type="image"
2460 + data-video-id="">
2461 + </li>
2462 + <li
2463 + data-overlay="photos"
2464 + data-src="https://www.capreit.ca/wp-content/uploads/2021/09/le-Samuel-Holland-Ville-de-Quebec-2.jpg"
2465 + data-description="Le Samuel Holland - Appartement - Il est probable que ces appartements correspondront à vos préférences et intérêts. Louer dès aujourd’hui. "
2466 + data-type="image"
2467 + data-video-id="">
2468 + </li>
2469 + <li
2470 + data-overlay="photos"
2471 + data-src="https://www.capreit.ca/wp-content/uploads/2021/09/EDC_8300.jpg"
2472 + data-description="Le Samuel Holland - Salle de billard"
2473 + data-type="image"
2474 + data-video-id="">
2475 + </li>
2476 + <li
2477 + data-overlay="photos"
2478 + data-src="https://www.capreit.ca/wp-content/uploads/2021/09/EDC_8325.jpg"
2479 + data-description="Le Samuel Holland - Buanderie"
2480 + data-type="image"
2481 + data-video-id="">
2482 + </li>
2483 + <li
2484 + data-overlay="photos"
2485 + data-src="https://www.capreit.ca/wp-content/uploads/2021/09/EDC_8278.jpg"
2486 + data-description="Le Samuel Holland - Nautilus Plus Samuel Holland"
2487 + data-type="image"
2488 + data-video-id="">
2489 + </li>
2490 + <li
2491 + data-overlay="photos"
2492 + data-src="https://www.capreit.ca/wp-content/uploads/2021/09/EDC_8258.jpg"
2493 + data-description="Le Samuel Holland - Commerces"
2494 + data-type="image"
2495 + data-video-id="">
2496 + </li>
2497 + <li
2498 + data-overlay="photos"
2499 + data-src="https://www.capreit.ca/wp-content/uploads/2022/05/Samuel-Holland-clinic.jpg"
2500 + data-description="Le Samuel Holland - Pharmacy"
2501 + data-type="image"
2502 + data-video-id="">
2503 + </li>
2504 + <li
2505 + data-overlay="photos"
2506 + data-src="https://www.capreit.ca/wp-content/uploads/2021/09/EDC_8198.jpg"
2507 + data-description="Le Samuel Holland - Marché Bonichoix"
2508 + data-type="image"
2509 + data-video-id="">
2510 + </li>
2511 + </ul>
2512 + <ul class="overlay-controls" data-index="0">
2513 + <li>
2514 + <button class="overlay-controls-item icon icon-previous" data-direction="previous">
2515 + Précédent </button>
2516 + </li>
2517 + <li>
2518 + <button class="overlay-controls-item icon icon-next" data-direction="next">
2519 + Suivant </button>
2520 + </li>
2521 + </ul>
2522 + <button class="overlay-close icon icon-close">
2523 + Fermer </button>
2524 + </div>
2525 +</div>
2526 +
2527 +<div class="overlay" data-type="tour">
2528 + <div class="wrapper">
2529 + <div class="overlay-tour">
2530 + <iframe
2531 + src="https://my.matterport.com/show/?m=zX95aCy2vyP"
2532 + title="Samuel Holland"
2533 + scrolling="no"
2534 + frameborder="0"
2535 + allowfullscreen>
2536 + </iframe>
2537 + <button class="overlay-close icon icon-close">
2538 + Fermer </button>
2539 + </div>
2540 + </div>
2541 +</div>
2542 +
2543 +<div class="overlay" data-type="list">
2544 + <div class="overlay-list">
2545 + <div class="overlay-list-header">
2546 + <div class="overlay-list-header-lockup">
2547 + <button class="overlay-close overlay-back icon icon-chevron-left">
2548 + Fermer </button>
2549 + <h2>
2550 + Vos offres sauvegardées </h2>
2551 + </div>
2552 + <div>
2553 + <button onclick="window.clearMyList();">Effacer tout</button>
2554 + </div>
2555 + </div>
2556 + <div class="overlay-list-results">
2557 + <ul class="overlay-list-results-wrapper">
2558 +
2559 + </ul>
2560 + </div>
2561 + </div>
2562 +</div>
2563 +
2564 + </main>
2565 + <footer class="footer">
2566 +
2567 + <div class="wrapper">
2568 +
2569 + <nav class="footer-navigation">
2570 + <div class="menu-global-footer-fr-container"><ul id="menu-global-footer-fr" class="nav"><li class="footer-navigation-listitem" role="presentation"> <a class="footer-navigation-item" id="global-footer-item-0-17003" href="/" role="menuitem" tabindex="0">Louer</a><div class="footer-sub-navigation" id="global-footer-0-17003" role="region" aria-labelledby="global-footer-item-0-17003"><ul class="footer-sub-navigation-wrapper" role="menu"><li class="footer-sub-navigation-listitem" role="presentation"> <a class="footer-sub-navigation-item" href="https://www.capreit.ca/fr/appartements-a-louer/" role="menuitem" tabindex="0">Trouver un appartement</a></li><li class="footer-sub-navigation-listitem" role="presentation"> <a class="footer-sub-navigation-item" href="https://www.capreit.ca/fr/logements-en-colocation/" role="menuitem" tabindex="0">Logements en colocation</a></li><li class="footer-sub-navigation-listitem" role="presentation"> <a class="footer-sub-navigation-item" href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" role="menuitem" tabindex="0">Pourquoi louer chez nous</a></li><li class="footer-sub-navigation-listitem" role="presentation"> <a class="footer-sub-navigation-item" href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/" role="menuitem" tabindex="0">Vivre chez CAPREIT</a></li></ul></div></li><li class="footer-navigation-listitem" role="presentation"> <a class="footer-navigation-item" href="https://www.capreit.ca/fr/collaborer-avec-capreit/" role="menuitem" tabindex="0">Collaborer avec CAPREIT​</a></li><li class="footer-navigation-listitem" role="presentation"> <a class="footer-navigation-item" href="https://www.capreit.ca/fr/louer/le-processus-de-location/" role="menuitem" tabindex="0">Le processus de location</a></li><li class="footer-navigation-listitem" role="presentation"> <a class="footer-navigation-item" id="global-footer-item-0-17006" href="/fr/a-propos/qui-nous-sommes/" role="menuitem" tabindex="0">À propos</a><div class="footer-sub-navigation" id="global-footer-0-17006" role="region" aria-labelledby="global-footer-item-0-17006"><ul class="footer-sub-navigation-wrapper" role="menu"><li class="footer-sub-navigation-listitem" role="presentation"> <a class="footer-sub-navigation-item" href="https://www.capreit.ca/fr/a-propos/qui-nous-sommes/" role="menuitem" tabindex="0">Qui nous sommes</a></li><li class="footer-sub-navigation-listitem" role="presentation"> <a class="footer-sub-navigation-item" href="https://www.capreit.ca/fr/a-propos/se-joindre-a-notre-equipe/" role="menuitem" tabindex="0">Se joindre à notre équipe</a></li><li class="footer-sub-navigation-listitem" role="presentation"> <a class="footer-sub-navigation-item" href="https://careers2-capreit.icims.com/jobs/intro" role="menuitem" tabindex="0">Voir les postes ouvertes</a></li><li class="footer-sub-navigation-listitem" role="presentation"> <a class="footer-sub-navigation-item" href="/fr/louer/vivre-chez-canadian-apartment-properties-reit/#nouvelles-capreit" role="menuitem" tabindex="0">Nouvelles CAPREIT</a></li><li class="footer-sub-navigation-listitem" role="presentation"> <a class="footer-sub-navigation-item" href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/" role="menuitem" tabindex="0">Notre blogue</a></li><li class="footer-sub-navigation-listitem" role="presentation"> <a class="footer-sub-navigation-item" href="https://www.capreit.ca/fr/nous-joindre/" role="menuitem" tabindex="0">Nous joindre</a></li></ul></div></li><li class="footer-navigation-listitem" role="presentation"> <a class="footer-navigation-item" id="global-footer-item-0-17009" href="#" role="menuitem" tabindex="0">International &#038; Commercial</a><div class="footer-sub-navigation" id="global-footer-0-17009" role="region" aria-labelledby="global-footer-item-0-17009"><ul class="footer-sub-navigation-wrapper" role="menu"><li class="footer-sub-navigation-listitem" role="presentation"> <a class="footer-sub-navigation-item" href="https://www.capreit.ca/fr/commercial/" role="menuitem" tabindex="0">Commercial</a></li></ul></div></li></ul></div>
2571 + </nav>
2572 +
2573 + <div class="footer-details">
2574 + <a class="footer-logo" href="https://www.capreit.ca/fr/">
2575 + Canadian Apartment Properties REIT
2576 + </a>
2577 + <h2>
2578 + Communiquez avec nous </h2>
2579 + <div>
2580 + <ul class="footer-share">
2581 + <li class="footer-share-item">
2582 + <a class="footer-share-item-link" target="_blank" rel="noopener"
2583 + href="https://www.facebook.com/CaprentQC">
2584 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-footer-facebook.svg"
2585 + alt="Facebook">
2586 + </a>
2587 + </li>
2588 + <li class="footer-share-item">
2589 + <a class="footer-share-item-link" target="_blank" rel="noopener"
2590 + href="https://www.instagram.com/caprentqc/">
2591 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-footer-instagram.svg"
2592 + alt="Instagram">
2593 + </a>
2594 + </li>
2595 + <li class="footer-share-item">
2596 + <a class="footer-share-item-link" target="_blank" rel="noopener"
2597 + href="https://twitter.com/CaprentQC">
2598 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-footer-twitter.svg"
2599 + alt="Twitter">
2600 + </a>
2601 + </li>
2602 + <li class="footer-share-item">
2603 + <a class="footer-share-item-link" target="_blank" rel="noopener"
2604 + href="https://www.linkedin.com/company/capreit/">
2605 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-footer-linkedin.svg"
2606 + alt="LinkedIn">
2607 + </a>
2608 + </li>
2609 + </ul>
2610 + </div>
2611 + </div>
2612 +
2613 + </div>
2614 +
2615 + <div class="footer-bottom wrapper">
2616 + <div class="footer-legal">
2617 + &copy; 2026 CAPREIT. Tous droits réservés. </div>
2618 + <ul class="footer-links">
2619 + <li class="footer-links-item">
2620 + <a href="/fr/accessibilite/">
2621 + Accessibilité </a>
2622 + </li>
2623 + <li class="footer-links-item">
2624 + <a href="/fr/politique-de-vie-privee/">
2625 + Politique de vie privée </a>
2626 + </li>
2627 + <li class="footer-links-item">
2628 + <a href="/fr/conditions-d-utilisation/">
2629 + Conditions d’utilisation </a>
2630 + </li>
2631 + <li class="footer-links-item">
2632 + <a href="/fr/politique-de-cookies/">
2633 + Politique d'utilisation des témoins </a>
2634 + </li>
2635 + </ul>
2636 + </div>
2637 +
2638 +</footer>
2639 + <script type="speculationrules">
2640 +{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/fr/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/capreit/resources/*","/fr/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
2641 +</script>
2642 + <script type="text/javascript">
2643 + (function() {
2644 + // Global page view and session tracking for UAEL Modal Popup feature
2645 + try {
2646 + // Session tracking: increment if this is a new session
2647 +
2648 + // Check if any popup on this page uses current page tracking
2649 + var hasCurrentPageTracking = false;
2650 + var currentPagePopups = [];
2651 + // Check all modal popups on this page for current page tracking
2652 + if (typeof jQuery !== 'undefined') {
2653 + jQuery('.uael-modal-parent-wrapper').each(function() {
2654 + var scope = jQuery(this).data('page-views-scope');
2655 + var enabled = jQuery(this).data('page-views-enabled');
2656 + var popupId = jQuery(this).attr('id').replace('-overlay', '');
2657 + if (enabled === 'yes' && scope === 'current') {
2658 + hasCurrentPageTracking = true;
2659 + currentPagePopups.push(popupId);
2660 + }
2661 + });
2662 + }
2663 + // Global tracking: ALWAYS increment if ANY popup on the site uses global tracking
2664 + // Current page tracking: increment per-page counters
2665 + if (hasCurrentPageTracking && currentPagePopups.length > 0) {
2666 + var currentUrl = window.location.href;
2667 + var urlKey = 'uael_page_views_' + btoa(currentUrl).replace(/[^a-zA-Z0-9]/g, '').substring(0, 50);
2668 + var currentPageViews = parseInt(localStorage.getItem(urlKey) || '0');
2669 + currentPageViews++;
2670 + localStorage.setItem(urlKey, currentPageViews.toString());
2671 + // Store URL mapping for each popup
2672 + for (var i = 0; i < currentPagePopups.length; i++) {
2673 + var popupUrlKey = 'uael_popup_' + currentPagePopups[i] + '_url_key';
2674 + localStorage.setItem(popupUrlKey, urlKey);
2675 + }
2676 + }
2677 + } catch (e) {
2678 + // Silently fail if localStorage is not available
2679 + }
2680 + })();
2681 + </script>
2682 + <div data-elementor-type="popup" data-elementor-id="99081" class="elementor elementor-99081 elementor-99068 elementor-location-popup" data-elementor-settings="{&quot;entrance_animation&quot;:&quot;fadeInUp&quot;,&quot;entrance_animation_duration&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.2,&quot;sizes&quot;:[]},&quot;a11y_navigation&quot;:&quot;yes&quot;,&quot;triggers&quot;:{&quot;page_load_delay&quot;:2,&quot;page_load&quot;:&quot;yes&quot;},&quot;timing&quot;:[]}" data-elementor-post-type="elementor_library">
2683 + <section class="elementor-section elementor-top-section elementor-element elementor-element-25210ed2 elementor-section-content-bottom elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="25210ed2" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
2684 + <div class="elementor-container elementor-column-gap-default">
2685 + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5f364150" data-id="5f364150" data-element_type="column" data-e-type="column">
2686 + <div class="elementor-widget-wrap elementor-element-populated">
2687 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-7747c847 elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="7747c847" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
2688 + <div class="elementor-container elementor-column-gap-default">
2689 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-41221e87" data-id="41221e87" data-element_type="column" data-e-type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
2690 + <div class="elementor-widget-wrap elementor-element-populated">
2691 + <div class="elementor-element elementor-element-33b0c0b elementor-widget elementor-widget-image" data-id="33b0c0b" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
2692 + <div class="elementor-widget-container">
2693 + <img width="150" height="150" src="https://www.capreit.ca/wp-content/uploads/2026/04/Phone-II-150x150.png" class="attachment-thumbnail size-thumbnail wp-image-100002" alt="" /> </div>
2694 + </div>
2695 + </div>
2696 + </div>
2697 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-393ad0bf" data-id="393ad0bf" data-element_type="column" data-e-type="column">
2698 + <div class="elementor-widget-wrap elementor-element-populated">
2699 + <div class="elementor-element elementor-element-1ae1ea66 elementor-widget elementor-widget-heading" data-id="1ae1ea66" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
2700 + <div class="elementor-widget-container">
2701 + <h2 class="elementor-heading-title elementor-size-default"><span style=", proxima-nova, Arial, sans-serif;font-size: 3.6rem;font-style: normal">Avez-vous des questions ?</span></h2> </div>
2702 + </div>
2703 + <div class="elementor-element elementor-element-72579844 elementor-widget elementor-widget-text-editor" data-id="72579844" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
2704 + <div class="elementor-widget-container">
2705 + <h4><span style="font-size: 1.8rem;">Envoyez SAMUELHOLLAND par message texte au 514 252-2944</span> <span style="font-size: 1.8rem;">et nous vous répondrons dans les plus brefs délais </span></h4> </div>
2706 + </div>
2707 + </div>
2708 + </div>
2709 + </div>
2710 + </section>
2711 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-738e044a elementor-hidden-desktop elementor-hidden-tablet elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="738e044a" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
2712 + <div class="elementor-container elementor-column-gap-default">
2713 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-1e0c2c38" data-id="1e0c2c38" data-element_type="column" data-e-type="column">
2714 + <div class="elementor-widget-wrap elementor-element-populated">
2715 + <div class="elementor-element elementor-element-12612d3e elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="12612d3e" data-element_type="widget" data-e-type="widget" data-widget_type="icon-list.default">
2716 + <div class="elementor-widget-container">
2717 + <ul class="elementor-icon-list-items">
2718 + <li class="elementor-icon-list-item">
2719 + <span class="elementor-icon-list-icon">
2720 + <i aria-hidden="true" class="fas fa-sms"></i> </span>
2721 + <span class="elementor-icon-list-text"><b>Questions?</b></span>
2722 + </li>
2723 + <li class="elementor-icon-list-item">
2724 + <span class="elementor-icon-list-text"><span style=", proxima-nova, Arial, sans-serif;font-size: 16px;font-style: normal">Envoyez SAMUELHOLLAND par message texte au 514 252-2944 et nous vous répondrons dans le plus brefs délais.</span></span>
2725 + </li>
2726 + </ul>
2727 + </div>
2728 + </div>
2729 + <div class="elementor-element elementor-element-2c67c69b elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="2c67c69b" data-element_type="widget" data-e-type="widget" data-widget_type="icon-list.default">
2730 + <div class="elementor-widget-container">
2731 + <ul class="elementor-icon-list-items">
2732 + <li class="elementor-icon-list-item">
2733 + <span class="elementor-icon-list-icon">
2734 + <i aria-hidden="true" class="fas fa-phone-volume"></i> </span>
2735 + <span class="elementor-icon-list-text"><span style="font-style: normal;, proxima-nova, Arial, sans-serif;font-size: 16px;font-weight: 700">Saviez-vous que vous pouvez nous joindre 24 heures par jour ?</span></span>
2736 + </li>
2737 + <li class="elementor-icon-list-item">
2738 + <span class="elementor-icon-list-text"><span style=", proxima-nova, Arial, sans-serif;font-size: 16px;font-style: normal">Vous pouvez aussi nous appeler au 514 252-2944 ou passer nous voir pendant nos heures d'ouverture.</span></span>
2739 + </li>
2740 + </ul>
2741 + </div>
2742 + </div>
2743 + </div>
2744 + </div>
2745 + </div>
2746 + </section>
2747 + </div>
2748 + </div>
2749 + </div>
2750 + </section>
2751 + </div>
2752 + <div data-elementor-type="popup" data-elementor-id="74262" class="elementor elementor-74262 elementor-location-popup" data-elementor-settings="{&quot;open_selector&quot;:&quot;a[href=\&quot;#ir-link-popup\&quot;]&quot;,&quot;a11y_navigation&quot;:&quot;yes&quot;,&quot;triggers&quot;:[],&quot;timing&quot;:[]}" data-elementor-post-type="elementor_library">
2753 + <section class="elementor-section elementor-top-section elementor-element elementor-element-55b84f2 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="55b84f2" data-element_type="section" data-e-type="section">
2754 + <div class="elementor-container elementor-column-gap-default">
2755 + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5f53881e" data-id="5f53881e" data-element_type="column" data-e-type="column">
2756 + <div class="elementor-widget-wrap elementor-element-populated">
2757 + <div class="elementor-element elementor-element-6872faff elementor-widget elementor-widget-heading" data-id="6872faff" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
2758 + <div class="elementor-widget-container">
2759 + <h3 class="elementor-heading-title elementor-size-default">En cliquant sur ce lien, vous serez redirigé vers un site unilingue en anglais.</h3> </div>
2760 + </div>
2761 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-25ce557a elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="25ce557a" data-element_type="section" data-e-type="section">
2762 + <div class="elementor-container elementor-column-gap-default">
2763 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-ac2854f" data-id="ac2854f" data-element_type="column" data-e-type="column">
2764 + <div class="elementor-widget-wrap elementor-element-populated">
2765 + <div class="elementor-element elementor-element-62d6acf0 button-small elementor-widget elementor-widget-button" data-id="62d6acf0" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
2766 + <div class="elementor-widget-container">
2767 + <div class="elementor-button-wrapper">
2768 + <a class="elementor-button elementor-button-link elementor-size-sm" href="#elementor-action%3Aaction%3Dpopup%3Aclose%26settings%3DeyJkb19ub3Rfc2hvd19hZ2FpbiI6IiJ9">
2769 + <span class="elementor-button-content-wrapper">
2770 + <span class="elementor-button-text">Annuler</span>
2771 + </span>
2772 + </a>
2773 + </div>
2774 + </div>
2775 + </div>
2776 + </div>
2777 + </div>
2778 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-6f240ef1" data-id="6f240ef1" data-element_type="column" data-e-type="column">
2779 + <div class="elementor-widget-wrap elementor-element-populated">
2780 + <div class="elementor-element elementor-element-6e09c9c9 button-small elementor-widget elementor-widget-button" data-id="6e09c9c9" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
2781 + <div class="elementor-widget-container">
2782 + <div class="elementor-button-wrapper">
2783 + <a class="elementor-button elementor-button-link elementor-size-sm" href="https://ir.capreit.ca/ir-overview/default.aspx" target="_blank">
2784 + <span class="elementor-button-content-wrapper">
2785 + <span class="elementor-button-text">Procéder</span>
2786 + </span>
2787 + </a>
2788 + </div>
2789 + </div>
2790 + </div>
2791 + </div>
2792 + </div>
2793 + </div>
2794 + </section>
2795 + </div>
2796 + </div>
2797 + </div>
2798 + </section>
2799 + </div>
2800 + <script>
2801 + ( () => {
2802 + const lazyloadRunObserver = () => {
2803 + const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` );
2804 + const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => {
2805 + entries.forEach( ( entry ) => {
2806 + if ( entry.isIntersecting ) {
2807 + let lazyloadBackground = entry.target;
2808 + if( lazyloadBackground ) {
2809 + lazyloadBackground.classList.add( 'e-lazyloaded' );
2810 + }
2811 + lazyloadBackgroundObserver.unobserve( entry.target );
2812 + }
2813 + });
2814 + }, { rootMargin: '200px 0px 200px 0px' } );
2815 + lazyloadBackgrounds.forEach( ( lazyloadBackground ) => {
2816 + lazyloadBackgroundObserver.observe( lazyloadBackground );
2817 + } );
2818 + };
2819 + const events = [
2820 + 'DOMContentLoaded',
2821 + 'elementor/lazyload/observe',
2822 + ];
2823 + events.forEach( ( event ) => {
2824 + document.addEventListener( event, lazyloadRunObserver );
2825 + } );
2826 + } )();
2827 + </script>
2828 + <link rel='stylesheet' id='widget-nav-menu-css' href='https://www.capreit.ca/wp-content/plugins/elementor-pro/assets/css/widget-nav-menu.min.css?ver=4.2.1' type='text/css' media='all' />
2829 +<link rel='stylesheet' id='widget-call-to-action-css' href='https://www.capreit.ca/wp-content/plugins/elementor-pro/assets/css/widget-call-to-action.min.css?ver=4.2.1' type='text/css' media='all' />
2830 +<link rel='stylesheet' id='e-transitions-css' href='https://www.capreit.ca/wp-content/plugins/elementor-pro/assets/css/conditionals/transitions.min.css?ver=4.2.1' type='text/css' media='all' />
2831 +<script type="text/javascript" src="https://www.capreit.ca/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js?ver=4.2.1" id="elementor-webpack-runtime-js"></script>
2832 +<script type="text/javascript" src="https://www.capreit.ca/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=4.2.1" id="elementor-frontend-modules-js"></script>
2833 +<script type="text/javascript" src="https://www.capreit.ca/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3" id="jquery-ui-core-js"></script>
2834 +<script type="text/javascript" id="elementor-frontend-js-extra">
2835 +/* <![CDATA[ */
2836 +var uael_particles_script = {"uael_particles_url":"https://www.capreit.ca/wp-content/plugins/ultimate-elementor/assets/min-js/uael-particles.min.js","particles_url":"https://www.capreit.ca/wp-content/plugins/ultimate-elementor/assets/lib/particles/particles.min.js","snowflakes_image":"https://www.capreit.ca/wp-content/plugins/ultimate-elementor/assets/img/snowflake.svg","gift":"https://www.capreit.ca/wp-content/plugins/ultimate-elementor/assets/img/gift.png","tree":"https://www.capreit.ca/wp-content/plugins/ultimate-elementor/assets/img/tree.png","skull":"https://www.capreit.ca/wp-content/plugins/ultimate-elementor/assets/img/skull.png","ghost":"https://www.capreit.ca/wp-content/plugins/ultimate-elementor/assets/img/ghost.png","moon":"https://www.capreit.ca/wp-content/plugins/ultimate-elementor/assets/img/moon.png","bat":"https://www.capreit.ca/wp-content/plugins/ultimate-elementor/assets/img/bat.png","pumpkin":"https://www.capreit.ca/wp-content/plugins/ultimate-elementor/assets/img/pumpkin.png"};
2837 +//# sourceURL=elementor-frontend-js-extra
2838 +/* ]]> */
2839 +</script>
2840 +<script type="text/javascript" id="elementor-frontend-js-before">
2841 +/* <![CDATA[ */
2842 +var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Partager sur Facebook","shareOnX":"Share on X","pinIt":"L\u2019\u00e9pingler","download":"T\u00e9l\u00e9charger","downloadImage":"T\u00e9l\u00e9charger une image","fullscreen":"Plein \u00e9cran","zoom":"Zoom","share":"Partager","playVideo":"Lire la vid\u00e9o","previous":"Pr\u00e9c\u00e9dent","next":"Suivant","close":"Fermer","a11yCarouselPrevSlideMessage":"Diapositive pr\u00e9c\u00e9dente","a11yCarouselNextSlideMessage":"Diapositive suivante","a11yCarouselFirstSlideMessage":"Ceci est la premi\u00e8re diapositive","a11yCarouselLastSlideMessage":"Ceci est la derni\u00e8re diapositive","a11yCarouselPaginationBulletMessage":"Aller \u00e0 la diapositive"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Portrait mobile","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Paysage","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablette en mode portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablette en mode paysage","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Portable","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"\u00c9cran large","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":false},"version":"4.2.1","is_static":false,"experimentalFeatures":{"additional_custom_breakpoints":true,"e_panel_promotions":true,"theme_builder_v2":true,"global_classes_should_enforce_capabilities":true,"e_variables":true,"e_opt_in_v4_page":true,"e_components":true,"e_interactions":true,"e_widget_creation":true,"import-export-customization":true,"e_pro_atomic_form":true,"e_pro_collection_loop":true,"e_pro_variables":true,"e_pro_interactions":true},"urls":{"assets":"https:\/\/www.capreit.ca\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/www.capreit.ca\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/www.capreit.ca\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"4c1d708589","atomicFormsSendForm":"7c4241cea2"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":23547,"title":"Appartements%20Le%20Samuel-Holland%20%7C%20Ville%20de%20Qu%C3%A9bec%2C%20QC","excerpt":"","featuredImage":"https:\/\/www.capreit.ca\/wp-content\/uploads\/2021\/09\/1-Month-Rent-Free-BIL-2-1024x683.jpg"}};
2843 +//# sourceURL=elementor-frontend-js-before
2844 +/* ]]> */
2845 +</script>
2846 +<script type="text/javascript" src="https://www.capreit.ca/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=4.2.1" id="elementor-frontend-js"></script>
2847 +<script type="text/javascript" id="elementor-frontend-js-after">
2848 +/* <![CDATA[ */
2849 +window.scope_array = [];
2850 + window.backend = 0;
2851 + jQuery.cachedScript = function( url, options ) {
2852 + // Allow user to set any option except for dataType, cache, and url.
2853 + options = jQuery.extend( options || {}, {
2854 + dataType: "script",
2855 + cache: true,
2856 + url: url
2857 + });
2858 + // Return the jqXHR object so we can chain callbacks.
2859 + return jQuery.ajax( options );
2860 + };
2861 + jQuery( window ).on( "elementor/frontend/init", function() {
2862 + elementorFrontend.hooks.addAction( "frontend/element_ready/global", function( $scope, $ ){
2863 + if ( "undefined" == typeof $scope ) {
2864 + return;
2865 + }
2866 + if ( $scope.hasClass( "uael-particle-yes" ) ) {
2867 + window.scope_array.push( $scope );
2868 + $scope.find(".uael-particle-wrapper").addClass("js-is-enabled");
2869 + }else{
2870 + return;
2871 + }
2872 + if(elementorFrontend.isEditMode() && $scope.find(".uael-particle-wrapper").hasClass("js-is-enabled") && window.backend == 0 ){
2873 + var uael_url = uael_particles_script.uael_particles_url;
2874 +
2875 + jQuery.cachedScript( uael_url );
2876 + window.backend = 1;
2877 + }else if(elementorFrontend.isEditMode()){
2878 + var uael_url = uael_particles_script.uael_particles_url;
2879 + jQuery.cachedScript( uael_url ).done(function(){
2880 + var flag = true;
2881 + });
2882 + }
2883 + });
2884 + });
2885 +
2886 + // Added both `document` and `window` event listeners to address issues where some users faced problems with the `document` event not triggering as expected.
2887 + // Define cachedScript globally to avoid redefining it.
2888 +
2889 + jQuery.cachedScript = function(url, options) {
2890 + options = jQuery.extend(options || {}, {
2891 + dataType: "script",
2892 + cache: true,
2893 + url: url
2894 + });
2895 + return jQuery.ajax(options); // Return the jqXHR object so we can chain callbacks
2896 + };
2897 +
2898 + let uael_particle_loaded = false; //flag to prevent multiple script loads.
2899 +
2900 + jQuery( document ).on( "ready elementor/popup/show", () => {
2901 + loadParticleScript();
2902 + });
2903 +
2904 + jQuery( window ).one( "elementor/frontend/init", () => {
2905 + if (!uael_particle_loaded) {
2906 + loadParticleScript();
2907 + }
2908 + });
2909 +
2910 + function loadParticleScript(){
2911 + // Use jQuery to check for the presence of the element
2912 + if (jQuery(".uael-particle-yes").length < 1) {
2913 + return;
2914 + }
2915 +
2916 + uael_particle_loaded = true;
2917 + var uael_url = uael_particles_script.uael_particles_url;
2918 + // Call the cachedScript function
2919 + jQuery.cachedScript(uael_url);
2920 + }
2921 +//# sourceURL=elementor-frontend-js-after
2922 +/* ]]> */
2923 +</script>
2924 +<script type="text/javascript" src="https://www.capreit.ca/wp-content/themes/capreit/dist/scripts/main_5feac275.js" id="sage/main.js-js"></script>
2925 +<script type="text/javascript" src="https://www.capreit.ca/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.min.js?ver=1.2.1" id="smartmenus-js"></script>
2926 +<script type="text/javascript" src="https://www.capreit.ca/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js?ver=4.2.1" id="elementor-pro-webpack-runtime-js"></script>
2927 +<script type="text/javascript" src="https://www.capreit.ca/wp-includes/js/dist/hooks.min.js?ver=dd5603f07f9220ed27f1" id="wp-hooks-js"></script>
2928 +<script type="text/javascript" src="https://www.capreit.ca/wp-includes/js/dist/i18n.min.js?ver=c26c3dc7bed366793375" id="wp-i18n-js"></script>
2929 +<script type="text/javascript" id="wp-i18n-js-after">
2930 +/* <![CDATA[ */
2931 +wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
2932 +//# sourceURL=wp-i18n-js-after
2933 +/* ]]> */
2934 +</script>
2935 +<script type="text/javascript" id="elementor-pro-frontend-js-before">
2936 +/* <![CDATA[ */
2937 +var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/www.capreit.ca\/wp-admin\/admin-ajax.php","nonce":"ded7905752","urls":{"assets":"https:\/\/www.capreit.ca\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/www.capreit.ca\/fr\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":true},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"fr_FR","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/www.capreit.ca\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}};
2938 +//# sourceURL=elementor-pro-frontend-js-before
2939 +/* ]]> */
2940 +</script>
2941 +<script type="text/javascript" src="https://www.capreit.ca/wp-content/plugins/elementor-pro/assets/js/frontend.min.js?ver=4.2.1" id="elementor-pro-frontend-js"></script>
2942 +<script type="text/javascript" src="https://www.capreit.ca/wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js?ver=4.2.1" id="pro-elements-handlers-js"></script>
2943 +<script> (function(){ var s = document.createElement('script'); var h = document.querySelector('head') || document.body; s.src = 'https://acsbapp.com/apps/app/dist/js/app.js'; s.async = true; s.onload = function(){ acsbJS.init({ statementLink : '', footerHtml : '', hideMobile : false, hideTrigger : false, disableBgProcess : false, language : 'en', position : 'left', leadColor : '#146ff8', triggerColor : '#af5341', triggerRadius : '50%', triggerPositionX : 'left', triggerPositionY : 'bottom', triggerIcon : 'people', triggerSize : 'medium', triggerOffsetX : 20, triggerOffsetY : 20, mobile : { triggerSize : 'small', triggerPositionX : 'left', triggerPositionY : 'bottom', triggerOffsetX : 10, triggerOffsetY : 10, triggerRadius : '50%' } }); }; h.appendChild(s); })(); </script>
2944 + <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyC9YibQpxYs70R0XJA7VAXx0eIm9cYcfEE&v=3&libraries=places&language=fr&callback=Function.prototype"></script>
2945 +</body>
2946 +</html>
2947 +
2948 +<!--
2949 +Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin
2950 +
2951 +Mise en cache de page à l’aide de Disk: Enhanced
2952 +
2953 +Served from: www.capreit.ca @ 2026-08-08 17:41:18 by W3 Total Cache
2954 +-->
\ No newline at end of file
added tests/fixtures/capreit/25c3d44d79db686a23d1.html +1178 −0
@@ -0,0 +1,2471 @@
1 +<!doctype html>
2 +<html lang="fr">
3 +<head>
4 + <meta charset="utf-8">
5 + <meta http-equiv="x-ua-compatible" content="ie=edge">
6 + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
7 + <meta name="facebook-domain-verification" content="uu15rq8zjxxh0qtrav90ttd4jvq10g" />
8 + <title>Appartement à louer dans Appartements Le Portneuf | CAPREIT</title>
9 +<link rel="alternate" hreflang="en" href="https://www.capreit.ca/apartments-for-rent/montreal-qc/the-portneuf-apartments/" />
10 +<link rel="alternate" hreflang="fr" href="https://www.capreit.ca/fr/appartements-a-louer/montreal-qc/appartements-le-portneuf/" />
11 +<link rel="alternate" hreflang="x-default" href="https://www.capreit.ca/apartments-for-rent/montreal-qc/the-portneuf-apartments/" />
12 +<meta name="dc.title" content="Appartement à louer dans Appartements Le Portneuf | CAPREIT">
13 +<meta name="dc.description" content="Canadian Apartment Properties REIT offre des appartements spacieux et luxueux à louer dans Appartements Le Portneuf, à Montréal, QC. Explorez dès aujourd’hui!">
14 +<meta name="dc.relation" content="https://www.capreit.ca/fr/appartements-a-louer/montreal-qc/appartements-le-portneuf/">
15 +<meta name="dc.source" content="https://www.capreit.ca/fr/">
16 +<meta name="dc.language" content="fr_FR">
17 +<meta name="description" content="Canadian Apartment Properties REIT offre des appartements spacieux et luxueux à louer dans Appartements Le Portneuf, à Montréal, QC. Explorez dès aujourd’hui!">
18 +<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1">
19 +<link rel="canonical" href="https://www.capreit.ca/fr/appartements-a-louer/montreal-qc/appartements-le-portneuf/">
20 +<meta property="og:url" content="https://www.capreit.ca/fr/appartements-a-louer/montreal-qc/appartements-le-portneuf/">
21 +<meta property="og:site_name" content="Canadian Apartment Properties REIT">
22 +<meta property="og:locale" content="fr_FR">
23 +<meta property="og:locale:alternate" content="en_US">
24 +<meta property="og:type" content="article">
25 +<meta property="article:author" content="">
26 +<meta property="article:publisher" content="">
27 +<meta property="og:title" content="Appartement à louer dans Appartements Le Portneuf | CAPREIT">
28 +<meta property="og:description" content="Canadian Apartment Properties REIT offre des appartements spacieux et luxueux à louer dans Appartements Le Portneuf, à Montréal, QC. Explorez dès aujourd’hui!">
29 +<meta property="og:image" content="https://www.capreit.ca/wp-content/uploads/2021/09/CAPREIT-Edmond-8.jpg">
30 +<meta property="og:image:secure_url" content="https://www.capreit.ca/wp-content/uploads/2021/09/CAPREIT-Edmond-8.jpg">
31 +<meta property="og:image:width" content="1200">
32 +<meta property="og:image:height" content="800">
33 +<meta property="fb:pages" content="">
34 +<meta property="fb:app_id" content="">
35 +<meta name="twitter:card" content="summary">
36 +<meta name="twitter:site" content="">
37 +<meta name="twitter:creator" content="">
38 +<meta name="twitter:title" content="Appartement à louer dans Appartements Le Portneuf | CAPREIT">
39 +<meta name="twitter:description" content="Canadian Apartment Properties REIT offre des appartements spacieux et luxueux à louer dans Appartements Le Portneuf, à Montréal, QC. Explorez dès aujourd’hui!">
40 +<meta name="twitter:image" content="https://www.capreit.ca/wp-content/uploads/2021/09/CAPREIT-Edmond-8.jpg">
41 +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://www.capreit.ca/fr/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.capreit.ca%2Ffr%2Fappartements-a-louer%2Fmontreal-qc%2Fappartements-le-portneuf%2F" />
42 +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://www.capreit.ca/fr/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.capreit.ca%2Ffr%2Fappartements-a-louer%2Fmontreal-qc%2Fappartements-le-portneuf%2F&#038;format=xml" />
43 +<style id='wp-img-auto-sizes-contain-inline-css' type='text/css'>
44 +img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
45 +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
46 +</style>
47 +<style id='wpseopress-local-business-style-inline-css' type='text/css'>
48 +span.wp-block-wpseopress-local-business-field{margin-right:8px}
49 +
50 +/*# sourceURL=https://www.capreit.ca/wp-content/plugins/wp-seopress-pro/public/editor/blocks/local-business/style-index.css */
51 +</style>
52 +<style id='wpseopress-table-of-contents-style-inline-css' type='text/css'>
53 +.wp-block-wpseopress-table-of-contents li.active>a{font-weight:bold}
54 +
55 +/*# sourceURL=https://www.capreit.ca/wp-content/plugins/wp-seopress-pro/public/editor/blocks/table-of-contents/style-index.css */
56 +</style>
57 +<style id='global-styles-inline-css' type='text/css'>
58 +:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){margin-left: auto !important;margin-right: auto !important;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: underline;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
59 +:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
60 +:where(.wp-block-term-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-term-template.is-layout-grid){gap: 1.25em;}
61 +:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
62 +:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
63 +/*# sourceURL=global-styles-inline-css */
64 +</style>
65 +<link rel='stylesheet' id='elementor-frontend-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=4.2.1' type='text/css' media='all' />
66 +<style id='elementor-frontend-inline-css' type='text/css'>
67 +.elementor-kit-7265{--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-weight:500;}.elementor-kit-7265 e-page-transition{background-color:#FFBC7D;}.elementor-kit-7265 button,.elementor-kit-7265 input[type="button"],.elementor-kit-7265 input[type="submit"],.elementor-kit-7265 .elementor-button{font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-kit-7265 button:hover,.elementor-kit-7265 button:focus,.elementor-kit-7265 input[type="button"]:hover,.elementor-kit-7265 input[type="button"]:focus,.elementor-kit-7265 input[type="submit"]:hover,.elementor-kit-7265 input[type="submit"]:focus,.elementor-kit-7265 .elementor-button:hover,.elementor-kit-7265 .elementor-button:focus{border-radius:8px 8px 30px 8px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
68 +.elementor-74262 .elementor-element.elementor-element-6872faff > .elementor-widget-container{padding:10px 10px 10px 10px;}.elementor-74262 .elementor-element.elementor-element-25ce557a{padding:10px 10px 10px 10px;}.elementor-74262 .elementor-element.elementor-element-62d6acf0 .elementor-button{background-color:#314561;}.elementor-74262 .elementor-element.elementor-element-6e09c9c9 .elementor-button{background-color:#314561;}#elementor-popup-modal-74262{background-color:#0000008A;justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-74262 .dialog-message{width:533px;height:auto;padding:20px 20px 20px 20px;}#elementor-popup-modal-74262 .dialog-widget-content{box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}@media(max-width:767px){.elementor-74262 .elementor-element.elementor-element-25ce557a{padding:0px 0px 0px 0px;}#elementor-popup-modal-74262 .dialog-message{width:440px;}}
69 +/*# sourceURL=elementor-frontend-inline-css */
70 +</style>
71 +<link rel='stylesheet' id='widget-heading-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver=4.2.1' type='text/css' media='all' />
72 +<link rel='stylesheet' id='e-popup-css' href='https://www.capreit.ca/wp-content/plugins/elementor-pro/assets/css/conditionals/popup.min.css?ver=4.2.1' type='text/css' media='all' />
73 +<link rel='stylesheet' id='elementor-icons-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.53.0' type='text/css' media='all' />
74 +<link rel='stylesheet' id='uael-frontend-css' href='https://www.capreit.ca/wp-content/plugins/ultimate-elementor/assets/min-css/uael-frontend.min.css?ver=1.44.4' type='text/css' media='all' />
75 +<link rel='stylesheet' id='uael-teammember-social-icons-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/css/widget-social-icons.min.css?ver=3.24.0' type='text/css' media='all' />
76 +<link rel='stylesheet' id='uael-social-share-icons-brands-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.css?ver=5.15.3' type='text/css' media='all' />
77 +<link rel='stylesheet' id='uael-social-share-icons-fontawesome-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.css?ver=5.15.3' type='text/css' media='all' />
78 +<link rel='stylesheet' id='uael-nav-menu-icons-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.css?ver=5.15.3' type='text/css' media='all' />
79 +<link rel='stylesheet' id='font-awesome-5-all-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css?ver=4.2.1' type='text/css' media='all' />
80 +<link rel='stylesheet' id='font-awesome-4-shim-css' href='https://www.capreit.ca/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css?ver=4.2.1' type='text/css' media='all' />
81 +<link rel='stylesheet' id='sage/main.css-css' href='https://www.capreit.ca/wp-content/themes/capreit/dist/styles/main_5feac275.css' type='text/css' media='all' />
82 +<script type="text/javascript" src="https://www.capreit.ca/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script>
83 +<script type="text/javascript" src="https://www.capreit.ca/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script>
84 +<script type="text/javascript" id="wpml-cookie-js-extra">
85 +/* <![CDATA[ */
86 +var wpml_cookies = {"wp-wpml_current_language":{"value":"fr","expires":1,"path":"/"}};
87 +var wpml_cookies = {"wp-wpml_current_language":{"value":"fr","expires":1,"path":"/"}};
88 +//# sourceURL=wpml-cookie-js-extra
89 +/* ]]> */
90 +</script>
91 +<script type="text/javascript" src="https://www.capreit.ca/wp-content/plugins/sitepress-multilingual-cms/res/js/cookies/language-cookie.js?ver=494000" id="wpml-cookie-js" defer="defer" data-wp-strategy="defer"></script>
92 +<script type="text/javascript" src="https://www.capreit.ca/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js?ver=4.2.1" id="font-awesome-4-shim-js"></script>
93 +<link rel="https://api.w.org/" href="https://www.capreit.ca/fr/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.capreit.ca/xmlrpc.php?rsd" />
94 +<link rel='shortlink' href='https://www.capreit.ca/fr/?p=18405' />
95 +<meta name="generator" content="WPML ver:4.9.4 stt:1,4;" />
96 +<script>window.schema_highlighter={accountId: "CAPREIT", output: false, outputCache: false}</script> <script async src="https://cdn.schemaapp.com/javascript/highlight.js"></script><script type="application/ld+json" data-source="JSCaching:http://schemaapp.com/resources/admin/Organization_DevCAPREIT/Template20211201151522" data-schema="18405-property-App">[{"@type":["Apartment","Product"],"@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-le-portneuf\/#Apartment_Product","@context":{"@vocab":"http:\/\/schema.org\/","kg":"http:\/\/g.co\/kg"},"url":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-le-portneuf\/","address":[{"@type":"PostalAddress","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-le-portneuf\/#Apartment_Product_address_PostalAddress","addressCountry":[{"@type":"Country","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-le-portneuf\/#Apartment_Product_address_PostalAddress_addressCountry_Country","name":"https:\/\/www.wikidata.org\/wiki\/Q16"}],"addressLocality":" rue Sherbrooke Est","streetAddress":"\n \n 6465","addressRegion":" Montr\u00e9al","postalCode":" QC, H1N 3N6\n "}],"petsAllowed":["Dog Friendly","Cat Friendly"],"offers":[{"@type":"AggregateOffer","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-le-portneuf\/#Apartment_Product_offers_AggregateOffer","priceCurrency":"CAD","offeredBy":[{"@id":"https:\/\/www.capreit.ca\/"}],"highPrice":1645,"availability":"https:\/\/schema.org\/InStock","lowPrice":1275}],"subjectOf":[{"@type":"WebPage","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-le-portneuf\/#Apartment_Product_subjectOf_WebPage","inLanguage":"fr-CA"},{"@type":"BreadcrumbList","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-le-portneuf\/#Apartment_Product_subjectOf_BreadcrumbList","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-le-portneuf\/#TagList_CAPREITApartmentPagesBreadcrumbList_0_Apartment_Product_subjectOf_BreadcrumbList_itemListElement_ListItem","name":"Montr\u00e9al","item":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/","position":1},{"@type":"ListItem","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-le-portneuf\/#TagList_CAPREITApartmentPagesBreadcrumbList_1_Apartment_Product_subjectOf_BreadcrumbList_itemListElement_ListItem","name":"M\u00e9tro Langelier","item":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/metro-langelier-montreal-qc\/","position":2}]}],"name":"\n Appartements Le Portneuf\n ","description":"Canadian Apartment Properties REIT offre des appartements spacieux et luxueux \u00e0 louer dans Appartements Le Portneuf, \u00e0 Montr\u00e9al, QC. Explorez d\u00e8s aujourd\u2019hui!","image":[{"@type":"ImageObject","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-le-portneuf\/#TagList_6a58fcc24bb0b4.31288446_0_Apartment_Product_image_ImageObject","url":"https:\/\/www.capreit.ca\/wp-content\/uploads\/2021\/09\/CAPREIT-Edmond-8.jpg"},{"@type":"ImageObject","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-le-portneuf\/#TagList_6a58fcc24bb0b4.31288446_1_Apartment_Product_image_ImageObject","url":"https:\/\/www.capreit.ca\/wp-content\/uploads\/2022\/06\/Portneuf-Quebec-Living-Room_VS-scaled.jpg"},{"@type":"ImageObject","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-le-portneuf\/#TagList_6a58fcc24bb0b4.31288446_2_Apartment_Product_image_ImageObject","url":"https:\/\/www.capreit.ca\/wp-content\/uploads\/2022\/06\/Portneuf-Quebec-Living-Room-Home-Office_VS-scaled.jpg"},{"@type":"ImageObject","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-le-portneuf\/#TagList_6a58fcc24bb0b4.31288446_3_Apartment_Product_image_ImageObject","url":"https:\/\/www.capreit.ca\/wp-content\/uploads\/2021\/09\/le-portneuf-salle-de-bain.jpg"},{"@type":"ImageObject","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-le-portneuf\/#TagList_6a58fcc24bb0b4.31288446_4_Apartment_Product_image_ImageObject","url":"https:\/\/www.capreit.ca\/wp-content\/uploads\/2021\/09\/le-portneuf-chambre-a-coucher.jpg"}],"amenityFeature":[{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-le-portneuf\/#Highlight-20240612135615332_0_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Balcons priv\u00e9s\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-le-portneuf\/#Highlight-20240612135615332_1_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Cuisini\u00e8re incluse*\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-le-portneuf\/#Highlight-20240612135615332_2_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n R\u00e9frig\u00e9rateur inclus*\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-le-portneuf\/#Highlight-20240612135615332_3_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Buanderie dans l\u2019immeuble\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-le-portneuf\/#Highlight-20240612135615332_4_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Ascenseurs\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-le-portneuf\/#Highlight-20240612135615332_5_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Stationnement*\n "},{"@type":"LocationFeatureSpecification","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-le-portneuf\/#Highlight-20240612135615332_6_Apartment_Product_amenityFeature_LocationFeatureSpecification","name":"\n \n Chats* accept\u00e9s\n "}],"containedIn":[{"@type":"Place","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-le-portneuf\/#Apartment_Product_containedIn_Place","name":"rue Sherbrooke Est"}],"geo":[{"@type":"GeoCoordinates","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-le-portneuf\/#Apartment_Product_geo_GeoCoordinates","latitude":"45.582508","longitude":"-73.543529"}],"numberOfBedrooms":3,"hasMap":[{"@type":"Map","@id":"https:\/\/www.capreit.ca\/fr\/appartements-a-louer\/montreal-qc\/appartements-le-portneuf\/#Apartment_Product_hasMap_Map","url":"https:\/\/maps.google.com\/maps?ll=45.582508,-73.543529&z=15&t=m&hl=fr&gl=US&mapclient=apiv3"}]},{"@context":"http:\/\/schema.org","@type":"Corporation","sameAs":["https:\/\/www.linkedin.com\/company\/capreit\/","https:\/\/www.youtube.com\/user\/CAPRENT","https:\/\/g.co\/kgs\/QTkLuSJ","https:\/\/www.instagram.com\/caprent\/","https:\/\/twitter.com\/caprent","https:\/\/www.facebook.com\/caprent\/"],"areaServed":"https:\/\/en.wikipedia.org\/wiki\/Canada","foundingDate":"1997-01-01","description":"Search more than 30000 apartments and townhouses across Canada. Our Apartments for Rent in Toronto, Montreal and Vancouver are all excellent choices.","name":"CAPREIT","logo":"https:\/\/www.capreit.ca\/wp-content\/themes\/capreit\/resources\/assets\/images\/logo-header.svg","alternateName":"Canadian Apartment Properties REIT","url":"https:\/\/www.capreit.ca\/","image":"https:\/\/www.capreit.ca\/img\/logo.png","email":"hello@capreit.net","telephone":"+14168619404","address":{"@type":"PostalAddress","streetAddress":"11 Church Street","postalCode":"M5E 1W1","addressRegion":"ON","addressLocality":"Toronto","addressCountry":"CA","name":"CAPREIT Address","@id":"https:\/\/www.capreit.ca\/#PostalAddress"},"contactPoint":{"@type":"ContactPoint","contactOption":"https:\/\/en.wikipedia.org\/wiki\/Telephone_call","availableLanguage":"https:\/\/en.wikipedia.org\/wiki\/English_language","areaServed":"https:\/\/en.wikipedia.org\/wiki\/Canada","contactType":"customer support","telephone":"+1 (416) 861-9404","description":"Canadian Apartment Properties Real Estate Investment Trust (CAPREIT) is a fully internalized growth-oriented investment trust owning freehold interests in multi-unit residential properties, including apartment buildings, townhouses and land lease communities located in or near major urban centers across Canada.","name":"Contact Us","image":"https:\/\/www.capreit.ca\/uploadedImages\/Content\/Aon_BE_Stamp_WinnCirc_Platinum_CA2016_Eng_Color.jpg","faxNumber":"+1 (416) 354-0192 ","url":["https:\/\/www.caprent.com\/contact-us\/","https:\/\/www.capreit.ca\/contact-us\/"],"@id":"https:\/\/www.capreit.ca\/contact-us\/"},"@id":"https:\/\/www.capreit.ca\/"}]</script>
97 +<meta name="generator" content="Elementor 4.2.1; features: additional_custom_breakpoints; settings: css_print_method-internal, google_font-enabled, font_display-auto">
98 +<script type="text/javascript">
99 + var _ss = _ss || [];
100 + _ss.push(['_setDomain', 'https://koi-3QNMRO6SRA.marketingautomation.services/net']);
101 + _ss.push(['_setAccount', 'KOI-4LZL0GS9QG']);
102 + _ss.push(['_trackPageView']);
103 + window._pa = window._pa || {};
104 + // _pa.orderId = "myOrderId"; // OPTIONAL: attach unique conversion identifier to conversions
105 + // _pa.revenue = "19.99"; // OPTIONAL: attach dynamic purchase values to conversions
106 + // _pa.productId = "myProductId"; // OPTIONAL: Include product ID for use with dynamic ads
107 +(function() {
108 + var ss = document.createElement('script');
109 + ss.type = 'text/javascript'; ss.async = true;
110 + ss.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'koi-3QNMRO6SRA.marketingautomation.services/client/ss.js?ver=2.4.0';
111 + var scr = document.getElementsByTagName('script')[0];
112 + scr.parentNode.insertBefore(ss, scr);
113 +})();
114 +</script>
115 +
116 +<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style> <style>
117 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
118 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
119 + background-image: none !important;
120 + }
121 + @media screen and (max-height: 1024px) {
122 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
123 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
124 + background-image: none !important;
125 + }
126 + }
127 + @media screen and (max-height: 640px) {
128 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
129 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
130 + background-image: none !important;
131 + }
132 + }
133 + </style>
134 + <link rel="icon" href="https://www.capreit.ca/wp-content/uploads/2021/11/cropped-cropped-Capreit_Icon_Indigo_RGB_600px@72ppi-32x32.png" sizes="32x32" />
135 +<link rel="icon" href="https://www.capreit.ca/wp-content/uploads/2021/11/cropped-cropped-Capreit_Icon_Indigo_RGB_600px@72ppi-192x192.png" sizes="192x192" />
136 +<link rel="apple-touch-icon" href="https://www.capreit.ca/wp-content/uploads/2021/11/cropped-cropped-Capreit_Icon_Indigo_RGB_600px@72ppi-180x180.png" />
137 +<meta name="msapplication-TileImage" content="https://www.capreit.ca/wp-content/uploads/2021/11/cropped-cropped-Capreit_Icon_Indigo_RGB_600px@72ppi-270x270.png" />
138 + <link rel="stylesheet" href="https://use.typekit.net/tuu1tlg.css">
139 + <!-- Google Tag Manager -->
140 + <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
141 + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
142 + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
143 + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
144 + })(window,document,'script','dataLayer','GTM-K5G93XF');</script>
145 + <!-- End Google Tag Manager -->
146 + <script>
147 + var CURRENT_LANGUAGE = "fr";
148 + </script>
149 +</head>
150 +<body class="wp-singular property-template-default single single-property postid-18405 wp-theme-capreitresources appartements-le-portneuf app-data index-data singular-data single-data single-property-data single-property-appartements-le-portneuf-data elementor-default elementor-kit-7265">
151 + <!-- Google Tag Manager (noscript) -->
152 + <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-K5G93XF"
153 + height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
154 + <!-- End Google Tag Manager (noscript) -->
155 + <header class="header">
156 + <div class="wrapper">
157 + <a class="header-logo" href="https://www.capreit.ca/fr/">
158 + Canadian Apartment Properties REIT
159 + </a>
160 + <div class="header-wrap">
161 + <nav class="header-navigation" aria-label="primary">
162 + <div class="menu-main-menu-french-container"><ul id="menu-main-menu-french" class="nav"><li class="navigation-listitem has-submenu" role="presentation"> <a class="navigation-item" id="main-menu-item-0-17000" href="#navigation-louer" aria-haspopup="true" aria-expanded="false" aria-controls="main-menu-0-17000" role="menuitem" tabindex="0"><span>Louer</span></a><div class="sub-navigation" id="main-menu-0-17000" role="region" aria-labelledby="main-menu-item-0-17000"><ul class="sub-navigation-wrapper" role="menu"><li class="sub-navigation-listitem" role="presentation"> <a class="sub-navigation-item" href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" role="menuitem" tabindex="0"><span>Pourquoi louer chez nous</span></a></li></ul></div></li><li class="navigation-listitem has-submenu" role="presentation"> <a class="navigation-item" id="main-menu-item-0-68522" href="#navigation-partnerfr" aria-haspopup="true" aria-expanded="false" aria-controls="main-menu-0-68522" role="menuitem" tabindex="0"><span>Collaborer avec CAPREIT</span></a><div class="sub-navigation" id="main-menu-0-68522" role="region" aria-labelledby="main-menu-item-0-68522"><ul class="sub-navigation-wrapper" role="menu"><li class="sub-navigation-listitem" role="presentation"> <a class="sub-navigation-item" href="https://www.capreit.ca/fr/commercial/" role="menuitem" tabindex="0"><span>Commercial</span></a></li></ul></div></li><li class="navigation-listitem has-submenu" role="presentation"> <a class="navigation-item" id="main-menu-item-0-17001" href="#navigation-apropos" aria-haspopup="true" aria-expanded="false" aria-controls="main-menu-0-17001" role="menuitem" tabindex="0"><span>À propos</span></a><div class="sub-navigation" id="main-menu-0-17001" role="region" aria-labelledby="main-menu-item-0-17001"><ul class="sub-navigation-wrapper" role="menu"><li class="sub-navigation-listitem" role="presentation"> <a class="sub-navigation-item" href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" role="menuitem" tabindex="0"><span>Programmes de perfectionnement des employés</span></a></li></ul></div></li><li class="navigation-listitem" role="presentation"> <a class="navigation-item" href="https://ir.capreit.ca/overview/default.aspx" role="menuitem" tabindex="0"><span>Investisseurs</span></a></li><li class="navigation-listitem" role="presentation"> <a class="navigation-item" href="https://www.capreit.ca/fr/appartements-a-louer/" role="menuitem" tabindex="0"><span>Trouver un appartement</span></a></li><li class="navigation-listitem" role="presentation"> <a class="navigation-item" href="https://www.capreit.ca/fr/a-propos/qui-nous-sommes/" role="menuitem" tabindex="0"><span>Qui nous sommes</span></a></li><li class="navigation-listitem" role="presentation"> <a class="navigation-item" href="https://www.capreit.ca/fr/commercial/" role="menuitem" tabindex="0"><span>Commercial</span></a></li></ul></div>
163 + </nav>
164 + <div class="header-wrap-sub">
165 + <div class="header-language">
166 + <button class="header-language-toggle">
167 + <img src="/wp-content/themes/capreit/resources/assets/images/icon-header-globe.svg"
168 + alt="">
169 + FR
170 + </button>
171 + <nav class="header-language-navigation" aria-label="language">
172 + <ul>
173 + <li>
174 + <a class="header-language-navigation-link" href="https://www.capreit.ca/fr/appartements-a-louer/montreal-qc/appartements-le-portneuf/" aria-current>
175 + Français
176 + </a>
177 + </li>
178 + <li>
179 + <a class="header-language-navigation-link" href="https://www.capreit.ca/apartments-for-rent/montreal-qc/the-portneuf-apartments/">
180 + English
181 + </a>
182 + </li>
183 + </ul>
184 + </nav>
185 + </div>
186 + <a class="header-login"
187 + href="https://capreit.residentonline.ca/"
188 + target="_blank">
189 + <div class="header-login-icon"></div>
190 + Connexion-résident(e) </a>
191 + </div>
192 + </div>
193 + <button class="header-toggle">
194 + Toggle Menu </button>
195 + </div>
196 + <div class="header-sub" id="navigation-rent">
197 + <div class="wrapper">
198 + <style id="elementor-post-13474">.elementor-13474 .elementor-element.elementor-element-55e0e5d5{border-style:solid;border-width:1px 1px 1px 1px;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:1px 1px 1px 40px;z-index:99;}.elementor-13474 .elementor-element.elementor-element-55e0e5d5 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-13474 .elementor-element.elementor-element-b35e1f1:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-13474 .elementor-element.elementor-element-b35e1f1 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFCF7;}.elementor-13474 .elementor-element.elementor-element-b35e1f1 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-13474 .elementor-element.elementor-element-b35e1f1 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-13474 .elementor-element.elementor-element-2bac18c8{padding:1px 1px 1px 1px;}.elementor-13474 .elementor-element.elementor-element-51b29768{padding:1px 1px 1px 1px;}.elementor-13474 .elementor-element.elementor-element-6e62710e > .elementor-widget-container{background-color:#FFFCF7;}.elementor-13474 .elementor-element.elementor-element-6e62710e .elementor-nav-menu .elementor-item{font-weight:var( --e-global-typography-text-font-weight );}.elementor-13474 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown{background-color:#FFFCF7;}.elementor-13474 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a:hover,
199 + .elementor-13474 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a:focus,
200 + .elementor-13474 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a.elementor-item-active,
201 + .elementor-13474 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a.highlighted{background-color:#FFFFFF;}.elementor-13474 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a.elementor-item-active{color:#AF5341;}.elementor-13474 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu .elementor-item{font-weight:var( --e-global-typography-text-font-weight );}.elementor-13474 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown{background-color:#FFFCF7;}.elementor-13474 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown a:hover,
202 + .elementor-13474 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown a:focus,
203 + .elementor-13474 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown a.elementor-item-active,
204 + .elementor-13474 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown a.highlighted{background-color:#FFFFFF;}.elementor-13474 .elementor-element.elementor-element-236b8d18{padding:1px 1px 1px 1px;}.elementor-13474 .elementor-element.elementor-element-422d2e4a > .elementor-widget-container{padding:1px 1px 1px 1px;}.elementor-13474 .elementor-element.elementor-element-422d2e4a .elementor-heading-title{font-family:"Arial", Sans-serif;font-weight:bold;}.elementor-13474 .elementor-element.elementor-element-6d35b1bc{padding:1px 1px 1px 1px;}.elementor-13474 .elementor-element.elementor-element-760957ba .elementor-cta .elementor-cta__bg, .elementor-13474 .elementor-element.elementor-element-760957ba .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-13474 .elementor-element.elementor-element-760957ba .elementor-cta__content{text-align:center;}.elementor-13474 .elementor-element.elementor-element-760957ba .elementor-cta__bg-wrapper{min-height:140px;}.elementor-13474 .elementor-element.elementor-element-760957ba .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-13474 .elementor-element.elementor-element-19a93452 .elementor-cta .elementor-cta__bg, .elementor-13474 .elementor-element.elementor-element-19a93452 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-13474 .elementor-element.elementor-element-19a93452 .elementor-cta__content{text-align:center;}.elementor-13474 .elementor-element.elementor-element-19a93452 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-13474 .elementor-element.elementor-element-19a93452 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-13474 .elementor-element.elementor-element-4324ab2 .elementor-cta .elementor-cta__bg, .elementor-13474 .elementor-element.elementor-element-4324ab2 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-13474 .elementor-element.elementor-element-4324ab2 .elementor-cta__content{text-align:center;}.elementor-13474 .elementor-element.elementor-element-4324ab2 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-13474 .elementor-element.elementor-element-4324ab2 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}@media(min-width:768px){.elementor-13474 .elementor-element.elementor-element-b35e1f1{width:50.134%;}.elementor-13474 .elementor-element.elementor-element-6160a416{width:49.866%;}}</style> <div data-elementor-type="section" data-elementor-id="17029" class="elementor elementor-17029 elementor-13474" data-elementor-post-type="elementor_library">
205 + <section class="elementor-section elementor-top-section elementor-element elementor-element-55e0e5d5 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="55e0e5d5" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
206 + <div class="elementor-container elementor-column-gap-default">
207 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-b35e1f1" data-id="b35e1f1" data-element_type="column" data-e-type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
208 + <div class="elementor-widget-wrap elementor-element-populated">
209 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-2bac18c8 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2bac18c8" data-element_type="section" data-e-type="section">
210 + <div class="elementor-container elementor-column-gap-default">
211 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-6fbcc080" data-id="6fbcc080" data-element_type="column" data-e-type="column">
212 + <div class="elementor-widget-wrap elementor-element-populated">
213 + <div class="elementor-element elementor-element-25ed71d6 elementor-widget elementor-widget-heading" data-id="25ed71d6" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
214 + <div class="elementor-widget-container">
215 + <h5 class="elementor-heading-title elementor-size-default">Trouver</h5> </div>
216 + </div>
217 + </div>
218 + </div>
219 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-58f2808d elementor-hidden-mobile" data-id="58f2808d" data-element_type="column" data-e-type="column">
220 + <div class="elementor-widget-wrap elementor-element-populated">
221 + <div class="elementor-element elementor-element-1bab0703 elementor-widget elementor-widget-heading" data-id="1bab0703" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
222 + <div class="elementor-widget-container">
223 + <h5 class="elementor-heading-title elementor-size-default">En savoir plus</h5> </div>
224 + </div>
225 + </div>
226 + </div>
227 + </div>
228 + </section>
229 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-51b29768 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="51b29768" data-element_type="section" data-e-type="section">
230 + <div class="elementor-container elementor-column-gap-default">
231 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-6cbedca5" data-id="6cbedca5" data-element_type="column" data-e-type="column">
232 + <div class="elementor-widget-wrap elementor-element-populated">
233 + <div class="elementor-element elementor-element-6e62710e elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="6e62710e" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
234 + <div class="elementor-widget-container">
235 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-none">
236 + <ul id="menu-1-6e62710e" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29486"><a href="https://www.capreit.ca/fr/appartements-a-louer/" class="elementor-item">Trouver un appartement</a></li>
237 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-99990"><a href="https://www.capreit.ca/fr/logements-en-colocation/" class="elementor-item">Logements en colocation</a></li>
238 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-33891"><a href="https://www.capreit.ca/fr/nous-joindre/" class="elementor-item">Nous joindre</a></li>
239 +</ul> </nav>
240 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
241 + <ul id="menu-2-6e62710e" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29486"><a href="https://www.capreit.ca/fr/appartements-a-louer/" class="elementor-item" tabindex="-1">Trouver un appartement</a></li>
242 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-99990"><a href="https://www.capreit.ca/fr/logements-en-colocation/" class="elementor-item" tabindex="-1">Logements en colocation</a></li>
243 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-33891"><a href="https://www.capreit.ca/fr/nous-joindre/" class="elementor-item" tabindex="-1">Nous joindre</a></li>
244 +</ul> </nav>
245 + </div>
246 + </div>
247 + </div>
248 + </div>
249 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-2272c71e" data-id="2272c71e" data-element_type="column" data-e-type="column">
250 + <div class="elementor-widget-wrap elementor-element-populated">
251 + <div class="elementor-element elementor-element-dd3febe elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-heading" data-id="dd3febe" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
252 + <div class="elementor-widget-container">
253 + <h5 class="elementor-heading-title elementor-size-default">En savoir plus</h5> </div>
254 + </div>
255 + <div class="elementor-element elementor-element-a4d85ea elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="a4d85ea" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
256 + <div class="elementor-widget-container">
257 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
258 + <ul id="menu-1-a4d85ea" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31875"><a href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" class="elementor-item">Pourquoi louer chez nous</a></li>
259 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31874"><a href="https://www.capreit.ca/fr/louer/portail-des-locataires/" class="elementor-item">Portail des locataires</a></li>
260 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31876"><a href="https://www.capreit.ca/fr/louer/questions-frequentes/" class="elementor-item">Questions posées fréquemment</a></li>
261 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-68454"><a href="/fr/louer/vivre-chez-canadian-apartment-properties-reit#style-de-vie-en-appartement" class="elementor-item elementor-item-anchor">Vivre chez CAPREIT</a></li>
262 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31873"><a href="https://www.capreit.ca/fr/louer/le-processus-de-location/" class="elementor-item">Le processus de location</a></li>
263 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-35371"><a href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" class="elementor-item">Pourquoi louer chez nous</a></li>
264 +</ul> </nav>
265 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
266 + <ul id="menu-2-a4d85ea" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31875"><a href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" class="elementor-item" tabindex="-1">Pourquoi louer chez nous</a></li>
267 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31874"><a href="https://www.capreit.ca/fr/louer/portail-des-locataires/" class="elementor-item" tabindex="-1">Portail des locataires</a></li>
268 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31876"><a href="https://www.capreit.ca/fr/louer/questions-frequentes/" class="elementor-item" tabindex="-1">Questions posées fréquemment</a></li>
269 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-68454"><a href="/fr/louer/vivre-chez-canadian-apartment-properties-reit#style-de-vie-en-appartement" class="elementor-item elementor-item-anchor" tabindex="-1">Vivre chez CAPREIT</a></li>
270 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31873"><a href="https://www.capreit.ca/fr/louer/le-processus-de-location/" class="elementor-item" tabindex="-1">Le processus de location</a></li>
271 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-35371"><a href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" class="elementor-item" tabindex="-1">Pourquoi louer chez nous</a></li>
272 +</ul> </nav>
273 + </div>
274 + </div>
275 + </div>
276 + </div>
277 + </div>
278 + </section>
279 + </div>
280 + </div>
281 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-6160a416" data-id="6160a416" data-element_type="column" data-e-type="column">
282 + <div class="elementor-widget-wrap elementor-element-populated">
283 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-236b8d18 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="236b8d18" data-element_type="section" data-e-type="section">
284 + <div class="elementor-container elementor-column-gap-default">
285 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-22560467" data-id="22560467" data-element_type="column" data-e-type="column">
286 + <div class="elementor-widget-wrap elementor-element-populated">
287 + <div class="elementor-element elementor-element-422d2e4a elementor-widget elementor-widget-heading" data-id="422d2e4a" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
288 + <div class="elementor-widget-container">
289 + <h5 class="elementor-heading-title elementor-size-default">En vedette</h5> </div>
290 + </div>
291 + </div>
292 + </div>
293 + </div>
294 + </section>
295 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-6d35b1bc elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6d35b1bc" data-element_type="section" data-e-type="section">
296 + <div class="elementor-container elementor-column-gap-default">
297 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-651c85c2" data-id="651c85c2" data-element_type="column" data-e-type="column">
298 + <div class="elementor-widget-wrap elementor-element-populated">
299 + <div class="elementor-element elementor-element-760957ba elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="760957ba" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
300 + <div class="elementor-widget-container">
301 + <a class="elementor-cta" href="https://www.capreit.ca/fr/charte-des-droits-des-locataires-capreit-multifamiliaux/">
302 + <div class="elementor-cta__bg-wrapper">
303 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2023/09/FR-BOR-Call-out-02-1024x541.png);" role="img" aria-label="FR-BOR-Call-out-02"></div>
304 + <div class="elementor-cta__bg-overlay"></div>
305 + </div>
306 + <div class="elementor-cta__content">
307 +
308 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
309 + CAPREIT se soucie de ses locataires. Nous nous soucions de la protection de leurs droits. </h4>
310 +
311 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
312 + En savoir plus </div>
313 +
314 + </div>
315 + </a>
316 + </div>
317 + </div>
318 + </div>
319 + </div>
320 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4821cc" data-id="4821cc" data-element_type="column" data-e-type="column">
321 + <div class="elementor-widget-wrap elementor-element-populated">
322 + <div class="elementor-element elementor-element-19a93452 elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="19a93452" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
323 + <div class="elementor-widget-container">
324 + <a class="elementor-cta" href="https://www.capreit.ca/fr/louer/questions-frequentes/">
325 + <div class="elementor-cta__bg-wrapper">
326 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2021/11/img-callout-faq.png);" role="img" aria-label="img-callout-faq"></div>
327 + <div class="elementor-cta__bg-overlay"></div>
328 + </div>
329 + <div class="elementor-cta__content">
330 +
331 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
332 + Questions posées fréquemment </h4>
333 +
334 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
335 + Vous avez des questions? Nous avons les réponses. </div>
336 +
337 + </div>
338 + </a>
339 + </div>
340 + </div>
341 + </div>
342 + </div>
343 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-792700e" data-id="792700e" data-element_type="column" data-e-type="column">
344 + <div class="elementor-widget-wrap elementor-element-populated">
345 + <div class="elementor-element elementor-element-4324ab2 elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="4324ab2" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
346 + <div class="elementor-widget-container">
347 + <a class="elementor-cta" href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/">
348 + <div class="elementor-cta__bg-wrapper">
349 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2021/11/Blog-Call-out-FR-1024x683.png);" role="img" aria-label="Blog-Call-out-FR"></div>
350 + <div class="elementor-cta__bg-overlay"></div>
351 + </div>
352 + <div class="elementor-cta__content">
353 +
354 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
355 + Visitez notre blogue </h4>
356 +
357 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
358 + Pour les dernières nouvelles, événements, concours, articles et conseils utiles et plus encore. </div>
359 +
360 + </div>
361 + </a>
362 + </div>
363 + </div>
364 + </div>
365 + </div>
366 + </div>
367 + </section>
368 + </div>
369 + </div>
370 + </div>
371 + </section>
372 + </div>
373 + </div>
374 + </div>
375 + <div class="header-sub" id="navigation-louer">
376 + <div class="wrapper">
377 + <style id="elementor-post-17029">.elementor-17029 .elementor-element.elementor-element-55e0e5d5{border-style:solid;border-width:1px 1px 1px 1px;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:1px 1px 1px 40px;z-index:99;}.elementor-17029 .elementor-element.elementor-element-55e0e5d5 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-17029 .elementor-element.elementor-element-b35e1f1:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-17029 .elementor-element.elementor-element-b35e1f1 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFCF7;}.elementor-17029 .elementor-element.elementor-element-b35e1f1 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-17029 .elementor-element.elementor-element-b35e1f1 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-17029 .elementor-element.elementor-element-2bac18c8{padding:1px 1px 1px 1px;}.elementor-17029 .elementor-element.elementor-element-51b29768{padding:1px 1px 1px 1px;}.elementor-17029 .elementor-element.elementor-element-6e62710e > .elementor-widget-container{background-color:#FFFCF7;}.elementor-17029 .elementor-element.elementor-element-6e62710e .elementor-nav-menu .elementor-item{font-weight:var( --e-global-typography-text-font-weight );}.elementor-17029 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown{background-color:#FFFCF7;}.elementor-17029 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a:hover,
378 + .elementor-17029 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a:focus,
379 + .elementor-17029 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a.elementor-item-active,
380 + .elementor-17029 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a.highlighted{background-color:#FFFFFF;}.elementor-17029 .elementor-element.elementor-element-6e62710e .elementor-nav-menu--dropdown a.elementor-item-active{color:#AF5341;}.elementor-17029 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu .elementor-item{font-weight:var( --e-global-typography-text-font-weight );}.elementor-17029 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown{background-color:#FFFCF7;}.elementor-17029 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown a:hover,
381 + .elementor-17029 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown a:focus,
382 + .elementor-17029 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown a.elementor-item-active,
383 + .elementor-17029 .elementor-element.elementor-element-a4d85ea .elementor-nav-menu--dropdown a.highlighted{background-color:#FFFFFF;}.elementor-17029 .elementor-element.elementor-element-236b8d18{padding:1px 1px 1px 1px;}.elementor-17029 .elementor-element.elementor-element-422d2e4a > .elementor-widget-container{padding:1px 1px 1px 1px;}.elementor-17029 .elementor-element.elementor-element-422d2e4a .elementor-heading-title{font-family:"Arial", Sans-serif;font-weight:bold;}.elementor-17029 .elementor-element.elementor-element-6d35b1bc{padding:1px 1px 1px 1px;}.elementor-17029 .elementor-element.elementor-element-760957ba .elementor-cta .elementor-cta__bg, .elementor-17029 .elementor-element.elementor-element-760957ba .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-17029 .elementor-element.elementor-element-760957ba .elementor-cta__content{text-align:center;}.elementor-17029 .elementor-element.elementor-element-760957ba .elementor-cta__bg-wrapper{min-height:140px;}.elementor-17029 .elementor-element.elementor-element-760957ba .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-17029 .elementor-element.elementor-element-19a93452 .elementor-cta .elementor-cta__bg, .elementor-17029 .elementor-element.elementor-element-19a93452 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-17029 .elementor-element.elementor-element-19a93452 .elementor-cta__content{text-align:center;}.elementor-17029 .elementor-element.elementor-element-19a93452 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-17029 .elementor-element.elementor-element-19a93452 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-17029 .elementor-element.elementor-element-4324ab2 .elementor-cta .elementor-cta__bg, .elementor-17029 .elementor-element.elementor-element-4324ab2 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-17029 .elementor-element.elementor-element-4324ab2 .elementor-cta__content{text-align:center;}.elementor-17029 .elementor-element.elementor-element-4324ab2 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-17029 .elementor-element.elementor-element-4324ab2 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}@media(min-width:768px){.elementor-17029 .elementor-element.elementor-element-b35e1f1{width:50.134%;}.elementor-17029 .elementor-element.elementor-element-6160a416{width:49.866%;}}</style> <div data-elementor-type="section" data-elementor-id="17029" class="elementor elementor-17029 elementor-13474" data-elementor-post-type="elementor_library">
384 + <section class="elementor-section elementor-top-section elementor-element elementor-element-55e0e5d5 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="55e0e5d5" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
385 + <div class="elementor-container elementor-column-gap-default">
386 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-b35e1f1" data-id="b35e1f1" data-element_type="column" data-e-type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
387 + <div class="elementor-widget-wrap elementor-element-populated">
388 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-2bac18c8 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2bac18c8" data-element_type="section" data-e-type="section">
389 + <div class="elementor-container elementor-column-gap-default">
390 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-6fbcc080" data-id="6fbcc080" data-element_type="column" data-e-type="column">
391 + <div class="elementor-widget-wrap elementor-element-populated">
392 + <div class="elementor-element elementor-element-25ed71d6 elementor-widget elementor-widget-heading" data-id="25ed71d6" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
393 + <div class="elementor-widget-container">
394 + <h5 class="elementor-heading-title elementor-size-default">Trouver</h5> </div>
395 + </div>
396 + </div>
397 + </div>
398 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-58f2808d elementor-hidden-mobile" data-id="58f2808d" data-element_type="column" data-e-type="column">
399 + <div class="elementor-widget-wrap elementor-element-populated">
400 + <div class="elementor-element elementor-element-1bab0703 elementor-widget elementor-widget-heading" data-id="1bab0703" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
401 + <div class="elementor-widget-container">
402 + <h5 class="elementor-heading-title elementor-size-default">En savoir plus</h5> </div>
403 + </div>
404 + </div>
405 + </div>
406 + </div>
407 + </section>
408 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-51b29768 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="51b29768" data-element_type="section" data-e-type="section">
409 + <div class="elementor-container elementor-column-gap-default">
410 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-6cbedca5" data-id="6cbedca5" data-element_type="column" data-e-type="column">
411 + <div class="elementor-widget-wrap elementor-element-populated">
412 + <div class="elementor-element elementor-element-6e62710e elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="6e62710e" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
413 + <div class="elementor-widget-container">
414 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-none">
415 + <ul id="menu-1-6e62710e" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29486"><a href="https://www.capreit.ca/fr/appartements-a-louer/" class="elementor-item">Trouver un appartement</a></li>
416 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-99990"><a href="https://www.capreit.ca/fr/logements-en-colocation/" class="elementor-item">Logements en colocation</a></li>
417 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-33891"><a href="https://www.capreit.ca/fr/nous-joindre/" class="elementor-item">Nous joindre</a></li>
418 +</ul> </nav>
419 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
420 + <ul id="menu-2-6e62710e" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29486"><a href="https://www.capreit.ca/fr/appartements-a-louer/" class="elementor-item" tabindex="-1">Trouver un appartement</a></li>
421 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-99990"><a href="https://www.capreit.ca/fr/logements-en-colocation/" class="elementor-item" tabindex="-1">Logements en colocation</a></li>
422 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-33891"><a href="https://www.capreit.ca/fr/nous-joindre/" class="elementor-item" tabindex="-1">Nous joindre</a></li>
423 +</ul> </nav>
424 + </div>
425 + </div>
426 + </div>
427 + </div>
428 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-2272c71e" data-id="2272c71e" data-element_type="column" data-e-type="column">
429 + <div class="elementor-widget-wrap elementor-element-populated">
430 + <div class="elementor-element elementor-element-dd3febe elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-heading" data-id="dd3febe" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
431 + <div class="elementor-widget-container">
432 + <h5 class="elementor-heading-title elementor-size-default">En savoir plus</h5> </div>
433 + </div>
434 + <div class="elementor-element elementor-element-a4d85ea elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="a4d85ea" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
435 + <div class="elementor-widget-container">
436 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
437 + <ul id="menu-1-a4d85ea" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31875"><a href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" class="elementor-item">Pourquoi louer chez nous</a></li>
438 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31874"><a href="https://www.capreit.ca/fr/louer/portail-des-locataires/" class="elementor-item">Portail des locataires</a></li>
439 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31876"><a href="https://www.capreit.ca/fr/louer/questions-frequentes/" class="elementor-item">Questions posées fréquemment</a></li>
440 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-68454"><a href="/fr/louer/vivre-chez-canadian-apartment-properties-reit#style-de-vie-en-appartement" class="elementor-item elementor-item-anchor">Vivre chez CAPREIT</a></li>
441 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31873"><a href="https://www.capreit.ca/fr/louer/le-processus-de-location/" class="elementor-item">Le processus de location</a></li>
442 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-35371"><a href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" class="elementor-item">Pourquoi louer chez nous</a></li>
443 +</ul> </nav>
444 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
445 + <ul id="menu-2-a4d85ea" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31875"><a href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" class="elementor-item" tabindex="-1">Pourquoi louer chez nous</a></li>
446 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31874"><a href="https://www.capreit.ca/fr/louer/portail-des-locataires/" class="elementor-item" tabindex="-1">Portail des locataires</a></li>
447 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31876"><a href="https://www.capreit.ca/fr/louer/questions-frequentes/" class="elementor-item" tabindex="-1">Questions posées fréquemment</a></li>
448 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-68454"><a href="/fr/louer/vivre-chez-canadian-apartment-properties-reit#style-de-vie-en-appartement" class="elementor-item elementor-item-anchor" tabindex="-1">Vivre chez CAPREIT</a></li>
449 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31873"><a href="https://www.capreit.ca/fr/louer/le-processus-de-location/" class="elementor-item" tabindex="-1">Le processus de location</a></li>
450 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-35371"><a href="https://www.capreit.ca/fr/louer/pourquoi-louer-chez-nous/" class="elementor-item" tabindex="-1">Pourquoi louer chez nous</a></li>
451 +</ul> </nav>
452 + </div>
453 + </div>
454 + </div>
455 + </div>
456 + </div>
457 + </section>
458 + </div>
459 + </div>
460 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-6160a416" data-id="6160a416" data-element_type="column" data-e-type="column">
461 + <div class="elementor-widget-wrap elementor-element-populated">
462 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-236b8d18 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="236b8d18" data-element_type="section" data-e-type="section">
463 + <div class="elementor-container elementor-column-gap-default">
464 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-22560467" data-id="22560467" data-element_type="column" data-e-type="column">
465 + <div class="elementor-widget-wrap elementor-element-populated">
466 + <div class="elementor-element elementor-element-422d2e4a elementor-widget elementor-widget-heading" data-id="422d2e4a" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
467 + <div class="elementor-widget-container">
468 + <h5 class="elementor-heading-title elementor-size-default">En vedette</h5> </div>
469 + </div>
470 + </div>
471 + </div>
472 + </div>
473 + </section>
474 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-6d35b1bc elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6d35b1bc" data-element_type="section" data-e-type="section">
475 + <div class="elementor-container elementor-column-gap-default">
476 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-651c85c2" data-id="651c85c2" data-element_type="column" data-e-type="column">
477 + <div class="elementor-widget-wrap elementor-element-populated">
478 + <div class="elementor-element elementor-element-760957ba elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="760957ba" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
479 + <div class="elementor-widget-container">
480 + <a class="elementor-cta" href="https://www.capreit.ca/fr/charte-des-droits-des-locataires-capreit-multifamiliaux/">
481 + <div class="elementor-cta__bg-wrapper">
482 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2023/09/FR-BOR-Call-out-02-1024x541.png);" role="img" aria-label="FR-BOR-Call-out-02"></div>
483 + <div class="elementor-cta__bg-overlay"></div>
484 + </div>
485 + <div class="elementor-cta__content">
486 +
487 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
488 + CAPREIT se soucie de ses locataires. Nous nous soucions de la protection de leurs droits. </h4>
489 +
490 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
491 + En savoir plus </div>
492 +
493 + </div>
494 + </a>
495 + </div>
496 + </div>
497 + </div>
498 + </div>
499 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4821cc" data-id="4821cc" data-element_type="column" data-e-type="column">
500 + <div class="elementor-widget-wrap elementor-element-populated">
501 + <div class="elementor-element elementor-element-19a93452 elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="19a93452" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
502 + <div class="elementor-widget-container">
503 + <a class="elementor-cta" href="https://www.capreit.ca/fr/louer/questions-frequentes/">
504 + <div class="elementor-cta__bg-wrapper">
505 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2021/11/img-callout-faq.png);" role="img" aria-label="img-callout-faq"></div>
506 + <div class="elementor-cta__bg-overlay"></div>
507 + </div>
508 + <div class="elementor-cta__content">
509 +
510 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
511 + Questions posées fréquemment </h4>
512 +
513 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
514 + Vous avez des questions? Nous avons les réponses. </div>
515 +
516 + </div>
517 + </a>
518 + </div>
519 + </div>
520 + </div>
521 + </div>
522 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-792700e" data-id="792700e" data-element_type="column" data-e-type="column">
523 + <div class="elementor-widget-wrap elementor-element-populated">
524 + <div class="elementor-element elementor-element-4324ab2 elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="4324ab2" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
525 + <div class="elementor-widget-container">
526 + <a class="elementor-cta" href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/">
527 + <div class="elementor-cta__bg-wrapper">
528 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2021/11/Blog-Call-out-FR-1024x683.png);" role="img" aria-label="Blog-Call-out-FR"></div>
529 + <div class="elementor-cta__bg-overlay"></div>
530 + </div>
531 + <div class="elementor-cta__content">
532 +
533 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
534 + Visitez notre blogue </h4>
535 +
536 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
537 + Pour les dernières nouvelles, événements, concours, articles et conseils utiles et plus encore. </div>
538 +
539 + </div>
540 + </a>
541 + </div>
542 + </div>
543 + </div>
544 + </div>
545 + </div>
546 + </section>
547 + </div>
548 + </div>
549 + </div>
550 + </section>
551 + </div>
552 + </div>
553 + </div>
554 + <div class="header-sub" id="navigation-about">
555 + <div class="wrapper">
556 + <style id="elementor-post-13460">.elementor-13460 .elementor-element.elementor-element-ad30f1e{border-style:solid;border-width:1px 1px 1px 1px;padding:1px 1px 1px 40px;z-index:99;}.elementor-13460 .elementor-element.elementor-element-292c159f{padding:1px 1px 1px 1px;}.elementor-13460 .elementor-element.elementor-element-3bb72597{padding:1px 1px 1px 1px;}.elementor-13460 .elementor-element.elementor-element-55c96f09 .elementor-nav-menu .elementor-item{font-family:"Arial", Sans-serif;font-size:16px;font-weight:500;font-style:normal;}.elementor-13460 .elementor-element.elementor-element-6f3ca6c6 .elementor-nav-menu .elementor-item{font-family:"Arial", Sans-serif;font-size:16px;font-weight:500;}.elementor-13460 .elementor-element.elementor-element-1654cfe0{padding:1px 1px 1px 1px;}.elementor-13460 .elementor-element.elementor-element-3706ad6b > .elementor-widget-container{padding:1px 1px 1px 1px;}.elementor-13460 .elementor-element.elementor-element-3706ad6b .elementor-heading-title{font-family:"Arial", Sans-serif;font-weight:bold;}.elementor-13460 .elementor-element.elementor-element-9a23d29{padding:1px 1px 1px 1px;}.elementor-13460 .elementor-element.elementor-element-8cc5b41 .elementor-cta .elementor-cta__bg, .elementor-13460 .elementor-element.elementor-element-8cc5b41 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-13460 .elementor-element.elementor-element-8cc5b41 .elementor-cta__content{text-align:center;}.elementor-13460 .elementor-element.elementor-element-8cc5b41 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-13460 .elementor-element.elementor-element-8cc5b41 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-13460 .elementor-element.elementor-element-e29d566 .elementor-cta .elementor-cta__bg, .elementor-13460 .elementor-element.elementor-element-e29d566 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-13460 .elementor-element.elementor-element-e29d566 .elementor-cta__content{text-align:center;}.elementor-13460 .elementor-element.elementor-element-e29d566 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-13460 .elementor-element.elementor-element-e29d566 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-13460 .elementor-element.elementor-element-71168b79 .elementor-cta .elementor-cta__bg, .elementor-13460 .elementor-element.elementor-element-71168b79 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-13460 .elementor-element.elementor-element-71168b79 .elementor-cta__content{text-align:center;}.elementor-13460 .elementor-element.elementor-element-71168b79 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-13460 .elementor-element.elementor-element-71168b79 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}@media(min-width:768px){.elementor-13460 .elementor-element.elementor-element-65d657c8{width:50.134%;}.elementor-13460 .elementor-element.elementor-element-50c0cf5e{width:49.866%;}}</style> <div data-elementor-type="section" data-elementor-id="17031" class="elementor elementor-17031 elementor-13460" data-elementor-post-type="elementor_library">
557 + <section class="elementor-section elementor-top-section elementor-element elementor-element-ad30f1e elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="ad30f1e" data-element_type="section" data-e-type="section">
558 + <div class="elementor-container elementor-column-gap-default">
559 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65d657c8" data-id="65d657c8" data-element_type="column" data-e-type="column">
560 + <div class="elementor-widget-wrap elementor-element-populated">
561 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-292c159f elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="292c159f" data-element_type="section" data-e-type="section">
562 + <div class="elementor-container elementor-column-gap-default">
563 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-7bb1347f" data-id="7bb1347f" data-element_type="column" data-e-type="column">
564 + <div class="elementor-widget-wrap elementor-element-populated">
565 + <div class="elementor-element elementor-element-41f77c37 elementor-widget elementor-widget-heading" data-id="41f77c37" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
566 + <div class="elementor-widget-container">
567 + <h5 class="elementor-heading-title elementor-size-default">À PROPOS DE CANADIAN APARTMENT PROPERTIES REIT
568 +</h5> </div>
569 + </div>
570 + </div>
571 + </div>
572 + </div>
573 + </section>
574 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-3bb72597 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3bb72597" data-element_type="section" data-e-type="section">
575 + <div class="elementor-container elementor-column-gap-default">
576 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7b3c9712" data-id="7b3c9712" data-element_type="column" data-e-type="column">
577 + <div class="elementor-widget-wrap elementor-element-populated">
578 + <div class="elementor-element elementor-element-55c96f09 elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="55c96f09" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&quot;,&quot;library&quot;:&quot;&quot;}}" data-widget_type="nav-menu.default">
579 + <div class="elementor-widget-container">
580 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
581 + <ul id="menu-1-55c96f09" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29501"><a href="https://www.capreit.ca/fr/a-propos/qui-nous-sommes/" class="elementor-item">Qui nous sommes</a></li>
582 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29609"><a href="https://www.capreit.ca/fr/a-propos/equipe-de-direction/" class="elementor-item">Équipe de direction</a></li>
583 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-48869"><a href="/fr/louer/vivre-chez-canadian-apartment-properties-reit/#nouvelles-capreit" class="elementor-item elementor-item-anchor">Nouvelles CAPREIT</a></li>
584 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-32046"><a href="https://www.capreit.ca/fr/a-propos/notre-bilan-esg/" class="elementor-item">Notre histoire en matière d&rsquo;environnement, de société et de gouvernance</a></li>
585 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49615"><a href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/" class="elementor-item">Notre blogue</a></li>
586 +</ul> </nav>
587 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
588 + <ul id="menu-2-55c96f09" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29501"><a href="https://www.capreit.ca/fr/a-propos/qui-nous-sommes/" class="elementor-item" tabindex="-1">Qui nous sommes</a></li>
589 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29609"><a href="https://www.capreit.ca/fr/a-propos/equipe-de-direction/" class="elementor-item" tabindex="-1">Équipe de direction</a></li>
590 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-48869"><a href="/fr/louer/vivre-chez-canadian-apartment-properties-reit/#nouvelles-capreit" class="elementor-item elementor-item-anchor" tabindex="-1">Nouvelles CAPREIT</a></li>
591 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-32046"><a href="https://www.capreit.ca/fr/a-propos/notre-bilan-esg/" class="elementor-item" tabindex="-1">Notre histoire en matière d&rsquo;environnement, de société et de gouvernance</a></li>
592 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49615"><a href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/" class="elementor-item" tabindex="-1">Notre blogue</a></li>
593 +</ul> </nav>
594 + </div>
595 + </div>
596 + </div>
597 + </div>
598 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3355ff44" data-id="3355ff44" data-element_type="column" data-e-type="column">
599 + <div class="elementor-widget-wrap elementor-element-populated">
600 + <div class="elementor-element elementor-element-6f3ca6c6 elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="6f3ca6c6" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
601 + <div class="elementor-widget-container">
602 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
603 + <ul id="menu-1-6f3ca6c6" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29509"><a href="https://www.capreit.ca/fr/a-propos/se-joindre-a-notre-equipe/" class="elementor-item">Se joindre à notre équipe</a></li>
604 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29506"><a href="https://www.capreit.ca/fr/a-propos/notre-processus-dembauche/" class="elementor-item">Notre processus d’embauche</a></li>
605 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-41109"><a href="https://careers2-capreit.icims.com/jobs/search" class="elementor-item">Voir les postes ouverts</a></li>
606 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29507"><a href="https://www.capreit.ca/fr/a-propos/parcours-de-carriere/" class="elementor-item">Parcours de carrière</a></li>
607 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29508"><a href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" class="elementor-item">Programmes de perfectionnement des employés</a></li>
608 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-28230"><a href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" class="elementor-item">Programmes de perfectionnement des employés</a></li>
609 +</ul> </nav>
610 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
611 + <ul id="menu-2-6f3ca6c6" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29509"><a href="https://www.capreit.ca/fr/a-propos/se-joindre-a-notre-equipe/" class="elementor-item" tabindex="-1">Se joindre à notre équipe</a></li>
612 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29506"><a href="https://www.capreit.ca/fr/a-propos/notre-processus-dembauche/" class="elementor-item" tabindex="-1">Notre processus d’embauche</a></li>
613 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-41109"><a href="https://careers2-capreit.icims.com/jobs/search" class="elementor-item" tabindex="-1">Voir les postes ouverts</a></li>
614 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29507"><a href="https://www.capreit.ca/fr/a-propos/parcours-de-carriere/" class="elementor-item" tabindex="-1">Parcours de carrière</a></li>
615 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29508"><a href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" class="elementor-item" tabindex="-1">Programmes de perfectionnement des employés</a></li>
616 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-28230"><a href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" class="elementor-item" tabindex="-1">Programmes de perfectionnement des employés</a></li>
617 +</ul> </nav>
618 + </div>
619 + </div>
620 + </div>
621 + </div>
622 + </div>
623 + </section>
624 + </div>
625 + </div>
626 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-50c0cf5e" data-id="50c0cf5e" data-element_type="column" data-e-type="column">
627 + <div class="elementor-widget-wrap elementor-element-populated">
628 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-1654cfe0 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="1654cfe0" data-element_type="section" data-e-type="section">
629 + <div class="elementor-container elementor-column-gap-default">
630 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-67ad697c" data-id="67ad697c" data-element_type="column" data-e-type="column">
631 + <div class="elementor-widget-wrap elementor-element-populated">
632 + <div class="elementor-element elementor-element-3706ad6b elementor-widget elementor-widget-heading" data-id="3706ad6b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
633 + <div class="elementor-widget-container">
634 + <h5 class="elementor-heading-title elementor-size-default">En vedette</h5> </div>
635 + </div>
636 + </div>
637 + </div>
638 + </div>
639 + </section>
640 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-9a23d29 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="9a23d29" data-element_type="section" data-e-type="section">
641 + <div class="elementor-container elementor-column-gap-default">
642 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-fb9cab4" data-id="fb9cab4" data-element_type="column" data-e-type="column">
643 + <div class="elementor-widget-wrap elementor-element-populated">
644 + <div class="elementor-element elementor-element-8cc5b41 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="8cc5b41" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
645 + <div class="elementor-widget-container">
646 + <a class="elementor-cta" href="https://capreit.ca/fr/capgenerosite/">
647 + <div class="elementor-cta__bg-wrapper">
648 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2024/11/CAPGiving-Header-1024x541.png);" role="img" aria-label="CAPGiving-Header"></div>
649 + <div class="elementor-cta__bg-overlay"></div>
650 + </div>
651 + <div class="elementor-cta__content">
652 +
653 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
654 + L’engagement de CAPREIT envers les communautés par CAPGénérosité </h4>
655 +
656 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
657 + Nous sommes profondément engagés à faire une différence dans les communautés où nous travaillons </div>
658 +
659 + </div>
660 + </a>
661 + </div>
662 + </div>
663 + </div>
664 + </div>
665 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-1d7c06e" data-id="1d7c06e" data-element_type="column" data-e-type="column">
666 + <div class="elementor-widget-wrap elementor-element-populated">
667 + <div class="elementor-element elementor-element-e29d566 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="e29d566" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
668 + <div class="elementor-widget-container">
669 + <a class="elementor-cta" href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/#nouvelles-capreit">
670 + <div class="elementor-cta__bg-wrapper">
671 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2026/04/CAPREIT-NEWS-FR-CTA-1024x541.png);" role="img" aria-label="CAPREIT-NEWS-FR-CTA"></div>
672 + <div class="elementor-cta__bg-overlay"></div>
673 + </div>
674 + <div class="elementor-cta__content">
675 +
676 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
677 + Nouvelles CAPREIT </h4>
678 +
679 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
680 + Les dernières nouvelles et communiqués de presse concernant CAPREIT. </div>
681 +
682 + </div>
683 + </a>
684 + </div>
685 + </div>
686 + </div>
687 + </div>
688 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-5a4e66e0" data-id="5a4e66e0" data-element_type="column" data-e-type="column">
689 + <div class="elementor-widget-wrap elementor-element-populated">
690 + <div class="elementor-element elementor-element-71168b79 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="71168b79" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
691 + <div class="elementor-widget-container">
692 + <a class="elementor-cta" href="https://www.capreit.ca/fr/la-conservation-et-la-durabilite-partie-1-entreprise-responsable-avenir-durable/">
693 + <div class="elementor-cta__bg-wrapper">
694 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2024/02/ESG-video-series-Mega-Menu-CTA-01-1024x541.jpg);" role="img" aria-label="Wooden building blocks with green environmental symbols painted on each."></div>
695 + <div class="elementor-cta__bg-overlay"></div>
696 + </div>
697 + <div class="elementor-cta__content">
698 +
699 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
700 + La conservation et la durabilité chez CAPREIT </h4>
701 +
702 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
703 + Une série de vidéos sur notre gestion responsable
704 +de l'environnement </div>
705 +
706 + </div>
707 + </a>
708 + </div>
709 + </div>
710 + </div>
711 + </div>
712 + </div>
713 + </section>
714 + </div>
715 + </div>
716 + </div>
717 + </section>
718 + </div>
719 + </div>
720 + </div>
721 + <div class="header-sub" id="navigation-apropos">
722 + <div class="wrapper">
723 + <style id="elementor-post-17031">.elementor-17031 .elementor-element.elementor-element-ad30f1e{border-style:solid;border-width:1px 1px 1px 1px;padding:1px 1px 1px 40px;z-index:99;}.elementor-17031 .elementor-element.elementor-element-292c159f{padding:1px 1px 1px 1px;}.elementor-17031 .elementor-element.elementor-element-3bb72597{padding:1px 1px 1px 1px;}.elementor-17031 .elementor-element.elementor-element-55c96f09 .elementor-nav-menu .elementor-item{font-family:"Arial", Sans-serif;font-size:16px;font-weight:500;font-style:normal;}.elementor-17031 .elementor-element.elementor-element-6f3ca6c6 .elementor-nav-menu .elementor-item{font-family:"Arial", Sans-serif;font-size:16px;font-weight:500;}.elementor-17031 .elementor-element.elementor-element-1654cfe0{padding:1px 1px 1px 1px;}.elementor-17031 .elementor-element.elementor-element-3706ad6b > .elementor-widget-container{padding:1px 1px 1px 1px;}.elementor-17031 .elementor-element.elementor-element-3706ad6b .elementor-heading-title{font-family:"Arial", Sans-serif;font-weight:bold;}.elementor-17031 .elementor-element.elementor-element-9a23d29{padding:1px 1px 1px 1px;}.elementor-17031 .elementor-element.elementor-element-8cc5b41 .elementor-cta .elementor-cta__bg, .elementor-17031 .elementor-element.elementor-element-8cc5b41 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-17031 .elementor-element.elementor-element-8cc5b41 .elementor-cta__content{text-align:center;}.elementor-17031 .elementor-element.elementor-element-8cc5b41 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-17031 .elementor-element.elementor-element-8cc5b41 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-17031 .elementor-element.elementor-element-e29d566 .elementor-cta .elementor-cta__bg, .elementor-17031 .elementor-element.elementor-element-e29d566 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-17031 .elementor-element.elementor-element-e29d566 .elementor-cta__content{text-align:center;}.elementor-17031 .elementor-element.elementor-element-e29d566 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-17031 .elementor-element.elementor-element-e29d566 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-17031 .elementor-element.elementor-element-71168b79 .elementor-cta .elementor-cta__bg, .elementor-17031 .elementor-element.elementor-element-71168b79 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-17031 .elementor-element.elementor-element-71168b79 .elementor-cta__content{text-align:center;}.elementor-17031 .elementor-element.elementor-element-71168b79 .elementor-cta__bg-wrapper{min-height:140px;}.elementor-17031 .elementor-element.elementor-element-71168b79 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}@media(min-width:768px){.elementor-17031 .elementor-element.elementor-element-65d657c8{width:50.134%;}.elementor-17031 .elementor-element.elementor-element-50c0cf5e{width:49.866%;}}</style> <div data-elementor-type="section" data-elementor-id="17031" class="elementor elementor-17031 elementor-13460" data-elementor-post-type="elementor_library">
724 + <section class="elementor-section elementor-top-section elementor-element elementor-element-ad30f1e elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="ad30f1e" data-element_type="section" data-e-type="section">
725 + <div class="elementor-container elementor-column-gap-default">
726 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65d657c8" data-id="65d657c8" data-element_type="column" data-e-type="column">
727 + <div class="elementor-widget-wrap elementor-element-populated">
728 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-292c159f elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="292c159f" data-element_type="section" data-e-type="section">
729 + <div class="elementor-container elementor-column-gap-default">
730 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-7bb1347f" data-id="7bb1347f" data-element_type="column" data-e-type="column">
731 + <div class="elementor-widget-wrap elementor-element-populated">
732 + <div class="elementor-element elementor-element-41f77c37 elementor-widget elementor-widget-heading" data-id="41f77c37" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
733 + <div class="elementor-widget-container">
734 + <h5 class="elementor-heading-title elementor-size-default">À PROPOS DE CANADIAN APARTMENT PROPERTIES REIT
735 +</h5> </div>
736 + </div>
737 + </div>
738 + </div>
739 + </div>
740 + </section>
741 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-3bb72597 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3bb72597" data-element_type="section" data-e-type="section">
742 + <div class="elementor-container elementor-column-gap-default">
743 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7b3c9712" data-id="7b3c9712" data-element_type="column" data-e-type="column">
744 + <div class="elementor-widget-wrap elementor-element-populated">
745 + <div class="elementor-element elementor-element-55c96f09 elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="55c96f09" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&quot;,&quot;library&quot;:&quot;&quot;}}" data-widget_type="nav-menu.default">
746 + <div class="elementor-widget-container">
747 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
748 + <ul id="menu-1-55c96f09" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29501"><a href="https://www.capreit.ca/fr/a-propos/qui-nous-sommes/" class="elementor-item">Qui nous sommes</a></li>
749 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29609"><a href="https://www.capreit.ca/fr/a-propos/equipe-de-direction/" class="elementor-item">Équipe de direction</a></li>
750 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-48869"><a href="/fr/louer/vivre-chez-canadian-apartment-properties-reit/#nouvelles-capreit" class="elementor-item elementor-item-anchor">Nouvelles CAPREIT</a></li>
751 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-32046"><a href="https://www.capreit.ca/fr/a-propos/notre-bilan-esg/" class="elementor-item">Notre histoire en matière d&rsquo;environnement, de société et de gouvernance</a></li>
752 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49615"><a href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/" class="elementor-item">Notre blogue</a></li>
753 +</ul> </nav>
754 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
755 + <ul id="menu-2-55c96f09" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29501"><a href="https://www.capreit.ca/fr/a-propos/qui-nous-sommes/" class="elementor-item" tabindex="-1">Qui nous sommes</a></li>
756 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29609"><a href="https://www.capreit.ca/fr/a-propos/equipe-de-direction/" class="elementor-item" tabindex="-1">Équipe de direction</a></li>
757 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-48869"><a href="/fr/louer/vivre-chez-canadian-apartment-properties-reit/#nouvelles-capreit" class="elementor-item elementor-item-anchor" tabindex="-1">Nouvelles CAPREIT</a></li>
758 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-32046"><a href="https://www.capreit.ca/fr/a-propos/notre-bilan-esg/" class="elementor-item" tabindex="-1">Notre histoire en matière d&rsquo;environnement, de société et de gouvernance</a></li>
759 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49615"><a href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/" class="elementor-item" tabindex="-1">Notre blogue</a></li>
760 +</ul> </nav>
761 + </div>
762 + </div>
763 + </div>
764 + </div>
765 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3355ff44" data-id="3355ff44" data-element_type="column" data-e-type="column">
766 + <div class="elementor-widget-wrap elementor-element-populated">
767 + <div class="elementor-element elementor-element-6f3ca6c6 elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="6f3ca6c6" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
768 + <div class="elementor-widget-container">
769 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
770 + <ul id="menu-1-6f3ca6c6" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29509"><a href="https://www.capreit.ca/fr/a-propos/se-joindre-a-notre-equipe/" class="elementor-item">Se joindre à notre équipe</a></li>
771 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29506"><a href="https://www.capreit.ca/fr/a-propos/notre-processus-dembauche/" class="elementor-item">Notre processus d’embauche</a></li>
772 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-41109"><a href="https://careers2-capreit.icims.com/jobs/search" class="elementor-item">Voir les postes ouverts</a></li>
773 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29507"><a href="https://www.capreit.ca/fr/a-propos/parcours-de-carriere/" class="elementor-item">Parcours de carrière</a></li>
774 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29508"><a href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" class="elementor-item">Programmes de perfectionnement des employés</a></li>
775 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-28230"><a href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" class="elementor-item">Programmes de perfectionnement des employés</a></li>
776 +</ul> </nav>
777 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
778 + <ul id="menu-2-6f3ca6c6" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29509"><a href="https://www.capreit.ca/fr/a-propos/se-joindre-a-notre-equipe/" class="elementor-item" tabindex="-1">Se joindre à notre équipe</a></li>
779 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29506"><a href="https://www.capreit.ca/fr/a-propos/notre-processus-dembauche/" class="elementor-item" tabindex="-1">Notre processus d’embauche</a></li>
780 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-41109"><a href="https://careers2-capreit.icims.com/jobs/search" class="elementor-item" tabindex="-1">Voir les postes ouverts</a></li>
781 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29507"><a href="https://www.capreit.ca/fr/a-propos/parcours-de-carriere/" class="elementor-item" tabindex="-1">Parcours de carrière</a></li>
782 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29508"><a href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" class="elementor-item" tabindex="-1">Programmes de perfectionnement des employés</a></li>
783 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-28230"><a href="https://www.capreit.ca/fr/a-propos/programmes-de-perfectionnement-des-employes/" class="elementor-item" tabindex="-1">Programmes de perfectionnement des employés</a></li>
784 +</ul> </nav>
785 + </div>
786 + </div>
787 + </div>
788 + </div>
789 + </div>
790 + </section>
791 + </div>
792 + </div>
793 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-50c0cf5e" data-id="50c0cf5e" data-element_type="column" data-e-type="column">
794 + <div class="elementor-widget-wrap elementor-element-populated">
795 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-1654cfe0 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="1654cfe0" data-element_type="section" data-e-type="section">
796 + <div class="elementor-container elementor-column-gap-default">
797 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-67ad697c" data-id="67ad697c" data-element_type="column" data-e-type="column">
798 + <div class="elementor-widget-wrap elementor-element-populated">
799 + <div class="elementor-element elementor-element-3706ad6b elementor-widget elementor-widget-heading" data-id="3706ad6b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
800 + <div class="elementor-widget-container">
801 + <h5 class="elementor-heading-title elementor-size-default">En vedette</h5> </div>
802 + </div>
803 + </div>
804 + </div>
805 + </div>
806 + </section>
807 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-9a23d29 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="9a23d29" data-element_type="section" data-e-type="section">
808 + <div class="elementor-container elementor-column-gap-default">
809 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-fb9cab4" data-id="fb9cab4" data-element_type="column" data-e-type="column">
810 + <div class="elementor-widget-wrap elementor-element-populated">
811 + <div class="elementor-element elementor-element-8cc5b41 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="8cc5b41" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
812 + <div class="elementor-widget-container">
813 + <a class="elementor-cta" href="https://capreit.ca/fr/capgenerosite/">
814 + <div class="elementor-cta__bg-wrapper">
815 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2024/11/CAPGiving-Header-1024x541.png);" role="img" aria-label="CAPGiving-Header"></div>
816 + <div class="elementor-cta__bg-overlay"></div>
817 + </div>
818 + <div class="elementor-cta__content">
819 +
820 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
821 + L’engagement de CAPREIT envers les communautés par CAPGénérosité </h4>
822 +
823 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
824 + Nous sommes profondément engagés à faire une différence dans les communautés où nous travaillons </div>
825 +
826 + </div>
827 + </a>
828 + </div>
829 + </div>
830 + </div>
831 + </div>
832 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-1d7c06e" data-id="1d7c06e" data-element_type="column" data-e-type="column">
833 + <div class="elementor-widget-wrap elementor-element-populated">
834 + <div class="elementor-element elementor-element-e29d566 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="e29d566" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
835 + <div class="elementor-widget-container">
836 + <a class="elementor-cta" href="https://www.capreit.ca/fr/louer/vivre-chez-canadian-apartment-properties-reit/#nouvelles-capreit">
837 + <div class="elementor-cta__bg-wrapper">
838 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2026/04/CAPREIT-NEWS-FR-CTA-1024x541.png);" role="img" aria-label="CAPREIT-NEWS-FR-CTA"></div>
839 + <div class="elementor-cta__bg-overlay"></div>
840 + </div>
841 + <div class="elementor-cta__content">
842 +
843 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
844 + Nouvelles CAPREIT </h4>
845 +
846 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
847 + Les dernières nouvelles et communiqués de presse concernant CAPREIT. </div>
848 +
849 + </div>
850 + </a>
851 + </div>
852 + </div>
853 + </div>
854 + </div>
855 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-5a4e66e0" data-id="5a4e66e0" data-element_type="column" data-e-type="column">
856 + <div class="elementor-widget-wrap elementor-element-populated">
857 + <div class="elementor-element elementor-element-71168b79 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="71168b79" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
858 + <div class="elementor-widget-container">
859 + <a class="elementor-cta" href="https://www.capreit.ca/fr/la-conservation-et-la-durabilite-partie-1-entreprise-responsable-avenir-durable/">
860 + <div class="elementor-cta__bg-wrapper">
861 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2024/02/ESG-video-series-Mega-Menu-CTA-01-1024x541.jpg);" role="img" aria-label="Wooden building blocks with green environmental symbols painted on each."></div>
862 + <div class="elementor-cta__bg-overlay"></div>
863 + </div>
864 + <div class="elementor-cta__content">
865 +
866 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
867 + La conservation et la durabilité chez CAPREIT </h4>
868 +
869 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
870 + Une série de vidéos sur notre gestion responsable
871 +de l'environnement </div>
872 +
873 + </div>
874 + </a>
875 + </div>
876 + </div>
877 + </div>
878 + </div>
879 + </div>
880 + </section>
881 + </div>
882 + </div>
883 + </div>
884 + </section>
885 + </div>
886 + </div>
887 + </div>
888 + <div class="header-sub" id="navigation-partner">
889 + <div class="wrapper">
890 + <style id="elementor-post-64019">.elementor-64019 .elementor-element.elementor-element-34f63c5{border-style:solid;border-width:1px 1px 1px 1px;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:1px 1px 1px 40px;z-index:99;}.elementor-64019 .elementor-element.elementor-element-34f63c5 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-64019 .elementor-element.elementor-element-13c9536{padding:1px 1px 1px 1px;}.elementor-64019 .elementor-element.elementor-element-6713857c{padding:1px 1px 1px 1px;}.elementor-64019 .elementor-element.elementor-element-2caa34e > .elementor-widget-container{background-color:#FFFCF7;}.elementor-64019 .elementor-element.elementor-element-2caa34e .elementor-nav-menu .elementor-item{font-family:"Arial", Sans-serif;font-size:16px;font-weight:500;font-style:normal;}.elementor-64019 .elementor-element.elementor-element-2caa34e .elementor-nav-menu--dropdown{background-color:#FFFCF7;}.elementor-64019 .elementor-element.elementor-element-2caa34e .elementor-nav-menu--dropdown a:hover,
891 + .elementor-64019 .elementor-element.elementor-element-2caa34e .elementor-nav-menu--dropdown a:focus,
892 + .elementor-64019 .elementor-element.elementor-element-2caa34e .elementor-nav-menu--dropdown a.elementor-item-active,
893 + .elementor-64019 .elementor-element.elementor-element-2caa34e .elementor-nav-menu--dropdown a.highlighted{background-color:#FFFFFF;}.elementor-64019 .elementor-element.elementor-element-2caa34e .elementor-nav-menu--dropdown a.elementor-item-active{color:#AF5341;}.elementor-64019 .elementor-element.elementor-element-3a518e > .elementor-widget-container{background-color:#FFFCF7;}.elementor-64019 .elementor-element.elementor-element-3a518e .elementor-nav-menu .elementor-item{font-family:"Arial", Sans-serif;font-size:16px;font-weight:500;}.elementor-64019 .elementor-element.elementor-element-3a518e .elementor-nav-menu--dropdown{background-color:#FFFCF7;}.elementor-64019 .elementor-element.elementor-element-3a518e .elementor-nav-menu--dropdown a:hover,
894 + .elementor-64019 .elementor-element.elementor-element-3a518e .elementor-nav-menu--dropdown a:focus,
895 + .elementor-64019 .elementor-element.elementor-element-3a518e .elementor-nav-menu--dropdown a.elementor-item-active,
896 + .elementor-64019 .elementor-element.elementor-element-3a518e .elementor-nav-menu--dropdown a.highlighted{background-color:#FFFFFF;}.elementor-64019 .elementor-element.elementor-element-3a518e .elementor-nav-menu--dropdown a.elementor-item-active{color:#AF5341;}.elementor-64019 .elementor-element.elementor-element-58b3b64d{padding:1px 1px 1px 1px;}.elementor-64019 .elementor-element.elementor-element-3a1d2d62 > .elementor-widget-container{padding:1px 1px 1px 1px;}.elementor-64019 .elementor-element.elementor-element-3a1d2d62 .elementor-heading-title{font-family:"Arial", Sans-serif;font-weight:bold;}.elementor-64019 .elementor-element.elementor-element-23edf8cc{padding:1px 1px 1px 1px;}.elementor-64019 .elementor-element.elementor-element-6c3bb8a4 .elementor-cta .elementor-cta__bg, .elementor-64019 .elementor-element.elementor-element-6c3bb8a4 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-64019 .elementor-element.elementor-element-6c3bb8a4 .elementor-cta__content{text-align:center;}.elementor-64019 .elementor-element.elementor-element-6c3bb8a4 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-64019 .elementor-element.elementor-element-12dbd159 .elementor-cta .elementor-cta__bg, .elementor-64019 .elementor-element.elementor-element-12dbd159 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-64019 .elementor-element.elementor-element-12dbd159 .elementor-cta__content{text-align:center;}.elementor-64019 .elementor-element.elementor-element-12dbd159 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-64019 .elementor-element.elementor-element-7bcea2d0 .elementor-cta .elementor-cta__bg, .elementor-64019 .elementor-element.elementor-element-7bcea2d0 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-64019 .elementor-element.elementor-element-7bcea2d0 .elementor-cta__content{text-align:center;}.elementor-64019 .elementor-element.elementor-element-7bcea2d0 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}@media(min-width:768px){.elementor-64019 .elementor-element.elementor-element-7b29acf2{width:50.134%;}.elementor-64019 .elementor-element.elementor-element-5a8d58db{width:49.866%;}}</style> <div data-elementor-type="section" data-elementor-id="64019" class="elementor elementor-64019" data-elementor-post-type="elementor_library">
897 + <section class="elementor-section elementor-top-section elementor-element elementor-element-34f63c5 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="34f63c5" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
898 + <div class="elementor-container elementor-column-gap-default">
899 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-7b29acf2" data-id="7b29acf2" data-element_type="column" data-e-type="column">
900 + <div class="elementor-widget-wrap elementor-element-populated">
901 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-13c9536 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="13c9536" data-element_type="section" data-e-type="section">
902 + <div class="elementor-container elementor-column-gap-default">
903 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-1cbbb382" data-id="1cbbb382" data-element_type="column" data-e-type="column">
904 + <div class="elementor-widget-wrap elementor-element-populated">
905 + <div class="elementor-element elementor-element-1884e6e0 elementor-widget elementor-widget-heading" data-id="1884e6e0" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
906 + <div class="elementor-widget-container">
907 + <h5 class="elementor-heading-title elementor-size-default">Partner with CAPREIT </h5> </div>
908 + </div>
909 + </div>
910 + </div>
911 + </div>
912 + </section>
913 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-6713857c elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6713857c" data-element_type="section" data-e-type="section">
914 + <div class="elementor-container elementor-column-gap-default">
915 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-2eab85e7" data-id="2eab85e7" data-element_type="column" data-e-type="column">
916 + <div class="elementor-widget-wrap elementor-element-populated">
917 + <div class="elementor-element elementor-element-2caa34e elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="2caa34e" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&quot;,&quot;library&quot;:&quot;&quot;}}" data-widget_type="nav-menu.default">
918 + <div class="elementor-widget-container">
919 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-none">
920 + <ul id="menu-1-2caa34e" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66984"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/" class="elementor-item">Collaborer avec CAPREIT​</a></li>
921 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66985"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/devenir-un-fournisseur/" class="elementor-item">Devenir un fournisseur</a></li>
922 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-72485"><a href="https://www.capreit.ca/vendor-code-of-conduct" class="elementor-item">CAPREIT&rsquo;s Vendor Code of Conduct</a></li>
923 +</ul> </nav>
924 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
925 + <ul id="menu-2-2caa34e" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66984"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/" class="elementor-item" tabindex="-1">Collaborer avec CAPREIT​</a></li>
926 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66985"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/devenir-un-fournisseur/" class="elementor-item" tabindex="-1">Devenir un fournisseur</a></li>
927 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-72485"><a href="https://www.capreit.ca/vendor-code-of-conduct" class="elementor-item" tabindex="-1">CAPREIT&rsquo;s Vendor Code of Conduct</a></li>
928 +</ul> </nav>
929 + </div>
930 + </div>
931 + </div>
932 + </div>
933 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-4f989c82" data-id="4f989c82" data-element_type="column" data-e-type="column">
934 + <div class="elementor-widget-wrap elementor-element-populated">
935 + <div class="elementor-element elementor-element-3a518e elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="3a518e" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
936 + <div class="elementor-widget-container">
937 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
938 + <ul id="menu-1-3a518e" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66979"><a href="https://www.capreit.ca/fr/commercial/" class="elementor-item">Commercial</a></li>
939 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66986"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/revenus-accessoires-et-partenariats-daffaires/" class="elementor-item">Revenus accessoires et partenariats d’affaires</a></li>
940 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66987"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/partager-vos-commentaires/" class="elementor-item">Partager vos commentaires</a></li>
941 +</ul> </nav>
942 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
943 + <ul id="menu-2-3a518e" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66979"><a href="https://www.capreit.ca/fr/commercial/" class="elementor-item" tabindex="-1">Commercial</a></li>
944 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66986"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/revenus-accessoires-et-partenariats-daffaires/" class="elementor-item" tabindex="-1">Revenus accessoires et partenariats d’affaires</a></li>
945 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66987"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/partager-vos-commentaires/" class="elementor-item" tabindex="-1">Partager vos commentaires</a></li>
946 +</ul> </nav>
947 + </div>
948 + </div>
949 + </div>
950 + </div>
951 + </div>
952 + </section>
953 + </div>
954 + </div>
955 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-5a8d58db" data-id="5a8d58db" data-element_type="column" data-e-type="column">
956 + <div class="elementor-widget-wrap elementor-element-populated">
957 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-58b3b64d elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="58b3b64d" data-element_type="section" data-e-type="section">
958 + <div class="elementor-container elementor-column-gap-default">
959 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5398c5db" data-id="5398c5db" data-element_type="column" data-e-type="column">
960 + <div class="elementor-widget-wrap elementor-element-populated">
961 + <div class="elementor-element elementor-element-3a1d2d62 elementor-widget elementor-widget-heading" data-id="3a1d2d62" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
962 + <div class="elementor-widget-container">
963 + <h5 class="elementor-heading-title elementor-size-default">Featured</h5> </div>
964 + </div>
965 + </div>
966 + </div>
967 + </div>
968 + </section>
969 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-23edf8cc elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="23edf8cc" data-element_type="section" data-e-type="section">
970 + <div class="elementor-container elementor-column-gap-default">
971 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-6c601002" data-id="6c601002" data-element_type="column" data-e-type="column">
972 + <div class="elementor-widget-wrap elementor-element-populated">
973 + <div class="elementor-element elementor-element-6c3bb8a4 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="6c3bb8a4" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
974 + <div class="elementor-widget-container">
975 + <a class="elementor-cta" href="/partner-with-capreit/become-a-vendor/">
976 + <div class="elementor-cta__bg-wrapper">
977 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2024/03/Vendor-button-01-1-300x200.png);" role="img" aria-label="Vendor-button-01.png"></div>
978 + <div class="elementor-cta__bg-overlay"></div>
979 + </div>
980 + <div class="elementor-cta__content">
981 +
982 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
983 + Become a Vendor </h4>
984 +
985 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
986 + Interested in providing goods or services to our communities? </div>
987 +
988 + </div>
989 + </a>
990 + </div>
991 + </div>
992 + </div>
993 + </div>
994 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4d894f72" data-id="4d894f72" data-element_type="column" data-e-type="column">
995 + <div class="elementor-widget-wrap elementor-element-populated">
996 + <div class="elementor-element elementor-element-12dbd159 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="12dbd159" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
997 + <div class="elementor-widget-container">
998 + <a class="elementor-cta" href="/commercial/">
999 + <div class="elementor-cta__bg-wrapper">
1000 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2023/12/Commercial-Button-02-300x200.png);" role="img" aria-label="Commercial-Button-02.png"></div>
1001 + <div class="elementor-cta__bg-overlay"></div>
1002 + </div>
1003 + <div class="elementor-cta__content">
1004 +
1005 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
1006 + Commercial Leasing </h4>
1007 +
1008 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
1009 + Find the perfect space for your business </div>
1010 +
1011 + </div>
1012 + </a>
1013 + </div>
1014 + </div>
1015 + </div>
1016 + </div>
1017 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-401f3f2e" data-id="401f3f2e" data-element_type="column" data-e-type="column">
1018 + <div class="elementor-widget-wrap elementor-element-populated">
1019 + <div class="elementor-element elementor-element-7bcea2d0 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="7bcea2d0" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
1020 + <div class="elementor-widget-container">
1021 + <a class="elementor-cta" href="/partner-with-capreit/vendor-feedback/">
1022 + <div class="elementor-cta__bg-wrapper">
1023 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2023/12/fedback-01-1-300x200.jpg);" role="img" aria-label="fedback-01-1.jpg"></div>
1024 + <div class="elementor-cta__bg-overlay"></div>
1025 + </div>
1026 + <div class="elementor-cta__content">
1027 +
1028 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
1029 + Feedback for us? </h4>
1030 +
1031 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
1032 + Confidential Vendor Complaint Process </div>
1033 +
1034 + </div>
1035 + </a>
1036 + </div>
1037 + </div>
1038 + </div>
1039 + </div>
1040 + </div>
1041 + </section>
1042 + </div>
1043 + </div>
1044 + </div>
1045 + </section>
1046 + </div>
1047 + </div>
1048 + </div>
1049 + <div class="header-sub" id="navigation-partnerfr">
1050 + <div class="wrapper">
1051 + <style id="elementor-post-64027">.elementor-64027 .elementor-element.elementor-element-73223984{border-style:solid;border-width:1px 1px 1px 1px;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:1px 1px 1px 40px;z-index:99;}.elementor-64027 .elementor-element.elementor-element-73223984 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-64027 .elementor-element.elementor-element-5dfa35a7{padding:1px 1px 1px 1px;}.elementor-64027 .elementor-element.elementor-element-2cb329ad{padding:1px 1px 1px 1px;}.elementor-64027 .elementor-element.elementor-element-5340691c > .elementor-widget-container{background-color:#FFFCF7;}.elementor-64027 .elementor-element.elementor-element-5340691c .elementor-nav-menu .elementor-item{font-family:"Arial", Sans-serif;font-size:16px;font-weight:500;font-style:normal;}.elementor-64027 .elementor-element.elementor-element-5340691c .elementor-nav-menu--dropdown{background-color:#FFFCF7;}.elementor-64027 .elementor-element.elementor-element-5340691c .elementor-nav-menu--dropdown a:hover,
1052 + .elementor-64027 .elementor-element.elementor-element-5340691c .elementor-nav-menu--dropdown a:focus,
1053 + .elementor-64027 .elementor-element.elementor-element-5340691c .elementor-nav-menu--dropdown a.elementor-item-active,
1054 + .elementor-64027 .elementor-element.elementor-element-5340691c .elementor-nav-menu--dropdown a.highlighted{background-color:#FFFFFF;}.elementor-64027 .elementor-element.elementor-element-5340691c .elementor-nav-menu--dropdown a.elementor-item-active{color:#AF5341;}.elementor-64027 .elementor-element.elementor-element-5491f69a > .elementor-widget-container{background-color:#FFFCF7;}.elementor-64027 .elementor-element.elementor-element-5491f69a .elementor-nav-menu .elementor-item{font-family:"Arial", Sans-serif;font-size:16px;font-weight:500;}.elementor-64027 .elementor-element.elementor-element-5491f69a .elementor-nav-menu--dropdown{background-color:#FFFCF7;}.elementor-64027 .elementor-element.elementor-element-5491f69a .elementor-nav-menu--dropdown a:hover,
1055 + .elementor-64027 .elementor-element.elementor-element-5491f69a .elementor-nav-menu--dropdown a:focus,
1056 + .elementor-64027 .elementor-element.elementor-element-5491f69a .elementor-nav-menu--dropdown a.elementor-item-active,
1057 + .elementor-64027 .elementor-element.elementor-element-5491f69a .elementor-nav-menu--dropdown a.highlighted{background-color:#FFFFFF;}.elementor-64027 .elementor-element.elementor-element-5491f69a .elementor-nav-menu--dropdown a.elementor-item-active{color:#AF5341;}.elementor-64027 .elementor-element.elementor-element-1e3dfeb5{padding:1px 1px 1px 1px;}.elementor-64027 .elementor-element.elementor-element-75cff038 > .elementor-widget-container{padding:1px 1px 1px 1px;}.elementor-64027 .elementor-element.elementor-element-75cff038 .elementor-heading-title{font-family:"Arial", Sans-serif;font-weight:bold;}.elementor-64027 .elementor-element.elementor-element-1d19e2c7{padding:1px 1px 1px 1px;}.elementor-64027 .elementor-element.elementor-element-fc9f546 .elementor-cta .elementor-cta__bg, .elementor-64027 .elementor-element.elementor-element-fc9f546 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-64027 .elementor-element.elementor-element-fc9f546 .elementor-cta__content{text-align:center;}.elementor-64027 .elementor-element.elementor-element-fc9f546 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-64027 .elementor-element.elementor-element-f739425 .elementor-cta .elementor-cta__bg, .elementor-64027 .elementor-element.elementor-element-f739425 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-64027 .elementor-element.elementor-element-f739425 .elementor-cta__content{text-align:center;}.elementor-64027 .elementor-element.elementor-element-f739425 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}.elementor-64027 .elementor-element.elementor-element-326f244 .elementor-cta .elementor-cta__bg, .elementor-64027 .elementor-element.elementor-element-326f244 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-64027 .elementor-element.elementor-element-326f244 .elementor-cta__content{text-align:center;}.elementor-64027 .elementor-element.elementor-element-326f244 .elementor-cta__title{font-weight:var( --e-global-typography-primary-font-weight );}@media(min-width:768px){.elementor-64027 .elementor-element.elementor-element-446ec180{width:50.134%;}.elementor-64027 .elementor-element.elementor-element-5c8911ab{width:49.866%;}}</style> <div data-elementor-type="section" data-elementor-id="64027" class="elementor elementor-64027" data-elementor-post-type="elementor_library">
1058 + <section class="elementor-section elementor-top-section elementor-element elementor-element-73223984 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="73223984" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
1059 + <div class="elementor-container elementor-column-gap-default">
1060 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-446ec180" data-id="446ec180" data-element_type="column" data-e-type="column">
1061 + <div class="elementor-widget-wrap elementor-element-populated">
1062 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-5dfa35a7 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5dfa35a7" data-element_type="section" data-e-type="section">
1063 + <div class="elementor-container elementor-column-gap-default">
1064 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-354a0545" data-id="354a0545" data-element_type="column" data-e-type="column">
1065 + <div class="elementor-widget-wrap elementor-element-populated">
1066 + <div class="elementor-element elementor-element-52e25c65 elementor-widget elementor-widget-heading" data-id="52e25c65" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
1067 + <div class="elementor-widget-container">
1068 + <h5 class="elementor-heading-title elementor-size-default">Collaborer avec CAPREIT </h5> </div>
1069 + </div>
1070 + </div>
1071 + </div>
1072 + </div>
1073 + </section>
1074 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-2cb329ad elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2cb329ad" data-element_type="section" data-e-type="section">
1075 + <div class="elementor-container elementor-column-gap-default">
1076 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-4dd35f99" data-id="4dd35f99" data-element_type="column" data-e-type="column">
1077 + <div class="elementor-widget-wrap elementor-element-populated">
1078 + <div class="elementor-element elementor-element-5340691c elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="5340691c" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&quot;,&quot;library&quot;:&quot;&quot;}}" data-widget_type="nav-menu.default">
1079 + <div class="elementor-widget-container">
1080 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-none">
1081 + <ul id="menu-1-5340691c" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68515"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/devenir-un-fournisseur/" class="elementor-item">Devenir un fournisseur</a></li>
1082 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-72490"><a href="https://www.capreit.ca/code-de-conduite-des-fournisseurs" class="elementor-item">Code de conduite des fournisseurs de CAPREIT</a></li>
1083 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68514"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/" class="elementor-item">Collaborer avec CAPREIT​</a></li>
1084 +</ul> </nav>
1085 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
1086 + <ul id="menu-2-5340691c" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68515"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/devenir-un-fournisseur/" class="elementor-item" tabindex="-1">Devenir un fournisseur</a></li>
1087 +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-72490"><a href="https://www.capreit.ca/code-de-conduite-des-fournisseurs" class="elementor-item" tabindex="-1">Code de conduite des fournisseurs de CAPREIT</a></li>
1088 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68514"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/" class="elementor-item" tabindex="-1">Collaborer avec CAPREIT​</a></li>
1089 +</ul> </nav>
1090 + </div>
1091 + </div>
1092 + </div>
1093 + </div>
1094 + <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7b3f8d5c" data-id="7b3f8d5c" data-element_type="column" data-e-type="column">
1095 + <div class="elementor-widget-wrap elementor-element-populated">
1096 + <div class="elementor-element elementor-element-5491f69a elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="5491f69a" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
1097 + <div class="elementor-widget-container">
1098 + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
1099 + <ul id="menu-1-5491f69a" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68516"><a href="https://www.capreit.ca/fr/commercial/" class="elementor-item">Commercial</a></li>
1100 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68517"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/revenus-accessoires-et-partenariats-daffaires/" class="elementor-item">Revenus accessoires et partenariats d’affaires</a></li>
1101 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68518"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/partager-vos-commentaires/" class="elementor-item">Partager vos commentaires</a></li>
1102 +</ul> </nav>
1103 + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
1104 + <ul id="menu-2-5491f69a" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68516"><a href="https://www.capreit.ca/fr/commercial/" class="elementor-item" tabindex="-1">Commercial</a></li>
1105 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68517"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/revenus-accessoires-et-partenariats-daffaires/" class="elementor-item" tabindex="-1">Revenus accessoires et partenariats d’affaires</a></li>
1106 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68518"><a href="https://www.capreit.ca/fr/collaborer-avec-capreit/partager-vos-commentaires/" class="elementor-item" tabindex="-1">Partager vos commentaires</a></li>
1107 +</ul> </nav>
1108 + </div>
1109 + </div>
1110 + </div>
1111 + </div>
1112 + </div>
1113 + </section>
1114 + </div>
1115 + </div>
1116 + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-5c8911ab" data-id="5c8911ab" data-element_type="column" data-e-type="column">
1117 + <div class="elementor-widget-wrap elementor-element-populated">
1118 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-1e3dfeb5 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="1e3dfeb5" data-element_type="section" data-e-type="section">
1119 + <div class="elementor-container elementor-column-gap-default">
1120 + <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-43fb11d2" data-id="43fb11d2" data-element_type="column" data-e-type="column">
1121 + <div class="elementor-widget-wrap elementor-element-populated">
1122 + <div class="elementor-element elementor-element-75cff038 elementor-widget elementor-widget-heading" data-id="75cff038" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
1123 + <div class="elementor-widget-container">
1124 + <h5 class="elementor-heading-title elementor-size-default">EN VEDETTE</h5> </div>
1125 + </div>
1126 + </div>
1127 + </div>
1128 + </div>
1129 + </section>
1130 + <section class="elementor-section elementor-inner-section elementor-element elementor-element-1d19e2c7 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="1d19e2c7" data-element_type="section" data-e-type="section">
1131 + <div class="elementor-container elementor-column-gap-default">
1132 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-6f5ffde2" data-id="6f5ffde2" data-element_type="column" data-e-type="column">
1133 + <div class="elementor-widget-wrap elementor-element-populated">
1134 + <div class="elementor-element elementor-element-fc9f546 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="fc9f546" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
1135 + <div class="elementor-widget-container">
1136 + <a class="elementor-cta" href="https://www.capreit.ca/fr/collaborer-avec-capreit/devenir-un-fournisseur/">
1137 + <div class="elementor-cta__bg-wrapper">
1138 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2024/03/Vendor-button-01-1-300x200.png);" role="img" aria-label="Vendor-button-01.png"></div>
1139 + <div class="elementor-cta__bg-overlay"></div>
1140 + </div>
1141 + <div class="elementor-cta__content">
1142 +
1143 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
1144 + Devenir fournisseur </h4>
1145 +
1146 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
1147 + Intéressés à fournir des biens ou des services à nos communautés? </div>
1148 +
1149 + </div>
1150 + </a>
1151 + </div>
1152 + </div>
1153 + </div>
1154 + </div>
1155 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-1a1af82e" data-id="1a1af82e" data-element_type="column" data-e-type="column">
1156 + <div class="elementor-widget-wrap elementor-element-populated">
1157 + <div class="elementor-element elementor-element-f739425 elementor-cta--layout-image-above elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action" data-id="f739425" data-element_type="widget" data-e-type="widget" data-widget_type="call-to-action.default">
1158 + <div class="elementor-widget-container">
1159 + <a class="elementor-cta" href="https://www.capreit.ca/fr/commercial/">
1160 + <div class="elementor-cta__bg-wrapper">
1161 + <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://www.capreit.ca/wp-content/uploads/2023/12/Commercial-Button-02-300x200.png);" role="img" aria-label="Commercial-Button-02.png"></div>
1162 + <div class="elementor-cta__bg-overlay"></div>
1163 + </div>
1164 + <div class="elementor-cta__content">
1165 +
1166 + <h4 class="elementor-cta__title elementor-cta__content-item elementor-content-item">
1167 + Location commerciale </h4>
1168 +
1169 + <div class="elementor-cta__description elementor-cta__content-item elementor-content-item">
1170 + Trouvez l’espace parfait pour votre entreprise </div>
1171 +
1172 + </div>
1173 + </a>
1174 + </div>
1175 + </div>
1176 + </div>
1177 + </div>
1178 + <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-24f7917d" data-id="24f7917d" data-element_type="column" data-e-type="column">

Diff truncated — file too large.