feat(scraping): migration Firecrawl -> Scrapfly des 6 connecteurs a rendu JS
- base.get_rendered : rendu via Scrapfly (render_js+ASP), wait_ms = ancien waitFor Firecrawl, retry x3 sur contenu vide puis echec honnete ; FIRECRAWL_API retire du socle - aalto/osgoode/brigil/realstar : _rendered delegue au socle (retry centralise) - realstar/osgoode/brigil : selecteur li[class*=property-box] — le rendu Scrapfly capture le DOM avant que le JS RentCafe ne revele les cartes (property-box-hidden), qui sont completes ; filtre QC en aval inchange - via_capitale : CARD_SPLIT accepte les hrefs relatifs (serialisation Scrapfly) en plus des absolus (fixtures Firecrawl historiques) - fixtures record/replay : get_rendered accepte wait_ms (cle de rejeu = URL) - fixtures re-enregistrees via Scrapfly : aalto 24, osgoode 4, brigil 12, realstar 9 ; rejeu test_connectors 10/10 - gen_connector_docs : backend get_rendered documente Scrapfly (ex-Firecrawl) Valide en live : aalto 24, lynk_olymbec 4, via_capitale page 1 = 34 cartes. Lou-Ka ne depend plus de FIRECRAWL_API_KEY.
20 changed files +19,401 −214
modified
louka/connectors/aalto.py
+6 −14
@@ -6,7 +6,7 @@ | ||
| 6 | 6 | # résidentiels du quartier Zibi (rive québécoise, secteur Hull de |
| 7 | 7 | # Gatineau — 10, rue Jos-Montferrand, J8X 0A6, adresse publiée par le |
| 8 | 8 | # site). Site RentCafe/Yardi (gabarit « ritz ») derrière Cloudflare (403 |
| 9 | −# en direct) : rendu via Firecrawl comme realstar.py/osgoode.py. | |
| 9 | +# en direct) : rendu JS via Scrapfly comme realstar.py/osgoode.py (ex-Firecrawl). | |
| 10 | 10 | # La page /floorplans (française) publie une carte par PLAN : nom |
| 11 | 11 | # (« Aalto II | S2 »), typologie (« studio / 1 SdB »), superficie en pc, |
| 12 | 12 | # prix « à partir de $1,520.00/mois » et image du plan -> une annonce par |
@@ -16,13 +16,12 @@ | ||
| 16 | 16 | # ----------------------------------------------------------------------------- |
| 17 | 17 | from __future__ import annotations |
| 18 | 18 | |
| 19 | −import os | |
| 20 | 19 | import re |
| 21 | 20 | |
| 22 | 21 | from bs4 import BeautifulSoup |
| 23 | 22 | |
| 24 | 23 | from ..schema import Listing, normalize_unit_type, strip_accents |
| 25 | −from .base import FIRECRAWL_API, BaseConnector | |
| 24 | +from .base import BaseConnector | |
| 26 | 25 | |
| 27 | 26 | BASE = "https://www.aaltosuites.ca" |
| 28 | 27 | FLOORPLANS_URL = f"{BASE}/floorplans" |
@@ -41,18 +40,11 @@ class AaltoConnector(BaseConnector): | ||
| 41 | 40 | request_delay = 2.0 |
| 42 | 41 | max_plans = 60 |
| 43 | 42 | |
| 44 | − # -- Firecrawl avec attente de rendu (Cloudflare + SPA RentCafe) ----------- | |
| 43 | + # -- rendu JS avec attente (Cloudflare + SPA RentCafe) — Scrapfly ---------- | |
| 44 | + # (migré de Firecrawl le 2026-08-27 ; retry + échec honnête dans | |
| 45 | + # BaseConnector.get_rendered, que les fixtures monkeypatchent) | |
| 45 | 46 | def _rendered(self, url: str, wait_ms: int = 9000) -> str: |
| 46 | − key = os.environ.get("FIRECRAWL_API_KEY", "") | |
| 47 | − # via self.session : l'enregistreur de fixtures capture la réponse | |
| 48 | − resp = self.session.post( | |
| 49 | − FIRECRAWL_API, | |
| 50 | − json={"url": url, "formats": ["html"], "waitFor": wait_ms}, | |
| 51 | − headers={"Authorization": f"Bearer {key}"}, | |
| 52 | − timeout=150, | |
| 53 | − ) | |
| 54 | − resp.raise_for_status() | |
| 55 | − return (resp.json().get("data") or {}).get("html", "") | |
| 47 | + return self.get_rendered(url, wait_ms) | |
| 56 | 48 | |
| 57 | 49 | @staticmethod |
| 58 | 50 | def _unit_type(label: str) -> str: |
modified
louka/connectors/base.py
+18 −19
@@ -2,8 +2,8 @@ | ||
| 2 | 2 | # Lou-Ka — Agrégateur de logements à louer (province de Québec) |
| 3 | 3 | # Auteur : Simon-Pierre Boucher — contact@spboucher.ai |
| 4 | 4 | # connectors/base.py : classe de base des connecteurs + backends de fetch |
| 5 | −# (requests direct, Firecrawl ou Scrapfly pour les sites | |
| 6 | −# JavaScript / derrière anti-bot) | |
| 5 | +# (requests direct, ou Scrapfly pour les sites JavaScript | |
| 6 | +# / derrière anti-bot — Firecrawl retiré le 2026-08-27) | |
| 7 | 7 | # ----------------------------------------------------------------------------- |
| 8 | 8 | from __future__ import annotations |
| 9 | 9 | |
@@ -19,7 +19,6 @@ USER_AGENT = ("Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) " | ||
| 19 | 19 | "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126 Safari/537.36 " |
| 20 | 20 | "LouKaBot/1.0 (+https://www.lou-ka.com/bot; contact@spboucher.ai)") |
| 21 | 21 | |
| 22 | −FIRECRAWL_API = "https://api.firecrawl.dev/v1/scrape" | |
| 23 | 22 | SCRAPFLY_API = "https://api.scrapfly.io/scrape" |
| 24 | 23 | |
| 25 | 24 | |
@@ -65,24 +64,24 @@ class BaseConnector: | ||
| 65 | 64 | resp.raise_for_status() |
| 66 | 65 | return resp |
| 67 | 66 | |
| 68 | − def get_rendered(self, url: str) -> str: | |
| 69 | − """Récupère le HTML rendu (JavaScript exécuté) via Firecrawl. | |
| 67 | + def get_rendered(self, url: str, wait_ms: int = 0) -> str: | |
| 68 | + """Récupère le HTML rendu (JavaScript exécuté) via Scrapfly. | |
| 70 | 69 | |
| 71 | − Nécessite FIRECRAWL_API_KEY dans l'environnement (.env). | |
| 72 | − À utiliser pour les sites SPA (Logisco, Locago, etc.). | |
| 70 | + Migré de Firecrawl le 2026-08-27 (même contrat : `wait_ms` équivaut à | |
| 71 | + l'ancien `waitFor` Firecrawl). Les fixtures (record/replay) remplacent | |
| 72 | + cette méthode par son nom — la clé de rejeu reste l'URL cible. | |
| 73 | + Retry court sur contenu vide (l'équivalent des 502 transitoires | |
| 74 | + Firecrawl vus 2026-08-21/27), puis échec HONNÊTE : mieux vaut faire | |
| 75 | + échouer le sync que dépublier l'inventaire sur une page vide. | |
| 73 | 76 | """ |
| 74 | − key = os.environ.get("FIRECRAWL_API_KEY") | |
| 75 | − if not key: | |
| 76 | − raise RuntimeError("FIRECRAWL_API_KEY manquant (voir .env)") | |
| 77 | − resp = requests.post( | |
| 78 | − FIRECRAWL_API, | |
| 79 | − json={"url": url, "formats": ["html"]}, | |
| 80 | − headers={"Authorization": f"Bearer {key}"}, | |
| 81 | − timeout=90, | |
| 82 | − ) | |
| 83 | − resp.raise_for_status() | |
| 84 | − data = resp.json() | |
| 85 | − return (data.get("data") or {}).get("html", "") | |
| 77 | + for attempt in range(3): | |
| 78 | + html = self.get_scrapfly(url, render_js=True, asp=True, | |
| 79 | + rendering_wait=wait_ms) | |
| 80 | + if html: | |
| 81 | + return html | |
| 82 | + if attempt < 2: | |
| 83 | + time.sleep(5 * (attempt + 1)) | |
| 84 | + raise RuntimeError(f"Scrapfly : rendu vide après 3 tentatives — {url}") | |
| 86 | 85 | |
| 87 | 86 | def scrapfly(self, url: str, render_js: bool = True, asp: bool = True, |
| 88 | 87 | rendering_wait: int = 0, country: str = "ca", |
modified
louka/connectors/brigil.py
+16 −21
@@ -4,7 +4,7 @@ | ||
| 4 | 4 | # connectors/brigil.py : connecteur Brigil (brigil.com — Gatineau/Outaouais) |
| 5 | 5 | # Promoteur-gestionnaire dominant de Gatineau. Site = portail Yardi RentCafe |
| 6 | 6 | # protégé par Cloudflare : curl/requests reçoivent 403 (« Just a moment »), |
| 7 | −# TOUT passe par Firecrawl avec attente de rendu — même patron que | |
| 7 | +# TOUT passe par le rendu Scrapfly avec attente (ex-Firecrawl) — même patron que | |
| 8 | 8 | # realstar.py (RentCafe + Cloudflare) : |
| 9 | 9 | # 1) /searchlisting?province=Quebec -> cartes propriétés (nom, gamme |
| 10 | 10 | # Aura/Apogee/Comfort, lits, fourchette de prix, vignette) ; le portail |
@@ -17,19 +17,18 @@ | ||
| 17 | 17 | # Les propriétés d'Ottawa/Ontario sont écartées : d'abord par l'URL |
| 18 | 18 | # (/apartments/on/…), ensuite par la ville lue sur la fiche. |
| 19 | 19 | # Une annonce par propriété. Les rendus passent par self.detail(...) (cache |
| 20 | −# BD) : Firecrawl n'est rappelé que si la carte a changé, et un plafond | |
| 20 | +# BD) : le rendu n'est rappelé que si la carte a changé, et un plafond | |
| 21 | 21 | # (max_renders) borne le coût de chaque synchronisation. |
| 22 | 22 | # ----------------------------------------------------------------------------- |
| 23 | 23 | from __future__ import annotations |
| 24 | 24 | |
| 25 | 25 | import hashlib |
| 26 | −import os | |
| 27 | 26 | import re |
| 28 | 27 | |
| 29 | 28 | from bs4 import BeautifulSoup |
| 30 | 29 | |
| 31 | 30 | from ..schema import Listing, normalize_unit_type, parse_price, strip_accents |
| 32 | −from .base import FIRECRAWL_API, BaseConnector | |
| 31 | +from .base import BaseConnector | |
| 33 | 32 | |
| 34 | 33 | SEARCH_URL = "https://www.brigil.com/searchlisting?province=Quebec" |
| 35 | 34 | |
@@ -53,27 +52,20 @@ _BED_LOW_RE = re.compile(r"(?i)^\s*(studio|\d+)") | ||
| 53 | 52 | |
| 54 | 53 | |
| 55 | 54 | class _BudgetReached(Exception): |
| 56 | − """Plafond de rendus Firecrawl atteint pour cette synchronisation.""" | |
| 55 | + """Plafond de rendus atteint pour cette synchronisation.""" | |
| 57 | 56 | |
| 58 | 57 | |
| 59 | 58 | class BrigilConnector(BaseConnector): |
| 60 | 59 | source_id = "brigil" |
| 61 | 60 | request_delay = 1.0 |
| 62 | 61 | max_images = 20 |
| 63 | − max_renders = 26 # plafond d'appels Firecrawl par sync (hors cache) | |
| 62 | + max_renders = 26 # plafond de rendus par sync (hors cache) | |
| 64 | 63 | |
| 65 | − # -- Firecrawl avec attente de rendu (RentCafe + Cloudflare) --------------- | |
| 64 | + # -- rendu JS avec attente (RentCafe + Cloudflare) — Scrapfly -------------- | |
| 65 | + # (migré de Firecrawl le 2026-08-27 ; retry + échec honnête dans | |
| 66 | + # BaseConnector.get_rendered, que les fixtures monkeypatchent) | |
| 66 | 67 | def _rendered(self, url: str, wait_ms: int = 9000) -> str: |
| 67 | − key = os.environ.get("FIRECRAWL_API_KEY", "") | |
| 68 | − # via self.session : l'enregistreur de fixtures capture la réponse | |
| 69 | − resp = self.session.post( | |
| 70 | − FIRECRAWL_API, | |
| 71 | − json={"url": url, "formats": ["html"], "waitFor": wait_ms}, | |
| 72 | − headers={"Authorization": f"Bearer {key}"}, | |
| 73 | − timeout=150, | |
| 74 | − ) | |
| 75 | − resp.raise_for_status() | |
| 76 | − return (resp.json().get("data") or {}).get("html", "") | |
| 68 | + return self.get_rendered(url, wait_ms) | |
| 77 | 69 | |
| 78 | 70 | # -- helpers --------------------------------------------------------------- |
| 79 | 71 | @staticmethod |
@@ -127,11 +119,14 @@ class BrigilConnector(BaseConnector): | ||
| 127 | 119 | self._renders = 0 |
| 128 | 120 | html = self._rendered(SEARCH_URL, 10000) |
| 129 | 121 | soup = BeautifulSoup(html, "html.parser") |
| 130 | − cards = soup.select("li.property-box") | |
| 122 | + # [class*=…] : le rendu Scrapfly capture le DOM avant que le JS | |
| 123 | + # RentCafe ne révèle les cartes (property-box-hidden) — les cartes | |
| 124 | + # cachées sont complètes, le filtre QC en aval fait le tri | |
| 125 | + cards = soup.select('li[class*="property-box"]') | |
| 131 | 126 | if not cards: # rendu incomplet : seconde chance |
| 132 | 127 | html = self._rendered(SEARCH_URL, 15000) |
| 133 | 128 | soup = BeautifulSoup(html, "html.parser") |
| 134 | − cards = soup.select("li.property-box") | |
| 129 | + cards = soup.select('li[class*="property-box"]') | |
| 135 | 130 | |
| 136 | 131 | # candidats : tout sauf les fiches explicitement ontariennes |
| 137 | 132 | candidates: list[tuple[str, str, object]] = [] |
@@ -201,7 +196,7 @@ class BrigilConnector(BaseConnector): | ||
| 201 | 196 | if img and img.get("src"): |
| 202 | 197 | images.append(img["src"]) |
| 203 | 198 | |
| 204 | − # fiche propriété (+ plans) via cache BD : Firecrawl n'est rappelé que | |
| 199 | + # fiche propriété (+ plans) via cache BD : le rendu n'est rappelé que | |
| 205 | 200 | # si la carte a changé (nom, lits, prix) |
| 206 | 201 | key = hashlib.sha1( |
| 207 | 202 | f"{name}|{unit_types}|{beds}|{price_label}".encode("utf-8") |
@@ -273,7 +268,7 @@ class BrigilConnector(BaseConnector): | ||
| 273 | 268 | |
| 274 | 269 | # -- fiche propriété + plans (hors cache seulement) ------------------------ |
| 275 | 270 | def _fetch_detail(self, url: str) -> dict: |
| 276 | − """1 à 2 rendus Firecrawl : fiche (adresse, photos, description, | |
| 271 | + """1 à 2 rendus Scrapfly : fiche (adresse, photos, description, | |
| 277 | 272 | commodités, plans intégrés) puis /floorplans si nécessaire. |
| 278 | 273 | |
| 279 | 274 | La fiche est rendue AVANT tout : sans elle, la ville de la propriété |
modified
louka/connectors/lynk_olymbec.py
+6 −5
@@ -5,7 +5,7 @@ | ||
| 5 | 5 | # Lynk De la Savane — 303 unités au 5200, rue De la Savane, Montréal |
| 6 | 6 | # (secteur Namur / De la Savane, CDN-NDG). Site RentCafe derrière un |
| 7 | 7 | # challenge Cloudflare (403 pour les robots) : accès direct tenté avec |
| 8 | −# en-têtes réalistes, sinon repli sur Firecrawl (rendu JS). | |
| 8 | +# en-têtes réalistes, sinon repli sur Scrapfly (rendu JS, ex-Firecrawl). | |
| 9 | 9 | # Sources combinées (1 annonce par type d'unité — Studio, 3½, 4½, 5½) : |
| 10 | 10 | # - /lynk-dls/units : prix marketing « à partir de » par type, inclusions |
| 11 | 11 | # « dans mon unité » (icônes) et « aménagements et matériaux » (liste) ; |
@@ -85,8 +85,9 @@ class LynkOlymbecConnector(BaseConnector): | ||
| 85 | 85 | self._detail_fetches = 0 |
| 86 | 86 | |
| 87 | 87 | def _get_page(self, url: str) -> str: |
| 88 | − """Essaie l'accès direct (en-têtes navigateur), sinon Firecrawl, | |
| 89 | − sinon Scrapfly (ASP) en dernier rideau.""" | |
| 88 | + """Essaie l'accès direct (en-têtes navigateur), sinon le rendu | |
| 89 | + Scrapfly (get_rendered, avec retry), sinon un dernier appel Scrapfly | |
| 90 | + ASP direct en dernier rideau.""" | |
| 90 | 91 | try: |
| 91 | 92 | resp = self.get(url, headers=BROWSER_HEADERS) |
| 92 | 93 | if "Just a moment" not in resp.text: |
@@ -94,7 +95,7 @@ class LynkOlymbecConnector(BaseConnector): | ||
| 94 | 95 | except Exception: |
| 95 | 96 | pass |
| 96 | 97 | try: |
| 97 | − html = self.get_rendered(url) # Cloudflare -> rendu Firecrawl | |
| 98 | + html = self.get_rendered(url) # Cloudflare -> rendu Scrapfly | |
| 98 | 99 | if html and "Just a moment" not in html: |
| 99 | 100 | return html |
| 100 | 101 | except Exception: |
@@ -145,7 +146,7 @@ class LynkOlymbecConnector(BaseConnector): | ||
| 145 | 146 | units_html = self._get_page(UNITS_URL) |
| 146 | 147 | if not units_html: |
| 147 | 148 | raise RuntimeError( |
| 148 | − "page /units inaccessible (direct, Firecrawl et Scrapfly)") | |
| 149 | + "page /units inaccessible (direct, rendu Scrapfly et ASP)") | |
| 149 | 150 | units_text = _strip_tags(units_html) |
| 150 | 151 | units_soup = BeautifulSoup(units_html, "html.parser") |
| 151 | 152 | |
modified
louka/connectors/osgoode.py
+10 −17
@@ -5,7 +5,7 @@ | ||
| 5 | 5 | # Grand gestionnaire Ottawa-Gatineau ; côté Québec : 4 immeubles à Gatineau |
| 6 | 6 | # (Le 700 St Joseph, Le Faubourg de l'Île, Village Cité-des-Jeunes, |
| 7 | 7 | # Le Salaberry). Site RentCafe/Yardi protégé par Cloudflare (403 direct) : |
| 8 | −# tout passe par Firecrawl, comme realstar.py. | |
| 8 | +# tout passe par le rendu Scrapfly, comme realstar.py (ex-Firecrawl). | |
| 9 | 9 | # 1) pages recherche /1-bedroom|2-bedroom/qc/gatineau/apartments -> cartes |
| 10 | 10 | # propriétés (li.property-box : nom, adresse, lits/sdb/pi², fourchette |
| 11 | 11 | # de prix, téléphone, vignette) — les cartes hors Québec (liens /on/) |
@@ -15,18 +15,17 @@ | ||
| 15 | 15 | # ⚠ contrairement à Realstar, AUCUN décompte d'unités disponibles n'est |
| 16 | 16 | # publié -> availability reste vide (rien d'inventé). |
| 17 | 17 | # Une annonce par propriété (uid stables). Les fiches passent par |
| 18 | −# self.detail(...) (cache BD) avec budget Firecrawl par sync. | |
| 18 | +# self.detail(...) (cache BD) avec budget de rendus par sync. | |
| 19 | 19 | # ----------------------------------------------------------------------------- |
| 20 | 20 | from __future__ import annotations |
| 21 | 21 | |
| 22 | 22 | import hashlib |
| 23 | −import os | |
| 24 | 23 | import re |
| 25 | 24 | |
| 26 | 25 | from bs4 import BeautifulSoup |
| 27 | 26 | |
| 28 | 27 | from ..schema import Listing, parse_price |
| 29 | −from .base import FIRECRAWL_API, BaseConnector | |
| 28 | +from .base import BaseConnector | |
| 30 | 29 | |
| 31 | 30 | BASE = "https://www.osgoodeproperties.com" |
| 32 | 31 | # pages recherche par typologie (chaque carte affiche la fourchette complète |
@@ -39,7 +38,7 @@ _SKIP_IMG = re.compile(r"logo|icon|favicon|placeholder", re.I) | ||
| 39 | 38 | |
| 40 | 39 | |
| 41 | 40 | class _BudgetReached(Exception): |
| 42 | − """Plafond de requêtes Firecrawl atteint pour cette synchronisation.""" | |
| 41 | + """Plafond de rendus atteint pour cette synchronisation.""" | |
| 43 | 42 | |
| 44 | 43 | |
| 45 | 44 | class OsgoodeConnector(BaseConnector): |
@@ -49,18 +48,11 @@ class OsgoodeConnector(BaseConnector): | ||
| 49 | 48 | max_images = 20 |
| 50 | 49 | max_renders = 14 # 2 recherches + 2 par propriété (hors cache) |
| 51 | 50 | |
| 52 | − # -- Firecrawl avec attente de rendu (Cloudflare + SPA RentCafe) ----------- | |
| 51 | + # -- rendu JS avec attente (Cloudflare + SPA RentCafe) — Scrapfly ---------- | |
| 52 | + # (migré de Firecrawl le 2026-08-27 ; retry + échec honnête dans | |
| 53 | + # BaseConnector.get_rendered, que les fixtures monkeypatchent) | |
| 53 | 54 | def _rendered(self, url: str, wait_ms: int = 9000) -> str: |
| 54 | − key = os.environ.get("FIRECRAWL_API_KEY", "") | |
| 55 | − # via self.session : l'enregistreur de fixtures capture la réponse | |
| 56 | − resp = self.session.post( | |
| 57 | − FIRECRAWL_API, | |
| 58 | − json={"url": url, "formats": ["html"], "waitFor": wait_ms}, | |
| 59 | − headers={"Authorization": f"Bearer {key}"}, | |
| 60 | − timeout=150, | |
| 61 | − ) | |
| 62 | − resp.raise_for_status() | |
| 63 | − return (resp.json().get("data") or {}).get("html", "") | |
| 55 | + return self.get_rendered(url, wait_ms) | |
| 64 | 56 | |
| 65 | 57 | # -- fetch ----------------------------------------------------------------- |
| 66 | 58 | def fetch(self) -> list[Listing]: |
@@ -74,7 +66,8 @@ class OsgoodeConnector(BaseConnector): | ||
| 74 | 66 | except Exception: |
| 75 | 67 | continue |
| 76 | 68 | soup = BeautifulSoup(html, "html.parser") |
| 77 | − for card in soup.select("li.property-box"): | |
| 69 | + # [class*=…] : rendu Scrapfly = cartes encore property-box-hidden | |
| 70 | + for card in soup.select('li[class*="property-box"]'): | |
| 78 | 71 | try: |
| 79 | 72 | a = card.select_one("a[href*='/apartments/qc/']") |
| 80 | 73 | if not a: |
modified
louka/connectors/realstar.py
+20 −32
@@ -3,7 +3,7 @@ | ||
| 3 | 3 | # Auteur : Simon-Pierre Boucher — contact@spboucher.ai |
| 4 | 4 | # connectors/realstar.py : connecteur Realstar (realstar.ca) |
| 5 | 5 | # Site protégé par Cloudflare (403 pour les robots) et rendu côté client |
| 6 | −# (moteur RentCafe/Yardi) : tout passe par Firecrawl avec attente de rendu. | |
| 6 | +# (moteur RentCafe/Yardi) : tout passe par le rendu Scrapfly avec attente (ex-Firecrawl). | |
| 7 | 7 | # 1) /searchlisting?province=Quebec -> cartes propriétés (nom, adresse, |
| 8 | 8 | # lits/sdb/pi², fourchette de prix, téléphone, vignette) ; |
| 9 | 9 | # 2) fiche de chaque propriété couverte (Grand Montréal, Gatineau, |
@@ -11,7 +11,7 @@ | ||
| 11 | 11 | # 3) fiche /floorplans -> plans structurés (type, chambres, pi², prix, |
| 12 | 12 | # nombre d'unités disponibles) — disponibilité et prix réels. |
| 13 | 13 | # Une annonce par propriété (uid stables). Les pages détail passent par |
| 14 | −# self.detail(...) (cache BD) : Firecrawl n'est rappelé que si la carte | |
| 14 | +# self.detail(...) (cache BD) : le rendu n'est rappelé que si la carte | |
| 15 | 15 | # liste a changé. |
| 16 | 16 | # Expansion Ontario 2026-08 — gaté LOUKA_ONTARIO : quand LOUKA_ONTARIO=1, |
| 17 | 17 | # un rendu supplémentaire de ?province=Ontario alimente les cartes |
@@ -25,12 +25,11 @@ from __future__ import annotations | ||
| 25 | 25 | import hashlib |
| 26 | 26 | import os |
| 27 | 27 | import re |
| 28 | −import time | |
| 29 | 28 | |
| 30 | 29 | from bs4 import BeautifulSoup |
| 31 | 30 | |
| 32 | 31 | from ..schema import Listing, parse_price |
| 33 | −from .base import FIRECRAWL_API, BaseConnector | |
| 32 | +from .base import BaseConnector | |
| 34 | 33 | |
| 35 | 34 | # Expansion Ontario 2026-08 — gate d'environnement (défaut : QC seulement) |
| 36 | 35 | _ONTARIO = os.environ.get("LOUKA_ONTARIO") == "1" |
@@ -86,50 +85,39 @@ _PRICE_RE = re.compile(r"\$[\d,]+(?:\.\d{2})?") | ||
| 86 | 85 | |
| 87 | 86 | |
| 88 | 87 | class _BudgetReached(Exception): |
| 89 | − """Plafond de requêtes Firecrawl atteint pour cette synchronisation.""" | |
| 88 | + """Plafond de rendus atteint pour cette synchronisation.""" | |
| 90 | 89 | |
| 91 | 90 | |
| 92 | 91 | class RealstarConnector(BaseConnector): |
| 93 | 92 | source_id = "realstar" |
| 94 | 93 | request_delay = 1.0 |
| 95 | − max_properties = 12 # garde-fou (2 appels Firecrawl par propriété) | |
| 94 | + max_properties = 12 # garde-fou (2 rendus par propriété) | |
| 96 | 95 | max_images = 25 |
| 97 | − max_renders = 20 # plafond d'appels Firecrawl par sync (hors cache) | |
| 96 | + max_renders = 20 # plafond de rendus par sync (hors cache) | |
| 98 | 97 | # Expansion Ontario 2026-08 (gaté LOUKA_ONTARIO) : plafonds séparés pour |
| 99 | 98 | # ne jamais entamer le budget QC |
| 100 | 99 | max_properties_on = 12 |
| 101 | 100 | max_renders_on = 24 |
| 102 | 101 | |
| 103 | − # -- Firecrawl avec attente de rendu (SPA + Cloudflare) ------------------- | |
| 102 | + # -- rendu JS avec attente (SPA + Cloudflare) — Scrapfly ------------------- | |
| 103 | + # (migré de Firecrawl le 2026-08-27 ; le retry court sur 5xx/vide, hérité | |
| 104 | + # du fix realstar du 2026-08-27, vit désormais dans | |
| 105 | + # BaseConnector.get_rendered, que les fixtures monkeypatchent) | |
| 104 | 106 | def _rendered(self, url: str, wait_ms: int = 9000) -> str: |
| 105 | − # Clé absente : on tente quand même (le rejeu des fixtures intercepte | |
| 106 | − # self.session ; en direct, Firecrawl répondra 401 -> erreur claire). | |
| 107 | − key = os.environ.get("FIRECRAWL_API_KEY", "") | |
| 108 | − # Firecrawl renvoie parfois un 502 transitoire (2026-08-21 et | |
| 109 | − # 2026-08-27) : un retry court évite de faire tomber tout le sync. | |
| 110 | − for attempt in range(3): | |
| 111 | − # via self.session : l'enregistreur de fixtures capture la réponse | |
| 112 | − resp = self.session.post( | |
| 113 | − FIRECRAWL_API, | |
| 114 | − json={"url": url, "formats": ["html"], "waitFor": wait_ms}, | |
| 115 | − headers={"Authorization": f"Bearer {key}"}, | |
| 116 | − timeout=150, | |
| 117 | − ) | |
| 118 | − if resp.status_code >= 500 and attempt < 2: | |
| 119 | − time.sleep(5 * (attempt + 1)) | |
| 120 | − continue | |
| 121 | − resp.raise_for_status() | |
| 122 | − return (resp.json().get("data") or {}).get("html", "") | |
| 107 | + return self.get_rendered(url, wait_ms) | |
| 123 | 108 | |
| 124 | 109 | def fetch(self) -> list[Listing]: |
| 125 | 110 | self._renders = 0 |
| 126 | 111 | html = self._rendered(SEARCH_URL, 10000) |
| 127 | 112 | soup = BeautifulSoup(html, "html.parser") |
| 128 | − cards = soup.select("li.property-box") | |
| 113 | + # [class*=…] : le rendu Scrapfly capture le DOM avant que le JS | |
| 114 | + # RentCafe ne révèle les cartes (property-box-hidden) — les cartes | |
| 115 | + # cachées sont complètes, le filtre QC en aval fait le tri | |
| 116 | + cards = soup.select('li[class*="property-box"]') | |
| 129 | 117 | if not cards: # rendu incomplet : une seconde chance |
| 130 | 118 | html = self._rendered(SEARCH_URL, 15000) |
| 131 | 119 | soup = BeautifulSoup(html, "html.parser") |
| 132 | − cards = soup.select("li.property-box") | |
| 120 | + cards = soup.select('li[class*="property-box"]') | |
| 133 | 121 | |
| 134 | 122 | listings: list[Listing] = [] |
| 135 | 123 | seen: set[str] = set() |
@@ -173,11 +161,11 @@ class RealstarConnector(BaseConnector): | ||
| 173 | 161 | self.max_renders = self._renders + self.max_renders_on |
| 174 | 162 | html = self._rendered(ON_SEARCH_URL, 12000) |
| 175 | 163 | soup = BeautifulSoup(html, "html.parser") |
| 176 | − cards = soup.select("li.property-box") | |
| 164 | + cards = soup.select('li[class*="property-box"]') | |
| 177 | 165 | if not cards: # rendu incomplet : une seconde chance |
| 178 | 166 | html = self._rendered(ON_SEARCH_URL, 15000) |
| 179 | 167 | soup = BeautifulSoup(html, "html.parser") |
| 180 | − cards = soup.select("li.property-box") | |
| 168 | + cards = soup.select('li[class*="property-box"]') | |
| 181 | 169 | |
| 182 | 170 | listings: list[Listing] = [] |
| 183 | 171 | count = 0 |
@@ -277,7 +265,7 @@ class RealstarConnector(BaseConnector): | ||
| 277 | 265 | if img and img.get("src"): |
| 278 | 266 | images.append(img["src"]) |
| 279 | 267 | |
| 280 | − # Pages détail (fiche + plans) via cache BD : Firecrawl seulement si la | |
| 268 | + # Pages détail (fiche + plans) via cache BD : rendu seulement si la | |
| 281 | 269 | # carte liste a changé (prix/dispo inclus dans le hash). |
| 282 | 270 | key = hashlib.sha1( |
| 283 | 271 | f"{name}|{address}|{beds}|{baths}|{sqft}|{price_label}" |
@@ -362,7 +350,7 @@ class RealstarConnector(BaseConnector): | ||
| 362 | 350 | |
| 363 | 351 | # -- pages détail (fiche propriété + plans) -------------------------------- |
| 364 | 352 | def _fetch_detail(self, url: str) -> dict: |
| 365 | − """2 rendus Firecrawl : fiche (photos, description, points forts) et | |
| 353 | + """2 rendus Scrapfly : fiche (photos, description, points forts) et | |
| 366 | 354 | /floorplans (plans structurés). Appelé seulement hors cache.""" |
| 367 | 355 | if self._renders + 2 > self.max_renders: |
| 368 | 356 | raise _BudgetReached() |
modified
louka/connectors/via_capitale.py
+5 −2
@@ -3,7 +3,7 @@ | ||
| 3 | 3 | # Auteur : Simon-Pierre Boucher — contact@spboucher.ai |
| 4 | 4 | # connectors/via_capitale.py : Via Capitale (viacapitalevendu.com) — LOCATIONS |
| 5 | 5 | # Bannière 100 % québécoise (Bridgemarq). Le site est rendu serveur (ASP.NET) |
| 6 | −# mais protégé par Cloudflare : on passe par Firecrawl (get_rendered) qui | |
| 6 | +# mais protégé par Cloudflare : on passe par le rendu Scrapfly (get_rendered, ex-Firecrawl) qui | |
| 7 | 7 | # franchit le challenge — testé : Scrapfly ASP passe Cloudflare mais ne rend |
| 8 | 8 | # pas les cartes. La recherche accepte un blob base64 `criteresJson` ; |
| 9 | 9 | # « AVendre »: false y bascule le même moteur en mode LOCATION (prix |
@@ -61,7 +61,10 @@ CRITERES_JSON = base64.b64encode( | ||
| 61 | 61 | IMG_HOST = "https://images.viacapitale.info" |
| 62 | 62 | |
| 63 | 63 | # Un bloc-carte commence à un lien vers une fiche d'inscription horodatée |
| 64 | −CARD_SPLIT = re.compile(r'<a href="(https://www\.viacapitalevendu\.com/[^"]*?-(\d{6,}))"') | |
| 64 | +# le rendu Scrapfly sérialise les hrefs en RELATIF (Firecrawl donnait | |
| 65 | +# l'absolu) : on accepte les deux formes, groupe 1 = chemin relatif | |
| 66 | +CARD_SPLIT = re.compile( | |
| 67 | + r'<a href="(?:https://www\.viacapitalevendu\.com)?(/[^"]*?-(\d{6,}))"') | |
| 65 | 68 | PRICE_RE = re.compile(r'class="price">\s*([\d ]+\$\s*/\s*mois)', re.I) |
| 66 | 69 | ADDR_RE = re.compile(r'addressListe[^>]*>\s*<a[^>]*title="([^"]+)"', re.I) |
| 67 | 70 | IMG_RE = re.compile(r'images\.viacapitale\.info/images/inscriptions/(\d+)/([^"?)\s]+)', re.I) |
modified
louka/fixtures.py
+5 −4
@@ -106,11 +106,12 @@ def record(source_id: str) -> dict: | ||
| 106 | 106 | inst.session.mount("https://", adapter) |
| 107 | 107 | inst.session.mount("http://", adapter) |
| 108 | 108 | |
| 109 | − # get_rendered (Firecrawl) : enregistrer le HTML rendu, clé = URL cible | |
| 109 | + # get_rendered (Scrapfly render_js) : enregistrer le HTML rendu, clé = URL | |
| 110 | + # cible (les args supplémentaires — wait_ms — n'entrent pas dans la clé) | |
| 110 | 111 | orig_rendered = inst.get_rendered |
| 111 | 112 | |
| 112 | − def _rec_rendered(url: str) -> str: | |
| 113 | − html = orig_rendered(url) | |
| 113 | + def _rec_rendered(url: str, *args, **kw) -> str: | |
| 114 | + html = orig_rendered(url, *args, **kw) | |
| 114 | 115 | key = _req_key("RENDERED", url, None) |
| 115 | 116 | fname = key + ".html" |
| 116 | 117 | (out_dir / fname).write_text( |
@@ -193,7 +194,7 @@ def replay_connector(source_id: str): | ||
| 193 | 194 | inst.session.mount("https://", adapter) |
| 194 | 195 | inst.session.mount("http://", adapter) |
| 195 | 196 | |
| 196 | − def _replay_rendered(url: str) -> str: | |
| 197 | + def _replay_rendered(url: str, *args, **kw) -> str: | |
| 197 | 198 | key = _req_key("RENDERED", url, None) |
| 198 | 199 | meta = index.get(key) |
| 199 | 200 | if meta is None: |
modified
scripts/gen_connector_docs.py
+4 −5
@@ -147,8 +147,9 @@ def detect_backends(text: str) -> tuple[list[str], str]: | ||
| 147 | 147 | detailed.append("Scrapfly (asp + render_js — contournement anti-bot)") |
| 148 | 148 | family = "Scrapfly" |
| 149 | 149 | if "get_rendered(" in text: |
| 150 | − detailed.append("Firecrawl (HTML rendu, JavaScript exécuté)") | |
| 151 | − family = "Firecrawl" if family == "direct" else family | |
| 150 | + detailed.append("Scrapfly render_js (HTML rendu, JavaScript exécuté" | |
| 151 | + " — ex-Firecrawl, migré 2026-08-27)") | |
| 152 | + family = "Scrapfly" if family == "direct" else family | |
| 152 | 153 | if not detailed: |
| 153 | 154 | detailed.append("requests direct") |
| 154 | 155 | return detailed, family |
@@ -388,9 +389,7 @@ def render_fiche(entry: dict, reg: list[dict], stats: dict, now: str) -> str: | ||
| 388 | 389 | + " · ".join(entry["urls"])) |
| 389 | 390 | out.append("- **Authentification** : aucune — contenu public" |
| 390 | 391 | + (" (clé Scrapfly côté Lou-Ka)" if entry["backend_family"] == |
| 391 | − "Scrapfly" else | |
| 392 | − " (clé Firecrawl côté Lou-Ka)" if entry["backend_family"] == | |
| 393 | − "Firecrawl" else "")) | |
| 392 | + "Scrapfly" else "")) | |
| 394 | 393 | out.append(f"- **Pagination** : {entry['pagination']}") |
| 395 | 394 | out.append(f"- **Backend anti-bot / rendu** : {' ; '.join(entry['backends'])}") |
| 396 | 395 | out.append(f"- **Politesse** : {entry['request_delay']} s entre requêtes, " |
added
tests/fixtures/aalto/0bc5771aff1ef3d625fa.html
+6445 −0
@@ -0,0 +1,6445 @@ | ||
| 1 | +<html lang="fr-ca" style="--helpwidget-bottom-offset: 77px;"><head> | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | +<meta charset="utf-8"> | |
| 6 | +<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| 7 | +<meta name="viewport" content="width=device-width, initial-scale=1.0 "> | |
| 8 | + <title>Floor Plans of Aalto in Gatineau, QC</title> | |
| 9 | + <meta name="description" content="Check for available units at Aalto in Gatineau, QC. View floor plans, photos, and community amenities. Make Aalto your new home."> | |
| 10 | + <meta name="referrer" content="always"> | |
| 11 | + <meta name="keywords" content="apartments, rentals, apartment guide, apartment finder, apartment search, apartment locator, apartments for rent, apartment listings"> | |
| 12 | + <meta name="author" content="Aalto"> | |
| 13 | + <link rel="canonical" href="https://www.aaltosuites.ca/floorplans"> | |
| 14 | + | |
| 15 | + | |
| 16 | + <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin=""> | |
| 17 | + <link rel="preconnect" href="https://resource.rentcafe.com"> | |
| 18 | + | |
| 19 | + | |
| 20 | +<link rel="preload" href="https://cdngeneralmvc.rentcafe.com/common/scss/fontawesome/webfonts/ysi-fa-solid.woff2" as="font" type="font/woff2" crossorigin="anonymous"> | |
| 21 | + | |
| 22 | + <meta name="theme-color" content="#999"> | |
| 23 | + <link href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,w_152,h_152/s3/2/144684/favicon (1).png" rel="apple-touch-icon"> | |
| 24 | + <link rel="manifest" href="/manifest.json"> | |
| 25 | + <link href="https://resource.rentcafe.com/image/upload/q_auto,f_auto/s3/2/144684/favicon (1).ico" type="image/x-icon" rel="shortcut icon"> | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | +<!-- Google Tag Manager --> | |
| 36 | +<script async="" src="https://www.googletagmanager.com/gtm.js?id=GTM-M9CFHKM"></script><script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': | |
| 37 | +new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], | |
| 38 | +j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= | |
| 39 | +'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); | |
| 40 | +})(window,document,'script','dataLayer','GTM-M9CFHKM');</script> | |
| 41 | +<!-- End Google Tag Manager --> | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + <link href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/ritz.558563.134322940780000000.css" rel="stylesheet" type="text/css" id="mainCSS"> | |
| 49 | +<link href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/photogallery-default-widget.558563.134322940780000000.css" rel="stylesheet" type="text/css"> | |
| 50 | + | |
| 51 | + <link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap" rel="stylesheet" media="all" onload="this.media='all'"> | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + <script>window.ysi={callbacks:[],registerCallback:function(i){"function"==typeof i&&this.callbacks.push(i)},init:function(){ysi.MQBreakpointListener&&ysi.MQBreakpointListener.init(),ysi.main();for(var i=0;i<ysi.callbacks.length;i++)ysi.callbacks[i]();ysi.smartclasses&&ysi.smartclasses.init()},main:function(){}},document.addEventListener("DOMContentLoaded",function(i){window.location.pathname.indexOf("/index")>-1&&history.replaceState(null,"",window.location.pathname.replace("index","")+window.location.search),ysi.init()});</script> | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | +<script>window.ysi.Regextranslations= { 'regex': {"(\\d+) Sq. Ft.":"$1 pc","$ (\\d+)":"$1 $","-(\\d+) Sqft":"$1 pc","(\\d+) Sq. Ft":"$1 pc","(\\d+),(\\d+) Sq. Ft.":"$1,$2 pc","$(\\d),(\\d+)":"$1 $2 $","(\\d+) February, (\\d+)":"$1 février, $2","(\\d+) January, (\\d+)":"$1 janvier, $2","(\\d+) July, (\\d+)":"$1 juillet, $2","(\\d+) June, (\\d+)":"$1 juin, $2","(\\d+) March, (\\d+)":"$1 mars, $2","(\\d+) May, (\\d+)":"$1 mai, $2","(\\d+) November, (\\d+)":"$1 novembre, $2","(\\d+) October, (\\d+)":"$1 octobre, $2","(\\d+) September, (\\d+)":"$1 septembre, $2","April (\\d+), (\\d+)":"$1 avril, $2","August (\\d+), (\\d+)":"$1 août, $2","December (\\d+), (\\d+)":"$1 décembre, $2","February (\\d+), (\\d+)":"$1 février, $2","January (\\d+), (\\d+)":"$1 janvier, $2","July (\\d+), (\\d+)":"$1 juillet, $2","June (\\d+), (\\d+)":"$1 juin, $2","March (\\d+), (\\d+)":"$1 mars, $2","October (\\d+), (\\d+)":"$1 octobre, $2","May (\\d+), (\\d+)":"$1 mai, $2","September (\\d+), (\\d+)":"$1 septembre, $2","November (\\d+), (\\d+)":"$1 novembre, $2","Your username/email (\\w+) does not match our record (\\w+). Please update your profile to sync them.":"Votre nom d’utilisateur/adresse électronique $1 ne correspond pas à notre dossier $2. Veuillez mettre à jour votre profil pour les synchroniser.","You have successfully opted out of email notifications for community announcements, calendar events, and marketing campaigns from (\\w+).":"Vous avez choisi de ne pas recevoir de notifications par courriel pour les annonces de la communauté, les événements du calendrier et les campagnes de marketing de $1.","(\\d+) Beds":"$1 Chambres","(\\d+) Beds (\\d+) Bath":"$1 Chambres $2 Salle de bains","(\\d+) Beds (\\d+) Bathroom":"$1 Chambres $2 Salle de bains","(\\d+) Beds (\\d+) Bathrooms":"$1 Chambres $2 Salles de bains","The waitlist application fee is €(\\d+) and you are able to make this payment online using our online payment system and complete your application.":"Les frais de demande d'inscription sur la liste d'attente sont de $1 dollars et vous pouvez effectuer ce paiement en ligne en utilisant notre système de paiement en ligne et compléter votre demande.","Tenant Code #(\\d+)":"N° de code du locataire $1","Unit #(\\d+)":"N° d’unité $1","Your account balance is (\\d+) and your payment amount is (\\d+). Are you sure you want to pay extra amount?":"Le solde de votre compte est de $1 et le montant de votre paiement est de $2. Êtes-vous sûr de vouloir payer un montant supplémentaire?","Fri (\\d+) January":"Vendredi le $1 janvier","Fri (\\d+) July":"Vendredi le $1 juillet","Fri (\\d+) June":"Vendredi le $1 juin","Fri (\\d+) March":"Vendredi le $1 mars","Fri (\\d+) May":"Vendredi le $1 mai","Fri (\\d+) November":"Vendredi le $1 novembre","Fri (\\d+) October":"Vendredi le $1 octobre","Fri (\\d+) September":"Vendredi le $1 septembre","Friday, Apr (\\d+), (\\d+)":"Vendredi, le $1 avril, $2","Friday, Aug (\\d+), (\\d+)":"Vendredi, le $1 août, $2","Friday, Dec (\\d+), (\\d+)":"Vendredi, le $1 décembre, $2","Friday, Feb (\\d+), (\\d+)":"Vendredi, le $1 février, $2","Friday, Jan (\\d+), (\\d+)":"Vendredi, le $1 janvier, $2","Friday, Jul (\\d+), (\\d+)":"Vendredi, le $1 juillet, $2","Friday, Jun (\\d+), (\\d+)":"Vendredi, le $1 juin, $2","Friday, Mar (\\d+), (\\d+)":"Vendredi, le $1 mars, $2","Friday, May (\\d+), (\\d+)":"Vendredi, le $1 mai, $2","Friday, Nov (\\d+), (\\d+)":"Vendredi, le $1 novembre, $2","Friday, Oct (\\d+), (\\d+)":"Vendredi, le $1 octobre, $2","Friday, Sep (\\d+), (\\d+)":"Vendredi, le $1 septembre, $2","Hi (\\w+)":"Bonjour $1","Hi, (\\w+)":"Bonjour, $1","Important Messages for (\\w+)":"Messages importants pour $1","Jan (\\d+) — (\\d+) (\\d+)":"$1 janvier— $2 $3","January (\\d+)":"$1 janvier","Jul (\\d+) — (\\d+) (\\d+)":"$1 juillet — $2 $3","July (\\d+)":"$1 juillet","Jun (\\d+) — (\\d+) (\\d+)":"$1 juin — $2 $3","June (\\d+)":"$1 juin","Mar (\\d+) — (\\d+) (\\d+)":"$1 mars — $2 $3","March (\\d+)":"$1 mars","May (\\d+)":"$1 mai","May (\\d+) — (\\d+) (\\d+)":"$1 mai — $2 $3","Mon (\\d+) April":"Lundi le $1 avril","Mon (\\d+) August":"Lundi le $1 août","Mon (\\d+) December":"Lundi le $1 décembre","Mon (\\d+) February":"Lundi le $1 février","Mon (\\d+) January":"Lundi le $1 janvier","Mon (\\d+) July":"Lundi le $1 juillet","Mon (\\d+) June":"Lundi le $1 juin","Mon (\\d+) March":"Lundi le $1 mars","Mon (\\d+) May":"Lundi le $1 mai","Mon (\\d+) November":"Lundi le $1 novembre","Mon (\\d+) October":"Lundi le $1 octobre","Mon (\\d+) September":"Lundi le $1 septembre","Monday, Apr (\\d+), (\\d+)":"Lundi, le $1 avril, $2","Monday, Aug (\\d+), (\\d+)":"Lundi, le $1 août, $2","Monday, Dec (\\d+), (\\d+)":"Lundi, le $1 décembre, $2","Monday, Feb (\\d+), (\\d+)":"Lundi, le $1 février, $2","Monday, Jan (\\d+), (\\d+)":"Lundi, le $1 janvier, $2","Monday, Jul (\\d+), (\\d+)":"Lundi, le $1 juillet, $2","Sun (\\d+) December":"Dimanche le $1 décembre","Sun (\\d+) February":"Dimanche le $1 février","Sun (\\d+) January":"Dimanche le $1 janvier","Sun (\\d+) July":"Dimanche le $1 juillet","Sun (\\d+) June":"Dimanche le $1 juin","Sun (\\d+) March":"Dimanche le $1 mars","Sun (\\d+) May":"Dimanche le $1 mai","Sun (\\d+) November":"Dimanche le $1 novembre","Sun (\\d+) October":"Dimanche le $1 octobre","Sun (\\d+) September":"Dimanche le $1 septembre","Sunday, Apr (\\d+), (\\d+)":"Dimanche, le $1 avril, $2","Sunday, Aug (\\d+), (\\d+)":"Dimanche, le $1 août, $2","Sunday, Dec (\\d+), (\\d+)":"Dimanche, le $1 décembre, $2","Sunday, Feb (\\d+), (\\d+)":"Dimanche, le $1 février, $2","Sunday, Jan (\\d+), (\\d+)":"Dimanche, le $1 janvier, $2","Sunday, Jul (\\d+), (\\d+)":"Dimanche, le $1 juillet, $2","Sunday, Jun (\\d+), (\\d+)":"Dimanche, le $1 juin, $2","Sunday, Mar (\\d+), (\\d+)":"Dimanche, le $1 mars, $2","Sunday, May (\\d+), (\\d+)":"Dimanche, le $1 mai, $2","Sunday, Nov (\\d+), (\\d+)":"Dimanche, le $1 novembre, $2","Sunday, Oct (\\d+), (\\d+)":"Dimanche, le $1 octobre, $2","Sunday, Sep (\\d+), (\\d+)":"Dimanche, le $1 septembre, $2","Tenant Code (\\d+)":"Code du locataire $1","The waitlist application fee is € (\\d+) and you are able to make this payment online using our online payment system and complete your application.":"Les frais de demande d'inscription sur la liste d'attente sont de $1 dollars et vous pouvez effectuer ce paiement en ligne en utilisant notre système de paiement en ligne et compléter votre demande.","There was a problem sending the verification email, please call the help desk at (\\d+).":"Il y a eu un problème lors de l'envoi du courriel de vérification, veuillez appeler le service de soutien au $1.","Thu (\\d+) April":"Jeudi le $1 avril","Thu (\\d+) August":"Jeudi le $1 août","Thu (\\d+) December":"Jeudi le $1 décembre","Thu (\\d+) February":"Jeudi le $1 février","Thu (\\d+) January":"Jeudi le $1 janvier","Thu (\\d+) July":"Jeudi le $1 juillet","Thu (\\d+) June":"Jeudi le $1 juin","Thu (\\d+) March":"Jeudi le $1 mars","Thu (\\d+) May":"Jeudi le $1 mai","Thu (\\d+) November":"Jeudi le $1 novembre","Thu (\\d+) October":"Jeudi le $1 octobre","Thu (\\d+) September":"Jeudi le $1 septembre","Thursday, Apr (\\d+), (\\d+)":"Jeudi, le $1 avril, $2","Thursday, Aug (\\d+), (\\d+)":"Jeudi, le $1 août, $2","Wed (\\d+) November":"Mercredi le $1 novembre","Wed (\\d+) October":"Mercredi le $1 octobre","Wed (\\d+) September":"Mercredi le $1 septembre","Wednesday, Apr (\\d+), (\\d+)":"Mercredi, le $1 avril, $2","Wednesday, Aug (\\d+), (\\d+)":"Mercredi, le $1 août, $2","Wednesday, Dec (\\d+), (\\d+)":"Mercredi, le $1 décembre, $2","Wednesday, Feb (\\d+), (\\d+)":"Mercredi, le $1 février, $2","Wednesday, Jan (\\d+), (\\d+)":"Mercredi, le $1 janvier, $2","Wednesday, Jul (\\d+), (\\d+)":"Mercredi, le $1 juillet, $2","Wednesday, Jun (\\d+), (\\d+)":"Mercredi, le $1 juin, $2","Wednesday, Mar (\\d+), (\\d+)":"Mercredi, le $1 mars, $2","Wednesday, May (\\d+), (\\d+)":"Mercredi, le $1 mai, $2","Wednesday, Nov (\\d+), (\\d+)":"Mercredi, le $1 novembre, $2","Wednesday, Oct (\\d+), (\\d+)":"Mercredi, le $1 octobre, $2","Wednesday, Sep (\\d+), (\\d+)":"Mercredi, le $1 septembre, $2","Welcome to (\\w+).":"Bienvenue à $1.","You have (\\d+) activity":"Vous avez $1 activité","You have (\\d+) new Notification":"Vous avez $1 nouvelle notification","You have (\\d+) new Notifications":"Vous avez $1 nouvelles notifications","Your payment was successful! A confirmation email has been sent to (\\w+).":"Votre paiement a réussi! Un courriel de confirmation a été envoyé à $1.","- Spouse to (\\w+)":"- Conjoint de $1","(\\w+) says":"$1 dit","Monday, (\\d+) Dec, (\\d+)":"Lundi, le $1 décembre, $2","Feb (\\d+) — Mar (\\d+) (\\d+)":"$1 février — $2 mars $3","Tuesday, (\\d+) May, (\\d+)":"Mardi, le $1 mai, $2","Thursday, (\\d+) Nov, (\\d+)":"Jeudi, le $1 novembre, $2","Saturday, (\\d+) Aug, (\\d+)":"Samedi, le $1 août, $2","Tuesday, (\\d+) Jul, (\\d+)":"Mardi, le $1 juillet, $2","Friday, (\\d+) Aug, (\\d+)":"Vendredi, le $1 août, $2","Monday, (\\d+) Mar, (\\d+)":"Lundi, le $1 mars, $2","Friday, (\\d+) Mar, (\\d+)":"Vendredi, le $1 mars, $2","Jan (\\d+) — Feb (\\d+) (\\d+)":"$1 janvier — $2 février $3","Friday, (\\d+) Sep, (\\d+)":"Vendredi, le $1 septembre, $2","Wednesday, (\\d+) Oct, (\\d+)":"Mercredi, le $1 octobre, $2","Apr (\\d+) — May (\\d+) (\\d+)":"$1 avril — $2 mai $3","Wednesday, (\\d+) Feb, (\\d+)":"Mercredi, le $1 février, $2","Thursday, (\\d+) Jan, (\\d+)":"Jeudi, le $1 janvier, $2","Thursday, (\\d+) Mar, (\\d+)":"Jeudi, le $1 mars, $2","Tuesday, (\\d+) Mar, (\\d+)":"Mardi, le $1 mars, $2","Jul (\\d+) — Aug (\\d+) (\\d+)":"$1 juillet — $2 août $3","Wednesday, (\\d+) Mar, (\\d+)":"Mercredi, le $1 mars, $2","Tuesday, (\\d+) Apr, (\\d+)":"Mardi, le $1 avril, $2","Saturday, (\\d+) Jan, (\\d+)":"Samedi, le $1 janvier, $2","Wednesday, (\\d+) Sep, (\\d+)":"Mercredi, le $1 septembre, $2","Sunday, (\\d+) Jul, (\\d+)":"Dimanche, le $1 juillet, $2","Sunday, (\\d+) Sep, (\\d+)":"Dimanche, le $1 septembre, $2","Friday, (\\d+) Jul, (\\d+)":"Vendredi, le $1 juillet, $2","Monday, (\\d+) Sep, (\\d+)":"Lundi, le $1 septembre, $2","Tuesday, (\\d+) Sep, (\\d+)":"Mardi, le $1 septembre, $2","Sunday, (\\d+) Jan, (\\d+)":"Dimanche, le $1 janvier, $2","Sunday, (\\d+) Jun, (\\d+)":"Dimanche, le $1 juin, $2","Saturday, (\\d+) Jun, (\\d+)":"Samedi, le $1 juin, $2","May (\\d+) — Jun (\\d+) (\\d+)":"$1 mai — $2 juin $3","Monday, (\\d+) Apr, (\\d+)":"Lundi, le $1 avril, $2","Thursday, (\\d+) Aug, (\\d+)":"Jeudi, le $1 août, $2","Thursday, (\\d+) Sep, (\\d+)":"Jeudi, le $1 septembre, $2","Wednesday, (\\d+) Nov, (\\d+)":"Mercredi, le $1 novembre, $2","Saturday, (\\d+) Apr, (\\d+)":"Samedi, le $1 avril, $2","Oct (\\d+) — Nov (\\d+) (\\d+)":"$1 octobre — $2 novembre $3","Monday, (\\d+) Jan, (\\d+)":"Lundi, le $1 janvier, $2","Monday, (\\d+) May, (\\d+)":"Lundi, le $1 mai, $2","Saturday, (\\d+) May, (\\d+)":"Samedi, le $1 mai, $2","Thursday, (\\d+) Dec, (\\d+)":"Jeudi, le $1 décembre, $2","Saturday, (\\d+) Sep, (\\d+)":"Samedi, le $1 septembre, $2","Tuesday, (\\d+) Jan, (\\d+)":"Mardi, le $1 janvier, $2","Wednesday, (\\d+) Jul, (\\d+)":"Mercredi, le $1 juillet, $2","Wednesday, (\\d+) Dec, (\\d+)":"Mercredi, le $1 décembre, $2","Sunday, (\\d+) Feb, (\\d+)":"Dimanche, le $1 février, $2","Tuesday, (\\d+) Nov, (\\d+)":"Mardi, le $1 novembre, $2","Tuesday, (\\d+) Oct, (\\d+)":"Mardi, le $1 octobre, $2","Wednesday, (\\d+) May, (\\d+)":"Mercredi, le $1 mai, $2","Saturday, (\\d+) Dec, (\\d+)":"Samedi, le $1 décembre, $2","Saturday, (\\d+) Feb, (\\d+)":"Samedi, le $1 février, $2","Friday, (\\d+) Oct, (\\d+)":"Vendredi, le $1 octobre, $2","Friday, (\\d+) Jan, (\\d+)":"Vendredi, le $1 janvier, $2","Wednesday, (\\d+) Aug, (\\d+)":"Mercredi, le $1 août, $2","Thursday, (\\d+) Feb, (\\d+)":"Jeudi, le $1 février, $2","Sunday, (\\d+) Dec, (\\d+)":"Dimanche, le $1 décembre, $2","(\\d+) Jul — (\\d+) (\\d+)":"$1 juillet — $2 $3","You have (\\d+) favorite properties saved for this area.":"Vous avez $1 propriétés favorites sauvegardées pour cette région.","(\\d+) Bathroom":"$1 Salle de bains","(\\d+) Bathrooms":"$1 Salles de bains","(\\d+) or (\\d+) bathrooms":"$1 ou $2 salles de bain","(\\d+), (\\d+), or (\\d+) bathrooms":"$1, $2, ou $3 salles de bain","(\\d+), (\\d+), (\\d+), or (\\d+) bathrooms":"$1, $2, $3, ou $4 salles de bain","(\\d+), (\\d+), (\\d+), (\\d+), or (\\d+) bathrooms":"$1, $2, $3, $4, ou $5 salles de bain","Studio or (\\d+) bedrooms":"Studio ou $1 chambres à coucher","Studio or (\\d+) or (\\d+) bedrooms":"Studio ou $1 ou $2 chambres à coucher","Studio or (\\d+), (\\d+) or (\\d+) bedrooms":"Studio ou $1, $2 ou $3 chambres à coucher","Studio or (\\d+), (\\d+), (\\d+) or (\\d+) bedrooms":"Studio ou $1, $2, $3 ou $4 chambres à coucher","Studio or (\\d+), (\\d+), (\\d+), (\\d+) or (\\d+) bedrooms":"Studio ou $1, $2, $3, $4 ou $5 chambres à coucher","(\\d+) Bedrooms":"$1 Chambres à coucher","(\\d+) Beds to (\\d+) Beds":"$1 Chambres à $2 chambres","(\\d+) Baths to (\\d+) Baths":"$1 Salles de bains $2 Salles de bains","(\\d+)-(\\d+) Baths":"$1-$2 Salles de bains","(\\d+) a.m.":"$1 du matin","- (\\d+) p.m.":"- $1 du soir","(\\d+) or less":"$1 ou moins","(\\d+) or more":"$1 ou plus","(\\d+) to (\\d+)":"$1 à $2","(\\d+) of (\\d+)":"$1 de $2","(\\d+) results found":"$1 résultats trouvés.","(\\d+) results found.":"$1 résultats trouvés.","Bedrooms: (\\d+)-(\\d+)":"Chambres à coucher : $1-$2","Bathrooms: (\\d+)-(\\d+)":"Salles de bains : $1-$2","Rent: (\\d+) €":"Loyer : $1 $","(\\d+) Yardi Systems, Inc. All Rights Reserved.":"$1 Yardi Systems, Inc. Tous droits réservés.","(\\d+) Available":"$1 disponible","(\\d+), (\\d+) or (\\d+) bathrooms":"$1, $2 ou $3 salles de bain","(\\d+), (\\d+), (\\d+) or (\\d+) bathrooms":"$1, $2, $3 ou $4 salles de bain","(\\d+), (\\d+), (\\d+), (\\d+) or (\\d+) bathrooms":"$1, $2, $3, $4 ou $5 salles de bain","(\\d+) or (\\d+) bedrooms":"$1 ou $2 chambres à coucher","(\\d+), (\\d+) or (\\d+) bedrooms":"$1, $2 ou $3 chambres à coucher","(\\d+), (\\d+), (\\d+) or (\\d+) bedrooms":"$1, $2, $3 ou $4 chambres à coucher","(\\d+), (\\d+), (\\d+), (\\d+) or (\\d+) bedrooms":"$1, $2, $3, $4 ou $5 chambres à coucher","(\\d+) or more sqft":"$1 ou plus de pi²","(\\d+) or less sqft":"$1 ou moins de pi²","(\\d+) to (\\d+) sqft":"$1 à $2 pi²","Call Us at (\\d+)":"Appelez-nous au $1","Deposit: (\\w+) (\\d+)":"Dépôt : $1 $2","Up to (\\d+) Sq.M.":"Jusqu’à $1 m²","Starting at : (\\w+) (\\d+)/Month":"À partir de : $1 $2/mois","(© (\\d+) (\\w+), Inc. All Rights Reserved.)":"(© $1 $2, Inc. Tous droits réservés.)","© (\\d+) (\\w+). All Rights Reserved. | Website Design by RENT":"© $1 $2. Tous Droits Réservés. | Design du site internet par RENT","(\\d+) Sq. Ft. or more":"$1 pi² ou plus","(\\d+) Sq. Ft. or less":"$1 pi² ou moins","(\\d+) to (\\d+) Sq. Ft.":"$1 à $2 pi²","(\\d+) Sq.M. or more":"$1 m² ou plus","(\\d+) to (\\d+) Sq.M.":"$1 à $2 m²","(\\w)+(\\d+) or more":"$1$2 ou plus","(\\w)+(\\d+) or less":"$1$2 ou moins","Available On: (\\d+)":"Disponible le : $1","Studio to (\\d+) Beds":"Studio à $1 chambres","(\\d+) Apartments Available":"$1 appartements disponibles","Start (\\w+) (\\d+)/month":"Mois de début $1 $2","(\\d+) amenities":"$1 commodités","(\\d+) floor plans":"$1 plans d'étages","(\\d+) Sq.M. or less":"$1 m² ou moins","(\\d+),(\\d+) Bathrooms":"$1,$2 Salles de bains","(\\d+),(\\d+) Baths":"$1,$2 Salles de bains","An Applicant for a property located in (\\w+).":"Un demandeur pour une propriété qui se trouve à $1.","Thank you (\\w+).":"Merci $1.","Unit #(\\w+)":"N° d’unité $1","Tenant Code #(\\w+)":"N° de code du locataire $1","(\\d+) April, (\\d+)":"$1 avril, $2","(\\d+) August, (\\d+)":"$1 août, $2","(\\d+) December, (\\d+)":"$1 décembre, $2","Your email address is already associated with a property. You can use that account to manage your information while at eyardi ((\\w+)). Just fill in your password.":"Votre adresse électronique est déjà associée à une propriété. Vous pouvez utiliser ce compte pour gérer vos informations sur eyardi ($1). Il vous suffit de saisir votre mot de passe.","You can use that account to manage your information while at eyardi ((\\w+))":"Vous pouvez utiliser ce compte pour gérer vos renseignements pendant votre séjour chez eyardi ($1)","Your username/email ((\\w+)) does not match our record ((\\w+)). Please update your profile to sync them.":"Votre nom d’utilisateur/adresse électronique ($1) ne correspond pas à notre dossier ($2). Veuillez mettre à jour votre profil pour les synchroniser.","\\((\\d+) Available\\)":"($1 disponible)","((\\d+) comment)":"($1 remarque)","((\\d+) comments)":"($1 remarques)","(\\d+) Available Now":"$1 disponible maintenant","(\\d+) Bath":"$1 Salle de bains","(\\d+) Baths":"$1 Salles de bains","(\\d+) Bed":"$1 Chambre","(\\d+) Bed - (\\d+) Bath":"$1 Chambre - $2 Salle de bains","(\\d+) Bed (\\d+) Bath":"$1 Chambre $2 Salle de bains","(\\d+) Bed (\\d+) Bathroom":"$1 Chambre $2 Salle de bains","(\\d+) Bed (\\d+) Bathrooms":"$1 Chambre $2 Salles de bains","(\\d+) Bed (\\d+) Baths":"$1 Chambre $2 Salles de bains","(\\d+) Bedroom":"$1 Chambre à coucher","(\\d+) Beds (\\d+) Baths":"$1 Chambres $2 Salles de bains","(\\d+) beds/(\\d+) bath":"$1 Chambres/ $2 salle de bains","(\\d+) characters left.":"$1 caractères restants.","(\\d+) characters remaining":"$1 caractères restants","(\\d+) months":"$1 mois","(\\d+) sq.ft":"$1 pi²","(\\d+) sq.M":"$1 m²","(\\d+) sq.M.":"$1 m²","(\\w+) Map":"$1 carte","A Resident in a property located in (\\w+).":"Un résident dans une propriété qui se trouve à $1.","Apr (\\d+) — (\\d+) (\\d+)":"$1 avril — $2 $3","April (\\d+)":"$1 avril","Aug (\\d+) — (\\d+) (\\d+)":"$1 août — $2 $3","August (\\d+)":"$1 août","Be a part of (\\w+)":"Faites partie de $1","By: (\\w+)":"Par : $1","Dec (\\d+) — (\\d+) (\\d+)":"$1 décembre — $2 $3","December (\\d+)":"$1 décembre","Feb (\\d+) — (\\d+) (\\d+)":"$1 février — $2 $3","February (\\d+)":"$1 février","Floor Plan for (\\w+)":"Plan d’étage pour $1","FPA (\\d+)":"$1 FPA","Fri (\\d+) April":"Vendredi le $1 avril","Fri (\\d+) August":"Vendredi le $1 août","Fri (\\d+) December":"Vendredi le $1 décembre","Fri (\\d+) February":"Vendredi le $1 février","Monday, Jun (\\d+), (\\d+)":"Lundi, le $1 juin, $2","Monday, Mar (\\d+), (\\d+)":"Lundi, le $1 mars, $2","Monday, May (\\d+), (\\d+)":"Lundi, le $1 mai, $2","Monday, Nov (\\d+), (\\d+)":"Lundi, le $1 novembre, $2","Monday, Oct (\\d+), (\\d+)":"Lundi, le $1 octobre, $2","Monday, Sep (\\d+), (\\d+)":"Lundi, le $1 septembre, $2","near (\\w+)":"près de $1","Nov (\\d+) — (\\d+) (\\d+)":"$1 novembre — $2 $3","November (\\d+)":"$1 novembre","Oct (\\d+) — (\\d+) (\\d+)":"$1 octobre — $2 $3","October (\\d+)":"$1 octobre","Phone: (\\d+)":"Téléphone : $1","Reviews for (\\w+)":"Critiques pour $1","Sat (\\d+) April":"Samedi le $1 avril","Sat (\\d+) August":"Samedi le $1 août","Sat (\\d+) December":"Samedi le $1 décembre","Sat (\\d+) February":"Samedi le $1 février","Sat (\\d+) January":"Samedi le $1 janvier","Sat (\\d+) July":"Samedi le $1 juillet","Sat (\\d+) June":"Samedi le $1 juin","Sat (\\d+) March":"Samedi le $1 mars","Sat (\\d+) May":"Samedi le $1 mai","Sat (\\d+) November":"Samedi le $1 novembre","Sat (\\d+) October":"Samedi le $1 octobre","Sat (\\d+) September":"Samedi le $1 septembre","Saturday, Apr (\\d+), (\\d+)":"Samedi, le $1 avril, $2","Saturday, Aug (\\d+), (\\d+)":"Samedi, le $1 août, $2","Saturday, Dec (\\d+), (\\d+)":"Samedi, le $1 décembre, $2","Saturday, Feb (\\d+), (\\d+)":"Samedi, le $1 février, $2","Saturday, Jan (\\d+), (\\d+)":"Samedi, le $1janvier, $2","Saturday, Jul (\\d+), (\\d+)":"Samedi, le $1 juillet, $2","Saturday, Jun (\\d+), (\\d+)":"Samedi, le $1 juin, $2","Saturday, Mar (\\d+), (\\d+)":"Samedi, le $1 mars, $2","Saturday, May (\\d+), (\\d+)":"Samedi, le $1 mai, $2","Saturday, Nov (\\d+), (\\d+)":"Samedi, le $1 novembre, $2","Saturday, Oct (\\d+), (\\d+)":"Samedi, le $1 octobre, $2","Saturday, Sep (\\d+), (\\d+)":"Samedi, le $1 septembre, $2","Select 'Payment Accounts' to add or change your (\\w+).":"Sélectionner « Comptes de paiement » pour ajouter ou modifier vos $1.","Selected (\\d+) Items.":"Sélectionner $1 articles.","Sep (\\d+) — (\\d+) (\\d+)":"$1 septembre — $2 $3","September (\\d+)":"$1 septembre","Showing (\\d+) of (\\d+) entries":"Affichant $1 de $2 entrées","Showing (\\d+) to (\\d+) of (\\d+) entries":"Affichant $1 à $2 de $3 entrées","Sun (\\d+) April":"Dimanche le $1 avril","Sun (\\d+) August":"Dimanche le $1 août","Thursday, Dec (\\d+), (\\d+)":"Jeudi, le $1 décembre, $2","Thursday, Feb (\\d+), (\\d+)":"Jeudi, le $1 février, $2","Thursday, Jan (\\d+), (\\d+)":"Jeudi, le $1 janvier, $2","Thursday, Jul (\\d+), (\\d+)":"Jeudi, le $1 juillet, $2","Thursday, Jun (\\d+), (\\d+)":"Jeudi, le $1 juin, $2","Thursday, Mar (\\d+), (\\d+)":"Jeudi, le $1 mars, $2","Thursday, May (\\d+), (\\d+)":"Jeudi, le $1 mai, $2","Thursday, Nov (\\d+), (\\d+)":"Jeudi, le $1 novembre, $2","Thursday, Oct (\\d+), (\\d+)":"Jeudi, le $1 octobre, $2","Thursday, Sep (\\d+), (\\d+)":"Jeudi, le $1 septembre, $2","Tue (\\d+) April":"Mardi le $1 avril","Tue (\\d+) August":"Mardi le $1 août","Tue (\\d+) December":"Mardi le $1 décembre","Tue (\\d+) February":"Mardi le $1 février","Tue (\\d+) January":"Mardi le $1 janvier","Tue (\\d+) July":"Mardi le $1 juillet","Tue (\\d+) June":"Mardi le $1 juin","Tue (\\d+) March":"Mardi le $1 mars","Tue (\\d+) May":"Mardi le $1 mai","Tue (\\d+) November":"Mardi le $1 novembre","Tue (\\d+) October":"Mardi le $1 octobre","Tue (\\d+) September":"Mardi le $1 septembre","Tuesday, Apr (\\d+), (\\d+)":"Mardi, le $1 avril, $2","Tuesday, Aug (\\d+), (\\d+)":"Mardi, le $1 août, $2","Tuesday, Dec (\\d+), (\\d+)":"Mardi, le $1 décembre, $2","Tuesday, Feb (\\d+), (\\d+)":"Mardi, le $1 février, $2","Tuesday, Jan (\\d+), (\\d+)":"Mardi, le $1 janvier, $2","Tuesday, Jul (\\d+), (\\d+)":"Mardi, le $1 juillet, $2","Tuesday, Jun (\\d+), (\\d+)":"Mardi, le $1 juin, $2","Tuesday, Mar (\\d+), (\\d+)":"Mardi, le $1 mars, $2","Tuesday, May (\\d+), (\\d+)":"Mardi, le $1 mai, $2","Tuesday, Nov (\\d+), (\\d+)":"Mardi, le $1 novembre, $2","Tuesday, Oct (\\d+), (\\d+)":"Mardi, le $1 octobre, $2","Tuesday, Sep (\\d+), (\\d+)":"Mardi, le $1 septembre, $2","Up to (\\d+)":"Jusqu’à $1","We would love if you become a part of (\\w+).":"Nous serions ravis que vous fassiez partie de $1.","Wed (\\d+) April":"Mercredi le $1 avril","Wed (\\d+) August":"Mercredi le $1 août","Wed (\\d+) December":"Mercredi le $1 décembre","Wed (\\d+) February":"Mercredi le $1 février","Wed (\\d+) January":"Mercredi le $1 janvier","Wed (\\d+) July":"Mercredi le $1 juillet","Wed (\\d+) June":"Mercredi le $1 juin","Wed (\\d+) March":"Mercredi le $1 mars","Wed (\\d+) May":"Mercredi le $1 mai","Tuesday, (\\d+) Dec, (\\d+)":"Mardi, le $1 décembre, $2","Wednesday, (\\d+) Jun, (\\d+)":"Mercredi, le $1 juin, $2","Saturday, (\\d+) Jul, (\\d+)":"Samedi, le $1 juillet, $2","Monday, (\\d+) Aug, (\\d+)":"Lundi, le $1 août, $2","Monday, (\\d+) Feb, (\\d+)":"Lundi, le $1 février, $2","Nov (\\d+) — Dec (\\d+) (\\d+)":"$1 novembre — $2 décembre $3","Saturday, (\\d+) Nov, (\\d+)":"Samedi, le $1 novembre, $2","Tuesday, (\\d+) Aug, (\\d+)":"Mardi, le $1 août, $2","Monday, (\\d+) Jul, (\\d+)":"Lundi, le $1 juillet, $2","Thursday, (\\d+) Oct, (\\d+)":"Jeudi, le $1 octobre, $2","Sunday, (\\d+) Apr, (\\d+)":"Dimanche, le $1 avril, $2","Thursday, (\\d+) Jun, (\\d+)":"Jeudi, le $1 juin, $2","Friday, (\\d+) Dec, (\\d+)":"Vendredi, le $1 décembre, $2","Friday, (\\d+) Feb, (\\d+)":"Vendredi, le $1 février, $2","Friday, (\\d+) May, (\\d+)":"Vendredi, le $1 mai, $2","Sunday, (\\d+) Nov, (\\d+)":"Dimanche, le $1 novembre, $2","Mar (\\d+) — Apr (\\d+) (\\d+)":"$1 mars — $2 avril $3","Friday, (\\d+) Nov, (\\d+)":"Vendredi, le $1 novembre, $2","Wednesday, (\\d+) Jan, (\\d+)":"Mercredi, le $1 janvier, $2","Sep (\\d+) — Oct (\\d+) (\\d+)":"$1 septembre — $2 octobre $3","Saturday, (\\d+) Oct, (\\d+)":"Samedi, le $1 octobre, $2","Dec (\\d+) (\\d+) — Jan (\\d+) (\\d+)":"$1 décembre $2 — $3 janvier $4","Monday, (\\d+) Jun, (\\d+)":"Lundi, le $1 juin, $2","Sunday, (\\d+) May, (\\d+)":"Dimanche, le $1 mai, $2","Aug (\\d+) — Sep (\\d+) (\\d+)":"$1 août — $2 septembre $3","Thursday, (\\d+) Jul, (\\d+)":"Jeudi, le $1 juillet, $2","Tuesday, (\\d+) Feb, (\\d+)":"Mardi, le $1 février, $2","Thursday, (\\d+) May, (\\d+)":"Jeudi, le $1 mai, $2","Saturday, (\\d+) Mar, (\\d+)":"Samedi, le $1 mars, $2","Sunday, (\\d+) Mar, (\\d+)":"Dimanche, le $1 mars, $2","Wednesday, (\\d+) Apr, (\\d+)":"Mercredi, le $1 avril, $2","Tuesday, (\\d+) Jun, (\\d+)":"Mardi, le $1 juin, $2","Sunday, (\\d+) Aug, (\\d+)":"Dimanche, le $1 août, $2","Sunday, (\\d+) Oct, (\\d+)":"Dimanche, le $1 octobre, $2","Monday, (\\d+) Nov, (\\d+)":"Lundi, le $1 novembre, $2","Friday, (\\d+) Jun, (\\d+)":"Vendredi, le $1 juin, $2","Jun (\\d+) — Jul (\\d+) (\\d+)":"$1 juin — $2 juillet $3","Friday, (\\d+) Apr, (\\d+)":"Vendredi, le $1 avril, $2","Monday, (\\d+) Oct, (\\d+)":"Lundi, le $1 octobre, $2","Thursday, (\\d+) Apr, (\\d+)":"Jeudi, le $1 avril, $2","(\\d+) Dec (\\d+) — (\\d+) Jan (\\d+)":"$1 décembre $2 — $3 janvier $4","(\\d+) Dec — (\\d+) (\\d+)":"$1 décembre — $2 $3","(\\d+) Jul — (\\d+) Aug (\\d+)":"$1 juillet — $2 août $3","(\\d+) Apr — (\\d+) (\\d+)":"$1 avril — $2 $3","(\\d+) Nov — (\\d+) Dec (\\d+)":"$1 novembre — $2 décembre $3","(\\d+) Aug — (\\d+) Sep (\\d+)":"$1 août — $2 septembre $3","(\\d+) Apr — (\\d+) May (\\d+)":"$1 avril — $2 mai $3","(\\d+) Jan — (\\d+) Feb (\\d+)":"$1 janvier — $2 février $3","(\\d+) Mar — (\\d+) (\\d+)":"$1 mars — $2 $3","(\\d+) May — (\\d+) (\\d+)":"$1 mai — $2 $3","(\\d+) Jan — (\\d+) (\\d+)":"$1 janvier— $2 $3","(\\d+) Sep — (\\d+) Oct (\\d+)":"$1 septembre — $2 octobre $3","(\\d+) Mar — (\\d+) Apr (\\d+)":"$1 mars — $2 avril $3","(\\d+) Feb — (\\d+) Mar (\\d+)":"$1 février — $2 mars $3","(\\d+) Aug — (\\d+) (\\d+)":"$1 août — $2 $3","(\\d+) May — (\\d+) Jun (\\d+)":"$1 mai — $2 juin $3","(\\d+) Jun — (\\d+) Jul (\\d+)":"$1 juin — $2 juillet $3","(\\d+) Feb — (\\d+) (\\d+)":"$1 février — $2 $3","(\\d+) Oct — (\\d+) Nov (\\d+)":"$1 octobre — $2 novembre $3","(\\d+) Jun — (\\d+) (\\d+)":"$1 juin — $2 $3","(\\d+) Nov — (\\d+) (\\d+)":"$1 novembre — $2 $3","(\\d+) Oct — (\\d+) (\\d+)":"$1 octobre — $2 $3","(\\d+) Sep — (\\d+) (\\d+)":"$1 septembre — $2 $3","Spouse to (\\w+)":"Conjoint de $1","Roommate to (\\w+)":"Colocataire de $1","- Roommate to (\\w+)":"- Colocataire de $1","Your account balance is (\\d+) and your payment amount is (\\d+).":"Le solde de votre compte est de $1 et le montant de votre paiement est de $2.","Showing (\\d+) out of (\\d+) properties.":"Affichant $1 de $2 propriétés","- (\\w)+(\\d+) /Week":"- $1$2 /semaine","- (\\w)+(\\d+) /Month":"- $1$2 /mois","(\\d+)-(\\d+) Beds":"$1-$2 Chambres","(\\d+)-(\\d+) Bedrooms":"$1-$2 Chambres à coucher","((\\d+)) apartments found.":"$1 appartements trouvés.","(\\d+) sqft or more":"$1 pi² ou plus","(\\d+) sqft or less":"$1 pi² ou moins","Up to (\\d+) Sq. Ft.":"Jusqu’à $1 pi²","Source: (\\w+)":"Source : $1","PROPERTIES NEAR (\\w+)":"PROPRIÉTÉS PRÈS DE $1","PROPERTIES NEAR (\\w+) (\\w+)":"PROPRIÉTÉS PRÈS DE $1 $2","PROPERTIES NEAR (\\w+), (\\w+)":"PROPRIÉTÉS PRÈS DE $1, $2","PROPERTIES NEAR (\\w+),(\\w+)":"PROPRIÉTÉS PRÈS DE $1,$2","Website Design by RENTCafe (© (\\d+) (\\w+), Inc. All Rights Reserved.)":"Conception du site Web par RENTCafe (© $1 $2, Inc. Tous droits réservés.)","$(\\d+) deposit":"dépôt de $1 $","((\\d+)) Available":"($1)Disponible","£(\\d+) deposit":"dépôt de $1 £","€(\\d+) deposit":"dépôt de $1 €","(\\d+),(\\d+)-(\\d+),(\\d+) Sqft":"$1,$2-$3,$4 pi²","(\\d+),(\\d+)-(\\d+),(\\d+) Sqm":"$1,$2-$3,$4 m²","(\\d+).(\\d+)-(\\d+).(\\d+) Sqft":"$1,$2-$3,$4 pi²","(\\d+).(\\d+)-(\\d+).(\\d+) Sqm":"$1,$2-$3,$4 m²","(\\d+)-(\\d+) Sqft":"$1-$2 pi²","(\\d+)-(\\d+) Sqm":"$1-$2 m²","(\\d+)-(\\d+),(\\d+) Sqft":"$1-$2,$3 pi²","(\\d+)-(\\d+),(\\d+) Sqm":"$1-$2,$3 m²","(\\d+)-(\\d+).(\\d+) Sqft":"$1-$2,$3 pi²","(\\d+)-(\\d+).(\\d+) Sqm":"$1-$2,$3 m²","zł(\\d+) deposit":"dépôt de $1 zł","See all (\\d+) Photos":"Voir toutes les $1 photos","(\\d+)\\.(\\d+) Sq.M.":"$1.$2 m²","(\\d+)\\.(\\d+) Bathrooms":"$1.$2 Salles de bains","(\\d+),(\\d+) Sq.M.":"$1,$2 m²","(\\d+)\\.(\\d+) Baths":"$1.$2 Salles de bains","(\\d+),(\\d+) Sq. M.":"$1,$2 m²","(\\d+)\\.(\\d+) Sq. Ft.":"$1.$2 Pi²"} };</script><script>window.ysi.translations = {"free wifi in common areas":"WIFI GRATUIT DANS LES ESPACES COMMUNS","aalto amenities":"Commodités Aalto","theatre room":"SALLE DE CINÉMA","games & party room":"Salle de jeux et de réception","outdoor lounge":"ESPACE LOUNGE EXTÉRIEUR","coworking lounge":"Espace de cotravail","outdoor bike tune up & wash station":"STATION EXTÉRIEURE D’ENTRETIEN ET DE LAVAGE POUR VÉLOS","net-zero carbon heating & cooling":"CHAUFFAGE ET CLIMATISATION CARBONEUTRES (ZÉRO ÉMISSION NETTE)","enjoy the lush green spaces and scenic parks at zibi, perfect for relaxation, picnics, and outdoor activities.":"Profitez des espaces verts luxuriants et des parcs pittoresques de Zibi, parfaits pour la détente, les pique-niques et les activités de plein air.","soar across the ottawa river on the world's first interprovincial zip line, connecting gatineau and ottawa for an unforgettable adventure.":"Survolez la rivière des Outaouais sur la première tyrolienne interprovinciale au monde reliant Gatineau et Ottawa pour une aventure inoubliable.","zibi is always bustling with activity, enjoy world-class events like cirque du soleil and igloofest as well as pop-up markets, cinemas and more.":"Zibi est toujours très actif. Profitez d'événements de classe mondiale comme le Cirque du Soleil et Igloofest ainsi que de marchés éphémères, de cinémas et plus encore.","zibi is dedicated to becoming one of the most sustainable communities in canada and adhered to the one planet living framework to help guide sustainability and eco-friendly planning. with accessible transit, bike paths, and multiple transport options on your doorstep, you will be able to take advantage of one of the most connected master-planned communities in canada, as well as one of ottawa’s most pedestrian-friendly neighbourhoods. the recently re-designed chaudière crossing, with a dedicated bike lane and pedestrian walkway, will quickly and easily connect you between gatineau and ottawa.":"Zibi s’est engagée à devenir l’une des communautés les plus durables au Canada et respecte le cadre One Planet Living, qui oriente les aspects liés à la durabilité et à la planification écologique. Grâce aux multiples options de transport en commun ainsi que de pistes cyclables et piétonnières, vous serez en mesure de profiter d’une des communautés les plus connectées au Canada et d’un des quartiers les plus accueillants pour les piétons à Ottawa. La traverse des Chaudières, qui a récemment été redessinée pour y inclure une piste cyclable et une voie piétonnière, facilitera grandement la traversée entre Gatineau et Ottawa. Vous pouvez aussi utiliser la station Pimisi du système de train léger d’Ottawa et le carrefour de transport de la STO de Gatineau pour vous rendre facilement à Ottawa et dans les environs. Si vous préférez utiliser votre vélo, vous pouvez utiliser les pistes cyclables sécuritaires et pratiques (sans oublier les vues imprenables en cours de route!) pour vous rendre à votre destination. Avec autant d’options écologiques en matière de transport, vous pourrez remiser votre véhicule tout en explorant les meilleurs endroits de la ville.","live. explore. connect.":"Vivre. Découvrir. Créer des liens.","floor plans and pricing":"Plans d’étage et prix","gallery":"Gallerie","exterior":"Extérieur","email address":"Courriel","email address *":"Courriel *","email address*":"Courriel*","for a guided tour come and meet with the leasing agent five minutes prior to your appointment in our central leasing office.":"Pour une visite guidée, veuillez rencontrer l’agent de location à notre bureau central de location cinq minutes avant l’heure prévue de votre rendez-vous.","check availability":"vérifier la disponibilité","9am":"9h","6pm":"18h","9 am":"9h","10 am":"10h","5 pm":"17h","6 pm":"18h","sq. ft.":"pc","sq.ft.":"pc","sq.ft":"pc","sq.ft.:":"pc :","sq ft":"pc","sqft":"pc","- sqft":"- pc","- 6 pm":"- 18h","- 5 pm":"- 17h","studio":"studio","date available:":"Date disponible:","parks & plazas":"Parcs et places","live, explore, connect":"Vivre. Découvrir. Créer des liens.","studio / 1 bath":"studio / 1 SdB","1 bedroom / 1 bath":"1 chambre / 1 SdB","2 bedroom / 2 bath":"2 chambre / 2 SdB","1 bedroom + den":"1 chambre + bureau","bedrooms":"chambres","2 bedrooms + den":"2 chambres","aalto":"Aalto","aalto ii | a2":"Aalto II | A2","aalto ii | a1":"Aalto II | A1","aalto ii | a3":"Aalto II | A3","aalto ii | a4":"Aalto II | A4","aalto ii | a5":"Aalto II | A5","aalto ii | a6":"Aalto II | A6","aalto ii | a7":"Aalto II | A7","aalto ii | b1":"Aalto II | B1","aalto ii | b2":"Aalto II | B2","live at aalto":"VIVRE À AALTO ET AALTO II","find your suite":"Trouvez votre suite","close to it all":"Au cœur de tout","live in a connected community":"Vivre dans une communauté connectée","aalto and aalto ii are proudly part of zibi, an award-winning master-planned community across both ottawa and gatineau. zibi is one of canada's most ambitious urban developments, transforming a former industrial site into a vibrant, sustainable neighbourhood — seamlessly blending residential, commercial, and green spaces in one of the most dynamic settings in the national capital region.":"Aalto et Aalto II font fièrement partie de Zibi, une communauté primée et planifiée d’envergure située à la fois à Ottawa et à Gatineau. Zibi est l’un des projets urbains les plus ambitieux du Canada, transformant un ancien site industriel en un quartier dynamique et durable où se côtoient harmonieusement espaces résidentiels, commerciaux et verts dans l’un des environnements les plus inspirants de la région de la capitale nationale.","aalto and aalto ii are perched on the north shores of the ottawa river with sweeping views of canada's supreme court, parliament, and the national gallery of canada. the buildings are located just steps from the ottawa and gatineau downtown cores and adjacent to the riverfront tesasini park. with seamless access to transit and multi-use pathways, an active and connected lifestyle comes naturally.":"Aalto et Aalto II sont situés sur la rive nord de la rivière des Outaouais et offrent des vues spectaculaires sur la Cour suprême du Canada, le Parlement et le Musée des beaux-arts du Canada. Les immeubles se trouvent à quelques pas des centres-villes d’Ottawa et de Gatineau, tout près du parc riverain Tesasini. Grâce à un accès facile au transport en commun et aux sentiers polyvalents, un mode de vie actif et connecté s’impose naturellement.","live at zibi":"VIVRE À ZIBI","welcome to aalto and aalto ii — zibi's first residential buildings and a landmark on the shores of the ottawa river. whether you choose aalto or aalto ii, you'll enjoy the same waterfront lifestyle and effortless connection to the best of the national capital region.":"Bienvenue à Aalto et Aalto II — les premiers immeubles résidentiels de Zibi et de véritables emblèmes sur les rives de la rivière des Outaouais. Que vous choisissiez Aalto ou Aalto II, vous profiterez du même mode de vie au bord de l’eau et d’un accès privilégié aux meilleurs attraits de la région de la capitale nationale.","explore floorplans":"DÉCOUVRIR LES PLANS D’ÉTAGE","elevated everyday living":"Un quotidien rehaussé","modern amenities designed to elevate everyday living. from beautifully curated social spaces to wellness-focused fitness facilities, aalto and aalto ii offers residents a seamless balance of comfort, convenience, and connection.":"Des commodités modernes conçues pour enrichir votre quotidien. Des espaces communs soigneusement aménagés aux installations de remise en forme axées sur le bien-être, Aalto et Aalto II offrent un équilibre harmonieux entre confort, commodité et connexion.","as part of the zibi community, residents have access to a calendar that's always full: outdoor festivals, cultural gatherings, public art events, and neighbourhood activations that bring thousands of people to the waterfront year-round. whether you're looking to meet your neighbours, explore the river trails, or simply soak in the energy of one of canada's most vibrant new communities, there's always something happening at zibi.":"En tant que résident de la communauté Zibi, vous profiterez d’un calendrier d’activités toujours animé : festivals extérieurs, rassemblements culturels, événements d’art public et animations de quartier qui attirent des milliers de visiteurs au bord de l’eau tout au long de l’année. Que vous souhaitiez rencontrer vos voisins, explorer les sentiers riverains ou simplement profiter de l’énergie de l’une des communautés les plus vibrantes du Canada, il y a toujours quelque chose à découvrir à Zibi.","both buildings offer light-filled suites from studios to two-bedroom plus den, each with a private balcony and stunning river views. inside, every detail has been considered — quartz countertops, stainless steel energy star appliances, in-suite laundry, and quality finishes throughout.":"Les deux édifices offrent des suites lumineuses, allant du studio à l'appartement deux chambres plus bureau, chacune dotée d'un balcon privé et d'une vue imprenable sur la rivière. À l'intérieur, chaque détail a été pensé avec soin : comptoirs en quartz, électroménagers en acier inoxydable certifiés Energy Star, buanderie privée et finitions haut de gamme.","fitness centre":"CENTRE DE CONDITIONNEMENT PHYSIQUE","walk score":"Score de marche","aalto ii | c1":"Aalto II | C1","aalto ii | c6":"Aalto II | C6","aalto ii | c4":"Aalto II | C4","aalto ii | d7":"Aalto II | D7","aalto ii | d6":"Aalto II | D6","aalto ii | d2":"Aalto II | D2","aalto ii | d4":"Aalto II | D4","aalto ii | d5":"Aalto II | D5","aalto ii | d3":"Aalto II | D3","aalto ii | d1":"Aalto II | D1","transit score":"Note de transit","welcome to aalto":"Bienvenue à Aalto","aalto and aalto ii — two landmark rental buildings on gatineau's waterfront":"Aalto et Aalto II, deux immeubles locatifs sur les rives de la rivière des Outaouais.","live at aalto & aalto ii":"VIVRE À AALTO ET AALTO II","co-working lounge":"ESPACE DE COTRAVAIL","discover waterfront":"Découvrez la vie locative","rental living":"au bord de l’eau","bike score":"Note de vélo","applicant portal":"PORTAIL DES DEMANDEURS","take a tour":"VISITEZ LES LIEUX","bedroom":"chambre","two months free on select suites":"Deux mois gratuits sur certaines unités","move in today and save, now offering up to 2 months frees":"Emménagez dès aujourd’hui et économisez : profitez maintenant de jusqu’à deux mois gratuits.","schedule your consultation":"Planifiez votre consultation","bike racks":"Support pour bicyclettes","recycling":"Recyclage","pets":"Animaux de compagnie","no preference":"Aucune préférence","cats":"Chats","dogs":"Chiens","pet friendly":"Animaux de compagnie acceptés","no pets allowed":"Animaux de compagnie interdits","no properties in this area":"Aucune propriété dans cette région","compare":"Comparer","phone number":"Numéro de téléphone","about":"À propos","featured":"En vedette","bird's eye view":"Vue d’ensemble","neighborhood":"Voisinage","apply now":"Faites une demande maintenant","contact us":"Contactez-nous","state":"Province","phone":"Téléphone","regional offices":"Bureaux régionaux","properties":"Propriétés","* denotes a required field":"* Indique un champ requis","* indicates required fields.":"* Indique les champs requis.","* only available in select apartments":"* Disponible uniquement dans certains appartements",". are you sure you want to pay extra amount?":". Êtes-vous sûr de vouloir payer un montant supplémentaire?",". please select !":". Veuillez sélectionner!","/month":"/mois","+ add another pet (limit 1)":"+ Ajouter un autre animal de compagnie (limite de 1)","+ add another pet (limit 2)":"+ Ajouter un autre animal de compagnie (limite de 2)","+ add another pet (limit 3)":"+ Ajouter un autre animal de compagnie (limite de 3)","+ add another pet (limit 4)":"+ Ajouter un autre animal de compagnie (limite de 4)","+ add another vehicle (limit 1)":"+ Ajouter un autre véhicule (limite de 1)","+ add another vehicle (limit 2)":"+ Ajouter un autre véhicule (limite de 2)","+ add another vehicle (limit 3)":"+ Ajouter un autre véhicule (limite de 3)","+ add another vehicle (limit 4)":"+ Ajouter un autre véhicule (limite de 4)","< p > you have to select minimum two properties to compare.":"< p > Vous devez sélectionner au moins deux propriétés à comparer.","? previous":"? Précédent","100% safe and secure":"100 % sûr et sécurisé","10am":"10h00","10pm":"22h00","11am":"11h00","11pm":"23h00","12am":"12h00","12pm":"24h00","18 or older":"18 ans et plus","1am":"1h00","1pm":"13h00","2am":"2h00","2pm":"14h00","3am":"3h00","3pm":"15h00","4+ beds":"4+ Chambres","4am":"4h00","4pm":"16h00","5am":"5h00","5pm":"17h00","6am":"6h00","7am":"7h00","7pm":"19h00","8am":"8h00","8pm":"20h00","9pm":"21h00","a history of all maintenance requests including those that are pending as well as those that are completed.":"Un historique de toutes les demandes d'entretien, y compris celles qui sont en attente ainsi que celles qui sont terminées.","a message has been sent with instructions on how to reset your password.":"Un message a été envoyé avec des instructions sur la façon de réinitialiser votre mot de passe.","about us":"À propos de nous","accept":"Accepter","access blocked?":"Accès bloqué?","access instructions":"Instructions d'accès","access times":"Heures d'accès","additional rental options":"Options de location supplémentaires","address":"Adresse","address (line two)":"Adresse (ligne deux)","address 1":"Adresse 1","address 2":"Adresse 2","address 3":"Adresse 3","address information":"Information sur l'adresse","address:":"Adresse :","after move in date.":"Après la date d’emménagement.","age":"Âge","age:":"Âge :","aged 18 and over which has been exceeded by the list of additional occupants.":"âgés de 18 ans et plus qui a été dépassé par la liste des occupants supplémentaires.","agreement":"Accord","air conditioner":"Climatisation","air conditioner *":"Climatisation *","åland islands":"Îles d'Åland","albania":"Albanie","alerts":"Alertes","algeria":"Algérie","all":"Tout","all day?":"Toute la journée?","allow personal messages from bulletin board":"Permettre des messages personnels du babillard","almost there...":"On y est presque...","already a member?":"Déjà membre?","already have an account?":"Vous disposez déjà d'un compte?","already have an account? login now!":"Vous disposez déjà d'un compte? Connectez-vous maintenant!","already have insurance? you may upload your proof of insurance now. uploaded documents can be viewed below or from":"Vous êtes déjà assuré? Vous pouvez télécharger votre preuve d'assurance maintenant. Les documents téléchargés peuvent être consultés ci-dessous ou à partir de","already verified? click here to login.":"Déjà vérifié? Cliquer ici pour vous connecter.","alt. phone":"Téléphone alternatif","amenities":"Commodités","amenities:":"Commodités :","amenity":"Commodité","amenity*":"Commodité*","american samoa":"Samoa américaines","amount":"Montant","amount paid":"Montant payé","an error has occurred, please try again later":"Une erreur s'est produite, veuillez réessayer plus tard","information provided does not match with our records, please check your details and try again.":"Les informations fournies ne correspondent pas avec nos enregistrements, veuillez vérifier vos détails et essayer de nouveau.","in-home delivery preferences":"Préférences de livraison à domicile","in-law":"Belle-famille","inquire for details":"Renseignez-vous pour plus de détails","insurance":"Assurance","invalid file type.":"Type de fichier invalide.","invalid key, please try again":"Clé non valide, veuillez réessayer","invalid login":"Connexion invalide","invalid password, please try again.":"Mot de passe non valide, veuillez réessayer.","invalid phone number.":"Numéro de téléphone non valide.","invalid property info.":"Informations de propriété non valides.","invalid username or password.":"Nom d'utilisateur ou mot de passe invalide.","invalid verification code":"Code de vérification non valide","iran, islamic republic of":"République islamique d'Iran","iraq":"Iraq","ireland":"Irlande","israel":"Israël","issue subtype:":"Sous-type de problème :","issue type:":"Type de problème :","italy":"Italie","items of interest":"éléments d'intérêt","january":"Janvier","january monthly charges":"Charges mensuelles de janvier","january monthly charges and monthly auto-pay":"Les charges mensuelles de janvier et le paiement automatique mensuel","job title":"Titre du travail","jordan":"Jordanie","july":"Juillet","july monthly charges":"Charges mensuelles de juillet","july monthly charges and monthly auto-pay":"Les charges mensuelles de juillet et le paiement automatique mensuel","june":"Juin","june monthly charges":"Charges mensuelles de juin","june monthly charges and monthly auto-pay":"Les charges mensuelles de juin et le paiement automatique mensuel","just a second":"Un instant","just fill in your password.":"Il suffit de saisir votre mot de passe.","lockout assistance?":"Assistance en cas de verrouillage?","log in":"Se connecter","log out":"Déconnexion","logged in as:":"Connecté en tant que :","login":"Connexion","login here to access your lease information, pay your rent online, update account info or submit a maintenance request.":"Connectez-vous ici pour accéder à vos informations de location, payer votre loyer en ligne, mettre à jour vos informations de compte ou soumettre une demande d'entretien.","login to access your lease information, pay your rent online, update account information or submit a maintenance request.":"Connectez-vous ici pour accéder à vos informations de location, payer votre loyer en ligne, mettre à jour vos informations de compte ou soumettre une demande d'entretien.","login to resident services to manage your rental needs |":"Connectez-vous aux Services pour résidents pour gérer vos besoins de location |","login to your guest account":"Connectez-vous à votre compte d’invité","logout":"Déconnexion","luxembourg":"Luxembourg","macedonia, the former yugoslav republic of":"Ancienne république yougoslave de Macédoine","madagascar":"Madagascar","main charge":"Charge principale","main site":"Site principal","maintenance":"Entretien","maintenance notes":"Notes d'entretien","maintenance related":"Lié à l’entretien","maintenance request":"Demande d'entretien","maintenance requests":"Demandes d'entretien","maintenance:":"Entretien :","make":"Marque","make a one-time payment":"Effectuer un paiement unique","make a reservation":"Faire une réservation","make changes to your robots.txt file":"Apporter des modifications à votre fichier Robots.txt","make payments":"Effectuer des paiements","malaysia":"Malaisie","maldives":"Maldives","management company":"Société de gestion","management company phone":"Numéro de téléphone de la société de gestion","management team":"Équipe de gestion","manual":"Manuelle","map":"Carte","map & directions":"Carte et itinéraires","map view":"Vue cartographique","march":"Mars","march monthly charges":"Charges mensuelles de mars","march monthly charges and monthly auto-pay":"Les charges mensuelles de mars et le paiement automatique mensuel","marital status":"État civil","married":"Marié","marshall islands":"Îles Marshall","master bedroom":"Chambre principale","monthly charges and monthly auto-pay june":"Les charges mensuelles de juin et le paiement automatique mensuel","monthly charges and monthly auto-pay march":"Les charges mensuelles de mars et le paiement automatique mensuel","monthly charges and monthly auto-pay may":"Les charges mensuelles de mai et le paiement automatique mensuel","monthly charges and monthly auto-pay november":"Les charges mensuelles de novembre et le paiement automatique mensuel","monthly charges and monthly auto-pay october":"Les charges mensuelles d’octobre et le paiement automatique mensuel","monthly charges and monthly auto-pay september":"Les charges mensuelles de septembre et le paiement automatique mensuel","monthly fee":"Frais mensuels","monthly income":"Revenu mensuel","monthly rent/monthly mortgage payments":"Loyer mensuel / Paiements hypothécaires mensuels","months":"Mois","more":"Plus","more faqs":"Plus de questions fréquemment posées","morocco":"Maroc","mother":"Mère","motorbike":"Motocyclette","move in":"Emménagement","move in date":"Date d'emménagement","move in on":"Emménager le","move-in date":"Date d’emménagement","mr.":"M.","mrs.":"Madame","ms.":"Mme.","multifamily":"Multi-famille","my accounts":"Mes comptes","my documents":"Mes documents","my profile":"Mon profil","my requests already on file.":"Mes demandes déjà enregistrées.","n/a":"S.O.","name":"Nom","name on account":"Le nom sur le compte","namibia":"Namibie","near":"près de","nearby communities":"Communautés voisines","neighborhood info":"Informations sur le voisinage","neighbourhood":"Voisinage","netherlands":"Pays-Bas","netherlands antilles":"Antilles néerlandaises","never employed":"Jamais employé","new":"Nouveau","new account":"nouveau compte","new caledonia":"Nouvelle-Calédonie","new doc":"nouveau document","new edited":"nouvelle version","new email address":"Nouvelle adresse électronique","new lease document":"Nouveau document de bail","new password":"Nouveau mot de passe","new password*":"Nouveau mot de passe*","new password:":"Nouveau mot de passe :","new zealand":"Nouvelle-Zélande","news and updates":"Nouvelles et mises à jour","next":"Suivant","next ?":"Suivant ?","night life":"Vie nocturne","no":"Non","notification phone #":"N° de téléphone de notification","notifications end date":"Date de fin des notifications","notify a delivery creation?":"Notifier une création de livraison ?","notify a delivery pick-up?":"Notifier une prise de livraison ?","notify a delivery revisions?":"Notifier des révisions de livraison ?","notify an outside party pick-up completion?":"Aviser un tiers de l'achèvement d’une prise de livraison ?","notify an outside party pick-up creation?":"Aviser un tiers de la création d’une prise de livraison ?","notify an outside party pick-up revisions?":"Aviser un tiers des révisions d’une prise de livraison ?","notify keys picked up in bulk?":"Notifier que les clés ont été récupérées en masse ?","notify keys picked up?":"Notifier que les clés ont été récupérées ?","notify keys returned in bulk?":"Notifier que les clés ont été retournées en masse ?","notify keys returned?":"Notifier que les clés ont été retournées ?","notify via sms?":"Notifications par SMS?","november monthly charges":"Charges mensuelles de novembre","november monthly charges and monthly auto-pay":"Les charges mensuelles de novembre et le paiement automatique mensuel","number of guests":"Nombre d’invités","occupant":"occupant","occupants":"occupants","october":"Octobre","october monthly charges":"Charges mensuelles d’octobre","october monthly charges and monthly auto-pay":"Les charges mensuelles d’octobre et le paiement automatique mensuel","off":"DÉSACTIVÉ","office hours":"Heures d'ouverture du bureau","office:":"Bureau :","ok, please make.":"OK, veuillez effectuer.","old password*":"Ancien mot de passe*","on":"ON","on master bed":"Sur la chambre principale","on the following pages, you will be requested to input your desired move in date, input your personal information on the application and upload required application documents.":"Sur les pages suivantes, il vous sera demandé de saisir la date d'emménagement souhaitée, de saisir vos informations personnelles sur la demande et de télécharger les documents de demande requis.","parking and other items":"Stationnement et autres éléments","parking:":"Stationnement :","parkview":"Vue du parc","passport number":"Numéro de passeport","password":"Mot de passe","password must be a minimum of 10 characters long and must contain all of the following: one lowercase letter, one uppercase letter, one number and one symbol":"Le mot de passe doit avoir un minimum de 10 caractères et doit contenir tous les éléments suivants : une lettre minuscule, une lettre majuscule, un chiffre et un caractère spécial","password must be a minimum of 10 characters long and must contain all of the following: one lowercase letter, one uppercase letter, one number and one symbol.":"Le mot de passe doit avoir un minimum de 10 caractères et doit contenir tous les éléments suivants : une lettre minuscule, une lettre majuscule, un chiffre et un caractère spécial.","password must be at least 8 characters, please try again.":"Le mot de passe doit avoir au moins 8 caractères, veuillez réessayer.","password reset":"Réinitialisation du mot de passe","password retrieval":"Récupération du mot de passe","password*":"Mot de passe*","patio/balcony":"Terrasse/balcon","pay by date":"Payer par date","pay online, check the status of your payments and review your payment history.":"Payez en ligne, vérifiez le statut de vos paiements et consultez l'historique de vos transactions.","pay rent, make maintenance requests and more.":"Payer le loyer, faire des demandes d’entretien et plus.","payment account":"Compte de paiement","payment account:":"Compte du paiement :","payment accounts":"Comptes de paiement","payment amount":"Montant du paiement","payment date:":"Date du paiement :","payment details":"Détails du paiement","payment options":"Options de paiement","payments":"Paiements","payments and charges":"Paiements et charges","payments must be between zero and the total charge amount.":"Les paiements doivent être entre zéro et le montant total de la charge.","pending":"En attente","pending activity":"Activité en attente","pending availability":"Disponibilité en attente","pending payment description":"Description du paiement en attente","performing this action will add additional options as new monthly charges. are you sure you want to continue?":"L'exécution de cette action ajoutera les options supplémentaires en tant que nouvelles charges mensuelles. Êtes-vous sûr de vouloir continuer?","permission to enter*":"Permission d'entrer*","please contact your property manager if you do not have one.":"Veuillez contacter votre gestionnaire immobilier si vous n'en avez pas un.","please enter a campaign name.":"Veuillez saisir un nom de campagne.","please enter a message.":"Veuillez saisir un message.","please enter a payment amount less than or equal to the charge amount.":"Veuillez indiquer un montant de paiement inférieur ou égal au montant des charges.","please enter a valid credit card number.":"Veuillez saisir un numéro de carte de crédit valide.","please enter a valid date (iso).":"Veuillez saisir une date valide (ISO).","please enter a valid date.":"Veuillez saisir une date valide.","please enter a valid email address":"Veuillez saisir une adresse électronique valide","please enter a valid email address.":"Veuillez saisir une adresse électronique valide.","please enter a valid number.":"Veuillez saisir un numéro valide.","please enter a valid phone number.":"Veuillez saisir un numéro de téléphone valide.","please enter a valid routing number":"Veuillez saisir un numéro d’acheminement valide","please enter a valid url.":"Veuillez saisir un URL valide.","please enter a value with a valid extension.":"Veuillez saisir une valeur avec une extension valide.","please enter all required information for":"Veuillez saisir toutes les informations requises pour","please enter an amount less than or equal to":"Veuillez saisir un montant inférieur ou égal à","please enter an amount less than or equal to your unpaid amount.":"Veuillez saisir un montant inférieur ou égal à votre montant impayé.","please enter an amount less than your unpaid amount.":"Veuillez saisir un montant inférieur à votre montant impayé.","please enter date you would like to send this survey.":"Veuillez saisir la date que vous souhaitez envoyer ce sondage.","please enter days":"Veuillez saisir les jours","please enter expected move-in date":"Veuillez saisir la date prévue d'emménagement","please enter only digits.":"Veuillez ne saisir que des chiffres.","please enter positive amount.":"Veuillez saisir un montant positif.","please enter promotional code":"Veuillez saisir le code promotionnel","please enter registration code or phone number":"Veuillez saisir le Code d’inscription ou le Numéro de téléphone","please enter registration code or phone number.":"Veuillez saisir le Code d’inscription ou le Numéro de téléphone.","please enter the same value again.":"Veuillez saisir la même valeur de nouveau.","please enter title":"Veuillez saisir le titre","please enter valid first name.":"Veuillez saisir un prénom valide.","please enter valid last name.":"Veuillez saisir un nom de famille valide.","please enter valid phone number.":"Veuillez saisir un numéro de téléphone valide.","please read this entire agreement before proceeding. by clicking on the \"pay by secure ems pay server\" button below, you accept the terms and conditions. if you do not accept these terms, do not click \"pay by secure ems pay server\"below.":"VEUILLEZ LIRE L’INTÉGRALITÉ DE L’ENTENTE AVANT DE POURSUIVRE. EN CLIQUANT SUR LE BOUTON « Payer par serveur sécurisé EMS PAY » CI-DESSOUS, VOUS ACCEPTEZ LES CONDITIONS GÉNÉRALES. SI VOUS N’ACCEPTEZ PAS CES CONDITIONS GÉNÉRALES, NE CLIQUEZ PAS SUR LE BOUTON « Payer par serveur sécurisé EMS PAY » CI-DESSOUS.","please read this entire agreement before proceeding. by clicking on the 'pay by secure ems pay server' button below, you accept the terms and conditions. if you do not accept these terms, do not click 'pay by secure ems pay server' below.":"VEUILLEZ LIRE L’INTÉGRALITÉ DE L’ENTENTE AVANT DE POURSUIVRE. EN CLIQUANT SUR LE BOUTON « Payer par serveur sécurisé EMS PAY » CI-DESSOUS, VOUS ACCEPTEZ LES CONDITIONS GÉNÉRALES. SI VOUS N’ACCEPTEZ PAS CES CONDITIONS GÉNÉRALES, NE CLIQUEZ PAS SUR LE BOUTON « Payer par serveur sécurisé EMS PAY » CI-DESSOUS.","please review the documents below and sign your lease whenever you're ready.":"Veuillez réviser les documents ci-dessous et signer votre bail dès que vous êtes prêt.","please select":"Veuillez sélectionner","please select !":"Veuillez sélectionner!","please select a before/on/after location.":"Veuillez sélectionner un emplacement Avant le/Le/Après le.","please select a location from the list":"Veuillez sélectionner un emplacement dans la liste","please select a payment method":"Veuillez sélectionner un mode de paiement","please select a template before continuing":"Veuillez sélectionner un modèle avant de continuer","please select a template before continuing.":"Veuillez sélectionner un modèle avant de continuer.","please select at least one property.":"Veuillez sélectionner au moins une propriété.","please select at least one prospect from the list to send a notification email.":"Veuillez sélectionner au moins un client potentiel dans la liste pour envoyer un courriel de notification.","please select at least one status.":"Veuillez sélectionner au moins un statut.","please select if document is active.":"Veuillez sélectionner si le document est actif.","please select if document is required.":"Veuillez sélectionner si le document est requis.","please select residents.":"Veuillez sélectionner les Résidents.","please select the campaign type.":"Veuillez sélectionner le type de campagne.","please select the floor plans you would like to show on your brochure!!":"Veuillez sélectionner les plans d’étage que vous souhaitez montrer sur votre brochure!!","please select the floor plans you would like to show on your brochure!! test brochure by activating it":"Veuillez sélectionner les plans d’étage que vous souhaitez montrer sur votre brochure!! Testez la brochure en l'activant","please select valid start date to get your free online renters insurance quote.":"Veuillez sélectionner une date de début valide pour obtenir votre devis d'assurance locataire GRATUIT en ligne.","please select widget(s) before continuing.":"Veuillez sélectionner un ou des gadgets logiciels avant de continuer.","please specify number of services you wish to rent":"Veuillez spécifier le nombre de services que vous souhaitez louer","please take a moment to rate your experience with the completed maintenance request(s).":"Veuillez prendre quelques minutes pour évaluer votre expérience concernant la ou les demandes d'entretien effectuées.","please upload no more than 10 images. only .jpeg, .gif or .png files are allowed.":"Veuillez ne pas télécharger plus de 10 images. Seuls les fichiers .jpeg, .gif ou .png sont autorisés.","please upload required documents before proceeding.":"Veuillez télécharger les documents requis avant de poursuivre.","please use this email with your password next time you login. you may change your password with the change password button under profile.":"Veuillez utiliser cette adresse électronique avec votre mot de passe la prochaine fois que vous vous connecter. Vous pouvez changer votre mot de passe avec le bouton Modifier le mot de passe sous Profil.","please verify your account using the confirmation link we have sent to your email address.":"Veuillez vérifier votre compte en utilisant le lien de confirmation que nous avons envoyé à votre adresse électronique.","application information":"Informations sur la demande","application questions?":"Questions sur la demande?","applied":"Appliqué","apply":"Faire une demande","apply now !!":"FAITES UNE DEMANDE MAINTENANT!!","apply online now":"Faites une demande en ligne maintenant","apply.":"faire une demande.","approval date":"Date d'approbation","approved":"Approuvé","april monthly charges":"Les charges mensuelles d’avril","april monthly charges and monthly auto-pay":"Les charges mensuelles d’avril et le paiement automatique mensuel","apt":"Appartement","apt #":"N° d’app.","are you sure you want to remove this applicant?":"Êtes-vous sûr de vouloir supprimer ce demandeur?","are you sure you want to remove this property from your favorites?":"Êtes-vous sûr de vouloir supprimer cette propriété de vos favoris?","are your sure want to unsubscribe?":"Êtes-vous sûr de vouloir vous désabonner?","area":"Région","argentina":"Argentine","armenia":"Arménie","as soon as possible!":"Dès que possible!","as the first person to complete this application, you will be considered the primary applicant, and you will be asked to provide information about additional occupants.":"En tant que première personne à remplir cette demande, vous serez considéré comme le demandeur principal et il vous sera demandé de fournir des informations sur les occupants supplémentaires.","asap":"Dès que possible","assigned to":"Assigné à","assignment date":"Date d'assignation","attachment":"Pièce jointe","attachments":"Pièces jointes","august":"Août","august monthly charges":"Les charges mensuelles d’août","august monthly charges and monthly auto-pay":"Les charges mensuelles d’août et le paiement automatique mensuel","aunt":"Tante","australia":"Australie","austria":"Autriche","authenticate user":"Authentifier l'utilisateur","authorized for key?":"Autorisé pour une clé?","authorized guest":"Invité autorisé","auto-pay account":"Compte de paiement automatique","brief description:":"Brève description :","british indian ocean territory":"Territoire britannique de l'océan Indien","brother":"Frère","building":"Bâtiment","building your ideal match...":"En train de construire votre correspondance idéale...","bulgaria":"Bulgarie","bulletin board":"Babillard","bulletin board - allow personal messages":"Babillard - Permettre des messages personnels","bulletin board display name":"Nom d’affichage du babillard","bulletin board email notifications":"Notifications par courriel du babillard","bulletin board email notifications:":"Notifications par courriel du babillard :","business center":"Centre d'affaires","by connecting your existing account, you are agreeing to the":"En vous connectant à ce compte existant, vous acceptez les","by creating your account you are agreeing to the":"En créant ce compte, vous acceptez les","by signing this application, i agree that the information provided in this application is true and correct.":"En signant cette demande, je reconnais que les informations fournies dans cette demande sont vraies et correctes.","by submitting this form, you agree to rentcafé":"En soumettant ce formulaire, vous acceptez que RentCafe","by using this website you agree to our use of cookies as described in our":"En utilisant ce site web, vous acceptez que nous utilisions des témoins, comme décrit dans notre","by:":"Par :","by: anonymous":"Par : Anonyme","cable ready":"Prêt pour le câble","calendar":"Calendrier","call":"Appel","call for details":"Appelez-nous pour plus de détails","call now":"APPELEZ MAINTENANT","call us":"APPELEZ-NOUS","call us :":"Appelez-nous :","call:":"appel :","cambodia":"Cambodge","cameroon":"Cameroun","cancel":"Annuler","canceled":"Annulé","cape verde":"Cap-Vert","caption for image":"légende pour l'image","car":"Automobile","carpeting":"Moquette","check the status of your applications.":"Vérifiez le statut de vos demandes.","child care":"Garde d'enfants","chile":"Chili","choose file":"Choisir un fichier","choose your apartment":"Choisir votre appartement","christmas island":"L'île Christmas","city":"Ville","clear":"Effacer","clear all":"Effacer tout","click":"Cliquer","click here":"Cliquer ici","click here to log in.":"Cliquer ici pour vous connecter.","click here to login.":"cliquer ici pour vous connecter.","click here to receive future marketing messages":"Cliquer ici pour recevoir les futures communications de marketing","click here to receive future marketing messages.":"Cliquer ici pour recevoir les futures communications de marketing.","click here to register":"Cliquer ici pour vous inscrire","click here to register.":"Cliquer ici pour vous inscrire.","click here to sign in.":"Cliquer ici pour vous connecter.","client name:":"Nom du client :","client pin#:":"N° NIP du client :","client team:":"Équipe du client :","close":"Fermer","closing":"fermeture","club discount":"Remise pour le club","clubhouse":"Pavillon","cocos (keeling) islands":"Îles Cocos (Keeling)","color":"Couleur","coming soon":"Disponible bientôt","comments":"Remarques","community":"Communauté","community amenities":"Commodités communautaires","community amenities:":"Commodités communautaires :","community calendar":"Calendrier communautaire","community specials":"Offres spéciales de la communauté","comoros":"Comores","company not found.":"Entreprise non trouvée.","compare communities":"Comparer les communautés","compare now":"Comparer maintenant","compare properties":"Comparer les propriétés","completed":"Terminé","concierge":"Concierge","condo":"Condo","confirm password":"Confirmer le mot de passe","confirm password*":"Confirmer le mot de passe*","confirm password:":"Confirmer le mot de passe :","confirmation":"Confirmation","confirmation number:":"Numéro de confirmation :","create an account to join our waiting list":"Créer un compte pour joindre notre liste d’attente","create my account":"Créer mon compte","create reservation":"Créer une réservation","create your account today, and apply online!":"Créez votre compte aujourd’hui, et faites une demande en ligne!","created by":"Créé par","created by:":"Créé par :","creation date":"Date de création","creation date:":"Date de création :","credits redeemed must be between zero and the total credit amount.":"Les crédits échangés doivent être entre zéro et le montant total des crédits.","crime patrol":"Patrouille anti criminalité","crime petrol":"Patrouille anti criminalité","croatia":"Croatie","currency":"Devise","current charges and additional rental options":"Les charges actuelles et les options de location supplémentaires","current monthly charges":"Charges mensuelles actuelles","current outstanding charges":"Charges impayées actuelles","current password":"Mot de passe actuel","customize your robots.txt file. only do this if you have advanced knowledge on this subject.":"Personnalisez votre fichier robots.txt. Ne le faites que si vous avez des connaissances avancées en la matière.","czech republic":"République Tchèque","daily":"Quotidien","daily digest":"Recueil quotidien","data saved succesfully":"Données sauvegardées avec succès","data saved succesfully.":"Données sauvegardées avec succès.","data saved successfully":"Données sauvegardées avec succès","date":"Date","date available":"Date disponible","date can not be greater than":"La date ne peut pas être supérieure à","date can not be past":"La date ne peut pas être dépassée","date completed":"Date d'achèvement","date created":"Date de création","date of birth":"Date de naissance","date scheduled":"Date prévue","dates of your current lease:":"Les dates de votre bail actuel :","dates of your scheduled lease:":"Les dates de votre bail prévu :","daughter":"Fille","day":"jour","day(s)":"jour(s)","do you want to finalize the lease?":"Voulez-vous finaliser le bail?","do you want to leave this guest as cancelled?":"Voulez-vous laisser cet invité comme annulé?","do you want to navigate to other page without saving the signatures?":"Voulez-vous naviguer vers d’autres pages sans sauvegarder les signatures?","do you want to navigate without saving the signatures?":"Voulez-vous naviguer sans sauvegarder les signatures?","do you want to reactivate this guest?":"Voulez-vous réactiver cet invité ?","do you want to re-apply ?":"Voulez-vous faire une nouvelle demande?","do you want to rescore this group?":"Voulez-vous recalculer ce groupe ?","do you want to rescreen the applicants and its occupants?":"Voulez-vous procéder à un nouvel examen des demandeurs et de leurs occupants?","do you want to send a reminder ?":"Voulez-vous envoyer un rappel ?","document has been deleted. please upload a new document":"Le document a été supprimé. Veuillez télécharger un nouveau document","document signature":"Signature du document","documents":"Documents","documents menu":"Menu des documents","dominican republic":"République Dominicaine","don’t see the apartment or move in date you want, click here to be put on a wait list for this floorplan":"Si vous ne voyez pas l'appartement ou la date d'emménagement que vous souhaitez, cliquez ici pour être inscrit sur une liste d'attente pour ce plan d’étage","don't have an account yet?":"Vous ne disposez pas encore d'un compte?","door attendant":"Portier","download":"Télécharger","drop-off":"Déchargement","drop-off date":"Date du déchargement","drop-off location":"Lieu de déchargement","drop-offs":"Déchargements","dry cleaning":"Nettoyage à sec","duration*":"Durée*","during our office hours if you have any questions we can answer for you.":"pendant nos heures de bureau si vous avez des questions, nous pouvons vous répondre.","dutch - standard":"Néerlandais - Standard","ebrochure":"Brochure électronique","edit":"Modifier","edit profile":"Modifier le profil","efficient appliances":"Appareils ménagers efficaces","egypt":"Égypte","elapsed time":"Temps écoulé","electronic thermostat":"Thermostat électronique","elevator":"Ascenseur","error: end date must be after start date.":"Erreur : La date de fin doit être après la date de début.","estonia":"Estonie","ethiopia":"Éthiopie","events":"Événements","every":"Chaque","expected move in date (dd/mm/yyyy)":"Date d’emménagement prévue (jj/mm/aaaa)","expiry date":"Date d'expiration","extra payment amount":"Montant du paiement supplémentaire","extra storage":"Entreposage supplémentaire","facebook campaign":"Campagne Facebook","falkland islands (malvinas)":"Îles Falkland (Malvinas)","false":"Faux","family:":"Famille :","faroe islands":"Îles Féroé","father":"Père","favorite properties":"Propriétés favorites","featured amenities":"Commodités en vedette","february":"Février","february monthly charges":"Charges mensuelles de février","february monthly charges and monthly auto-pay":"Les charges mensuelles de février et le paiement automatique mensuel","feed fish":"Nourrir les poissons","file":"Fichier","file must be less than 5mb in size.":"La taille du fichier doit être inférieure à 5 Mo.","file must be less than 5mb in size. file types allowed: gif, jpg, png, bmp, pdf, doc, docx, xlsx maximum 100 characters are allowed in file name and special characters - /:*?<>| are not allowed in file name.":"La taille du fichier doit être inférieure à 5 Mo. Types de fichiers acceptés : gif, jpg, png, bmp, pdf, doc, docx, xlsx. Un maximum de 100 caractères sont autorisés dans le nom de fichier et les caractères spéciaux - /: *?<>| ne sont pas autorisés.","file name":"Nom du fichier","file name contains special characters.":"Le nom du fichier contient des caractères spéciaux.","file name too long.":"Le nom du fichier est trop long.","for mapping. please select!":"pour la cartographie. Veuillez sélectionner!","for more information about robots.txt, please visit":"Pour plus d’informations sur robots.txt, consultez","for performance reasons, please don't select more than":"Pour des raisons de performance, s'il vous plaît ne sélectionnez pas plus que","for technical support please email":"Pour obtenir du soutien technique, veuillez envoyer un courriel","forgot password":"Mot de passe oublié","forgot password?":"Mot de passe oublié?","fourth vehicle":"Quatrième véhicule","foyer/entryway":"Foyer/entrée","fr":"V","france":"France","free weights":"Poids libres","french - canada":"Français - Canada","french guiana":"Guyane française","french polynesia":"Polynésie française","french southern territories":"Terres australes françaises","friday":"Vendredi","friday:":"Vendredi :","friend":"ami","friends":"amis","from":"De","full description*":"Description complète*","full description:":"Description complète :","fully integrated *":"Entièrement intégré","furnished":"meublé","furniture pack*":"Pack mobilier*","gas range":"Cuisinière à gaz","georgia":"Géorgie","german - germany":"Allemand - Allemagne","germany":"Allemagne","get in touch":"Nous joindre","get notified":"Recevoir des notifications","get notified as soon as it becomes available.":"Recevoir une notification dès qu’il est disponible.","get on the waitlist":"Inscrivez-vous sur la liste d'attente","get ready to move in!":"Préparez-vous à emménager!","get score":"Obtenez le score","get the apartment you want right away!":"Obtenez l’appartement que vous voulez tout de suite!","get your free online renters insurance quote":"Obtenez votre devis GRATUIT d'assurance locataire en ligne","give us a call at":"Appelez-nous au","home decor planner":"Décorateur d'intérieur","home delivery":"Livraison à domicile","home:":"Accueil :","hong kong":"Hong Kong","house sitting":"Garde de maison","housekeeping":"Entretien ménager","how can we help you?":"Comment pouvons-nous vous aider?","how many bathrooms?":"Combien de salles de bains?","how many bedrooms?":"Combien de chambres à coucher?","how would you like to be contacted?":"Comment souhaitez-vous être contacté?","how would you like to pay?":"Comment voulez-vous payer ?","hr.":"Heure","hrs.":"Heures","hungary":"Hongrie","i agree to be screened after payment of application fees.":"J'accepte de me faire examiner après le paiement des frais de la demande.","i am available":"Je suis disponible","i don't have a middle name":"Je n'ai pas de deuxième prénom","i forgot my password":"J’ai oublié mon mot de passe","i have read and accept the":"J'ai lu et accepte le","i will take it":"Je le prends","iceland":"Islande","if you are still experiencing login issues, contact your property manager.":"Si vous éprouvez toujours des problèmes de connexion, veuillez contacter votre gestionnaire immobilier.","if you do not finish your application now, you may log in it at a later time to complete it, or to review it after you have submitted it.":"Si vous ne terminez pas votre demande maintenant, vous pourrez y revenir plus tard pour la compléter ou la réviser après l'avoir soumise.","if you have an account with us an email will be sent.":"Si vous avez un compte chez nous, un courriel vous sera envoyé.","if you have an acount with us an email will be sent.":"Si vous avez un compte chez nous, un courriel vous sera envoyé.","if you wish to add an additional rental option to your lease, please select the item to view more details.":"Si vous souhaitez ajouter une option de location supplémentaire à votre contrat de bail, veuillez sélectionner l'élément pour obtenir plus de détails.","problems adding a bank account?":"Des problèmes pour ajouter un compte bancaire?","processing request...":"Traitement de la demande...","processing request…":"Traitement de la demande...","processing...":"Traitement...","professional":"Professionnel","professionally managed by":"Géré professionnellement par","profile picture":"Photo de profil","profile":"Profil","program version:":"Version du logiciel :","properties you might also like":"Propriétés que vous pourriez également aimer","property":"PROPRIÉTÉ","property 1":"Propriété 1","property address":"Adresse de la propriété","property manager":"Gestionnaire immobilier","property name":"Nom de la propriété","property tab":"Onglet de propriété","property type:":"Type de propriété :","prospect applicant":"Demande de client potentiel","prospect registration email subscription narrative":"Narratif d’abonnement aux courriels d’inscription du client potentiel","prospect registration unsubscribe link message narrative":"Narratif du lien de désabonnement aux courriels d’inscription du client potentiel","public transportation":"Transports en commun","quantity":"Quantité","questions / comments":"Questions / Remarques","quote":"Devis","racquetball court":"Court de racquetball","rate and review our property":"Notez et évaluez notre propriété","rate us":"Évaluez-nous","rate us today!":"Évaluez-nous aujourd’hui!","rates may apply.":"Des tarifs peuvent s’appliquer.","rating":"Évaluation","ratings by category":"Évaluations par catégorie","read more":"Lire plus","read property manager's response":"Lire la réponse du gestionnaire immobilier","reason for moving":"Raison du déménagement","receive future marketing messages":"Recevoir des communications futures de marketing","recent activity":"Activité récente","registration error: past tenant access not allowed. please contact the property manager.":"Erreur d'inscription : l'accès des anciens locataires n'est pas autorisé. Veuillez contacter le gestionnaire immobilier.","registration error: please provide your registration code to complete this registration.":"Erreur d'inscription : veuillez fournir votre code d’inscription pour compléter cette inscription.","registration error: please provide your registration code to complete this registration. please contact your property manager if you do not have one.":"Erreur d'inscription : veuillez fournir votre code d'inscription pour compléter cette inscription. Veuillez contacter votre gestionnaire immobilier si vous n'en avez pas un.","registration error: property is not active.":"Erreur d’inscription : la propriété n’est pas active.","registration error: property not available in rentcafe.":"Erreur d'inscription : la propriété n'est pas disponible dans RentCafe.","registration succesful":"Inscription réussie","registration succesful.":"Inscription réussie.","relation":"Relation","relationship":"Relation","remaining":"Restant","remove":"Retirer","remove all":"Enlever tout","rent me":"Louez-moi","rent or own":"Loue ou possède","rent:":"Loyer :","rentable item is not selected for mapping. please select !":"L’article louable n’est pas sélectionné pour la cartographie. Veuillez sélectionner!","rentable items not selected.":"Les articles louables ne sont pas sélectionnés.","rental applications":"Demandes de location","rental information":"Informations de location","rental options":"Options de location","rental type:":"Type de location :","rentcafe":"RentCafe","reset":"Réinitialiser","residency from":"Résidence à partir de","resident":"Résident","resident accounts":"Comptes des résidents","resident information":"Information du résident","resident login":"Connexion des résidents","resident login page narrative":"Narratif de la page de connexion des résidents","resident portal":"PORTAIL DES RÉSIDENTS","resident registration":"Inscription du résident","resident services":"Services des résidents","resident services - tooltip":"Services des résidents - Info-bulle","residents":"RÉSIDENTS","restart":"RECOMMENCER","restore default":"Restaurer les valeurs par défaut","restore default robots.txt":"Restaurer le robots.text par défaut","results sorted by:":"Résultats triés par :","retired":"Retraité","return date":"Date de retour","return to content":"Retour au contenu","reunion":"Réunion","review":"Réviser","review lease":"Réviser bail","review memos":"Réviser mémos","review payment":"Vérifier le paiement","review submitted.":"Révision soumise.","review title":"Réviser le titre","reviews":"Revues","rewards":"Récompenses","romania":"Roumanie","roommate":"Colocataire","russian federation":"Fédération de Russie","sa":"S","saint helena":"Sainte-Hélène","saint kitts and nevis":"Saint-Christophe-et-Niévès","saint pierre and miquelon":"Saint-Pierre-et-Miquelon","saint vincent and the grenadines":"Saint-Vincent-et-les-Grenadines","sao tome and principe":"Sao Tomé-et-Principe","saturday":"Samedi","saudi arabia":"Arabie saoudite","save":"Sauvegarder","save & continue":"Sauvegarder et continuer","save selection":"Sauvegarder la sélection","save your application and log in at any time to continue.":"Sauvegarder votre demande et connectez-vous de nouveau à tout moment pour continuer.","says":"dit","says:":"dit :","schedule a tour":"Planifier une visite","scheduled":"Prévu","select 'authorized guest' to add/edit the guest.":"Sélectionner « Invité autorisé » pour ajouter/modifier l’invité.","select 'make a reservation' to create a reservation.":"Sélectionner « Faire une réservation » pour créer une réservation.","select 'make payments' to pay rent and other charges, and to schedule automatic payments.":"Sélectionnez « Effectuer des paiements » pour payer le loyer et les autres charges ainsi que planifier des paiements automatiques.","select 'package delivery' to view pick-ups and drop-offs.":"Sélectionner « Livraison de colis » pour visualiser les Prises de livraison et les Déchargements.","select payment method":"Sélectionner mode de paiement","---select payment method---":"---Sélectionner mode de paiement---","select 'pending activity' to view payments in process.":"Sélectionner « Activité en attente » pour visualiser les paiements en cours.","select 'recent activity' to show historical charges and payments":"Sélectionner « Activité récente » pour afficher les charges et paiements historiques","select 'resident away notice' to add/edit the away notice.":"Sélectionner « Avis d’absence du résident » pour ajouter/modifier l’avis d'absence.","select 'resident preference' to review/update your preference.":"Sélectionner « Préférence du résident » pour vérifier/mettre à jour votre préférence.","select services you wish to have during away period":"Sélectionner les services que vous souhaitez avoir pendant la période d'absence","select the change password button to change the email address you use to log into resident services, to change your resident services password, or to update your security question.":"Sélectionnez le bouton Modifier le mot de passe pour changer l'adresse électronique que vous utilisez pour vous connecter aux services aux résidents, pour modifier votre mot de passe des services aux résidents ou, pour mettre à jour votre question de sécurité.","select the edit profile button to update your phone numbers and vehicle information.":"Sélectionnez le bouton Modifier le profil pour mettre à jour vos numéros de téléphone et les informations sur le véhicule.","some breeds are not allowed for cats only":"Certaines races ne sont pas autorisées pour les chats uniquement","son":"Fils","sort by":"Trier par","sort by availability":"Trier par disponibilité","sort by beds (low to high)":"Trier par chambres (du plus bas au plus haut)","sort by city":"Trier par ville","sort by distance":"Trier par distance","sort by name":"Trier par nom","sort by rent (low to high)":"Trier par loyer (du plus bas au plus haut)","source:":"Source :","south africa":"Afrique du Sud","spa/hot tub":"Spa/bain tourbillon","spain":"Espagne","spanish - spain":"Espagnol - Espagne","spanish speaking staff":"Personnel parlant l'espagnol","specials":"Spéciaux","spouse":"Conjoint","sq. m":"m²","sq. m.:":"M² :","sq.m":"m²","sq.m.":"m²","sqm":"M²","square footage":"Superficie en pieds carrés","square meters":"Mètres carrés","ssn":"NAS","staff":"Personnel","staff:":"Personnel :","start application":"Démarrer la demande","start date":"Date de début","start date*":"Date de début*","start over":"Recommencer","start time*":"Heure de début*","start typing, then use the up and down arrows to select and option from the list":"Commencez à taper, puis utilisez les flèches haut et bas pour sélectionner une option dans la liste","started":"Commencé","starting at":"à partir de","state/province - zip/postal code":"État/Province - Zip/Code postal","state:":"Province :","status changed from":"Changement de statut de","status changed to":"Statut modifié à","status date:":"Date du statut :","staying in touch with your community has never been easier.":"Rester en contact avec votre communauté n'a jamais été aussi simple.","storage":"Entreposage","street view":"Vue de la rue","strong":"Fort","thank you for your feedback! please rate our property based on the following categories from 1 (worst) to 5 (best).":"Merci pour votre avis! Veuillez évaluer notre propriété basée sur les catégories suivantes sur une échelle de 1 (le meilleur) à 5 (le pire).","thank you for your interest in pre-qualification. we received your information and will contact you shortly.":"Merci de votre intérêt pour la préqualification. Nous avons reçu vos informations et nous vous contacterons sous peu.","thank you!":"Merci!","thank you.":"Merci.","thank you. you have now been added to the mailing list.":"Merci. Vous avez été ajouté à la liste de diffusion.","the change will effect all selected properties.":"La modification affectera toutes les propriétés sélectionnées.","the charge(s) listed below will be applied when the reservation has been approved.":"Les charges énumérées ci-dessous seront appliqués lorsque la réservation aura été approuvée.","the closest move-in date has been selected for you.":"La date d'emménagement la plus proche a été choisie pour vous.","the marketing source selected is already assigned for this property. are you sure you wish to continue?":"La source de marketing sélectionnée est déjà attribuée pour cette propriété. Êtes-vous sûr de vouloir continuer ?","the name you provide will be published on our website.":"Le nom que vous fournissez sera publié sur notre site Web.","the password reset link is invalid. to request a new password reset link, contact the property manager.":"Le lien de réinitialisation du mot de passe n'est pas valide. Pour demander un nouveau lien de réinitialisation du mot de passe, contactez le gestionnaire immobilier.","the specified credentials are invalid.":"Les informations d'identification spécifiées ne sont pas valides.","this account currently has auto-pay setup. do you want to make a one-time payment?":"Ce compte est actuellement configuré pour le paiement automatique. Voulez-vous effectuer un paiement unique ?","this account has already been registered.":"Ce compte a déjà été inscrit.","this account has already been registered. you will be redirected to the login page.":"Ce compte a déjà été inscrit. Vous serez redirigé vers l'écran de connexion.","this account has been locked until your password is reset. please check your email.":"Ce compte a été verrouillé jusqu'à ce que votre mot de passe soit réinitialisé.","this account is temporarily unavailable due to maintenance.":"Ce compte est temporairement indisponible pour cause d’entretien.","this account is temporarily unavailable due to maintenance. please contact your property management company for further assistance or check back at a later time.":"Ce compte est temporairement indisponible pour cause de maintenance. Veuillez contacter votre société de gestion immobilière pour obtenir une assistance supplémentaire ou revenez plus tard.","this applicant has registered in our system, and has not completed the application.":"Ce demandeur s'est inscrit dans notre système et n'a pas rempli la demande.","this application was previously approved. please rescore this application to account for the recent changes":"Cette demande a été précédemment approuvée. Veuillez réévaluer cette demande pour tenir compte des changements récents","this button takes you to the application process":"Ce bouton vous permet d'accéder au processus de demande","this custum field is already mapped. please select another!":"Ce champ personnalisé est déjà mappé. Veuillez en sélectionner un autre!","this feature is not supported on a mobile device. to continue with the rest of the application, please log in using a desktop or laptop computer.":"Cette fonction n'est pas prise en charge sur un appareil mobile. Pour continuer avec le reste de la demande, veuillez vous connecter en utilisant un ordinateur de bureau ou un ordinateur portable.","this field is required.":"Ce champ est requis.","this floor plan supports a maximum of":"Ce plan d'étage peut accommoder un maximum de","this ils requires a contract before adding properties. you should only continue if you have a contract in place. are you sure you would like to continue?":"Ce Service d'inscription en ligne exige un contrat avant d'ajouter des propriétés. Vous ne devez continuer que si vous avez un contrat en place. Êtes-vous sûr de vouloir continuer?","this property is listed under property list and its parent property is already published on ils. do you still want to publish it on ils?":"Cette propriété est répertoriée dans la liste des propriétés et sa propriété mère est déjà publiée sur le Service d'inscription en ligne. Voulez-vous toujours la publier sur le Service d'inscription en ligne?","this rentable item is already mapped. please select another!":"Cet article louable est déjà mappé. Veuillez en sélectionner un autre!","this site is protected by recaptcha and the google":"Ce site est protégé par reCAPTCHA et par Google","thursday":"Jeudi","thursday:":"Jeudi :","time remaining:":"Temps restant :","timor-leste":"Timor-Leste","title":"Titre","title,first name":"Titre, Prénom","to":"à","to manage your email preferences, please sign in and visit your profile page.":"Pour gérer vos préférences de courriel, veuillez vous connecter et visiter votre page de profil.","to read the terms and conditions.":"pour lire les Conditions générales.","to select this unit, click the apply now button.":"Pour sélectionner cette unité, cliquez sur le bouton Faire une demande maintenant.","please visit the residentshield link below to compare policy coverage and pricing from our website. by purchasing your policy through residentshield, your resident account will be updated automatically, saving you time and effort.":"Veuillez visiter le lien ResidentShield ci-dessous pour comparer la couverture et les prix des polices à partir de notre site Web. En achetant votre police par le biais de ResidentShield, votre compte de résident sera mis à jour automatiquement, ce qui vous fera gagner du temps et de l'énergie.","please wait ...":"Veuillez patienter…","please wait while we log you out.":"Veuillez patienter pendant que nous vous déconnectons.","please wait, we're loading your account.":"Veuillez patienter, nous sommes en train de télécharger votre compte.","please wait, we're loading your account…":"Veuillez patienter, nous sommes en train de télécharger votre compte...","please. bring them to the office. we need to keep a track of our keys.":"S'il vous plaît. Apportez-les au bureau. Nous devons garder une trace de nos clés.","pm":"PM","poland":"Pologne","pool":"Piscine","portal lease documents":"Documents de bail du Portail","post comment":"Publier le commentaire","post message":"Publier le message","post update":"Publier la mise à jour","postal code":"Code postal","posted on:":"Publié le :","posting assistant recommends this widget be included in your template, are you sure you want to remove it?":"L’Assistant de publication recommande d’inclure ce gadget logiciel dans votre modèle, êtes-vous sûr de vouloir le supprimer?","posting assistant requires this widget be included in your template. it cannot be removed.":"L’Assistant de publication exige que ce gadget logiciel soit inclus dans votre modèle. Il ne peut pas être supprimer.","preference":"Préférence","preference saved successfully":"Préférence sauvegardée avec succès","use your mouse or finger to sign in the boxes,":"Utilisez votre souris ou votre doigt pour signer dans les cases,","use your mouse to explore our property map.":"Utilisez votre souris pour explorer la carte de notre propriété.","user has already unsubscribed":"L'utilisateur s'est déjà désabonné","user has already unsubscribed.":"L'utilisateur s'est déjà désabonné.","user login":"Utilisateur en ligne","user not configured correctly, please contact administrator.":"L’utilisateur n’est pas configuré correctement, veuillez contacter l’administrateur.","user registration":"Inscription de l'utilisateur","user settings":"Paramètres de l'utilisateur","user verification":"Vérification de l'utilisateur","user with email address not found":"Utilisateur avec adresse électronique non trouvée","user with email address not found.":"Utilisateur avec adresse électronique non trouvée.","uzbekistan":"Ouzbékistan","value":"Valeur","value:":"Valeur :","vehicle information":"Informations sur le véhicule","vehicle type":"Type de véhicule","vehicles":"Véhicules","verification email":"Courriel de vérification","videos":"Vidéos","viet nam":"Vietnam","view":"Voir","view activity":"Voir l'activité","view all":"VOIR TOUT","view availability":"Voir la disponibilité","view brochure":"Voir la brochure","view details":"Voir les détails","view ebrochure":"Afficher brochure électronique","view floor plans":"Voir les plans d'étage","view floor plans for":"Voir les plans d’étage pour","view gallery":"Voir la galerie","view more amenities":"Voir plus de commodités","view property website":"voir le site web de la propriété","view reservations":"Voir les réservations","virgin islands, british":"Îles Vierges britanniques","virgin islands, u.s.":"Îles Vierges américaines","virtual videos":"Vidéos virtuels","visit us":"VISITEZ-NOUS","volleyball court":"Terrain de volleyball","w/d hookup":"Connexion laveuse/sécheuse","waitlisted":"Sur la liste d’attente","waitunit":"Unité d’attente","wallis and futuna":"Wallis-et-Futuna","want to hear back from us? leave your email address so we can follow up with you.":"Vous voulez que nous vous contactions? Laissez votre adresse électronique pour que nous puissions communiquer avec vous.","want to send us a note?":"Vous voulez nous envoyer un mot?","warning":"Avertissement","was 30 days notice given":"Un préavis de 30 jours a été donné","washer/dryer":"Laveuse/sécheuse","water plants":"Arroser les plantes","we":"M","we found multiple accounts matching this phone number, please login using your username and password.":"Nous avons trouvé plusieurs comptes correspondant à ce numéro de téléphone, veuillez connecter avec votre nom d'utilisateur et votre mot de passe.","we were not able to locate any resident account matching this phone number, please sign in using username and password and update the 'mobile phone for texts (sms)' field in profile.":"Nous n'avons pas été en mesure de trouver un compte de résident correspondant à ce numéro de téléphone. Veuillez vous connecter en utilisant votre nom d'utilisateur et votre mot de passe et mettre à jour le champ « Téléphone cellulaire pour les textes (SMS) » dans le Profil.","we were unable to find your record using this phone number, please register using your personal info":"Nous n'avons pas pu trouver votre dossier en utilisant ce numéro de téléphone, veuillez vous inscrire en utilisant vos informations personnelles","weak":"Faible","we'd love to talk about our events and latest news. your data will be processed in accordance with our privacy policy and we will always keep your data safe and secure. you will also be able to update your preferences or unsubscribe from our communications at any time. please tick this box if you would like to receive our marketing communications.":"Nous serions ravis de vous parler de nos événements et de nos dernières nouvelles. Vos données seront traitées conformément à notre politique de confidentialité et nous nous engageons à les conserver en toute sécurité. Vous pourrez également mettre à jour vos préférences ou vous désabonner de nos communications à tout moment. Veuillez cocher cette case si vous souhaitez recevoir nos communications de marketing.","wednesday":"Mercredi","wednesday:":"Mercredi :","weekly":"Hebdomadaire","weekly digest":"Recueil hebdomadaire","weight(lbs)":"Poids (en livres)","welcome back,":"Bienvenue à nouveau,","welcome back, !":"Bienvenue à nouveau !","welcome home!!":"Bienvenue chez vous!!","welcome narrative":"Narratif de bienvenue","welcome to":"Bienvenue à","welcome to our online application!":"Bienvenue à notre demande en ligne!","welcome to resident services":"Bienvenue aux services aux résidents","welcome to resident services.":"Bienvenue aux services aux résidents.","wellness calendar":"Calendrier du bien-être","we're finding the best floor plan for you...":"Nous trouvons le meilleur plan d'étage pour vous...","western sahara":"Sahara-Occidental","we've found the best floor plan for you!":"Nous avons trouvé le meilleur plan d'étage pour vous!","what is rentcafé?":"Qu'est-ce que RentCafe?","what is your favorite board game?":"Quel est votre jeu de société favori ?","what is your favorite restaurant?":"Quel est votre restaurant préféré ?","what our resident says":"Ce que dit notre résident","what was your first pet's name?":"Quel était le nom de votre premier animal de compagnie ?","what's going on":"Ce qui se passe","you are currently signed up for auto-pay of your monthly account balance. if you continue this payment setup, it will replace any existing auto-pay setup you have on your account. do you wish to continue?":"Vous êtes actuellement inscrit au paiement automatique de votre solde mensuel. Si vous poursuivez cette configuration de paiement, elle remplacera toute configuration de paiement automatique existante sur votre compte. Voulez-vous continuer?","you are not currently listed as a resident. please contact your property management company for more information.":"Vous ne figurez pas actuellement dans la liste des résidents. Veuillez contacter votre société de gestion immobilière pour plus d'informations.","you can access payment details anytime from the payments page.":"Vous pouvez consulter les détails du paiement en tout temps à partir de la page Paiements.","you can choose to subscribe to email notifications in concierge preferences":"Vous pouvez choisir de vous abonner aux notifications par courriel dans les Préférences de conciergerie","you can choose to subscribe to email notifications such as community announcements, calendar events, or marketing campaigns at any time. system notification emails such as payment-related changes, lease activity, service items, and account changes cannot be turned off.":"Vous pouvez choisir de vous abonner aux notifications par e-mail telles que les annonces de la communauté, les événements de calendrier ou les campagnes marketing à tout moment. Les courriels de notification provenant du système telles que les modifications liées au paiement, les activités de location, les éléments de service et les modifications de compte ne peuvent pas être désactivés.","you currently have monthly auto-pay setup for the charges indicated. do you want to continue with this payment?":"Vous avez actuellement une configuration de paiement automatique mensuel pour les charges indiquées. Voulez-vous continuer avec ce paiement?","you currently have one or more monthly charges scheduled for auto-pay using this account. please update or cancel your monthly auto-pay before deleting this account.":"Vous avez actuellement un ou plusieurs charges mensuelles prévus pour le paiement automatique à l’aide de ce compte. Veuillez mettre à jour ou annuler votre paiement automatique mensuel avant de supprimer ce compte.","you do not currently have any documents.":"Vous n'avez actuellement aucun document.","you have a credit balance on your account. if you make a payment now it will be included in the 'unapplied credit' under payments menu current outstanding charges.":"Vous avez un solde créditeur sur votre compte. Si vous effectuez un paiement maintenant, il sera inclus en tant que « Crédit non appliqué » dans le menu Paiements sous Charges en cours.","you have already been added to the mailing list.":"Vous avez déjà été ajouté à la liste de diffusion.","you have applied for the 'waitlist' apartment, your application is placed on a waiting list. you will be able to complete the application online and the property management company will contact you for actual apartment selection and allotment. pricing subject to change upon assignment of apartment.":"Vous avez demandé l'appartement « LISTE D’ATTENTE », votre demande est placée sur une liste d'attente. Vous pourrez remplir la demande en ligne et la société de gestion immobilière vous contactera pour la sélection et l'attribution de l'appartement. Les prix sont susceptibles d'être modifiés lors de l'attribution de l'appartement.","you have completed online lease renewal process successfully.":"Vous avez terminé le processus de renouvellement de bail en ligne avec succès.","you have previously opted out of email notifications for community announcements, calendar events, and marketing campaigns.":"Vous avez précédemment choisi de ne pas recevoir de notifications par courriel pour les annonces de la communauté, les événements du calendrier et les campagnes de marketing.","you have selected minimum two properties to compare. you can directly compare now from generated link here.":"Vous avez sélectionné au moins deux propriétés à comparer. Vous pouvez comparer directement à partir du lien généré ici.","you have successfully canceled reservation #":"Vous avez annulé avec succès la réservation n°","you have successfully opted out of email notifications for community announcements, calendar events, and marketing campaigns for all your accounts.":"Vous avez choisi de ne pas recevoir de notifications par courriel pour les annonces de la communauté, les événements du calendrier et les campagnes de marketing pour tous vos comptes.","you have successfully opted out of email notifications for community announcements, calendar events, and marketing campaigns.":"Vous avez choisi de ne pas recevoir de notifications par courriel pour les annonces de la communauté, les événements du calendrier et les campagnes de marketing.","you haven't selected any favorite properties.":"Vous n’avez pas sélectionné de propriétés favorites.","you haven't selected any favorite properties. you can click on 'back to search results' to search for properties and add to favorites or start an application.":"Vous n’avez pas sélectionné de propriétés favorites. Vous pouvez cliquez sur « Retour aux résultats de la recherche » pour rechercher des propriétés et les ajouter aux favoris ou lancer une demande.","you may enter a prepayment in the extra payment amount field.":"Vous pouvez inscrire un prépaiement dans le champ Montant du paiement supplémentaire.","you will find user guides and updates as well!":"Vous trouverez également des guides d'utilisation et des mises à jour!","you will not be able to add, edit or remove any occupants after payment.":"Vous ne pourrez pas ajouter, modifier ou supprimer des occupants après le paiement.","you will not be able to add, edit or remove any occupants if payments are made from application charges screen.":"Vous ne pourrez pas ajouter, modifier ou supprimer des occupants si les paiements sont effectués à partir de l'écran Charges de la demande.","you will still receive system notification emails for events such as updating a payment account, renewing a lease, submitting a service request, or making changes to your account.":"Vous continuerez à recevoir des courriels de notification du système pour des événements tels que la mise à jour d'un compte de paiement, le renouvellement d'un bail, la soumission d'une demande de service ou la modification de votre compte.","your account balance is":"Le solde de votre compte est","your actions can be found here!":"Vos actions se trouvent ici!","your application":"Votre demande","your balance for this charge is fully authorized. please click view/edit to change your authorization.":"Votre solde pour cette charge est entièrement autorisé. Veuillez cliquer sur Afficher/Modifier pour modifier votre autorisation.","your data has not been saved!":"Vos données n’ont PAS été sauvegardées!","your data has not been saved! are you sure you want to leave this page?":"Vos données n’ont PAS été sauvegardées! Êtes-vous sûr de vouloir quitter cette page?","your email (optional)":"Votre adresse électronique (facultatif)","your email address has not been verified.":"Votre adresse électronique n'a pas été vérifiée.","your email address has not been verified. please check your inbox to validate your account. if you are still experiencing login issues, contact your property manager.":"Votre adresse électronique n'a pas été vérifiée. Veuillez vérifier votre boîte de réception pour valider votre compte. Si vous éprouvez toujours des problèmes de connexion, veuillez contacter votre gestionnaire immobilier.","your email address is already associated with a property.":"Votre adresse électronique est déjà associée à une propriété.","your email has been updated to":"Votre adresse électronique a été mise à jour à","you're pre-qualified":"Vous êtes pré-qualifié","zip code":"Code postal","zoom in":"Zoom avant","zoom out":"Zoom arrière","unsubscribe from marketing messages.":"Se désabonner des messages de marketing","this site is protected by recaptcha. google privacy policy and terms of service apply.":"Ce site est protégé par reCAPTCHA. La politique de confidentialité de Google et les conditions d’utilisation s’appliquent.","this site is protected by recaptcha.":"Ce site est protégé par reCAPTCHA.","google privacy policy and terms of service apply.":"La politique de confidentialité de Google et les conditions d’utilisation s’appliquent.","by using this website you agree to our use of cookies as described in our cookie policy.":"En utilisant ce site web, vous acceptez que nous utilisions des témoins, comme décrit dans notre avis sur les témoins.","error : please enter a valid phone number.":"Erreur : Veuillez saisir un numéro de téléphone valide.","error : please enter a message.":"Erreur : Veuillez saisir un message.","error : please enter a valid email address.":"Erreur : Veuillez saisir une adresse électronique valide.","error : please provide a valid first name.":"Erreur : Veuillez fournir un prénom valide.","error : please provide a valid last name.":"Erreur : Veuillez fournir un nom de famille valide.","skip to main content":"Passer au contenu principal","send my message":"Envoyer mon message","legal disclaimer":"Avis juridique","cookie policy":"Avis sur les témoins","data protection":"Protection des données","student":"Étudiant","rental":"Location","contact":"Contact","show me more":"Afficher plus","view all properties":"Voir toutes les propriétés","see all properties":"Voir toutes les propriétés","city, post code, address or property name":"Ville, code postal, adresse ou nom de la propriété","more filters":"Plus de filtres","favorites":"Favoris","demographics":"Démographiques","search mode":"Mode de recherche","current map":"Carte actuelle","radius":"Rayon","polygon":"polygone","desired amenities":"Commodités désirées","clear filters":"EFFACER FILTRES","cosmopolitan":"Cosmopolite","hide":"cacher","got questions? we're here to help":"Vous avez des questions ? Nous sommes ici pour vous aider","send us a message":"Envoyez-nous un message","see specials":"voir les spéciaux","there was a problem sending your information. please contact the property directly.":"Il y a eu un problème en envoyant vos informations. Veuillez contacter la propriété directement.","your appointment is scheduled for":"Votre rendez-vous est prévu pour","tour options":"Options de visite","time & date":"Date et heure","your information":"Vos informations","id verification":"Vérification d'identité","desired number of bedrooms for tour":"Nombre de chambres à coucher désirées pour la visite","what size apartment would you like to see":"Quelle est la taille de l'appartement que vous souhaiteriez voir","bed":"Chambre","continue to scheduling":"Continuer vers la programmation","any":"N'importe quel","we are currently unable to proceed with your request. please try again later.":"Nous sommes actuellement dans l'impossibilité de traiter votre demande. Veuillez réessayer plus tard.","max rent":"Loyer maximum","you might be interested in other available apartments listed below":"Vous pourriez être intéressé par d'autres appartements disponibles énumérés ci-dessous","don't see the apartment or move-in date you want? join the waitlist for this floor plan.":"Vous ne voyez pas l'appartement ou la date d'emménagement que vous souhaitez ? Inscrivez-vous sur la liste d'attente pour ce plan d'étage.","to send this brochure to multiple email addresses, please separate each address with a semi-colon.":"Pour envoyer cette brochure à plusieurs adresses électroniques, veuillez séparer chaque adresse par un point-virgule.","to start, we need to locate your apartment community. please enter the postal code or name of your apartment community below:":"Pour commencer, nous devons localiser votre communauté d'appartements. Veuillez saisir le code postal ou le nom de votre communauté d'appartements ci-dessous :","to stop receiving marketing messages.":"pour arrêter de recevoir des communications de marketing.","to update email address, go to concierge menu and review preferences.":"Pour mettre à jour l'adresse électronique, allez dans le menu Concierge et révisez les préférences.","to update phone number, go to concierge menu and review preferences.":"Pour mettre à jour le numéro de téléphone, allez dans le menu Concierge et révisez les préférences.","to view brochure.":"pour afficher la brochure.","top":"HAUT","bottom":"Bas","today":"aujourd’hui","token is not selected. please select !":"Jeton n’est pas sélectionné. Veuillez sélectionner!","tooltip":"Info-bulle","total":"total","total additional monthly charges:":"Total des charges mensuelles additionnelles :","total amount":"Montant total","total amount must be greater than zero.":"Le montant total doit être supérieure à zéro.","total current monthly charges":"Total des charges mensuelles actuelles","total monthly charges:":"Total des charges mensuelles :","total new monthly charges":"Total des nouvelles charges mensuelles","total nonbill asp:":"Total ASP non facturé :","total nonbilled:":"Total non facturé :","total units billed:":"Unités totales facturées :","total:":"Total :","townhouse":"Maison en rangée","tracking number":"Numéro de suivi","please don't close your browser. we are processing your request":"Veuillez ne pas fermer votre navigateur. Nous traitons votre demande","thank you for your interest in our":"Merci de votre intérêt pour notre","we don't have any availability for this floor plan right now. by filling out the form below, you will be notified as soon as it becomes available":"Nous n'avons pas de disponibilité pour ce plan d'étage pour le moment. En remplissant le formulaire ci-dessous, vous serez informé dès qu'il sera disponible","how can we help you":"Comment pouvons-nous vous aider","are you a student":"Êtes-vous un étudiant","school":"École","desired move-in date":"Date d'emménagement souhaitée","academic term":"Période académique","rental level":"Niveau de la location","room":"Chambre","first name on id":"Prénom sur la pièce d'identité","last name on id":"Nom de famille sur la pièce d'identité","number of bedrooms":"Nombre de chambres à coucher","id verification required":"Vérification de l'identité requise","for security purposes and to ensure you receive the best customer service, it's vital we verify your identity.":"Pour des raisons de sécurité et pour que vous puissiez bénéficier du meilleur service à la clientèle, il est essentiel que nous vérifiions votre identité.","confirm appointment":"Confirmer le rendez-vous","show my floor plan":"Afficher mon plan d'étage","video":"Vidéo","accommodation type":"Type de logement","an entire unit":"Une unité entière","a room within a unit":"Une pièce dans une unité","a bed within a room":"Un lit dans une chambre","number of leasee":"Nombre de locataires","floorplan filters":"Filtres de plan d'étage","guided tour":"Visite guidée","self-guided tour":"Visite sans guide","live video tour":"Visite vidéo en direct","live tour options":"Options de visites en direct","available from":"Disponible à partir du","short term lease":"Bail à court terme","swimming pool":"Piscine","basketball court":"Terrain de basket-ball","tennis court":"Cour de tennis","playground":"Terrain de jeux","green building":"Bâtiment écologique","skip to compare tool":"Passer à l'outil de comparaison","corporate headquarters":"Siège social de l'entreprise","please provide a starting point.":"Veuillez fournir un point de départ.","unit size":"Taille de l'unité","price range":"Gamme de prix","no matches.":"Aucune correspondance.","please expand your search criteria or start over.":"Veuillez élargir vos critères de recherche ou recommencer.","please select an apartment from the list below that best suits your needs.":"Veuillez sélectionner un appartement dans la liste ci-dessous qui correspond le mieux à vos besoins.","prices and special offers valid for new residents only. pricing and availability subject to change at any time.":"Prix et offres spéciales valables pour les nouveaux résidents uniquement. Les prix et la disponibilité peuvent être modifiés à tout moment.","units are not available under selected floor plan(s). below are the available units for other floor plan(s).":"Les unités ne sont pas disponibles pour le(s) plan(s) d'étage sélectionné(s). Vous trouverez ci-dessous les unités disponibles pour les autres plans d'étage.","available on: available now":"Disponible le : disponible maintenant","apartment:":"Appartement :","add a message":"Ajouter un message","office information":"Informations du bureau","when would you like to visit?":"Quand souhaitez-vous nous rendre visite ?","open now":"Ouvert maintenant","unsubscribe":"Se désabonner","error : please provide a valid email.":"Erreur : veuillez fournir une adresse électronique valide.","← previous":"← Précédent","adresse: ,,":"Adresse : ,,","default school":"École par défaut","which school are you attending?":"Quelle école fréquentez-vous?","we've found something!":"Nous avons trouvé quelque chose!","when are you looking to move in?":"Quand souhaitez-vous emménager?","no matches":"Aucune correspondance","read less":"Lire moins","unit size should be a number.":"La taille de l'unité devrait être un nombre.","rent should be a number.":"Le loyer devrait être un chiffre.","minimum rent should be less than maximum rent.":"Le loyer minimum doit être inférieur au loyer maximum.","please enter valid rent":"Veuillez saisir un loyer valide","specials available":"Spéciaux disponibles","there might be specials available for apartments in this floor plan, subject to their availability and your choice of rental preferences":"Il peut y avoir des offres spéciales pour les appartements de ce plan d'étage, en fonction de leur disponibilité et de vos préférences en matière de location","please select the type of lease that you are interested in for us help you find the best offers.":"Veuillez sélectionner le type de location qui vous intéresse pour que nous vous aidions à trouver les meilleures offres.","links":"Liens","please try another date for your visit.":"Veuillez essayer une autre date pour votre visite.","sorry, there are no available timeslots for the selected date.":"Désolé, il n'y a pas de disponibilités pour la date sélectionnée.","are you a student?*":"Êtes-vous un étudiant ?*","first name on id*":"Prénom sur la pièce d'identité*","deposit: inquire for details":"Dépôt : renseignez-vous pour plus de détails","view location":"Voir l'emplacement","1 amenity":"1 commodité","1 floor plan":"1 plans d'étage","deposit:":"Dépôt :","garage":"Garage","spa":"Spa","away service complete":"Service d'absence terminé","away service notification preferences":"Préférences de notification des services des absences","bulk key pick up":"Collecte de clés en masse","bulk key return":"Retour de clés en masse","concierge preferences":"Préférences de conciergerie","concierge service complete":"Service de conciergerie achevé","concierge service notification preferences":"Préférences de notification du service de conciergerie","delivery creation":"Création de livraison","delivery pickup":"Prise de livraison","delivery reminder":"Rappel de livraison","delivery revision":"Révision de la livraison","disabled":"Hors service","drop-off creation":"Création d'un déchargement","drop-off notification preferences":"Préférences de notification de déchargement","drop-off pickup":"Déchargement pour prise de livraison","drop-off revision":"Révision du déchargement","emergency":"Urgence","emergency/regular notification preferences":"Préférences de notification d'urgence/régulière","additional information":"Informations supplémentaires","you might also like these properties":"Vous pourriez également aimer ces propriétés","call for pricing":"Appelez pour connaître les prix","{buttonname} for {floorplanname}":"{buttonName} pour {floorplanName}","{buttonname} for {floorplanname}, opens a dialog":"{buttonName} pour {floorplanName}, ouvre un dialogue","{buttonname} of {propertyname}, opens a dialog":"{buttonName} de {propertyName}, ouvre un dialogue","{buttonname} opens in a dialog":"{buttonName} s’ouvre dans un dialogue","{minbaths}{sronly} - {maxbaths} bath":"{minBaths}{srOnly} - {maxBaths} Salle de bains","{minbaths}{sronly} - {maxbaths} baths":"{minBaths}{srOnly} - {maxBaths} Salles de bains","{minbeds}{sronly} - {maxbeds} bed,":"{minBeds}{srOnly} - {maxBeds} Chambre,","{minbeds}{sronly} - {maxbeds} beds,":"{minBeds}{srOnly} - {maxBeds} Chambres,","{nobaths} bathrooms":"{noBaths} Salles de bains","{nobaths} baths":"{noBaths} Salles de bains","{nobeds} bedrooms":"{noBeds} Chambres à coucher","{nobeds} beds":"{noBeds} Chambres","categories":"Catégories","close filters":"Fermer les filtres","comment":"Commentaire","comments are closed.":"Les commentaires sont fermés.","community page":"Page communautaire","corporate locations":"Sites de l'entreprise","e-mail*":"Courriel*","leave a reply":"Laisser une réponse","name*":"Nom","next page":"Page suivante","next post":"Nouveau message","popular articles":"Articles populaires","popular posts":"Messages populaires","previous page":"Page précédente","previous post":"Message précédent","read more...":"Lire plus...","save my name, email, and website in this browser for the next time i comment.":"Enregistrez mon nom, mon adresse électronique et mon site web dans ce navigateur pour la prochaine fois que je ferai un commentaire.","select category":"Sélectionner la catégorie","tags":"Balises","team members":"Membres de l’équipe","website":"Site Web","you may use these html tags and attributes:":"Vous pouvez utiliser ces balises et attributs HTML :","- friday:":"- Vendredi :","- monday:":"- Lundi :","- saturday:":"- Samedi :","- sunday:":"- Dimanche","- thursday:":"- Jeudi :","- tuesday:":"- Mardi :","- wednesday:":"- Mercredi :","cancel my appointment":"Annulez mon rendez-vous","error : please select rental level.":"Erreur : Veuillez sélectionner le niveau de location.","error: please enter a valid date.":"Erreur : Veuillez saisir une date valide.","rental level*":"Niveau de location*","reschedule for another time":"Reprogrammer pour une autre heure","go back to the old version of resident portal. you can switch to the old version from settings > account preferences.":"Revenez à l'ancienne version du portail du Résident. Vous pouvez revenir à l'ancienne version à partir de Paramètres > Préférences du compte.","* indicates a required field.":"* Indique un champ requis.","+ add time":"* Ajouter l’heure","account access":"Accès au compte","at least 1x lowercase letter (a-z)":"au moins une lettre minuscule (a-z)","at least 1x number (1-9)":"au moins 1 chiffre (1-9)","at least 1x symbol (#*&@)":"au moins 1 symbole (#*&@ ;)","at least 1x uppercase letter (a-z)":"au moins 1 lettre majuscule (A-Z)","authorized guests":"Invités autorisés","avoid missed payments and late fees by setting up autopay!":"Évitez les paiements manqués et les frais de retard en mettant en place le paiement automatique!","confirm your password":"Confirmer votre mot de passe","create a password":"Créer un mot de passe","end time":"Heure de fin","enter your message here *":"Saisissez votre message ici*","invalid login attempt":"Tentative de connexion invalide","model":"Modèle","monthly (date picker)":"Mensuel (sélecteur de date)","not active":"Non actif","password must be a <strong>minimum of 10 characters</strong> long and must contain all of the following:":"Le mot de passe doit comporter un <strong>minimum de 10 caractères</strong> et doit contenir tous les éléments suivants :","passwords do not match.":"Les mots de passe ne correspondent pas.","please enter your account information.":"Veuillez saisir les informations relatives à votre compte.","confirm your appointment":"Confirmez votre rendez-vous","please provide your contact information":"Veuillez fournir vos informations de contact.","review & submit":"Examiner et soumettre","0 sq. ft.":"0 Pi²","academic year":"Année académique","i am already a prospect and need help.":"Je suis déjà un client potentiel et j'ai besoin d'aide.","i am already a resident and need help.":"Je suis déjà résident et j'ai besoin d'aide.","all rights reserved.":"Tous droits réservés.","yardi systems, inc.":"Yardi Systems, Inc.","city, property name or university":"Ville, nom de propriété ou université","date from":"Date à partir du","date to":"Date jusqu’au","error : please enter a city, property name or university":"Erreur : Veuillez saisir une ville, un nom de propriété, ou une université","error: please enter a message.":"Erreur : Veuillez saisir un message.","error: please enter a valid email address.":"Erreur : Veuillez saisir une adresse électronique valide.","error: please enter a valid phone number.":"Erreur : Veuillez saisir un numéro de téléphone valide.","error: please provide a valid first name.":"Erreur : Veuillez fournir un prénom valide.","temperature controlled pool":"Piscine à température contrôlée","university":"Université","view property":"Voir la propriété","washer":"Machine à laver","washing machine":"Machine à laver","error: please enter a valid maximum rent value.":"Erreur : Veuillez saisir une valeur de Loyer maximum valide.","error: please enter a valid minimum rent value.":"Erreur : Veuillez saisir une valeur de Loyer minimum valide.","error: please select a city.":"Erreur : Veuillez sélectionner une Ville.","error: please select a preferred language for communication.":"Erreur : Veuillez sélectionner une Langue de communication préférée.","error: please select a property.":"Erreur : Veuillez sélectionner une Propriété.","error: please select a rental level.":"Erreur : Veuillez sélectionner un Niveau de location.","error: please select a university.":"Erreur : Veuillez sélectionner une Université.","error: please select an academic term.":"Erreur : Veuillez sélectionner une Période académique.","error: please select an academic year.":"Erreur : Veuillez sélectionner une Année académique.","maximum rent":"Loyer maximum","minimum rent":"Loyer minimum","preferred language for communication":"Langue de communication préférée","review title*":"Réviser le titre*","your review*":"Votre révision*","| color:":"| Couleur :","verified resident":"Résident vérifié","fri":"ven.","mon":"lun.","or call":"ou appeler","pay by paypal account":"Payer par compte PayPal","pay by secure ccavenue server":"Payer par serveur sécurisé CCAVENUE","pay by secure ems pay server":"Payer par serveur sécurisé EMS PAY","pay by secure sagepay server":"Payer par serveur sécurisé SagePay","pay by secure worldpay server":"Payer par serveur sécurisé WorldPay","sat":"sam.","sun":"dim.","thu":"jeu.","tue":"mar.","wed":"mer.","- you can no longer edit the information contained in this application. you will be allowed to add occupants to the application until the property manager has approved the application. note that this may require you to pay additional fees and rerun screening on the application if applicable.":"- vous ne pouvez plus modifier les informations contenues dans cette demande. Vous serez autorisé à ajouter des occupants à la demande jusqu'à ce que le gestionnaire immobilier ait approuvé la demande. Notez que cela peut vous obliger à payer des frais supplémentaires et à recommencer la vérification de la demande, le cas échéant.","# of items":"Nbre d'articles","(available)":"(Disponible)","(contact for availability)":"(Contacter pour la disponibilité)","(lessee)":"(Locataire)","(miles)":"(milles)","(primary resident)":"(Résident principal)","(roommate)":"(Colocataire)",") does not match our record (":") ne correspond pas à nos dossiers (",") with the following details.":") avec les détails suivants.","). please update your profile to sync them.":"). Veuillez mettre à jour votre profil pour les synchroniser.","accessibility statement":"Déclaration d'accessibilité","account balance":"Solde du compte","account balance:":"Solde du compte :","account information":"Informations sur le compte","account information updated successfully.":"Les informations du compte ont été mises à jour avec succès.","action":"Action","action buttons":"Boutons d’action","actions":"Actions","activity":"Activité","activity by":"Activité par","activity date":"Date d’activité","activity type":"Type d'activité","add":"Ajouter","add activity":"Ajouter activité","add activity for":"Ajouter une activité pour","add another applicant":"Ajouter un autre demandeur","add authorized guest":"Ajouter un invité autorisé","add away notice":"Ajouter avis d’absence","add bank account":"Ajouter un compte bancaire","add details":"Ajouter des détails","add guest":"Ajouter un invité","add resident away notice":"Ajouter un avis d’absence d'un résident","add to favorites":"Ajouter aux favoris","add to waitlist":"Ajouter à la liste d’attente","addendum signing for one or more applicants is pending. in order to proceed, please ensure all applicants have electronically signed the addendum(s).":"La signature d'un addenda pour un ou plusieurs demandeurs est manquante. Pour continuer, veuillez vous assurer que tous les demandeurs ont signé électroniquement les addendas.","adding your name will help to ensure that the recipient does not perceive this as spam email":"L'ajout de votre nom contribuera à ce que le destinataire ne perçoive pas ce courriel comme un pourriel","additional applicant 1":"Demandeur supplémentaire 1","additional applicant info":"Informations supplémentaires sur le demandeur","additional applicants":"Demandeurs supplémentaires","additional documents":"Documents supplémentaires","additional income":"Revenu supplémentaire","additional income source":"Source de revenu supplémentaire","an error occured at the time of reservation. please try again later.":"Une erreur s’est produite au moment de la réservation. Veuillez réessayer plus tard.","and":"et","and you have entered a payment amount of":"et vous avez saisi un montant de paiement de","and your payment amount is":"et le montant de votre paiement est","announce guest":"Annoncer l'invité","announce guest?":"Annoncer l'invité?","announcement":"Annonce","announcements":"Annonces","antigua and barbuda":"Antigua-et-Barbuda","any baths":"Toutes les salles de bains","any beds":"Toutes les chambres","any rental options that you select here will not be reserved until you have finished submitting your application.":"Les options de location que vous sélectionnez ici ne seront pas réservées tant que vous n'aurez pas fini de soumettre votre demande.","apartment":"Appartement","apartment amenities":"Commodités de l'appartement","apartment communities":"Communautés d’appartements","apartment community":"Communauté d’appartements","apartment living":"La vie en appartement","apartment search":"recherche d'appartement","apartment search result":"Résultat de la recherche d'appartement","apartment search result narrative":"Narratif du résultat de la recherche d'appartement","apartment summary":"Sommaire de l'appartement","apartment summary - waitlist unit message narrative":"Sommaire de l’appartement - Message narratif de l'unité de liste d'attente","apartment types":"Types d’appartements","apartments":"Appartements","applicant":"Demandeur","applicant details need to be added. you can add details yourself.":"Les détails du demandeur doivent être ajoutés. Vous pouvez les ajouter vous-même.","applicant info":"Informations sur le demandeur","applicant information saved":"Informations sur le demandeur sauvegardées","applicant information saved.":"Informations sur le demandeur sauvegardées.","applicant login":"Connexion du demandeur","applicant login narrative":"Narratif de la connexion du demandeur","applicants":"DEMANDEURS","applicants below 18 years will not be able to register.":"Les demandeurs âgés de moins de 18 ans ne pourront pas s'inscrire.","application charges":"Charges pour la demande","application fees have been paid":"Les frais de demande ont été payés","auto-pay amount":"Montant du paiement automatique","auto-pay by":"Paiement automatique le","availability":"Disponibilité","availability 24 hours":"Disponibilité 24 heures sur 24","availability:":"Disponibilité :","available":"Disponible","available in selected units":"Disponible dans les unités sélectionnées","available now":"Disponible maintenant","available now !":"Disponible maintenant!","available units":"Unités disponibles","available units are shown below.":"Les unités disponibles sont indiquées ci-dessous.","awaiting approval":"En attente d'approbation","away notice":"Avis d'absence","azerbaijan":"Azerbaïdjan","back":"Retour","back to payment details":"Retour aux détails du paiement","back to payments":"Retour aux paiements","back to search":"Retour à la recherche","back to search results":"Retour aux résultats de la recherche","bahamas":"Bahamas","bahrain":"Bahreïn","balance":"Solde","balance due":"Solde dû","bank account number":"Numéro de compte bancaire","bank accounts":"Comptes bancaires","bank sort code":"Code de tri de la banque","basement parking":"Stationnement en sous-sol","basic lease information":"Informations de base sur le bail","basketball":"Basket-ball","bath":"Salle de bains","bath:":"Salle de bains :","baths:":"Salles de bains :","bbq/picnic area":"Espace pique-nique/barbecue","beauty salon":"Salon de beauté","because you have been inactive, your session is about to expire.":"Parce que vous avez été inactif, votre session est sur le point d'expirer.","bed:":"Chambre :","beds":"Chambres","beds/baths":"Chambres/Salles de bains","beds:":"Chambres :","belarus":"Biélorussie","belgium":"Belgique","birds eye view":"Vue d’ensemble","blocked":"Bloqué","bosnia and herzegovina":"Bosnie Herzégovine","both":"Les deux","bouvet island":"Île Bouvet","brazil":"Brésil","breed":"Race","carrier charges may apply.":"Des frais d'opérateur téléphonique peuvent s’appliquer.","case contact:":"Contact du dossier :","case id:":"Identifiant du dossier :","case priority:":"Priorité du dossier :","case team:":"Équipe du dossier :","category":"Catégorie","category*":"Catégorie*","cats & rabbits":"Les chats & lapins","cayman islands":"Îles Caïmans","ceiling fan":"Ventilateur de plafond","central african republic":"République centrafricaine","chad":"Tchad","change":"Modifier","change email":"Modifier le courriel","change email address":"Modifier l'adresse électronique","change login credentials":"Modifier les données d'accès","change password":"Modifier le mot de passe","change password security information":"Modifier les informations de sécurité du mot de passe","changing blue moon agency will delete form setup, default field setup and rentable items setup of existing blue moon agency. are you sure you want to continue?":"Le changement d'agence Blue Moon supprimera la configuration des formulaires, des champs par défaut et la configuration des articles à louer existants de l'agence Blue Moon. Êtes-vous sûr de vouloir continuer?","characters remaining":"caractères restants","charge":"Charge","charge amount":"Montant des charges","charge amounts have been refunded to your account. thank you.":"Les montants des charges ont été remboursés à votre compte. Merci.","charge description":"Description des charges","check out our faq’s.":"Consultez notre Foire aux questions.","check out the interactive map of our community, get directions from your current location, and see our address and contact information.":"Consultez la carte interactive de notre communauté, obtenez des directions à partir de votre emplacement actuel, et voyez notre adresse et nos coordonnées.","check out the status of your application":"Vérifiez le statut de votre demande","check the status of your application":"Vérifiez le statut de votre demande","confirmed":"Confirmé","congo, the democratic republic of the":"République démocratique du Congo","congratulations":"Félicitations","connect":"Vous connecter","contact does not found":"contact non trouvé","contact for availability":"Contacter pour la disponibilité","contact for details":"Contacter pour plus de détails","contact property":"Contacter la propriété","contacting card services ......":"En train de contacter les services de cartes ......","contactless pickup":"Prise de livraison sans contact","continue":"Continuer","continue application":"Continuer la demande","continue now with the application.":"Continuer maintenant avec la demande.","continue now with your apartment selection and complete your application:":"Continuez maintenant avec votre sélection d'appartements et complétez votre demande :","continue now with your apartment selection and complete your application: if you would like to pre-qualify again please click:":"Continuer maintenant avec votre sélection d'appartements et complétez votre demande : Si vous souhaitez vous pré-qualifier à nouveau, veuillez cliquer :","continue now with your application:":"Continuez maintenant avec votre demande :","continue now with your application: if you would like to pre-qualify again please click:":"Continuez maintenant avec votre demande : Si vous souhaitez vous pré-qualifier à nouveau, veuillez cliquer :","controlled access":"Accès contrôlé","controlled access/gated":"Accès contrôlé/privé","cook islands":"Îles Cook","cookie policy.":"avis sur les témoins.","copy from main applicant":"Copier du demandeur principal","copy settings!":"Copier les paramètres!","co-residents:":"Colocataires :","corporate headquarters |":"Siège social de l'entreprise |","cote d'ivoire":"Côte d’Ivoire","could not cancel reservation.":"Impossible d’annuler la réservation.","country":"Pays","county":"Comté","courtyard":"Cour intérieure","covered and uncovered parking spaces available":"Places de stationnement couvertes et non couvertes disponibles","covered parking":"Stationnement couvert","create a new account":"Créer un nouveau compte","create an account":"Créer un compte","dd/mm/yyyy":"jj/mm/aaaa","december monthly charges":"Charges mensuelles de décembre","december monthly charges and monthly auto-pay":"Les charges mensuelles de décembre et le paiement automatique mensuel","delete":"Supprimer","delivery":"Livraison","delivery date":"Date de livraison","delivery notification preferences":"Préférences de notification de livraison","denied":"Refusé","denmark":"Danemark","deposit":"Dépôt","description":"Description","details":"Détails","determine which lease offer best suites your needs and click the select lease button.":"Déterminez l'offre de location qui répond le mieux à vos besoins et cliquez sur le bouton Sélectionner le bail.","did an agent help you?":"Est-ce qu’un agent vous a aidé?","directions":"Itinéraire","directions from...":"Itinéraire à partir de ...","dishwasher":"Lave-vaisselle","dishwasher *":"Lave-vaisselle *","disposal":"Élimination","distance":"Distance","distance :":"Distance :","do you have a social security number?":"Avez-vous un numéro d'assurance sociale?","do you have any pets?":"Avez-vous des animaux de compagnie ?","do you have any vehicles?":"Avez-vous des véhicules?","do you really want to activate this account?":"Voulez-vous vraiment activer ce compte?","do you want to cancel this application?":"Voulez-vous annuler cette demande?","do you want to copy default property settings to property list?":"Voulez-vous copier les paramètres de propriété par défaut à la liste de propriétés?","do you want to create a new lead for this prospect?":"Voulez-vous créer une nouvelle piste de vente pour ce client potentiel?","do you want to delete resident registration configuration setup?":"Voulez-vous supprimer la configuration de l’inscription des résidents?","do you want to delete this prospect permanently?":"Voulez-vous supprimer ce client potentiel de façon permanente?","do you want to finalize the lease and initiate the blue moon esignature process?":"Voulez-vous finaliser le bail et lancer le processus de signature électronique de Blue Moon?","personal details":"Détails personnels","personal information":"Informations personnelles","pet":"Animal de compagnie","pet information":"Informations sur les animaux de compagnie","pet is offered as service":"L’animal de compagnie est offert en tant que service","pet policy":"Politique sur les animaux de compagnie","pet type":"Type d'animal","pets allowed":"Animaux de compagnie autorisés","pets are allowed":"Les animaux de compagnie sont autorisés","pets are not allowed":"Les animaux de compagnie ne sont pas autorisés","philippines":"Philippines","phone no":"N° de téléphone","phone number*":"Numéro de téléphone*","photo gallery":"Galerie de photos","photos":"Photos","pickup date":"Date de la prise de livraison","pick-up location":"Lieu de prise de livraison","pick-ups":"Prises de livraison","please accept screening terms and conditions.":"Veuillez accepter les conditions générales du dépistage.","please accept terms and conditions.":"Veuillez accepter les conditions générales.","please accept the terms and conditions before proceeding.":"Veuillez accepter les conditions générales avant de poursuivre.","please add a title before continuing.":"Veuillez ajouter un titre avant de continuer.","please check your inbox to validate your account.":"Veuillez vérifier votre boîte de réception pour valider votre compte.","please contact the property manager.":"Veuillez contacter le gestionnaire immobilier.","please contact your property management company for further assistance or check back at a later time.":"Veuillez contacter votre société de gestion immobilière pour obtenir de l’assistance supplémentaire ou revenez plus tard.","please enter your current password to change the password or security information.":"Veuillez saisir votre mot de passe actuel pour modifier le mot de passe ou les informations de sécurité.","please enter your email address and we'll send you a link to reset your password.":"Veuillez saisir votre adresse électronique et nous vous enverrons un lien pour réinitialiser votre mot de passe.","please enter your email address":"Veuillez saisir votre adresse électronique","please enter your first name.":"Veuillez saisir votre prénom.","please enter your last name.":"Veuillez saisir votre nom de famille.","please enter your username and password":"Veuillez saisir votre nom d'utilisateur et votre mot de passe","please fill all the required fields.":"Veuillez remplir tous les champs requis.","please fill out all required fields.":"Veuillez remplir tous les champs requis.","please fill out your information below to create your account. once your account is created, you will be taken to the application form.":"Veuillez remplir vos informations ci-dessous pour créer votre compte. Une fois votre compte créé, vous serez dirigé vers le formulaire de demande.","please fix this field.":"Veuillez corriger ce champ.","please let us know more about yourself.":"Veuillez nous en dire davantage sur vous.","please note that changing your account information will update all of the in-progress applications.":"Veuillez noter que la modification des informations de votre compte mettra à jour toutes les demandes en cours.","please note that changing your email address will also change your login information. in the future, you will use the new email address to login to manage your favorites.":"Veuillez noter que la modification de votre adresse électronique modifiera également vos informations de connexion. À l'avenir, vous utiliserez la nouvelle adresse électronique pour vous connecter afin de gérer vos favoris.","please note that the selected document has not been countersigned. are you sure you want to update this document as complete without countersignatures?":"Veuillez noter que le document sélectionné n'a pas été contresigné. Êtes-vous sûr de vouloir mettre à jour ce document comme étant complet sans contresignature?","preferred language":"Langue de préférence","preferred method of contact":"Méthode de contact préférée","preferred name":"Nom préféré","preferred name:":"Nom préféré :","preferred rent":"Loyer préférentiel","pre-qualify now!":"PRÉ-QUALIFIEZ VOUS MAINTENANT!","press ok to remain logged in or press cancel to log off.":"appuyez sur OK pour rester connecté ou appuyez sur Annuler pour vous déconnecter.","prev":"Précédent","previous address":"Adresse précédente","previous employer end date":"Date de fin chez l’employeur précédent","previous employer start date":"Date de début chez l’employeur précédent","previous employment information":"Informations sur les emplois précédents","prices and special offers valid for new residents only. pricing and availability subject to change at any time. prices and specials are not guaranteed until you have paid the application fees.":"Prix et offres spéciales valables uniquement pour les nouveaux résidents. Les prix et la disponibilité peuvent changer sans préavis. Les prix et les promotions ne sont pas garantis tant que vous n'avez pas payé les frais de demande.","primary":"Principal","primary applicant":"Demandeur principal","primary resident":"Résident principal","print":"Imprimer","prior to completing the selection, on the next page you will have an opportunity to select the lease term of your choice, and review the monthly charges before accepting.":"Avant de compléter la sélection, sur la page suivante, vous aurez la possibilité de sélectionner la durée de location de votre choix, et de revoir les charges mensuelles avant d'accepter.","priority*":"Priorité*","privacy policy":"Politique de confidentialité","recent posts":"Messages récents","recipient’s email":"Courriel du destinataire","records per page":"dossiers par page","recreation":"Loisir","recreation room":"Salle de loisirs","recurring pattern":"Motif récurrent","re-enter email address":"Saisissez à nouveau l'adresse électronique","refine:":"Raffiner :","refrigerate perishables?":"Réfrigérer les produits périssables ?","refrigerator":"Réfrigérateur","regional office(s)":"Bureau(x) régional(aux)","register":"S'inscrire","register for a fast, easy application":"Inscrivez-vous pour une demande rapide et facile","register now":"Inscrivez-vous maintenant","register your interest":"Enregistrez votre intérêt","registration code":"Code d'inscription","registration code and email do not match with our records, please check your details and try again.":"Le code d’inscription et l’adresse électronique ne correspondent pas avec les informations dans nos dossiers, veuillez vérifier vos détails et essayer de nouveau.","registration code not found, please check your registration code and try again.":"Code d’inscription pas trouvé, veuillez vérifier votre code d'inscription et réessayer.","registration error, please check your registration code and email and try again":"Erreur d'inscription, veuillez vérifier votre Code d'inscription et Courriel et réessayer","registration error: evicted tenant access not allowed.":"Erreur d’inscription : l'accès aux locataires expulsés n'est pas autorisé.","registration error: evicted tenant access not allowed. please contact the property manager.":"Erreur d’inscription : l'accès aux locataires expulsés n'est pas autorisé. Veuillez contacter le gestionnaire immobilier.","registration error: first name, last name and phone number provided do not match our record, please try again.":"Erreur d’inscription : Le prénom, nom de famille et numéro de téléphone fournis ne correspondent pas à notre dossier, veuillez réessayer.","registration error: incorrect email.":"Erreur d'inscription : adresse électronique erronée.","registration error: incorrect last name.":"Erreur d’inscription : nom de famille erroné.","registration error: incorrect registration code.":"Erreur d'inscription : code d’inscription erroné.","registration error: incorrect unit number.":"Erreur d’inscription : numéro d'unité erroné.","registration error: past tenant access not allowed.":"Erreur d'inscription : l'accès des anciens locataires n'est pas autorisé.","renter’s insurance is required to reside at this community, and you must provide proof of insurance to the management office. you can procure renter’s insurance from a provider of your choice or for your convenience you can click the residentshield link below to compare policy coverage and pricing options from our website. we have selected residentshield as our preferred provider and by purchasing your policy through them your account will be updated automatically, saving you time and effort.":"Une assurance locataire est requise pour résider dans cette communauté, et vous devez fournir une preuve d'assurance au bureau de gestion. Vous pouvez souscrire une assurance locataire auprès d'un fournisseur de votre choix ou, pour plus de commodité, vous pouvez cliquer sur le lien ResidentShield ci-dessous pour comparer la couverture de la police et les options de prix à partir de notre site Web. Nous avons choisi ResidentShield comme notre fournisseur préféré et en achetant votre police par leur intermédiaire, votre compte sera mis à jour automatiquement, ce qui vous permettra d'économiser du temps et des efforts.","renters insurance policy":"Police d’assurance des locataires","reply":"Répondre","reply to this post…":"Répondre à ce message...","request #":"N° de la demande","request description*":"Description de la demande*","request history":"Historique des demandes","requested":"Demandé","required field":"Champ obligatoire","reservation":"Réservation","reservation approval":"Approbation de réservation","reservation balance":"Solde de la réservation","reservation cancel?":"Annuler la réservation ?","reservation complete":"Réservation complète","reservation confirm?":"Confirmer la réservation ?","reservation created successfully. an email will be sent shortly containing reservation details. thank you.":"La réservation a été créée avec succès. Un courriel contenant les détails de la réservation sera envoyé sous peu. Merci.","reservation creation?":"Création de la réservation ?","reservation deny?":"Refuser la réservation ?","reservation notification preferences":"Préférences de notification des réservations","reservation request has been received and is pending approval. an email will be sent shortly containing reservation details. thank you.":"La demande de réservation a été reçue et est en attente d'approbation. Un courriel contenant les détails de la réservation sera envoyé prochainement. Merci.","reservations":"Réservations","reservations :":"Réservations :","reserve item":"Réserver l’article","scheduled reservations could not be loaded.":"Les réservations programmées n'ont pas pu être téléchargées.","screening information":"Informations sur le dépistage","search":"Rechercher","search results":"Résultats de recherche","search:":"Rechercher :","sec status date:":"Date du statut secondaire :","sec status:":"Statut secondaire :","second vehicle":"Deuxième véhicule","security alarm":"Alarme de sécurité","security answer":"Réponse de sécurité","security answer*":"Réponse de sécurité*","security characters":"Caractères de sécurité","security question":"Question de sécurité","security question*":"Question de sécurité*","see disclosure.":"Voir la divulgation.","see our":"Consultez notre","select":"Sélectionner","select \"authorized guest\" to add/edit the guest.":"Sélectionner « Invité autorisé » pour ajouter/modifier l’invité.","select \"make payments\" to pay rent and other charges, and to schedule automatic payments.":"Sélectionnez « Effectuer des paiements » pour payer le loyer et les autres charges ainsi que planifier des paiements automatiques.","select \"package delivery\" to view pick-ups and drop-offs.":"Sélectionner « Livraison de colis » pour visualiser les Prises de livraison et les Déchargements.","select \"payment accounts\" to add or change your bank accounts.":"Sélectionner « Comptes de paiement » pour ajouter ou modifier vos comptes bancaires.","select \"pending activity\" to view payments in process.":"Sélectionner « Activité en attente » pour visualiser les paiements en cours.","select \"recent activity\" to show historical charges and payments":"Sélectionner « Activité récente » pour afficher les charges et paiements historiques","select \"resident away notice\" to add/edit the away notice.":"Sélectionner « Avis d’absence du résident » pour ajouter/modifier l’avis d'absence.","select \"resident preference\" to review/update your preference.":"Sélectionner « Préférence du résident » pour vérifier/mettre à jour votre préférence.","select a category":"Choisissez une catégorie","select a payment account for this payment.":"Sélectionner un compte pour ce paiement.","select a sub category":"Sélectionner une sous-catégorie","select all":"Sélectionner tout","select 'view reservation' to check the status or pay for a reservation.":"Sélectionnez « Voir la réservation » pour vérifier le statut ou payer une réservation.","select your apartment community":"Sélectionnez votre Communauté d’appartements","self":"Moi-même","send":"Envoyer","send email":"Envoyer le courriel","send invitation":"Envoyer une invitation","send reply":"Envoyer la réponse","send to email":"Envoyer au courriel","send verification email":"Envoyer un courriel de vérification","sending email to":"Envoi du courriel à","september monthly charges":"Charges mensuelles de septembre","september monthly charges and monthly auto-pay":"Les charges mensuelles de septembre et le paiement automatique mensuel","serbia":"Serbie","session expiration warning":"Avertissement d’expiration de la session","settings":"Paramètres","settings saved.":"Paramètres sauvegardés.","seychelles":"Les Seychelles","sf":"PI²","share":"Partager","share with a friend":"Partager avec un ami","shipper":"Expéditeur","shops and service":"Commerces et services","should you wish to terminate your lease with us,":"Si vous souhaitez résilier votre bail avec nous,","show all":"Afficher tout","show my floor plan!":"Afficher mon plan d’étage!","sign":"Signer","sign all*":"Tout signer*","sign documents":"Signer les documents","sign in":"Connectez-vous","sign out":"Se déconnecter","sign up for a waiting list":"S’inscrire pour une liste d’attente","sign up for a waiting list'":"S’inscrire pour une liste d’attente'","sign up for the waiting list'":"S’inscrire pour la liste d’attente'","single":"Célibataire","sister":"Soeur","sister properties":"Propriétés sœurs","skip navigation":"Sauter la navigation","skylight":"Fenêtre de toit","slovakia":"Slovaquie","slovenia":"Slovénie","smoke detector":"Détecteur de fumée","solomon islands":"Îles Salomon","solution":"Solution","solution id":"Identifiant de la solution","somalia":"Somalie","studio bedroom":"Chambre de studio","su":"D","sub category":"Sous-catégorie","subject":"Objet","submit":"Soumettre","submit a maintenance request directly to the maintenance technician or property management office.":"Soumettez une demande d'entretien directement au technicien d'entretien ou au bureau de gestion immobilière.","submit leasing office request":"Soumettre la demande au bureau de location","submit maintenance request":"Soumettre une demande d'entretien","submit online maintenance requests.":"Soumettez des demandes d'entretien en ligne.","submit request":"Soumettre la demande","submit your application":"Soumettre votre demande","submitted":"Soumis","subscribe to email notifications":"Abonnez-vous aux notifications par courriel","subscribe to our newsletter":"Abonnez-vous à notre bulletin d'information","sudan":"Soudan","summary":"Sommaire","sun deck":"Solarium","sunday":"Dimanche","sustainable living":"Mode de vie durable","sustainable living:":"Mode de vie durable :","svalbard and jan mayen":"Svalbard et Jan Mayen","sweden":"Suède","switzerland":"Suisse","syrian arab republic":"République arabe syrienne","tab":"onglet","taiwan, province of china":"Taïwan","tajikistan":"Tadjikistan","tanzania, united republic of":"République-Unie de Tanzanie","task has been canceled successfully.":"La tâche a été annulé avec succès.","technical support":"Soutien technique","technician notes":"Notes du technicien","tenancy related":"Liés à la location","tenant code":"Code du locataire","terms":"Conditions","terms & conditions":"Conditions générales","terms and conditions":"Conditions générales","terms and other items":"Termes et autres éléments","terms of service":"Conditions d’utilisation","test brochure by activating it":"Testez la brochure en l'activant","text":"Texte","th":"J","thank you":"Merci","thank you for registering. your account has been successfully created.":"Merci de votre inscription. Votre compte à été créé avec succès.","the total amount of charges and credits must be positive.":"Le montant total des charges et crédits doit être positif.","the total authorized amount must be less than or equal to your balance amount.":"Le montant total autorisé doit être inférieur ou égal au montant de votre solde.","the unpaid charge amount is":"Le montant des charges impayées est","there are no charges posted for this application. are you sure you want to submit application for this prospect?":"Il n'y a pas de charges affichées pour cette demande. Êtes-vous certain de vouloir soumettre une demande pour ce client potentiel?","there are no documents available to sign or upload at this time.":"Il n'y a aucun document disponible à signer ou à télécharger pour le moment.","there are no documents for signature/upload at this time.":"Il n'y a aucun document à signer ou à télécharger pour le moment.","there are no recipients of the selected type.":"Il n'y a pas de destinataires du type sélectionné.","there are no renewal proposals available at this time.":"Il n'y a pas de propositions de renouvellement disponibles pour le moment.","there are one or more inprogress signatures for this document. are you sure you want to delete the document?":"Il y a une ou plusieurs signatures en cours pour ce document. Êtes-vous sûr de vouloir supprimer le document?","there is an error while unsubscribing user.":"Une erreur s'est produite lors du désabonnement de l'utilisateur.","there was a problem resetting your password.":"Il y a eu un problème en réinitialisant votre mot de passe.","these terms and conditions apply to all services supplied by eyardi unless a separate user agreement applies. by completing and submitting a registration form to eyardi, or clicking “i agree”, or using an eyardi product, you acknowledge that you have read and agree with the following terms and conditions.":"Ces conditions générales s'appliquent à tous les services fournis par Yardi, sauf si un accord d'utilisation distinct s'applique. En remplissant et en soumettant un formulaire d'inscription à Yardi, ou en cliquant sur « J'accepte », ou en utilisant un produit Yardi, vous reconnaissez avoir lu et accepté les conditions générales suivantes.","third vehicle":"Troisième véhicule","transactions in process and not yet posted to your bank account.":"Les transactions en cours et pas encore affichées à votre compte bancaire.","travel":"Voyage","trinidad and tobago":"Trinité-et-Tobago","try this out":"Essayez ceci","tu":"M","tuesday":"Mardi","tuesday:":"Mardi :","tunisia":"Tunisie","turkey":"Turquie","turks and caicos islands":"Îles Turks et Caïques","uganda":"Ouganda","ukraine":"Ukraine","unable to access your account at this time. please try again at a later time.":"Impossible d’accéder à votre compte pour le moment. Veuillez réessayer plus tard.","uncle":"Oncle","underground parking":"stationnement souterrain","unit":"Unité","united arab emirates":"Émirats arabes unis","united kingdom":"Royaume-Uni","united states":"États-Unis","united states minor outlying islands":"Îles mineures éloignées des États-Unis","upcoming events":"Événements à venir","update":"Mettre à jour","update account":"Mettre à jour le compte","update email address":"Mettre a jour l'adresse électronique","update email address in concierge preferences":"Mettre a jour l'adresse électronique dans les Préférences de conciergerie","update profile":"Mettre à jour le profil","update settings":"Mettre à jour les paramètres","update status":"Mise à jour du statut","upload doc":"télécharger le document","upload important documents":"Télécharger les documents importants","upload proof of renters insurance here":"Téléchargez la preuve d’Assurance des locataires ici","uploaded":"Téléchargé","use my existing account!":"Utilisez mon compte existant!","use the bank accounts listed below to make one-time payments or schedule monthly automatic payments.":"Utilisez les comptes bancaires indiqués ci-dessous pour effectuer des paiements uniques ou planifier des paiements mensuels automatiques.","use your account with multiple applications.":"Utilisez votre compte avec plusieurs demandes.","wheelchair access":"Accès pour fauteuils roulants","when would you like to move in?":"Quand voulez-vous emménager?","which communities are associated with my email address?":"Quelles communautés sont associées à mon adresse électronique?","who is your favorite book character?":"Quel est votre personnage de livre préféré ?","who is your favorite celebrity?":"Quelle est votre célébrité préférée ?","who was your childhood hero?":"Qui était votre héros d'enfance ?","who was your first boss?":"Qui était votre premier patron ?","why am i seeing this?":"Pourquoi est-ce que vois-je ceci?","widgets were not finished loading.":"Le chargement des gadgets logiciels n'était pas terminé.","window coverings":"Couvre-fenêtres","with a different email address":"avec une autre adresse courriel","with a free account, you can:":"L’ouverture d’un compte est gratuite et confidentielle et vous permet de :","with a friend":"avec un ami","work completed":"Travaux achevés","work order id":"Identifiant du bon de travail","would you like to compare the first four items you selected?":"Voulez-vous comparer les premiers quatre articles que vous avez sélectionnés?","would you like to send an email to this user to login?":"Voulez-vous envoyer un courriel à cet utilisateur pour qu'il se connecte?","write a message to your neighbors":"Écrivez un message à vos voisins","write a review":"Rédiger un avis","yardi systems inc | website design by rent":"Yardi Systems Inc | Design du site internet par RENT","year":"Année","yearly":"Annuel","yemen":"Yémen","yes":"Oui","yes, compare now.":"Oui, comparez maintenant.","you are about to":"Vous êtes sur le point de","you are about to change templates and will lose any unsaved data. do you want to continue?":"Vous êtes sur le point de changer de modèle et vous perdrez toutes les données non sauvegardées. Voulez-vous continuer?","you can click on 'back to search results' to search for properties and add to favorites or start an application.":"Vous pouvez cliquez sur « Retour aux résultats de la recherche » pour rechercher des propriétés et les ajouter aux favoris ou lancer une demande.","you can click on the image to select a floor.":"Vous pouvez cliquez sur l’image pour sélectionner un étage.","you can compare maximum four properties.":"Vous pouvez comparer un maximum de quatre propriétés.","you can reset your password using the forget password link.":"Vous pouvez réinitialiser votre mot de passe en utilisant le lien Mot de passe oublié.","you can upload images or voice memos up to 5mb. file types allowed: .gif, .jpeg, .png, .jpg, .pjpeg, .bmp, .x-png, .wav, .aif, .wmv, .m4a, .mp4":"Vous pouvez télécharger des images ou des mémos vocaux jusqu'à 5 Mo. Types de fichiers autorisés : .gif, .jpeg, .png, .jpg, .pjpeg, .bmp, .x-png, .wav, .aif, .wmv, .m4a, .mp4","you can upload images up to 5mb. file types allowed: .gif, .jpeg, .png, .jpg, .pjpeg, .bmp, .x-png":"Vous pouvez télécharger des images jusqu'à 5 Mo. Types de fichiers autorisés : .gif, .jpeg, .png, .jpg, .pjpeg, .bmp, .x-png","you can use that account to manage your information while at eyardi":"Vous pouvez utiliser ce compte pour gérer vos renseignements pendant votre séjour chez eyardi","you can use your resident portal to pay your rent, submit service requests and communicate with us and the other residents!":"Vous pouvez utiliser votre Portail des résidents pour payer votre loyer, soumettre des demande de service et communiquer avec nous et les autres résidents!","you currently have an active payment that is pending processing with this account. once the payment has been processed, you will be able to delete this account. please check back later.":"Vous avez actuellement un paiement actif qui est en instance de traitement avec ce compte. Une fois ce paiement traité, vous pourrez supprimer ce compte. Veuillez vérifier plus tard.","you currently have an active payment that is pending processing with this account. once the payment has been processed, you will be able to edit or delete this account. please check back later.":"Vous avez actuellement un paiement actif en attente de traitement pour ce compte. Une fois le paiement traité, vous pourrez modifier ou supprimer ce compte. Veuillez vérifier plus tard.","you have entered a bank account number which looks like a credit card number. do you want to continue?":"Vous avez saisi un numéro de compte bancaire qui ressemble à un numéro de carte de crédit. Voulez-vous continuer?","you have entered a future date for your employment begin date. are you sure you want a future date?":"Vous avez saisi une date future pour votre date de début d'emploi. Êtes-vous sûr de vouloir une date future?","you have exceeded the maximum login failures.":"Vous avez dépassé le nombre maximum d'échecs de connexion.","you have lived at your current place of residence for less than 0 months. please enter your previous address.":"Vous habitez à votre lieu de résidence actuel depuis moins de 0 mois. Veuillez indiquer votre ancienne adresse.","you have lived at your current place of residence for less than 24 months. please enter your previous address.":"Vous habitez à votre lieu de résidence actuel depuis moins de 24 mois. Veuillez entrer votre ancienne adresse.","you have no notifications":"Vous n'avez aucune notification","you have not added any favorites yet.":"Vous n’avez pas encore ajouté de favoris.","you have not rated any of the categories. you must rate at least one category in order to proceed.":"Vous n'avez évalué aucune des catégories. Vous devez évaluer au moins une catégorie afin de procéder.","you have not specified a custom whisper .wav file. are you sure you wish to continue?":"Vous n'avez pas spécifié de fichier .wav Whisper personnalisé. Êtes-vous sûr de vouloir continuer?","you have now been added to the mailing list.":"Vous avez été ajouté à la liste de diffusion.","you have previously opted out of email notifications for community announcements, calendar events, and marketing campaigns for all your accounts.":"Vous avez précédemment choisi de ne pas recevoir de notifications par courriel pour les annonces de la communauté, les événements du calendrier et les campagnes de marketing pour tous vos comptes.","you may need to enable tls":"Vous devrez peut-être activer TLS","you must enter a different name for your new variation.":"Vous devez saisir un nom différent pour votre nouvelle variation.","you must include at least 1 widget in your post":"Vous devez inclure au moins un 1 gadget logiciel dans votre message","you recently submitted a bank account payment, please allow sufficient time for the processing of this payment before re-submitting another payment.":"Vous avez récemment soumis un paiement par compte bancaire. Veuillez prévoir suffisamment de temps pour le traitement de ce paiement avant de soumettre à nouveau un autre paiement.","you started your renewal process with us and are close to finishing up.":"Vous avez commencé votre processus de renouvellement avec nous et êtes sur le point de le terminer.","you started your renewal process with us and are close to finishing up. please review the documents below and sign your lease whenever you're ready.":"Vous avez commencé votre processus de renouvellement avec nous et êtes sur le point de le terminer. Veuillez examiner les documents ci-dessous et signer votre bail dès que vous êtes prêt.","you will be taken to the ccavenue interface to enter your payment information.":"Vous serez dirigé vers l'interface CCAVENUE pour saisir vos informations de paiement.","you will be taken to the ems pay interface to enter your payment information.":"Vous serez dirigé vers l'interface EMS PAY pour saisir vos informations de paiement.","you will be taken to the paypal interface to enter your paypal information.":"Vous serez dirigé vers l'interface PayPal pour saisir vos informations de PayPal.","you will be taken to the sagepay interface to enter your card information.":"Vous serez dirigé vers l'interface SagePay pour saisir les informations de votre carte.","you will be taken to the worldpay interface to enter your card information.":"Vous serez dirigé vers l'interface WorldPay pour saisir les informations de votre carte.","your forgot password link has expired, please try again.":"Le lien « Mot de passe oublié » a expiré, veuillez réessayer.","your info:":"Vos informations :","your information has been received. we will contact you shortly.":"Vos informations ont été reçues. Nous vous contacterons sous peu.","your information is 100% safe and secure":"Vos informations sont 100 % sûres et sécurisées","your lease proposal has been scheduled for renewal.":"Votre proposition de bail a été programmée pour renouvellement.","your login information has changed.":"Vos informations de connexion ont changé.","your maintenance request has been successfully created.":"Votre demande d’entretien a été créée avec succès.","your message":"Votre message","your name":"Votre nom","your name (optional)":"Votre nom (facultatif)","your payment was successful! a confirmation email has been sent to":"Votre paiement a réussi! Un courriel de confirmation a été envoyé à","your preferences":"Vos préférences","your registration code should have been provided to you by your property manager. if you do not have one, please contact your property manager.":"Votre Code d'inscription vous a été fourni par votre gestionnaire immobilier. Si vous n'en avez pas, veuillez contacter votre gestionnaire immobilier.","your rent, move in date and term will update for this selection":"Votre loyer, votre date d'emménagement et votre durée seront mis à jour en fonction de cette sélection","your review:":"Votre révision :","your robots.txt file. only do this if you have advanced knowledge on this subject.":"votre ficher robots.txt. Ne le faites que si vous avez des connaissances avancées sur ce sujet.","your session will expire in":"Votre session expirera dans","your signature":"Votre signature","your total auto-pay selected must be greater than or equal to zero.":"Votre paiement automatique total sélectionné doit être supérieur ou égal à zéro.","your username/email (":"Votre nom d’utilisateur/courriel (","pan/zoom map to trigger new search":"Panoramique/Zoom de la carte pour déclencher une nouvelle recherche","search within current map boundaries.":"Recherche dans les limites de la carte actuelle.","click on the map to define a circle.":"Cliquez sur la carte pour définir un cercle.","click on the map to set the center of the circle.":"Cliquez sur la carte pour définir le centre du cercle.","click on the map to define a polygon.":"Cliquez sur la carte pour définir un polygone.","click on the map to start drawing the polygon.":"Cliquez sur la carte pour commencer à dessiner le polygone.","no properties in this area.":"Aucune propriété dans cette région.","no demographics data found.":"Aucune donnée démographique trouvée.","min":"Min.","max":"Max.","studio or 1 bedroom":"Studio ou 1 chambre à coucher","1 bedroom":"1 chambre à coucher","remove all filters":"Enlever tous les filtres","error : please enter a city, post code, address or property name":"Erreur : Veuillez saisir une ville, un code postal, une adresse ou un nom de propriété","rent (low to high)":"loyer (du plus bas au plus haut)","beds (low to high)":"Chambres (du plus bas au plus haut)","satellite":"Satellite","property type":"Type de propriété","loft":"Loft","specialty":"Spécialité","affordable":"Abordable","fitness":"Entraînement physique","cats allowed":"Chats autorisés","dogs allowed":"Animaux de compagnie autorisés","no pets":"Aucun animal de compagnie","show more":"Afficher plus","message *":"Message *","success":"Succès","contact us submitted":"Demande de contact soumise","something went wrong. please check url parameters":"Un problème est survenu. Veuillez vérifier les paramètres de l'URL","error":"Erreur","waitlist":"liste d’attente","please contact the property for apartments pricing":"Veuillez contacter la propriété pour les prix des appartements","show specials only":"Afficher spéciaux seulement","/week":"/semaine","/annually":"/annuel","/quarterly":"/trimestriel","or more":"ou plus","or less":"ou moins","square feet":"Pieds carrés","property image":"Image de la propriété","chat with us":"Clavardez avec nous","get directions":"Obtenir un itinéraire","call us:":"APPELEZ-NOUS :","start":"Début","error : please provide a valid email":"Erreur : veuillez fournir une adresse électronique valide","have a question?":"Avez-vous une question?","features & amenities":"Caractéristiques et commodités","closed":"Fermé","apartment #":"N° d’appartement","phone:":"Téléphone :","please confirm your school":"Veuillez confirmer votre école","term":"durée","website:":"Site internet :","confirm":"Confirmer","when will you be attending?":"Quand serez-vous présent ?","please select one of the above":"Veuillez choisir l'une des options ci-dessus","i am looking for a student lease":"JE CHERCHE un bail pour étudiant","we have the best student housing communities that you will find in town. we have great rental options!":"Nous avons l'une des meilleures communautés de logements étudiants que vous trouverez en ville. Nous avons d'excellentes options de location !","our apartments are elegant and smartly furnished. if your company has an association with us, we have great options for you. click here to learn more.":"Nos appartements sont élégants et meublés avec goût. Si votre entreprise a une association avec nous, nous avons d'excellentes options pour vous. Cliquez ici pour en savoir plus.","i am looking for a traditional lease.":"JE CHERCHE UN BAIL TRADITIONNEL","our rents are competitive and our apartments offer complete value for your money. click here to see our apartments.":"Nos loyers sont compétitifs et nos appartements offrent un excellent rapport qualité-prix. Cliquez ici pour voir nos appartements.","i am looking for a short term stay.":"JE CHERCHE UN SÉJOUR À COURT TERME.","our short term living solutions are flexible and can be rented out at a moment's notice. click here to see our options.":"Nos solutions de logement à court terme sont flexibles et peuvent être louées à tout moment. Cliquez ici pour voir nos options.","next →":"Suivant →","please select your move-in date":"Veuillez sélectionner votre date d’emménagement","reserve your apartment":"Réservez votre appartement","student lease":"Bail étudiant","air conditioning":"Climatisation","am":"AM","april":"Avril","at":"au/à","balcony":"Balcon","book now":"Réservez maintenant","call us now":"APPELEZ MAINTENANT","city, property name, university":"Ville, Nom de la propriété, Université","club house":"Pavillon","december":"Décembre","explore amenities":"Découvrir les commodités","explore the community":"Découvrir la communauté","features":"Caractéristiques","find your home now":"Trouvez votre résidence dès maintenant","fire place":"Cheminée","follow us on":"SUIVEZ-NOUS SUR","furnished units":"Unités meublées","grades":"CLASSES","gym":"Gymnase","high-speed internet":"Internet à haute vitesse","looking for more info?":"VOUS CHERCHEZ PLUS D'INFORMATIONS ?","november":"Novembre","open plan kitchen":"Cuisine ouverte","our address":"NOTRE ADRESSE","our locations":"Nos sites","out door space":"Espace extérieur","reading lights":"Lampes de lecture","rent (high to low)":"Loyer (du plus élevé au plus bas)","rooms":"Trouvez votre résidence dès maintenant","search filters":"Filtres de recherche","security":"Sécurité","september":"Septembre","smart classroom facilities":"Salles de classe intelligentes","{urlcaption} opens in a new tab":"{urlCaption} S’ouvre dans un nouvel onglet","1 apartment available":"1 appartement disponible","1 bath":"1 Salle de bains","1 bathroom":"1 Salle de bains","1 bed":"1 chambre","apply now at {propertyname}, opens a new window":"Faites une demande maintenant à {propertyName}, ouvre une nouvelle fenêtre","call {propertyname} at: {phonenumber}":"Appelez {propertyName} au : {phoneNumber}","click to have {propertyname} added as favorite":"Cliquez pour ajouter {propertyName} à vos favoris","click to have {propertyname} removed from favorites":"Cliquez pour supprimer {propertyName} des favoris","contact us, {propertyname}, opens a dialog":"Contactez-nous, {propertyName}, ouvre un dialogue","error : please select are you a student.?":"Erreur : Veuillez sélectionner Êtes-vous étudiant?","more ...":"Plus ...","please expand your search criteria or {startoverbutton}.":"Veuillez élargir vos critères de recherche ou {startOverButton}.","showing {count} out of {total} properties.":"Affichant {count} de {total} propriétés.","showing {count} out of {total} units.":"Affichant {count} de {total} unités.","testimonials":"Témoignages","this site is protected by recaptcha. google {privacypolicy} and {termsofservice} apply.":"Ce site est protégé par reCAPTCHA. Les {PrivacyPolicy} et {TermsOfService} de Google s’appliquent.","view details for {propertyname} opens in a new tab":"Voir les détails pour {propertyName} s’ouvre dans un nouvel onglet","view photo gallery":"Voir la galerie de photos","you have {count} favorite properties saved for this area.":"Vous avez {count} propriétés favorites sauvegardées pour cette région.","you have {count} favorite units saved for this area.":"Vous avez {count} unités favorites sauvegardées pour cette région.","email":"Courriel","email address:":"Adresse électronique :","email addresses do not match.":"Les adresses électroniques ne correspondent pas.","email body:":"Corps du courriel :","email property":"Envoyer un courriel à la propriété","email sent successfully.":"Courriel envoyé avec succès.","email unsubscribe":"Désabonner des courriels","email us":"Envoyez-nous un courriel","email*":"Courriel*","email:":"Courriel :","emergency contact":"Personne à contacter en cas d'urgence","employed":"Employé","employed since":"Employé depuis","employer":"Employeur","employers phone":"Téléphone de l'employeur","employment information":"Informations d'emploi","employment status":"Statut d'emploi","end date":"Date de fin","end date*":"Date de fin*","end time*":"Heure de fin*","english":"Anglais","english - united kingdom":"Anglais - Royaume-Uni","enquiry":"Demande de renseignements","enter email address":"Saisissez l'adresse électronique","enter email message here":"Saisissez le message du courriel ici","enter first name":"Saisissez le prénom","enter last name":"Saisissez le nom de famille","enter payment details":"Saisissez les détails du paiement","enter phone number":"Saisissez le numéro de téléphone","enter the amount to pay for each charge.":"Saisissez le montant à payer pour chaque charge.","enter the email address and password that you entered when you registered for your account.":"Saisissez l'adresse électronique et le mot de passe que vous avez choisis lors de votre inscription de votre compte.","enter your address":"Saisissez votre adresse","enter your zip code":"Saisissez votre code postal","entry closet":"Placard d'entrée","equatorial guinea":"Guinée Équatoriale","file size exceeds 2 mbs. please select a smaller file to upload.":"La taille du fichier dépasse 2 Mo. Veuillez choisir un fichier plus petit à télécharger.","file size is too large.":"La taille du fichier est trop grande.","file type not supported. please upload a valid file.":"Le type de fichier n’est pas pris en charge. Veuillez télécharger un fichier valide.","file types allowed: gif, jpg, png, bmp, pdf, doc, docx, xlsx":"Types de fichiers acceptés : gif, jpg, png, bmp, pdf, doc, docx, xlsx","file types allowed: gif, jpg, png, bmp, pdf, doc, docx, xlsx maximum 100 characters are allowed in file name and special characters - /:*?<>| are not allowed in file name.":"Types de fichiers acceptés : gif, jpg, png, bmp, pdf, doc, docx, xlsx. Un maximum de 100 caractères sont autorisés dans le nom de fichier et les caractères spéciaux - /:*?<>| ne sont pas autorisés.","find a map and easy directions to locate our community":"Trouvez une carte et des directions faciles pour localiser notre communauté","find map and easy directions to locate our community":"Trouvez une carte et des directions faciles pour localiser notre communauté","find my floor plan!":"Trouvez mon plan d’étage!","find our available spaces, prices, and potential move-in dates.":"Découvrez nos espaces disponibles, les prix et les dates potentielles d'emménagement.","fire drill evacuation":"Exercice d'évacuation en cas d'incendie","fireplace":"Foyer","first name":"Prénom","first name *":"PRÉNOM *","first name*":"Prénom*","first vehicle":"Premier véhicule","fitness center":"Centre d'entraînement physique","floor":"Étage","floor plan":"Plan d’étage","floor plan details not available for this property. please contact property manager.":"Les détails du plan d'étage ne sont pas disponibles pour cette propriété. Veuillez contacter le gestionnaire immobilier.","floor plan for":"Plan d’étage pour","floor plan:":"Plan d’étage :","floor plans":"Plans d'étages","floor plans narrative":"Narratif des plans d'étage","follow":"Suivre","follow this property":"Suivez cette propriété","follow us":"Suivez-nous","food":"Nourriture","for a lease shorter than 12 months.":"pour un bail plus court que 12 mois.","glad to have you back!":"Heureux de vous revoir!","go":"Allez","good news! it looks like you have an existing account tied to your email address (":"Bonne nouvelle ! Il semble que vous ayez déjà un compte lié à cette adresse électronique (","got a question? get in touch":"Vous avez une question ? Nous joindre","got it":"Compris","got it!":"Compris!","government issued identification number":"Numéro d'identification émis par le gouvernement","government issuing entity":"Entité du gouvernement émettrice","grandfather":"Grand-père","grandmother":"Grand-mère","great britain":"Grand Bretagne","great news, you pre-qualify for the below floor plans!":"Bonnes nouvelles, vous êtes préqualifiez pour les plans d'étage ci-dessous!","great news, you pre-qualify for the below floorplans!":"Bonnes nouvelles, vous êtes préqualifiez pour les plans d'étage ci-dessous!","great news, you pre-qualify for the below units!":"Bonnes nouvelles, vous êtes préqualifiez pour les unités ci-dessous !","great news, you pre-qualify!":"Bonnes nouvelles, vous êtes préqualifiez !","greece":"Grèce","greenland":"Groenland","grid view":"Vue quadrillée","group exercise":"Exercice de groupe","guarantor":"Garant","guest / package / notice / key / preference":"Invité / Colis / Avis / Clé / Préférence","guest has key?":"L’invité a une clé?","guest inactive?":"Invité inactif?","guest login":"Connexion d’invité","guest notification preferences":"Préférences de notification des invités","guest room":"Chambre d’invité","guest sign in?":"Inscription d’invité ?","guest sign out":"Départ des invités","guide":"Guide","guinea":"Guinée","guinea-bissau":"Guinée-Bissau","haiti":"Haïti","handrails":"Mains courantes","hardwood floors":"Planchers de bois franc","have any questions?":"Avez-vous des questions?","heard island and mcdonald islands":"Îles Heard et Mcdonald","help and support":"Soutien technique et assistance","here":"ici","here you can check what's available":"Vous pouvez vérifier ici ce qui est disponible","high ceilings":"Plafonds hauts","high speed internet":"Internet à haute vitesse","historic building":"Bâtiment historique","hold mail":"Retenir le courrier","holy see (vatican city state)":"Saint-Siège (État de la Cité du Vatican)","home":"Accueil","if you would like to be put on the waiting list.":"si vous souhaitez être mis sur la liste d'attente.","if you would like to complete the application on their behalf , please click on the 'add details' button.":"Si vous souhaitez remplir la demande en leur nom, veuillez cliquer sur le bouton « Ajouter des détails ».","if you would like to invite an occupant to register and complete this application, please click on the 'invite' button.":"Si vous souhaitez inviter un résident à s’inscrire et à remplir cette demande, veuillez cliquer sur le bouton « Inviter ».","if your username is not an email address,":"Si votre nom d’utilisateur n’est pas une adresse électronique,","i'm in no rush.":"Je ne suis pas pressé.","i'm not a robot":"Je ne suis pas un robot","image":"Image","images.":"images.","important messages for":"Messages importants pour","in home delivery approved?":"Livraison à domicile approuvée ?","in order to verify that the email address associated with your account is correct, we have sent an email to the email address you specified while registering on residentcafé. to activate your residentcafé account, please access your email and click on the link provided inside the email.":"Afin de vérifier que l'adresse électronique associée à votre compte est correcte, nous avons envoyé un courriel à l'adresse que vous avez indiquée lors de votre inscription sur ResidentCafé. Pour activer votre compte ResidentCafé, veuillez accéder à votre courriel et cliquer sur le lien qui vous y sera fourni.","in the box below, select your desired move in date. please note that we cannot guarantee that there will be an apartment available on that date, but that this is your preference. regarding estimated waiting list timing.":"Dans le cadre ci-dessous, sélectionnez la date d'emménagement souhaitée. Veuillez noter que nous ne pouvons pas garantir qu'il y aura un appartement disponible à cette date, mais qu'il s'agit de votre préférence. Concernant le calendrier estimé de la liste d'attente.","in the next few months...":"Dans les prochains mois...","inactive":"Inactif","indonesia":"Indonésie","kazakhstan":"Kazakhstan","keep up to date with current events at your community.":"Restez à jour avec les événements dans votre communauté.","kenya":"Kenya","key code":"Code de clé","key description":"Description de la clé","key notification preferences":"Préférences de notification des clés","key tracking":"Suivi de clé","key type":"Type de clé","kitchen table":"Table de cuisine","korea, democratic people's republic of":"République populaire démocratique de Corée","korea, republic of":"République de Corée","kuwait":"Koweït","kyrgyzstan":"Kirghizistan","landlord email":"Courriel du propriétaire","landlord name":"Nom du propriétaire","landlord phone":"Numéro de téléphone du propriétaire","language":"Langue","lao people's democratic republic":"République démocratique populaire lao","large closets":"Grands placards","last name":"Nom de famille","last name *":"NOM DE FAMILLE *","last name*":"Nom de famille*","latvia":"Lettonie","laundry facilities":"Buanderie","lease":"Bail","lease creation":"Création du bail","lease from date":"Date de début du bail","lease info":"Informations sur le bail","lease information":"Informations sur le bail","lease renewal":"Renouvellement du bail","lease summary":"Sommaire du bail","lease term":"Durée du bail","lease term:":"Durée du bail :","lease terms":"Durée du bail","lease to date":"Bail à ce jour","leasing office request":"Demande du Bureau de location","lebanon":"Liban","lessee":"Locataire","let's get started!":"C'est parti!","liberia":"Libéria","libyan arab jamahiriya":"Jamahiriya arabe libyenne","license":"Permis de conduire","license plate":"Plaque d'immatriculation","license plate:":"Plaque d’immatriculation :","light is not working":"La lumière ne fonctionne pas","like our community":"Aimer notre communauté","list":"Liste","list view":"Vue de la liste","lithuania":"Lituanie","living room":"Salon","loading…":"En train de charger...","location":"Emplacement","location:":"Emplacement :","locations":"Emplacements","mauritania":"Mauritanie","maximum 100 characters are allowed in file name and special characters - /:*?<>| are not allowed in file name.":"Un maximum de 100 caractères sont autorisés dans le nom de fichier et les caractères spéciaux - / : *?<>| ne sont pas autorisés.","max-rent":"Loyer maximal","may":"Mai","may monthly charges":"Charges mensuelles de mai","may monthly charges and monthly auto-pay":"Les charges mensuelles de mai et le paiement automatique mensuel","mbr closet":"Placard de la chambre principale","meal service":"Service de repas","media room":"Salle multimédia","medium":"Moyen","message":"Message","message*":"Message *","micronesia, federated states of":"États fédérés de Micronésie","microwave":"Micro-ondes","middle name":"Deuxième prénom","minimum length should be":"la longueur minimale devrait être","minutes (as of":"minutes (à partir de","mm/dd/yy":"mm/jj/aa","mo":"L","mobile phone":"Téléphone cellulaire","mobile phone for texts (sms):":"Téléphone cellulaire pour textes (SMS) :","moldova, republic of":"République de Moldova","monday":"Lundi","monday:":"Lundi :","mongolia":"Mongolie","month":"Mois","monthly":"Mensuel","monthly charges and monthly auto-pay april":"Les charges mensuelles d’avril et le paiement automatique mensuel","monthly charges and monthly auto-pay august":"Les charges mensuelles d’août et le paiement automatique mensuel","monthly charges and monthly auto-pay december":"Les charges mensuelles de décembre et le paiement automatique mensuel","monthly charges and monthly auto-pay february":"Les charges mensuelles de février et le paiement automatique mensuel","monthly charges and monthly auto-pay january":"Les charges mensuelles de janvier et le paiement automatique mensuel","monthly charges and monthly auto-pay july":"Les charges mensuelles de juillet et le paiement automatique mensuel","no availability":"Aucune disponibilité","no available reservations for this date and duration":"Aucune réservation disponible pour cette date et cette durée","no charges available for payment.":"Aucune charge disponible pour le paiement.","no data available in table":"Aucune donnée disponible dans le tableau","no data found":"Aucune donnée trouvée","no digest":"Aucun recueil","no file chose":"Aucun fichier choisi","no item is available to rent now for parking":"Aucun stationnement n’est disponible à la location en ce moment","no items selected":"Aucun article sélectionné","no maintenance requests on file.":"Aucune demande d'entretien dans le dossier.","no reservations on file.":"Aucune réservation au dossier.","no service items selected":"Aucun article de service sélectionné","no vehicle information":"Aucune information sur le véhicule","no work order memos found":"AUCUN MÉMO DE BON DE TRAVAIL TROUVÉ","noise":"Bruit","noise:":"Bruit :","norfolk island":"Île Norfolk","northern mariana islands":"Îles Mariannes du Nord","norway":"Norvège","not ?":"Ne pas ?","not available":"Non disponible","not found":"pas trouvé","not found!":"Pas trouvé!","not started":"Pas commencé","not uploaded":"Non téléchargé","note:":"Remarque :","note: if you do not receive the activation email in your inbox within 10 minutes of registering, please check your spam folder. if the email is not found please call the help desk.":"REMARQUE : si vous ne recevez pas le courriel d'activation dans votre boîte de réception dans les 10 minutes suivant votre inscription, veuillez vérifier votre dossier Pourriel. Si le courriel est introuvable, veuillez appeler le service d'assistance.","notes":"Notes","notes type":"Type de notes","notes*":"Notes*","notification email":"Courriel de notification","once your application has started, any changes made to your application by the property management company will immediately be reflected on this application for your convenience.":"Une fois que votre demande a commencé, toute modification apportée par la société de gestion immobilière sera immédiatement reflétée sur cette demande pour votre commodité.","one-time payment":"Paiement unique","online application":"DEMANDE EN LIGNE","online leasing":"Location en ligne","online leasing workflow":"Flux de travail pour la location en ligne","online payment":"Paiement en ligne","online payment - ems":"Paiement en ligne - EMS","online payment using ccavenue":"Paiement en ligne au moyen de CCAVENUE","online payment using ems pay":"Paiement en ligne au moyen de EMS PAY","online payments are reflected in the recent activity only after they are fully processed.":"Les paiements en ligne n'apparaissent dans l’Activité récente qu'après avoir été entièrement traités.","on-site maintenance":"Entretien sur site","on-site management":"Gestion sur site","options":"Options","or":"ou","or choose a script signature.":"ou choisissez une signature de script.","originator":"Expéditeur","other":"Autre","other documents":"Autres documents","other information":"Autres informations","others":"Autres","our amenities":"NOS COMMODITÉS","our apartments":"Nos appartements","our location":"Notre site","our management team":"Notre équipe de gestion","our properties":"Nos propriétés","our residents":"NOS RÉSIDENTS","outside party pick-up notification preferences":"Préférences en matière de notification de prise de livraison par un tiers","overall rating":"Évaluation globale","overview":"Aperçu","own":"Posséder","package delivery":"Livraison de colis","package receiving":"Réception de colis","paid by":"Payé par","paking":"Stationnement","palestinian territory, occupied":"Territoire palestinien occupé","papua new guinea":"Papouasie-Nouvelle-Guinée","parking":"Stationnement","this community is only accepting applications for a waiting list at this time. please click here to be put on the waiting list for this floorplan":"Cette communauté n'accepte que les demandes d'inscription sur une liste d’attente pour l'instant. Veuillez cliquer ici pour vous inscrire sur la liste d'attente pour ce plan d'étage","open for application on":"Ouvert aux demandes le","up to":"Jusqu'à","prices and special offers valid for new residents only. pricing and availability subject to change at any time":"Prix et offres spéciales valables pour les nouveaux résidents uniquement. Les prix et la disponibilité peuvent être modifiés à tout moment","no campaign":"Aucune campagne","indicates required fields":"indique les champs requis","no middle name":"Aucun deuxième prénom","yes, i'd be happy to receive text messages":"Oui, je serais heureux de recevoir des messages texte","by checking the box, you agree to receive marketing text messages via automated technology from":"En cochant la case, vous acceptez de recevoir des messages texte de marketing via une technologie automatisée de la part de","and its affiliates, subsidiaries, related properties, and/or service providers. you also agree to the terms of service and privacy policy. you understand that your consent is not a condition to make any purchase of property, goods or services. message and data rates may apply":"et de ses sociétés affiliées, filiales, propriétés apparentées et/ou fournisseurs de services. Vous acceptez également les conditions d’utilisation et la politique de confidentialité. Vous comprenez que votre consentement n'est pas une condition pour effectuer quelconque achat de propriété, de biens ou de services. Les tarifs des messages et des données peuvent s'appliquer","zip":"Code postal","social security number":"Numéro d'assurance sociale (NAS)","carrier charges may apply":"Des frais d'opérateur téléphonique peuvent s'appliquer","next available date":"Prochaine date disponible","desired number of bedrooms":"Nombre de chambres à coucher désirées","desired number of bathrooms":"Nombre de salles de bains désirées","number of amenities":"Nombre de commodités","rent specials available at":"Offres spéciales de location disponibles sur","special offers are valid for individual floor plans. for more details, please check each floor plan or contact the property directly.":"Les offres spéciales sont valables pour les plans d'étage individuels. Pour plus de détails, veuillez consulter chaque plan d'étage ou contacter directement la propriété.","apartment number":"Numéro d'appartement","denotes mandatory fields":"indique les champs obligatoires","start your application":"Commencez votre demande","maybe later":"Peut-être plus tard","restrictions":"Restrictions","max weight":"Poids maximum","allowed":"Autorisé","one time fee":"Frais uniques","pet care available":"Soins pour animaux de compagnie disponibles","this site is protected by recaptcha. google":"Ce site est protégé par reCAPTCHA. Google","service":"Service","sorry, there are no apartment listings matching your criteria. please try a broader search! still havent found the apartment of your choice?":"Désolé, il n'y a pas d'annonces d'appartements correspondant à vos critères. Veuillez essayer une recherche plus générale ! Vous n'avez toujours pas trouvé l'appartement de votre choix ?","contact us with your requirement.":"Contactez-nous pour nous faire part de vos besoins.","similar floor plans":"Plans d'étage similaires","you might be interested in other available apartments listed below.":"Vous pourriez être intéressé par d'autres appartements disponibles énumérés ci-dessous.","locate me":"Localisez-moi","error: location access is denied!":"Erreur : L'accès à l'emplacement est refusé !","opens in a new tab":"S'ouvre dans un nouvel onglet","spanish":"Espagnol","translate":"Traduire","register your interest today.":"Enregistrez votre intérêt aujourd’hui.","cookies policy":"Avis sur les témoins","your new home":"Votre nouveau domicile","register your interest today":"Enregistrez votre intérêt aujourd’hui","*indicates required fields.":"*Indique les champs requis.","this site is protected by rechapta. google privacy policy and terms of service apply.":"Ce site est protégé par reCAPTCHA. La politique de confidentialité de Google et les conditions d’utilisation s’appliquent.","what's included?":"Qu'est-ce qui est inclus?","all categories":"Toutes les catégories","saturday:":"Samedi :","press for larger image":"Appuyez pour agrandir l'image","restaurants":"Restaurants","* denotes mandatory fields.":"* indique les champs obligatoires.","this account has a past resident status. any payments made will be processed by 'w+'.":"Ce compte a un statut d'ancien résident. Tout paiement effectué sera traité par « $1 ».","cost estimate":"Estimation du coût","get started by selecting your unit, move-in date, and lease term.":"Commencez par sélectionner votre unité, votre date d’emménagement et la durée du bail.","go back":"Revenez en arrière","select add-ons":"Sélectionner des compléments","10 month":"10 mois","12 month":"12 mois","characters left.":"caractères restants.","6 month":"6 mois","4 month":"4 mois",", and consent to receive essential account messages by email or text. message and data rates may apply.":", et acceptez de recevoir les messages importants concernant votre compte par courriel ou SMS. Des tarifs de messagerie et de données peuvent s’appliquer.","this website does not include a cookie consent mechanism. by continuing to use this site, you accept that cookie preferences cannot be adjusted and that some cookies, necessary for site functionality and marketing, may be used.":"Ce site Web ne comprend pas de mécanisme de consentement aux témoins. En continuant à utiliser ce site, vous acceptez que les préférences en matière de témoins ne puissent pas être modifiées et que certains témoins, nécessaires au fonctionnement du site et à des fins marketing, puissent être utilisés.","please contact the property for apartments pricing.":"Veuillez contacter la propriété pour les prix des appartements","yes, i'd be happy to receive text messages!":"Oui, je serais heureux de recevoir des messages texte!","1 month":"1 mois","5 month":"5 mois","11 month":"11 mois","/mo":"/mois","calculate":"Calculer","region 2":"Région 2","starting at:":"À partir de :","please expand your search criteria or":"Veuillez élargir vos critères de recherche ou","360° tour":"Visite à 360°","apply filters":"APPLIQUER FILTRES","30 min":"30 min.","for a live video tour, take a tour virtually with the leasing age...":"Pour une visite vidéo en direct, faites le tour virtuellement avec l'agent immobilier...","on demand":"SUR DEMANDE","take an online interactive walkthrough.":"Faites une visite virtuelle interactive.","tour in-person with one of our agents.":"Visite en personne avec un de nos agents.","tour with an agent through a video conference.":"Visite avec un agent par vidéoconférence.","video tour":"Visite vidéo","tags:":"Balises :","error: please provide a valid last name.":"Erreur : Veuillez fournir un nom de famille valide.","important:":"IMPORTANT :","last name on id*":"Nom de famille sur la pièce d'identité","please enter your name exactly as it appears on your government-issued photo id":"Veuillez indiquer votre nom tel qu'il apparaît sur votre carte d'identité à photo émise par le gouvernement.","powered by rentcafe":"Actionné par RentCafe","room type":"Type de chambre","room type features":"Caractéristiques du type de chambre","room type name":"Nom du type de chambre","summer booking":"Réservation pour l'été","sunday:":"Dimanche :","# of nights":"Nombre de nuits","children":"Enfants","error: please enter a valid guests value.":"Erreur : Veuillez saisir une valeur valide pour Invités.","error: please enter a valid maximum price value.":"Erreur : Veuillez saisir une valeur de Prix maximum valide.","error: please enter a valid minimum price value.":"Erreur : Veuillez saisir une valeur de Prix minimum valide.","guests":"Invités","the selected check-in date is not valid. please select a future date to proceed.":"La date d'enregistrement sélectionnée n'est pas valide. Veuillez sélectionner une date dans le futur pour continuer.","the selected check-in date is not valid. please select a later date to proceed.":"La date d'enregistrement sélectionnée n'est pas valide. Veuillez sélectionner une date ultérieure pour continuer.","the selected check-in date is not valid. please select an earlier date to proceed.":"La date d'enregistrement sélectionnée n'est pas valide. Veuillez sélectionner une date antérieure pour continuer.","the selected check-out date is not valid. please select a future date to proceed.":"La date de départ sélectionnée n'est pas valide. Veuillez sélectionner une date dans le futur pour continuer.","the selected check-out date is not valid. please select a later date to proceed.":"La date de départ sélectionnée n'est pas valide. Veuillez sélectionner une date ultérieure pour continuer.","the selected check-out date is not valid. please select an earlier date to proceed.":"La date de départ sélectionnée n'est pas valide. Veuillez sélectionner une date antérieure pour continuer.","baths":"Salles de bains","learn more":"En savoir plus","city, zip, address, property name":"Ville, code postal, adresse, nom de la propriété","city, post code, address, property name":"Ville, code postal, adresse, nom de la propriété","bathroom":"Salle de bains","bathrooms":"Salles de bains","rent":"Loyer","done":"Terminé","enabled":"Activé","guest sign in":"Inscription des invités","in home delivery opt-in & notification preferences":"Préférences en matière de consentement et de notification pour la livraison à domicile","in home delivery pickup":"Prise de livraison à domicile","key pick up":"Collecte de clés","key return":"Retour de clés","notify via text message?":"Notifier par message texte ?","opt-in to in home delivery":"Consentement pour la livraison à domicile","please match the requested format.":"Veuillez respecter le format demandé.","please try with the marketing site to unsubscribe the email":"Veuillez essayer avec le site de marketing pour vous désabonner du courriel","regular":"Régulier","reservation cancel":"Annulation de la réservation","reservation confirm":"Confirmation de réservation","reservation creation":"Création de réservation","reservation deny":"Refus de réservation","reservation ended":"Réservation terminée","reservation reschedule":"Report de la réservation","reservation waitlist":"Liste d'attente des réservations","user successfully unsubscribed":"L'utilisateur s'est désabonné avec succès","{number} bathrooms":"{number} salles de bains","{number} bedrooms":"{number} chambres à coucher","{number0} or {number1} bathrooms":"{number0} ou {number1} salles de bains","{number0} or {number1} bedrooms":"{number0} ou {number1} chambres à coucher","{number0}, {number1} or {number2} bathrooms":"{number0}, {number1} ou {number2} salles de bains","{number0}, {number1} or {number2} bedrooms":"{number0}, {number1} ou {number2} chambres à coucher","{number0}, {number1}, {number2} or {number3} bathrooms":"{number0}, {number1}, {number2} ou {number3} salles de bains","{number0}, {number1}, {number2} or {number3} bedrooms":"{number0}, {number1}, {number2} ou {number3} chambres à coucher","{number0}, {number1}, {number2}, {number3} or {number4} bathrooms":"{number0}, {number1}, {number2}, {number3} ou {number4} salles de bains","{number0}, {number1}, {number2}, {number3} or {number4} bedrooms":"{number0}, {number1}, {number2}, {number3} ou {number4} chambres à coucher","studio or":"Studio ou","please enter your email.":"Veuillez saisir votre adresse électronique.","please enter your password below to continue.":"Veuillez saisir votre adresse électronique ci-dessous pour continuer.","relation *":"Relation *","scheduled times":"Heures programmées","send a message":"Envoyer un message","start time":"Heure de début","state/province":"État/Province","vehicle":"Véhicule","you can upload images up to 2mb. file types allowed: .gif, .jpeg, .png, .jpg, .pjpeg, .bmp, .x-png":"Vous pouvez télécharger des images jusqu'à 2 Mo. Types de fichiers autorisés : .gif, .jpeg, .png, .jpg, .pjpeg, .bmp, .x-png","you currently have an active payment that is pending processing with this credit card. once the payment has been processed, you will be able to delete this credit card. please check back later.":"Vous avez actuellement un paiement actif qui est en attente de traitement avec cette carte de crédit. Une fois le paiement traité, vous pourrez supprimer cette carte de crédit. Veuillez revenir plus tard.","(waitlist)":"(liste d'attente)","1 bed, 1 bath":"1 chambre, 1 salle de bain","2 beds, 1 bath":"2 chambres, 1 salle de bain","3 beds, 1 bath":"3 chambres, 1 salle de bain","3 beds, 1,5 baths":"3 chambres, 1,5 salles de bain","3 beds, 1.5 baths":"3 chambres, 1,5 salles de bain","4 beds, 1,5 baths":"4 chambres, 1,5 salles de bain","4 beds, 1.5 baths":"4 chambres, 1,5 salles de bain","4 beds, 2 baths":"4 chambres, 2 salles de bain","studio, 1 bath":"Studio, 1 salle de bain",". this site is protected by recaptcha. the google":". Ce site est protégé par reCAPTCHA. Google","error: please agree to the privacy policy & terms and conditions.":"Erreur : Veuillez accepter la politique de confidentialité et les conditions générales.","view map":"Afficher la carte","add-ons":"Compléments","property overview":"Aperçu de la propriété","budget":"Budget","please select the room":"Veuillez sélectionner la chambre","find my floor plan":"Trouvez mon plan d’étage","view this room":"Voir cette chambre","room detail":"Détails de la chambre","by continuing, you agree to the":"En continuant, vous acceptez les","email address and phone number are required for essential messages related to your account.":"L’adresse électronique et le numéro de téléphone sont obligatoires pour les messages importants liés à votre compte.","property features":"Caractéristiques de la propriété","in the next few months.":"Dans les prochains mois.","describe your budget":"Décrivez votre budget","send me special offers by email and text. we respect your inbox, you can opt-out anytime.":"Envoyez-moi des offres spéciales par courriel et SMS. Nous respectons votre boîte de réception, vous pouvez vous désabonner à tout moment.","view the brochure":"Afficher la brochure","schedule tour":"Programmer une visite","property details":"Détails de la propriété","similar accommodations":"Hébergements similaires","available times on":"Heures disponibles le","&":"et","by checking this box, you are agreeing to the":"En cochant cette case, vous acceptez les","in the next few months":"Dans les prochains mois","accept notice":"Accepter le préavis","no add-ons":"Aucun complément","3 month":"3 mois","show less":"Afficher moins","personalize your cost":"Personnaliser votre coût","8 month":"8 mois","9 month":"9 mois","we’ll send essential messages by email and text. you can opt out of text messages anytime.":"Nous vous enverrons les messages importants par courriel et par SMS. Vous pouvez vous désabonner des SMS à tout moment.","14 month":"14 mois","7 month":"7 mois","15 month":"15 mois","estimate your costs":"Estimer vos coûts","region 1":"Région 1","base rent":"Loyer de base","email my estimate":"Envoyer mon devis par courriel","2 month":"2 mois","i also want to receive offers and promotions.":"Je souhaite également recevoir des offres et des offres spéciales.","13 month":"13 mois","2 bedroom":"2 chambres à coucher","hey, don't miss out on this offer!":"Hé, ne ratez pas cette offre!","this is an estimate only. actual costs may vary.":"Il s'agit d'une estimation. Les coûts réels peuvent varier.","optional":"Facultatif","select academic term":"Sélectionnez une période académique","refundable":"Remboursable","you selected a {gradename} room for the {ayname} for {atname} ({atrange}).":"Vous avez sélectionné une chambre {gradeName} pour le {ayName} pour {atName} ({atRange}).","select room type":"Sélectionner le type de chambre","your details":"Vos détails","move out":"Déménagement","other charges":"Autres charges","total costs over":"Coûts totaux sur","another unit?":"Une autre unité?","delayed move-out":"Déménagement différé","no add-ons selected":"Aucun complément sélectionné","alternative room":"Chambre alternative","rent price per week":"Loyer hebdomadaire","you are now in our waitlist. we will contact you shortly.":"Vous êtes désormais inscrit sur notre liste d'attente. Nous vous contacterons sous peu.","total costs over the academic term.":"Coût total pour la période académique.","late start":"Début tardif","error: this field is required.":"Erreur : Ce champ est requis.","no, thank you.":"Non, merci...","required":"Requis","send estimate":"Envoyer une estimation","no units available":"Aucune unité disponible.","join the waitlist":"INSCRIVEZ-VOUS SUR LA LISTE D'ATTENTE","submitting...":"Soumission...","early move-out":"Déménagement anticipé","total costs":"Coûts totaux","one time":"Une fois","i agree to receive updates.":"J'accepte de recevoir des mises à jour.","estimated total cost with fees and add-ons.":"Coût total estimé, avec les frais et les compléments.","sq. m.":"m²","selected add-ons":"COMPLÉMENTS SÉLECTIONNÉS","join our waitlist for a unit":"Inscrivez-vous sur notre liste d'attente pour une unité","yes, i am interested":"Oui, je suis intéressé","plan ahead by estimating your costs and additional fees based on your selected room.":"Préparez-vous à l'avance en estimant vos coûts et les frais supplémentaires en fonction de la chambre que vous avez choisie.","inquire for more details":"Renseignez-vous pour plus de détails","sending...":"Envoyant...","* indicates required fields":"* Indique les champs requis","min rent":"Loyer minimum","we have the perfect unit for you!":"Nous avons l'unité parfaite pour vous!","sorry, no units available for this floorplan at the moment.":"Désolé, aucune unité n'est disponible pour ce plan d'étage pour le moment.","one-time":"Une fois","move-out":"DÉMÉNAGEMENT","no add-ons available.":"Aucun complément disponible.","included costs":"COÛTS INCLUS","would you be interested in an alternative room if your selected room is not available?":"Seriez-vous intéressé(e) par une autre chambre si celle que vous avez choisie n'était pas disponible?","move-in":"EMMÉNAGEMENT","error: please verify you are not a robot.":"Erreur : Veuillez vérifier que vous n'êtes pas un robot.","application":"Application","included by default":"Inclus par défaut","included in rent":"Inclus dans le loyer","we'll send you an overview of your estimate for this room.":"Nous vous enverrons un résumé de votre estimation pour cette chambre.","week":"semaine","application costs":"Coûts de demande","yes, absolutely!":"Oui, absolument!","recurring - monthly":"Récurrent – Mensuel","estimated total cost":"Coût total estimé","leasing special applied":"L'offre spéciale de location est appliquée","book now to avail our":"Réservez dès maintenant pour profiter de notre","total rent":"LOYER TOTAL","no, i am not interested":"Non, cela ne m'intéresse pas","select academic year":"Sélectionnez l'année académique","select your add-ons":"Sélectionner vos compléments","hassle free move-out":"Un déménagement sans problème","please check your inbox.":"Veuillez vérifier votre boîte de réception.","recurring by instalment":"Récurrent par versement","view all available units":"Voir toutes les unités disponibles","an error occurred. please try again.":"Une erreur s'est produite. Veuillez réessayer.","join our waitlist for this room and we'll contact you about its availability.":"Inscrivez-vous sur notre liste d'attente pour cette chambre et nous vous contacterons dès qu'elle sera disponible.","no cost":"Aucun coût","room availability":"Disponibilité de la chambre","error: please enter a valid email.":"Erreur : Veuillez saisir une adresse électronique valide.","no application fees.":"Aucuns frais demande","loading...":"Chargement...","sq.m.:":"M² :","estimate emailed.":"Estimation envoyée par courriel.","recurring":"Récurrent","leasing special":"Offre spéciale de location","virtual tour":"Visite virtuelle","delayed move-in":"Emménagement différé","add-ons and extras update your total cost.":"Les compléments et les suppléments modifient votre coût total.","add-on selected":"Ajouter le complément sélectionné","an unexpected error has occurred. please try again.":"Une erreur inattendue s’est produite. Veuillez réessayer.","unable to send estimate. please try again.":"Impossible d'envoyer l'estimation. Veuillez réessayer.","no other charges.":"Aucune autre charge.","early move-in":"Emménagement anticipé","view room":"Voir la chambre","add-ons selected":"Compléments sélectionnés","academic terms":"Périodes académiques","the academic term has not yet started. you can explore different move-in dates here to estimate your costs. but when you begin your application, your move-in date will default to the academic term start date.":"La période académique n’a pas encore commencé. Vous pouvez explorer différentes dates d’emménagement ici pour estimer vos coûts. Cependant, lorsque vous commencerez votre demande, votre date d’emménagement sera automatiquement fixée à la date de début de la période académique.","starting late?":"Début différé?","want to live with your friends?":"Souhaitez-vous vivre avec vos amis?","total costs based on selected academic term and move-in date.":"Total des coûts en fonction de la période académique et de la date d’emménagement sélectionnées.","feb":"Févr.","guarantor login":"Connexion du garant","add another":"Ajouter un autre","jan":"Janv.","oct":"Oct.","nights":"Nuits","pricing breakdown":"Ventilation des prix","select check-in date first":"Veuillez d’abord sélectionner une date d’enregistrement","cost estimate unavailable":"Estimation des coûts indisponible","please select a check-in date.":"Veuillez sélectionner une date d’enregistrement.","stay must be {nights} nights or fewer":"Le séjour doit durer {nights} nuits ou moins","i want to reserve for friends.":"Je souhaite réserver pour des amis.","see what's included, what's extra":"Voir ce qui est inclus et ce qui est en supplément","checking availability…":"Vérification de la disponibilité en cours","result":"résultat","error: please provide a valid name.":"Erreur : veuillez fournir un nom valide.","please select a check-out date.":"Veuillez sélectionner une date de départ.","max 10 reached":"Limite de 10 atteinte","nov":"Nov.","short stay rooms":"Chambres pour séjours courts","you are not adding any friends.":"Vous n’ajoutez aucun ami.","minimum stay is {nights} nights":"La durée minimale de séjour est de {nights} nuits.","same nearby locations apply":"Les mêmes emplacements à proximité s’appliquent","maximum of {n} guests allowed.":"Maximum de {n} invités autorisés.","stay must be 1 night or fewer":"Le séjour doit durer 1 nuit ou moins","results":"résultats","check-out":"Départ","jun":"Juin","please enter a valid email.":"Veuillez saisir une adresse électronique valide.","mar":"Mars","price breakdown":"Ventilation des prix","please select both check-in and check-out dates.":"Veuillez sélectionner les dates d’enregistrement et de départ.","choose your dates":"Choisir vos dates","estimate my costs":"Estimer mes coûts","dec":"Déc.","no properties match the area you've drawn. try a wider radius or a different shape.":"Aucune propriété ne correspond à la zone que vous avez définie. Essayez avec un rayon plus large ou une autre forme.","minimum stay is 1 night":"La durée minimale de séjour est de 1 nuit","rent price":"Prix du loyer","grade features":"Fonctions de la classe","select your room":"Sélectionner votre chambre","sep":"Sept.","guest":"Invité","city or property":"Ville ou propriété","nearby":"À PROXIMITÉ","apr":"Avr.","error:":"Erreur :","certificates":"Certificats","{count} room types":"{count} types de chambre","group booking":"Réservation de groupe","360 tour":"Visite à 360°","jul":"Juil.","short stay availability":"Disponibilité pour séjours courts","1 room type":"1 type de chambre","compare room types":"Comparer les types de chambres","night":"Nuit","view document":"Voir le document","weekend":"Fin de semaine","your costs may vary based on your move-in date.":"Vos coûts peuvent varier en fonction de votre date d’emménagement.","use your mouse or touch to navigate":"Utilisez votre souris ou votre doigt pour naviguer","limited availability":"Disponibilité limitée","you can add up to 10 friends":"Vous pouvez ajouter jusqu’à 10 amis.","please enter a minimum of 2 characters.":"Veuillez saisir un minimum de 2 caractères.","the academic term has already started. you can select your preferred move-in date, and your costs will be estimated based on that date.":"La période académique a déjà commencé. Vous pouvez sélectionner votre date d’emménagement préférée, et vos coûts seront estimés en fonction de cette date.","check-in":"Enregistrement","you already entered this email address.":"Vous avez déjà saisi cette adresse électronique.","selected term":"période sélectionnée","card view":"Vue de la carte","check-out must be after check-in.":"La date de départ doit être après la date d’enregistrement.","same property features apply":"Les mêmes fonctions de la propriété s’appliquent","stay must be at least 1 night":"Le séjour doit durer au moins 1 nuit","# of persons":"Nbre de personnes","this value is required.":"Cette valeur est requise.","average per night":"Prix moyen par nuit","selected academic term":"période académique sélectionnée","continue booking":"Poursuivre la réservation","we're experiencing higher than normal traffic. please try again in a moment.":"Notre trafic est actuellement plus élevé que d'habitude. Veuillez réessayer dans quelques instants.","stay must be at least {nights} nights":"Le séjour doit durer au moins {nights} nuits","you are booking with":"Vous réservez avec","nightly rates":"Tarifs par nuit","aug":"Août","save group booking":"Enregistrer la réservation de groupe","maximum of 1 guest allowed.":"Maximum de 1 invité autorisé.","maximum stay is 1 night":"La durée maximale de séjour est de 1 nuit","saving would remove previously saved details.":"La sauvegarde supprimera les détails précédemment enregistrés.","maximum stay is {nights} nights":"La durée maximale de séjour est de {nights} nuits.","/ night":"/ nuit","no properties match your dates. try different dates or disable the date filter.":"Aucune propriété ne correspond à vos dates. Essayez d’autres dates ou désactivez le filtre de date.",",":",","are you a student?":"Êtes-vous un étudiant ?*"}; </script><script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.flatpickr.134322934460000000.js"></script><script src="chrome-extension://liecbddmkiiihnedobmlmillhodjkdmb/js/recordConsoleEvents.js"></script></head> | |
| 66 | + | |
| 67 | +<body id="innerpage" data-new-gr-c-s-check-loaded="14.1310.0" data-gr-ext-installed=""> | |
| 68 | + | |
| 69 | +<!-- Google Tag Manager (noscript) --> | |
| 70 | +<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M9CFHKM" height="0" width="0" style="display:none;visibility:hidden" lang=""></iframe></noscript> | |
| 71 | +<!-- End Google Tag Manager (noscript) --> | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + <style>a#skip-nav{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}a#skip-nav:focus,a#skip-nav:active{position:fixed;bottom:10px;left:10px;width:auto;height:auto;text-decoration:underline;background:white;padding:5px 20px 10px;z-index:100000}</style> | |
| 81 | + | |
| 82 | + | |
| 83 | +<a id="skip-nav" href="#main-content" lang="">Passer au contenu principal</a> | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + <nav id="ysi-mobile-navbar" aria-label="main navigation" class="ysi-navbar-mobile navbar w-100 d-xl-none navbar-light" style="width: 100%; background-color: rgba(74,166,202,1); color: #ffffff; " aria-hidden="true"> | |
| 98 | + <button id="nav-btn" class="navbar-toggler collapsed " style=" color: #ffffff; " type="button" data-toggle="collapse" data-target="#navbarMobileCollapse" aria-controls="navbarMobileCollapse" aria-expanded="false" aria-label="Toggle navigation" aria-haspopup="true" lang=""> | |
| 99 | + <svg class="ysi-svg-icon ysi-svg-icon-bars" width="1em" height="1em" viewBox="0 0 256 256"><path d="m 24,66 h 208 c 4,0 8,-4 8,-8 V 38 c 0,-4 -4,-8 -8,-8 H 24 c -4,0 -8,4 -8,8 v 20 c 0,4 4,8 8,8 z m 0,80 h 208 c 4,0 8,-4 8,-8 v -20 c 0,-4 -4,-8 -8,-8 H 24 c -4,0 -8,4 -8,8 v 20 c 0,4 4,8 8,8 z m 0,80 h 208 c 4,0 8,-4 8,-8 v -20 c 0,-4 -4,-8 -8,-8 H 24 c -4,0 -8,4 -8,8 v 20 c 0,4 4,8 8,8 z"></path></svg> | |
| 100 | + <svg class="ysi-svg-icon ysi-svg-icon-times" width="1em" height="1em" viewBox="0 0 256 256"><rect transform="rotate(45, 128, 128)" width="244" height="44.8" x="6" y="108" rx="12" ry="12"></rect><rect transform="rotate(-45, 128, 128)" width="244" height="44.8" x="6" y="108" rx="12" ry="12"></rect></svg> | |
| 101 | + </button> | |
| 102 | + <div class="navbar-right pr-2" lang=""> | |
| 103 | + | |
| 104 | + | |
| 105 | + <div class="dropdown ysi-translate-widget ysi-translate-dropdown px-2 " lang=""> | |
| 106 | + <a data-selenium-id="translate" class="dropdown-toggle color-inherit text-decoration-none" href="#" onclick="elementLanguageFocus()" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" lang=""> | |
| 107 | + <span aria-hidden="true" class="fas fa-globe-americas" lang=""></span> <span class="sr-only" lang="">Langue</span> | |
| 108 | + </a> | |
| 109 | + <ul class="dropdown-menu dropdown-menu-right" lang=""> | |
| 110 | + | |
| 111 | + <li lang=""> | |
| 112 | + <a data-selenium-id="lang-1" class="dropdown-item px-3 language-drowndown-item" href="javascript:getPack('fr-ca')" aria-label="French - Canada Language" lang=""> | |
| 113 | + <span class="ml-2" lang="">Français - Canada</span> | |
| 114 | + </a> | |
| 115 | + </li> | |
| 116 | + <li lang=""> | |
| 117 | + <a data-selenium-id="lang-1" class="dropdown-item px-3 language-drowndown-item" href="javascript:getPack('en')" aria-label="English Language" lang=""> | |
| 118 | + <span class="ml-2" lang="">Anglais</span> | |
| 119 | + </a> | |
| 120 | + </li> | |
| 121 | + </ul> | |
| 122 | + </div> | |
| 123 | + <input type="hidden" id="translate-request-verification-token" name="translate-request-verification-token" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ1n9pcyx_6J8afX5LduiIeOfnD9K1dcI3YWRdxA9zJKS4IlGjAzrTw2ejzeey-kWRTEl7UgHDpHQeiZ-Z-4sOcVPD7Fn7S54U5aH-ZzbT8talPeuPsjB8Cno84ObMTG7ug"> | |
| 124 | + <script type="text/javascript"> | |
| 125 | + ysi.SiteId = 'NDc1ODQ0-LVf1bALv%2fwU%3d'; | |
| 126 | + ysi.registerCallback(function () { | |
| 127 | + var sourceLanguage = ysi.cookie.read('stl_' + ysi.SiteId); | |
| 128 | + if(sourceLanguage == null || sourceLanguage != 'fr-ca'){ | |
| 129 | + ysi.cookie.create('stl_' + ysi.SiteId, 'fr-ca', 1000); | |
| 130 | + ysi.cookie.create('gtal_' + ysi.SiteId, 'fr-ca', 1000); | |
| 131 | + } | |
| 132 | + }); | |
| 133 | + </script> | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + <div class="dropdown ysi-login-link-widget ysi-login-dropdown d-inline" style="max-width: max-content;" lang="" aria-hidden="true"> | |
| 141 | + | |
| 142 | + <a data-selenium-id="loginlinks" class="dropdown-toggle color-inherit text-decoration-none " href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" style="" lang=""> | |
| 143 | + <svg class="ysi-svg-icon ysi-svg-icon-user" width="1em" height="1em" viewBox="0 0 256 256"><path d="m 128,128 c 35.35,0 64,-28.7 64,-64 C 192,28.7 163.4,0 128,0 92.7,0 64,28.7 64,64 c 0,35.4 28.65,64 64,64 z m 44.8,16 h -8.4 c -11.1,5.1 -23.5,8 -36.5,8 -13,0 -25.3,-2.9 -36.5,-8 H 83.2 C 46.1,144 16,174.1 16,211.2 V 232 c 0,13.3 10.8,24 24,24 h 176 c 13.3,0 24,-10.8 24,-24 V 211.2 C 240,174.1 209.9,144 172.8,144 Z"></path></svg> | |
| 144 | + <span class="sr-only" lang="">Connexion</span> | |
| 145 | + </a> | |
| 146 | + | |
| 147 | + <div class="dropdown-menu dropdown-menu-right" lang=""> | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + <ul class="dropdown-list list-unstyled mb-0" lang=""> | |
| 152 | + <li lang=""> | |
| 153 | + <a data-selenium-id="residentlogin" class="dropdown-item track-resident-login" href="https://aaltosuites.securecafenet.com/residentservices/aalto/userlogin?dropdownlangid=38" rel="noopener" target="_Blank" lang="">Résident<span class="sr-only" lang="">Login Opens in a new tab</span> </a> | |
| 154 | + </li> | |
| 155 | + | |
| 156 | + <li lang=""> | |
| 157 | + <a data-selenium-id="applicantlogin" class="dropdown-item track-applicant-login" href="https://aaltosuites.securecafe.com/onlineleasing/aalto/guestlogin.aspx?dropdownlangid=38&PropLeadSource_2384767=portal" rel="noopener" target="_Blank" lang="">Demandeur<span class="sr-only" lang="">Login Opens in a new tab</span> </a> | |
| 158 | + </li> | |
| 159 | + | |
| 160 | + </ul> | |
| 161 | + </div> | |
| 162 | + </div> | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + <style>.mobile-only .click-to-call{display:none}</style> | |
| 168 | + | |
| 169 | + <div class="ysi-phone-widget ysi-phone-wrapper mobile-only d-inline ml-2 " lang=""> | |
| 170 | + <div class="d-inline-flex" lang=""> | |
| 171 | + <a data-selenium-id="click_to_call" onclick="fireGaPhone()" href="tel:+1 819-809-9131" aria-label="Call Aalto at +1 819-809-9131" class="ysi-phone-number click-to-call-href color-inherit " lang=""> | |
| 172 | + <svg class="ysi-svg-icon mobile-phone-icon" width="1em" height="1em" viewBox="0 0 256 256"><path d="M 9.3,12.3 61.3,0.3 c 5.6,-1.3 11.5,1.6 13.7,6.9 L 99,63.3 c 2.1,4.9 0.7,10.6 -3.4,14 L 65.3,102 c 18,38.3 49.4,70.2 88.6,88.6 l 24.8,-30.3 c 3.4,-4.1 9.1,-5.5 14,-3.4 l 56,24 c 5.3,2.3 8.3,8.1 7,13.8 L 243.7,246.7 C 242.4,252.1 237.6,256 232,256 103.9,256 0,152.3 0,24 0,18.4 3.8,13.6 9.3,12.3 Z"></path></svg> | |
| 173 | + <span class="click-to-call" lang="">+1 819-809-9131</span> | |
| 174 | + </a> | |
| 175 | + | |
| 176 | + </div> | |
| 177 | + </div> | |
| 178 | + <script> | |
| 179 | + function fireGaPhone() { | |
| 180 | + if (typeof gtag != 'undefined') { | |
| 181 | + var myPage = location.pathname.replace("/", ""); | |
| 182 | + if (myPage == "") { myPage = "index"; } | |
| 183 | + if (false ) { | |
| 184 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 185 | + gtag('event', 'phone_call', { 'property_name': propertyName, 'page_name': document.title, 'page_url': window.location.href, 'header_phone_number': '+1 819-809-9131'}); | |
| 186 | + } | |
| 187 | + gtag('event', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 188 | + gtag('rc.send', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 189 | + } | |
| 190 | + } | |
| 191 | + </script> | |
| 192 | + | |
| 193 | + </div> | |
| 194 | + <div class="collapse navbar-collapse" id="navbarMobileCollapse" lang=""> | |
| 195 | + <ul class="nav navbar-nav pt-3 custom-scroll" lang=""> | |
| 196 | + <li class="nav-item" lang=""> | |
| 197 | + <a data-selenium-id="mobile_indexaspx_MenuLink" href="/" class="nav-link" lang="">Accueil</a> | |
| 198 | + </li> | |
| 199 | + <li class="nav-item active" lang=""> | |
| 200 | + <a data-selenium-id="mobile_floorplansaspx_MenuLink" href="/floorplans" aria-current="page" class="nav-link" lang="">Plans d’étage et prix</a> | |
| 201 | + </li> | |
| 202 | + <li class="nav-item" lang=""> | |
| 203 | + <a data-selenium-id="mobile_amenitiesaspx_MenuLink" href="/amenities" class="nav-link" lang="">Commodités</a> | |
| 204 | + </li> | |
| 205 | + <li class="nav-item" lang=""> | |
| 206 | + <a data-selenium-id="mobile_neighbourhoodaspx_MenuLink" href="/neighbourhood" class="nav-link" lang="">Voisinage</a> | |
| 207 | + </li> | |
| 208 | + <li class="nav-item" lang=""> | |
| 209 | + <a data-selenium-id="mobile_photogalleryaspx_MenuLink" href="/photogallery" class="nav-link" lang="">Gallerie</a> | |
| 210 | + </li> | |
| 211 | + <li class="nav-item" lang=""> | |
| 212 | + <a data-selenium-id="mobile_scheduletouraspx_MenuLink" href="/scheduletour" class="nav-link" lang="">Planifier une visite</a> | |
| 213 | + </li> | |
| 214 | + <li class="nav-item" lang=""> | |
| 215 | + <a data-selenium-id="mobile_contactusaspx_MenuLink" href="/contactus" class="nav-link" lang="">Contactez-nous</a> | |
| 216 | + </li> | |
| 217 | + </ul> | |
| 218 | + </div> | |
| 219 | + </nav> | |
| 220 | + | |
| 221 | + | |
| 222 | + | |
| 223 | +<script> | |
| 224 | +window.addEventListener("load", () => { | |
| 225 | + document.querySelectorAll('button.navbar-toggler[aria-expanded]').forEach((hamburger) => { | |
| 226 | + const update = () => { | |
| 227 | + hamburger.setAttribute( | |
| 228 | + "aria-label", | |
| 229 | + hamburger.getAttribute("aria-expanded") === "true" | |
| 230 | + ? "Close navigation" | |
| 231 | + : "Toggle navigation" | |
| 232 | + ); | |
| 233 | + }; | |
| 234 | + | |
| 235 | + update(); | |
| 236 | + | |
| 237 | + new MutationObserver(update).observe(hamburger, { | |
| 238 | + attributes: true, | |
| 239 | + attributeFilter: ["aria-expanded"], | |
| 240 | + }); | |
| 241 | + }); | |
| 242 | +}); | |
| 243 | +</script> | |
| 244 | + | |
| 245 | + | |
| 246 | + | |
| 247 | + <header><div data-offset-top="0" id="stickyTopSentinel0" class="stickytopsentinel" style="position: absolute; left: 0px; width: 1px; height: 1px; z-index: 0;"></div><div class="p-xl-3 se-custom-bgcolor ysi-row d-none d-xl-flex sticky-top left-0 right-0" style="background-color:rgba(74,166,202,1) !important" lang=""><div class="container-fluid" lang=""><div class="row" lang=""><div class="justify-content-xl-start justify-content-center align-items-center flex-row d-flex text-center px-1 pt-md-0 pt-lg-2 pt-xl-0 col-12 col-xl-4 col-lg-12" lang=""><style>#logo769 img{box-sizing:content-box}@media (min-width: 992px){#logo769 img{width:227px}}</style><div class="ysi-logo-widget ysi-logo-wrapper p-2" data-widget-order="1" lang="" aria-hidden="false"><a href="/" class="d-inline-block" lang=""><picture id="logo769"> | |
| 248 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1614,h_213,c_crop/q_auto,f_auto,c_fit,w_227,h_30,dpr_2/s3/2/144684/aalto(1).png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1614,h_213,c_crop/q_auto,f_auto,c_limit,w_227,h_30/s3/2/144684/aalto(1).png"> | |
| 249 | + | |
| 250 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1614,h_213,c_crop/q_auto,f_auto,c_fit,w_182,h_24,dpr_2/s3/2/144684/aalto(1).png 2x"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1614,h_213,c_crop/q_auto,f_auto,c_limit,w_182,h_24/s3/2/144684/aalto(1).png" class="d-inline-block img-fluid" alt="A black and white image of a person." width="182" height="24"> | |
| 251 | +</picture> | |
| 252 | +</a></div> | |
| 253 | + | |
| 254 | +</div><div class="text-white justify-content-end align-items-center flex-row d-none d-xl-flex text-center py-0 pr-lg-6 col-12 col-xl-8 col-lg-12 rgt-nav" lang=""> | |
| 255 | + | |
| 256 | + | |
| 257 | +<div class="ysi-button-widget ysi-button-wrapper" lang=""> | |
| 258 | + <a data-selenium-id="btn-01" class="btn letter-spacing-1 color-inherit font-heading px-4 py-0 text-lg btn-sm btn-link" href="/scheduletour" style="" lang="">VISITEZ LES LIEUX</a> | |
| 259 | +</div> | |
| 260 | + | |
| 261 | + | |
| 262 | + | |
| 263 | +<div class="ysi-button-widget ysi-button-wrapper" lang=""> | |
| 264 | + <a data-selenium-id="ApplicantLogin" class="btn px-4 py-0 letter-spacing-1 font-heading text-lg btn-link" href="https://aaltosuites.securecafe.com/onlineleasing/aalto/guestlogin.aspx?PropLeadSource_2384767=portal" style="color: #ffffff !important;" target="_blank" rel="noopener" lang="">PORTAIL DES DEMANDEURS<span class="sr-only" lang="">Login Opens in a new tab</span> | |
| 265 | + </a> | |
| 266 | +</div> | |
| 267 | + | |
| 268 | + | |
| 269 | + | |
| 270 | + | |
| 271 | +<div class="ysi-button-widget ysi-button-wrapper" lang=""> | |
| 272 | + <a data-selenium-id="ResidentLogin" class="btn px-4 py-0 letter-spacing-1 font-heading text-lg btn-link" href="https://aaltosuites.securecafenet.com/residentservices/aalto/userlogin" style="color: #ffffff !important;" target="_blank" rel="noopener" lang="">PORTAIL DES RÉSIDENTS<span class="sr-only" lang="">Login Opens in a new tab</span> | |
| 273 | + </a> | |
| 274 | +</div> | |
| 275 | + | |
| 276 | + | |
| 277 | + <div class="dropdown ysi-translate-widget ysi-translate-dropdown px-2 d-none d-lg-flex" lang=""> | |
| 278 | + <a data-selenium-id="translate" class="dropdown-toggle color-inherit " href="#" onclick="elementLanguageFocus()" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" lang=""> | |
| 279 | + <span aria-hidden="true" class="fas fa-globe-americas" lang=""></span> <span class="" lang="">Langue</span> | |
| 280 | + </a> | |
| 281 | + <ul class="dropdown-menu " lang=""> | |
| 282 | + | |
| 283 | + <li lang=""> | |
| 284 | + <a data-selenium-id="lang-1" class="dropdown-item px-3 language-drowndown-item" href="javascript:getPack('fr-ca')" aria-label="French - Canada Language" lang=""> | |
| 285 | + <span class="ml-2" lang="">Français - Canada</span> | |
| 286 | + </a> | |
| 287 | + </li> | |
| 288 | + <li lang=""> | |
| 289 | + <a data-selenium-id="lang-1" class="dropdown-item px-3 language-drowndown-item" href="javascript:getPack('en')" aria-label="English Language" lang=""> | |
| 290 | + <span class="ml-2" lang="">Anglais</span> | |
| 291 | + </a> | |
| 292 | + </li> | |
| 293 | + </ul> | |
| 294 | + </div> | |
| 295 | + <input type="hidden" id="translate-request-verification-token" name="translate-request-verification-token" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ1n9pcyx_6J8afX5LduiIeOfnD9K1dcI3YWRdxA9zJKS4IlGjAzrTw2ejzeey-kWRTEl7UgHDpHQeiZ-Z-4sOcVPD7Fn7S54U5aH-ZzbT8talPeuPsjB8Cno84ObMTG7ug"> | |
| 296 | + <script type="text/javascript"> | |
| 297 | + ysi.SiteId = 'NDc1ODQ0-LVf1bALv%2fwU%3d'; | |
| 298 | + ysi.registerCallback(function () { | |
| 299 | + var sourceLanguage = ysi.cookie.read('stl_' + ysi.SiteId); | |
| 300 | + if(sourceLanguage == null || sourceLanguage != 'fr-ca'){ | |
| 301 | + ysi.cookie.create('stl_' + ysi.SiteId, 'fr-ca', 1000); | |
| 302 | + ysi.cookie.create('gtal_' + ysi.SiteId, 'fr-ca', 1000); | |
| 303 | + } | |
| 304 | + }); | |
| 305 | + </script> | |
| 306 | + | |
| 307 | +</div><div class="mt-xl-0 my-3 mr-2 text-white col-12 offset-0 d-flex justify-content-end align-items-center flex-column text-center col-lg-12 position-fixed top-0 right-0 p-0 w-auto navbutton-z-index" lang=""> <style> | |
| 308 | + #navbarCollapse .nav.navbar-nav { | |
| 309 | + background-color: #191f31; | |
| 310 | + } | |
| 311 | + </style> | |
| 312 | + <nav id="ysi-navbar" aria-label="main navigation" class="ysi-navbar navbar text-uppercase justify-content-end navbar-dark" style="" aria-hidden="false"> | |
| 313 | + <button class="navbar-toggler collapsed navbutton-z-index " type="button" data-selenium-id="NavigationMenu" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation" style="background-color: inherit; color: inherit; fill: inherit !important; " lang=""> | |
| 314 | + <span aria-hidden="true" class="fas fa-bars" lang=""></span> <span aria-hidden="true" class="fas fa-times" lang=""></span> | |
| 315 | + </button> | |
| 316 | + <div class="navbar-collapse collapse navbar-z-index position-fixed left-0 right-0 top-0 bottom-0 nav-h-100" style="width: 100%; " id="navbarCollapse" lang=""> | |
| 317 | + <ul class="nav navbar-nav font-heading custom-scroll os-theme-light nav-x-center nav-y-center py-4 " lang=""> | |
| 318 | + <li class="nav-item" lang=""> | |
| 319 | + <a data-selenium-id="indexaspx_MenuLink" href="/" class="nav-link" lang="">Accueil</a> | |
| 320 | + </li> | |
| 321 | + <li class="nav-item active" lang=""> | |
| 322 | + <a data-selenium-id="floorplansaspx_MenuLink" href="/floorplans" aria-current="page" class="nav-link" lang="">Plans d’étage et prix</a> | |
| 323 | + </li> | |
| 324 | + <li class="nav-item" lang=""> | |
| 325 | + <a data-selenium-id="amenitiesaspx_MenuLink" href="/amenities" class="nav-link" lang="">Commodités</a> | |
| 326 | + </li> | |
| 327 | + <li class="nav-item" lang=""> | |
| 328 | + <a data-selenium-id="neighbourhoodaspx_MenuLink" href="/neighbourhood" class="nav-link" lang="">Voisinage</a> | |
| 329 | + </li> | |
| 330 | + <li class="nav-item" lang=""> | |
| 331 | + <a data-selenium-id="photogalleryaspx_MenuLink" href="/photogallery" class="nav-link" lang="">Gallerie</a> | |
| 332 | + </li> | |
| 333 | + <li class="nav-item" lang=""> | |
| 334 | + <a data-selenium-id="scheduletouraspx_MenuLink" href="/scheduletour" class="nav-link" lang="">Planifier une visite</a> | |
| 335 | + </li> | |
| 336 | + <li class="nav-item" lang=""> | |
| 337 | + <a data-selenium-id="contactusaspx_MenuLink" href="/contactus" class="nav-link" lang="">Contactez-nous</a> | |
| 338 | + </li> | |
| 339 | + </ul> | |
| 340 | + </div> | |
| 341 | + </nav> | |
| 342 | + | |
| 343 | + | |
| 344 | + | |
| 345 | + | |
| 346 | +<script> | |
| 347 | +window.addEventListener("load", () => { | |
| 348 | + document.querySelectorAll('button.navbar-toggler[aria-expanded]').forEach((hamburger) => { | |
| 349 | + const update = () => { | |
| 350 | + hamburger.setAttribute( | |
| 351 | + "aria-label", | |
| 352 | + hamburger.getAttribute("aria-expanded") === "true" | |
| 353 | + ? "Close navigation" | |
| 354 | + : "Toggle navigation" | |
| 355 | + ); | |
| 356 | + }; | |
| 357 | + | |
| 358 | + update(); | |
| 359 | + | |
| 360 | + new MutationObserver(update).observe(hamburger, { | |
| 361 | + attributes: true, | |
| 362 | + attributeFilter: ["aria-expanded"], | |
| 363 | + }); | |
| 364 | + }); | |
| 365 | +}); | |
| 366 | +</script> | |
| 367 | + | |
| 368 | +</div></div></div></div><div class=" ysi-row position-relative" lang=""><div class="container-fluid" lang=""><div class="row" lang=""><div class="pt-xl-0 pt-lg-2 pt-md-0 py-2 px-1 se-custom-bgcolor col-12 offset-0 d-flex justify-content-center align-items-center flex-row text-center col-lg-12 d-xl-none justify-content-xl-start border-top border-1 border-secondary" style="background-color:rgba(74,166,202,1) !important" lang=""><style>#logo179 img{box-sizing:content-box}@media (min-width: 992px){#logo179 img{width:227px}}</style><div class="ysi-logo-widget ysi-logo-wrapper p-2" data-widget-order="1" lang="" aria-hidden="true"><a href="/" class="d-inline-block" lang=""><picture id="logo179"> | |
| 369 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1614,h_213,c_crop/q_auto,f_auto,c_fit,w_227,h_30,dpr_2/s3/2/144684/aalto(1).png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1614,h_213,c_crop/q_auto,f_auto,c_limit,w_227,h_30/s3/2/144684/aalto(1).png"> | |
| 370 | + | |
| 371 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1614,h_213,c_crop/q_auto,f_auto,c_fit,w_182,h_24,dpr_2/s3/2/144684/aalto(1).png 2x"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1614,h_213,c_crop/q_auto,f_auto,c_limit,w_182,h_24/s3/2/144684/aalto(1).png" class="d-inline-block img-fluid" alt="A black and white image of a person." width="182" height="24"> | |
| 372 | +</picture> | |
| 373 | +</a></div> | |
| 374 | + | |
| 375 | +</div></div></div></div><div class="cover center-center no-repeat container-fluid p-0" lang=""><div class="row no-gutters" lang=""><div class="col-lg-12 col-12 justify-content-center align-items-center" lang=""><section style="position:relative; height:400px; display:flex; align-items:center;"> | |
| 376 | + | |
| 377 | + <div style="position:absolute; inset:0; background:url('https://cdngeneralcf.rentcafe.com/dmslivecafe/2/144684/zibirender2018_7.jpg') center/cover no-repeat;" lang=""></div> | |
| 378 | + <div style="position:absolute; inset:0; background:rgba(0,0,0,0.55);" lang=""></div> | |
| 379 | + | |
| 380 | + <div style="position:relative; z-index:1; padding:4rem; margin:0 auto; max-width:1200px;" lang=""> | |
| 381 | + | |
| 382 | + <div style="display:flex; align-items:center; gap:1rem; margin-bottom:1.5rem;" lang=""> | |
| 383 | + </div> | |
| 384 | + | |
| 385 | + <h1 style="font-family:'Cormorant Garamond',serif; font-size:4.5rem; font-weight:400; color:#fff; line-height:1.1; margin-bottom:1.5rem;" lang=""><br lang=""></h1> | |
| 386 | + | |
| 387 | + </div> | |
| 388 | + | |
| 389 | +</section></div></div></div></header> | |
| 390 | + | |
| 391 | + <main id="main-content"><div style="background-color:rgba(249,249,245,1) !important" class="se-custom-bgcolor" lang=""><div class="container" lang=""><div class="row" lang=""><div class="justify-content-start align-items-stretch flex-column d-flex text-left py-5 col-12 col-lg-12" lang=""><div class="row" lang=""><div class="justify-content-start align-items-stretch flex-column d-flex text-left col-12 col-lg-12" lang=""></div></div><div class="row" lang=""><div class="justify-content-start align-items-stretch flex-column d-flex d-md-none text-left col-12 col-lg-12" lang=""><h1 class="text-uppercase page-heading mobile" data-selenium-id="SID_h1Tag" lang="">Plans d'étages</h1></div></div><div class="row" lang=""><div class="justify-content-start align-items-stretch flex-column d-flex text-left col-12 col-lg-12" lang=""> | |
| 392 | + | |
| 393 | + | |
| 394 | + | |
| 395 | + | |
| 396 | + | |
| 397 | + <div class="row" lang=""> | |
| 398 | + <div class="col-12 mb-3" data-selenium-id="FloorplansTopNarrative" lang=""> | |
| 399 | + | |
| 400 | + | |
| 401 | + | |
| 402 | + | |
| 403 | + </div> | |
| 404 | + </div> | |
| 405 | + | |
| 406 | + <div class="row" lang=""> | |
| 407 | + <div class="col-12 page-content-floorplans floorplans-layout-tab" lang=""> | |
| 408 | + | |
| 409 | + | |
| 410 | + | |
| 411 | + <div id="fp-container" lang=""> | |
| 412 | + | |
| 413 | + | |
| 414 | + | |
| 415 | + | |
| 416 | + | |
| 417 | + | |
| 418 | + | |
| 419 | +<!-- Optimized Floor Plans Layout Start --> | |
| 420 | +<div class="page-content-floorplans optimized mt-3 pagebreak-before" lang=""> | |
| 421 | + | |
| 422 | + <!-- views menu --> | |
| 423 | + | |
| 424 | + <div class="tab-content" lang=""> | |
| 425 | + <div class="tab-pane fade show active" id="gridView" lang=""> | |
| 426 | + | |
| 427 | + <!-- START: filters --> | |
| 428 | + <div id="floorplans-filter" class="border-bottom mb-5" lang=""> | |
| 429 | + <form class="form-row row" id="aptsearch" method="post" action="/availableunits"> | |
| 430 | + <input type="hidden" id="request-verification-token" name="request-verification-token" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ1n9pcyx_6J8afX5LduiIeOfnD9K1dcI3YWRdxA9zJKS4IlGjAzrTw2ejzeey-kWRTEl7UgHDpHQeiZ-Z-4sOcVPD7Fn7S54U5aH-ZzbT8talPeuPsjB8Cno84ObMTG7ug"> | |
| 431 | + <!-- Beds dropdown --> | |
| 432 | + <div class="form-group col-6 col-sm-6 col-md" lang=""> | |
| 433 | + <div id="beds-dropdown" class="dropdown floating-label floating-label-sm" lang=""> | |
| 434 | + <button class="btn btn-sm dropdown-toggle pr-5" type="button" id="beds-dropdown-toggle" data-toggle="dropdown" data-persist="true" aria-expanded="false" lang=""><span>chambres</span> </button> | |
| 435 | + <div class="p-3 dropdown-menu text-sm" aria-labelledby="beds-dropdown-toggle" lang=""> | |
| 436 | + <fieldset> | |
| 437 | + <legend class="sr-only" lang="">Choose your desired number of bedrooms</legend> | |
| 438 | + <div class="checkbox" lang=""> | |
| 439 | + <input id="0-beds-checkbox" type="checkbox" value="0" name="bedrooms" class="beds-checkbox mr-2"> | |
| 440 | + <label for="0-beds-checkbox" lang="">studio</label> | |
| 441 | + </div> | |
| 442 | + <div class="checkbox" lang=""> | |
| 443 | + <input id="1-beds-checkbox" type="checkbox" value="1" name="bedrooms" class="beds-checkbox mr-2"> | |
| 444 | + <label for="1-beds-checkbox" lang="">1 chambre à coucher</label> | |
| 445 | + </div> | |
| 446 | + <div class="checkbox" lang=""> | |
| 447 | + <input id="2-beds-checkbox" type="checkbox" value="2" name="bedrooms" class="beds-checkbox mr-2"> | |
| 448 | + <label for="2-beds-checkbox" lang=""> | |
| 449 | + 2 Chambres à coucher | |
| 450 | + </label> | |
| 451 | + </div> | |
| 452 | + </fieldset> | |
| 453 | + <div lang=""> | |
| 454 | + <button id="beds-clear" type="button" class="float-left d-none btn btn-link font-base text-muted text-capitalize btn-sm" lang="">Effacer</button> | |
| 455 | + <button id="beds-done" type="button" class="float-right btn btn-link font-base text-black text-capitalize btn-sm" lang="">Terminé</button> | |
| 456 | + </div> | |
| 457 | + </div> | |
| 458 | + </div> | |
| 459 | + </div> | |
| 460 | + <!-- Baths dropdown --> | |
| 461 | + <div class="form-group col-6 col-sm-6 col-md" lang=""> | |
| 462 | + <div id="baths-dropdown" class="dropdown floating-label floating-label-sm" lang=""> | |
| 463 | + <button class="btn btn-sm dropdown-toggle pr-5" type="button" id="baths-dropdown-toggle" data-toggle="dropdown" data-persist="true" aria-expanded="false" lang=""><span>Salles de bains</span> </button> | |
| 464 | + <div class="p-3 dropdown-menu text-sm" aria-labelledby="baths-dropdown-toggle" lang=""> | |
| 465 | + <fieldset> | |
| 466 | + <legend class="sr-only" lang="">Choose your desired number of bathrooms</legend> | |
| 467 | + <div class="checkbox" lang=""> | |
| 468 | + <input id="1-baths-checkbox" type="checkbox" value="1" name="bathrooms" class="baths-checkbox mr-2"> | |
| 469 | + <label for="1-baths-checkbox" lang="">1 Salle de bains</label> | |
| 470 | + </div> | |
| 471 | + <div class="checkbox" lang=""> | |
| 472 | + <input id="2-baths-checkbox" type="checkbox" value="2" name="bathrooms" class="baths-checkbox mr-2"> | |
| 473 | + <label for="2-baths-checkbox" lang=""> | |
| 474 | + 2 Salles de bains | |
| 475 | + </label> | |
| 476 | + </div> | |
| 477 | + </fieldset> | |
| 478 | + <div id="baths-error" class="dropdown-error" lang=""></div> | |
| 479 | + <div lang=""> | |
| 480 | + <button id="baths-clear" type="button" class="d-none float-left btn btn-sm btn-link font-base text-muted text-capitalize" lang="">Effacer</button> | |
| 481 | + <button id="baths-done" type="button" class="float-right btn btn-sm btn-link font-base text-black text-capitalize" lang="">Terminé</button> | |
| 482 | + </div> | |
| 483 | + </div> | |
| 484 | + </div> | |
| 485 | + </div> | |
| 486 | + <!-- Unit size dropdown --> | |
| 487 | + <div class="form-group col-12 col-sm-6 col-md" lang=""> | |
| 488 | + <div id="unit-size-dropdown" class="dropdown floating-label floating-label-sm" lang=""> | |
| 489 | + <button class="btn btn-sm dropdown-toggle pr-5" type="button" id="unit-size-dropdown-toggle" data-toggle="dropdown" data-persist="true" aria-expanded="false" lang=""> | |
| 490 | + <span lang="">Taille de l'unité</span> | |
| 491 | + </button> | |
| 492 | + <div class="p-3 dropdown-menu dropdown-menu-right text-sm" aria-labelledby="unit-size-dropdown-toggle" lang=""> | |
| 493 | + <div class="range" lang=""> | |
| 494 | + <div class="field" lang=""> | |
| 495 | + <div class="input-group-sm" lang=""> | |
| 496 | + <div class="floating-label floating-label-sm" lang=""> | |
| 497 | + <label for="min-unit-size" lang="">Min.</label> | |
| 498 | + <input aria-describedby="unit-size-error" aria-label="minimum square Feet" id="min-unit-size" class="form-control form-control-sm" name="min-unit-size" type="number" data-max="1068" data-min="483" data-arealabel="Sq. Ft." min="0" step="100" placeholder="Min"> | |
| 499 | + </div> | |
| 500 | + <div class="input-group-append" lang=""> | |
| 501 | + <span class="input-group-text" lang="">pc</span> | |
| 502 | + </div> | |
| 503 | + </div> | |
| 504 | + </div> | |
| 505 | + <div class="p-2" lang="">à</div> | |
| 506 | + <div class="field" lang=""> | |
| 507 | + <div class="input-group-sm" lang=""> | |
| 508 | + <div class="floating-label floating-label-sm" lang=""> | |
| 509 | + <label for="max-unit-size" lang="">Max.</label> | |
| 510 | + <input aria-describedby="unit-size-error" aria-label="maximum square Feet" id="max-unit-size" class="form-control form-control-sm" name="max-unit-size" type="number" data-max="1068" data-min="483" data-arealabel="Sq. Ft." min="0" step="100" placeholder="Max"> | |
| 511 | + </div> | |
| 512 | + <div class="input-group-append" lang=""> | |
| 513 | + <span class="input-group-text" lang="">pc</span> | |
| 514 | + </div> | |
| 515 | + </div> | |
| 516 | + </div> | |
| 517 | + </div> | |
| 518 | + <div id="unit-size-error" aria-hidden="true" class="dropdown-error" lang=""></div> | |
| 519 | + <div lang=""> | |
| 520 | + <button id="unit-size-clear" type="button" class="d-none float-left btn btn-sm btn-link font-base text-muted text-capitalize" lang="">Effacer</button> | |
| 521 | + <button id="unit-size-done" type="button" class="float-right btn btn-sm btn-link font-base text-black text-capitalize" lang="">Terminé</button> | |
| 522 | + </div> | |
| 523 | + </div> | |
| 524 | + </div> | |
| 525 | + </div> | |
| 526 | + <!-- Rent dropdown --> | |
| 527 | + <div class="form-group col-12 col-sm-6 col-md" lang=""> | |
| 528 | + <div id="rent-dropdown" class="dropdown floating-label floating-label-sm" data-currency="$" lang=""> | |
| 529 | + <button id="rent-dropdown-toggle" class="btn btn-sm dropdown-toggle pr-5" type="button" data-toggle="dropdown" data-persist="true" aria-expanded="false" lang=""> | |
| 530 | + <span lang="">Gamme de prix</span> | |
| 531 | + </button> | |
| 532 | + <div class="p-3 dropdown-menu dropdown-menu-right text-sm" aria-labelledby="rent-dropdown-toggle" lang=""> | |
| 533 | + <div class="range" lang=""> | |
| 534 | + <div class="field" lang=""> | |
| 535 | + <div class="input-group-sm" lang=""> | |
| 536 | + <div class="input-group-prepend" lang=""> | |
| 537 | + <span class="input-group-text" lang="">$</span> | |
| 538 | + </div> | |
| 539 | + <div class="floating-label floating-label-sm" lang=""> | |
| 540 | + <label for="min-rent" lang="">Min.</label> | |
| 541 | + <input aria-describedby="rent-error" aria-label="Minimum Price" id="min-rent" class="form-control form-control-sm" name="min-rent" type="number" data-max="2485" data-min="1520" min="0" step="100" placeholder="Min"> | |
| 542 | + </div> | |
| 543 | + </div> | |
| 544 | + </div> | |
| 545 | + <div class="p-2" lang="">à</div> | |
| 546 | + <div class="field" lang=""> | |
| 547 | + <div class="input-group-sm" lang=""> | |
| 548 | + <div class="input-group-prepend" lang=""> | |
| 549 | + <span class="input-group-text" lang="">$</span> | |
| 550 | + </div> | |
| 551 | + <div class="floating-label floating-label-sm" lang=""> | |
| 552 | + <label for="max-rent" lang="">Max.</label> | |
| 553 | + <input aria-describedby="rent-error" aria-label="Maximum Price" id="max-rent" class="form-control form-control-sm" name="max-rent" type="number" data-max="2485" data-min="1520" min="0" step="100" placeholder="Max"> | |
| 554 | + </div> | |
| 555 | + </div> | |
| 556 | + </div> | |
| 557 | + </div> | |
| 558 | + <div id="rent-error" aria-hidden="true" class="dropdown-error" role="alert" lang=""></div> | |
| 559 | + <div lang=""> | |
| 560 | + <button id="rent-clear" type="button" class="d-none float-left btn btn-sm btn-link font-base text-muted text-capitalize" lang="">Effacer</button> | |
| 561 | + <button id="rent-done" type="button" class="float-right btn btn-sm btn-link font-base text-black text-capitalize" lang="">Terminé</button> | |
| 562 | + </div> | |
| 563 | + </div> | |
| 564 | + </div> | |
| 565 | + </div> | |
| 566 | + <!-- Move-in date --> | |
| 567 | + <div class="form-group input-group col-12 col-sm-6 col-md filter-input floating-label floating-label-sm" lang=""> | |
| 568 | + <label for="move-in-date" lang="">Date d’emménagement</label> | |
| 569 | + <input type="text" class="form-control form-control-sm flatpickr-input" id="move-in-date" name="move-in-date" value="" placeholder="jj/mm/aaaa" lang=""><div class="flatpickr-calendar animate static" tabindex="-1"><div class="flatpickr-months"><span class="flatpickr-prev-month flatpickr-disabled" tabindex="0" aria-label="Previous Month" role="button"></span><div class="flatpickr-month"><div class="flatpickr-current-month"><select class="flatpickr-monthDropdown-months" aria-label="Month" tabindex="0"><option class="flatpickr-monthDropdown-month" value="" disabled="">Select Month</option><option class="flatpickr-monthDropdown-month" value="7" tabindex="-1">août</option><option class="flatpickr-monthDropdown-month" value="8" tabindex="-1">septembre</option><option class="flatpickr-monthDropdown-month" value="9" tabindex="-1">octobre</option><option class="flatpickr-monthDropdown-month" value="10" tabindex="-1">novembre</option></select><select class="flatpickr-yearDropdown-years" tabindex="0" aria-label="Year" style="text-align-last:left"><option value="" disabled="">Select Year</option><option value="2026">2026</option></select><div class="numInputWrapper" style="display: none;"><input class="numInput cur-year" type="number" aria-label="Year" min="2026" max="2026" disabled=""><span class="arrowUp"></span><span class="arrowDown"></span></div></div></div><span class="flatpickr-next-month" tabindex="0" aria-label="Next Month" role="button"></span></div><div class="flatpickr-innerContainer"><div class="flatpickr-rContainer"><div class="flatpickr-weekdays"><div class="flatpickr-weekdaycontainer"> | |
| 570 | + <span class="flatpickr-weekday"> | |
| 571 | + lun</span><span class="flatpickr-weekday">Mars</span><span class="flatpickr-weekday">mer</span><span class="flatpickr-weekday">jeu</span><span class="flatpickr-weekday">ven</span><span class="flatpickr-weekday">sam</span><span class="flatpickr-weekday">dim | |
| 572 | + </span> | |
| 573 | + </div></div><div class="flatpickr-days" tabindex="-1"><div class="dayContainer"><span class="flatpickr-day prevMonthDay flatpickr-disabled ysi-date-disabled" aria-label="Monday, July 27, 2026. Unavailable" role="button">27</span><span class="flatpickr-day prevMonthDay flatpickr-disabled ysi-date-disabled" aria-label="Tuesday, July 28, 2026. Unavailable" role="button">28</span><span class="flatpickr-day prevMonthDay flatpickr-disabled ysi-date-disabled" aria-label="Wednesday, July 29, 2026. Unavailable" role="button">29</span><span class="flatpickr-day prevMonthDay flatpickr-disabled ysi-date-disabled" aria-label="Thursday, July 30, 2026. Unavailable" role="button">30</span><span class="flatpickr-day prevMonthDay flatpickr-disabled ysi-date-disabled" aria-label="Friday, July 31, 2026. Unavailable" role="button">31</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Saturday, August 1, 2026. Unavailable" role="button">1</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Sunday, August 2, 2026. Unavailable" role="button">2</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Monday, August 3, 2026. Unavailable" role="button">3</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Tuesday, August 4, 2026. Unavailable" role="button">4</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Wednesday, August 5, 2026. Unavailable" role="button">5</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Thursday, August 6, 2026. Unavailable" role="button">6</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Friday, August 7, 2026. Unavailable" role="button">7</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Saturday, August 8, 2026. Unavailable" role="button">8</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Sunday, August 9, 2026. Unavailable" role="button">9</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Monday, August 10, 2026. Unavailable" role="button">10</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Tuesday, August 11, 2026. Unavailable" role="button">11</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Wednesday, August 12, 2026. Unavailable" role="button">12</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Thursday, August 13, 2026. Unavailable" role="button">13</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Friday, August 14, 2026. Unavailable" role="button">14</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Saturday, August 15, 2026. Unavailable" role="button">15</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Sunday, August 16, 2026. Unavailable" role="button">16</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Monday, August 17, 2026. Unavailable" role="button">17</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Tuesday, August 18, 2026. Unavailable" role="button">18</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Wednesday, August 19, 2026. Unavailable" role="button">19</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Thursday, August 20, 2026. Unavailable" role="button">20</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Friday, August 21, 2026. Unavailable" role="button">21</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Saturday, August 22, 2026. Unavailable" role="button">22</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Sunday, August 23, 2026. Unavailable" role="button">23</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Monday, August 24, 2026. Unavailable" role="button">24</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Tuesday, August 25, 2026. Unavailable" role="button">25</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Wednesday, August 26, 2026. Unavailable" role="button">26</span><span class="flatpickr-day today ysi-date-disabled" aria-label="Thursday, August 27, 2026. Unavailable" aria-current="date" tabindex="-1" aria-pressed="false" role="button">27</span><span class="flatpickr-day " aria-label="Friday, August 28, 2026" tabindex="-1" aria-pressed="false" role="button">28</span><span class="flatpickr-day " aria-label="Saturday, August 29, 2026" tabindex="-1" aria-pressed="false" role="button">29</span><span class="flatpickr-day " aria-label="Sunday, August 30, 2026" tabindex="-1" aria-pressed="false" role="button">30</span><span class="flatpickr-day " aria-label="Monday, August 31, 2026" tabindex="-1" aria-pressed="false" role="button">31</span><span class="flatpickr-day nextMonthDay" aria-label="Tuesday, September 1, 2026" tabindex="-1" aria-pressed="false" role="button">1</span><span class="flatpickr-day nextMonthDay" aria-label="Wednesday, September 2, 2026" tabindex="-1" aria-pressed="false" role="button">2</span><span class="flatpickr-day nextMonthDay" aria-label="Thursday, September 3, 2026" tabindex="-1" aria-pressed="false" role="button">3</span><span class="flatpickr-day nextMonthDay" aria-label="Friday, September 4, 2026" tabindex="-1" aria-pressed="false" role="button">4</span><span class="flatpickr-day nextMonthDay" aria-label="Saturday, September 5, 2026" tabindex="-1" aria-pressed="false" role="button">5</span><span class="flatpickr-day nextMonthDay" aria-label="Sunday, September 6, 2026" tabindex="-1" aria-pressed="false" role="button">6</span></div></div></div></div></div> | |
| 574 | + <div class="input-group-append" lang=""> | |
| 575 | + <button class="btn btn-light btn-sm border" id="move-in-date-button" type="button" aria-label="Open calendar" lang=""><span aria-hidden="true" class="fa fa-calendar text-muted" lang=""></span></button> | |
| 576 | + </div> | |
| 577 | + <input type="hidden" name="showAvailability" id="showAvailability" value="3"> | |
| 578 | + </div> | |
| 579 | + <!-- Apartment number --> | |
| 580 | + <input name="__RequestVerificationToken" type="hidden" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ1n9pcyx_6J8afX5LduiIeOfnD9K1dcI3YWRdxA9zJKS4IlGjAzrTw2ejzeey-kWRTEl7UgHDpHQeiZ-Z-4sOcVPD7Fn7S54U5aH-ZzbT8talPeuPsjB8Cno84ObMTG7ug"></form> | |
| 581 | + </div> | |
| 582 | + <!-- END: filters --> | |
| 583 | + | |
| 584 | + | |
| 585 | + <div id="floorplans-container" class="row align-items-stretch" role="alert" aria-live="assertive" lang=""> | |
| 586 | + | |
| 587 | +<!-- Hidden input for layout type (true = updated) --> | |
| 588 | +<input type="hidden" id="UseUpdatedFloorPlanLayout" name="UseUpdatedFloorPlanLayout" value="true"> | |
| 589 | + | |
| 590 | + | |
| 591 | + | |
| 592 | + | |
| 593 | + | |
| 594 | + | |
| 595 | + | |
| 596 | + | |
| 597 | + <div id="fp-container-6473291" class="col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container" lang=""> | |
| 598 | + <div class="floor-plan-card h-100" lang=""> | |
| 599 | + <!-- Gallery Section --> | |
| 600 | + <div class="gallery-section p-3" lang=""> | |
| 601 | + | |
| 602 | + | |
| 603 | + | |
| 604 | + | |
| 605 | + | |
| 606 | + | |
| 607 | + | |
| 608 | + | |
| 609 | +<style>#carousel-floorplan-gallery-0 .carousel-inner picture {aspect-ratio: 1.5; width: 100%; display: block}#carousel-floorplan-gallery-0 .carousel-inner {aspect-ratio: 1.5;}</style> | |
| 610 | +<section role="region" aria-label="Image carousel" id="carousel-floorplan-gallery-0" class="photogallery carousel slide" data-gallery-type="default" data-ride="carousel" data-interval="false" data-enable-legacy-zoom="true" data-has-height="true" data-max-width="1140" data-initialized="true"> | |
| 611 | + | |
| 612 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 613 | + | |
| 614 | + | |
| 615 | + | |
| 616 | + | |
| 617 | + | |
| 618 | + | |
| 619 | + | |
| 620 | + | |
| 621 | + <div role="tabpanel" class="carousel-item h-100 active" id="carousel-floorplan-gallery-0-slide-1" lang=""> | |
| 622 | + <div class="item h-100" lang=""> | |
| 623 | + <a href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/s2.png" role="button" aria-label="Aalto II | S2 Floor plan image, opens a dialog" class="modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0" lang="" data-prevent-lightbox="off" aria-controls="fp-modal" data-screen="modal-content-6473291" data-image-modal="modal-body-6473291" data-toggle="modal" data-imagemodal-label="fp-modalLabel6473291" data-target="#fp-modal"> | |
| 624 | + <div class="item-index" data-selenium-id="ImageNumber1" lang="">1 de 1</div> | |
| 625 | + | |
| 626 | + <picture> | |
| 627 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/s2.png"> | |
| 628 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/s2.png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/s2.png"> | |
| 629 | +<source media="(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/s2.png 2x"><source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/s2.png"> | |
| 630 | +<source media="(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/s2.png 2x"><source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/s2.png"> | |
| 631 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/s2.png 2x"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/s2.png" class="img-fluid" alt="" fetchpriority="high"> | |
| 632 | +</picture> | |
| 633 | + | |
| 634 | + | |
| 635 | + | |
| 636 | + </a> | |
| 637 | + </div> | |
| 638 | + </div> | |
| 639 | + </div> | |
| 640 | +</section> | |
| 641 | + | |
| 642 | + | |
| 643 | + | |
| 644 | + | |
| 645 | + | |
| 646 | + | |
| 647 | + <script> | |
| 648 | + document.querySelectorAll("#carousel-floorplan-gallery-0 .item a").forEach(a => { | |
| 649 | + a.dataset.preventLightbox = "off" | |
| 650 | + a.className = "modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0"; | |
| 651 | + a.setAttribute("aria-label","Aalto II | S2 Floor plan image, opens a dialog"); | |
| 652 | + a.setAttribute("aria-controls","fp-modal"); | |
| 653 | + a.dataset.screen = "modal-content-6473291"; | |
| 654 | + a.dataset.imageModal = "modal-body-6473291"; | |
| 655 | + a.dataset.toggle = "modal"; | |
| 656 | + a.dataset.imagemodalLabel = "fp-modalLabel6473291"; | |
| 657 | + a.dataset.target = "#fp-modal"; | |
| 658 | + a.addEventListener("click",() => { document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6473291') }) | |
| 659 | + }); | |
| 660 | + </script> | |
| 661 | + </div> | |
| 662 | + | |
| 663 | + <!-- Video Buttons --> | |
| 664 | + <div class="btn-group-custom" lang=""> | |
| 665 | + | |
| 666 | + </div> | |
| 667 | + | |
| 668 | + <!-- Property Details --> | |
| 669 | + <div class="details-section" lang=""> | |
| 670 | + <h2 id="fp-header-0" class="property-title h4" lang=""> | |
| 671 | + Aalto II | S2 | |
| 672 | + </h2> | |
| 673 | + <div class="property-details" lang=""> | |
| 674 | + | |
| 675 | + | |
| 676 | + <div class="property-details" lang=""> | |
| 677 | + <span lang="">studio / 1 SdB</span> | |
| 678 | + <span class="dot-separator" lang="">●</span> | |
| 679 | + <span lang="">483 pc</span> | |
| 680 | + </div> | |
| 681 | + </div> | |
| 682 | + </div> | |
| 683 | + | |
| 684 | + <!-- Pricing Section --> | |
| 685 | + <div class="pricing-section" lang=""> | |
| 686 | + <div class="pricing-container" lang=""> | |
| 687 | + <div class="pricing-details bg-light mb-2" lang=""> | |
| 688 | + <span class="pricing-title" lang="">à partir de</span> | |
| 689 | + | |
| 690 | + <div lang=""> | |
| 691 | + <span class="pricing-amount" lang="">$1,520.00</span> | |
| 692 | + <span class="pricing-period" lang="">/mois</span> | |
| 693 | + </div> | |
| 694 | + | |
| 695 | + | |
| 696 | + </div> | |
| 697 | + | |
| 698 | + <!-- Cost Calculator Section --> | |
| 699 | + </div> | |
| 700 | + </div> | |
| 701 | + | |
| 702 | + <!-- Specials Badge --> | |
| 703 | + <div class="extras-section mt-2" lang=""> | |
| 704 | + <div class="specials-badge" lang=""></div> | |
| 705 | + </div> | |
| 706 | + | |
| 707 | + | |
| 708 | + <!-- CTA Button --> | |
| 709 | + <div class="cta-section mt-3" lang=""> | |
| 710 | + <a href="/floorplans/aalto-ii-%7c-s2" class="btn-block track-apply floorplan-action-button btn btn-primary" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto II | S2" data-floorplan-size="0" data-floorplan-sqft="483" data-floorplan-price="1520 -1525" data-selenium-id="floorplan-0-apply-btn" lang="">vérifier la disponibilité<span class="sr-only" lang=""> for Aalto II | S2</span> | |
| 711 | + </a> | |
| 712 | + </div> | |
| 713 | + | |
| 714 | + <!-- Available Tours --> | |
| 715 | + <div class="tour-section text-center" lang=""> | |
| 716 | + <a href="/scheduletour" class="schedule-link" lang="">Planifier une visite<span class="sr-only" lang=""> for Aalto II | S2</span></a> | |
| 717 | + </div> | |
| 718 | + | |
| 719 | + <!-- Smart Nudge Inline Message --> | |
| 720 | + | |
| 721 | + <!-- Smart Nudge Directional Popover --> | |
| 722 | + </div> | |
| 723 | + </div> | |
| 724 | + <div id="fp-container-6473261" class="col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container" lang=""> | |
| 725 | + <div class="floor-plan-card h-100" lang=""> | |
| 726 | + <!-- Gallery Section --> | |
| 727 | + <div class="gallery-section p-3" lang=""> | |
| 728 | + | |
| 729 | + | |
| 730 | + | |
| 731 | + | |
| 732 | + | |
| 733 | + | |
| 734 | + | |
| 735 | + | |
| 736 | +<style>#carousel-floorplan-gallery-1 .carousel-inner picture {aspect-ratio: 1.5; width: 100%; display: block}#carousel-floorplan-gallery-1 .carousel-inner {aspect-ratio: 1.5;}</style> | |
| 737 | +<section role="region" aria-label="Image carousel" id="carousel-floorplan-gallery-1" class="photogallery carousel slide" data-gallery-type="default" data-ride="carousel" data-interval="false" data-enable-legacy-zoom="true" data-has-height="true" data-max-width="1140" data-initialized="true"> | |
| 738 | + | |
| 739 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 740 | + | |
| 741 | + | |
| 742 | + | |
| 743 | + | |
| 744 | + | |
| 745 | + | |
| 746 | + | |
| 747 | + | |
| 748 | + <div role="tabpanel" class="carousel-item h-100 active" id="carousel-floorplan-gallery-1-slide-1" lang=""> | |
| 749 | + <div class="item h-100" lang=""> | |
| 750 | + <a href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a2(1).png" role="button" aria-label="Aalto II | A2 | Accessible Floor plan image, opens a dialog" class="modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0" lang="" data-prevent-lightbox="off" aria-controls="fp-modal" data-screen="modal-content-6473261" data-image-modal="modal-body-6473261" data-toggle="modal" data-imagemodal-label="fp-modalLabel6473261" data-target="#fp-modal"> | |
| 751 | + <div class="item-index" data-selenium-id="ImageNumber1" lang="">1 de 1</div> | |
| 752 | + | |
| 753 | + <picture> | |
| 754 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a2(1).png"> | |
| 755 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a2(1).png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a2(1).png"> | |
| 756 | +<source media="(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a2(1).png 2x"><source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a2(1).png"> | |
| 757 | +<source media="(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a2(1).png 2x"><source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a2(1).png"> | |
| 758 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a2(1).png 2x"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a2(1).png" class="img-fluid" alt="" fetchpriority="high"> | |
| 759 | +</picture> | |
| 760 | + | |
| 761 | + | |
| 762 | + | |
| 763 | + </a> | |
| 764 | + </div> | |
| 765 | + </div> | |
| 766 | + </div> | |
| 767 | +</section> | |
| 768 | + | |
| 769 | + | |
| 770 | + | |
| 771 | + | |
| 772 | + | |
| 773 | + | |
| 774 | + <script> | |
| 775 | + document.querySelectorAll("#carousel-floorplan-gallery-1 .item a").forEach(a => { | |
| 776 | + a.dataset.preventLightbox = "off" | |
| 777 | + a.className = "modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0"; | |
| 778 | + a.setAttribute("aria-label","Aalto II | A2 | Accessible Floor plan image, opens a dialog"); | |
| 779 | + a.setAttribute("aria-controls","fp-modal"); | |
| 780 | + a.dataset.screen = "modal-content-6473261"; | |
| 781 | + a.dataset.imageModal = "modal-body-6473261"; | |
| 782 | + a.dataset.toggle = "modal"; | |
| 783 | + a.dataset.imagemodalLabel = "fp-modalLabel6473261"; | |
| 784 | + a.dataset.target = "#fp-modal"; | |
| 785 | + a.addEventListener("click",() => { document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6473261') }) | |
| 786 | + }); | |
| 787 | + </script> | |
| 788 | + </div> | |
| 789 | + | |
| 790 | + <!-- Video Buttons --> | |
| 791 | + <div class="btn-group-custom" lang=""> | |
| 792 | + | |
| 793 | + </div> | |
| 794 | + | |
| 795 | + <!-- Property Details --> | |
| 796 | + <div class="details-section" lang=""> | |
| 797 | + <h2 id="fp-header-1" class="property-title h4" lang=""> | |
| 798 | + Aalto II | A2 | Accessible | |
| 799 | + </h2> | |
| 800 | + <div class="property-details" lang=""> | |
| 801 | + | |
| 802 | + | |
| 803 | + <div class="property-details" lang=""> | |
| 804 | + <span lang="">1 chambre / 1 SdB</span> | |
| 805 | + <span class="dot-separator" lang="">●</span> | |
| 806 | + <span lang="">550 pc</span> | |
| 807 | + </div> | |
| 808 | + </div> | |
| 809 | + </div> | |
| 810 | + | |
| 811 | + <!-- Pricing Section --> | |
| 812 | + <div class="pricing-section" lang=""> | |
| 813 | + <div class="pricing-container" lang=""> | |
| 814 | + <div class="pricing-details bg-light mb-2" lang=""> | |
| 815 | + <span class="pricing-title" lang="">à partir de</span> | |
| 816 | + | |
| 817 | + <div lang=""> | |
| 818 | + <span class="pricing-amount" lang="">$1,660.00</span> | |
| 819 | + <span class="pricing-period" lang="">/mois</span> | |
| 820 | + </div> | |
| 821 | + | |
| 822 | + | |
| 823 | + </div> | |
| 824 | + | |
| 825 | + <!-- Cost Calculator Section --> | |
| 826 | + </div> | |
| 827 | + </div> | |
| 828 | + | |
| 829 | + <!-- Specials Badge --> | |
| 830 | + <div class="extras-section mt-2" lang=""> | |
| 831 | + <div class="specials-badge" lang=""></div> | |
| 832 | + </div> | |
| 833 | + | |
| 834 | + | |
| 835 | + <!-- CTA Button --> | |
| 836 | + <div class="cta-section mt-3" lang=""> | |
| 837 | + <a href="/floorplans/aalto-ii-%7c-a2-%7c-accessible" class="btn-block track-apply floorplan-action-button btn btn-primary" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto II | A2 | Accessible" data-floorplan-size="1" data-floorplan-sqft="550" data-floorplan-price="1660 -1665" data-selenium-id="floorplan-1-apply-btn" lang="">vérifier la disponibilité<span class="sr-only" lang=""> for Aalto II | A2 | Accessible</span> | |
| 838 | + </a> | |
| 839 | + </div> | |
| 840 | + | |
| 841 | + <!-- Available Tours --> | |
| 842 | + <div class="tour-section text-center" lang=""> | |
| 843 | + <a href="/scheduletour" class="schedule-link" lang="">Planifier une visite<span class="sr-only" lang=""> for Aalto II | A2 | Accessible</span></a> | |
| 844 | + </div> | |
| 845 | + | |
| 846 | + <!-- Smart Nudge Inline Message --> | |
| 847 | + | |
| 848 | + <!-- Smart Nudge Directional Popover --> | |
| 849 | + </div> | |
| 850 | + </div> | |
| 851 | + <div id="fp-container-6473308" class="col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container" lang=""> | |
| 852 | + <div class="floor-plan-card h-100" lang=""> | |
| 853 | + <!-- Gallery Section --> | |
| 854 | + <div class="gallery-section p-3" lang=""> | |
| 855 | + | |
| 856 | + | |
| 857 | + | |
| 858 | + | |
| 859 | + | |
| 860 | + | |
| 861 | + | |
| 862 | + | |
| 863 | +<style>#carousel-floorplan-gallery-2 .carousel-inner picture {aspect-ratio: 1.5; width: 100%; display: block}#carousel-floorplan-gallery-2 .carousel-inner {aspect-ratio: 1.5;}</style> | |
| 864 | +<section role="region" aria-label="Image carousel" id="carousel-floorplan-gallery-2" class="photogallery carousel slide" data-gallery-type="default" data-ride="carousel" data-interval="false" data-enable-legacy-zoom="true" data-has-height="true" data-max-width="1140" data-initialized="true"> | |
| 865 | + | |
| 866 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 867 | + | |
| 868 | + | |
| 869 | + | |
| 870 | + | |
| 871 | + | |
| 872 | + | |
| 873 | + | |
| 874 | + | |
| 875 | + <div role="tabpanel" class="carousel-item h-100 active" id="carousel-floorplan-gallery-2-slide-1" lang=""> | |
| 876 | + <div class="item h-100" lang=""> | |
| 877 | + <a href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a9.png" role="button" aria-label="Aalto | A9 | Accessible Floor plan image, opens a dialog" class="modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0" lang="" data-prevent-lightbox="off" aria-controls="fp-modal" data-screen="modal-content-6473308" data-image-modal="modal-body-6473308" data-toggle="modal" data-imagemodal-label="fp-modalLabel6473308" data-target="#fp-modal"> | |
| 878 | + <div class="item-index" data-selenium-id="ImageNumber1" lang="">1 de 1</div> | |
| 879 | + | |
| 880 | + <picture> | |
| 881 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a9.png"> | |
| 882 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a9.png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a9.png"> | |
| 883 | +<source media="(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a9.png 2x"><source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a9.png"> | |
| 884 | +<source media="(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a9.png 2x"><source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a9.png"> | |
| 885 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a9.png 2x"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a9.png" class="img-fluid" alt="" fetchpriority="high"> | |
| 886 | +</picture> | |
| 887 | + | |
| 888 | + | |
| 889 | + | |
| 890 | + </a> | |
| 891 | + </div> | |
| 892 | + </div> | |
| 893 | + </div> | |
| 894 | +</section> | |
| 895 | + | |
| 896 | + | |
| 897 | + | |
| 898 | + | |
| 899 | + | |
| 900 | + | |
| 901 | + <script> | |
| 902 | + document.querySelectorAll("#carousel-floorplan-gallery-2 .item a").forEach(a => { | |
| 903 | + a.dataset.preventLightbox = "off" | |
| 904 | + a.className = "modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0"; | |
| 905 | + a.setAttribute("aria-label","Aalto | A9 | Accessible Floor plan image, opens a dialog"); | |
| 906 | + a.setAttribute("aria-controls","fp-modal"); | |
| 907 | + a.dataset.screen = "modal-content-6473308"; | |
| 908 | + a.dataset.imageModal = "modal-body-6473308"; | |
| 909 | + a.dataset.toggle = "modal"; | |
| 910 | + a.dataset.imagemodalLabel = "fp-modalLabel6473308"; | |
| 911 | + a.dataset.target = "#fp-modal"; | |
| 912 | + a.addEventListener("click",() => { document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6473308') }) | |
| 913 | + }); | |
| 914 | + </script> | |
| 915 | + </div> | |
| 916 | + | |
| 917 | + <!-- Video Buttons --> | |
| 918 | + <div class="btn-group-custom" lang=""> | |
| 919 | + | |
| 920 | + </div> | |
| 921 | + | |
| 922 | + <!-- Property Details --> | |
| 923 | + <div class="details-section" lang=""> | |
| 924 | + <h2 id="fp-header-2" class="property-title h4" lang=""> | |
| 925 | + Aalto | A9 | Accessible | |
| 926 | + </h2> | |
| 927 | + <div class="property-details" lang=""> | |
| 928 | + | |
| 929 | + | |
| 930 | + <div class="property-details" lang=""> | |
| 931 | + <span lang="">1 chambre / 1 SdB</span> | |
| 932 | + <span class="dot-separator" lang="">●</span> | |
| 933 | + <span lang="">609 pc</span> | |
| 934 | + </div> | |
| 935 | + </div> | |
| 936 | + </div> | |
| 937 | + | |
| 938 | + <!-- Pricing Section --> | |
| 939 | + <div class="pricing-section" lang=""> | |
| 940 | + <div class="pricing-container" lang=""> | |
| 941 | + <div class="pricing-details bg-light mb-2" lang=""> | |
| 942 | + <span class="pricing-title" lang="">à partir de</span> | |
| 943 | + | |
| 944 | + <div lang=""> | |
| 945 | + <span class="pricing-amount" lang="">$1,690.00</span> | |
| 946 | + <span class="pricing-period" lang="">/mois</span> | |
| 947 | + </div> | |
| 948 | + | |
| 949 | + | |
| 950 | + </div> | |
| 951 | + | |
| 952 | + <!-- Cost Calculator Section --> | |
| 953 | + </div> | |
| 954 | + </div> | |
| 955 | + | |
| 956 | + <!-- Specials Badge --> | |
| 957 | + <div class="extras-section mt-2" lang=""> | |
| 958 | + <div class="specials-badge" lang=""></div> | |
| 959 | + </div> | |
| 960 | + | |
| 961 | + | |
| 962 | + <!-- CTA Button --> | |
| 963 | + <div class="cta-section mt-3" lang=""> | |
| 964 | + <a href="/floorplans/aalto-%7c-a9-%7c-accessible" class="btn-block track-apply floorplan-action-button btn btn-primary" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto | A9 | Accessible" data-floorplan-size="1" data-floorplan-sqft="609" data-floorplan-price="1690 -1840" data-selenium-id="floorplan-2-apply-btn" lang="">vérifier la disponibilité<span class="sr-only" lang=""> for Aalto | A9 | Accessible</span> | |
| 965 | + </a> | |
| 966 | + </div> | |
| 967 | + | |
| 968 | + <!-- Available Tours --> | |
| 969 | + <div class="tour-section text-center" lang=""> | |
| 970 | + <a href="/scheduletour" class="schedule-link" lang="">Planifier une visite<span class="sr-only" lang=""> for Aalto | A9 | Accessible</span></a> | |
| 971 | + </div> | |
| 972 | + | |
| 973 | + <!-- Smart Nudge Inline Message --> | |
| 974 | + | |
| 975 | + <!-- Smart Nudge Directional Popover --> | |
| 976 | + </div> | |
| 977 | + </div> | |
| 978 | + <div id="fp-container-6473306" class="col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container" lang=""> | |
| 979 | + <div class="floor-plan-card h-100" lang=""> | |
| 980 | + <!-- Gallery Section --> | |
| 981 | + <div class="gallery-section p-3" lang=""> | |
| 982 | + | |
| 983 | + | |
| 984 | + | |
| 985 | + | |
| 986 | + | |
| 987 | + | |
| 988 | + | |
| 989 | + | |
| 990 | +<style>#carousel-floorplan-gallery-3 .carousel-inner picture {aspect-ratio: 1.5; width: 100%; display: block}#carousel-floorplan-gallery-3 .carousel-inner {aspect-ratio: 1.5;}</style> | |
| 991 | +<section role="region" aria-label="Image carousel" id="carousel-floorplan-gallery-3" class="photogallery carousel slide" data-gallery-type="default" data-ride="carousel" data-interval="false" data-enable-legacy-zoom="true" data-has-height="true" data-max-width="1140" data-initialized="true"> | |
| 992 | + | |
| 993 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 994 | + | |
| 995 | + | |
| 996 | + | |
| 997 | + | |
| 998 | + | |
| 999 | + | |
| 1000 | + | |
| 1001 | + | |
| 1002 | + <div role="tabpanel" class="carousel-item h-100 active" id="carousel-floorplan-gallery-3-slide-1" lang=""> | |
| 1003 | + <div class="item h-100" lang=""> | |
| 1004 | + <a href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a7(1).png" role="button" aria-label="Aalto | A7 | Accessible Floor plan image, opens a dialog" class="modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0" lang="" data-prevent-lightbox="off" aria-controls="fp-modal" data-screen="modal-content-6473306" data-image-modal="modal-body-6473306" data-toggle="modal" data-imagemodal-label="fp-modalLabel6473306" data-target="#fp-modal"> | |
| 1005 | + <div class="item-index" data-selenium-id="ImageNumber1" lang="">1 de 1</div> | |
| 1006 | + | |
| 1007 | + <picture> | |
| 1008 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a7(1).png"> | |
| 1009 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a7(1).png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a7(1).png"> | |
| 1010 | +<source media="(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a7(1).png 2x"><source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a7(1).png"> | |
| 1011 | +<source media="(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a7(1).png 2x"><source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a7(1).png"> | |
| 1012 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a7(1).png 2x"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a7(1).png" class="img-fluid" alt="" fetchpriority="high"> | |
| 1013 | +</picture> | |
| 1014 | + | |
| 1015 | + | |
| 1016 | + | |
| 1017 | + </a> | |
| 1018 | + </div> | |
| 1019 | + </div> | |
| 1020 | + </div> | |
| 1021 | +</section> | |
| 1022 | + | |
| 1023 | + | |
| 1024 | + | |
| 1025 | + | |
| 1026 | + | |
| 1027 | + | |
| 1028 | + <script> | |
| 1029 | + document.querySelectorAll("#carousel-floorplan-gallery-3 .item a").forEach(a => { | |
| 1030 | + a.dataset.preventLightbox = "off" | |
| 1031 | + a.className = "modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0"; | |
| 1032 | + a.setAttribute("aria-label","Aalto | A7 | Accessible Floor plan image, opens a dialog"); | |
| 1033 | + a.setAttribute("aria-controls","fp-modal"); | |
| 1034 | + a.dataset.screen = "modal-content-6473306"; | |
| 1035 | + a.dataset.imageModal = "modal-body-6473306"; | |
| 1036 | + a.dataset.toggle = "modal"; | |
| 1037 | + a.dataset.imagemodalLabel = "fp-modalLabel6473306"; | |
| 1038 | + a.dataset.target = "#fp-modal"; | |
| 1039 | + a.addEventListener("click",() => { document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6473306') }) | |
| 1040 | + }); | |
| 1041 | + </script> | |
| 1042 | + </div> | |
| 1043 | + | |
| 1044 | + <!-- Video Buttons --> | |
| 1045 | + <div class="btn-group-custom" lang=""> | |
| 1046 | + | |
| 1047 | + </div> | |
| 1048 | + | |
| 1049 | + <!-- Property Details --> | |
| 1050 | + <div class="details-section" lang=""> | |
| 1051 | + <h2 id="fp-header-3" class="property-title h4" lang=""> | |
| 1052 | + Aalto | A7 | Accessible | |
| 1053 | + </h2> | |
| 1054 | + <div class="property-details" lang=""> | |
| 1055 | + | |
| 1056 | + | |
| 1057 | + <div class="property-details" lang=""> | |
| 1058 | + <span lang="">1 chambre / 1 SdB</span> | |
| 1059 | + <span class="dot-separator" lang="">●</span> | |
| 1060 | + <span lang="">607 pc</span> | |
| 1061 | + </div> | |
| 1062 | + </div> | |
| 1063 | + </div> | |
| 1064 | + | |
| 1065 | + <!-- Pricing Section --> | |
| 1066 | + <div class="pricing-section" lang=""> | |
| 1067 | + <div class="pricing-container" lang=""> | |
| 1068 | + <div class="pricing-details bg-light mb-2" lang=""> | |
| 1069 | + <span class="pricing-title" lang="">à partir de</span> | |
| 1070 | + | |
| 1071 | + <div lang=""> | |
| 1072 | + <span class="pricing-amount" lang="">$1,700.00</span> | |
| 1073 | + <span class="pricing-period" lang="">/mois</span> | |
| 1074 | + </div> | |
| 1075 | + | |
| 1076 | + | |
| 1077 | + </div> | |
| 1078 | + | |
| 1079 | + <!-- Cost Calculator Section --> | |
| 1080 | + </div> | |
| 1081 | + </div> | |
| 1082 | + | |
| 1083 | + <!-- Specials Badge --> | |
| 1084 | + <div class="extras-section mt-2" lang=""> | |
| 1085 | + <div class="specials-badge" lang=""></div> | |
| 1086 | + </div> | |
| 1087 | + | |
| 1088 | + | |
| 1089 | + <!-- CTA Button --> | |
| 1090 | + <div class="cta-section mt-3" lang=""> | |
| 1091 | + <a href="/floorplans/aalto-%7c-a7-%7c-accessible" class="btn-block track-apply floorplan-action-button btn btn-primary" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto | A7 | Accessible" data-floorplan-size="1" data-floorplan-sqft="607" data-floorplan-price="1700 -1845" data-selenium-id="floorplan-3-apply-btn" lang="">vérifier la disponibilité<span class="sr-only" lang=""> for Aalto | A7 | Accessible</span> | |
| 1092 | + </a> | |
| 1093 | + </div> | |
| 1094 | + | |
| 1095 | + <!-- Available Tours --> | |
| 1096 | + <div class="tour-section text-center" lang=""> | |
| 1097 | + <a href="/scheduletour" class="schedule-link" lang="">Planifier une visite<span class="sr-only" lang=""> for Aalto | A7 | Accessible</span></a> | |
| 1098 | + </div> | |
| 1099 | + | |
| 1100 | + <!-- Smart Nudge Inline Message --> | |
| 1101 | + | |
| 1102 | + <!-- Smart Nudge Directional Popover --> | |
| 1103 | + </div> | |
| 1104 | + </div> | |
| 1105 | + <div id="fp-container-6473262" class="col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container" lang=""> | |
| 1106 | + <div class="floor-plan-card h-100" lang=""> | |
| 1107 | + <!-- Gallery Section --> | |
| 1108 | + <div class="gallery-section p-3" lang=""> | |
| 1109 | + | |
| 1110 | + | |
| 1111 | + | |
| 1112 | + | |
| 1113 | + | |
| 1114 | + | |
| 1115 | + | |
| 1116 | + | |
| 1117 | +<style>#carousel-floorplan-gallery-4 .carousel-inner picture {aspect-ratio: 1.5; width: 100%; display: block}#carousel-floorplan-gallery-4 .carousel-inner {aspect-ratio: 1.5;}</style> | |
| 1118 | +<section role="region" aria-label="Image carousel" id="carousel-floorplan-gallery-4" class="photogallery carousel slide" data-gallery-type="default" data-ride="carousel" data-interval="false" data-enable-legacy-zoom="true" data-has-height="true" data-max-width="1140" data-initialized="true"> | |
| 1119 | + | |
| 1120 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 1121 | + | |
| 1122 | + | |
| 1123 | + | |
| 1124 | + | |
| 1125 | + | |
| 1126 | + | |
| 1127 | + | |
| 1128 | + | |
| 1129 | + <div role="tabpanel" class="carousel-item h-100 active" id="carousel-floorplan-gallery-4-slide-1" lang=""> | |
| 1130 | + <div class="item h-100" lang=""> | |
| 1131 | + <a href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a1(1).png" role="button" aria-label="Aalto II | A1 Floor plan image, opens a dialog" class="modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0" lang="" data-prevent-lightbox="off" aria-controls="fp-modal" data-screen="modal-content-6473262" data-image-modal="modal-body-6473262" data-toggle="modal" data-imagemodal-label="fp-modalLabel6473262" data-target="#fp-modal"> | |
| 1132 | + <div class="item-index" data-selenium-id="ImageNumber1" lang="">1 de 1</div> | |
| 1133 | + | |
| 1134 | + <picture> | |
| 1135 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a1(1).png"> | |
| 1136 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a1(1).png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a1(1).png"> | |
| 1137 | +<source media="(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a1(1).png 2x"><source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a1(1).png"> | |
| 1138 | +<source media="(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a1(1).png 2x"><source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a1(1).png"> | |
| 1139 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a1(1).png 2x"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a1(1).png" class="img-fluid" alt="" fetchpriority="high"> | |
| 1140 | +</picture> | |
| 1141 | + | |
| 1142 | + | |
| 1143 | + | |
| 1144 | + </a> | |
| 1145 | + </div> | |
| 1146 | + </div> | |
| 1147 | + </div> | |
| 1148 | +</section> | |
| 1149 | + | |
| 1150 | + | |
| 1151 | + | |
| 1152 | + | |
| 1153 | + | |
| 1154 | + | |
| 1155 | + <script> | |
| 1156 | + document.querySelectorAll("#carousel-floorplan-gallery-4 .item a").forEach(a => { | |
| 1157 | + a.dataset.preventLightbox = "off" | |
| 1158 | + a.className = "modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0"; | |
| 1159 | + a.setAttribute("aria-label","Aalto II | A1 Floor plan image, opens a dialog"); | |
| 1160 | + a.setAttribute("aria-controls","fp-modal"); | |
| 1161 | + a.dataset.screen = "modal-content-6473262"; | |
| 1162 | + a.dataset.imageModal = "modal-body-6473262"; | |
| 1163 | + a.dataset.toggle = "modal"; | |
| 1164 | + a.dataset.imagemodalLabel = "fp-modalLabel6473262"; | |
| 1165 | + a.dataset.target = "#fp-modal"; | |
| 1166 | + a.addEventListener("click",() => { document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6473262') }) | |
| 1167 | + }); | |
| 1168 | + </script> | |
| 1169 | + </div> | |
| 1170 | + | |
| 1171 | + <!-- Video Buttons --> | |
| 1172 | + <div class="btn-group-custom" lang=""> | |
| 1173 | + | |
| 1174 | + </div> | |
| 1175 | + | |
| 1176 | + <!-- Property Details --> | |
| 1177 | + <div class="details-section" lang=""> | |
| 1178 | + <h2 id="fp-header-4" class="property-title h4" lang="">Aalto II | A1</h2> | |
| 1179 | + <div class="property-details" lang=""> | |
| 1180 | + | |
| 1181 | + | |
| 1182 | + <div class="property-details" lang=""> | |
| 1183 | + <span lang="">1 chambre / 1 SdB</span> | |
| 1184 | + <span class="dot-separator" lang="">●</span> | |
| 1185 | + <span lang="">559 pc</span> | |
| 1186 | + </div> | |
| 1187 | + </div> | |
| 1188 | + </div> | |
| 1189 | + | |
| 1190 | + <!-- Pricing Section --> | |
| 1191 | + <div class="pricing-section" lang=""> | |
| 1192 | + <div class="pricing-container" lang=""> | |
| 1193 | + <div class="pricing-details bg-light mb-2" lang=""> | |
| 1194 | + <span class="pricing-title" lang="">à partir de</span> | |
| 1195 | + | |
| 1196 | + <div lang=""> | |
| 1197 | + <span class="pricing-amount" lang="">$1,700.00</span> | |
| 1198 | + <span class="pricing-period" lang="">/mois</span> | |
| 1199 | + </div> | |
| 1200 | + | |
| 1201 | + | |
| 1202 | + </div> | |
| 1203 | + | |
| 1204 | + <!-- Cost Calculator Section --> | |
| 1205 | + </div> | |
| 1206 | + </div> | |
| 1207 | + | |
| 1208 | + <!-- Specials Badge --> | |
| 1209 | + <div class="extras-section mt-2" lang=""> | |
| 1210 | + <div class="specials-badge" lang=""></div> | |
| 1211 | + </div> | |
| 1212 | + | |
| 1213 | + | |
| 1214 | + <!-- CTA Button --> | |
| 1215 | + <div class="cta-section mt-3" lang=""> | |
| 1216 | + <a href="/floorplans/aalto-ii-%7c-a1" class="btn-block track-apply floorplan-action-button btn btn-primary" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto II | A1" data-floorplan-size="1" data-floorplan-sqft="559" data-floorplan-price="1700 -1860" data-selenium-id="floorplan-4-apply-btn" lang="">vérifier la disponibilité<span class="sr-only" lang=""> for Aalto II | A1</span> | |
| 1217 | + </a> | |
| 1218 | + </div> | |
| 1219 | + | |
| 1220 | + <!-- Available Tours --> | |
| 1221 | + <div class="tour-section text-center" lang=""> | |
| 1222 | + <a href="/scheduletour" class="schedule-link" lang="">Planifier une visite<span class="sr-only" lang=""> for Aalto II | A1</span></a> | |
| 1223 | + </div> | |
| 1224 | + | |
| 1225 | + <!-- Smart Nudge Inline Message --> | |
| 1226 | + | |
| 1227 | + <!-- Smart Nudge Directional Popover --> | |
| 1228 | + </div> | |
| 1229 | + </div> | |
| 1230 | + <div id="fp-container-6473263" class="col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container" lang=""> | |
| 1231 | + <div class="floor-plan-card h-100" lang=""> | |
| 1232 | + <!-- Gallery Section --> | |
| 1233 | + <div class="gallery-section p-3" lang=""> | |
| 1234 | + | |
| 1235 | + | |
| 1236 | + | |
| 1237 | + | |
| 1238 | + | |
| 1239 | + | |
| 1240 | + | |
| 1241 | + | |
| 1242 | +<style>#carousel-floorplan-gallery-5 .carousel-inner picture {aspect-ratio: 1.5; width: 100%; display: block}#carousel-floorplan-gallery-5 .carousel-inner {aspect-ratio: 1.5;}</style> | |
| 1243 | +<section role="region" aria-label="Image carousel" id="carousel-floorplan-gallery-5" class="photogallery carousel slide" data-gallery-type="default" data-ride="carousel" data-interval="false" data-enable-legacy-zoom="true" data-has-height="true" data-max-width="1140" data-initialized="true"> | |
| 1244 | + | |
| 1245 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 1246 | + | |
| 1247 | + | |
| 1248 | + | |
| 1249 | + | |
| 1250 | + | |
| 1251 | + | |
| 1252 | + | |
| 1253 | + | |
| 1254 | + <div role="tabpanel" class="carousel-item h-100 active" id="carousel-floorplan-gallery-5-slide-1" lang=""> | |
| 1255 | + <div class="item h-100" lang=""> | |
| 1256 | + <a href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a3(1).png" role="button" aria-label="Aalto II | A3 Floor plan image, opens a dialog" class="modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0" lang="" data-prevent-lightbox="off" aria-controls="fp-modal" data-screen="modal-content-6473263" data-image-modal="modal-body-6473263" data-toggle="modal" data-imagemodal-label="fp-modalLabel6473263" data-target="#fp-modal"> | |
| 1257 | + <div class="item-index" data-selenium-id="ImageNumber1" lang="">1 de 1</div> | |
| 1258 | + | |
| 1259 | + <picture> | |
| 1260 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a3(1).png"> | |
| 1261 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a3(1).png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a3(1).png"> | |
| 1262 | +<source media="(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a3(1).png 2x"><source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a3(1).png"> | |
| 1263 | +<source media="(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a3(1).png 2x"><source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a3(1).png"> | |
| 1264 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a3(1).png 2x"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a3(1).png" class="img-fluid" alt="" fetchpriority="high"> | |
| 1265 | +</picture> | |
| 1266 | + | |
| 1267 | + | |
| 1268 | + | |
| 1269 | + </a> | |
| 1270 | + </div> | |
| 1271 | + </div> | |
| 1272 | + </div> | |
| 1273 | +</section> | |
| 1274 | + | |
| 1275 | + | |
| 1276 | + | |
| 1277 | + | |
| 1278 | + | |
| 1279 | + | |
| 1280 | + <script> | |
| 1281 | + document.querySelectorAll("#carousel-floorplan-gallery-5 .item a").forEach(a => { | |
| 1282 | + a.dataset.preventLightbox = "off" | |
| 1283 | + a.className = "modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0"; | |
| 1284 | + a.setAttribute("aria-label","Aalto II | A3 Floor plan image, opens a dialog"); | |
| 1285 | + a.setAttribute("aria-controls","fp-modal"); | |
| 1286 | + a.dataset.screen = "modal-content-6473263"; | |
| 1287 | + a.dataset.imageModal = "modal-body-6473263"; | |
| 1288 | + a.dataset.toggle = "modal"; | |
| 1289 | + a.dataset.imagemodalLabel = "fp-modalLabel6473263"; | |
| 1290 | + a.dataset.target = "#fp-modal"; | |
| 1291 | + a.addEventListener("click",() => { document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6473263') }) | |
| 1292 | + }); | |
| 1293 | + </script> | |
| 1294 | + </div> | |
| 1295 | + | |
| 1296 | + <!-- Video Buttons --> | |
| 1297 | + <div class="btn-group-custom" lang=""> | |
| 1298 | + | |
| 1299 | + </div> | |
| 1300 | + | |
| 1301 | + <!-- Property Details --> | |
| 1302 | + <div class="details-section" lang=""> | |
| 1303 | + <h2 id="fp-header-5" class="property-title h4" lang="">Aalto II | A3</h2> | |
| 1304 | + <div class="property-details" lang=""> | |
| 1305 | + | |
| 1306 | + | |
| 1307 | + <div class="property-details" lang=""> | |
| 1308 | + <span lang="">1 chambre / 1 SdB</span> | |
| 1309 | + <span class="dot-separator" lang="">●</span> | |
| 1310 | + <span lang="">557 pc</span> | |
| 1311 | + </div> | |
| 1312 | + </div> | |
| 1313 | + </div> | |
| 1314 | + | |
| 1315 | + <!-- Pricing Section --> | |
| 1316 | + <div class="pricing-section" lang=""> | |
| 1317 | + <div class="pricing-container" lang=""> | |
| 1318 | + <div class="pricing-details bg-light mb-2" lang=""> | |
| 1319 | + <span class="pricing-title" lang="">à partir de</span> | |
| 1320 | + | |
| 1321 | + <div lang=""> | |
| 1322 | + <span class="pricing-amount" lang="">$1,795.00</span> | |
| 1323 | + <span class="pricing-period" lang="">/mois</span> | |
| 1324 | + </div> | |
| 1325 | + | |
| 1326 | + | |
| 1327 | + </div> | |
| 1328 | + | |
| 1329 | + <!-- Cost Calculator Section --> | |
| 1330 | + </div> | |
| 1331 | + </div> | |
| 1332 | + | |
| 1333 | + <!-- Specials Badge --> | |
| 1334 | + <div class="extras-section mt-2" lang=""> | |
| 1335 | + <div class="specials-badge" lang=""></div> | |
| 1336 | + </div> | |
| 1337 | + | |
| 1338 | + | |
| 1339 | + <!-- CTA Button --> | |
| 1340 | + <div class="cta-section mt-3" lang=""> | |
| 1341 | + <a href="/floorplans/aalto-ii-%7c-a3" class="btn-block track-apply floorplan-action-button btn btn-primary" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto II | A3" data-floorplan-size="1" data-floorplan-sqft="557" data-floorplan-price="1795 -1830" data-selenium-id="floorplan-5-apply-btn" lang="">vérifier la disponibilité<span class="sr-only" lang=""> for Aalto II | A3</span> | |
| 1342 | + </a> | |
| 1343 | + </div> | |
| 1344 | + | |
| 1345 | + <!-- Available Tours --> | |
| 1346 | + <div class="tour-section text-center" lang=""> | |
| 1347 | + <a href="/scheduletour" class="schedule-link" lang="">Planifier une visite<span class="sr-only" lang=""> for Aalto II | A3</span></a> | |
| 1348 | + </div> | |
| 1349 | + | |
| 1350 | + <!-- Smart Nudge Inline Message --> | |
| 1351 | + | |
| 1352 | + <!-- Smart Nudge Directional Popover --> | |
| 1353 | + </div> | |
| 1354 | + </div> | |
| 1355 | + <div id="fp-container-6473298" class="col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container" lang=""> | |
| 1356 | + <div class="floor-plan-card h-100" lang=""> | |
| 1357 | + <!-- Gallery Section --> | |
| 1358 | + <div class="gallery-section p-3" lang=""> | |
| 1359 | + | |
| 1360 | + | |
| 1361 | + | |
| 1362 | + | |
| 1363 | + | |
| 1364 | + | |
| 1365 | + | |
| 1366 | + | |
| 1367 | +<style>#carousel-floorplan-gallery-6 .carousel-inner picture {aspect-ratio: 1.5; width: 100%; display: block}#carousel-floorplan-gallery-6 .carousel-inner {aspect-ratio: 1.5;}</style> | |
| 1368 | +<section role="region" aria-label="Image carousel" id="carousel-floorplan-gallery-6" class="photogallery carousel slide" data-gallery-type="default" data-ride="carousel" data-interval="false" data-enable-legacy-zoom="true" data-has-height="true" data-max-width="1140" data-initialized="true"> | |
| 1369 | + | |
| 1370 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 1371 | + | |
| 1372 | + | |
| 1373 | + | |
| 1374 | + | |
| 1375 | + | |
| 1376 | + | |
| 1377 | + | |
| 1378 | + | |
| 1379 | + <div role="tabpanel" class="carousel-item h-100 active" id="carousel-floorplan-gallery-6-slide-1" lang=""> | |
| 1380 | + <div class="item h-100" lang=""> | |
| 1381 | + <a href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a12.png" role="button" aria-label="Aalto | A12 Floor plan image, opens a dialog" class="modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0" lang="" data-prevent-lightbox="off" aria-controls="fp-modal" data-screen="modal-content-6473298" data-image-modal="modal-body-6473298" data-toggle="modal" data-imagemodal-label="fp-modalLabel6473298" data-target="#fp-modal"> | |
| 1382 | + <div class="item-index" data-selenium-id="ImageNumber1" lang="">1 de 1</div> | |
| 1383 | + | |
| 1384 | + <picture> | |
| 1385 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a12.png"> | |
| 1386 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a12.png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a12.png"> | |
| 1387 | +<source media="(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a12.png 2x"><source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a12.png"> | |
| 1388 | +<source media="(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a12.png 2x"><source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a12.png"> | |
| 1389 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a12.png 2x"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a12.png" class="img-fluid" alt="" fetchpriority="high"> | |
| 1390 | +</picture> | |
| 1391 | + | |
| 1392 | + | |
| 1393 | + | |
| 1394 | + </a> | |
| 1395 | + </div> | |
| 1396 | + </div> | |
| 1397 | + </div> | |
| 1398 | +</section> | |
| 1399 | + | |
| 1400 | + | |
| 1401 | + | |
| 1402 | + | |
| 1403 | + | |
| 1404 | + | |
| 1405 | + <script> | |
| 1406 | + document.querySelectorAll("#carousel-floorplan-gallery-6 .item a").forEach(a => { | |
| 1407 | + a.dataset.preventLightbox = "off" | |
| 1408 | + a.className = "modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0"; | |
| 1409 | + a.setAttribute("aria-label","Aalto | A12 Floor plan image, opens a dialog"); | |
| 1410 | + a.setAttribute("aria-controls","fp-modal"); | |
| 1411 | + a.dataset.screen = "modal-content-6473298"; | |
| 1412 | + a.dataset.imageModal = "modal-body-6473298"; | |
| 1413 | + a.dataset.toggle = "modal"; | |
| 1414 | + a.dataset.imagemodalLabel = "fp-modalLabel6473298"; | |
| 1415 | + a.dataset.target = "#fp-modal"; | |
| 1416 | + a.addEventListener("click",() => { document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6473298') }) | |
| 1417 | + }); | |
| 1418 | + </script> | |
| 1419 | + </div> | |
| 1420 | + | |
| 1421 | + <!-- Video Buttons --> | |
| 1422 | + <div class="btn-group-custom" lang=""> | |
| 1423 | + | |
| 1424 | + </div> | |
| 1425 | + | |
| 1426 | + <!-- Property Details --> | |
| 1427 | + <div class="details-section" lang=""> | |
| 1428 | + <h2 id="fp-header-6" class="property-title h4" lang=""> | |
| 1429 | + Aalto | A12 | |
| 1430 | + </h2> | |
| 1431 | + <div class="property-details" lang=""> | |
| 1432 | + | |
| 1433 | + | |
| 1434 | + <div class="property-details" lang=""> | |
| 1435 | + <span lang="">1 chambre / 1 SdB</span> | |
| 1436 | + <span class="dot-separator" lang="">●</span> | |
| 1437 | + <span lang="">503 pc</span> | |
| 1438 | + </div> | |
| 1439 | + </div> | |
| 1440 | + </div> | |
| 1441 | + | |
| 1442 | + <!-- Pricing Section --> | |
| 1443 | + <div class="pricing-section" lang=""> | |
| 1444 | + <div class="pricing-container" lang=""> | |
| 1445 | + <div class="pricing-details bg-light mb-2" lang=""> | |
| 1446 | + <span class="pricing-title" lang="">à partir de</span> | |
| 1447 | + | |
| 1448 | + <div lang=""> | |
| 1449 | + <span class="pricing-amount" lang="">$1,820.00</span> | |
| 1450 | + <span class="pricing-period" lang="">/mois</span> | |
| 1451 | + </div> | |
| 1452 | + | |
| 1453 | + | |
| 1454 | + </div> | |
| 1455 | + | |
| 1456 | + <!-- Cost Calculator Section --> | |
| 1457 | + </div> | |
| 1458 | + </div> | |
| 1459 | + | |
| 1460 | + <!-- Specials Badge --> | |
| 1461 | + <div class="extras-section mt-2" lang=""> | |
| 1462 | + <div class="specials-badge" lang=""></div> | |
| 1463 | + </div> | |
| 1464 | + | |
| 1465 | + | |
| 1466 | + <!-- CTA Button --> | |
| 1467 | + <div class="cta-section mt-3" lang=""> | |
| 1468 | + <a href="/floorplans/aalto-%7c-a12" class="btn-block track-apply floorplan-action-button btn btn-primary" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto | A12" data-floorplan-size="1" data-floorplan-sqft="503" data-floorplan-price="1820 -1835" data-selenium-id="floorplan-6-apply-btn" lang="">vérifier la disponibilité<span class="sr-only" lang=""> for Aalto | A12</span> | |
| 1469 | + </a> | |
| 1470 | + </div> | |
| 1471 | + | |
| 1472 | + <!-- Available Tours --> | |
| 1473 | + <div class="tour-section text-center" lang=""> | |
| 1474 | + <a href="/scheduletour" class="schedule-link" lang="">Planifier une visite<span class="sr-only" lang=""> for Aalto | A12</span></a> | |
| 1475 | + </div> | |
| 1476 | + | |
| 1477 | + <!-- Smart Nudge Inline Message --> | |
| 1478 | + | |
| 1479 | + <!-- Smart Nudge Directional Popover --> | |
| 1480 | + </div> | |
| 1481 | + </div> | |
| 1482 | + <div id="fp-container-6473307" class="col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container" lang=""> | |
| 1483 | + <div class="floor-plan-card h-100" lang=""> | |
| 1484 | + <!-- Gallery Section --> | |
| 1485 | + <div class="gallery-section p-3" lang=""> | |
| 1486 | + | |
| 1487 | + | |
| 1488 | + | |
| 1489 | + | |
| 1490 | + | |
| 1491 | + | |
| 1492 | + | |
| 1493 | + | |
| 1494 | +<style>#carousel-floorplan-gallery-7 .carousel-inner picture {aspect-ratio: 1.5; width: 100%; display: block}#carousel-floorplan-gallery-7 .carousel-inner {aspect-ratio: 1.5;}</style> | |
| 1495 | +<section role="region" aria-label="Image carousel" id="carousel-floorplan-gallery-7" class="photogallery carousel slide" data-gallery-type="default" data-ride="carousel" data-interval="false" data-enable-legacy-zoom="true" data-has-height="true" data-max-width="1140" data-initialized="true"> | |
| 1496 | + | |
| 1497 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 1498 | + | |
| 1499 | + | |
| 1500 | + | |
| 1501 | + | |
| 1502 | + | |
| 1503 | + | |
| 1504 | + | |
| 1505 | + | |
| 1506 | + <div role="tabpanel" class="carousel-item h-100 active" id="carousel-floorplan-gallery-7-slide-1" lang=""> | |
| 1507 | + <div class="item h-100" lang=""> | |
| 1508 | + <a href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a8.png" role="button" aria-label="Aalto | A8 | Accessible Floor plan image, opens a dialog" class="modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0" lang="" data-prevent-lightbox="off" aria-controls="fp-modal" data-screen="modal-content-6473307" data-image-modal="modal-body-6473307" data-toggle="modal" data-imagemodal-label="fp-modalLabel6473307" data-target="#fp-modal"> | |
| 1509 | + <div class="item-index" data-selenium-id="ImageNumber1" lang="">1 de 1</div> | |
| 1510 | + | |
| 1511 | + <picture> | |
| 1512 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a8.png"> | |
| 1513 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a8.png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a8.png"> | |
| 1514 | +<source media="(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a8.png 2x"><source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a8.png"> | |
| 1515 | +<source media="(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a8.png 2x"><source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a8.png"> | |
| 1516 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a8.png 2x"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a8.png" class="img-fluid" alt="" fetchpriority="high"> | |
| 1517 | +</picture> | |
| 1518 | + | |
| 1519 | + | |
| 1520 | + | |
| 1521 | + </a> | |
| 1522 | + </div> | |
| 1523 | + </div> | |
| 1524 | + </div> | |
| 1525 | +</section> | |
| 1526 | + | |
| 1527 | + | |
| 1528 | + | |
| 1529 | + | |
| 1530 | + | |
| 1531 | + | |
| 1532 | + <script> | |
| 1533 | + document.querySelectorAll("#carousel-floorplan-gallery-7 .item a").forEach(a => { | |
| 1534 | + a.dataset.preventLightbox = "off" | |
| 1535 | + a.className = "modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0"; | |
| 1536 | + a.setAttribute("aria-label","Aalto | A8 | Accessible Floor plan image, opens a dialog"); | |
| 1537 | + a.setAttribute("aria-controls","fp-modal"); | |
| 1538 | + a.dataset.screen = "modal-content-6473307"; | |
| 1539 | + a.dataset.imageModal = "modal-body-6473307"; | |
| 1540 | + a.dataset.toggle = "modal"; | |
| 1541 | + a.dataset.imagemodalLabel = "fp-modalLabel6473307"; | |
| 1542 | + a.dataset.target = "#fp-modal"; | |
| 1543 | + a.addEventListener("click",() => { document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6473307') }) | |
| 1544 | + }); | |
| 1545 | + </script> | |
| 1546 | + </div> | |
| 1547 | + | |
| 1548 | + <!-- Video Buttons --> | |
| 1549 | + <div class="btn-group-custom" lang=""> | |
| 1550 | + | |
| 1551 | + </div> | |
| 1552 | + | |
| 1553 | + <!-- Property Details --> | |
| 1554 | + <div class="details-section" lang=""> | |
| 1555 | + <h2 id="fp-header-7" class="property-title h4" lang=""> | |
| 1556 | + Aalto | A8 | Accessible | |
| 1557 | + </h2> | |
| 1558 | + <div class="property-details" lang=""> | |
| 1559 | + | |
| 1560 | + | |
| 1561 | + <div class="property-details" lang=""> | |
| 1562 | + <span lang="">1 chambre / 1 SdB</span> | |
| 1563 | + <span class="dot-separator" lang="">●</span> | |
| 1564 | + <span lang="">608 pc</span> | |
| 1565 | + </div> | |
| 1566 | + </div> | |
| 1567 | + </div> | |
| 1568 | + | |
| 1569 | + <!-- Pricing Section --> | |
| 1570 | + <div class="pricing-section" lang=""> | |
| 1571 | + <div class="pricing-container" lang=""> | |
| 1572 | + <div class="pricing-details bg-light mb-2" lang=""> | |
| 1573 | + <span class="pricing-title" lang="">à partir de</span> | |
| 1574 | + | |
| 1575 | + <div lang=""> | |
| 1576 | + <span class="pricing-amount" lang="">$1,835.00</span> | |
| 1577 | + <span class="pricing-period" lang="">/mois</span> | |
| 1578 | + </div> | |
| 1579 | + | |
| 1580 | + | |
| 1581 | + </div> | |
| 1582 | + | |
| 1583 | + <!-- Cost Calculator Section --> | |
| 1584 | + </div> | |
| 1585 | + </div> | |
| 1586 | + | |
| 1587 | + <!-- Specials Badge --> | |
| 1588 | + <div class="extras-section mt-2" lang=""> | |
| 1589 | + <div class="specials-badge" lang=""></div> | |
| 1590 | + </div> | |
| 1591 | + | |
| 1592 | + | |
| 1593 | + <!-- CTA Button --> | |
| 1594 | + <div class="cta-section mt-3" lang=""> | |
| 1595 | + <a href="/floorplans/aalto-%7c-a8-%7c-accessible" class="btn-block track-apply floorplan-action-button btn btn-primary" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto | A8 | Accessible" data-floorplan-size="1" data-floorplan-sqft="608" data-floorplan-price="1835" data-selenium-id="floorplan-7-apply-btn" lang="">vérifier la disponibilité<span class="sr-only" lang=""> for Aalto | A8 | Accessible</span> | |
| 1596 | + </a> | |
| 1597 | + </div> | |
| 1598 | + | |
| 1599 | + <!-- Available Tours --> | |
| 1600 | + <div class="tour-section text-center" lang=""> | |
| 1601 | + <a href="/scheduletour" class="schedule-link" lang="">Planifier une visite<span class="sr-only" lang=""> for Aalto | A8 | Accessible</span></a> | |
| 1602 | + </div> | |
| 1603 | + | |
| 1604 | + <!-- Smart Nudge Inline Message --> | |
| 1605 | + | |
| 1606 | + <!-- Smart Nudge Directional Popover --> | |
| 1607 | + </div> | |
| 1608 | + </div> | |
| 1609 | + <div id="fp-container-6473303" class="col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container" lang=""> | |
| 1610 | + <div class="floor-plan-card h-100" lang=""> | |
| 1611 | + <!-- Gallery Section --> | |
| 1612 | + <div class="gallery-section p-3" lang=""> | |
| 1613 | + | |
| 1614 | + | |
| 1615 | + | |
| 1616 | + | |
| 1617 | + | |
| 1618 | + | |
| 1619 | + | |
| 1620 | + | |
| 1621 | +<style>#carousel-floorplan-gallery-8 .carousel-inner picture {aspect-ratio: 1.5; width: 100%; display: block}#carousel-floorplan-gallery-8 .carousel-inner {aspect-ratio: 1.5;}</style> | |
| 1622 | +<section role="region" aria-label="Image carousel" id="carousel-floorplan-gallery-8" class="photogallery carousel slide" data-gallery-type="default" data-ride="carousel" data-interval="false" data-enable-legacy-zoom="true" data-has-height="true" data-max-width="1140" data-initialized="true"> | |
| 1623 | + | |
| 1624 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 1625 | + | |
| 1626 | + | |
| 1627 | + | |
| 1628 | + | |
| 1629 | + | |
| 1630 | + | |
| 1631 | + | |
| 1632 | + | |
| 1633 | + <div role="tabpanel" class="carousel-item h-100 active" id="carousel-floorplan-gallery-8-slide-1" lang=""> | |
| 1634 | + <div class="item h-100" lang=""> | |
| 1635 | + <a href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a5(1).png" role="button" aria-label="Aalto | A5 | Accessible Floor plan image, opens a dialog" class="modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0" lang="" data-prevent-lightbox="off" aria-controls="fp-modal" data-screen="modal-content-6473303" data-image-modal="modal-body-6473303" data-toggle="modal" data-imagemodal-label="fp-modalLabel6473303" data-target="#fp-modal"> | |
| 1636 | + <div class="item-index" data-selenium-id="ImageNumber1" lang="">1 de 1</div> | |
| 1637 | + | |
| 1638 | + <picture> | |
| 1639 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a5(1).png"> | |
| 1640 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a5(1).png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a5(1).png"> | |
| 1641 | +<source media="(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a5(1).png 2x"><source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a5(1).png"> | |
| 1642 | +<source media="(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a5(1).png 2x"><source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a5(1).png"> | |
| 1643 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a5(1).png 2x"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a5(1).png" class="img-fluid" alt="" fetchpriority="high"> | |
| 1644 | +</picture> | |
| 1645 | + | |
| 1646 | + | |
| 1647 | + | |
| 1648 | + </a> | |
| 1649 | + </div> | |
| 1650 | + </div> | |
| 1651 | + </div> | |
| 1652 | +</section> | |
| 1653 | + | |
| 1654 | + | |
| 1655 | + | |
| 1656 | + | |
| 1657 | + | |
| 1658 | + | |
| 1659 | + <script> | |
| 1660 | + document.querySelectorAll("#carousel-floorplan-gallery-8 .item a").forEach(a => { | |
| 1661 | + a.dataset.preventLightbox = "off" | |
| 1662 | + a.className = "modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0"; | |
| 1663 | + a.setAttribute("aria-label","Aalto | A5 | Accessible Floor plan image, opens a dialog"); | |
| 1664 | + a.setAttribute("aria-controls","fp-modal"); | |
| 1665 | + a.dataset.screen = "modal-content-6473303"; | |
| 1666 | + a.dataset.imageModal = "modal-body-6473303"; | |
| 1667 | + a.dataset.toggle = "modal"; | |
| 1668 | + a.dataset.imagemodalLabel = "fp-modalLabel6473303"; | |
| 1669 | + a.dataset.target = "#fp-modal"; | |
| 1670 | + a.addEventListener("click",() => { document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6473303') }) | |
| 1671 | + }); | |
| 1672 | + </script> | |
| 1673 | + </div> | |
| 1674 | + | |
| 1675 | + <!-- Video Buttons --> | |
| 1676 | + <div class="btn-group-custom" lang=""> | |
| 1677 | + | |
| 1678 | + </div> | |
| 1679 | + | |
| 1680 | + <!-- Property Details --> | |
| 1681 | + <div class="details-section" lang=""> | |
| 1682 | + <h2 id="fp-header-8" class="property-title h4" lang=""> | |
| 1683 | + Aalto | A5 | Accessible | |
| 1684 | + </h2> | |
| 1685 | + <div class="property-details" lang=""> | |
| 1686 | + | |
| 1687 | + | |
| 1688 | + <div class="property-details" lang=""> | |
| 1689 | + <span lang="">1 chambre / 1 SdB</span> | |
| 1690 | + <span class="dot-separator" lang="">●</span> | |
| 1691 | + <span lang="">607 pc</span> | |
| 1692 | + </div> | |
| 1693 | + </div> | |
| 1694 | + </div> | |
| 1695 | + | |
| 1696 | + <!-- Pricing Section --> | |
| 1697 | + <div class="pricing-section" lang=""> | |
| 1698 | + <div class="pricing-container" lang=""> | |
| 1699 | + <div class="pricing-details bg-light mb-2" lang=""> | |
| 1700 | + <span class="pricing-title" lang="">à partir de</span> | |
| 1701 | + | |
| 1702 | + <div lang=""> | |
| 1703 | + <span class="pricing-amount" lang="">$1,835.00</span> | |
| 1704 | + <span class="pricing-period" lang="">/mois</span> | |
| 1705 | + </div> | |
| 1706 | + | |
| 1707 | + | |
| 1708 | + </div> | |
| 1709 | + | |
| 1710 | + <!-- Cost Calculator Section --> | |
| 1711 | + </div> | |
| 1712 | + </div> | |
| 1713 | + | |
| 1714 | + <!-- Specials Badge --> | |
| 1715 | + <div class="extras-section mt-2" lang=""> | |
| 1716 | + <div class="specials-badge" lang=""></div> | |
| 1717 | + </div> | |
| 1718 | + | |
| 1719 | + | |
| 1720 | + <!-- CTA Button --> | |
| 1721 | + <div class="cta-section mt-3" lang=""> | |
| 1722 | + <a href="/floorplans/aalto-%7c-a5-%7c-accessible" class="btn-block track-apply floorplan-action-button btn btn-primary" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto | A5 | Accessible" data-floorplan-size="1" data-floorplan-sqft="607" data-floorplan-price="1835" data-selenium-id="floorplan-8-apply-btn" lang="">vérifier la disponibilité<span class="sr-only" lang=""> for Aalto | A5 | Accessible</span> | |
| 1723 | + </a> | |
| 1724 | + </div> | |
| 1725 | + | |
| 1726 | + <!-- Available Tours --> | |
| 1727 | + <div class="tour-section text-center" lang=""> | |
| 1728 | + <a href="/scheduletour" class="schedule-link" lang="">Planifier une visite<span class="sr-only" lang=""> for Aalto | A5 | Accessible</span></a> | |
| 1729 | + </div> | |
| 1730 | + | |
| 1731 | + <!-- Smart Nudge Inline Message --> | |
| 1732 | + | |
| 1733 | + <!-- Smart Nudge Directional Popover --> | |
| 1734 | + </div> | |
| 1735 | + </div> | |
| 1736 | + <div id="fp-container-6473295" class="col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container" lang=""> | |
| 1737 | + <div class="floor-plan-card h-100" lang=""> | |
| 1738 | + <!-- Gallery Section --> | |
| 1739 | + <div class="gallery-section p-3" lang=""> | |
| 1740 | + | |
| 1741 | + | |
| 1742 | + | |
| 1743 | + | |
| 1744 | + | |
| 1745 | + | |
| 1746 | + | |
| 1747 | + | |
| 1748 | +<style>#carousel-floorplan-gallery-9 .carousel-inner picture {aspect-ratio: 1.5; width: 100%; display: block}#carousel-floorplan-gallery-9 .carousel-inner {aspect-ratio: 1.5;}</style> | |
| 1749 | +<section role="region" aria-label="Image carousel" id="carousel-floorplan-gallery-9" class="photogallery carousel slide" data-gallery-type="default" data-ride="carousel" data-interval="false" data-enable-legacy-zoom="true" data-has-height="true" data-max-width="1140" data-initialized="true"> | |
| 1750 | + | |
| 1751 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 1752 | + | |
| 1753 | + | |
| 1754 | + | |
| 1755 | + | |
| 1756 | + | |
| 1757 | + | |
| 1758 | + | |
| 1759 | + | |
| 1760 | + <div role="tabpanel" class="carousel-item h-100 active" id="carousel-floorplan-gallery-9-slide-1" lang=""> | |
| 1761 | + <div class="item h-100" lang=""> | |
| 1762 | + <a href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a10.png" role="button" aria-label="Aalto | A10 Floor plan image, opens a dialog" class="modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0" lang="" data-prevent-lightbox="off" aria-controls="fp-modal" data-screen="modal-content-6473295" data-image-modal="modal-body-6473295" data-toggle="modal" data-imagemodal-label="fp-modalLabel6473295" data-target="#fp-modal"> | |
| 1763 | + <div class="item-index" data-selenium-id="ImageNumber1" lang="">1 de 1</div> | |
| 1764 | + | |
| 1765 | + <picture> | |
| 1766 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a10.png"> | |
| 1767 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a10.png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a10.png"> | |
| 1768 | +<source media="(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a10.png 2x"><source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a10.png"> | |
| 1769 | +<source media="(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a10.png 2x"><source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a10.png"> | |
| 1770 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a10.png 2x"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a10.png" class="img-fluid" alt="" fetchpriority="high"> | |
| 1771 | +</picture> | |
| 1772 | + | |
| 1773 | + | |
| 1774 | + | |
| 1775 | + </a> | |
| 1776 | + </div> | |
| 1777 | + </div> | |
| 1778 | + </div> | |
| 1779 | +</section> | |
| 1780 | + | |
| 1781 | + | |
| 1782 | + | |
| 1783 | + | |
| 1784 | + | |
| 1785 | + | |
| 1786 | + <script> | |
| 1787 | + document.querySelectorAll("#carousel-floorplan-gallery-9 .item a").forEach(a => { | |
| 1788 | + a.dataset.preventLightbox = "off" | |
| 1789 | + a.className = "modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0"; | |
| 1790 | + a.setAttribute("aria-label","Aalto | A10 Floor plan image, opens a dialog"); | |
| 1791 | + a.setAttribute("aria-controls","fp-modal"); | |
| 1792 | + a.dataset.screen = "modal-content-6473295"; | |
| 1793 | + a.dataset.imageModal = "modal-body-6473295"; | |
| 1794 | + a.dataset.toggle = "modal"; | |
| 1795 | + a.dataset.imagemodalLabel = "fp-modalLabel6473295"; | |
| 1796 | + a.dataset.target = "#fp-modal"; | |
| 1797 | + a.addEventListener("click",() => { document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6473295') }) | |
| 1798 | + }); | |
| 1799 | + </script> | |
| 1800 | + </div> | |
| 1801 | + | |
| 1802 | + <!-- Video Buttons --> | |
| 1803 | + <div class="btn-group-custom" lang=""> | |
| 1804 | + | |
| 1805 | + </div> | |
| 1806 | + | |
| 1807 | + <!-- Property Details --> | |
| 1808 | + <div class="details-section" lang=""> | |
| 1809 | + <h2 id="fp-header-9" class="property-title h4" lang=""> | |
| 1810 | + Aalto | A10 | |
| 1811 | + </h2> | |
| 1812 | + <div class="property-details" lang=""> | |
| 1813 | + | |
| 1814 | + | |
| 1815 | + <div class="property-details" lang=""> | |
| 1816 | + <span lang="">1 chambre / 1 SdB</span> | |
| 1817 | + <span class="dot-separator" lang="">●</span> | |
| 1818 | + <span lang="">609 pc</span> | |
| 1819 | + </div> | |
| 1820 | + </div> | |
| 1821 | + </div> | |
| 1822 | + | |
| 1823 | + <!-- Pricing Section --> | |
| 1824 | + <div class="pricing-section" lang=""> | |
| 1825 | + <div class="pricing-container" lang=""> | |
| 1826 | + <div class="pricing-details bg-light mb-2" lang=""> | |
| 1827 | + <span class="pricing-title" lang="">à partir de</span> | |
| 1828 | + | |
| 1829 | + <div lang=""> | |
| 1830 | + <span class="pricing-amount" lang="">$1,850.00</span> | |
| 1831 | + <span class="pricing-period" lang="">/mois</span> | |
| 1832 | + </div> | |
| 1833 | + | |
| 1834 | + | |
| 1835 | + </div> | |
| 1836 | + | |
| 1837 | + <!-- Cost Calculator Section --> | |
| 1838 | + </div> | |
| 1839 | + </div> | |
| 1840 | + | |
| 1841 | + <!-- Specials Badge --> | |
| 1842 | + <div class="extras-section mt-2" lang=""> | |
| 1843 | + <div class="specials-badge" lang=""></div> | |
| 1844 | + </div> | |
| 1845 | + | |
| 1846 | + | |
| 1847 | + <!-- CTA Button --> | |
| 1848 | + <div class="cta-section mt-3" lang=""> | |
| 1849 | + <a href="/floorplans/aalto-%7c-a10" class="btn-block track-apply floorplan-action-button btn btn-primary" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto | A10" data-floorplan-size="1" data-floorplan-sqft="609" data-floorplan-price="1850" data-selenium-id="floorplan-9-apply-btn" lang="">vérifier la disponibilité<span class="sr-only" lang=""> for Aalto | A10</span> | |
| 1850 | + </a> | |
| 1851 | + </div> | |
| 1852 | + | |
| 1853 | + <!-- Available Tours --> | |
| 1854 | + <div class="tour-section text-center" lang=""> | |
| 1855 | + <a href="/scheduletour" class="schedule-link" lang="">Planifier une visite<span class="sr-only" lang=""> for Aalto | A10</span></a> | |
| 1856 | + </div> | |
| 1857 | + | |
| 1858 | + <!-- Smart Nudge Inline Message --> | |
| 1859 | + | |
| 1860 | + <!-- Smart Nudge Directional Popover --> | |
| 1861 | + </div> | |
| 1862 | + </div> | |
| 1863 | + <div id="fp-container-6473297" class="col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container" lang=""> | |
| 1864 | + <div class="floor-plan-card h-100" lang=""> | |
| 1865 | + <!-- Gallery Section --> | |
| 1866 | + <div class="gallery-section p-3" lang=""> | |
| 1867 | + | |
| 1868 | + | |
| 1869 | + | |
| 1870 | + | |
| 1871 | + | |
| 1872 | + | |
| 1873 | + | |
| 1874 | + | |
| 1875 | +<style>#carousel-floorplan-gallery-10 .carousel-inner picture {aspect-ratio: 1.5; width: 100%; display: block}#carousel-floorplan-gallery-10 .carousel-inner {aspect-ratio: 1.5;}</style> | |
| 1876 | +<section role="region" aria-label="Image carousel" id="carousel-floorplan-gallery-10" class="photogallery carousel slide" data-gallery-type="default" data-ride="carousel" data-interval="false" data-enable-legacy-zoom="true" data-has-height="true" data-max-width="1140" data-initialized="true"> | |
| 1877 | + | |
| 1878 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 1879 | + | |
| 1880 | + | |
| 1881 | + | |
| 1882 | + | |
| 1883 | + | |
| 1884 | + | |
| 1885 | + | |
| 1886 | + | |
| 1887 | + <div role="tabpanel" class="carousel-item h-100 active" id="carousel-floorplan-gallery-10-slide-1" lang=""> | |
| 1888 | + <div class="item h-100" lang=""> | |
| 1889 | + <a href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a11.png" role="button" aria-label="Aalto | A11 Floor plan image, opens a dialog" class="modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0" lang="" data-prevent-lightbox="off" aria-controls="fp-modal" data-screen="modal-content-6473297" data-image-modal="modal-body-6473297" data-toggle="modal" data-imagemodal-label="fp-modalLabel6473297" data-target="#fp-modal"> | |
| 1890 | + <div class="item-index" data-selenium-id="ImageNumber1" lang="">1 de 1</div> | |
| 1891 | + | |
| 1892 | + <picture> | |
| 1893 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a11.png"> | |
| 1894 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a11.png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a11.png"> | |
| 1895 | +<source media="(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a11.png 2x"><source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a11.png"> | |
| 1896 | +<source media="(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a11.png 2x"><source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a11.png"> | |
| 1897 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a11.png 2x"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a11.png" class="img-fluid" alt="" fetchpriority="high"> | |
| 1898 | +</picture> | |
| 1899 | + | |
| 1900 | + | |
| 1901 | + | |
| 1902 | + </a> | |
| 1903 | + </div> | |
| 1904 | + </div> | |
| 1905 | + </div> | |
| 1906 | +</section> | |
| 1907 | + | |
| 1908 | + | |
| 1909 | + | |
| 1910 | + | |
| 1911 | + | |
| 1912 | + | |
| 1913 | + <script> | |
| 1914 | + document.querySelectorAll("#carousel-floorplan-gallery-10 .item a").forEach(a => { | |
| 1915 | + a.dataset.preventLightbox = "off" | |
| 1916 | + a.className = "modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0"; | |
| 1917 | + a.setAttribute("aria-label","Aalto | A11 Floor plan image, opens a dialog"); | |
| 1918 | + a.setAttribute("aria-controls","fp-modal"); | |
| 1919 | + a.dataset.screen = "modal-content-6473297"; | |
| 1920 | + a.dataset.imageModal = "modal-body-6473297"; | |
| 1921 | + a.dataset.toggle = "modal"; | |
| 1922 | + a.dataset.imagemodalLabel = "fp-modalLabel6473297"; | |
| 1923 | + a.dataset.target = "#fp-modal"; | |
| 1924 | + a.addEventListener("click",() => { document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6473297') }) | |
| 1925 | + }); | |
| 1926 | + </script> | |
| 1927 | + </div> | |
| 1928 | + | |
| 1929 | + <!-- Video Buttons --> | |
| 1930 | + <div class="btn-group-custom" lang=""> | |
| 1931 | + | |
| 1932 | + </div> | |
| 1933 | + | |
| 1934 | + <!-- Property Details --> | |
| 1935 | + <div class="details-section" lang=""> | |
| 1936 | + <h2 id="fp-header-10" class="property-title h4" lang=""> | |
| 1937 | + Aalto | A11 | |
| 1938 | + </h2> | |
| 1939 | + <div class="property-details" lang=""> | |
| 1940 | + | |
| 1941 | + | |
| 1942 | + <div class="property-details" lang=""> | |
| 1943 | + <span lang="">1 chambre / 1 SdB</span> | |
| 1944 | + <span class="dot-separator" lang="">●</span> | |
| 1945 | + <span lang="">635 pc</span> | |
| 1946 | + </div> | |
| 1947 | + </div> | |
| 1948 | + </div> | |
| 1949 | + | |
| 1950 | + <!-- Pricing Section --> | |
| 1951 | + <div class="pricing-section" lang=""> | |
| 1952 | + <div class="pricing-container" lang=""> | |
| 1953 | + <div class="pricing-details bg-light mb-2" lang=""> | |
| 1954 | + <span class="pricing-title" lang="">à partir de</span> | |
| 1955 | + | |
| 1956 | + <div lang=""> | |
| 1957 | + <span class="pricing-amount" lang="">$1,855.00</span> | |
| 1958 | + <span class="pricing-period" lang="">/mois</span> | |
| 1959 | + </div> | |
| 1960 | + | |
| 1961 | + | |
| 1962 | + </div> | |
| 1963 | + | |
| 1964 | + <!-- Cost Calculator Section --> | |
| 1965 | + </div> | |
| 1966 | + </div> | |
| 1967 | + | |
| 1968 | + <!-- Specials Badge --> | |
| 1969 | + <div class="extras-section mt-2" lang=""> | |
| 1970 | + <div class="specials-badge" lang=""></div> | |
| 1971 | + </div> | |
| 1972 | + | |
| 1973 | + | |
| 1974 | + <!-- CTA Button --> | |
| 1975 | + <div class="cta-section mt-3" lang=""> | |
| 1976 | + <a href="/floorplans/aalto-%7c-a11" class="btn-block track-apply floorplan-action-button btn btn-primary" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto | A11" data-floorplan-size="1" data-floorplan-sqft="635" data-floorplan-price="1855 -1875" data-selenium-id="floorplan-10-apply-btn" lang="">vérifier la disponibilité<span class="sr-only" lang=""> for Aalto | A11</span> | |
| 1977 | + </a> | |
| 1978 | + </div> | |
| 1979 | + | |
| 1980 | + <!-- Available Tours --> | |
| 1981 | + <div class="tour-section text-center" lang=""> | |
| 1982 | + <a href="/scheduletour" class="schedule-link" lang="">Planifier une visite<span class="sr-only" lang=""> for Aalto | A11</span></a> | |
| 1983 | + </div> | |
| 1984 | + | |
| 1985 | + <!-- Smart Nudge Inline Message --> | |
| 1986 | + | |
| 1987 | + <!-- Smart Nudge Directional Popover --> | |
| 1988 | + </div> | |
| 1989 | + </div> | |
| 1990 | + <div id="fp-container-6473299" class="col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container" lang=""> | |
| 1991 | + <div class="floor-plan-card h-100" lang=""> | |
| 1992 | + <!-- Gallery Section --> | |
| 1993 | + <div class="gallery-section p-3" lang=""> | |
| 1994 | + | |
| 1995 | + | |
| 1996 | + | |
| 1997 | + | |
| 1998 | + | |
| 1999 | + | |
| 2000 | + | |
| 2001 | + | |
| 2002 | +<style>#carousel-floorplan-gallery-11 .carousel-inner picture {aspect-ratio: 1.5; width: 100%; display: block}#carousel-floorplan-gallery-11 .carousel-inner {aspect-ratio: 1.5;}</style> | |
| 2003 | +<section role="region" aria-label="Image carousel" id="carousel-floorplan-gallery-11" class="photogallery carousel slide" data-gallery-type="default" data-ride="carousel" data-interval="false" data-enable-legacy-zoom="true" data-has-height="true" data-max-width="1140" data-initialized="true"> | |
| 2004 | + | |
| 2005 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 2006 | + | |
| 2007 | + | |
| 2008 | + | |
| 2009 | + | |
| 2010 | + | |
| 2011 | + | |
| 2012 | + | |
| 2013 | + | |
| 2014 | + <div role="tabpanel" class="carousel-item h-100 active" id="carousel-floorplan-gallery-11-slide-1" lang=""> | |
| 2015 | + <div class="item h-100" lang=""> | |
| 2016 | + <a href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a13.png" role="button" aria-label="Aalto | A13 Floor plan image, opens a dialog" class="modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0" lang="" data-prevent-lightbox="off" aria-controls="fp-modal" data-screen="modal-content-6473299" data-image-modal="modal-body-6473299" data-toggle="modal" data-imagemodal-label="fp-modalLabel6473299" data-target="#fp-modal"> | |
| 2017 | + <div class="item-index" data-selenium-id="ImageNumber1" lang="">1 de 1</div> | |
| 2018 | + | |
| 2019 | + <picture> | |
| 2020 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a13.png"> | |
| 2021 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a13.png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a13.png"> | |
| 2022 | +<source media="(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a13.png 2x"><source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a13.png"> | |
| 2023 | +<source media="(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a13.png 2x"><source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a13.png"> | |
| 2024 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a13.png 2x"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a13.png" class="img-fluid" alt="" fetchpriority="high"> | |
| 2025 | +</picture> | |
| 2026 | + | |
| 2027 | + | |
| 2028 | + | |
| 2029 | + </a> | |
| 2030 | + </div> | |
| 2031 | + </div> | |
| 2032 | + </div> | |
| 2033 | +</section> | |
| 2034 | + | |
| 2035 | + | |
| 2036 | + | |
| 2037 | + | |
| 2038 | + | |
| 2039 | + | |
| 2040 | + <script> | |
| 2041 | + document.querySelectorAll("#carousel-floorplan-gallery-11 .item a").forEach(a => { | |
| 2042 | + a.dataset.preventLightbox = "off" | |
| 2043 | + a.className = "modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0"; | |
| 2044 | + a.setAttribute("aria-label","Aalto | A13 Floor plan image, opens a dialog"); | |
| 2045 | + a.setAttribute("aria-controls","fp-modal"); | |
| 2046 | + a.dataset.screen = "modal-content-6473299"; | |
| 2047 | + a.dataset.imageModal = "modal-body-6473299"; | |
| 2048 | + a.dataset.toggle = "modal"; | |
| 2049 | + a.dataset.imagemodalLabel = "fp-modalLabel6473299"; | |
| 2050 | + a.dataset.target = "#fp-modal"; | |
| 2051 | + a.addEventListener("click",() => { document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6473299') }) | |
| 2052 | + }); | |
| 2053 | + </script> | |
| 2054 | + </div> | |
| 2055 | + | |
| 2056 | + <!-- Video Buttons --> | |
| 2057 | + <div class="btn-group-custom" lang=""> | |
| 2058 | + | |
| 2059 | + </div> | |
| 2060 | + | |
| 2061 | + <!-- Property Details --> | |
| 2062 | + <div class="details-section" lang=""> | |
| 2063 | + <h2 id="fp-header-11" class="property-title h4" lang=""> | |
| 2064 | + Aalto | A13 | |
| 2065 | + </h2> | |
| 2066 | + <div class="property-details" lang=""> | |
| 2067 | + | |
| 2068 | + | |
| 2069 | + <div class="property-details" lang=""> | |
| 2070 | + <span lang="">1 chambre / 1 SdB</span> | |
| 2071 | + <span class="dot-separator" lang="">●</span> | |
| 2072 | + <span lang="">598 pc</span> | |
| 2073 | + </div> | |
| 2074 | + </div> | |
| 2075 | + </div> | |
| 2076 | + | |
| 2077 | + <!-- Pricing Section --> | |
| 2078 | + <div class="pricing-section" lang=""> | |
| 2079 | + <div class="pricing-container" lang=""> | |
| 2080 | + <div class="pricing-details bg-light mb-2" lang=""> | |
| 2081 | + <span class="pricing-title" lang="">à partir de</span> | |
| 2082 | + | |
| 2083 | + <div lang=""> | |
| 2084 | + <span class="pricing-amount" lang="">$1,855.00</span> | |
| 2085 | + <span class="pricing-period" lang="">/mois</span> | |
| 2086 | + </div> | |
| 2087 | + | |
| 2088 | + | |
| 2089 | + </div> | |
| 2090 | + | |
| 2091 | + <!-- Cost Calculator Section --> | |
| 2092 | + </div> | |
| 2093 | + </div> | |
| 2094 | + | |
| 2095 | + <!-- Specials Badge --> | |
| 2096 | + <div class="extras-section mt-2" lang=""> | |
| 2097 | + <div class="specials-badge" lang=""></div> | |
| 2098 | + </div> | |
| 2099 | + | |
| 2100 | + | |
| 2101 | + <!-- CTA Button --> | |
| 2102 | + <div class="cta-section mt-3" lang=""> | |
| 2103 | + <a href="/floorplans/aalto-%7c-a13" class="btn-block track-apply floorplan-action-button btn btn-primary" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto | A13" data-floorplan-size="1" data-floorplan-sqft="598" data-floorplan-price="1855 -1870" data-selenium-id="floorplan-11-apply-btn" lang="">vérifier la disponibilité<span class="sr-only" lang=""> for Aalto | A13</span> | |
| 2104 | + </a> | |
| 2105 | + </div> | |
| 2106 | + | |
| 2107 | + <!-- Available Tours --> | |
| 2108 | + <div class="tour-section text-center" lang=""> | |
| 2109 | + <a href="/scheduletour" class="schedule-link" lang="">Planifier une visite<span class="sr-only" lang=""> for Aalto | A13</span></a> | |
| 2110 | + </div> | |
| 2111 | + | |
| 2112 | + <!-- Smart Nudge Inline Message --> | |
| 2113 | + | |
| 2114 | + <!-- Smart Nudge Directional Popover --> | |
| 2115 | + </div> | |
| 2116 | + </div> | |
| 2117 | + <div id="fp-container-6473304" class="col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container" lang=""> | |
| 2118 | + <div class="floor-plan-card h-100" lang=""> | |
| 2119 | + <!-- Gallery Section --> | |
| 2120 | + <div class="gallery-section p-3" lang=""> | |
| 2121 | + | |
| 2122 | + | |
| 2123 | + | |
| 2124 | + | |
| 2125 | + | |
| 2126 | + | |
| 2127 | + | |
| 2128 | + | |
| 2129 | +<style>#carousel-floorplan-gallery-12 .carousel-inner picture {aspect-ratio: 1.5; width: 100%; display: block}#carousel-floorplan-gallery-12 .carousel-inner {aspect-ratio: 1.5;}</style> | |
| 2130 | +<section role="region" aria-label="Image carousel" id="carousel-floorplan-gallery-12" class="photogallery carousel slide" data-gallery-type="default" data-ride="carousel" data-interval="false" data-enable-legacy-zoom="true" data-has-height="true" data-max-width="1140" data-initialized="true"> | |
| 2131 | + | |
| 2132 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 2133 | + | |
| 2134 | + | |
| 2135 | + | |
| 2136 | + | |
| 2137 | + | |
| 2138 | + | |
| 2139 | + | |
| 2140 | + | |
| 2141 | + <div role="tabpanel" class="carousel-item h-100 active" id="carousel-floorplan-gallery-12-slide-1" lang=""> | |
| 2142 | + <div class="item h-100" lang=""> | |
| 2143 | + <a href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a6(1).png" role="button" aria-label="Aalto | A6 Floor plan image, opens a dialog" class="modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0" lang="" data-prevent-lightbox="off" aria-controls="fp-modal" data-screen="modal-content-6473304" data-image-modal="modal-body-6473304" data-toggle="modal" data-imagemodal-label="fp-modalLabel6473304" data-target="#fp-modal"> | |
| 2144 | + <div class="item-index" data-selenium-id="ImageNumber1" lang="">1 de 1</div> | |
| 2145 | + | |
| 2146 | + <picture> | |
| 2147 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a6(1).png"> | |
| 2148 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a6(1).png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a6(1).png"> | |
| 2149 | +<source media="(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a6(1).png 2x"><source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a6(1).png"> | |
| 2150 | +<source media="(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a6(1).png 2x"><source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a6(1).png"> | |
| 2151 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a6(1).png 2x"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a6(1).png" class="img-fluid" alt="" fetchpriority="high"> | |
| 2152 | +</picture> | |
| 2153 | + | |
| 2154 | + | |
| 2155 | + | |
| 2156 | + </a> | |
| 2157 | + </div> | |
| 2158 | + </div> | |
| 2159 | + </div> | |
| 2160 | +</section> | |
| 2161 | + | |
| 2162 | + | |
| 2163 | + | |
| 2164 | + | |
| 2165 | + | |
| 2166 | + | |
| 2167 | + <script> | |
| 2168 | + document.querySelectorAll("#carousel-floorplan-gallery-12 .item a").forEach(a => { | |
| 2169 | + a.dataset.preventLightbox = "off" | |
| 2170 | + a.className = "modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0"; | |
| 2171 | + a.setAttribute("aria-label","Aalto | A6 Floor plan image, opens a dialog"); | |
| 2172 | + a.setAttribute("aria-controls","fp-modal"); | |
| 2173 | + a.dataset.screen = "modal-content-6473304"; | |
| 2174 | + a.dataset.imageModal = "modal-body-6473304"; | |
| 2175 | + a.dataset.toggle = "modal"; | |
| 2176 | + a.dataset.imagemodalLabel = "fp-modalLabel6473304"; | |
| 2177 | + a.dataset.target = "#fp-modal"; | |
| 2178 | + a.addEventListener("click",() => { document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6473304') }) | |
| 2179 | + }); | |
| 2180 | + </script> | |
| 2181 | + </div> | |
| 2182 | + | |
| 2183 | + <!-- Video Buttons --> | |
| 2184 | + <div class="btn-group-custom" lang=""> | |
| 2185 | + | |
| 2186 | + </div> | |
| 2187 | + | |
| 2188 | + <!-- Property Details --> | |
| 2189 | + <div class="details-section" lang=""> | |
| 2190 | + <h2 id="fp-header-12" class="property-title h4" lang=""> | |
| 2191 | + Aalto | A6 | |
| 2192 | + </h2> | |
| 2193 | + <div class="property-details" lang=""> | |
| 2194 | + | |
| 2195 | + | |
| 2196 | + <div class="property-details" lang=""> | |
| 2197 | + <span lang="">1 chambre / 1 SdB</span> | |
| 2198 | + <span class="dot-separator" lang="">●</span> | |
| 2199 | + <span lang="">620 pc</span> | |
| 2200 | + </div> | |
| 2201 | + </div> | |
| 2202 | + </div> | |
| 2203 | + | |
| 2204 | + <!-- Pricing Section --> | |
| 2205 | + <div class="pricing-section" lang=""> | |
| 2206 | + <div class="pricing-container" lang=""> | |
| 2207 | + <div class="pricing-details bg-light mb-2" lang=""> | |
| 2208 | + <span class="pricing-title" lang="">à partir de</span> | |
| 2209 | + | |
| 2210 | + <div lang=""> | |
| 2211 | + <span class="pricing-amount" lang="">$1,860.00</span> | |
| 2212 | + <span class="pricing-period" lang="">/mois</span> | |
| 2213 | + </div> | |
| 2214 | + | |
| 2215 | + | |
| 2216 | + </div> | |
| 2217 | + | |
| 2218 | + <!-- Cost Calculator Section --> | |
| 2219 | + </div> | |
| 2220 | + </div> | |
| 2221 | + | |
| 2222 | + <!-- Specials Badge --> | |
| 2223 | + <div class="extras-section mt-2" lang=""> | |
| 2224 | + <div class="specials-badge" lang=""></div> | |
| 2225 | + </div> | |
| 2226 | + | |
| 2227 | + | |
| 2228 | + <!-- CTA Button --> | |
| 2229 | + <div class="cta-section mt-3" lang=""> | |
| 2230 | + <a href="/floorplans/aalto-%7c-a6" class="btn-block track-apply floorplan-action-button btn btn-primary" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto | A6" data-floorplan-size="1" data-floorplan-sqft="620" data-floorplan-price="1860 -1875" data-selenium-id="floorplan-12-apply-btn" lang="">vérifier la disponibilité<span class="sr-only" lang=""> for Aalto | A6</span> | |
| 2231 | + </a> | |
| 2232 | + </div> | |
| 2233 | + | |
| 2234 | + <!-- Available Tours --> | |
| 2235 | + <div class="tour-section text-center" lang=""> | |
| 2236 | + <a href="/scheduletour" class="schedule-link" lang="">Planifier une visite<span class="sr-only" lang=""> for Aalto | A6</span></a> | |
| 2237 | + </div> | |
| 2238 | + | |
| 2239 | + <!-- Smart Nudge Inline Message --> | |
| 2240 | + | |
| 2241 | + <!-- Smart Nudge Directional Popover --> | |
| 2242 | + </div> | |
| 2243 | + </div> | |
| 2244 | + <div id="fp-container-6473310" class="col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container" lang=""> | |
| 2245 | + <div class="floor-plan-card h-100" lang=""> | |
| 2246 | + <!-- Gallery Section --> | |
| 2247 | + <div class="gallery-section p-3" lang=""> | |
| 2248 | + | |
| 2249 | + | |
| 2250 | + | |
| 2251 | + | |
| 2252 | + | |
| 2253 | + | |
| 2254 | + | |
| 2255 | + | |
| 2256 | +<style>#carousel-floorplan-gallery-13 .carousel-inner picture {aspect-ratio: 1.5; width: 100%; display: block}#carousel-floorplan-gallery-13 .carousel-inner {aspect-ratio: 1.5;}</style> | |
| 2257 | +<section role="region" aria-label="Image carousel" id="carousel-floorplan-gallery-13" class="photogallery carousel slide" data-gallery-type="default" data-ride="carousel" data-interval="false" data-enable-legacy-zoom="true" data-has-height="true" data-max-width="1140" data-initialized="true"> | |
| 2258 | + | |
| 2259 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 2260 | + | |
| 2261 | + | |
| 2262 | + | |
| 2263 | + | |
| 2264 | + | |
| 2265 | + | |
| 2266 | + | |
| 2267 | + | |
| 2268 | + <div role="tabpanel" class="carousel-item h-100 active" id="carousel-floorplan-gallery-13-slide-1" lang=""> | |
| 2269 | + <div class="item h-100" lang=""> | |
| 2270 | + <a href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/b2(1).png" role="button" aria-label="Aalto | B2 Floor plan image, opens a dialog" class="modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0" lang="" data-prevent-lightbox="off" aria-controls="fp-modal" data-screen="modal-content-6473310" data-image-modal="modal-body-6473310" data-toggle="modal" data-imagemodal-label="fp-modalLabel6473310" data-target="#fp-modal"> | |
| 2271 | + <div class="item-index" data-selenium-id="ImageNumber1" lang="">1 de 1</div> | |
| 2272 | + | |
| 2273 | + <picture> | |
| 2274 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/b2(1).png"> | |
| 2275 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/b2(1).png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/b2(1).png"> | |
| 2276 | +<source media="(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/b2(1).png 2x"><source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/b2(1).png"> | |
| 2277 | +<source media="(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/b2(1).png 2x"><source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/b2(1).png"> | |
| 2278 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/b2(1).png 2x"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/b2(1).png" class="img-fluid" alt="" fetchpriority="high"> | |
| 2279 | +</picture> | |
| 2280 | + | |
| 2281 | + | |
| 2282 | + | |
| 2283 | + </a> | |
| 2284 | + </div> | |
| 2285 | + </div> | |
| 2286 | + </div> | |
| 2287 | +</section> | |
| 2288 | + | |
| 2289 | + | |
| 2290 | + | |
| 2291 | + | |
| 2292 | + | |
| 2293 | + | |
| 2294 | + <script> | |
| 2295 | + document.querySelectorAll("#carousel-floorplan-gallery-13 .item a").forEach(a => { | |
| 2296 | + a.dataset.preventLightbox = "off" | |
| 2297 | + a.className = "modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0"; | |
| 2298 | + a.setAttribute("aria-label","Aalto | B2 Floor plan image, opens a dialog"); | |
| 2299 | + a.setAttribute("aria-controls","fp-modal"); | |
| 2300 | + a.dataset.screen = "modal-content-6473310"; | |
| 2301 | + a.dataset.imageModal = "modal-body-6473310"; | |
| 2302 | + a.dataset.toggle = "modal"; | |
| 2303 | + a.dataset.imagemodalLabel = "fp-modalLabel6473310"; | |
| 2304 | + a.dataset.target = "#fp-modal"; | |
| 2305 | + a.addEventListener("click",() => { document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6473310') }) | |
| 2306 | + }); | |
| 2307 | + </script> | |
| 2308 | + </div> | |
| 2309 | + | |
| 2310 | + <!-- Video Buttons --> | |
| 2311 | + <div class="btn-group-custom" lang=""> | |
| 2312 | + | |
| 2313 | + </div> | |
| 2314 | + | |
| 2315 | + <!-- Property Details --> | |
| 2316 | + <div class="details-section" lang=""> | |
| 2317 | + <h2 id="fp-header-13" class="property-title h4" lang=""> | |
| 2318 | + Aalto | B2 | |
| 2319 | + </h2> | |
| 2320 | + <div class="property-details" lang=""> | |
| 2321 | + | |
| 2322 | + | |
| 2323 | + <div class="property-details" lang=""> | |
| 2324 | + <span lang="">1 chambre / 1 SdB</span> | |
| 2325 | + <span class="dot-separator" lang="">●</span> | |
| 2326 | + <span lang="">735 pc</span> | |
| 2327 | + </div> | |
| 2328 | + </div> | |
| 2329 | + </div> | |
| 2330 | + | |
| 2331 | + <!-- Pricing Section --> | |
| 2332 | + <div class="pricing-section" lang=""> | |
| 2333 | + <div class="pricing-container" lang=""> | |
| 2334 | + <div class="pricing-details bg-light mb-2" lang=""> | |
| 2335 | + <span class="pricing-title" lang="">à partir de</span> | |
| 2336 | + | |
| 2337 | + <div lang=""> | |
| 2338 | + <span class="pricing-amount" lang="">$1,880.00</span> | |
| 2339 | + <span class="pricing-period" lang="">/mois</span> | |
| 2340 | + </div> | |
| 2341 | + | |
| 2342 | + | |
| 2343 | + </div> | |
| 2344 | + | |
| 2345 | + <!-- Cost Calculator Section --> | |
| 2346 | + </div> | |
| 2347 | + </div> | |
| 2348 | + | |
| 2349 | + <!-- Specials Badge --> | |
| 2350 | + <div class="extras-section mt-2" lang=""> | |
| 2351 | + <div class="specials-badge" lang=""></div> | |
| 2352 | + </div> | |
| 2353 | + | |
| 2354 | + | |
| 2355 | + <!-- CTA Button --> | |
| 2356 | + <div class="cta-section mt-3" lang=""> | |
| 2357 | + <a href="/floorplans/aalto-%7c-b2" class="btn-block track-apply floorplan-action-button btn btn-primary" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto | B2" data-floorplan-size="1" data-floorplan-sqft="735" data-floorplan-price="1880 -1935" data-selenium-id="floorplan-13-apply-btn" lang="">vérifier la disponibilité<span class="sr-only" lang=""> for Aalto | B2</span> | |
| 2358 | + </a> | |
| 2359 | + </div> | |
| 2360 | + | |
| 2361 | + <!-- Available Tours --> | |
| 2362 | + <div class="tour-section text-center" lang=""> | |
| 2363 | + <a href="/scheduletour" class="schedule-link" lang="">Planifier une visite<span class="sr-only" lang=""> for Aalto | B2</span></a> | |
| 2364 | + </div> | |
| 2365 | + | |
| 2366 | + <!-- Smart Nudge Inline Message --> | |
| 2367 | + | |
| 2368 | + <!-- Smart Nudge Directional Popover --> | |
| 2369 | + </div> | |
| 2370 | + </div> | |
| 2371 | + <div id="fp-container-6473266" class="col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container" lang=""> | |
| 2372 | + <div class="floor-plan-card h-100" lang=""> | |
| 2373 | + <!-- Gallery Section --> | |
| 2374 | + <div class="gallery-section p-3" lang=""> | |
| 2375 | + | |
| 2376 | + | |
| 2377 | + | |
| 2378 | + | |
| 2379 | + | |
| 2380 | + | |
| 2381 | + | |
| 2382 | + | |
| 2383 | +<style>#carousel-floorplan-gallery-14 .carousel-inner picture {aspect-ratio: 1.5; width: 100%; display: block}#carousel-floorplan-gallery-14 .carousel-inner {aspect-ratio: 1.5;}</style> | |
| 2384 | +<section role="region" aria-label="Image carousel" id="carousel-floorplan-gallery-14" class="photogallery carousel slide" data-gallery-type="default" data-ride="carousel" data-interval="false" data-enable-legacy-zoom="true" data-has-height="true" data-max-width="1140" data-initialized="true"> | |
| 2385 | + | |
| 2386 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 2387 | + | |
| 2388 | + | |
| 2389 | + | |
| 2390 | + | |
| 2391 | + | |
| 2392 | + | |
| 2393 | + | |
| 2394 | + | |
| 2395 | + <div role="tabpanel" class="carousel-item h-100 active" id="carousel-floorplan-gallery-14-slide-1" lang=""> | |
| 2396 | + <div class="item h-100" lang=""> | |
| 2397 | + <a href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a6.png" role="button" aria-label="Aalto II | A6 Floor plan image, opens a dialog" class="modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0" lang="" data-prevent-lightbox="off" aria-controls="fp-modal" data-screen="modal-content-6473266" data-image-modal="modal-body-6473266" data-toggle="modal" data-imagemodal-label="fp-modalLabel6473266" data-target="#fp-modal"> | |
| 2398 | + <div class="item-index" data-selenium-id="ImageNumber1" lang="">1 de 1</div> | |
| 2399 | + | |
| 2400 | + <picture> | |
| 2401 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a6.png"> | |
| 2402 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a6.png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a6.png"> | |
| 2403 | +<source media="(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a6.png 2x"><source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a6.png"> | |
| 2404 | +<source media="(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a6.png 2x"><source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a6.png"> | |
| 2405 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a6.png 2x"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a6.png" class="img-fluid" alt="" fetchpriority="high"> | |
| 2406 | +</picture> | |
| 2407 | + | |
| 2408 | + | |
| 2409 | + | |
| 2410 | + </a> | |
| 2411 | + </div> | |
| 2412 | + </div> | |
| 2413 | + </div> | |
| 2414 | +</section> | |
| 2415 | + | |
| 2416 | + | |
| 2417 | + | |
| 2418 | + | |
| 2419 | + | |
| 2420 | + | |
| 2421 | + <script> | |
| 2422 | + document.querySelectorAll("#carousel-floorplan-gallery-14 .item a").forEach(a => { | |
| 2423 | + a.dataset.preventLightbox = "off" | |
| 2424 | + a.className = "modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0"; | |
| 2425 | + a.setAttribute("aria-label","Aalto II | A6 Floor plan image, opens a dialog"); | |
| 2426 | + a.setAttribute("aria-controls","fp-modal"); | |
| 2427 | + a.dataset.screen = "modal-content-6473266"; | |
| 2428 | + a.dataset.imageModal = "modal-body-6473266"; | |
| 2429 | + a.dataset.toggle = "modal"; | |
| 2430 | + a.dataset.imagemodalLabel = "fp-modalLabel6473266"; | |
| 2431 | + a.dataset.target = "#fp-modal"; | |
| 2432 | + a.addEventListener("click",() => { document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6473266') }) | |
| 2433 | + }); | |
| 2434 | + </script> | |
| 2435 | + </div> | |
| 2436 | + | |
| 2437 | + <!-- Video Buttons --> | |
| 2438 | + <div class="btn-group-custom" lang=""> | |
| 2439 | + | |
| 2440 | + </div> | |
| 2441 | + | |
| 2442 | + <!-- Property Details --> | |
| 2443 | + <div class="details-section" lang=""> | |
| 2444 | + <h2 id="fp-header-14" class="property-title h4" lang="">Aalto II | A6</h2> | |
| 2445 | + <div class="property-details" lang=""> | |
| 2446 | + | |
| 2447 | + | |
| 2448 | + <div class="property-details" lang=""> | |
| 2449 | + <span lang="">1 chambre / 1 SdB</span> | |
| 2450 | + <span class="dot-separator" lang="">●</span> | |
| 2451 | + <span lang="">653 pc</span> | |
| 2452 | + </div> | |
| 2453 | + </div> | |
| 2454 | + </div> | |
| 2455 | + | |
| 2456 | + <!-- Pricing Section --> | |
| 2457 | + <div class="pricing-section" lang=""> | |
| 2458 | + <div class="pricing-container" lang=""> | |
| 2459 | + <div class="pricing-details bg-light mb-2" lang=""> | |
| 2460 | + <span class="pricing-title" lang="">à partir de</span> | |
| 2461 | + | |
| 2462 | + <div lang=""> | |
| 2463 | + <span class="pricing-amount" lang="">$1,885.00</span> | |
| 2464 | + <span class="pricing-period" lang="">/mois</span> | |
| 2465 | + </div> | |
| 2466 | + | |
| 2467 | + | |
| 2468 | + </div> | |
| 2469 | + | |
| 2470 | + <!-- Cost Calculator Section --> | |
| 2471 | + </div> | |
| 2472 | + </div> | |
| 2473 | + | |
| 2474 | + <!-- Specials Badge --> | |
| 2475 | + <div class="extras-section mt-2" lang=""> | |
| 2476 | + <div class="specials-badge" lang=""></div> | |
| 2477 | + </div> | |
| 2478 | + | |
| 2479 | + | |
| 2480 | + <!-- CTA Button --> | |
| 2481 | + <div class="cta-section mt-3" lang=""> | |
| 2482 | + <a href="/floorplans/aalto-ii-%7c-a6" class="btn-block track-apply floorplan-action-button btn btn-primary" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto II | A6" data-floorplan-size="1" data-floorplan-sqft="653" data-floorplan-price="1885" data-selenium-id="floorplan-14-apply-btn" lang="">vérifier la disponibilité<span class="sr-only" lang=""> for Aalto II | A6</span> | |
| 2483 | + </a> | |
| 2484 | + </div> | |
| 2485 | + | |
| 2486 | + <!-- Available Tours --> | |
| 2487 | + <div class="tour-section text-center" lang=""> | |
| 2488 | + <a href="/scheduletour" class="schedule-link" lang="">Planifier une visite<span class="sr-only" lang=""> for Aalto II | A6</span></a> | |
| 2489 | + </div> | |
| 2490 | + | |
| 2491 | + <!-- Smart Nudge Inline Message --> | |
| 2492 | + | |
| 2493 | + <!-- Smart Nudge Directional Popover --> | |
| 2494 | + </div> | |
| 2495 | + </div> | |
| 2496 | + <div id="fp-container-6473268" class="col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container" lang=""> | |
| 2497 | + <div class="floor-plan-card h-100" lang=""> | |
| 2498 | + <!-- Gallery Section --> | |
| 2499 | + <div class="gallery-section p-3" lang=""> | |
| 2500 | + | |
| 2501 | + | |
| 2502 | + | |
| 2503 | + | |
| 2504 | + | |
| 2505 | + | |
| 2506 | + | |
| 2507 | + | |
| 2508 | +<style>#carousel-floorplan-gallery-15 .carousel-inner picture {aspect-ratio: 1.5; width: 100%; display: block}#carousel-floorplan-gallery-15 .carousel-inner {aspect-ratio: 1.5;}</style> | |
| 2509 | +<section role="region" aria-label="Image carousel" id="carousel-floorplan-gallery-15" class="photogallery carousel slide" data-gallery-type="default" data-ride="carousel" data-interval="false" data-enable-legacy-zoom="true" data-has-height="true" data-max-width="1140" data-initialized="true"> | |
| 2510 | + | |
| 2511 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 2512 | + | |
| 2513 | + | |
| 2514 | + | |
| 2515 | + | |
| 2516 | + | |
| 2517 | + | |
| 2518 | + | |
| 2519 | + | |
| 2520 | + <div role="tabpanel" class="carousel-item h-100 active" id="carousel-floorplan-gallery-15-slide-1" lang=""> | |
| 2521 | + <div class="item h-100" lang=""> | |
| 2522 | + <a href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/b1.png" role="button" aria-label="Aalto II | B1 Floor plan image, opens a dialog" class="modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0" lang="" data-prevent-lightbox="off" aria-controls="fp-modal" data-screen="modal-content-6473268" data-image-modal="modal-body-6473268" data-toggle="modal" data-imagemodal-label="fp-modalLabel6473268" data-target="#fp-modal"> | |
| 2523 | + <div class="item-index" data-selenium-id="ImageNumber1" lang="">1 de 1</div> | |
| 2524 | + | |
| 2525 | + <picture> | |
| 2526 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/b1.png"> | |
| 2527 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/b1.png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/b1.png"> | |
| 2528 | +<source media="(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/b1.png 2x"><source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/b1.png"> | |
| 2529 | +<source media="(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/b1.png 2x"><source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/b1.png"> | |
| 2530 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/b1.png 2x"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/b1.png" class="img-fluid" alt="" fetchpriority="high"> | |
| 2531 | +</picture> | |
| 2532 | + | |
| 2533 | + | |
| 2534 | + | |
| 2535 | + </a> | |
| 2536 | + </div> | |
| 2537 | + </div> | |
| 2538 | + </div> | |
| 2539 | +</section> | |
| 2540 | + | |
| 2541 | + | |
| 2542 | + | |
| 2543 | + | |
| 2544 | + | |
| 2545 | + | |
| 2546 | + <script> | |
| 2547 | + document.querySelectorAll("#carousel-floorplan-gallery-15 .item a").forEach(a => { | |
| 2548 | + a.dataset.preventLightbox = "off" | |
| 2549 | + a.className = "modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0"; | |
| 2550 | + a.setAttribute("aria-label","Aalto II | B1 Floor plan image, opens a dialog"); | |
| 2551 | + a.setAttribute("aria-controls","fp-modal"); | |
| 2552 | + a.dataset.screen = "modal-content-6473268"; | |
| 2553 | + a.dataset.imageModal = "modal-body-6473268"; | |
| 2554 | + a.dataset.toggle = "modal"; | |
| 2555 | + a.dataset.imagemodalLabel = "fp-modalLabel6473268"; | |
| 2556 | + a.dataset.target = "#fp-modal"; | |
| 2557 | + a.addEventListener("click",() => { document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6473268') }) | |
| 2558 | + }); | |
| 2559 | + </script> | |
| 2560 | + </div> | |
| 2561 | + | |
| 2562 | + <!-- Video Buttons --> | |
| 2563 | + <div class="btn-group-custom" lang=""> | |
| 2564 | + | |
| 2565 | + </div> | |
| 2566 | + | |
| 2567 | + <!-- Property Details --> | |
| 2568 | + <div class="details-section" lang=""> | |
| 2569 | + <h2 id="fp-header-15" class="property-title h4" lang="">Aalto II | B1</h2> | |
| 2570 | + <div class="property-details" lang=""> | |
| 2571 | + | |
| 2572 | + | |
| 2573 | + <div class="property-details" lang=""> | |
| 2574 | + <span lang="">1 chambre / 1 SdB</span> | |
| 2575 | + <span class="dot-separator" lang="">●</span> | |
| 2576 | + <span lang="">638 pc</span> | |
| 2577 | + </div> | |
| 2578 | + </div> | |
| 2579 | + </div> | |
| 2580 | + | |
| 2581 | + <!-- Pricing Section --> | |
| 2582 | + <div class="pricing-section" lang=""> | |
| 2583 | + <div class="pricing-container" lang=""> | |
| 2584 | + <div class="pricing-details bg-light mb-2" lang=""> | |
| 2585 | + <span class="pricing-title" lang="">à partir de</span> | |
| 2586 | + | |
| 2587 | + <div lang=""> | |
| 2588 | + <span class="pricing-amount" lang="">$1,930.00</span> | |
| 2589 | + <span class="pricing-period" lang="">/mois</span> | |
| 2590 | + </div> | |
| 2591 | + | |
| 2592 | + | |
| 2593 | + </div> | |
| 2594 | + | |
| 2595 | + <!-- Cost Calculator Section --> | |
| 2596 | + </div> | |
| 2597 | + </div> | |
| 2598 | + | |
| 2599 | + <!-- Specials Badge --> | |
| 2600 | + <div class="extras-section mt-2" lang=""> | |
| 2601 | + <div class="specials-badge" lang=""></div> | |
| 2602 | + </div> | |
| 2603 | + | |
| 2604 | + | |
| 2605 | + <!-- CTA Button --> | |
| 2606 | + <div class="cta-section mt-3" lang=""> | |
| 2607 | + <a href="/floorplans/aalto-ii-%7c-b1" class="btn-block track-apply floorplan-action-button btn btn-primary" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto II | B1" data-floorplan-size="1" data-floorplan-sqft="638" data-floorplan-price="1930 -1945" data-selenium-id="floorplan-15-apply-btn" lang="">vérifier la disponibilité<span class="sr-only" lang=""> for Aalto II | B1</span> | |
| 2608 | + </a> | |
| 2609 | + </div> | |
| 2610 | + | |
| 2611 | + <!-- Available Tours --> | |
| 2612 | + <div class="tour-section text-center" lang=""> | |
| 2613 | + <a href="/scheduletour" class="schedule-link" lang="">Planifier une visite<span class="sr-only" lang=""> for Aalto II | B1</span></a> | |
| 2614 | + </div> | |
| 2615 | + | |
| 2616 | + <!-- Smart Nudge Inline Message --> | |
| 2617 | + | |
| 2618 | + <!-- Smart Nudge Directional Popover --> | |
| 2619 | + </div> | |
| 2620 | + </div> | |
| 2621 | + <div id="fp-container-6473270" class="col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container" lang=""> | |
| 2622 | + <div class="floor-plan-card h-100" lang=""> | |
| 2623 | + <!-- Gallery Section --> | |
| 2624 | + <div class="gallery-section p-3" lang=""> | |
| 2625 | + | |
| 2626 | + | |
| 2627 | + | |
| 2628 | + | |
| 2629 | + | |
| 2630 | + | |
| 2631 | + | |
| 2632 | + | |
| 2633 | +<style>#carousel-floorplan-gallery-16 .carousel-inner picture {aspect-ratio: 1.5; width: 100%; display: block}#carousel-floorplan-gallery-16 .carousel-inner {aspect-ratio: 1.5;}</style> | |
| 2634 | +<section role="region" aria-label="Image carousel" id="carousel-floorplan-gallery-16" class="photogallery carousel slide" data-gallery-type="default" data-ride="carousel" data-interval="false" data-enable-legacy-zoom="true" data-has-height="true" data-max-width="1140" data-initialized="true"> | |
| 2635 | + | |
| 2636 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 2637 | + | |
| 2638 | + | |
| 2639 | + | |
| 2640 | + | |
| 2641 | + | |
| 2642 | + | |
| 2643 | + | |
| 2644 | + | |
| 2645 | + <div role="tabpanel" class="carousel-item h-100 active" id="carousel-floorplan-gallery-16-slide-1" lang=""> | |
| 2646 | + <div class="item h-100" lang=""> | |
| 2647 | + <a href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/b3.png" role="button" aria-label="Aalto II | B3 Floor plan image, opens a dialog" class="modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0" lang="" data-prevent-lightbox="off" aria-controls="fp-modal" data-screen="modal-content-6473270" data-image-modal="modal-body-6473270" data-toggle="modal" data-imagemodal-label="fp-modalLabel6473270" data-target="#fp-modal"> | |
| 2648 | + <div class="item-index" data-selenium-id="ImageNumber1" lang="">1 de 1</div> | |
| 2649 | + | |
| 2650 | + <picture> | |
| 2651 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/b3.png"> | |
| 2652 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/b3.png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/b3.png"> | |
| 2653 | +<source media="(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/b3.png 2x"><source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/b3.png"> | |
| 2654 | +<source media="(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/b3.png 2x"><source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/b3.png"> | |
| 2655 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/b3.png 2x"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/b3.png" class="img-fluid" alt="" fetchpriority="high"> | |
| 2656 | +</picture> | |
| 2657 | + | |
| 2658 | + | |
| 2659 | + | |
| 2660 | + </a> | |
| 2661 | + </div> | |
| 2662 | + </div> | |
| 2663 | + </div> | |
| 2664 | +</section> | |
| 2665 | + | |
| 2666 | + | |
| 2667 | + | |
| 2668 | + | |
| 2669 | + | |
| 2670 | + | |
| 2671 | + <script> | |
| 2672 | + document.querySelectorAll("#carousel-floorplan-gallery-16 .item a").forEach(a => { | |
| 2673 | + a.dataset.preventLightbox = "off" | |
| 2674 | + a.className = "modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0"; | |
| 2675 | + a.setAttribute("aria-label","Aalto II | B3 Floor plan image, opens a dialog"); | |
| 2676 | + a.setAttribute("aria-controls","fp-modal"); | |
| 2677 | + a.dataset.screen = "modal-content-6473270"; | |
| 2678 | + a.dataset.imageModal = "modal-body-6473270"; | |
| 2679 | + a.dataset.toggle = "modal"; | |
| 2680 | + a.dataset.imagemodalLabel = "fp-modalLabel6473270"; | |
| 2681 | + a.dataset.target = "#fp-modal"; | |
| 2682 | + a.addEventListener("click",() => { document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6473270') }) | |
| 2683 | + }); | |
| 2684 | + </script> | |
| 2685 | + </div> | |
| 2686 | + | |
| 2687 | + <!-- Video Buttons --> | |
| 2688 | + <div class="btn-group-custom" lang=""> | |
| 2689 | + | |
| 2690 | + </div> | |
| 2691 | + | |
| 2692 | + <!-- Property Details --> | |
| 2693 | + <div class="details-section" lang=""> | |
| 2694 | + <h2 id="fp-header-16" class="property-title h4" lang=""> | |
| 2695 | + Aalto II | B3 | |
| 2696 | + </h2> | |
| 2697 | + <div class="property-details" lang=""> | |
| 2698 | + | |
| 2699 | + | |
| 2700 | + <div class="property-details" lang=""> | |
| 2701 | + <span lang="">1 chambre / 1 SdB</span> | |
| 2702 | + <span class="dot-separator" lang="">●</span> | |
| 2703 | + <span lang="">690 pc</span> | |
| 2704 | + </div> | |
| 2705 | + </div> | |
| 2706 | + </div> | |
| 2707 | + | |
| 2708 | + <!-- Pricing Section --> | |
| 2709 | + <div class="pricing-section" lang=""> | |
| 2710 | + <div class="pricing-container" lang=""> | |
| 2711 | + <div class="pricing-details bg-light mb-2" lang=""> | |
| 2712 | + <span class="pricing-title" lang="">à partir de</span> | |
| 2713 | + | |
| 2714 | + <div lang=""> | |
| 2715 | + <span class="pricing-amount" lang="">$1,985.00</span> | |
| 2716 | + <span class="pricing-period" lang="">/mois</span> | |
| 2717 | + </div> | |
| 2718 | + | |
| 2719 | + | |
| 2720 | + </div> | |
| 2721 | + | |
| 2722 | + <!-- Cost Calculator Section --> | |
| 2723 | + </div> | |
| 2724 | + </div> | |
| 2725 | + | |
| 2726 | + <!-- Specials Badge --> | |
| 2727 | + <div class="extras-section mt-2" lang=""> | |
| 2728 | + <div class="specials-badge" lang=""></div> | |
| 2729 | + </div> | |
| 2730 | + | |
| 2731 | + | |
| 2732 | + <!-- CTA Button --> | |
| 2733 | + <div class="cta-section mt-3" lang=""> | |
| 2734 | + <a href="/floorplans/aalto-ii-%7c-b3" class="btn-block track-apply floorplan-action-button btn btn-primary" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto II | B3" data-floorplan-size="1" data-floorplan-sqft="690" data-floorplan-price="1985 -1990" data-selenium-id="floorplan-16-apply-btn" lang="">vérifier la disponibilité<span class="sr-only" lang=""> for Aalto II | B3</span> | |
| 2735 | + </a> | |
| 2736 | + </div> | |
| 2737 | + | |
| 2738 | + <!-- Available Tours --> | |
| 2739 | + <div class="tour-section text-center" lang=""> | |
| 2740 | + <a href="/scheduletour" class="schedule-link" lang="">Planifier une visite<span class="sr-only" lang=""> for Aalto II | B3</span></a> | |
| 2741 | + </div> | |
| 2742 | + | |
| 2743 | + <!-- Smart Nudge Inline Message --> | |
| 2744 | + | |
| 2745 | + <!-- Smart Nudge Directional Popover --> | |
| 2746 | + </div> | |
| 2747 | + </div> | |
| 2748 | + <div id="fp-container-6473269" class="col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container" lang=""> | |
| 2749 | + <div class="floor-plan-card h-100" lang=""> | |
| 2750 | + <!-- Gallery Section --> | |
| 2751 | + <div class="gallery-section p-3" lang=""> | |
| 2752 | + | |
| 2753 | + | |
| 2754 | + | |
| 2755 | + | |
| 2756 | + | |
| 2757 | + | |
| 2758 | + | |
| 2759 | + | |
| 2760 | +<style>#carousel-floorplan-gallery-17 .carousel-inner picture {aspect-ratio: 1.5; width: 100%; display: block}#carousel-floorplan-gallery-17 .carousel-inner {aspect-ratio: 1.5;}</style> | |
| 2761 | +<section role="region" aria-label="Image carousel" id="carousel-floorplan-gallery-17" class="photogallery carousel slide" data-gallery-type="default" data-ride="carousel" data-interval="false" data-enable-legacy-zoom="true" data-has-height="true" data-max-width="1140" data-initialized="true"> | |
| 2762 | + | |
| 2763 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 2764 | + | |
| 2765 | + | |
| 2766 | + | |
| 2767 | + | |
| 2768 | + | |
| 2769 | + | |
| 2770 | + | |
| 2771 | + | |
| 2772 | + <div role="tabpanel" class="carousel-item h-100 active" id="carousel-floorplan-gallery-17-slide-1" lang=""> | |
| 2773 | + <div class="item h-100" lang=""> | |
| 2774 | + <a href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/b2.png" role="button" aria-label="Aalto II | B2 Floor plan image, opens a dialog" class="modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0" lang="" data-prevent-lightbox="off" aria-controls="fp-modal" data-screen="modal-content-6473269" data-image-modal="modal-body-6473269" data-toggle="modal" data-imagemodal-label="fp-modalLabel6473269" data-target="#fp-modal"> | |
| 2775 | + <div class="item-index" data-selenium-id="ImageNumber1" lang="">1 de 1</div> | |
| 2776 | + | |
| 2777 | + <picture> | |
| 2778 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/b2.png"> | |
| 2779 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/b2.png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/b2.png"> | |
| 2780 | +<source media="(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/b2.png 2x"><source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/b2.png"> | |
| 2781 | +<source media="(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/b2.png 2x"><source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/b2.png"> | |
| 2782 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/b2.png 2x"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/b2.png" class="img-fluid" alt="" fetchpriority="high"> | |
| 2783 | +</picture> | |
| 2784 | + | |
| 2785 | + | |
| 2786 | + | |
| 2787 | + </a> | |
| 2788 | + </div> | |
| 2789 | + </div> | |
| 2790 | + </div> | |
| 2791 | +</section> | |
| 2792 | + | |
| 2793 | + | |
| 2794 | + | |
| 2795 | + | |
| 2796 | + | |
| 2797 | + | |
| 2798 | + <script> | |
| 2799 | + document.querySelectorAll("#carousel-floorplan-gallery-17 .item a").forEach(a => { | |
| 2800 | + a.dataset.preventLightbox = "off" | |
| 2801 | + a.className = "modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0"; | |
| 2802 | + a.setAttribute("aria-label","Aalto II | B2 Floor plan image, opens a dialog"); | |
| 2803 | + a.setAttribute("aria-controls","fp-modal"); | |
| 2804 | + a.dataset.screen = "modal-content-6473269"; | |
| 2805 | + a.dataset.imageModal = "modal-body-6473269"; | |
| 2806 | + a.dataset.toggle = "modal"; | |
| 2807 | + a.dataset.imagemodalLabel = "fp-modalLabel6473269"; | |
| 2808 | + a.dataset.target = "#fp-modal"; | |
| 2809 | + a.addEventListener("click",() => { document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6473269') }) | |
| 2810 | + }); | |
| 2811 | + </script> | |
| 2812 | + </div> | |
| 2813 | + | |
| 2814 | + <!-- Video Buttons --> | |
| 2815 | + <div class="btn-group-custom" lang=""> | |
| 2816 | + | |
| 2817 | + </div> | |
| 2818 | + | |
| 2819 | + <!-- Property Details --> | |
| 2820 | + <div class="details-section" lang=""> | |
| 2821 | + <h2 id="fp-header-17" class="property-title h4" lang="">Aalto II | B2</h2> | |
| 2822 | + <div class="property-details" lang=""> | |
| 2823 | + | |
| 2824 | + | |
| 2825 | + <div class="property-details" lang=""> | |
| 2826 | + <span lang="">1 chambre / 1 SdB</span> | |
| 2827 | + <span class="dot-separator" lang="">●</span> | |
| 2828 | + <span lang="">816 pc</span> | |
| 2829 | + </div> | |
| 2830 | + </div> | |
| 2831 | + </div> | |
| 2832 | + | |
| 2833 | + <!-- Pricing Section --> | |
| 2834 | + <div class="pricing-section" lang=""> | |
| 2835 | + <div class="pricing-container" lang=""> | |
| 2836 | + <div class="pricing-details bg-light mb-2" lang=""> | |
| 2837 | + <span class="pricing-title" lang="">à partir de</span> | |
| 2838 | + | |
| 2839 | + <div lang=""> | |
| 2840 | + <span class="pricing-amount" lang="">$2,085.00</span> | |
| 2841 | + <span class="pricing-period" lang="">/mois</span> | |
| 2842 | + </div> | |
| 2843 | + | |
| 2844 | + | |
| 2845 | + </div> | |
| 2846 | + | |
| 2847 | + <!-- Cost Calculator Section --> | |
| 2848 | + </div> | |
| 2849 | + </div> | |
| 2850 | + | |
| 2851 | + <!-- Specials Badge --> | |
| 2852 | + <div class="extras-section mt-2" lang=""> | |
| 2853 | + <div class="specials-badge" lang=""></div> | |
| 2854 | + </div> | |
| 2855 | + | |
| 2856 | + | |
| 2857 | + <!-- CTA Button --> | |
| 2858 | + <div class="cta-section mt-3" lang=""> | |
| 2859 | + <a href="/floorplans/aalto-ii-%7c-b2" class="btn-block track-apply floorplan-action-button btn btn-primary" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto II | B2" data-floorplan-size="1" data-floorplan-sqft="816" data-floorplan-price="2085" data-selenium-id="floorplan-17-apply-btn" lang="">vérifier la disponibilité<span class="sr-only" lang=""> for Aalto II | B2</span> | |
| 2860 | + </a> | |
| 2861 | + </div> | |
| 2862 | + | |
| 2863 | + <!-- Available Tours --> | |
| 2864 | + <div class="tour-section text-center" lang=""> | |
| 2865 | + <a href="/scheduletour" class="schedule-link" lang="">Planifier une visite<span class="sr-only" lang=""> for Aalto II | B2</span></a> | |
| 2866 | + </div> | |
| 2867 | + | |
| 2868 | + <!-- Smart Nudge Inline Message --> | |
| 2869 | + | |
| 2870 | + <!-- Smart Nudge Directional Popover --> | |
| 2871 | + </div> | |
| 2872 | + </div> | |
| 2873 | + <div id="fp-container-6473317" class="col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container" lang=""> | |
| 2874 | + <div class="floor-plan-card h-100" lang=""> | |
| 2875 | + <!-- Gallery Section --> | |
| 2876 | + <div class="gallery-section p-3" lang=""> | |
| 2877 | + | |
| 2878 | + | |
| 2879 | + | |
| 2880 | + | |
| 2881 | + | |
| 2882 | + | |
| 2883 | + | |
| 2884 | + | |
| 2885 | +<style>#carousel-floorplan-gallery-18 .carousel-inner picture {aspect-ratio: 1.5; width: 100%; display: block}#carousel-floorplan-gallery-18 .carousel-inner {aspect-ratio: 1.5;}</style> | |
| 2886 | +<section role="region" aria-label="Image carousel" id="carousel-floorplan-gallery-18" class="photogallery carousel slide" data-gallery-type="default" data-ride="carousel" data-interval="false" data-enable-legacy-zoom="true" data-has-height="true" data-max-width="1140" data-initialized="true"> | |
| 2887 | + | |
| 2888 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 2889 | + | |
| 2890 | + | |
| 2891 | + | |
| 2892 | + | |
| 2893 | + | |
| 2894 | + | |
| 2895 | + | |
| 2896 | + | |
| 2897 | + <div role="tabpanel" class="carousel-item h-100 active" id="carousel-floorplan-gallery-18-slide-1" lang=""> | |
| 2898 | + <div class="item h-100" lang=""> | |
| 2899 | + <a href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/c7(1).png" role="button" aria-label="Aalto | C7 Floor plan image, opens a dialog" class="modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0" lang="" data-prevent-lightbox="off" aria-controls="fp-modal" data-screen="modal-content-6473317" data-image-modal="modal-body-6473317" data-toggle="modal" data-imagemodal-label="fp-modalLabel6473317" data-target="#fp-modal"> | |
| 2900 | + <div class="item-index" data-selenium-id="ImageNumber1" lang="">1 de 1</div> | |
| 2901 | + | |
| 2902 | + <picture> | |
| 2903 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/c7(1).png"> | |
| 2904 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/c7(1).png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/c7(1).png"> | |
| 2905 | +<source media="(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/c7(1).png 2x"><source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/c7(1).png"> | |
| 2906 | +<source media="(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/c7(1).png 2x"><source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/c7(1).png"> | |
| 2907 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/c7(1).png 2x"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/c7(1).png" class="img-fluid" alt="" fetchpriority="high"> | |
| 2908 | +</picture> | |
| 2909 | + | |
| 2910 | + | |
| 2911 | + | |
| 2912 | + </a> | |
| 2913 | + </div> | |
| 2914 | + </div> | |
| 2915 | + </div> | |
| 2916 | +</section> | |
| 2917 | + | |
| 2918 | + | |
| 2919 | + | |
| 2920 | + | |
| 2921 | + | |
| 2922 | + | |
| 2923 | + <script> | |
| 2924 | + document.querySelectorAll("#carousel-floorplan-gallery-18 .item a").forEach(a => { | |
| 2925 | + a.dataset.preventLightbox = "off" | |
| 2926 | + a.className = "modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0"; | |
| 2927 | + a.setAttribute("aria-label","Aalto | C7 Floor plan image, opens a dialog"); | |
| 2928 | + a.setAttribute("aria-controls","fp-modal"); | |
| 2929 | + a.dataset.screen = "modal-content-6473317"; | |
| 2930 | + a.dataset.imageModal = "modal-body-6473317"; | |
| 2931 | + a.dataset.toggle = "modal"; | |
| 2932 | + a.dataset.imagemodalLabel = "fp-modalLabel6473317"; | |
| 2933 | + a.dataset.target = "#fp-modal"; | |
| 2934 | + a.addEventListener("click",() => { document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6473317') }) | |
| 2935 | + }); | |
| 2936 | + </script> | |
| 2937 | + </div> | |
| 2938 | + | |
| 2939 | + <!-- Video Buttons --> | |
| 2940 | + <div class="btn-group-custom" lang=""> | |
| 2941 | + | |
| 2942 | + </div> | |
| 2943 | + | |
| 2944 | + <!-- Property Details --> | |
| 2945 | + <div class="details-section" lang=""> | |
| 2946 | + <h2 id="fp-header-18" class="property-title h4" lang=""> | |
| 2947 | + Aalto | C7 | |
| 2948 | + </h2> | |
| 2949 | + <div class="property-details" lang=""> | |
| 2950 | + | |
| 2951 | + | |
| 2952 | + <div class="property-details" lang=""> | |
| 2953 | + <span lang="">2 chambre / 2 SdB</span> | |
| 2954 | + <span class="dot-separator" lang="">●</span> | |
| 2955 | + <span lang="">844 pc</span> | |
| 2956 | + </div> | |
| 2957 | + </div> | |
| 2958 | + </div> | |
| 2959 | + | |
| 2960 | + <!-- Pricing Section --> | |
| 2961 | + <div class="pricing-section" lang=""> | |
| 2962 | + <div class="pricing-container" lang=""> | |
| 2963 | + <div class="pricing-details bg-light mb-2" lang=""> | |
| 2964 | + <span class="pricing-title" lang="">à partir de</span> | |
| 2965 | + | |
| 2966 | + <div lang=""> | |
| 2967 | + <span class="pricing-amount" lang="">$2,145.00</span> | |
| 2968 | + <span class="pricing-period" lang="">/mois</span> | |
| 2969 | + </div> | |
| 2970 | + | |
| 2971 | + | |
| 2972 | + </div> | |
| 2973 | + | |
| 2974 | + <!-- Cost Calculator Section --> | |
| 2975 | + </div> | |
| 2976 | + </div> | |
| 2977 | + | |
| 2978 | + <!-- Specials Badge --> | |
| 2979 | + <div class="extras-section mt-2" lang=""> | |
| 2980 | + <div class="specials-badge" lang=""></div> | |
| 2981 | + </div> | |
| 2982 | + | |
| 2983 | + | |
| 2984 | + <!-- CTA Button --> | |
| 2985 | + <div class="cta-section mt-3" lang=""> | |
| 2986 | + <a href="/floorplans/aalto-%7c-c7" class="btn-block track-apply floorplan-action-button btn btn-primary" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto | C7" data-floorplan-size="2" data-floorplan-sqft="844" data-floorplan-price="2145 -2160" data-selenium-id="floorplan-18-apply-btn" lang="">vérifier la disponibilité<span class="sr-only" lang=""> for Aalto | C7</span> | |
| 2987 | + </a> | |
| 2988 | + </div> | |
| 2989 | + | |
| 2990 | + <!-- Available Tours --> | |
| 2991 | + <div class="tour-section text-center" lang=""> | |
| 2992 | + <a href="/scheduletour" class="schedule-link" lang="">Planifier une visite<span class="sr-only" lang=""> for Aalto | C7</span></a> | |
| 2993 | + </div> | |
| 2994 | + | |
| 2995 | + <!-- Smart Nudge Inline Message --> | |
| 2996 | + | |
| 2997 | + <!-- Smart Nudge Directional Popover --> | |
| 2998 | + </div> | |
| 2999 | + </div> | |
| 3000 | + <div id="fp-container-6473276" class="col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container" lang=""> | |
| 3001 | + <div class="floor-plan-card h-100" lang=""> | |
| 3002 | + <!-- Gallery Section --> | |
| 3003 | + <div class="gallery-section p-3" lang=""> | |
| 3004 | + | |
| 3005 | + | |
| 3006 | + | |
| 3007 | + | |
| 3008 | + | |
| 3009 | + | |
| 3010 | + | |
| 3011 | + | |
| 3012 | +<style>#carousel-floorplan-gallery-19 .carousel-inner picture {aspect-ratio: 1.5; width: 100%; display: block}#carousel-floorplan-gallery-19 .carousel-inner {aspect-ratio: 1.5;}</style> | |
| 3013 | +<section role="region" aria-label="Image carousel" id="carousel-floorplan-gallery-19" class="photogallery carousel slide" data-gallery-type="default" data-ride="carousel" data-interval="false" data-enable-legacy-zoom="true" data-has-height="true" data-max-width="1140" data-initialized="true"> | |
| 3014 | + | |
| 3015 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 3016 | + | |
| 3017 | + | |
| 3018 | + | |
| 3019 | + | |
| 3020 | + | |
| 3021 | + | |
| 3022 | + | |
| 3023 | + | |
| 3024 | + <div role="tabpanel" class="carousel-item h-100 active" id="carousel-floorplan-gallery-19-slide-1" lang=""> | |
| 3025 | + <div class="item h-100" lang=""> | |
| 3026 | + <a href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/c3.png" role="button" aria-label="Aalto II | C3 Floor plan image, opens a dialog" class="modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0" lang="" data-prevent-lightbox="off" aria-controls="fp-modal" data-screen="modal-content-6473276" data-image-modal="modal-body-6473276" data-toggle="modal" data-imagemodal-label="fp-modalLabel6473276" data-target="#fp-modal"> | |
| 3027 | + <div class="item-index" data-selenium-id="ImageNumber1" lang="">1 de 1</div> | |
| 3028 | + | |
| 3029 | + <picture> | |
| 3030 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/c3.png"> | |
| 3031 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/c3.png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/c3.png"> | |
| 3032 | +<source media="(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/c3.png 2x"><source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/c3.png"> | |
| 3033 | +<source media="(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/c3.png 2x"><source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/c3.png"> | |
| 3034 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/c3.png 2x"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/c3.png" class="img-fluid" alt="" fetchpriority="high"> | |
| 3035 | +</picture> | |
| 3036 | + | |
| 3037 | + | |
| 3038 | + | |
| 3039 | + </a> | |
| 3040 | + </div> | |
| 3041 | + </div> | |
| 3042 | + </div> | |
| 3043 | +</section> | |
| 3044 | + | |
| 3045 | + | |
| 3046 | + | |
| 3047 | + | |
| 3048 | + | |
| 3049 | + | |
| 3050 | + <script> | |
| 3051 | + document.querySelectorAll("#carousel-floorplan-gallery-19 .item a").forEach(a => { | |
| 3052 | + a.dataset.preventLightbox = "off" | |
| 3053 | + a.className = "modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0"; | |
| 3054 | + a.setAttribute("aria-label","Aalto II | C3 Floor plan image, opens a dialog"); | |
| 3055 | + a.setAttribute("aria-controls","fp-modal"); | |
| 3056 | + a.dataset.screen = "modal-content-6473276"; | |
| 3057 | + a.dataset.imageModal = "modal-body-6473276"; | |
| 3058 | + a.dataset.toggle = "modal"; | |
| 3059 | + a.dataset.imagemodalLabel = "fp-modalLabel6473276"; | |
| 3060 | + a.dataset.target = "#fp-modal"; | |
| 3061 | + a.addEventListener("click",() => { document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6473276') }) | |
| 3062 | + }); | |
| 3063 | + </script> | |
| 3064 | + </div> | |
| 3065 | + | |
| 3066 | + <!-- Video Buttons --> | |
| 3067 | + <div class="btn-group-custom" lang=""> | |
| 3068 | + | |
| 3069 | + </div> | |
| 3070 | + | |
| 3071 | + <!-- Property Details --> | |
| 3072 | + <div class="details-section" lang=""> | |
| 3073 | + <h2 id="fp-header-19" class="property-title h4" lang=""> | |
| 3074 | + Aalto II | C3 | |
| 3075 | + </h2> | |
| 3076 | + <div class="property-details" lang=""> | |
| 3077 | + | |
| 3078 | + | |
| 3079 | + <div class="property-details" lang=""> | |
| 3080 | + <span lang="">2 chambre / 2 SdB</span> | |
| 3081 | + <span class="dot-separator" lang="">●</span> | |
| 3082 | + <span lang="">875 pc</span> | |
| 3083 | + </div> | |
| 3084 | + </div> | |
| 3085 | + </div> | |
| 3086 | + | |
| 3087 | + <!-- Pricing Section --> | |
| 3088 | + <div class="pricing-section" lang=""> | |
| 3089 | + <div class="pricing-container" lang=""> | |
| 3090 | + <div class="pricing-details bg-light mb-2" lang=""> | |
| 3091 | + <span class="pricing-title" lang="">à partir de</span> | |
| 3092 | + | |
| 3093 | + <div lang=""> | |
| 3094 | + <span class="pricing-amount" lang="">$2,230.00</span> | |
| 3095 | + <span class="pricing-period" lang="">/mois</span> | |
| 3096 | + </div> | |
| 3097 | + | |
| 3098 | + | |
| 3099 | + </div> | |
| 3100 | + | |
| 3101 | + <!-- Cost Calculator Section --> | |
| 3102 | + </div> | |
| 3103 | + </div> | |
| 3104 | + | |
| 3105 | + <!-- Specials Badge --> | |
| 3106 | + <div class="extras-section mt-2" lang=""> | |
| 3107 | + <div class="specials-badge" lang=""></div> | |
| 3108 | + </div> | |
| 3109 | + | |
| 3110 | + | |
| 3111 | + <!-- CTA Button --> | |
| 3112 | + <div class="cta-section mt-3" lang=""> | |
| 3113 | + <a href="/floorplans/aalto-ii-%7c-c3" class="btn-block track-apply floorplan-action-button btn btn-primary" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto II | C3" data-floorplan-size="2" data-floorplan-sqft="875" data-floorplan-price="2230 -2295" data-selenium-id="floorplan-19-apply-btn" lang="">vérifier la disponibilité<span class="sr-only" lang=""> for Aalto II | C3</span> | |
| 3114 | + </a> | |
| 3115 | + </div> | |
| 3116 | + | |
| 3117 | + <!-- Available Tours --> | |
| 3118 | + <div class="tour-section text-center" lang=""> | |
| 3119 | + <a href="/scheduletour" class="schedule-link" lang="">Planifier une visite<span class="sr-only" lang=""> for Aalto II | C3</span></a> | |
| 3120 | + </div> | |
| 3121 | + | |
| 3122 | + <!-- Smart Nudge Inline Message --> | |
| 3123 | + | |
| 3124 | + <!-- Smart Nudge Directional Popover --> | |
| 3125 | + </div> | |
| 3126 | + </div> | |
| 3127 | + <div id="fp-container-6473275" class="col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container" lang=""> | |
| 3128 | + <div class="floor-plan-card h-100" lang=""> | |
| 3129 | + <!-- Gallery Section --> | |
| 3130 | + <div class="gallery-section p-3" lang=""> | |
| 3131 | + | |
| 3132 | + | |
| 3133 | + | |
| 3134 | + | |
| 3135 | + | |
| 3136 | + | |
| 3137 | + | |
| 3138 | + | |
| 3139 | +<style>#carousel-floorplan-gallery-20 .carousel-inner picture {aspect-ratio: 1.5; width: 100%; display: block}#carousel-floorplan-gallery-20 .carousel-inner {aspect-ratio: 1.5;}</style> | |
| 3140 | +<section role="region" aria-label="Image carousel" id="carousel-floorplan-gallery-20" class="photogallery carousel slide" data-gallery-type="default" data-ride="carousel" data-interval="false" data-enable-legacy-zoom="true" data-has-height="true" data-max-width="1140" data-initialized="true"> | |
| 3141 | + | |
| 3142 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 3143 | + | |
| 3144 | + | |
| 3145 | + | |
| 3146 | + | |
| 3147 | + | |
| 3148 | + | |
| 3149 | + | |
| 3150 | + | |
| 3151 | + <div role="tabpanel" class="carousel-item h-100 active" id="carousel-floorplan-gallery-20-slide-1" lang=""> | |
| 3152 | + <div class="item h-100" lang=""> | |
| 3153 | + <a href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/c2.png" role="button" aria-label="Aalto II | C2 Floor plan image, opens a dialog" class="modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0" lang="" data-prevent-lightbox="off" aria-controls="fp-modal" data-screen="modal-content-6473275" data-image-modal="modal-body-6473275" data-toggle="modal" data-imagemodal-label="fp-modalLabel6473275" data-target="#fp-modal"> | |
| 3154 | + <div class="item-index" data-selenium-id="ImageNumber1" lang="">1 de 1</div> | |
| 3155 | + | |
| 3156 | + <picture> | |
| 3157 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/c2.png"> | |
| 3158 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/c2.png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/c2.png"> | |
| 3159 | +<source media="(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/c2.png 2x"><source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/c2.png"> | |
| 3160 | +<source media="(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/c2.png 2x"><source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/c2.png"> | |
| 3161 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/c2.png 2x"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/c2.png" class="img-fluid" alt="" fetchpriority="high"> | |
| 3162 | +</picture> | |
| 3163 | + | |
| 3164 | + | |
| 3165 | + | |
| 3166 | + </a> | |
| 3167 | + </div> | |
| 3168 | + </div> | |
| 3169 | + </div> | |
| 3170 | +</section> | |
| 3171 | + | |
| 3172 | + | |
| 3173 | + | |
| 3174 | + | |
| 3175 | + | |
| 3176 | + | |
| 3177 | + <script> | |
| 3178 | + document.querySelectorAll("#carousel-floorplan-gallery-20 .item a").forEach(a => { | |
| 3179 | + a.dataset.preventLightbox = "off" | |
| 3180 | + a.className = "modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0"; | |
| 3181 | + a.setAttribute("aria-label","Aalto II | C2 Floor plan image, opens a dialog"); | |
| 3182 | + a.setAttribute("aria-controls","fp-modal"); | |
| 3183 | + a.dataset.screen = "modal-content-6473275"; | |
| 3184 | + a.dataset.imageModal = "modal-body-6473275"; | |
| 3185 | + a.dataset.toggle = "modal"; | |
| 3186 | + a.dataset.imagemodalLabel = "fp-modalLabel6473275"; | |
| 3187 | + a.dataset.target = "#fp-modal"; | |
| 3188 | + a.addEventListener("click",() => { document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6473275') }) | |
| 3189 | + }); | |
| 3190 | + </script> | |
| 3191 | + </div> | |
| 3192 | + | |
| 3193 | + <!-- Video Buttons --> | |
| 3194 | + <div class="btn-group-custom" lang=""> | |
| 3195 | + | |
| 3196 | + </div> | |
| 3197 | + | |
| 3198 | + <!-- Property Details --> | |
| 3199 | + <div class="details-section" lang=""> | |
| 3200 | + <h2 id="fp-header-20" class="property-title h4" lang=""> | |
| 3201 | + Aalto II | C2 | |
| 3202 | + </h2> | |
| 3203 | + <div class="property-details" lang=""> | |
| 3204 | + | |
| 3205 | + | |
| 3206 | + <div class="property-details" lang=""> | |
| 3207 | + <span lang="">2 chambre / 2 SdB</span> | |
| 3208 | + <span class="dot-separator" lang="">●</span> | |
| 3209 | + <span lang="">875 pc</span> | |
| 3210 | + </div> | |
| 3211 | + </div> | |
| 3212 | + </div> | |
| 3213 | + | |
| 3214 | + <!-- Pricing Section --> | |
| 3215 | + <div class="pricing-section" lang=""> | |
| 3216 | + <div class="pricing-container" lang=""> | |
| 3217 | + <div class="pricing-details bg-light mb-2" lang=""> | |
| 3218 | + <span class="pricing-title" lang="">à partir de</span> | |
| 3219 | + | |
| 3220 | + <div lang=""> | |
| 3221 | + <span class="pricing-amount" lang="">$2,310.00</span> | |
| 3222 | + <span class="pricing-period" lang="">/mois</span> | |
| 3223 | + </div> | |
| 3224 | + | |
| 3225 | + | |
| 3226 | + </div> | |
| 3227 | + | |
| 3228 | + <!-- Cost Calculator Section --> | |
| 3229 | + </div> | |
| 3230 | + </div> | |
| 3231 | + | |
| 3232 | + <!-- Specials Badge --> | |
| 3233 | + <div class="extras-section mt-2" lang=""> | |
| 3234 | + <div class="specials-badge" lang=""></div> | |
| 3235 | + </div> | |
| 3236 | + | |
| 3237 | + | |
| 3238 | + <!-- CTA Button --> | |
| 3239 | + <div class="cta-section mt-3" lang=""> | |
| 3240 | + <a href="/floorplans/aalto-ii-%7c-c2" class="btn-block track-apply floorplan-action-button btn btn-primary" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto II | C2" data-floorplan-size="2" data-floorplan-sqft="875" data-floorplan-price="2310" data-selenium-id="floorplan-20-apply-btn" lang="">vérifier la disponibilité<span class="sr-only" lang=""> for Aalto II | C2</span> | |
| 3241 | + </a> | |
| 3242 | + </div> | |
| 3243 | + | |
| 3244 | + <!-- Available Tours --> | |
| 3245 | + <div class="tour-section text-center" lang=""> | |
| 3246 | + <a href="/scheduletour" class="schedule-link" lang="">Planifier une visite<span class="sr-only" lang=""> for Aalto II | C2</span></a> | |
| 3247 | + </div> | |
| 3248 | + | |
| 3249 | + <!-- Smart Nudge Inline Message --> | |
| 3250 | + | |
| 3251 | + <!-- Smart Nudge Directional Popover --> | |
| 3252 | + </div> | |
| 3253 | + </div> | |
| 3254 | + <div id="fp-container-6473273" class="col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container" lang=""> | |
| 3255 | + <div class="floor-plan-card h-100" lang=""> | |
| 3256 | + <!-- Gallery Section --> | |
| 3257 | + <div class="gallery-section p-3" lang=""> | |
| 3258 | + | |
| 3259 | + | |
| 3260 | + | |
| 3261 | + | |
| 3262 | + | |
| 3263 | + | |
| 3264 | + | |
| 3265 | + | |
| 3266 | +<style>#carousel-floorplan-gallery-21 .carousel-inner picture {aspect-ratio: 1.5; width: 100%; display: block}#carousel-floorplan-gallery-21 .carousel-inner {aspect-ratio: 1.5;}</style> | |
| 3267 | +<section role="region" aria-label="Image carousel" id="carousel-floorplan-gallery-21" class="photogallery carousel slide" data-gallery-type="default" data-ride="carousel" data-interval="false" data-enable-legacy-zoom="true" data-has-height="true" data-max-width="1140" data-initialized="true"> | |
| 3268 | + | |
| 3269 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 3270 | + | |
| 3271 | + | |
| 3272 | + | |
| 3273 | + | |
| 3274 | + | |
| 3275 | + | |
| 3276 | + | |
| 3277 | + | |
| 3278 | + <div role="tabpanel" class="carousel-item h-100 active" id="carousel-floorplan-gallery-21-slide-1" lang=""> | |
| 3279 | + <div class="item h-100" lang=""> | |
| 3280 | + <a href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/c1.png" role="button" aria-label="Aalto II | C1 Floor plan image, opens a dialog" class="modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0" lang="" data-prevent-lightbox="off" aria-controls="fp-modal" data-screen="modal-content-6473273" data-image-modal="modal-body-6473273" data-toggle="modal" data-imagemodal-label="fp-modalLabel6473273" data-target="#fp-modal"> | |
| 3281 | + <div class="item-index" data-selenium-id="ImageNumber1" lang="">1 de 1</div> | |
| 3282 | + | |
| 3283 | + <picture> | |
| 3284 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/c1.png"> | |
| 3285 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/c1.png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/c1.png"> | |
| 3286 | +<source media="(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/c1.png 2x"><source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/c1.png"> | |
| 3287 | +<source media="(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/c1.png 2x"><source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/c1.png"> | |
| 3288 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/c1.png 2x"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/c1.png" class="img-fluid" alt="" fetchpriority="high"> | |
| 3289 | +</picture> | |
| 3290 | + | |
| 3291 | + | |
| 3292 | + | |
| 3293 | + </a> | |
| 3294 | + </div> | |
| 3295 | + </div> | |
| 3296 | + </div> | |
| 3297 | +</section> | |
| 3298 | + | |
| 3299 | + | |
| 3300 | + | |
| 3301 | + | |
| 3302 | + | |
| 3303 | + | |
| 3304 | + <script> | |
| 3305 | + document.querySelectorAll("#carousel-floorplan-gallery-21 .item a").forEach(a => { | |
| 3306 | + a.dataset.preventLightbox = "off" | |
| 3307 | + a.className = "modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0"; | |
| 3308 | + a.setAttribute("aria-label","Aalto II | C1 Floor plan image, opens a dialog"); | |
| 3309 | + a.setAttribute("aria-controls","fp-modal"); | |
| 3310 | + a.dataset.screen = "modal-content-6473273"; | |
| 3311 | + a.dataset.imageModal = "modal-body-6473273"; | |
| 3312 | + a.dataset.toggle = "modal"; | |
| 3313 | + a.dataset.imagemodalLabel = "fp-modalLabel6473273"; | |
| 3314 | + a.dataset.target = "#fp-modal"; | |
| 3315 | + a.addEventListener("click",() => { document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6473273') }) | |
| 3316 | + }); | |
| 3317 | + </script> | |
| 3318 | + </div> | |
| 3319 | + | |
| 3320 | + <!-- Video Buttons --> | |
| 3321 | + <div class="btn-group-custom" lang=""> | |
| 3322 | + | |
| 3323 | + </div> | |
| 3324 | + | |
| 3325 | + <!-- Property Details --> | |
| 3326 | + <div class="details-section" lang=""> | |
| 3327 | + <h2 id="fp-header-21" class="property-title h4" lang="">Aalto II | C1</h2> | |
| 3328 | + <div class="property-details" lang=""> | |
| 3329 | + | |
| 3330 | + | |
| 3331 | + <div class="property-details" lang=""> | |
| 3332 | + <span lang="">2 chambre / 2 SdB</span> | |
| 3333 | + <span class="dot-separator" lang="">●</span> | |
| 3334 | + <span lang="">987 pc</span> | |
| 3335 | + </div> | |
| 3336 | + </div> | |
| 3337 | + </div> | |
| 3338 | + | |
| 3339 | + <!-- Pricing Section --> | |
| 3340 | + <div class="pricing-section" lang=""> | |
| 3341 | + <div class="pricing-container" lang=""> | |
| 3342 | + <div class="pricing-details bg-light mb-2" lang=""> | |
| 3343 | + <span class="pricing-title" lang="">à partir de</span> | |
| 3344 | + | |
| 3345 | + <div lang=""> | |
| 3346 | + <span class="pricing-amount" lang="">$2,345.00</span> | |
| 3347 | + <span class="pricing-period" lang="">/mois</span> | |
| 3348 | + </div> | |
| 3349 | + | |
| 3350 | + | |
| 3351 | + </div> | |
| 3352 | + | |
| 3353 | + <!-- Cost Calculator Section --> | |
| 3354 | + </div> | |
| 3355 | + </div> | |
| 3356 | + | |
| 3357 | + <!-- Specials Badge --> | |
| 3358 | + <div class="extras-section mt-2" lang=""> | |
| 3359 | + <div class="specials-badge" lang=""></div> | |
| 3360 | + </div> | |
| 3361 | + | |
| 3362 | + | |
| 3363 | + <!-- CTA Button --> | |
| 3364 | + <div class="cta-section mt-3" lang=""> | |
| 3365 | + <a href="/floorplans/aalto-ii-%7c-c1" class="btn-block track-apply floorplan-action-button btn btn-primary" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto II | C1" data-floorplan-size="2" data-floorplan-sqft="987" data-floorplan-price="2345" data-selenium-id="floorplan-21-apply-btn" lang="">vérifier la disponibilité<span class="sr-only" lang=""> for Aalto II | C1</span> | |
| 3366 | + </a> | |
| 3367 | + </div> | |
| 3368 | + | |
| 3369 | + <!-- Available Tours --> | |
| 3370 | + <div class="tour-section text-center" lang=""> | |
| 3371 | + <a href="/scheduletour" class="schedule-link" lang="">Planifier une visite<span class="sr-only" lang=""> for Aalto II | C1</span></a> | |
| 3372 | + </div> | |
| 3373 | + | |
| 3374 | + <!-- Smart Nudge Inline Message --> | |
| 3375 | + | |
| 3376 | + <!-- Smart Nudge Directional Popover --> | |
| 3377 | + </div> | |
| 3378 | + </div> | |
| 3379 | + <div id="fp-container-6473279" class="col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container" lang=""> | |
| 3380 | + <div class="floor-plan-card h-100" lang=""> | |
| 3381 | + <!-- Gallery Section --> | |
| 3382 | + <div class="gallery-section p-3" lang=""> | |
| 3383 | + | |
| 3384 | + | |
| 3385 | + | |
| 3386 | + | |
| 3387 | + | |
| 3388 | + | |
| 3389 | + | |
| 3390 | + | |
| 3391 | +<style>#carousel-floorplan-gallery-22 .carousel-inner picture {aspect-ratio: 1.5; width: 100%; display: block}#carousel-floorplan-gallery-22 .carousel-inner {aspect-ratio: 1.5;}</style> | |
| 3392 | +<section role="region" aria-label="Image carousel" id="carousel-floorplan-gallery-22" class="photogallery carousel slide" data-gallery-type="default" data-ride="carousel" data-interval="false" data-enable-legacy-zoom="true" data-has-height="true" data-max-width="1140" data-initialized="true"> | |
| 3393 | + | |
| 3394 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 3395 | + | |
| 3396 | + | |
| 3397 | + | |
| 3398 | + | |
| 3399 | + | |
| 3400 | + | |
| 3401 | + | |
| 3402 | + | |
| 3403 | + <div role="tabpanel" class="carousel-item h-100 active" id="carousel-floorplan-gallery-22-slide-1" lang=""> | |
| 3404 | + <div class="item h-100" lang=""> | |
| 3405 | + <a href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/c6.png" role="button" aria-label="Aalto II | C6 Floor plan image, opens a dialog" class="modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0" lang="" data-prevent-lightbox="off" aria-controls="fp-modal" data-screen="modal-content-6473279" data-image-modal="modal-body-6473279" data-toggle="modal" data-imagemodal-label="fp-modalLabel6473279" data-target="#fp-modal"> | |
| 3406 | + <div class="item-index" data-selenium-id="ImageNumber1" lang="">1 de 1</div> | |
| 3407 | + | |
| 3408 | + <picture> | |
| 3409 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/c6.png"> | |
| 3410 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/c6.png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/c6.png"> | |
| 3411 | +<source media="(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/c6.png 2x"><source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/c6.png"> | |
| 3412 | +<source media="(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/c6.png 2x"><source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/c6.png"> | |
| 3413 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/c6.png 2x"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/c6.png" class="img-fluid" alt="" fetchpriority="high"> | |
| 3414 | +</picture> | |
| 3415 | + | |
| 3416 | + | |
| 3417 | + | |
| 3418 | + </a> | |
| 3419 | + </div> | |
| 3420 | + </div> | |
| 3421 | + </div> | |
| 3422 | +</section> | |
| 3423 | + | |
| 3424 | + | |
| 3425 | + | |
| 3426 | + | |
| 3427 | + | |
| 3428 | + | |
| 3429 | + <script> | |
| 3430 | + document.querySelectorAll("#carousel-floorplan-gallery-22 .item a").forEach(a => { | |
| 3431 | + a.dataset.preventLightbox = "off" | |
| 3432 | + a.className = "modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0"; | |
| 3433 | + a.setAttribute("aria-label","Aalto II | C6 Floor plan image, opens a dialog"); | |
| 3434 | + a.setAttribute("aria-controls","fp-modal"); | |
| 3435 | + a.dataset.screen = "modal-content-6473279"; | |
| 3436 | + a.dataset.imageModal = "modal-body-6473279"; | |
| 3437 | + a.dataset.toggle = "modal"; | |
| 3438 | + a.dataset.imagemodalLabel = "fp-modalLabel6473279"; | |
| 3439 | + a.dataset.target = "#fp-modal"; | |
| 3440 | + a.addEventListener("click",() => { document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6473279') }) | |
| 3441 | + }); | |
| 3442 | + </script> | |
| 3443 | + </div> | |
| 3444 | + | |
| 3445 | + <!-- Video Buttons --> | |
| 3446 | + <div class="btn-group-custom" lang=""> | |
| 3447 | + | |
| 3448 | + </div> | |
| 3449 | + | |
| 3450 | + <!-- Property Details --> | |
| 3451 | + <div class="details-section" lang=""> | |
| 3452 | + <h2 id="fp-header-22" class="property-title h4" lang="">Aalto II | C6</h2> | |
| 3453 | + <div class="property-details" lang=""> | |
| 3454 | + | |
| 3455 | + | |
| 3456 | + <div class="property-details" lang=""> | |
| 3457 | + <span lang="">2 chambre / 2 SdB</span> | |
| 3458 | + <span class="dot-separator" lang="">●</span> | |
| 3459 | + <span lang="">995 pc</span> | |
| 3460 | + </div> | |
| 3461 | + </div> | |
| 3462 | + </div> | |
| 3463 | + | |
| 3464 | + <!-- Pricing Section --> | |
| 3465 | + <div class="pricing-section" lang=""> | |
| 3466 | + <div class="pricing-container" lang=""> | |
| 3467 | + <div class="pricing-details bg-light mb-2" lang=""> | |
| 3468 | + <span class="pricing-title" lang="">à partir de</span> | |
| 3469 | + | |
| 3470 | + <div lang=""> | |
| 3471 | + <span class="pricing-amount" lang="">$2,395.00</span> | |
| 3472 | + <span class="pricing-period" lang="">/mois</span> | |
| 3473 | + </div> | |
| 3474 | + | |
| 3475 | + | |
| 3476 | + </div> | |
| 3477 | + | |
| 3478 | + <!-- Cost Calculator Section --> | |
| 3479 | + </div> | |
| 3480 | + </div> | |
| 3481 | + | |
| 3482 | + <!-- Specials Badge --> | |
| 3483 | + <div class="extras-section mt-2" lang=""> | |
| 3484 | + <div class="specials-badge" lang=""></div> | |
| 3485 | + </div> | |
| 3486 | + | |
| 3487 | + | |
| 3488 | + <!-- CTA Button --> | |
| 3489 | + <div class="cta-section mt-3" lang=""> | |
| 3490 | + <a href="/floorplans/aalto-ii-%7c-c6" class="btn-block track-apply floorplan-action-button btn btn-primary" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto II | C6" data-floorplan-size="2" data-floorplan-sqft="995" data-floorplan-price="2395" data-selenium-id="floorplan-22-apply-btn" lang="">vérifier la disponibilité<span class="sr-only" lang=""> for Aalto II | C6</span> | |
| 3491 | + </a> | |
| 3492 | + </div> | |
| 3493 | + | |
| 3494 | + <!-- Available Tours --> | |
| 3495 | + <div class="tour-section text-center" lang=""> | |
| 3496 | + <a href="/scheduletour" class="schedule-link" lang="">Planifier une visite<span class="sr-only" lang=""> for Aalto II | C6</span></a> | |
| 3497 | + </div> | |
| 3498 | + | |
| 3499 | + <!-- Smart Nudge Inline Message --> | |
| 3500 | + | |
| 3501 | + <!-- Smart Nudge Directional Popover --> | |
| 3502 | + </div> | |
| 3503 | + </div> | |
| 3504 | + <div id="fp-container-6473283" class="col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container" lang=""> | |
| 3505 | + <div class="floor-plan-card h-100" lang=""> | |
| 3506 | + <!-- Gallery Section --> | |
| 3507 | + <div class="gallery-section p-3" lang=""> | |
| 3508 | + | |
| 3509 | + | |
| 3510 | + | |
| 3511 | + | |
| 3512 | + | |
| 3513 | + | |
| 3514 | + | |
| 3515 | + | |
| 3516 | +<style>#carousel-floorplan-gallery-23 .carousel-inner picture {aspect-ratio: 1.5; width: 100%; display: block}#carousel-floorplan-gallery-23 .carousel-inner {aspect-ratio: 1.5;}</style> | |
| 3517 | +<section role="region" aria-label="Image carousel" id="carousel-floorplan-gallery-23" class="photogallery carousel slide" data-gallery-type="default" data-ride="carousel" data-interval="false" data-enable-legacy-zoom="true" data-has-height="true" data-max-width="1140" data-initialized="true"> | |
| 3518 | + | |
| 3519 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 3520 | + | |
| 3521 | + | |
| 3522 | + | |
| 3523 | + | |
| 3524 | + | |
| 3525 | + | |
| 3526 | + | |
| 3527 | + | |
| 3528 | + <div role="tabpanel" class="carousel-item h-100 active" id="carousel-floorplan-gallery-23-slide-1" lang=""> | |
| 3529 | + <div class="item h-100" lang=""> | |
| 3530 | + <a href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/d1.png" role="button" aria-label="Aalto II | D1 Floor plan image, opens a dialog" class="modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0" lang="" data-prevent-lightbox="off" aria-controls="fp-modal" data-screen="modal-content-6473283" data-image-modal="modal-body-6473283" data-toggle="modal" data-imagemodal-label="fp-modalLabel6473283" data-target="#fp-modal"> | |
| 3531 | + <div class="item-index" data-selenium-id="ImageNumber1" lang="">1 de 1</div> | |
| 3532 | + | |
| 3533 | + <picture> | |
| 3534 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/d1.png"> | |
| 3535 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/d1.png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/d1.png"> | |
| 3536 | +<source media="(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/d1.png 2x"><source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/d1.png"> | |
| 3537 | +<source media="(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/d1.png 2x"><source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/d1.png"> | |
| 3538 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/d1.png 2x"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/d1.png" class="img-fluid" alt="" fetchpriority="high"> | |
| 3539 | +</picture> | |
| 3540 | + | |
| 3541 | + | |
| 3542 | + | |
| 3543 | + </a> | |
| 3544 | + </div> | |
| 3545 | + </div> | |
| 3546 | + </div> | |
| 3547 | +</section> | |
| 3548 | + | |
| 3549 | + | |
| 3550 | + | |
| 3551 | + | |
| 3552 | + | |
| 3553 | + | |
| 3554 | + <script> | |
| 3555 | + document.querySelectorAll("#carousel-floorplan-gallery-23 .item a").forEach(a => { | |
| 3556 | + a.dataset.preventLightbox = "off" | |
| 3557 | + a.className = "modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0"; | |
| 3558 | + a.setAttribute("aria-label","Aalto II | D1 Floor plan image, opens a dialog"); | |
| 3559 | + a.setAttribute("aria-controls","fp-modal"); | |
| 3560 | + a.dataset.screen = "modal-content-6473283"; | |
| 3561 | + a.dataset.imageModal = "modal-body-6473283"; | |
| 3562 | + a.dataset.toggle = "modal"; | |
| 3563 | + a.dataset.imagemodalLabel = "fp-modalLabel6473283"; | |
| 3564 | + a.dataset.target = "#fp-modal"; | |
| 3565 | + a.addEventListener("click",() => { document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6473283') }) | |
| 3566 | + }); | |
| 3567 | + </script> | |
| 3568 | + </div> | |
| 3569 | + | |
| 3570 | + <!-- Video Buttons --> | |
| 3571 | + <div class="btn-group-custom" lang=""> | |
| 3572 | + | |
| 3573 | + </div> | |
| 3574 | + | |
| 3575 | + <!-- Property Details --> | |
| 3576 | + <div class="details-section" lang=""> | |
| 3577 | + <h2 id="fp-header-23" class="property-title h4" lang="">Aalto II | D1</h2> | |
| 3578 | + <div class="property-details" lang=""> | |
| 3579 | + | |
| 3580 | + | |
| 3581 | + <div class="property-details" lang=""> | |
| 3582 | + <span lang="">2 chambre / 2 SdB</span> | |
| 3583 | + <span class="dot-separator" lang="">●</span> | |
| 3584 | + <span lang="">1,068 pc</span> | |
| 3585 | + </div> | |
| 3586 | + </div> | |
| 3587 | + </div> | |
| 3588 | + | |
| 3589 | + <!-- Pricing Section --> | |
| 3590 | + <div class="pricing-section" lang=""> | |
| 3591 | + <div class="pricing-container" lang=""> | |
| 3592 | + <div class="pricing-details bg-light mb-2" lang=""> | |
| 3593 | + <span class="pricing-title" lang="">à partir de</span> | |
| 3594 | + | |
| 3595 | + <div lang=""> | |
| 3596 | + <span class="pricing-amount" lang="">$2,485.00</span> | |
| 3597 | + <span class="pricing-period" lang="">/mois</span> | |
| 3598 | + </div> | |
| 3599 | + | |
| 3600 | + | |
| 3601 | + </div> | |
| 3602 | + | |
| 3603 | + <!-- Cost Calculator Section --> | |
| 3604 | + </div> | |
| 3605 | + </div> | |
| 3606 | + | |
| 3607 | + <!-- Specials Badge --> | |
| 3608 | + <div class="extras-section mt-2" lang=""> | |
| 3609 | + <div class="specials-badge" lang=""></div> | |
| 3610 | + </div> | |
| 3611 | + | |
| 3612 | + | |
| 3613 | + <!-- CTA Button --> | |
| 3614 | + <div class="cta-section mt-3" lang=""> | |
| 3615 | + <a href="/floorplans/aalto-ii-%7c-d1" class="btn-block track-apply floorplan-action-button btn btn-primary" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto II | D1" data-floorplan-size="2" data-floorplan-sqft="1068" data-floorplan-price="2485" data-selenium-id="floorplan-23-apply-btn" lang="">vérifier la disponibilité<span class="sr-only" lang=""> for Aalto II | D1</span> | |
| 3616 | + </a> | |
| 3617 | + </div> | |
| 3618 | + | |
| 3619 | + <!-- Available Tours --> | |
| 3620 | + <div class="tour-section text-center" lang=""> | |
| 3621 | + <a href="/scheduletour" class="schedule-link" lang="">Planifier une visite<span class="sr-only" lang=""> for Aalto II | D1</span></a> | |
| 3622 | + </div> | |
| 3623 | + | |
| 3624 | + <!-- Smart Nudge Inline Message --> | |
| 3625 | + | |
| 3626 | + <!-- Smart Nudge Directional Popover --> | |
| 3627 | + </div> | |
| 3628 | + </div> | |
| 3629 | + <!-- Page-level Smart Nudge Directional Popovers (IPM type 5, Frontdesk type 6) --> | |
| 3630 | + <!-- Image modal --> | |
| 3631 | + | |
| 3632 | + | |
| 3633 | + | |
| 3634 | + | |
| 3635 | +<div class="modal fade fp-modal" id="fp-modal" role="dialog" aria-labelledby="fp-modalLabel6473291" aria-hidden="true" lang=""> | |
| 3636 | + <div class="modal-dialog modal-fullscreen" role="document" lang=""> | |
| 3637 | + <div id="modal-content-6473291" class="modal-content" lang=""> | |
| 3638 | + <div class="modal-header" lang=""> | |
| 3639 | + <h2 class="h3 m-0" id="fp-modalLabel6473291" lang="">Aalto II | S2</h2> | |
| 3640 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" lang=""> | |
| 3641 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 3642 | + </button> | |
| 3643 | + </div> | |
| 3644 | + <div id="modal-body-6473291" class="modal-body px-0 pt-0 pb-2" lang=""> | |
| 3645 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" lang=""> | |
| 3646 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" lang=""> | |
| 3647 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" lang=""> | |
| 3648 | + <li class="list-inline-item" lang="">studio</li> | |
| 3649 | + <li class="list-inline-item" lang="">1 Salle de bains</li> | |
| 3650 | + <li class="list-inline-item" lang="">483 pc</li> | |
| 3651 | + </ul> | |
| 3652 | + </div> | |
| 3653 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" lang=""> | |
| 3654 | + <div class="d-inline-block position-relative" lang=""> | |
| 3655 | + <span class="text-dark font-weight-medium text-2x" lang="">$1,520.00<span class="sr-only" lang="">à</span>-$1,525.00</span><span lang="">/ month</span> | |
| 3656 | + | |
| 3657 | + </div> | |
| 3658 | + </div> | |
| 3659 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" lang=""> | |
| 3660 | + <span lang="">Available On: </span> <span lang="">10/09/2026</span> | |
| 3661 | + <a href="/floorplans/aalto-ii-%7c-s2" class="btn btn-primary ml-3 track-apply" aria-label=" Check Availability for Aalto II | S2" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto II | S2" data-floorplan-size="0" data-floorplan-sqft="483" data-floorplan-price="1520-1525" data-selenium-id="floorplan-0-apply-btn" lang="">vérifier la disponibilité</a> | |
| 3662 | + </div> | |
| 3663 | + </div> | |
| 3664 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6473291-0" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 3665 | + | |
| 3666 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 3667 | + | |
| 3668 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6473291-0-1" tabindex="0" lang=""> | |
| 3669 | + | |
| 3670 | + <div class="item" lang=""> | |
| 3671 | + | |
| 3672 | + <picture> | |
| 3673 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/144684/s2.png"> | |
| 3674 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/144684/s2.png"> | |
| 3675 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/144684/s2.png"> | |
| 3676 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/144684/s2.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/144684/s2.png" class="img-fluid" alt="A floor plan of a house with a living room, kitchen, and bathroom." loading="lazy"> | |
| 3677 | +</picture> | |
| 3678 | + | |
| 3679 | + | |
| 3680 | + </div> | |
| 3681 | + | |
| 3682 | + | |
| 3683 | + </div> | |
| 3684 | + </div> | |
| 3685 | + | |
| 3686 | + | |
| 3687 | + | |
| 3688 | + </section> | |
| 3689 | + </div> | |
| 3690 | + </div> | |
| 3691 | + <div id="modal-content-6473261" class="modal-content" lang=""> | |
| 3692 | + <div class="modal-header" lang=""> | |
| 3693 | + <h2 class="h3 m-0" id="fp-modalLabel6473261" lang="">Aalto II | A2 | Accessible</h2> | |
| 3694 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" lang=""> | |
| 3695 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 3696 | + </button> | |
| 3697 | + </div> | |
| 3698 | + <div id="modal-body-6473261" class="modal-body px-0 pt-0 pb-2" lang=""> | |
| 3699 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" lang=""> | |
| 3700 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" lang=""> | |
| 3701 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" lang=""> | |
| 3702 | + <li class="list-inline-item" lang="">1 chambre</li> | |
| 3703 | + <li class="list-inline-item" lang="">1 Salle de bains</li> | |
| 3704 | + <li class="list-inline-item" lang="">550 pc</li> | |
| 3705 | + </ul> | |
| 3706 | + </div> | |
| 3707 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" lang=""> | |
| 3708 | + <div class="d-inline-block position-relative" lang=""> | |
| 3709 | + <span class="text-dark font-weight-medium text-2x" lang="">$1,660.00<span class="sr-only" lang="">à</span>-$1,665.00</span><span lang="">/ month</span> | |
| 3710 | + | |
| 3711 | + </div> | |
| 3712 | + </div> | |
| 3713 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" lang=""> | |
| 3714 | + <span lang="">Available On: </span> <span lang="">Disponible maintenant</span> | |
| 3715 | + <a href="/floorplans/aalto-ii-%7c-a2-%7c-accessible" class="btn btn-primary ml-3 track-apply" aria-label=" Check Availability for Aalto II | A2 | Accessible" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto II | A2 | Accessible" data-floorplan-size="1" data-floorplan-sqft="550" data-floorplan-price="1660-1665" data-selenium-id="floorplan-1-apply-btn" lang="">vérifier la disponibilité</a> | |
| 3716 | + </div> | |
| 3717 | + </div> | |
| 3718 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6473261-1" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 3719 | + | |
| 3720 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 3721 | + | |
| 3722 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6473261-1-1" tabindex="0" lang=""> | |
| 3723 | + | |
| 3724 | + <div class="item" lang=""> | |
| 3725 | + | |
| 3726 | + <picture> | |
| 3727 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/144684/a2(1).png"> | |
| 3728 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/144684/a2(1).png"> | |
| 3729 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/144684/a2(1).png"> | |
| 3730 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/144684/a2(1).png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/144684/a2(1).png" class="img-fluid" alt="A floor plan of a house with a living room, kitchen, dining room, and bedrooms." loading="lazy"> | |
| 3731 | +</picture> | |
| 3732 | + | |
| 3733 | + | |
| 3734 | + </div> | |
| 3735 | + | |
| 3736 | + | |
| 3737 | + </div> | |
| 3738 | + </div> | |
| 3739 | + | |
| 3740 | + | |
| 3741 | + | |
| 3742 | + </section> | |
| 3743 | + </div> | |
| 3744 | + </div> | |
| 3745 | + <div id="modal-content-6473308" class="modal-content" lang=""> | |
| 3746 | + <div class="modal-header" lang=""> | |
| 3747 | + <h2 class="h3 m-0" id="fp-modalLabel6473308" lang="">Aalto | A9 | Accessible</h2> | |
| 3748 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" lang=""> | |
| 3749 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 3750 | + </button> | |
| 3751 | + </div> | |
| 3752 | + <div id="modal-body-6473308" class="modal-body px-0 pt-0 pb-2" lang=""> | |
| 3753 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" lang=""> | |
| 3754 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" lang=""> | |
| 3755 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" lang=""> | |
| 3756 | + <li class="list-inline-item" lang="">1 chambre</li> | |
| 3757 | + <li class="list-inline-item" lang="">1 Salle de bains</li> | |
| 3758 | + <li class="list-inline-item" lang="">609 pc</li> | |
| 3759 | + </ul> | |
| 3760 | + </div> | |
| 3761 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" lang=""> | |
| 3762 | + <div class="d-inline-block position-relative" lang=""> | |
| 3763 | + <span class="text-dark font-weight-medium text-2x" lang="">$1,690.00<span class="sr-only" lang="">à</span>-$1,840.00</span><span lang="">/ month</span> | |
| 3764 | + | |
| 3765 | + </div> | |
| 3766 | + </div> | |
| 3767 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" lang=""> | |
| 3768 | + <span lang="">Available On: </span> <span lang="">Disponible maintenant</span> | |
| 3769 | + <a href="/floorplans/aalto-%7c-a9-%7c-accessible" class="btn btn-primary ml-3 track-apply" aria-label=" Check Availability for Aalto | A9 | Accessible" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto | A9 | Accessible" data-floorplan-size="1" data-floorplan-sqft="609" data-floorplan-price="1690-1840" data-selenium-id="floorplan-2-apply-btn" lang="">vérifier la disponibilité</a> | |
| 3770 | + </div> | |
| 3771 | + </div> | |
| 3772 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6473308-2" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 3773 | + | |
| 3774 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 3775 | + | |
| 3776 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6473308-2-1" tabindex="0" lang=""> | |
| 3777 | + | |
| 3778 | + <div class="item" lang=""> | |
| 3779 | + | |
| 3780 | + <picture> | |
| 3781 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/144684/a9.png"> | |
| 3782 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/144684/a9.png"> | |
| 3783 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/144684/a9.png"> | |
| 3784 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/144684/a9.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/144684/a9.png" class="img-fluid" alt="A floor plan of a property with a kitchen, living room, and bathroom." loading="lazy"> | |
| 3785 | +</picture> | |
| 3786 | + | |
| 3787 | + | |
| 3788 | + </div> | |
| 3789 | + | |
| 3790 | + | |
| 3791 | + </div> | |
| 3792 | + </div> | |
| 3793 | + | |
| 3794 | + | |
| 3795 | + | |
| 3796 | + </section> | |
| 3797 | + </div> | |
| 3798 | + </div> | |
| 3799 | + <div id="modal-content-6473306" class="modal-content" lang=""> | |
| 3800 | + <div class="modal-header" lang=""> | |
| 3801 | + <h2 class="h3 m-0" id="fp-modalLabel6473306" lang="">Aalto | A7 | Accessible</h2> | |
| 3802 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" lang=""> | |
| 3803 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 3804 | + </button> | |
| 3805 | + </div> | |
| 3806 | + <div id="modal-body-6473306" class="modal-body px-0 pt-0 pb-2" lang=""> | |
| 3807 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" lang=""> | |
| 3808 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" lang=""> | |
| 3809 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" lang=""> | |
| 3810 | + <li class="list-inline-item" lang="">1 chambre</li> | |
| 3811 | + <li class="list-inline-item" lang="">1 Salle de bains</li> | |
| 3812 | + <li class="list-inline-item" lang="">607 pc</li> | |
| 3813 | + </ul> | |
| 3814 | + </div> | |
| 3815 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" lang=""> | |
| 3816 | + <div class="d-inline-block position-relative" lang=""> | |
| 3817 | + <span class="text-dark font-weight-medium text-2x" lang="">$1,700.00<span class="sr-only" lang="">à</span>-$1,845.00</span><span lang="">/ month</span> | |
| 3818 | + | |
| 3819 | + </div> | |
| 3820 | + </div> | |
| 3821 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" lang=""> | |
| 3822 | + <span lang="">Available On: </span> <span lang="">Disponible maintenant</span> | |
| 3823 | + <a href="/floorplans/aalto-%7c-a7-%7c-accessible" class="btn btn-primary ml-3 track-apply" aria-label=" Check Availability for Aalto | A7 | Accessible" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto | A7 | Accessible" data-floorplan-size="1" data-floorplan-sqft="607" data-floorplan-price="1700-1845" data-selenium-id="floorplan-3-apply-btn" lang="">vérifier la disponibilité</a> | |
| 3824 | + </div> | |
| 3825 | + </div> | |
| 3826 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6473306-3" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 3827 | + | |
| 3828 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 3829 | + | |
| 3830 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6473306-3-1" tabindex="0" lang=""> | |
| 3831 | + | |
| 3832 | + <div class="item" lang=""> | |
| 3833 | + | |
| 3834 | + <picture> | |
| 3835 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/144684/a7(1).png"> | |
| 3836 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/144684/a7(1).png"> | |
| 3837 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/144684/a7(1).png"> | |
| 3838 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/144684/a7(1).png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/144684/a7(1).png" class="img-fluid" alt="A floor plan of a building with a river running through it." loading="lazy"> | |
| 3839 | +</picture> | |
| 3840 | + | |
| 3841 | + | |
| 3842 | + </div> | |
| 3843 | + | |
| 3844 | + | |
| 3845 | + </div> | |
| 3846 | + </div> | |
| 3847 | + | |
| 3848 | + | |
| 3849 | + | |
| 3850 | + </section> | |
| 3851 | + </div> | |
| 3852 | + </div> | |
| 3853 | + <div id="modal-content-6473262" class="modal-content" lang=""> | |
| 3854 | + <div class="modal-header" lang=""> | |
| 3855 | + <h2 class="h3 m-0" id="fp-modalLabel6473262" lang="">Aalto II | A1</h2> | |
| 3856 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" lang=""> | |
| 3857 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 3858 | + </button> | |
| 3859 | + </div> | |
| 3860 | + <div id="modal-body-6473262" class="modal-body px-0 pt-0 pb-2" lang=""> | |
| 3861 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" lang=""> | |
| 3862 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" lang=""> | |
| 3863 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" lang=""> | |
| 3864 | + <li class="list-inline-item" lang="">1 chambre</li> | |
| 3865 | + <li class="list-inline-item" lang="">1 Salle de bains</li> | |
| 3866 | + <li class="list-inline-item" lang="">559 pc</li> | |
| 3867 | + </ul> | |
| 3868 | + </div> | |
| 3869 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" lang=""> | |
| 3870 | + <div class="d-inline-block position-relative" lang=""> | |
| 3871 | + <span class="text-dark font-weight-medium text-2x" lang="">$1,700.00<span class="sr-only" lang="">à</span>-$1,860.00</span><span lang="">/ month</span> | |
| 3872 | + | |
| 3873 | + </div> | |
| 3874 | + </div> | |
| 3875 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" lang=""> | |
| 3876 | + <span lang="">Available On: </span> <span lang="">Disponible maintenant</span> | |
| 3877 | + <a href="/floorplans/aalto-ii-%7c-a1" class="btn btn-primary ml-3 track-apply" aria-label=" Check Availability for Aalto II | A1" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto II | A1" data-floorplan-size="1" data-floorplan-sqft="559" data-floorplan-price="1700-1860" data-selenium-id="floorplan-4-apply-btn" lang="">vérifier la disponibilité</a> | |
| 3878 | + </div> | |
| 3879 | + </div> | |
| 3880 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6473262-4" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 3881 | + | |
| 3882 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 3883 | + | |
| 3884 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6473262-4-1" tabindex="0" lang=""> | |
| 3885 | + | |
| 3886 | + <div class="item" lang=""> | |
| 3887 | + | |
| 3888 | + <picture> | |
| 3889 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/144684/a1(1).png"> | |
| 3890 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/144684/a1(1).png"> | |
| 3891 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/144684/a1(1).png"> | |
| 3892 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/144684/a1(1).png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/144684/a1(1).png" class="img-fluid" alt="A floor plan of a house with a living room, two bedrooms, a bathroom, and a kitchen." loading="lazy"> | |
| 3893 | +</picture> | |
| 3894 | + | |
| 3895 | + | |
| 3896 | + </div> | |
| 3897 | + | |
| 3898 | + | |
| 3899 | + </div> | |
| 3900 | + </div> | |
| 3901 | + | |
| 3902 | + | |
| 3903 | + | |
| 3904 | + </section> | |
| 3905 | + </div> | |
| 3906 | + </div> | |
| 3907 | + <div id="modal-content-6473263" class="modal-content" lang=""> | |
| 3908 | + <div class="modal-header" lang=""> | |
| 3909 | + <h2 class="h3 m-0" id="fp-modalLabel6473263" lang="">Aalto II | A3</h2> | |
| 3910 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" lang=""> | |
| 3911 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 3912 | + </button> | |
| 3913 | + </div> | |
| 3914 | + <div id="modal-body-6473263" class="modal-body px-0 pt-0 pb-2" lang=""> | |
| 3915 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" lang=""> | |
| 3916 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" lang=""> | |
| 3917 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" lang=""> | |
| 3918 | + <li class="list-inline-item" lang="">1 chambre</li> | |
| 3919 | + <li class="list-inline-item" lang="">1 Salle de bains</li> | |
| 3920 | + <li class="list-inline-item" lang="">557 pc</li> | |
| 3921 | + </ul> | |
| 3922 | + </div> | |
| 3923 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" lang=""> | |
| 3924 | + <div class="d-inline-block position-relative" lang=""> | |
| 3925 | + <span class="text-dark font-weight-medium text-2x" lang="">$1,795.00<span class="sr-only" lang="">à</span>-$1,830.00</span><span lang="">/ month</span> | |
| 3926 | + | |
| 3927 | + </div> | |
| 3928 | + </div> | |
| 3929 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" lang=""> | |
| 3930 | + <span lang="">Available On: </span> <span lang="">10/09/2026</span> | |
| 3931 | + <a href="/floorplans/aalto-ii-%7c-a3" class="btn btn-primary ml-3 track-apply" aria-label=" Check Availability for Aalto II | A3" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto II | A3" data-floorplan-size="1" data-floorplan-sqft="557" data-floorplan-price="1795-1830" data-selenium-id="floorplan-5-apply-btn" lang="">vérifier la disponibilité</a> | |
| 3932 | + </div> | |
| 3933 | + </div> | |
| 3934 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6473263-5" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 3935 | + | |
| 3936 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 3937 | + | |
| 3938 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6473263-5-1" tabindex="0" lang=""> | |
| 3939 | + | |
| 3940 | + <div class="item" lang=""> | |
| 3941 | + | |
| 3942 | + <picture> | |
| 3943 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/144684/a3(1).png"> | |
| 3944 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/144684/a3(1).png"> | |
| 3945 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/144684/a3(1).png"> | |
| 3946 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/144684/a3(1).png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/144684/a3(1).png" class="img-fluid" alt="A floor plan of a house with a living room, two bedrooms, a bathroom, and a kitchen." loading="lazy"> | |
| 3947 | +</picture> | |
| 3948 | + | |
| 3949 | + | |
| 3950 | + </div> | |
| 3951 | + | |
| 3952 | + | |
| 3953 | + </div> | |
| 3954 | + </div> | |
| 3955 | + | |
| 3956 | + | |
| 3957 | + | |
| 3958 | + </section> | |
| 3959 | + </div> | |
| 3960 | + </div> | |
| 3961 | + <div id="modal-content-6473298" class="modal-content" lang=""> | |
| 3962 | + <div class="modal-header" lang=""> | |
| 3963 | + <h2 class="h3 m-0" id="fp-modalLabel6473298" lang="">Aalto | A12</h2> | |
| 3964 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" lang=""> | |
| 3965 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 3966 | + </button> | |
| 3967 | + </div> | |
| 3968 | + <div id="modal-body-6473298" class="modal-body px-0 pt-0 pb-2" lang=""> | |
| 3969 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" lang=""> | |
| 3970 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" lang=""> | |
| 3971 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" lang=""> | |
| 3972 | + <li class="list-inline-item" lang="">1 chambre</li> | |
| 3973 | + <li class="list-inline-item" lang="">1 Salle de bains</li> | |
| 3974 | + <li class="list-inline-item" lang="">503 pc</li> | |
| 3975 | + </ul> | |
| 3976 | + </div> | |
| 3977 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" lang=""> | |
| 3978 | + <div class="d-inline-block position-relative" lang=""> | |
| 3979 | + <span class="text-dark font-weight-medium text-2x" lang="">$1,820.00<span class="sr-only" lang="">à</span>-$1,835.00</span><span lang="">/ month</span> | |
| 3980 | + | |
| 3981 | + </div> | |
| 3982 | + </div> | |
| 3983 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" lang=""> | |
| 3984 | + <span lang="">Available On: </span> <span lang="">Disponible maintenant</span> | |
| 3985 | + <a href="/floorplans/aalto-%7c-a12" class="btn btn-primary ml-3 track-apply" aria-label=" Check Availability for Aalto | A12" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto | A12" data-floorplan-size="1" data-floorplan-sqft="503" data-floorplan-price="1820-1835" data-selenium-id="floorplan-6-apply-btn" lang="">vérifier la disponibilité</a> | |
| 3986 | + </div> | |
| 3987 | + </div> | |
| 3988 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6473298-6" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 3989 | + | |
| 3990 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 3991 | + | |
| 3992 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6473298-6-1" tabindex="0" lang=""> | |
| 3993 | + | |
| 3994 | + <div class="item" lang=""> | |
| 3995 | + | |
| 3996 | + <picture> | |
| 3997 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/144684/a12.png"> | |
| 3998 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/144684/a12.png"> | |
| 3999 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/144684/a12.png"> | |
| 4000 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/144684/a12.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/144684/a12.png" class="img-fluid" alt="A floor plan of a residence with a living room, dining room, kitchen, and bathrooms." loading="lazy"> | |
| 4001 | +</picture> | |
| 4002 | + | |
| 4003 | + | |
| 4004 | + </div> | |
| 4005 | + | |
| 4006 | + | |
| 4007 | + </div> | |
| 4008 | + </div> | |
| 4009 | + | |
| 4010 | + | |
| 4011 | + | |
| 4012 | + </section> | |
| 4013 | + </div> | |
| 4014 | + </div> | |
| 4015 | + <div id="modal-content-6473307" class="modal-content" lang=""> | |
| 4016 | + <div class="modal-header" lang=""> | |
| 4017 | + <h2 class="h3 m-0" id="fp-modalLabel6473307" lang="">Aalto | A8 | Accessible</h2> | |
| 4018 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" lang=""> | |
| 4019 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 4020 | + </button> | |
| 4021 | + </div> | |
| 4022 | + <div id="modal-body-6473307" class="modal-body px-0 pt-0 pb-2" lang=""> | |
| 4023 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" lang=""> | |
| 4024 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" lang=""> | |
| 4025 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" lang=""> | |
| 4026 | + <li class="list-inline-item" lang="">1 chambre</li> | |
| 4027 | + <li class="list-inline-item" lang="">1 Salle de bains</li> | |
| 4028 | + <li class="list-inline-item" lang="">608 pc</li> | |
| 4029 | + </ul> | |
| 4030 | + </div> | |
| 4031 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" lang=""> | |
| 4032 | + <div class="d-inline-block position-relative" lang=""> | |
| 4033 | + <span class="text-dark font-weight-medium text-2x" lang="">$1,835.00</span><span lang="">/ month</span> | |
| 4034 | + | |
| 4035 | + </div> | |
| 4036 | + </div> | |
| 4037 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" lang=""> | |
| 4038 | + <span lang="">Available On: </span> <span lang="">Disponible maintenant</span> | |
| 4039 | + <a href="/floorplans/aalto-%7c-a8-%7c-accessible" class="btn btn-primary ml-3 track-apply" aria-label=" Check Availability for Aalto | A8 | Accessible" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto | A8 | Accessible" data-floorplan-size="1" data-floorplan-sqft="608" data-floorplan-price="1835" data-selenium-id="floorplan-7-apply-btn" lang="">vérifier la disponibilité</a> | |
| 4040 | + </div> | |
| 4041 | + </div> | |
| 4042 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6473307-7" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 4043 | + | |
| 4044 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 4045 | + | |
| 4046 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6473307-7-1" tabindex="0" lang=""> | |
| 4047 | + | |
| 4048 | + <div class="item" lang=""> | |
| 4049 | + | |
| 4050 | + <picture> | |
| 4051 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/144684/a8.png"> | |
| 4052 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/144684/a8.png"> | |
| 4053 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/144684/a8.png"> | |
| 4054 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/144684/a8.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/144684/a8.png" class="img-fluid" alt="A floor plan of a house with a kitchen, living room, and bathrooms." loading="lazy"> | |
| 4055 | +</picture> | |
| 4056 | + | |
| 4057 | + | |
| 4058 | + </div> | |
| 4059 | + | |
| 4060 | + | |
| 4061 | + </div> | |
| 4062 | + </div> | |
| 4063 | + | |
| 4064 | + | |
| 4065 | + | |
| 4066 | + </section> | |
| 4067 | + </div> | |
| 4068 | + </div> | |
| 4069 | + <div id="modal-content-6473303" class="modal-content" lang=""> | |
| 4070 | + <div class="modal-header" lang=""> | |
| 4071 | + <h2 class="h3 m-0" id="fp-modalLabel6473303" lang="">Aalto | A5 | Accessible</h2> | |
| 4072 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" lang=""> | |
| 4073 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 4074 | + </button> | |
| 4075 | + </div> | |
| 4076 | + <div id="modal-body-6473303" class="modal-body px-0 pt-0 pb-2" lang=""> | |
| 4077 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" lang=""> | |
| 4078 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" lang=""> | |
| 4079 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" lang=""> | |
| 4080 | + <li class="list-inline-item" lang="">1 chambre</li> | |
| 4081 | + <li class="list-inline-item" lang="">1 Salle de bains</li> | |
| 4082 | + <li class="list-inline-item" lang="">607 pc</li> | |
| 4083 | + </ul> | |
| 4084 | + </div> | |
| 4085 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" lang=""> | |
| 4086 | + <div class="d-inline-block position-relative" lang=""> | |
| 4087 | + <span class="text-dark font-weight-medium text-2x" lang="">$1,835.00</span><span lang="">/ month</span> | |
| 4088 | + | |
| 4089 | + </div> | |
| 4090 | + </div> | |
| 4091 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" lang=""> | |
| 4092 | + <span lang="">Available On: </span> <span lang="">Disponible maintenant</span> | |
| 4093 | + <a href="/floorplans/aalto-%7c-a5-%7c-accessible" class="btn btn-primary ml-3 track-apply" aria-label=" Check Availability for Aalto | A5 | Accessible" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto | A5 | Accessible" data-floorplan-size="1" data-floorplan-sqft="607" data-floorplan-price="1835" data-selenium-id="floorplan-8-apply-btn" lang="">vérifier la disponibilité</a> | |
| 4094 | + </div> | |
| 4095 | + </div> | |
| 4096 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6473303-8" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 4097 | + | |
| 4098 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 4099 | + | |
| 4100 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6473303-8-1" tabindex="0" lang=""> | |
| 4101 | + | |
| 4102 | + <div class="item" lang=""> | |
| 4103 | + | |
| 4104 | + <picture> | |
| 4105 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/144684/a5(1).png"> | |
| 4106 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/144684/a5(1).png"> | |
| 4107 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/144684/a5(1).png"> | |
| 4108 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/144684/a5(1).png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/144684/a5(1).png" class="img-fluid" alt="A floor plan of a house with a kitchen, living room, and bedrooms." loading="lazy"> | |
| 4109 | +</picture> | |
| 4110 | + | |
| 4111 | + | |
| 4112 | + </div> | |
| 4113 | + | |
| 4114 | + | |
| 4115 | + </div> | |
| 4116 | + </div> | |
| 4117 | + | |
| 4118 | + | |
| 4119 | + | |
| 4120 | + </section> | |
| 4121 | + </div> | |
| 4122 | + </div> | |
| 4123 | + <div id="modal-content-6473295" class="modal-content" lang=""> | |
| 4124 | + <div class="modal-header" lang=""> | |
| 4125 | + <h2 class="h3 m-0" id="fp-modalLabel6473295" lang="">Aalto | A10</h2> | |
| 4126 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" lang=""> | |
| 4127 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 4128 | + </button> | |
| 4129 | + </div> | |
| 4130 | + <div id="modal-body-6473295" class="modal-body px-0 pt-0 pb-2" lang=""> | |
| 4131 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" lang=""> | |
| 4132 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" lang=""> | |
| 4133 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" lang=""> | |
| 4134 | + <li class="list-inline-item" lang="">1 chambre</li> | |
| 4135 | + <li class="list-inline-item" lang="">1 Salle de bains</li> | |
| 4136 | + <li class="list-inline-item" lang="">609 pc</li> | |
| 4137 | + </ul> | |
| 4138 | + </div> | |
| 4139 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" lang=""> | |
| 4140 | + <div class="d-inline-block position-relative" lang=""> | |
| 4141 | + <span class="text-dark font-weight-medium text-2x" lang="">$1,850.00</span><span lang="">/ month</span> | |
| 4142 | + | |
| 4143 | + </div> | |
| 4144 | + </div> | |
| 4145 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" lang=""> | |
| 4146 | + <span lang="">Available On: </span> <span lang="">Disponible maintenant</span> | |
| 4147 | + <a href="/floorplans/aalto-%7c-a10" class="btn btn-primary ml-3 track-apply" aria-label=" Check Availability for Aalto | A10" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto | A10" data-floorplan-size="1" data-floorplan-sqft="609" data-floorplan-price="1850" data-selenium-id="floorplan-9-apply-btn" lang="">vérifier la disponibilité</a> | |
| 4148 | + </div> | |
| 4149 | + </div> | |
| 4150 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6473295-9" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 4151 | + | |
| 4152 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 4153 | + | |
| 4154 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6473295-9-1" tabindex="0" lang=""> | |
| 4155 | + | |
| 4156 | + <div class="item" lang=""> | |
| 4157 | + | |
| 4158 | + <picture> | |
| 4159 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/144684/a10.png"> | |
| 4160 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/144684/a10.png"> | |
| 4161 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/144684/a10.png"> | |
| 4162 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/144684/a10.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/144684/a10.png" class="img-fluid" alt="A floor plan of a property with a kitchen, living room, and bathrooms." loading="lazy"> | |
| 4163 | +</picture> | |
| 4164 | + | |
| 4165 | + | |
| 4166 | + </div> | |
| 4167 | + | |
| 4168 | + | |
| 4169 | + </div> | |
| 4170 | + </div> | |
| 4171 | + | |
| 4172 | + | |
| 4173 | + | |
| 4174 | + </section> | |
| 4175 | + </div> | |
| 4176 | + </div> | |
| 4177 | + <div id="modal-content-6473297" class="modal-content" lang=""> | |
| 4178 | + <div class="modal-header" lang=""> | |
| 4179 | + <h2 class="h3 m-0" id="fp-modalLabel6473297" lang="">Aalto | A11</h2> | |
| 4180 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" lang=""> | |
| 4181 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 4182 | + </button> | |
| 4183 | + </div> | |
| 4184 | + <div id="modal-body-6473297" class="modal-body px-0 pt-0 pb-2" lang=""> | |
| 4185 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" lang=""> | |
| 4186 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" lang=""> | |
| 4187 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" lang=""> | |
| 4188 | + <li class="list-inline-item" lang="">1 chambre</li> | |
| 4189 | + <li class="list-inline-item" lang="">1 Salle de bains</li> | |
| 4190 | + <li class="list-inline-item" lang="">635 pc</li> | |
| 4191 | + </ul> | |
| 4192 | + </div> | |
| 4193 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" lang=""> | |
| 4194 | + <div class="d-inline-block position-relative" lang=""> | |
| 4195 | + <span class="text-dark font-weight-medium text-2x" lang="">$1,855.00<span class="sr-only" lang="">à</span>-$1,875.00</span><span lang="">/ month</span> | |
| 4196 | + | |
| 4197 | + </div> | |
| 4198 | + </div> | |
| 4199 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" lang=""> | |
| 4200 | + <span lang="">Available On: </span> <span lang="">Disponible maintenant</span> | |
| 4201 | + <a href="/floorplans/aalto-%7c-a11" class="btn btn-primary ml-3 track-apply" aria-label=" Check Availability for Aalto | A11" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto | A11" data-floorplan-size="1" data-floorplan-sqft="635" data-floorplan-price="1855-1875" data-selenium-id="floorplan-10-apply-btn" lang="">vérifier la disponibilité</a> | |
| 4202 | + </div> | |
| 4203 | + </div> | |
| 4204 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6473297-10" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 4205 | + | |
| 4206 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 4207 | + | |
| 4208 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6473297-10-1" tabindex="0" lang=""> | |
| 4209 | + | |
| 4210 | + <div class="item" lang=""> | |
| 4211 | + | |
| 4212 | + <picture> | |
| 4213 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/144684/a11.png"> | |
| 4214 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/144684/a11.png"> | |
| 4215 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/144684/a11.png"> | |
| 4216 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/144684/a11.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/144684/a11.png" class="img-fluid" alt="A floor plan of a property with a living room, kitchen, and bathroom." loading="lazy"> | |
| 4217 | +</picture> | |
| 4218 | + | |
| 4219 | + | |
| 4220 | + </div> | |
| 4221 | + | |
| 4222 | + | |
| 4223 | + </div> | |
| 4224 | + </div> | |
| 4225 | + | |
| 4226 | + | |
| 4227 | + | |
| 4228 | + </section> | |
| 4229 | + </div> | |
| 4230 | + </div> | |
| 4231 | + <div id="modal-content-6473299" class="modal-content" lang=""> | |
| 4232 | + <div class="modal-header" lang=""> | |
| 4233 | + <h2 class="h3 m-0" id="fp-modalLabel6473299" lang="">Aalto | A13</h2> | |
| 4234 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" lang=""> | |
| 4235 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 4236 | + </button> | |
| 4237 | + </div> | |
| 4238 | + <div id="modal-body-6473299" class="modal-body px-0 pt-0 pb-2" lang=""> | |
| 4239 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" lang=""> | |
| 4240 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" lang=""> | |
| 4241 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" lang=""> | |
| 4242 | + <li class="list-inline-item" lang="">1 chambre</li> | |
| 4243 | + <li class="list-inline-item" lang="">1 Salle de bains</li> | |
| 4244 | + <li class="list-inline-item" lang="">598 pc</li> | |
| 4245 | + </ul> | |
| 4246 | + </div> | |
| 4247 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" lang=""> | |
| 4248 | + <div class="d-inline-block position-relative" lang=""> | |
| 4249 | + <span class="text-dark font-weight-medium text-2x" lang="">$1,855.00<span class="sr-only" lang="">à</span>-$1,870.00</span><span lang="">/ month</span> | |
| 4250 | + | |
| 4251 | + </div> | |
| 4252 | + </div> | |
| 4253 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" lang=""> | |
| 4254 | + <span lang="">Available On: </span> <span lang="">Disponible maintenant</span> | |
| 4255 | + <a href="/floorplans/aalto-%7c-a13" class="btn btn-primary ml-3 track-apply" aria-label=" Check Availability for Aalto | A13" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto | A13" data-floorplan-size="1" data-floorplan-sqft="598" data-floorplan-price="1855-1870" data-selenium-id="floorplan-11-apply-btn" lang="">vérifier la disponibilité</a> | |
| 4256 | + </div> | |
| 4257 | + </div> | |
| 4258 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6473299-11" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 4259 | + | |
| 4260 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 4261 | + | |
| 4262 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6473299-11-1" tabindex="0" lang=""> | |
| 4263 | + | |
| 4264 | + <div class="item" lang=""> | |
| 4265 | + | |
| 4266 | + <picture> | |
| 4267 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/144684/a13.png"> | |
| 4268 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/144684/a13.png"> | |
| 4269 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/144684/a13.png"> | |
| 4270 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/144684/a13.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/144684/a13.png" class="img-fluid" alt="A floor plan of a house with a kitchen, living room, and bathrooms." loading="lazy"> | |
| 4271 | +</picture> | |
| 4272 | + | |
| 4273 | + | |
| 4274 | + </div> | |
| 4275 | + | |
| 4276 | + | |
| 4277 | + </div> | |
| 4278 | + </div> | |
| 4279 | + | |
| 4280 | + | |
| 4281 | + | |
| 4282 | + </section> | |
| 4283 | + </div> | |
| 4284 | + </div> | |
| 4285 | + <div id="modal-content-6473304" class="modal-content" lang=""> | |
| 4286 | + <div class="modal-header" lang=""> | |
| 4287 | + <h2 class="h3 m-0" id="fp-modalLabel6473304" lang="">Aalto | A6</h2> | |
| 4288 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" lang=""> | |
| 4289 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 4290 | + </button> | |
| 4291 | + </div> | |
| 4292 | + <div id="modal-body-6473304" class="modal-body px-0 pt-0 pb-2" lang=""> | |
| 4293 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" lang=""> | |
| 4294 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" lang=""> | |
| 4295 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" lang=""> | |
| 4296 | + <li class="list-inline-item" lang="">1 chambre</li> | |
| 4297 | + <li class="list-inline-item" lang="">1 Salle de bains</li> | |
| 4298 | + <li class="list-inline-item" lang="">620 pc</li> | |
| 4299 | + </ul> | |
| 4300 | + </div> | |
| 4301 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" lang=""> | |
| 4302 | + <div class="d-inline-block position-relative" lang=""> | |
| 4303 | + <span class="text-dark font-weight-medium text-2x" lang="">$1,860.00<span class="sr-only" lang="">à</span>-$1,875.00</span><span lang="">/ month</span> | |
| 4304 | + | |
| 4305 | + </div> | |
| 4306 | + </div> | |
| 4307 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" lang=""> | |
| 4308 | + <span lang="">Available On: </span> <span lang="">Disponible maintenant</span> | |
| 4309 | + <a href="/floorplans/aalto-%7c-a6" class="btn btn-primary ml-3 track-apply" aria-label=" Check Availability for Aalto | A6" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto | A6" data-floorplan-size="1" data-floorplan-sqft="620" data-floorplan-price="1860-1875" data-selenium-id="floorplan-12-apply-btn" lang="">vérifier la disponibilité</a> | |
| 4310 | + </div> | |
| 4311 | + </div> | |
| 4312 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6473304-12" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 4313 | + | |
| 4314 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 4315 | + | |
| 4316 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6473304-12-1" tabindex="0" lang=""> | |
| 4317 | + | |
| 4318 | + <div class="item" lang=""> | |
| 4319 | + | |
| 4320 | + <picture> | |
| 4321 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/144684/a6(1).png"> | |
| 4322 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/144684/a6(1).png"> | |
| 4323 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/144684/a6(1).png"> | |
| 4324 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/144684/a6(1).png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/144684/a6(1).png" class="img-fluid" alt="A floor plan of a house with a living room, kitchen, dining room, and two bedrooms." loading="lazy"> | |
| 4325 | +</picture> | |
| 4326 | + | |
| 4327 | + | |
| 4328 | + </div> | |
| 4329 | + | |
| 4330 | + | |
| 4331 | + </div> | |
| 4332 | + </div> | |
| 4333 | + | |
| 4334 | + | |
| 4335 | + | |
| 4336 | + </section> | |
| 4337 | + </div> | |
| 4338 | + </div> | |
| 4339 | + <div id="modal-content-6473310" class="modal-content" lang=""> | |
| 4340 | + <div class="modal-header" lang=""> | |
| 4341 | + <h2 class="h3 m-0" id="fp-modalLabel6473310" lang="">Aalto | B2</h2> | |
| 4342 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" lang=""> | |
| 4343 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 4344 | + </button> | |
| 4345 | + </div> | |
| 4346 | + <div id="modal-body-6473310" class="modal-body px-0 pt-0 pb-2" lang=""> | |
| 4347 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" lang=""> | |
| 4348 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" lang=""> | |
| 4349 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" lang=""> | |
| 4350 | + <li class="list-inline-item" lang="">1 chambre</li> | |
| 4351 | + <li class="list-inline-item" lang="">1 Salle de bains</li> | |
| 4352 | + <li class="list-inline-item" lang="">735 pc</li> | |
| 4353 | + </ul> | |
| 4354 | + </div> | |
| 4355 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" lang=""> | |
| 4356 | + <div class="d-inline-block position-relative" lang=""> | |
| 4357 | + <span class="text-dark font-weight-medium text-2x" lang="">$1,880.00<span class="sr-only" lang="">à</span>-$1,935.00</span><span lang="">/ month</span> | |
| 4358 | + | |
| 4359 | + </div> | |
| 4360 | + </div> | |
| 4361 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" lang=""> | |
| 4362 | + <span lang="">Available On: </span> <span lang="">Disponible maintenant</span> | |
| 4363 | + <a href="/floorplans/aalto-%7c-b2" class="btn btn-primary ml-3 track-apply" aria-label=" Check Availability for Aalto | B2" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto | B2" data-floorplan-size="1" data-floorplan-sqft="735" data-floorplan-price="1880-1935" data-selenium-id="floorplan-13-apply-btn" lang="">vérifier la disponibilité</a> | |
| 4364 | + </div> | |
| 4365 | + </div> | |
| 4366 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6473310-13" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 4367 | + | |
| 4368 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 4369 | + | |
| 4370 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6473310-13-1" tabindex="0" lang=""> | |
| 4371 | + | |
| 4372 | + <div class="item" lang=""> | |
| 4373 | + | |
| 4374 | + <picture> | |
| 4375 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/144684/b2(1).png"> | |
| 4376 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/144684/b2(1).png"> | |
| 4377 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/144684/b2(1).png"> | |
| 4378 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/144684/b2(1).png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/144684/b2(1).png" class="img-fluid" alt="A floor plan of a building with a kitchen, living room, and bathrooms." loading="lazy"> | |
| 4379 | +</picture> | |
| 4380 | + | |
| 4381 | + | |
| 4382 | + </div> | |
| 4383 | + | |
| 4384 | + | |
| 4385 | + </div> | |
| 4386 | + </div> | |
| 4387 | + | |
| 4388 | + | |
| 4389 | + | |
| 4390 | + </section> | |
| 4391 | + </div> | |
| 4392 | + </div> | |
| 4393 | + <div id="modal-content-6473266" class="modal-content" lang=""> | |
| 4394 | + <div class="modal-header" lang=""> | |
| 4395 | + <h2 class="h3 m-0" id="fp-modalLabel6473266" lang="">Aalto II | A6</h2> | |
| 4396 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" lang=""> | |
| 4397 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 4398 | + </button> | |
| 4399 | + </div> | |
| 4400 | + <div id="modal-body-6473266" class="modal-body px-0 pt-0 pb-2" lang=""> | |
| 4401 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" lang=""> | |
| 4402 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" lang=""> | |
| 4403 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" lang=""> | |
| 4404 | + <li class="list-inline-item" lang="">1 chambre</li> | |
| 4405 | + <li class="list-inline-item" lang="">1 Salle de bains</li> | |
| 4406 | + <li class="list-inline-item" lang="">653 pc</li> | |
| 4407 | + </ul> | |
| 4408 | + </div> | |
| 4409 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" lang=""> | |
| 4410 | + <div class="d-inline-block position-relative" lang=""> | |
| 4411 | + <span class="text-dark font-weight-medium text-2x" lang="">$1,885.00</span><span lang="">/ month</span> | |
| 4412 | + | |
| 4413 | + </div> | |
| 4414 | + </div> | |
| 4415 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" lang=""> | |
| 4416 | + <span lang="">Available On: </span> <span lang="">10/09/2026</span> | |
| 4417 | + <a href="/floorplans/aalto-ii-%7c-a6" class="btn btn-primary ml-3 track-apply" aria-label=" Check Availability for Aalto II | A6" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto II | A6" data-floorplan-size="1" data-floorplan-sqft="653" data-floorplan-price="1885" data-selenium-id="floorplan-14-apply-btn" lang="">vérifier la disponibilité</a> | |
| 4418 | + </div> | |
| 4419 | + </div> | |
| 4420 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6473266-14" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 4421 | + | |
| 4422 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 4423 | + | |
| 4424 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6473266-14-1" tabindex="0" lang=""> | |
| 4425 | + | |
| 4426 | + <div class="item" lang=""> | |
| 4427 | + | |
| 4428 | + <picture> | |
| 4429 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/144684/a6.png"> | |
| 4430 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/144684/a6.png"> | |
| 4431 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/144684/a6.png"> | |
| 4432 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/144684/a6.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/144684/a6.png" class="img-fluid" alt="A floor plan of a house with a living room, dining room, kitchen, and bathroom." loading="lazy"> | |
| 4433 | +</picture> | |
| 4434 | + | |
| 4435 | + | |
| 4436 | + </div> | |
| 4437 | + | |
| 4438 | + | |
| 4439 | + </div> | |
| 4440 | + </div> | |
| 4441 | + | |
| 4442 | + | |
| 4443 | + | |
| 4444 | + </section> | |
| 4445 | + </div> | |
| 4446 | + </div> | |
| 4447 | + <div id="modal-content-6473268" class="modal-content" lang=""> | |
| 4448 | + <div class="modal-header" lang=""> | |
| 4449 | + <h2 class="h3 m-0" id="fp-modalLabel6473268" lang="">Aalto II | B1</h2> | |
| 4450 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" lang=""> | |
| 4451 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 4452 | + </button> | |
| 4453 | + </div> | |
| 4454 | + <div id="modal-body-6473268" class="modal-body px-0 pt-0 pb-2" lang=""> | |
| 4455 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" lang=""> | |
| 4456 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" lang=""> | |
| 4457 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" lang=""> | |
| 4458 | + <li class="list-inline-item" lang="">1 chambre</li> | |
| 4459 | + <li class="list-inline-item" lang="">1 Salle de bains</li> | |
| 4460 | + <li class="list-inline-item" lang="">638 pc</li> | |
| 4461 | + </ul> | |
| 4462 | + </div> | |
| 4463 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" lang=""> | |
| 4464 | + <div class="d-inline-block position-relative" lang=""> | |
| 4465 | + <span class="text-dark font-weight-medium text-2x" lang="">$1,930.00<span class="sr-only" lang="">à</span>-$1,945.00</span><span lang="">/ month</span> | |
| 4466 | + | |
| 4467 | + </div> | |
| 4468 | + </div> | |
| 4469 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" lang=""> | |
| 4470 | + <span lang="">Available On: </span> <span lang="">10/10/2026</span> | |
| 4471 | + <a href="/floorplans/aalto-ii-%7c-b1" class="btn btn-primary ml-3 track-apply" aria-label=" Check Availability for Aalto II | B1" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto II | B1" data-floorplan-size="1" data-floorplan-sqft="638" data-floorplan-price="1930-1945" data-selenium-id="floorplan-15-apply-btn" lang="">vérifier la disponibilité</a> | |
| 4472 | + </div> | |
| 4473 | + </div> | |
| 4474 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6473268-15" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 4475 | + | |
| 4476 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 4477 | + | |
| 4478 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6473268-15-1" tabindex="0" lang=""> | |
| 4479 | + | |
| 4480 | + <div class="item" lang=""> | |
| 4481 | + | |
| 4482 | + <picture> | |
| 4483 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/144684/b1.png"> | |
| 4484 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/144684/b1.png"> | |
| 4485 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/144684/b1.png"> | |
| 4486 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/144684/b1.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/144684/b1.png" class="img-fluid" alt="A floor plan of a house with a kitchen, dining room, and living room." loading="lazy"> | |
| 4487 | +</picture> | |
| 4488 | + | |
| 4489 | + | |
| 4490 | + </div> | |
| 4491 | + | |
| 4492 | + | |
| 4493 | + </div> | |
| 4494 | + </div> | |
| 4495 | + | |
| 4496 | + | |
| 4497 | + | |
| 4498 | + </section> | |
| 4499 | + </div> | |
| 4500 | + </div> | |
| 4501 | + <div id="modal-content-6473270" class="modal-content" lang=""> | |
| 4502 | + <div class="modal-header" lang=""> | |
| 4503 | + <h2 class="h3 m-0" id="fp-modalLabel6473270" lang="">Aalto II | B3</h2> | |
| 4504 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" lang=""> | |
| 4505 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 4506 | + </button> | |
| 4507 | + </div> | |
| 4508 | + <div id="modal-body-6473270" class="modal-body px-0 pt-0 pb-2" lang=""> | |
| 4509 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" lang=""> | |
| 4510 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" lang=""> | |
| 4511 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" lang=""> | |
| 4512 | + <li class="list-inline-item" lang="">1 chambre</li> | |
| 4513 | + <li class="list-inline-item" lang="">1 Salle de bains</li> | |
| 4514 | + <li class="list-inline-item" lang="">690 pc</li> | |
| 4515 | + </ul> | |
| 4516 | + </div> | |
| 4517 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" lang=""> | |
| 4518 | + <div class="d-inline-block position-relative" lang=""> | |
| 4519 | + <span class="text-dark font-weight-medium text-2x" lang="">$1,985.00<span class="sr-only" lang="">à</span>-$1,990.00</span><span lang="">/ month</span> | |
| 4520 | + | |
| 4521 | + </div> | |
| 4522 | + </div> | |
| 4523 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" lang=""> | |
| 4524 | + <span lang="">Available On: </span> <span lang="">Disponible maintenant</span> | |
| 4525 | + <a href="/floorplans/aalto-ii-%7c-b3" class="btn btn-primary ml-3 track-apply" aria-label=" Check Availability for Aalto II | B3" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto II | B3" data-floorplan-size="1" data-floorplan-sqft="690" data-floorplan-price="1985-1990" data-selenium-id="floorplan-16-apply-btn" lang="">vérifier la disponibilité</a> | |
| 4526 | + </div> | |
| 4527 | + </div> | |
| 4528 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6473270-16" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 4529 | + | |
| 4530 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 4531 | + | |
| 4532 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6473270-16-1" tabindex="0" lang=""> | |
| 4533 | + | |
| 4534 | + <div class="item" lang=""> | |
| 4535 | + | |
| 4536 | + <picture> | |
| 4537 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/144684/b3.png"> | |
| 4538 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/144684/b3.png"> | |
| 4539 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/144684/b3.png"> | |
| 4540 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/144684/b3.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/144684/b3.png" class="img-fluid" alt="A floor plan of a house with a kitchen, living room, and bathrooms." loading="lazy"> | |
| 4541 | +</picture> | |
| 4542 | + | |
| 4543 | + | |
| 4544 | + </div> | |
| 4545 | + | |
| 4546 | + | |
| 4547 | + </div> | |
| 4548 | + </div> | |
| 4549 | + | |
| 4550 | + | |
| 4551 | + | |
| 4552 | + </section> | |
| 4553 | + </div> | |
| 4554 | + </div> | |
| 4555 | + <div id="modal-content-6473269" class="modal-content" lang=""> | |
| 4556 | + <div class="modal-header" lang=""> | |
| 4557 | + <h2 class="h3 m-0" id="fp-modalLabel6473269" lang="">Aalto II | B2</h2> | |
| 4558 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" lang=""> | |
| 4559 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 4560 | + </button> | |
| 4561 | + </div> | |
| 4562 | + <div id="modal-body-6473269" class="modal-body px-0 pt-0 pb-2" lang=""> | |
| 4563 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" lang=""> | |
| 4564 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" lang=""> | |
| 4565 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" lang=""> | |
| 4566 | + <li class="list-inline-item" lang="">1 chambre</li> | |
| 4567 | + <li class="list-inline-item" lang="">1 Salle de bains</li> | |
| 4568 | + <li class="list-inline-item" lang="">816 pc</li> | |
| 4569 | + </ul> | |
| 4570 | + </div> | |
| 4571 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" lang=""> | |
| 4572 | + <div class="d-inline-block position-relative" lang=""> | |
| 4573 | + <span class="text-dark font-weight-medium text-2x" lang="">$2,085.00</span><span lang="">/ month</span> | |
| 4574 | + | |
| 4575 | + </div> | |
| 4576 | + </div> | |
| 4577 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" lang=""> | |
| 4578 | + <span lang="">Available On: </span> <span lang="">10/10/2026</span> | |
| 4579 | + <a href="/floorplans/aalto-ii-%7c-b2" class="btn btn-primary ml-3 track-apply" aria-label=" Check Availability for Aalto II | B2" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto II | B2" data-floorplan-size="1" data-floorplan-sqft="816" data-floorplan-price="2085" data-selenium-id="floorplan-17-apply-btn" lang="">vérifier la disponibilité</a> | |
| 4580 | + </div> | |
| 4581 | + </div> | |
| 4582 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6473269-17" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 4583 | + | |
| 4584 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 4585 | + | |
| 4586 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6473269-17-1" tabindex="0" lang=""> | |
| 4587 | + | |
| 4588 | + <div class="item" lang=""> | |
| 4589 | + | |
| 4590 | + <picture> | |
| 4591 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/144684/b2.png"> | |
| 4592 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/144684/b2.png"> | |
| 4593 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/144684/b2.png"> | |
| 4594 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/144684/b2.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/144684/b2.png" class="img-fluid" alt="A floor plan of a house with a kitchen, living room, dining room, and bathroom." loading="lazy"> | |
| 4595 | +</picture> | |
| 4596 | + | |
| 4597 | + | |
| 4598 | + </div> | |
| 4599 | + | |
| 4600 | + | |
| 4601 | + </div> | |
| 4602 | + </div> | |
| 4603 | + | |
| 4604 | + | |
| 4605 | + | |
| 4606 | + </section> | |
| 4607 | + </div> | |
| 4608 | + </div> | |
| 4609 | + <div id="modal-content-6473317" class="modal-content" lang=""> | |
| 4610 | + <div class="modal-header" lang=""> | |
| 4611 | + <h2 class="h3 m-0" id="fp-modalLabel6473317" lang="">Aalto | C7</h2> | |
| 4612 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" lang=""> | |
| 4613 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 4614 | + </button> | |
| 4615 | + </div> | |
| 4616 | + <div id="modal-body-6473317" class="modal-body px-0 pt-0 pb-2" lang=""> | |
| 4617 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" lang=""> | |
| 4618 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" lang=""> | |
| 4619 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" lang=""> | |
| 4620 | + <li class="list-inline-item" lang="">2 Chambres</li> | |
| 4621 | + <li class="list-inline-item" lang="">2 Salles de bains</li> | |
| 4622 | + <li class="list-inline-item" lang="">844 pc</li> | |
| 4623 | + </ul> | |
| 4624 | + </div> | |
| 4625 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" lang=""> | |
| 4626 | + <div class="d-inline-block position-relative" lang=""> | |
| 4627 | + <span class="text-dark font-weight-medium text-2x" lang="">$2,145.00<span class="sr-only" lang="">à</span>-$2,160.00</span><span lang="">/ month</span> | |
| 4628 | + | |
| 4629 | + </div> | |
| 4630 | + </div> | |
| 4631 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" lang=""> | |
| 4632 | + <span lang="">Available On: </span> <span lang="">Disponible maintenant</span> | |
| 4633 | + <a href="/floorplans/aalto-%7c-c7" class="btn btn-primary ml-3 track-apply" aria-label=" Check Availability for Aalto | C7" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto | C7" data-floorplan-size="2" data-floorplan-sqft="844" data-floorplan-price="2145-2160" data-selenium-id="floorplan-18-apply-btn" lang="">vérifier la disponibilité</a> | |
| 4634 | + </div> | |
| 4635 | + </div> | |
| 4636 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6473317-18" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 4637 | + | |
| 4638 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 4639 | + | |
| 4640 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6473317-18-1" tabindex="0" lang=""> | |
| 4641 | + | |
| 4642 | + <div class="item" lang=""> | |
| 4643 | + | |
| 4644 | + <picture> | |
| 4645 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/144684/c7(1).png"> | |
| 4646 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/144684/c7(1).png"> | |
| 4647 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/144684/c7(1).png"> | |
| 4648 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/144684/c7(1).png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/144684/c7(1).png" class="img-fluid" alt="A floor plan of a building with a river running through it." loading="lazy"> | |
| 4649 | +</picture> | |
| 4650 | + | |
| 4651 | + | |
| 4652 | + </div> | |
| 4653 | + | |
| 4654 | + | |
| 4655 | + </div> | |
| 4656 | + </div> | |
| 4657 | + | |
| 4658 | + | |
| 4659 | + | |
| 4660 | + </section> | |
| 4661 | + </div> | |
| 4662 | + </div> | |
| 4663 | + <div id="modal-content-6473276" class="modal-content" lang=""> | |
| 4664 | + <div class="modal-header" lang=""> | |
| 4665 | + <h2 class="h3 m-0" id="fp-modalLabel6473276" lang="">Aalto II | C3</h2> | |
| 4666 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" lang=""> | |
| 4667 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 4668 | + </button> | |
| 4669 | + </div> | |
| 4670 | + <div id="modal-body-6473276" class="modal-body px-0 pt-0 pb-2" lang=""> | |
| 4671 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" lang=""> | |
| 4672 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" lang=""> | |
| 4673 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" lang=""> | |
| 4674 | + <li class="list-inline-item" lang="">2 Chambres</li> | |
| 4675 | + <li class="list-inline-item" lang="">2 Salles de bains</li> | |
| 4676 | + <li class="list-inline-item" lang="">875 pc</li> | |
| 4677 | + </ul> | |
| 4678 | + </div> | |
| 4679 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" lang=""> | |
| 4680 | + <div class="d-inline-block position-relative" lang=""> | |
| 4681 | + <span class="text-dark font-weight-medium text-2x" lang="">$2,230.00<span class="sr-only" lang="">à</span>-$2,295.00</span><span lang="">/ month</span> | |
| 4682 | + | |
| 4683 | + </div> | |
| 4684 | + </div> | |
| 4685 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" lang=""> | |
| 4686 | + <span lang="">Available On: </span> <span lang="">Disponible maintenant</span> | |
| 4687 | + <a href="/floorplans/aalto-ii-%7c-c3" class="btn btn-primary ml-3 track-apply" aria-label=" Check Availability for Aalto II | C3" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto II | C3" data-floorplan-size="2" data-floorplan-sqft="875" data-floorplan-price="2230-2295" data-selenium-id="floorplan-19-apply-btn" lang="">vérifier la disponibilité</a> | |
| 4688 | + </div> | |
| 4689 | + </div> | |
| 4690 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6473276-19" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 4691 | + | |
| 4692 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 4693 | + | |
| 4694 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6473276-19-1" tabindex="0" lang=""> | |
| 4695 | + | |
| 4696 | + <div class="item" lang=""> | |
| 4697 | + | |
| 4698 | + <picture> | |
| 4699 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/144684/c3.png"> | |
| 4700 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/144684/c3.png"> | |
| 4701 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/144684/c3.png"> | |
| 4702 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/144684/c3.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/144684/c3.png" class="img-fluid" alt="A floor plan of a house with a kitchen, living room, and bathrooms." loading="lazy"> | |
| 4703 | +</picture> | |
| 4704 | + | |
| 4705 | + | |
| 4706 | + </div> | |
| 4707 | + | |
| 4708 | + | |
| 4709 | + </div> | |
| 4710 | + </div> | |
| 4711 | + | |
| 4712 | + | |
| 4713 | + | |
| 4714 | + </section> | |
| 4715 | + </div> | |
| 4716 | + </div> | |
| 4717 | + <div id="modal-content-6473275" class="modal-content" lang=""> | |
| 4718 | + <div class="modal-header" lang=""> | |
| 4719 | + <h2 class="h3 m-0" id="fp-modalLabel6473275" lang="">Aalto II | C2</h2> | |
| 4720 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" lang=""> | |
| 4721 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 4722 | + </button> | |
| 4723 | + </div> | |
| 4724 | + <div id="modal-body-6473275" class="modal-body px-0 pt-0 pb-2" lang=""> | |
| 4725 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" lang=""> | |
| 4726 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" lang=""> | |
| 4727 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" lang=""> | |
| 4728 | + <li class="list-inline-item" lang="">2 Chambres</li> | |
| 4729 | + <li class="list-inline-item" lang="">2 Salles de bains</li> | |
| 4730 | + <li class="list-inline-item" lang="">875 pc</li> | |
| 4731 | + </ul> | |
| 4732 | + </div> | |
| 4733 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" lang=""> | |
| 4734 | + <div class="d-inline-block position-relative" lang=""> | |
| 4735 | + <span class="text-dark font-weight-medium text-2x" lang="">$2,310.00</span><span lang="">/ month</span> | |
| 4736 | + | |
| 4737 | + </div> | |
| 4738 | + </div> | |
| 4739 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" lang=""> | |
| 4740 | + <span lang="">Available On: </span> <span lang="">Disponible maintenant</span> | |
| 4741 | + <a href="/floorplans/aalto-ii-%7c-c2" class="btn btn-primary ml-3 track-apply" aria-label=" Check Availability for Aalto II | C2" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto II | C2" data-floorplan-size="2" data-floorplan-sqft="875" data-floorplan-price="2310" data-selenium-id="floorplan-20-apply-btn" lang="">vérifier la disponibilité</a> | |
| 4742 | + </div> | |
| 4743 | + </div> | |
| 4744 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6473275-20" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 4745 | + | |
| 4746 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 4747 | + | |
| 4748 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6473275-20-1" tabindex="0" lang=""> | |
| 4749 | + | |
| 4750 | + <div class="item" lang=""> | |
| 4751 | + | |
| 4752 | + <picture> | |
| 4753 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/144684/c2.png"> | |
| 4754 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/144684/c2.png"> | |
| 4755 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/144684/c2.png"> | |
| 4756 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/144684/c2.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/144684/c2.png" class="img-fluid" alt="A floor plan of a residential building with a kitchen, living room, and two bedrooms." loading="lazy"> | |
| 4757 | +</picture> | |
| 4758 | + | |
| 4759 | + | |
| 4760 | + </div> | |
| 4761 | + | |
| 4762 | + | |
| 4763 | + </div> | |
| 4764 | + </div> | |
| 4765 | + | |
| 4766 | + | |
| 4767 | + | |
| 4768 | + </section> | |
| 4769 | + </div> | |
| 4770 | + </div> | |
| 4771 | + <div id="modal-content-6473273" class="modal-content" lang=""> | |
| 4772 | + <div class="modal-header" lang=""> | |
| 4773 | + <h2 class="h3 m-0" id="fp-modalLabel6473273" lang="">Aalto II | C1</h2> | |
| 4774 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" lang=""> | |
| 4775 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 4776 | + </button> | |
| 4777 | + </div> | |
| 4778 | + <div id="modal-body-6473273" class="modal-body px-0 pt-0 pb-2" lang=""> | |
| 4779 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" lang=""> | |
| 4780 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" lang=""> | |
| 4781 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" lang=""> | |
| 4782 | + <li class="list-inline-item" lang="">2 Chambres</li> | |
| 4783 | + <li class="list-inline-item" lang="">2 Salles de bains</li> | |
| 4784 | + <li class="list-inline-item" lang="">987 pc</li> | |
| 4785 | + </ul> | |
| 4786 | + </div> | |
| 4787 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" lang=""> | |
| 4788 | + <div class="d-inline-block position-relative" lang=""> | |
| 4789 | + <span class="text-dark font-weight-medium text-2x" lang="">$2,345.00</span><span lang="">/ month</span> | |
| 4790 | + | |
| 4791 | + </div> | |
| 4792 | + </div> | |
| 4793 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" lang=""> | |
| 4794 | + <span lang="">Available On: </span> <span lang="">Disponible maintenant</span> | |
| 4795 | + <a href="/floorplans/aalto-ii-%7c-c1" class="btn btn-primary ml-3 track-apply" aria-label=" Check Availability for Aalto II | C1" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto II | C1" data-floorplan-size="2" data-floorplan-sqft="987" data-floorplan-price="2345" data-selenium-id="floorplan-21-apply-btn" lang="">vérifier la disponibilité</a> | |
| 4796 | + </div> | |
| 4797 | + </div> | |
| 4798 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6473273-21" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 4799 | + | |
| 4800 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 4801 | + | |
| 4802 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6473273-21-1" tabindex="0" lang=""> | |
| 4803 | + | |
| 4804 | + <div class="item" lang=""> | |
| 4805 | + | |
| 4806 | + <picture> | |
| 4807 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/144684/c1.png"> | |
| 4808 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/144684/c1.png"> | |
| 4809 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/144684/c1.png"> | |
| 4810 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/144684/c1.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/144684/c1.png" class="img-fluid" alt="A floor plan of a house with a kitchen, living room, and bathrooms." loading="lazy"> | |
| 4811 | +</picture> | |
| 4812 | + | |
| 4813 | + | |
| 4814 | + </div> | |
| 4815 | + | |
| 4816 | + | |
| 4817 | + </div> | |
| 4818 | + </div> | |
| 4819 | + | |
| 4820 | + | |
| 4821 | + | |
| 4822 | + </section> | |
| 4823 | + </div> | |
| 4824 | + </div> | |
| 4825 | + <div id="modal-content-6473279" class="modal-content" lang=""> | |
| 4826 | + <div class="modal-header" lang=""> | |
| 4827 | + <h2 class="h3 m-0" id="fp-modalLabel6473279" lang="">Aalto II | C6</h2> | |
| 4828 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" lang=""> | |
| 4829 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 4830 | + </button> | |
| 4831 | + </div> | |
| 4832 | + <div id="modal-body-6473279" class="modal-body px-0 pt-0 pb-2" lang=""> | |
| 4833 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" lang=""> | |
| 4834 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" lang=""> | |
| 4835 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" lang=""> | |
| 4836 | + <li class="list-inline-item" lang="">2 Chambres</li> | |
| 4837 | + <li class="list-inline-item" lang="">2 Salles de bains</li> | |
| 4838 | + <li class="list-inline-item" lang="">995 pc</li> | |
| 4839 | + </ul> | |
| 4840 | + </div> | |
| 4841 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" lang=""> | |
| 4842 | + <div class="d-inline-block position-relative" lang=""> | |
| 4843 | + <span class="text-dark font-weight-medium text-2x" lang="">$2,395.00</span><span lang="">/ month</span> | |
| 4844 | + | |
| 4845 | + </div> | |
| 4846 | + </div> | |
| 4847 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" lang=""> | |
| 4848 | + <span lang="">Available On: </span> <span lang="">10/10/2026</span> | |
| 4849 | + <a href="/floorplans/aalto-ii-%7c-c6" class="btn btn-primary ml-3 track-apply" aria-label=" Check Availability for Aalto II | C6" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto II | C6" data-floorplan-size="2" data-floorplan-sqft="995" data-floorplan-price="2395" data-selenium-id="floorplan-22-apply-btn" lang="">vérifier la disponibilité</a> | |
| 4850 | + </div> | |
| 4851 | + </div> | |
| 4852 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6473279-22" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 4853 | + | |
| 4854 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 4855 | + | |
| 4856 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6473279-22-1" tabindex="0" lang=""> | |
| 4857 | + | |
| 4858 | + <div class="item" lang=""> | |
| 4859 | + | |
| 4860 | + <picture> | |
| 4861 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/144684/c6.png"> | |
| 4862 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/144684/c6.png"> | |
| 4863 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/144684/c6.png"> | |
| 4864 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/144684/c6.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/144684/c6.png" class="img-fluid" alt="A floor plan of a house with a kitchen, living room, and bathrooms." loading="lazy"> | |
| 4865 | +</picture> | |
| 4866 | + | |
| 4867 | + | |
| 4868 | + </div> | |
| 4869 | + | |
| 4870 | + | |
| 4871 | + </div> | |
| 4872 | + </div> | |
| 4873 | + | |
| 4874 | + | |
| 4875 | + | |
| 4876 | + </section> | |
| 4877 | + </div> | |
| 4878 | + </div> | |
| 4879 | + <div id="modal-content-6473283" class="modal-content" lang=""> | |
| 4880 | + <div class="modal-header" lang=""> | |
| 4881 | + <h2 class="h3 m-0" id="fp-modalLabel6473283" lang="">Aalto II | D1</h2> | |
| 4882 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" lang=""> | |
| 4883 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 4884 | + </button> | |
| 4885 | + </div> | |
| 4886 | + <div id="modal-body-6473283" class="modal-body px-0 pt-0 pb-2" lang=""> | |
| 4887 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" lang=""> | |
| 4888 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" lang=""> | |
| 4889 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" lang=""> | |
| 4890 | + <li class="list-inline-item" lang="">2 Chambres</li> | |
| 4891 | + <li class="list-inline-item" lang="">2 Salles de bains</li> | |
| 4892 | + <li class="list-inline-item" lang="">1,068 pc</li> | |
| 4893 | + </ul> | |
| 4894 | + </div> | |
| 4895 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" lang=""> | |
| 4896 | + <div class="d-inline-block position-relative" lang=""> | |
| 4897 | + <span class="text-dark font-weight-medium text-2x" lang="">$2,485.00</span><span lang="">/ month</span> | |
| 4898 | + | |
| 4899 | + </div> | |
| 4900 | + </div> | |
| 4901 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" lang=""> | |
| 4902 | + <span lang="">Available On: </span> <span lang="">10/10/2026</span> | |
| 4903 | + <a href="/floorplans/aalto-ii-%7c-d1" class="btn btn-primary ml-3 track-apply" aria-label=" Check Availability for Aalto II | D1" name="applynow" data-leasingtype="conventional" data-floorplan-name="Aalto II | D1" data-floorplan-size="2" data-floorplan-sqft="1068" data-floorplan-price="2485" data-selenium-id="floorplan-23-apply-btn" lang="">vérifier la disponibilité</a> | |
| 4904 | + </div> | |
| 4905 | + </div> | |
| 4906 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6473283-23" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 4907 | + | |
| 4908 | + <div class="carousel-inner" aria-live="assertive" lang=""> | |
| 4909 | + | |
| 4910 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6473283-23-1" tabindex="0" lang=""> | |
| 4911 | + | |
| 4912 | + <div class="item" lang=""> | |
| 4913 | + | |
| 4914 | + <picture> | |
| 4915 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/144684/d1.png"> | |
| 4916 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/144684/d1.png"> | |
| 4917 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/144684/d1.png"> | |
| 4918 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/144684/d1.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/144684/d1.png" class="img-fluid" alt="A floor plan of a house with a living room, dining room, kitchen, and two bedrooms." loading="lazy"> | |
| 4919 | +</picture> | |
| 4920 | + | |
| 4921 | + | |
| 4922 | + </div> | |
| 4923 | + | |
| 4924 | + | |
| 4925 | + </div> | |
| 4926 | + </div> | |
| 4927 | + | |
| 4928 | + | |
| 4929 | + | |
| 4930 | + </section> | |
| 4931 | + </div> | |
| 4932 | + </div> | |
| 4933 | + | |
| 4934 | + </div> | |
| 4935 | +</div> | |
| 4936 | + <!-- end modal --> | |
| 4937 | + <!-- Required JavaScript for modal functionality --> | |
| 4938 | + | |
| 4939 | + | |
| 4940 | + <!-- Smart Nudge Widgets JavaScript --> | |
| 4941 | + | |
| 4942 | + </div> | |
| 4943 | + </div> | |
| 4944 | + <div class="tab-pane fade" id="mapView" lang="">Vue cartographique</div> | |
| 4945 | + </div> | |
| 4946 | +</div> | |
| 4947 | +<!-- Optimized Floor Plans Layout End --> | |
| 4948 | + | |
| 4949 | + | |
| 4950 | + | |
| 4951 | + | |
| 4952 | + | |
| 4953 | + | |
| 4954 | + | |
| 4955 | + </div> | |
| 4956 | + </div> | |
| 4957 | + </div> | |
| 4958 | + <div class="row" lang=""> | |
| 4959 | + <div class="col-12 mt-3" data-selenium-id="FloorplansBottomNarrative" lang=""> | |
| 4960 | + | |
| 4961 | + | |
| 4962 | + | |
| 4963 | + | |
| 4964 | + </div> | |
| 4965 | + </div> | |
| 4966 | + <div class="modal fade" id="myContactModal" role="dialog" aria-labelledby="myContactModalTitle" aria-modal="true" aria-hidden="true" lang=""> | |
| 4967 | + <div class="modal-dialog" lang=""> | |
| 4968 | + <div class="modal-content" lang=""> | |
| 4969 | + <div class="modal-header" lang=""> | |
| 4970 | + <h2 id="myContactModalTitle" class="h3 m-0" lang="">Contacter la propriété</h2> | |
| 4971 | + <button type="button" class="close" data-dismiss="modal" aria-label="close dialog" lang=""><svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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></button> | |
| 4972 | + </div> | |
| 4973 | + <!-- Modal body --> | |
| 4974 | + <div id="modalbodycontact" class="modal-body" lang=""> | |
| 4975 | + </div> | |
| 4976 | + </div> | |
| 4977 | + </div> | |
| 4978 | + </div> | |
| 4979 | + <div class="modal fade" id="PreQualify" role="dialog" aria-labelledby="PreQualifyLabel" aria-hidden="true" lang=""> | |
| 4980 | + <div class="modal-dialog modal-lg" lang=""> | |
| 4981 | + <div class="modal-content" lang=""> | |
| 4982 | + <div class="modal-header" lang=""> | |
| 4983 | + <h2 class="h3 m-0" id="PreQualifyLabel" lang="">Pre-Qualify Now</h2> | |
| 4984 | + <button type="button" class="close" data-dismiss="modal" aria-label="close dialog" lang=""> | |
| 4985 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 4986 | + </button> | |
| 4987 | + </div> | |
| 4988 | + <div id="PrequalBody" class="modal-body" lang=""> | |
| 4989 | + | |
| 4990 | + <div class="modal-dialog modal-lg" role="document" lang=""> | |
| 4991 | + <div class="modal-content" lang=""> | |
| 4992 | + <div class="modal-body" lang=""> | |
| 4993 | + </div> | |
| 4994 | + </div> | |
| 4995 | + </div> | |
| 4996 | + | |
| 4997 | + </div> | |
| 4998 | + </div> | |
| 4999 | + </div> | |
| 5000 | + </div> | |
| 5001 | + <div class="modal fade true-cost-cal " id="myLeaseCostModal" role="dialog" aria-labelledby="leasecostmodalid" aria-hidden="true" lang=""> | |
| 5002 | + <div class="modal-dialog modal-fullscreen" lang=""> | |
| 5003 | + <div class="modal-content modal-calc-content" lang=""> | |
| 5004 | + <div class="modal-header" lang=""> | |
| 5005 | + <h3 class="modal-title font-weight-bold" id="leasecostmodalid" lang=""> | |
| 5006 | + | |
| 5007 | +Lease Cost Calculator Result | |
| 5008 | +</h3> | |
| 5009 | + <button type="button" class="close" data-dismiss="modal" aria-label="close dialog" lang=""><svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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></button> | |
| 5010 | + </div> | |
| 5011 | + <!-- Modal body --> | |
| 5012 | + <div id="myLeaseCostModalBody" class="modal-body modal-calc-body pt-0" lang=""> | |
| 5013 | + </div> | |
| 5014 | + </div> | |
| 5015 | + </div> | |
| 5016 | + </div> | |
| 5017 | + <!-- Video modal --> | |
| 5018 | +<div class="modal fade modal-dialog-gallery modal-dialog-gallery-video" id="floorplans-video-modal" role="dialog" aria-modal="true" aria-hidden="true" aria-labelledby="floorplans-video-modal-header" lang=""> | |
| 5019 | + <div class="modal-dialog modal-xl" lang=""> | |
| 5020 | + <div class="modal-content" lang=""> | |
| 5021 | + <div class="modal-header" lang=""> | |
| 5022 | + <h2 class="h3 m-0" id="floorplans-video-modal-header" lang="">Floor Plan Video</h2> | |
| 5023 | + <button type="button" class="close" data-dismiss="modal" aria-label="close dialog" lang=""><svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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></button> | |
| 5024 | + </div> | |
| 5025 | + <div id="floorplans-video-modal-body" class="modal-body" lang=""> | |
| 5026 | + <div class="embed-container" lang=""> | |
| 5027 | + <div id="floorplans-video-embed" class="embed-responsive embed-responsive-16by9 embed-body" lang=""> | |
| 5028 | + <!-- embedded video loaded here --> | |
| 5029 | + </div> | |
| 5030 | + </div> | |
| 5031 | + </div> | |
| 5032 | + </div> | |
| 5033 | + </div> | |
| 5034 | +</div> | |
| 5035 | + <!-- 3D Tour modal --> | |
| 5036 | +<div class="modal fade" id="floorplans-3dtour-modal" role="dialog" aria-modal="true" aria-hidden="true" aria-labelledby="floorplans-3dtour-modal-header" lang=""> | |
| 5037 | + <div class="modal-dialog modal-xl" lang=""> | |
| 5038 | + <div class="modal-content" lang=""> | |
| 5039 | + <div class="modal-header" lang=""> | |
| 5040 | + <h2 class="h3 m-0" id="floorplans-3dtour-modal-header" lang="">3D Tour</h2> | |
| 5041 | + <button type="button" class="close" data-dismiss="modal" aria-label="close dialog" lang=""><svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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></button> | |
| 5042 | + </div> | |
| 5043 | + <div id="floorplans-3dtour-modal-body" class="modal-body" lang=""> | |
| 5044 | + <div class="embed-container" lang=""> | |
| 5045 | + <div id="floorplans-3dtour-embed" class="embed-responsive embed-body" lang=""> | |
| 5046 | + <!-- embedded 3D tour loaded here --> | |
| 5047 | + </div> | |
| 5048 | + </div> | |
| 5049 | + </div> | |
| 5050 | + </div> | |
| 5051 | + </div> | |
| 5052 | +</div> <!--Inclusive fees modal--> | |
| 5053 | + | |
| 5054 | + | |
| 5055 | + | |
| 5056 | + | |
| 5057 | + | |
| 5058 | + | |
| 5059 | + | |
| 5060 | + <script> | |
| 5061 | + function GASubmitTrack(propertyName, calledFrom) { | |
| 5062 | + //add form type to ga4 cookie | |
| 5063 | + if (false ) { | |
| 5064 | + var ga4Cookie = ysi.cookie.read("ga4cookie"); | |
| 5065 | + if (ga4Cookie) { | |
| 5066 | + var jsonObj = JSON.parse(ga4Cookie); | |
| 5067 | + jsonObj.formType = calledFrom; | |
| 5068 | + ysi.cookie.create('ga4cookie', JSON.stringify(jsonObj)); | |
| 5069 | + | |
| 5070 | + } | |
| 5071 | + } | |
| 5072 | + if (typeof gtag != 'undefined') { | |
| 5073 | + var text = ""; | |
| 5074 | + switch (calledFrom) { | |
| 5075 | + case "availabilityalert": | |
| 5076 | + text = "Off"; | |
| 5077 | + break; | |
| 5078 | + case "scheduletour": | |
| 5079 | + text = "Schedule a Tour"; | |
| 5080 | + break; | |
| 5081 | + default: | |
| 5082 | + text = "Contact Us Submit"; | |
| 5083 | + break; | |
| 5084 | + } | |
| 5085 | + gtag('event', 'Contact Us', { 'event_category': 'Contact Us', 'event_action': text, 'event_label': propertyName }); | |
| 5086 | + gtag('rc.send', 'Contact Us', { 'event_category': 'Contact Us', 'event_action': text, 'event_label': propertyName }); | |
| 5087 | + } | |
| 5088 | + } | |
| 5089 | + | |
| 5090 | + </script> | |
| 5091 | + | |
| 5092 | + </div></div><div class="row" lang=""><div class="justify-content-start align-items-stretch flex-column d-flex text-left pt-4 col-12 col-lg-12" lang=""> | |
| 5093 | + | |
| 5094 | + <style>ul.ysi-socialmedia-popover-icons li a,ul.ysi-socialmedia-popover-icons p a,.ysi-socialmedia-widget li a,.ysi-socialmedia-widget p a{margin:1px 0}ul.ysi-socialmedia-icons li a,ul.ysi-socialmedia-icons p a,.ysi-socialmedia-widget li a,.ysi-socialmedia-widget p a{margin:0}ul.ysi-socialmedia-icons,ul.ysi-socialmedia-popover-icons,.ysi-socialmedia-widget{margin-bottom:0}ul.ysi-socialmedia-icons li a,ul.ysi-socialmedia-icons p a,ul.ysi-socialmedia-popover-icons li a,ul.ysi-socialmedia-popover-icons p a,.ysi-socialmedia-widget li a,.ysi-socialmedia-widget p a{width:40px;height:40px;display:inline-block;line-height:2.2;color:#fff;font-size:1.2rem;text-align:center}ul.ysi-socialmedia-icons li a.facebook_icon,ul.ysi-socialmedia-icons p a.facebook_icon,ul.ysi-socialmedia-popover-icons li a.facebook_icon,ul.ysi-socialmedia-popover-icons p a.facebook_icon,.ysi-socialmedia-widget li a.facebook_icon,.ysi-socialmedia-widget p a.facebook_icon{background:#3b5998;-moz-transition:background-color 1s 0.001s,color 1s;-o-transition:background-color 1s 0.001s,color 1s;-webkit-transition:background-color 1s 0.001s,color 1s;transition:background-color 1s 0.001s,color 1s}ul.ysi-socialmedia-icons li a.facebook_icon:hover,ul.ysi-socialmedia-icons p a.facebook_icon:hover,ul.ysi-socialmedia-popover-icons li a.facebook_icon:hover,ul.ysi-socialmedia-popover-icons p a.facebook_icon:hover,.ysi-socialmedia-widget li a.facebook_icon:hover,.ysi-socialmedia-widget p a.facebook_icon:hover{background:#4565ab}ul.ysi-socialmedia-icons li a.twitter_icon,ul.ysi-socialmedia-icons p a.twitter_icon,ul.ysi-socialmedia-popover-icons li a.twitter_icon,ul.ysi-socialmedia-popover-icons p a.twitter_icon,.ysi-socialmedia-widget li a.twitter_icon,.ysi-socialmedia-widget p a.twitter_icon{background:#2CAAE1;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.twitter_icon:hover,ul.ysi-socialmedia-icons p a.twitter_icon:hover,ul.ysi-socialmedia-popover-icons li a.twitter_icon:hover,ul.ysi-socialmedia-popover-icons p a.twitter_icon:hover,.ysi-socialmedia-widget li a.twitter_icon:hover,.ysi-socialmedia-widget p a.twitter_icon:hover{background:#2fb4ed}ul.ysi-socialmedia-icons li a.pinterest_icon,ul.ysi-socialmedia-icons p a.pinterest_icon,ul.ysi-socialmedia-popover-icons li a.pinterest_icon,ul.ysi-socialmedia-popover-icons p a.pinterest_icon,.ysi-socialmedia-widget li a.pinterest_icon,.ysi-socialmedia-widget p a.pinterest_icon{background:#C13238;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.pinterest_icon:hover,ul.ysi-socialmedia-icons p a.pinterest_icon:hover,ul.ysi-socialmedia-popover-icons li a.pinterest_icon:hover,ul.ysi-socialmedia-popover-icons p a.pinterest_icon:hover,.ysi-socialmedia-widget li a.pinterest_icon:hover,.ysi-socialmedia-widget p a.pinterest_icon:hover{background:#cc353a}ul.ysi-socialmedia-icons li a.instagram_icon,ul.ysi-socialmedia-icons p a.instagram_icon,ul.ysi-socialmedia-popover-icons li a.instagram_icon,ul.ysi-socialmedia-popover-icons p a.instagram_icon,.ysi-socialmedia-widget li a.instagram_icon,.ysi-socialmedia-widget p a.instagram_icon{background:#49709b;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.instagram_icon:hover,ul.ysi-socialmedia-icons p a.instagram_icon:hover,ul.ysi-socialmedia-popover-icons li a.instagram_icon:hover,ul.ysi-socialmedia-popover-icons p a.instagram_icon:hover,.ysi-socialmedia-widget li a.instagram_icon:hover,.ysi-socialmedia-widget p a.instagram_icon:hover{background:#608bba}ul.ysi-socialmedia-icons li a.linkedin_icon,ul.ysi-socialmedia-icons p a.linkedin_icon,ul.ysi-socialmedia-popover-icons li a.linkedin_icon,ul.ysi-socialmedia-popover-icons p a.linkedin_icon,.ysi-socialmedia-widget li a.linkedin_icon,.ysi-socialmedia-widget p a.linkedin_icon{background:#005a87;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.linkedin_icon:hover,ul.ysi-socialmedia-icons p a.linkedin_icon:hover,ul.ysi-socialmedia-popover-icons li a.linkedin_icon:hover,ul.ysi-socialmedia-popover-icons p a.linkedin_icon:hover,.ysi-socialmedia-widget li a.linkedin_icon:hover,.ysi-socialmedia-widget p a.linkedin_icon:hover{background:#0472a5}ul.ysi-socialmedia-icons li a.youtube_icon,ul.ysi-socialmedia-icons p a.youtube_icon,ul.ysi-socialmedia-popover-icons li a.youtube_icon,ul.ysi-socialmedia-popover-icons p a.youtube_icon,.ysi-socialmedia-widget li a.youtube_icon,.ysi-socialmedia-widget p a.youtube_icon{background:#c9322b;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.youtube_icon:hover,ul.ysi-socialmedia-icons p a.youtube_icon:hover,ul.ysi-socialmedia-popover-icons li a.youtube_icon:hover,ul.ysi-socialmedia-popover-icons p a.youtube_icon:hover,.ysi-socialmedia-widget li a.youtube_icon:hover,.ysi-socialmedia-widget p a.youtube_icon:hover{background:#dd3830}ul.ysi-socialmedia-icons li a.yelp_icon,ul.ysi-socialmedia-icons p a.yelp_icon,ul.ysi-socialmedia-popover-icons li a.yelp_icon,ul.ysi-socialmedia-popover-icons p a.yelp_icon,.ysi-socialmedia-widget li a.yelp_icon,.ysi-socialmedia-widget p a.yelp_icon{background:#DE3C43;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.yelp_icon:hover,ul.ysi-socialmedia-icons p a.yelp_icon:hover,ul.ysi-socialmedia-popover-icons li a.yelp_icon:hover,ul.ysi-socialmedia-popover-icons p a.yelp_icon:hover,.ysi-socialmedia-widget li a.yelp_icon:hover,.ysi-socialmedia-widget p a.yelp_icon:hover{background:#ea3f45}ul.ysi-socialmedia-icons li a.snapchat_icon,ul.ysi-socialmedia-icons p a.snapchat_icon,ul.ysi-socialmedia-popover-icons li a.snapchat_icon,ul.ysi-socialmedia-popover-icons p a.snapchat_icon,.ysi-socialmedia-widget li a.snapchat_icon,.ysi-socialmedia-widget p a.snapchat_icon{background:#E0E237;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.snapchat_icon:hover,ul.ysi-socialmedia-icons p a.snapchat_icon:hover,ul.ysi-socialmedia-popover-icons li a.snapchat_icon:hover,ul.ysi-socialmedia-popover-icons p a.snapchat_icon:hover,.ysi-socialmedia-widget li a.snapchat_icon:hover,.ysi-socialmedia-widget p a.snapchat_icon:hover{background:#efef39}ul.ysi-socialmedia-icons li a.more-social-icons,ul.ysi-socialmedia-icons p a.more-social-icons,ul.ysi-socialmedia-popover-icons li a.more-social-icons,ul.ysi-socialmedia-popover-icons p a.more-social-icons,.ysi-socialmedia-widget li a.more-social-icons,.ysi-socialmedia-widget p a.more-social-icons{background:#6e6e6e;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.more-social-icons:hover,ul.ysi-socialmedia-icons p a.more-social-icons:hover,ul.ysi-socialmedia-popover-icons li a.more-social-icons:hover,ul.ysi-socialmedia-popover-icons p a.more-social-icons:hover,.ysi-socialmedia-widget li a.more-social-icons:hover,.ysi-socialmedia-widget p a.more-social-icons:hover{background:#888888}.ysi-socialmedia-widget ul{padding-left:0;list-style:none}.ysi-socialmedia-widget p{margin-bottom:0}.ysi-socialmedia-widget.icon-white ul li a,.ysi-socialmedia-widget.icon-white p a{color:#fff;background:none}.ysi-socialmedia-widget.icon-white ul li a:hover,.ysi-socialmedia-widget.icon-white p a:hover{color:#f8f9fa;background:none}.ysi-socialmedia-widget.icon-light ul li a,.ysi-socialmedia-widget.icon-light p a{color:#f8f9fa;background:none}.ysi-socialmedia-widget.icon-light ul li a:hover,.ysi-socialmedia-widget.icon-light p a:hover{color:#fff;background:none}.ysi-socialmedia-widget.icon-dark ul li a,.ysi-socialmedia-widget.icon-dark p a{color:#343a40;background:none}.ysi-socialmedia-widget.icon-dark ul li a:hover,.ysi-socialmedia-widget.icon-dark p a:hover{color:#0056B3;background:none}.ysi-socialmedia-widget.icon-primary ul li a,.ysi-socialmedia-widget.icon-primary p a{color:#191f31;background:none}.ysi-socialmedia-widget.icon-primary ul li a:hover,.ysi-socialmedia-widget.icon-primary p a:hover{color:#191f31;background:none}.ysi-socialmedia-widget.icon-secondary ul li a,.ysi-socialmedia-widget.icon-secondary p a{color:#fff;background:none}.ysi-socialmedia-widget.icon-secondary ul li a:hover,.ysi-socialmedia-widget.icon-secondary p a:hover{color:#fff;background:none}.ysi-socialmedia-widget.background-light ul li a,.ysi-socialmedia-widget.background-light p a{background-color:#f8f9fa}.ysi-socialmedia-widget.background-light ul li a:hover,.ysi-socialmedia-widget.background-light p a:hover{background-color:#f8f9fa}.ysi-socialmedia-widget.background-dark ul li a,.ysi-socialmedia-widget.background-dark p a{background-color:#000}.ysi-socialmedia-widget.background-dark ul li a:hover,.ysi-socialmedia-widget.background-dark p a:hover{background-color:#000}.ysi-socialmedia-widget.background-primary ul li a,.ysi-socialmedia-widget.background-primary p a{background-color:#191f31}.ysi-socialmedia-widget.background-primary ul li a:hover,.ysi-socialmedia-widget.background-primary p a:hover{background-color:#191f31}.ysi-socialmedia-widget.background-secondary ul li a,.ysi-socialmedia-widget.background-secondary p a{background-color:#fff}.ysi-socialmedia-widget.background-secondary ul li a:hover,.ysi-socialmedia-widget.background-secondary p a:hover{background-color:#fff}.ysi-socialmedia-widget.rounded ul li a,.ysi-socialmedia-widget.rounded p a{border-radius:50px}.ysi-socialmedia-widget.square ul li a,.ysi-socialmedia-widget.square p a{border-radius:0px}.ysi-socialmedia-widget.regular ul li a,.ysi-socialmedia-widget.regular p a{font-size:1.2rem;width:45px;height:45px}.ysi-socialmedia-widget.large ul li a,.ysi-socialmedia-widget.large p a{font-size:2.5rem;width:60px;height:60px;line-height:1.5}.ysi-socialmedia-widget.horizontal ul,.ysi-socialmedia-widget.horizontal p{line-height:10px}.ysi-socialmedia-widget.horizontal ul li,.ysi-socialmedia-widget.horizontal p li{display:inline-block}.ysi-socialmedia-widget.vertical ul li,.ysi-socialmedia-widget.vertical p{margin:3px 0}.ysi-socialmedia-widget.outline-light ul li a,.ysi-socialmedia-widget.outline-light p a{border:1px solid #f8f9fa;background:none}.ysi-socialmedia-widget.outline-light ul li a:hover,.ysi-socialmedia-widget.outline-light p a:hover{border:1px solid #fff;background:none}.ysi-socialmedia-widget.outline-dark ul li a,.ysi-socialmedia-widget.outline-dark p a{border:1px solid #343a40;background:none;color:#343a40}.ysi-socialmedia-widget.outline-dark ul li a:hover,.ysi-socialmedia-widget.outline-dark p a:hover{border:1px solid #343a40;background:none;color:#343a40}.ysi-socialmedia-widget.outline-primary ul li a,.ysi-socialmedia-widget.outline-primary p a{border:1px solid #191f31}.ysi-socialmedia-widget.outline-primary ul li a:hover,.ysi-socialmedia-widget.outline-primary p a:hover{border:1px solid #191f31}.ysi-socialmedia-widget.outline-secondary ul li a,.ysi-socialmedia-widget.outline-secondary p a{border:1px solid #fff}.ysi-socialmedia-widget.outline-secondary ul li a:hover,.ysi-socialmedia-widget.outline-secondary p a:hover{border:1px solid #fff}.ysi-socialmedia-widget.left,.ysi-socialmedia-widget.right{position:fixed;z-index:5;top:0;padding:0 3px}.ysi-socialmedia-widget.left{left:0}.ysi-socialmedia-widget.right{right:0}.ysi-socialmedia-share.horizontal ul{float:inherit}.ysi-socialmedia-share.horizontal ul li{float:inherit;margin-left:0.25rem}.ysi-socialmedia-share.horizontal ul li a.more-social-icons{height:20px;line-height:1;margin:0;background:#c7c7c7;color:#6e6e6e}.ysi-socialmedia-follow.horizontal{line-height:0}.ysi-socialmedia-follow.horizontal ul.ysi-socialmedia-icons{display:inline-flex}.ysi-socialmedia-follow.horizontal ul.ysi-socialmedia-icons li{margin-right:0.4rem}.ysi-socialmedia-follow.horizontal ul.ysi-socialmedia-icons li a,.ysi-socialmedia-follow.horizontal ul.ysi-socialmedia-popover-icons li a{width:auto;height:auto;line-height:initial}ul.ysi-socialmedia-icons li a.ysi-share,ul.ysi-socialmedia-popover-icons li a.ysi-share,.ysi-socialmedia-share p a.ysi-share{font:11px/18px 'Helvetica Neue', Arial, sans-serif;color:#fff;background:#6e6e6e;height:20px;line-height:18px;padding:1px 8px 1px 6px;border:none;border-radius:3px;outline:0;width:unset;height:unset}ul.ysi-socialmedia-icons li a.ysi-share:hover,ul.ysi-socialmedia-popover-icons li a.ysi-share:hover,.ysi-socialmedia-share p a.ysi-share:hover{text-decoration:none}ul.ysi-socialmedia-icons li a.ysi-share i,ul.ysi-socialmedia-popover-icons li a.ysi-share i,.ysi-socialmedia-share p a.ysi-share i{margin-right:.3em;font-size:1.2em}ul.ysi-socialmedia-icons li a.ysi-share.facebook,ul.ysi-socialmedia-popover-icons li a.ysi-share.facebook,.ysi-socialmedia-share p a.ysi-share.facebook{background:#4267b2}ul.ysi-socialmedia-icons li a.ysi-share.facebook:hover,ul.ysi-socialmedia-popover-icons li a.ysi-share.facebook:hover,.ysi-socialmedia-share p a.ysi-share.facebook:hover{background:#365899}ul.ysi-socialmedia-icons li a.ysi-share.twitter,ul.ysi-socialmedia-popover-icons li a.ysi-share.twitter,.ysi-socialmedia-share p a.ysi-share.twitter{background:#1b95e0}ul.ysi-socialmedia-icons li a.ysi-share.twitter:hover,ul.ysi-socialmedia-popover-icons li a.ysi-share.twitter:hover,.ysi-socialmedia-share p a.ysi-share.twitter:hover{background:#0c7abf}ul.ysi-socialmedia-icons li a.ysi-share.twitter i,ul.ysi-socialmedia-popover-icons li a.ysi-share.twitter i,.ysi-socialmedia-share p a.ysi-share.twitter i{font-size:inherit}ul.ysi-socialmedia-icons li a.ysi-share.pinterest,ul.ysi-socialmedia-popover-icons li a.ysi-share.pinterest,.ysi-socialmedia-share p a.ysi-share.pinterest{background:#C13238}ul.ysi-socialmedia-icons li a.ysi-share.pinterest i,ul.ysi-socialmedia-popover-icons li a.ysi-share.pinterest i,.ysi-socialmedia-share p a.ysi-share.pinterest i{font-size:inherit}ul.ysi-socialmedia-icons li a.ysi-share.linkedin,ul.ysi-socialmedia-popover-icons li a.ysi-share.linkedin,.ysi-socialmedia-share p a.ysi-share.linkedin{background:#005a87}@media (max-width: 991.98px){.d-md-none-down{display:none !important}}</style> | |
| 5095 | + | |
| 5096 | + <div class="ysi-socialmedia-widget ysi-socialmedia-wrapper ysi-socialmedia-share horizontal text-right small" lang=""> | |
| 5097 | + <ul class="ysi-socialmedia-icons" data-selenium-id="socialshare01" lang=""> | |
| 5098 | + </ul> | |
| 5099 | + | |
| 5100 | + </div> | |
| 5101 | + <div class="ysi-socialmedia-widget ysi-socialmedia-popover-wrapper d-none" lang=""> | |
| 5102 | + <ul class="ysi-socialmedia-popover-icons list-inline text-center list-inline" lang=""> | |
| 5103 | + </ul> | |
| 5104 | + | |
| 5105 | + </div> | |
| 5106 | +</div></div><div class="row" lang=""><div class="justify-content-start align-items-stretch flex-column d-flex text-left col-12 col-lg-12" lang=""></div></div></div></div></div></div></main> | |
| 5107 | + | |
| 5108 | + <footer><div class="px-xl-7 p-lg-6 p-md-5 py-5 px-3 text-light bg-primary" lang=""><div class="container-fluid" lang=""><div class="row" lang=""><div class="text-light justify-content-start align-items-stretch flex-column d-flex text-center text-md-left pb-md-0 pb-3 col-12 col-md-3 col-lg-3 order-3 order-md-2" lang=""> | |
| 5109 | + <h2 class="pb-3 h3 mb-0 text-secondary" lang="">Liens</h2> | |
| 5110 | + <link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/footerlinks-widget.558563.134322940780000000.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/footerlinks-widget.558563.134322940780000000.css"></noscript> | |
| 5111 | + | |
| 5112 | + | |
| 5113 | + | |
| 5114 | + | |
| 5115 | + | |
| 5116 | +<ul class="ysi-footer-links list-unstyled vertical mb-3 mb-md-0" lang=""> | |
| 5117 | + <li class="py-2 py-sm-0" lang=""><a class="color-inherit" href="https://aaltosuites.securecafenet.com/residentservices/aalto/userlogin?dropdownlangid=38" target="_blank" data-selenium-id="SID_footer_ResidentLogin" lang="">Connexion des résidents<span class="sr-only" lang="">S'ouvre dans un nouvel onglet</span></a></li> | |
| 5118 | + <li class="py-2 py-sm-0" lang=""><a class="color-inherit" href="https://aaltosuites.securecafe.com/onlineleasing/aalto/guestlogin.aspx?dropdownlangid=38&PropLeadSource_2384767=portal" target="_blank" data-selenium-id="SID_footer_ApplicantLogin" lang="">Connexion du demandeur<span class="sr-only" lang="">S'ouvre dans un nouvel onglet</span></a></li> | |
| 5119 | + <li class="py-2 py-sm-0" lang=""> | |
| 5120 | + <a class="color-inherit" href="/termsandconditions" target="_blank" data-selenium-id="SID_footer_termsandconditions" lang="">Conditions générales<span class="sr-only" lang="">S'ouvre dans un nouvel onglet</span> </a> | |
| 5121 | + </li> | |
| 5122 | + <li class="py-2 py-sm-0" lang=""> | |
| 5123 | + <a class="color-inherit" href="/privacypolicy" target="_blank" data-selenium-id="SID_footer_privacypolicy" lang="">Politique de confidentialité<span class="sr-only" lang="">S'ouvre dans un nouvel onglet</span> </a> | |
| 5124 | + </li> | |
| 5125 | + <li class="py-2 py-sm-0" lang=""> | |
| 5126 | + <a class="color-inherit" href="/contactus" data-selenium-id="SID_footer_contactus" lang="">Contactez-nous</a> | |
| 5127 | + </li> | |
| 5128 | + <li class="py-2 py-sm-0" lang=""> | |
| 5129 | + <a class="color-inherit" href="/accessibility" target="_blank" data-selenium-id="SID_footer_accessibility" lang="">Déclaration d'accessibilité<span class="sr-only" lang="">S'ouvre dans un nouvel onglet</span> </a> | |
| 5130 | + </li> | |
| 5131 | +</ul> | |
| 5132 | + | |
| 5133 | +<script language="javascript"> | |
| 5134 | + function translatepage() { | |
| 5135 | + var url1 = window.location; | |
| 5136 | + var lang1 = (navigator.language || navigator.userLanguage); | |
| 5137 | + var e = (document.charset || document.characterSet); | |
| 5138 | + var urlf = 'https://translate.google.com/translate?prev=hp&hl=en&js=y&u=' + url1 + '&sl=' + e + '&tl=' + lang1 + '&history_state0='; | |
| 5139 | + window.open(urlf); | |
| 5140 | + } | |
| 5141 | +</script> | |
| 5142 | + | |
| 5143 | +</div><div class="text-light justify-content-start align-items-stretch flex-column d-flex text-center text-md-left col-12 col-md-3 col-lg-3 order-4 order-md-3" lang=""> | |
| 5144 | + <h2 class="pb-md-3 pb-3 h3 mb-0 text-secondary" lang="">Heures d'ouverture du bureau</h2> | |
| 5145 | + | |
| 5146 | + | |
| 5147 | + <div class="ysi-office-hours-widget ysi-office-hours-wrapper" lang=""> | |
| 5148 | + <div class="d-inline-flex" lang=""> | |
| 5149 | + <div class="ysi-office-hours" data-selenium-id="SID_footer_officeHours" lang=""> | |
| 5150 | + <ul class="list-unstyled mb-0" lang=""> | |
| 5151 | + <li class=" " lang=""> | |
| 5152 | + <span class="office-hours-day" data-selenium-id="OHMondayFriday" lang="">Lundi<span class="sr-only" lang="">à</span>- Vendredi :</span> | |
| 5153 | + <span class="office-hours-time" data-selenium-id="OHMondayFridayTime" lang="">9h<span class="sr-only" lang="">à</span>- 18h</span> | |
| 5154 | +</li> | |
| 5155 | + <li class=" " lang=""> | |
| 5156 | + <span class="office-hours-day" data-selenium-id="OHSaturday" lang="">Samedi :</span> | |
| 5157 | + <span class="office-hours-time" data-selenium-id="OHSaturdayTime" lang="">10h<span class="sr-only" lang="">à</span>- 17h</span> | |
| 5158 | +</li> | |
| 5159 | + <li class=" " lang=""> | |
| 5160 | + <span class="office-hours-day" data-selenium-id="OHSunday" lang="">Dimanche :</span> | |
| 5161 | + <span class="office-hours-time" data-selenium-id="OHSundayTime" lang="">Fermé</span> | |
| 5162 | +</li> | |
| 5163 | + </ul> | |
| 5164 | + </div> | |
| 5165 | + </div> | |
| 5166 | + </div> | |
| 5167 | +</div><div class="text-light justify-content-start align-items-stretch flex-column d-flex text-center text-md-right pb-3 pb-md-0 col-12 col-md-3 col-lg-6 order-1 order-md-4" lang=""> | |
| 5168 | + | |
| 5169 | + | |
| 5170 | + | |
| 5171 | + | |
| 5172 | +<div class="ysi-address-widget ysi-address-wrapper vertical" lang=""> | |
| 5173 | + <div class="d-inline-flex" lang=""> | |
| 5174 | + <address class="ysi-address"> | |
| 5175 | + <a class="address-link color-inherit d-block" href="https://maps.google.com?q=10 Rue Jos-Montferrand Gatineau, QC J8X 0A6" target="_blank" rel="noreferrer" lang=""> | |
| 5176 | + <div itemprop="name" data-selenium-id="address_propname" lang="">Aalto</div> | |
| 5177 | + <div itemprop="address" lang=""> | |
| 5178 | + <div data-selenium-id="address_street" lang=""> | |
| 5179 | + 10 Rue Jos-Montferrand | |
| 5180 | + </div> | |
| 5181 | + <div lang=""> | |
| 5182 | + <span data-selenium-id="address_city" lang="">Gatineau</span>,<span data-selenium-id="address_state" lang="">QC</span><span data-selenium-id="address_zip" lang=""> J8X 0A6</span> | |
| 5183 | + </div> | |
| 5184 | + </div> | |
| 5185 | + <span class="sr-only" lang="">S'ouvre dans un nouvel onglet</span> | |
| 5186 | + </a> | |
| 5187 | + </address> | |
| 5188 | + | |
| 5189 | + </div> | |
| 5190 | +</div> | |
| 5191 | + | |
| 5192 | + | |
| 5193 | + | |
| 5194 | + <div data-selenium-id="address_phone_foot" class="phone-number-address ysi-phone-wrapper my-2 py-1 py-sm-0 mt-2 font-weight-bold " lang=""> | |
| 5195 | + <div class="d-inline-flex" lang=""> | |
| 5196 | + <a href="tel:+1 819-809-9131" onclick="fireGaNa();" aria-label="Call Aalto at +1 819-809-9131" class="ysi-phone-number click-to-call-foot-href text-decoration-none color-inherit" data-selenium-id="click-to-call-foot" lang=""> | |
| 5197 | + <span aria-hidden="true" class="fa-flip-horizontal fas fa-phone nu nu-phones-solid text-secondary" lang=""></span> <span data-selenium-id="click_to_call_foot_span" class="click-to-call-foot ml-2 text-underline" lang="">+1 819-809-9131</span> | |
| 5198 | + </a> | |
| 5199 | + | |
| 5200 | + </div> | |
| 5201 | + </div> | |
| 5202 | + <script> | |
| 5203 | + function fireGaNa() { | |
| 5204 | + if (typeof gtag != 'undefined') { | |
| 5205 | + var myPage = location.pathname.replace("/", ""); | |
| 5206 | + if (myPage == "") { myPage = "index"; } | |
| 5207 | + if (false ) { | |
| 5208 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 5209 | + gtag('event', 'phone_call', { 'property_name': propertyName, 'page_name': document.title, 'page_url': window.location.href, 'footer_phone_number': '+1 819-809-9131'}); | |
| 5210 | + } | |
| 5211 | + gtag('event', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickFooter', 'event_label': myPage }); | |
| 5212 | + gtag('rc.send', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickFooter', 'event_label': myPage }); | |
| 5213 | + } | |
| 5214 | + } | |
| 5215 | + </script> | |
| 5216 | + | |
| 5217 | + | |
| 5218 | +<ul class="list-unstyled mb-0" lang=""> | |
| 5219 | + | |
| 5220 | + | |
| 5221 | +</ul> | |
| 5222 | + | |
| 5223 | + | |
| 5224 | + <style>ul.ysi-socialmedia-popover-icons li a,ul.ysi-socialmedia-popover-icons p a,.ysi-socialmedia-widget li a,.ysi-socialmedia-widget p a{margin:1px 0}ul.ysi-socialmedia-icons li a,ul.ysi-socialmedia-icons p a,.ysi-socialmedia-widget li a,.ysi-socialmedia-widget p a{margin:0}ul.ysi-socialmedia-icons,ul.ysi-socialmedia-popover-icons,.ysi-socialmedia-widget{margin-bottom:0}ul.ysi-socialmedia-icons li a,ul.ysi-socialmedia-icons p a,ul.ysi-socialmedia-popover-icons li a,ul.ysi-socialmedia-popover-icons p a,.ysi-socialmedia-widget li a,.ysi-socialmedia-widget p a{width:40px;height:40px;display:inline-block;line-height:2.2;color:#fff;font-size:1.2rem;text-align:center}ul.ysi-socialmedia-icons li a.facebook_icon,ul.ysi-socialmedia-icons p a.facebook_icon,ul.ysi-socialmedia-popover-icons li a.facebook_icon,ul.ysi-socialmedia-popover-icons p a.facebook_icon,.ysi-socialmedia-widget li a.facebook_icon,.ysi-socialmedia-widget p a.facebook_icon{background:#3b5998;-moz-transition:background-color 1s 0.001s,color 1s;-o-transition:background-color 1s 0.001s,color 1s;-webkit-transition:background-color 1s 0.001s,color 1s;transition:background-color 1s 0.001s,color 1s}ul.ysi-socialmedia-icons li a.facebook_icon:hover,ul.ysi-socialmedia-icons p a.facebook_icon:hover,ul.ysi-socialmedia-popover-icons li a.facebook_icon:hover,ul.ysi-socialmedia-popover-icons p a.facebook_icon:hover,.ysi-socialmedia-widget li a.facebook_icon:hover,.ysi-socialmedia-widget p a.facebook_icon:hover{background:#4565ab}ul.ysi-socialmedia-icons li a.twitter_icon,ul.ysi-socialmedia-icons p a.twitter_icon,ul.ysi-socialmedia-popover-icons li a.twitter_icon,ul.ysi-socialmedia-popover-icons p a.twitter_icon,.ysi-socialmedia-widget li a.twitter_icon,.ysi-socialmedia-widget p a.twitter_icon{background:#2CAAE1;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.twitter_icon:hover,ul.ysi-socialmedia-icons p a.twitter_icon:hover,ul.ysi-socialmedia-popover-icons li a.twitter_icon:hover,ul.ysi-socialmedia-popover-icons p a.twitter_icon:hover,.ysi-socialmedia-widget li a.twitter_icon:hover,.ysi-socialmedia-widget p a.twitter_icon:hover{background:#2fb4ed}ul.ysi-socialmedia-icons li a.pinterest_icon,ul.ysi-socialmedia-icons p a.pinterest_icon,ul.ysi-socialmedia-popover-icons li a.pinterest_icon,ul.ysi-socialmedia-popover-icons p a.pinterest_icon,.ysi-socialmedia-widget li a.pinterest_icon,.ysi-socialmedia-widget p a.pinterest_icon{background:#C13238;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.pinterest_icon:hover,ul.ysi-socialmedia-icons p a.pinterest_icon:hover,ul.ysi-socialmedia-popover-icons li a.pinterest_icon:hover,ul.ysi-socialmedia-popover-icons p a.pinterest_icon:hover,.ysi-socialmedia-widget li a.pinterest_icon:hover,.ysi-socialmedia-widget p a.pinterest_icon:hover{background:#cc353a}ul.ysi-socialmedia-icons li a.instagram_icon,ul.ysi-socialmedia-icons p a.instagram_icon,ul.ysi-socialmedia-popover-icons li a.instagram_icon,ul.ysi-socialmedia-popover-icons p a.instagram_icon,.ysi-socialmedia-widget li a.instagram_icon,.ysi-socialmedia-widget p a.instagram_icon{background:#49709b;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.instagram_icon:hover,ul.ysi-socialmedia-icons p a.instagram_icon:hover,ul.ysi-socialmedia-popover-icons li a.instagram_icon:hover,ul.ysi-socialmedia-popover-icons p a.instagram_icon:hover,.ysi-socialmedia-widget li a.instagram_icon:hover,.ysi-socialmedia-widget p a.instagram_icon:hover{background:#608bba}ul.ysi-socialmedia-icons li a.linkedin_icon,ul.ysi-socialmedia-icons p a.linkedin_icon,ul.ysi-socialmedia-popover-icons li a.linkedin_icon,ul.ysi-socialmedia-popover-icons p a.linkedin_icon,.ysi-socialmedia-widget li a.linkedin_icon,.ysi-socialmedia-widget p a.linkedin_icon{background:#005a87;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.linkedin_icon:hover,ul.ysi-socialmedia-icons p a.linkedin_icon:hover,ul.ysi-socialmedia-popover-icons li a.linkedin_icon:hover,ul.ysi-socialmedia-popover-icons p a.linkedin_icon:hover,.ysi-socialmedia-widget li a.linkedin_icon:hover,.ysi-socialmedia-widget p a.linkedin_icon:hover{background:#0472a5}ul.ysi-socialmedia-icons li a.youtube_icon,ul.ysi-socialmedia-icons p a.youtube_icon,ul.ysi-socialmedia-popover-icons li a.youtube_icon,ul.ysi-socialmedia-popover-icons p a.youtube_icon,.ysi-socialmedia-widget li a.youtube_icon,.ysi-socialmedia-widget p a.youtube_icon{background:#c9322b;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.youtube_icon:hover,ul.ysi-socialmedia-icons p a.youtube_icon:hover,ul.ysi-socialmedia-popover-icons li a.youtube_icon:hover,ul.ysi-socialmedia-popover-icons p a.youtube_icon:hover,.ysi-socialmedia-widget li a.youtube_icon:hover,.ysi-socialmedia-widget p a.youtube_icon:hover{background:#dd3830}ul.ysi-socialmedia-icons li a.yelp_icon,ul.ysi-socialmedia-icons p a.yelp_icon,ul.ysi-socialmedia-popover-icons li a.yelp_icon,ul.ysi-socialmedia-popover-icons p a.yelp_icon,.ysi-socialmedia-widget li a.yelp_icon,.ysi-socialmedia-widget p a.yelp_icon{background:#DE3C43;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.yelp_icon:hover,ul.ysi-socialmedia-icons p a.yelp_icon:hover,ul.ysi-socialmedia-popover-icons li a.yelp_icon:hover,ul.ysi-socialmedia-popover-icons p a.yelp_icon:hover,.ysi-socialmedia-widget li a.yelp_icon:hover,.ysi-socialmedia-widget p a.yelp_icon:hover{background:#ea3f45}ul.ysi-socialmedia-icons li a.snapchat_icon,ul.ysi-socialmedia-icons p a.snapchat_icon,ul.ysi-socialmedia-popover-icons li a.snapchat_icon,ul.ysi-socialmedia-popover-icons p a.snapchat_icon,.ysi-socialmedia-widget li a.snapchat_icon,.ysi-socialmedia-widget p a.snapchat_icon{background:#E0E237;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.snapchat_icon:hover,ul.ysi-socialmedia-icons p a.snapchat_icon:hover,ul.ysi-socialmedia-popover-icons li a.snapchat_icon:hover,ul.ysi-socialmedia-popover-icons p a.snapchat_icon:hover,.ysi-socialmedia-widget li a.snapchat_icon:hover,.ysi-socialmedia-widget p a.snapchat_icon:hover{background:#efef39}ul.ysi-socialmedia-icons li a.more-social-icons,ul.ysi-socialmedia-icons p a.more-social-icons,ul.ysi-socialmedia-popover-icons li a.more-social-icons,ul.ysi-socialmedia-popover-icons p a.more-social-icons,.ysi-socialmedia-widget li a.more-social-icons,.ysi-socialmedia-widget p a.more-social-icons{background:#6e6e6e;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.more-social-icons:hover,ul.ysi-socialmedia-icons p a.more-social-icons:hover,ul.ysi-socialmedia-popover-icons li a.more-social-icons:hover,ul.ysi-socialmedia-popover-icons p a.more-social-icons:hover,.ysi-socialmedia-widget li a.more-social-icons:hover,.ysi-socialmedia-widget p a.more-social-icons:hover{background:#888888}.ysi-socialmedia-widget ul{padding-left:0;list-style:none}.ysi-socialmedia-widget p{margin-bottom:0}.ysi-socialmedia-widget.icon-white ul li a,.ysi-socialmedia-widget.icon-white p a{color:#fff;background:none}.ysi-socialmedia-widget.icon-white ul li a:hover,.ysi-socialmedia-widget.icon-white p a:hover{color:#f8f9fa;background:none}.ysi-socialmedia-widget.icon-light ul li a,.ysi-socialmedia-widget.icon-light p a{color:#f8f9fa;background:none}.ysi-socialmedia-widget.icon-light ul li a:hover,.ysi-socialmedia-widget.icon-light p a:hover{color:#fff;background:none}.ysi-socialmedia-widget.icon-dark ul li a,.ysi-socialmedia-widget.icon-dark p a{color:#343a40;background:none}.ysi-socialmedia-widget.icon-dark ul li a:hover,.ysi-socialmedia-widget.icon-dark p a:hover{color:#0056B3;background:none}.ysi-socialmedia-widget.icon-primary ul li a,.ysi-socialmedia-widget.icon-primary p a{color:#191f31;background:none}.ysi-socialmedia-widget.icon-primary ul li a:hover,.ysi-socialmedia-widget.icon-primary p a:hover{color:#191f31;background:none}.ysi-socialmedia-widget.icon-secondary ul li a,.ysi-socialmedia-widget.icon-secondary p a{color:#fff;background:none}.ysi-socialmedia-widget.icon-secondary ul li a:hover,.ysi-socialmedia-widget.icon-secondary p a:hover{color:#fff;background:none}.ysi-socialmedia-widget.background-light ul li a,.ysi-socialmedia-widget.background-light p a{background-color:#f8f9fa}.ysi-socialmedia-widget.background-light ul li a:hover,.ysi-socialmedia-widget.background-light p a:hover{background-color:#f8f9fa}.ysi-socialmedia-widget.background-dark ul li a,.ysi-socialmedia-widget.background-dark p a{background-color:#000}.ysi-socialmedia-widget.background-dark ul li a:hover,.ysi-socialmedia-widget.background-dark p a:hover{background-color:#000}.ysi-socialmedia-widget.background-primary ul li a,.ysi-socialmedia-widget.background-primary p a{background-color:#191f31}.ysi-socialmedia-widget.background-primary ul li a:hover,.ysi-socialmedia-widget.background-primary p a:hover{background-color:#191f31}.ysi-socialmedia-widget.background-secondary ul li a,.ysi-socialmedia-widget.background-secondary p a{background-color:#fff}.ysi-socialmedia-widget.background-secondary ul li a:hover,.ysi-socialmedia-widget.background-secondary p a:hover{background-color:#fff}.ysi-socialmedia-widget.rounded ul li a,.ysi-socialmedia-widget.rounded p a{border-radius:50px}.ysi-socialmedia-widget.square ul li a,.ysi-socialmedia-widget.square p a{border-radius:0px}.ysi-socialmedia-widget.regular ul li a,.ysi-socialmedia-widget.regular p a{font-size:1.2rem;width:45px;height:45px}.ysi-socialmedia-widget.large ul li a,.ysi-socialmedia-widget.large p a{font-size:2.5rem;width:60px;height:60px;line-height:1.5}.ysi-socialmedia-widget.horizontal ul,.ysi-socialmedia-widget.horizontal p{line-height:10px}.ysi-socialmedia-widget.horizontal ul li,.ysi-socialmedia-widget.horizontal p li{display:inline-block}.ysi-socialmedia-widget.vertical ul li,.ysi-socialmedia-widget.vertical p{margin:3px 0}.ysi-socialmedia-widget.outline-light ul li a,.ysi-socialmedia-widget.outline-light p a{border:1px solid #f8f9fa;background:none}.ysi-socialmedia-widget.outline-light ul li a:hover,.ysi-socialmedia-widget.outline-light p a:hover{border:1px solid #fff;background:none}.ysi-socialmedia-widget.outline-dark ul li a,.ysi-socialmedia-widget.outline-dark p a{border:1px solid #343a40;background:none;color:#343a40}.ysi-socialmedia-widget.outline-dark ul li a:hover,.ysi-socialmedia-widget.outline-dark p a:hover{border:1px solid #343a40;background:none;color:#343a40}.ysi-socialmedia-widget.outline-primary ul li a,.ysi-socialmedia-widget.outline-primary p a{border:1px solid #191f31}.ysi-socialmedia-widget.outline-primary ul li a:hover,.ysi-socialmedia-widget.outline-primary p a:hover{border:1px solid #191f31}.ysi-socialmedia-widget.outline-secondary ul li a,.ysi-socialmedia-widget.outline-secondary p a{border:1px solid #fff}.ysi-socialmedia-widget.outline-secondary ul li a:hover,.ysi-socialmedia-widget.outline-secondary p a:hover{border:1px solid #fff}.ysi-socialmedia-widget.left,.ysi-socialmedia-widget.right{position:fixed;z-index:5;top:0;padding:0 3px}.ysi-socialmedia-widget.left{left:0}.ysi-socialmedia-widget.right{right:0}.ysi-socialmedia-share.horizontal ul{float:inherit}.ysi-socialmedia-share.horizontal ul li{float:inherit;margin-left:0.25rem}.ysi-socialmedia-share.horizontal ul li a.more-social-icons{height:20px;line-height:1;margin:0;background:#c7c7c7;color:#6e6e6e}.ysi-socialmedia-follow.horizontal{line-height:0}.ysi-socialmedia-follow.horizontal ul.ysi-socialmedia-icons{display:inline-flex}.ysi-socialmedia-follow.horizontal ul.ysi-socialmedia-icons li{margin-right:0.4rem}.ysi-socialmedia-follow.horizontal ul.ysi-socialmedia-icons li a,.ysi-socialmedia-follow.horizontal ul.ysi-socialmedia-popover-icons li a{width:auto;height:auto;line-height:initial}ul.ysi-socialmedia-icons li a.ysi-share,ul.ysi-socialmedia-popover-icons li a.ysi-share,.ysi-socialmedia-share p a.ysi-share{font:11px/18px 'Helvetica Neue', Arial, sans-serif;color:#fff;background:#6e6e6e;height:20px;line-height:18px;padding:1px 8px 1px 6px;border:none;border-radius:3px;outline:0;width:unset;height:unset}ul.ysi-socialmedia-icons li a.ysi-share:hover,ul.ysi-socialmedia-popover-icons li a.ysi-share:hover,.ysi-socialmedia-share p a.ysi-share:hover{text-decoration:none}ul.ysi-socialmedia-icons li a.ysi-share i,ul.ysi-socialmedia-popover-icons li a.ysi-share i,.ysi-socialmedia-share p a.ysi-share i{margin-right:.3em;font-size:1.2em}ul.ysi-socialmedia-icons li a.ysi-share.facebook,ul.ysi-socialmedia-popover-icons li a.ysi-share.facebook,.ysi-socialmedia-share p a.ysi-share.facebook{background:#4267b2}ul.ysi-socialmedia-icons li a.ysi-share.facebook:hover,ul.ysi-socialmedia-popover-icons li a.ysi-share.facebook:hover,.ysi-socialmedia-share p a.ysi-share.facebook:hover{background:#365899}ul.ysi-socialmedia-icons li a.ysi-share.twitter,ul.ysi-socialmedia-popover-icons li a.ysi-share.twitter,.ysi-socialmedia-share p a.ysi-share.twitter{background:#1b95e0}ul.ysi-socialmedia-icons li a.ysi-share.twitter:hover,ul.ysi-socialmedia-popover-icons li a.ysi-share.twitter:hover,.ysi-socialmedia-share p a.ysi-share.twitter:hover{background:#0c7abf}ul.ysi-socialmedia-icons li a.ysi-share.twitter i,ul.ysi-socialmedia-popover-icons li a.ysi-share.twitter i,.ysi-socialmedia-share p a.ysi-share.twitter i{font-size:inherit}ul.ysi-socialmedia-icons li a.ysi-share.pinterest,ul.ysi-socialmedia-popover-icons li a.ysi-share.pinterest,.ysi-socialmedia-share p a.ysi-share.pinterest{background:#C13238}ul.ysi-socialmedia-icons li a.ysi-share.pinterest i,ul.ysi-socialmedia-popover-icons li a.ysi-share.pinterest i,.ysi-socialmedia-share p a.ysi-share.pinterest i{font-size:inherit}ul.ysi-socialmedia-icons li a.ysi-share.linkedin,ul.ysi-socialmedia-popover-icons li a.ysi-share.linkedin,.ysi-socialmedia-share p a.ysi-share.linkedin{background:#005a87}@media (max-width: 991.98px){.d-md-none-down{display:none !important}}</style> | |
| 5225 | + | |
| 5226 | + <div class="ysi-socialmedia-widget ysi-socialmedia-wrapper ysi-socialmedia-link horizontal" lang=""> | |
| 5227 | + <ul class="ysi-socialmedia-icons" data-selenium-id="socialmedia_1786043950986" lang=""> | |
| 5228 | + <li class="social-media-facebook " lang=""> | |
| 5229 | + <a href="https://www.facebook.com/zibiCanada/" target="_blank" aria-label="Facebook, opens in new tab" rel="noopener" data-selenium-id="SM_FaceBookIcon" class="facebook_icon" lang=""> | |
| 5230 | + <span aria-hidden="true" class="nu nu-secondary_facebook_logo fab fa-facebook-f" lang=""></span> | |
| 5231 | + </a> | |
| 5232 | + </li> | |
| 5233 | + <li class="social-media-instagram " lang=""> | |
| 5234 | + <a href="https://www.instagram.com/zibican/?hl=en" target="_blank" aria-label="Instagram, opens in new tab" rel="noopener" data-selenium-id="SM_InstagramIcon" class="instagram_icon" lang=""> | |
| 5235 | + <span aria-hidden="true" class="fab fa-instagram" lang=""></span> | |
| 5236 | + </a> | |
| 5237 | + </li> | |
| 5238 | + </ul> | |
| 5239 | + | |
| 5240 | + </div> | |
| 5241 | + <div class="ysi-socialmedia-widget ysi-socialmedia-popover-wrapper d-none" lang=""> | |
| 5242 | + <ul class="ysi-socialmedia-popover-icons list-inline text-center list-inline" lang=""> | |
| 5243 | + </ul> | |
| 5244 | + | |
| 5245 | + </div> | |
| 5246 | +</div></div></div></div><div class="pb-5 pt-4 px-3 bg-primary container-fluid p-0" lang=""><div class="row no-gutters" lang=""><div class="text-light justify-content-center align-items-center flex-column d-flex text-center col-12 col-lg-12" lang=""> | |
| 5247 | + | |
| 5248 | +<div class="ysi-copyright" lang=""> | |
| 5249 | + <svg role="img" alt="Equal housing opportunity" aria-labelledby="svgeho" focusable="false" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="1em" height=".884em" viewBox="0 0 15.2 10.72"> | |
| 5250 | + <title id="svgeho">Equal housing opportunity</title> | |
| 5251 | + <defs><style> | |
| 5252 | + .cls-1 { | |
| 5253 | + fill-rule: evenodd; | |
| 5254 | + } | |
| 5255 | + </style></defs> | |
| 5256 | + <path class="cls-1" d="M7.54,0,0,3.72V5.46H.84V10.7H14.19V5.46h1V3.72Zm5,9.12H2.48V4.34l5.06-2.6,5,2.6Z"></path> | |
| 5257 | + <polygon class="cls-1" points="9.85 6.02 5.18 6.02 5.18 4.34 9.85 4.34 9.85 6.02 9.85 6.02"></polygon> | |
| 5258 | + <polygon class="cls-1" points="9.85 8.44 5.18 8.44 5.18 6.76 9.85 6.76 9.85 8.44 9.85 8.44"></polygon> | |
| 5259 | + </svg> | |
| 5260 | + <span id="footerText" data-selenium-id="customCopyrightText" lang="">© 2026 Aalt. Tous Droits Réservés. | Design du site internet par RENTPrices and specifications are subject to change without notice. Illustrations are artist’s concept. E. & O. E.</span> | |
| 5261 | + <span lang=""> | <span lang="">Actionné par RentCafe</span>(© <span lang="">2026 </span>Yardi Systems, Inc.<span lang="">Tous droits réservés.</span>)</span> | |
| 5262 | +</div> | |
| 5263 | +</div></div></div></footer> | |
| 5264 | + | |
| 5265 | + | |
| 5266 | + | |
| 5267 | + | |
| 5268 | + | |
| 5269 | + | |
| 5270 | + | |
| 5271 | + | |
| 5272 | + <div class="container-fluid w-100 fixed-bottom nudgestrip d-none" lang=""> | |
| 5273 | + <div class="row bg-secondary d-block d-md-none text-center" lang=""> | |
| 5274 | + <div class="col p-0" lang=""> | |
| 5275 | + <button type="button" class="btn btn-primary btn-block" onclick="ysi.nudge.showNudge()" lang=""> | |
| 5276 | + Deux mois gratuits sur certaines unités | |
| 5277 | + </button> | |
| 5278 | + </div> | |
| 5279 | + </div> | |
| 5280 | + </div> | |
| 5281 | + | |
| 5282 | + <!--START: Nudge Widget Container--> | |
| 5283 | + <div class="container-fluid w-100 fixed-bottom nudge-left" role="complementary" aria-label="Deux mois gratuits sur certaines unités" lang=""> | |
| 5284 | + <!-- For Nudge alignment used class: "nudge-left", "nudge-center" , "nudge-right" --> | |
| 5285 | + <div class="px-3 modest-nudge show nudge-open" id="leadNudgeBlock" lang=""> | |
| 5286 | + <button type="button" class="close position-absolute" aria-label="close dialog" onclick="ysi.nudge.closeNudge()" lang=""> | |
| 5287 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 5288 | + </button> | |
| 5289 | + <div class="row" lang=""> | |
| 5290 | + <div class="nudge-block d-flex flex-wrap align-items-stretch w-100" lang=""> | |
| 5291 | + | |
| 5292 | + <div class="nudge-form-block col-12 p-4" lang=""> | |
| 5293 | + <form id="myNudgeForm" class="needs-validation" novalidate="" method="post"> | |
| 5294 | + <div id="leadNudgeBlock01" class="row" lang=""> | |
| 5295 | + | |
| 5296 | + <!-- Title and description --> | |
| 5297 | + <div class="col-md-12 mb-3 mt-2" lang=""> | |
| 5298 | + <h2 class="h5 mb-2 font-weight-normal" lang="">Deux mois gratuits sur certaines unités</h2> | |
| 5299 | + <p class="mb-0" lang="">Emménagez dès aujourd’hui et économisez. Profitez maintenant de jusqu’à 2 mois gratuits.</p> | |
| 5300 | + </div> | |
| 5301 | + | |
| 5302 | + <div class="col-md-12 mb-1" lang=""> | |
| 5303 | + <p class="text-sm" lang="">* indique les champs obligatoires.</p> | |
| 5304 | + </div> | |
| 5305 | + <!-- First name --> | |
| 5306 | + <div class="col-md-6 mb-1 mb-lg-2 pr-md-1" lang=""> | |
| 5307 | + <div class="form-group w-100 floating-label floating-label-sm mb-0" lang=""> | |
| 5308 | + <label for="nudgeFirstName" lang="">Prénom<span lang="">*</span> | |
| 5309 | + </label> | |
| 5310 | + <input type="text" class="form-control form-control-sm required" aria-invalid="false" id="nudgeFirstName" name="FirstName" data-selenium-id="nudgeFirstName" autocomplete="given-name" data-aria-describedby="nudgeinvalidFirstname" lang=""> | |
| 5311 | + <div class="invalid-feedback" id="nudgeinvalidFirstname" aria-hidden="true" lang="">Erreur : Veuillez fournir un prénom valide.</div> | |
| 5312 | + </div> | |
| 5313 | + </div> | |
| 5314 | + | |
| 5315 | + <!-- Last name --> | |
| 5316 | + <div class="col-md-6 mb-1 mb-lg-2 pl-md-1" lang=""> | |
| 5317 | + <div class="form-group w-100 floating-label floating-label-sm mb-0" lang=""> | |
| 5318 | + <label for="nudgeLastName" lang="">Nom de famille<span lang="">*</span> | |
| 5319 | + </label> | |
| 5320 | + <input type="text" class="form-control form-control-sm required" aria-invalid="false" id="nudgeLastName" name="LastName" data-selenium-id="nudgeLastName" autocomplete="family-name" data-aria-describedby="nudgeinvalidLastname" lang=""> | |
| 5321 | + <div class="invalid-feedback" id="nudgeinvalidLastname" aria-hidden="true" lang="">Erreur : Veuillez fournir un nom de famille valide.</div> | |
| 5322 | + </div> | |
| 5323 | + </div> | |
| 5324 | + | |
| 5325 | + <!-- Email --> | |
| 5326 | + <div class="col-md-12 mb-1 mb-lg-2 " lang=""> | |
| 5327 | + <div class="form-group w-100 floating-label floating-label-sm mb-0" lang=""> | |
| 5328 | + <label for="nudgeEmail" lang="">Courriel<span lang="">*</span> | |
| 5329 | + </label> | |
| 5330 | + <input type="text" class="form-control form-control-sm required" aria-invalid="false" pattern="[A-Za-z0-9._%+\-]+@[A-Za-z0-9.\-]+\.[A-Za-z]{2,4}$" id="nudgeEmail" name="Email" data-selenium-id="nudgeEmail" autocomplete="email" data-aria-describedby="nudgeinvalidEmail" lang=""> | |
| 5331 | + <div class="invalid-feedback" id="nudgeinvalidEmail" aria-hidden="true" lang="">Erreur : Veuillez saisir une adresse électronique valide.</div> | |
| 5332 | + </div> | |
| 5333 | + </div> | |
| 5334 | + | |
| 5335 | + <!-- For Canada, emails checkbox --> | |
| 5336 | + <div class="col-auto form-group" lang=""> | |
| 5337 | + <div class=" checkbox" lang=""> | |
| 5338 | + <input aria-label="Subscribe/Unsubscribe to marketing email" id="SubscribeToEmailsNudge" type="checkbox" class="form-check-input" value="" onchange="ysi.nudge.issubscribecheckednudge()"> | |
| 5339 | + <label for="SubscribeToEmailsNudge" lang=""> | |
| 5340 | + | |
| 5341 | + | |
| 5342 | + | |
| 5343 | + | |
| 5344 | + </label> | |
| 5345 | + </div> | |
| 5346 | + </div> | |
| 5347 | + | |
| 5348 | + <!-- Privacy Policy / Terms and Conditions checkbox --> | |
| 5349 | + | |
| 5350 | + <!-- Hidden form fields --> | |
| 5351 | + <input type="hidden" name="IsSubscribeToEmailsNudge" id="IsSubscribeToEmailsNudge" value="false"> | |
| 5352 | + <input type="hidden" name="IsFlexProp" id="IsFlexProp" value="False"> | |
| 5353 | + | |
| 5354 | + <input type="hidden" name="IsCanadaPropertyNudge" id="IsCanadaPropertyNudge" value="True"> | |
| 5355 | + <input type="hidden" name="nudgepagename" id="nudgepagename" value=""> | |
| 5356 | + <input type="hidden" name="txtisresidentoption" id="nudgetxtisresidentoption" value="0"> | |
| 5357 | + <input type="hidden" name="nudgetrackingid" id="nudgetrackingid" value="308749"> | |
| 5358 | + <input type="hidden" name="nudgeuseragent" id="nudgeuseragent" value=""> | |
| 5359 | + <input type="hidden" name="nudgeAdwordsNetwork" id="nudgeAdwordsNetwork" value=""> | |
| 5360 | + <input type="hidden" name="nudgeAdwordsDevice" id="nudgeAdwordsDevice" value=""> | |
| 5361 | + <input type="hidden" name="nudgeAdwordsKeyword" id="nudgeAdwordsKeyword" value=""> | |
| 5362 | + <input type="hidden" name="nudgeAdwordsAdgroup" id="nudgeAdwordsAdgroup" value=""> | |
| 5363 | + <input type="hidden" name="nudgeAdwordsCampaign" id="nudgeAdwordsCampaign" value=""> | |
| 5364 | + <input type="hidden" name="nudgeAdwordsGclid" id="nudgeAdwordsGclid" value=""> | |
| 5365 | + <input type="hidden" name="nudgecafeusenewcaptcha" id="nudgecafeusenewcaptcha" value="True"> | |
| 5366 | + <input type="hidden" id="nudgepreviousPageTitle" name="nudgepreviousPageTitle" value="Floor Plans of Aalto in Gatineau, QC"> | |
| 5367 | + <input type="hidden" name="IsPureStudentPropNudge" id="IsPureStudentPropNudge" value="False"> | |
| 5368 | + <div class="col-auto col-sm-6 col-md-3 mb-1 mb-lg-2" lang=""> | |
| 5369 | + <button id="btnsubmitnudgehiddencaptcha" class="btn btn-light py-1" data-selenium-id="SendBtnhiddencaptcha" type="submit" lang="">Envoyer</button> | |
| 5370 | + </div> | |
| 5371 | + <span class="nudgeResponsLoader px-3" aria-live="assertive" lang=""><!-- Loading message inserted here --></span> | |
| 5372 | + <input type="hidden" name="g-recaptcha-response-ent" id="nudgecaptchag-recaptcha-response-ent" value=""> | |
| 5373 | + <input type="hidden" name="failed-captcha-ent" id="nudgecaptchafailed-captcha-ent" value="false"> | |
| 5374 | + | |
| 5375 | + <!-- Recaptcha terms --> | |
| 5376 | + <div class="col-md-12 py-0 mt-2" lang=""> | |
| 5377 | + <div id="nudge-grecaptcha-terms" class="grecaptcha-terms" lang="">Ce site est protégé par reCAPTCHA.<a class="color-inherit" rel="nofollow" target="_blank" href="https://policies.google.com/privacy" lang="">Politique de confidentialité<span class="sr-only" lang=""> for Google, Opens in a new tab </span></a>et<a class="color-inherit" rel="nofollow" target="_blank" href="https://policies.google.com/terms" lang="">Conditions d’utilisation<span class="sr-only" lang=""> for Google, Opens in a new tab </span></a>faire une demande.</div> | |
| 5378 | + </div> | |
| 5379 | + | |
| 5380 | + <!-- Call Us link --> | |
| 5381 | + <div class="col-md-12 h4 mt-3 my-md-3" lang=""> | |
| 5382 | + <span lang="">Planifiez une visite:</span> | |
| 5383 | + <a class="click_to_call_href_nudge" onclick="fireGaNudgePhone()" href="tel:+1 819-809-9131" lang=""> | |
| 5384 | + <span class=" sr-only" lang="">Numéro de téléphone</span> | |
| 5385 | + <span class="click-to-call" lang=""> +1 819-809-9131</span> | |
| 5386 | + </a> | |
| 5387 | + </div> | |
| 5388 | + </div><!-- End block 1 --> | |
| 5389 | + <!-- Block 2 : displayed on form submit --> | |
| 5390 | + <div id="leadNudgeBlock02" class="row mt-3 d-none" lang=""> | |
| 5391 | + <!-- Recaptcha --> | |
| 5392 | + | |
| 5393 | + <div class="col-md-12 mb-1 mb-lg-2 " lang=""> | |
| 5394 | + <div class="form-group mt-4 mb-4" lang=""> | |
| 5395 | + <div id="nudge-recaptcha-block" aria-hidden="true" class="form-control p-0 border-0 bg-transparent" lang=""> | |
| 5396 | + | |
| 5397 | + | |
| 5398 | +<div id="nudgecaptcha" class="recaptcha" style="min-height: 78px" lang=""></div> | |
| 5399 | + | |
| 5400 | + | |
| 5401 | + </div> | |
| 5402 | + <div class="invalid-feedback text-left w-auto" id="nudgeinvalidCaptcha" aria-live="polite" lang=""> | |
| 5403 | + Error : Please verify you are not a robot. | |
| 5404 | + </div> | |
| 5405 | + </div> | |
| 5406 | + </div> | |
| 5407 | + | |
| 5408 | + <!-- Submit button with loader --> | |
| 5409 | + <div class="col-md-12 mb-1 mb-lg-1 mt-2" lang=""> | |
| 5410 | + <button id="btnsubmitnudge" style="display:none" class="btn btn-light px-3 py-1" data-selenium-id="SendBtn" type="submit" lang="">Envoyer</button> | |
| 5411 | + <span class="nudgeResponsLoader" aria-live="assertive" lang=""><!-- Loading message inserted here --></span> | |
| 5412 | + </div> | |
| 5413 | + </div> | |
| 5414 | + <input name="__RequestVerificationToken" type="hidden" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ1n9pcyx_6J8afX5LduiIeOfnD9K1dcI3YWRdxA9zJKS4IlGjAzrTw2ejzeey-kWRTEl7UgHDpHQeiZ-Z-4sOcVPD7Fn7S54U5aH-ZzbT8talPeuPsjB8Cno84ObMTG7ug"></form> | |
| 5415 | + </div> | |
| 5416 | + </div> | |
| 5417 | + </div> | |
| 5418 | + </div> | |
| 5419 | + </div> | |
| 5420 | + <input type="hidden" id="nudge-request-verification-token" name="nudge-request-verification-token" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ1n9pcyx_6J8afX5LduiIeOfnD9K1dcI3YWRdxA9zJKS4IlGjAzrTw2ejzeey-kWRTEl7UgHDpHQeiZ-Z-4sOcVPD7Fn7S54U5aH-ZzbT8talPeuPsjB8Cno84ObMTG7ug"> | |
| 5421 | + <input type="hidden" name="nudgepopid" id="nudgepopid" value="2537319921"> | |
| 5422 | + <input type="hidden" name="pageId" id="pageId" value="0"> | |
| 5423 | + <input type="hidden" name="requestpage" id="requestpage" value="floorplans"> | |
| 5424 | + <input type="hidden" name="nudgeid" id="nudgeid" value="308749"> | |
| 5425 | + <input type="hidden" name="nudgeUrlPattern" id="nudgeUrlPattern" value=""> | |
| 5426 | +<script> | |
| 5427 | + ysi.registerCallback(function () { | |
| 5428 | + | |
| 5429 | + ysi.nudge && ysi.nudge.init({ | |
| 5430 | + propertyurl: 'www.aaltosuites.ca', | |
| 5431 | + cookiekey: "nud_2384767", | |
| 5432 | + cookievalue: "eyJwdiI6MCwiY24iOjMwODc0OSwiYW4iOlszMDg3NDldLCJpYW4iOltdfQ==", | |
| 5433 | + playtimer: parseInt('0') * 1000, | |
| 5434 | + pagerequested: "floorplans", | |
| 5435 | + apiurl: "https://api.rentcafe.com/rentcafeapi.aspx?requestType=NudgeStatsTracker&propertyId=MjM4NDc2Nw%3d%3d-4jqO3QRC5RM%3d&pageId=MA%3d%3d-MHTrHsWXyiE%3d", | |
| 5436 | + campaignType: "0", | |
| 5437 | + isBottomLayout: false, | |
| 5438 | + isModestLayout: true, | |
| 5439 | + isCompanyNudge: false, | |
| 5440 | + outboundLink: "", | |
| 5441 | + donottrack: false, | |
| 5442 | + isaddstat: true, | |
| 5443 | + nudgeid: 'MzA4NzQ5-sEIVxK7WQVA%3d' | |
| 5444 | + }); | |
| 5445 | + | |
| 5446 | + let promoCode = document.getElementById("promoCode"), | |
| 5447 | + newCode = document.getElementById("newCode"); | |
| 5448 | + | |
| 5449 | + if (promoCode && newCode) { | |
| 5450 | + newCode.innerHTML = promoCode.innerHTML.split('').join(' '); | |
| 5451 | + } | |
| 5452 | + if(document.getElementById('nudgepreviousPageTitle')){ | |
| 5453 | + document.getElementById('nudgepreviousPageTitle').value = document.title; | |
| 5454 | + | |
| 5455 | + } | |
| 5456 | + }); | |
| 5457 | + | |
| 5458 | + function fireGaNudgePhone() { | |
| 5459 | + if (typeof gtag !== 'undefined' ) { | |
| 5460 | + var myPage = location.pathname.replace("/", ""); | |
| 5461 | + if (myPage === "") { myPage = "index"; } | |
| 5462 | + if (false ) { | |
| 5463 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 5464 | + gtag('event', 'phone_call', { 'property_name': propertyName, 'page_name': document.title, 'page_url': window.location.href, 'nudge_phone_number': '+1 819-809-9131'}); | |
| 5465 | + } | |
| 5466 | + gtag('event', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickNudge', 'event_label': myPage }); | |
| 5467 | + gtag('rc.send', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickNudge', 'event_label': myPage }); | |
| 5468 | + } | |
| 5469 | + } | |
| 5470 | + | |
| 5471 | +</script> | |
| 5472 | + | |
| 5473 | + | |
| 5474 | + | |
| 5475 | + | |
| 5476 | + <script> | |
| 5477 | + // Set visited timestamp, regardless of whether a nudge is on this page | |
| 5478 | + let visited = localStorage.getItem('timestamp'); | |
| 5479 | + if (!visited) { | |
| 5480 | + localStorage.setItem('timestamp', new Date().getTime()); | |
| 5481 | + } | |
| 5482 | + | |
| 5483 | + let innerPage = document.getElementById("innerpage"); | |
| 5484 | + // We check if device uses common breakpoint 767px, has touch capabilities, or supports DocumentTouch interface (supported by some older mobile browsers) | |
| 5485 | + let isMobileorTablet = window.matchMedia('(max-width: 767px)').mactches || ('ontouchstart' in window) || (window.DocumentTouch && document instanceof window.DocumentTouch); | |
| 5486 | + if (innerPage && !isMobileorTablet) { | |
| 5487 | + | |
| 5488 | + console.log('Not mobile or tablet'); | |
| 5489 | + let mainEle = document.querySelector("main"); | |
| 5490 | + let bannerImg = mainEle.previousElementSibling; | |
| 5491 | + | |
| 5492 | + | |
| 5493 | + if (bannerImg.classList.contains("fixed-background") && !bannerImg.classList.contains("ysi-innerpage-banner")) { | |
| 5494 | + console.log("No Banner Image Widget") | |
| 5495 | + bannerImg.classList.add("center-top"); | |
| 5496 | + let nudgeEle = document.getElementById("nudgeTop"); | |
| 5497 | + let menuEle = document.querySelector(".sticky-top"); | |
| 5498 | + | |
| 5499 | + function updateBackgroundPosition() { | |
| 5500 | + /* | |
| 5501 | + *We use the height of the nudge to correct | |
| 5502 | + *the position of the banner image when set to parallax | |
| 5503 | + */ | |
| 5504 | + let menuHeight = menuEle.offsetHeight; | |
| 5505 | + let nudgeHeight = nudgeEle.offsetHeight; | |
| 5506 | + bannerImg.style.backgroundPositionY = (nudgeHeight + menuHeight) + 'px'; | |
| 5507 | + } | |
| 5508 | + | |
| 5509 | + // Update background position | |
| 5510 | + updateBackgroundPosition(); | |
| 5511 | + | |
| 5512 | + // Update if window resized | |
| 5513 | + //window.addEventListener("resize", updateBackgroundPosition); | |
| 5514 | + | |
| 5515 | + // We chech for changes in the nudge widget | |
| 5516 | + let resizeObserver = new ResizeObserver(() => { | |
| 5517 | + updateBackgroundPosition(); | |
| 5518 | + }); | |
| 5519 | + | |
| 5520 | + resizeObserver.observe(nudgeEle); | |
| 5521 | + | |
| 5522 | + // We remove the classes that cause bg image to blow out | |
| 5523 | + bannerImg.classList.remove("cover", "center-center") | |
| 5524 | + }; | |
| 5525 | + | |
| 5526 | + } | |
| 5527 | + </script> | |
| 5528 | + | |
| 5529 | + | |
| 5530 | + | |
| 5531 | + | |
| 5532 | + <yardi-widget-craigslist></yardi-widget-craigslist> | |
| 5533 | + | |
| 5534 | +<script> | |
| 5535 | +ysi.registerCallback(function () { | |
| 5536 | + if (typeof ClickTrack != "undefined") { | |
| 5537 | + ClickTrack._PageDisplayName = 'Rmxvb3IgUGxhbnMjU3lzdGVtLlJhbmRvbQ%3d%3d-WFFrxUS42po%3d'; | |
| 5538 | + ClickTrack.SiteSection = 'PropertyPortal' ; | |
| 5539 | + ClickTrack._CCDisplayName = ''; | |
| 5540 | + ClickTrack.CCQS = ''; | |
| 5541 | + ClickTrack._ULI = ''; | |
| 5542 | + ClickTrack._Property = 'MjM4NDc2NyNTeXN0ZW0uUmFuZG9t-dONg5bn5YVQ%3d'; | |
| 5543 | + ClickTrack.isPreview = ''; | |
| 5544 | + | |
| 5545 | + | |
| 5546 | + ClickTrack.init(); | |
| 5547 | + } | |
| 5548 | + | |
| 5549 | + ysi.clicktrack && ysi.clicktrack.CheckAndPassCTUserAndVisit('securecafe.com','securecafeapplicant.com','rentcafe.com'); | |
| 5550 | +}); | |
| 5551 | +</script> | |
| 5552 | + | |
| 5553 | + | |
| 5554 | + | |
| 5555 | + | |
| 5556 | + | |
| 5557 | +<input type="hidden" id="dni-request-verification-token" name="dni-request-verification-token" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ1n9pcyx_6J8afX5LduiIeOfnD9K1dcI3YWRdxA9zJKS4IlGjAzrTw2ejzeey-kWRTEl7UgHDpHQeiZ-Z-4sOcVPD7Fn7S54U5aH-ZzbT8talPeuPsjB8Cno84ObMTG7ug"> | |
| 5558 | +<script> | |
| 5559 | + | |
| 5560 | + var leadAttrSecureCafe = "securecafe.com"; | |
| 5561 | + var leadAttrReactOle = "securecafeapplicant.com"; | |
| 5562 | + var leadAttrRentCafe = "rentcafe.com"; | |
| 5563 | + | |
| 5564 | + function leadAttrHrefMatchesOleDomains(href) { | |
| 5565 | + if (!href) return false; | |
| 5566 | + var h = href.trim().toLowerCase(); | |
| 5567 | + var d0 = leadAttrSecureCafe.toLowerCase(); | |
| 5568 | + var d1 = leadAttrReactOle.toLowerCase(); | |
| 5569 | + var d2 = leadAttrRentCafe.toLowerCase(); | |
| 5570 | + return (d0.length && h.indexOf(d0) > -1) || (d1.length && h.indexOf(d1) > -1) || (d2.length && h.indexOf(d2) > -1); | |
| 5571 | + } | |
| 5572 | + | |
| 5573 | + function leadAttrHrefIsReactOleHostedUrl(href) { | |
| 5574 | + if (!href) return false; | |
| 5575 | + var h = href.trim().toLowerCase(); | |
| 5576 | + var d1 = leadAttrReactOle.toLowerCase(); | |
| 5577 | + var d2 = leadAttrRentCafe.toLowerCase(); | |
| 5578 | + return (d1.length && h.indexOf(d1) > -1) || (d2.length && h.indexOf(d2) > -1); | |
| 5579 | + } | |
| 5580 | + | |
| 5581 | + ysi.registerCallback(function () { | |
| 5582 | + | |
| 5583 | + if (!ysi.cookie.read('PropLeadSource_' + 2384767)) { | |
| 5584 | + if ('' === 'True') { | |
| 5585 | + ysi.cookie.create("PropLeadSource_" + 2384767, 'rentcafe',30); | |
| 5586 | + } else { | |
| 5587 | + ysi.cookie.create("PropLeadSource_" + 2384767, 'portal', 30); | |
| 5588 | + } | |
| 5589 | + } | |
| 5590 | + | |
| 5591 | + if (typeof RCTPCampaign != "undefined") { | |
| 5592 | + | |
| 5593 | + console.log("Initializing RCTP Campaign"); | |
| 5594 | + | |
| 5595 | + RCTPCampaign.PId = "2384767"; | |
| 5596 | + RCTPCampaign.UrlPattern = ""; | |
| 5597 | + RCTPCampaign.UseMVCDNI = "1"; | |
| 5598 | + RCTPCampaign.init(); | |
| 5599 | + | |
| 5600 | + RCTPCampaign.DoExecuteAfterCampaignLoad(function () { | |
| 5601 | + if (RCTPCampaign.CampaignDetails.CampaignID != "0" && RCTPCampaign.CampaignDetails.CampaignID != "") { | |
| 5602 | + | |
| 5603 | + console.log("RC Campaign Type - " + RCTPCampaign.CampaignDetails.CampaignType); | |
| 5604 | + console.log("RC Campaign Id - " + RCTPCampaign.CampaignDetails.CampaignID); | |
| 5605 | + if (RCTPCampaign.CampaignDetails.CampaignType == "StandardCampaign") | |
| 5606 | + { | |
| 5607 | + ysi.cookie.create("RCStandardCampaignId_" + 2384767, RCTPCampaign.CampaignDetails.CampaignID); | |
| 5608 | + } | |
| 5609 | + else | |
| 5610 | + { | |
| 5611 | + ysi.cookie.create("RCDynamicCampaignId_" + 2384767, RCTPCampaign.CampaignDetails.CampaignID); | |
| 5612 | + } | |
| 5613 | + document.querySelectorAll('.click-to-call').forEach(function(dots) { | |
| 5614 | + dots.innerHTML = RCTPCampaign.CampaignDetails.Phone; | |
| 5615 | + }); | |
| 5616 | + document.querySelectorAll('.click-to-call-href').forEach(function(dots) { | |
| 5617 | + dots.href = "tel:" + RCTPCampaign.CampaignDetails.Phone; | |
| 5618 | + }); | |
| 5619 | + document.querySelectorAll('.click_to_call_href_nudge').forEach(function(dots) { | |
| 5620 | + dots.href = "tel:" + RCTPCampaign.CampaignDetails.Phone; | |
| 5621 | + }); | |
| 5622 | + document.querySelectorAll('.click-to-call-title').forEach(function(dots) { | |
| 5623 | + dots.title = "Call Us at " + RCTPCampaign.CampaignDetails.Phone; | |
| 5624 | + dots.setAttribute("data-original-title","Call Us at " + RCTPCampaign.CampaignDetails.Phone); | |
| 5625 | + }); | |
| 5626 | + | |
| 5627 | + if ( RCTPCampaign.CampaignDetails.CampaignID != "0" && RCTPCampaign.CampaignDetails.CampaignID != "" ) { | |
| 5628 | + document.querySelectorAll('a:not(.donottrack)').forEach( | |
| 5629 | + function (el) { | |
| 5630 | + var href = el.getAttribute('href'); | |
| 5631 | + if (href) { | |
| 5632 | + if (leadAttrHrefMatchesOleDomains(href)) { | |
| 5633 | + el.href = RCTPCampaign.AppendCrossDomainParamsInURL(href) | |
| 5634 | + } | |
| 5635 | + } | |
| 5636 | + }); | |
| 5637 | + } | |
| 5638 | + | |
| 5639 | + | |
| 5640 | + } | |
| 5641 | + | |
| 5642 | + | |
| 5643 | + }); | |
| 5644 | + | |
| 5645 | + | |
| 5646 | + } | |
| 5647 | + | |
| 5648 | + | |
| 5649 | + if (ysi.cookie.read('PropLeadSource_' + 2384767)) | |
| 5650 | + { | |
| 5651 | + | |
| 5652 | + var propleadsource=ysi.cookie.read('PropLeadSource_' + 2384767) | |
| 5653 | + document.querySelectorAll('a:not(.donottrack)').forEach( | |
| 5654 | + function (el) { | |
| 5655 | + var href = el.getAttribute('href'); | |
| 5656 | + if (href) { | |
| 5657 | + if (leadAttrHrefMatchesOleDomains(href) && !leadAttrHrefIsReactOleHostedUrl(href)) { | |
| 5658 | + if (href.indexOf("PropLeadSource") === -1) | |
| 5659 | + { | |
| 5660 | + if (href.indexOf("?") == -1) { | |
| 5661 | + href = href + "?"; | |
| 5662 | + } else { | |
| 5663 | + href = href + "&"; | |
| 5664 | + } | |
| 5665 | + href = href + 'PropLeadSource_' + 2384767 + "=" + propleadsource; | |
| 5666 | + el.setAttribute('href', href); | |
| 5667 | + } | |
| 5668 | + } | |
| 5669 | + } | |
| 5670 | + }); | |
| 5671 | + } | |
| 5672 | + }); | |
| 5673 | + | |
| 5674 | +</script> | |
| 5675 | + | |
| 5676 | +<script> | |
| 5677 | + ysi.SiteId = 'NDc1ODQ0-LVf1bALv%2fwU%3d'; | |
| 5678 | + ysi.registerCallback(function () { | |
| 5679 | + ysi.SiteId='NDc1ODQ0-LVf1bALv%2fwU%3d'; | |
| 5680 | + if (window.location.search ) { | |
| 5681 | + if (window.location.search.includes("touchpoint")) { | |
| 5682 | + if (!ysi.cookie.read('Propleadtouchpoint_' + 2384767)) { | |
| 5683 | + var urlParams = new URLSearchParams(window.location.search); | |
| 5684 | + urlParams.forEach(function (value, key) { | |
| 5685 | + if (key == "touchpoint" && value.length > 0) { | |
| 5686 | + ysi.cookie.create("Propleadtouchpoint_" + 2384767, value, 0.0138889); | |
| 5687 | + } | |
| 5688 | + }); | |
| 5689 | + } | |
| 5690 | + } | |
| 5691 | + if (window.location.search.includes("conversationguid")) { | |
| 5692 | + | |
| 5693 | + var urlParams = new URLSearchParams(window.location.search); | |
| 5694 | + urlParams.forEach(function (value, key) { | |
| 5695 | + if (key == "conversationguid" && value.length > 0 && value.length != "undefined") { | |
| 5696 | + var conversationguidval = value; | |
| 5697 | + ysi.cookie.create("cgid", conversationguidval, 0.0138889); | |
| 5698 | + } | |
| 5699 | + }); | |
| 5700 | + } | |
| 5701 | + | |
| 5702 | + if (window.location.search.includes("ccpid")) { | |
| 5703 | + if (!ysi.cookie.read('ccpid_' + 2384767)) { | |
| 5704 | + var urlParams = new URLSearchParams(window.location.search); | |
| 5705 | + urlParams.forEach(function (value, key) { | |
| 5706 | + if (key == "ccpid" && value.length > 0) { | |
| 5707 | + ysi.cookie.create("ccpid_" + 2384767, value, 0.0138889); | |
| 5708 | + } | |
| 5709 | + }); | |
| 5710 | + } | |
| 5711 | + } | |
| 5712 | + | |
| 5713 | + } | |
| 5714 | + }); | |
| 5715 | + | |
| 5716 | + | |
| 5717 | +</script> | |
| 5718 | + | |
| 5719 | + | |
| 5720 | + | |
| 5721 | + | |
| 5722 | + | |
| 5723 | + | |
| 5724 | + | |
| 5725 | + | |
| 5726 | + | |
| 5727 | + <link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/photogallery-default-widget.558563.134322940780000000.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/photogallery-default-widget.558563.134322940780000000.css"></noscript> | |
| 5728 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/modal-widget.558563.134322940780000000.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/modal-widget.558563.134322940780000000.css"></noscript> | |
| 5729 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/ysi.datepicker.558563.134322940780000000.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/ysi.datepicker.558563.134322940780000000.css"></noscript> | |
| 5730 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/floorplans-optimized-layout-widget.558563.134322940780000000.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/floorplans-optimized-layout-widget.558563.134322940780000000.css"></noscript> | |
| 5731 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/floorplans-filter.558563.134322940780000000.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/floorplans-filter.558563.134322940780000000.css"></noscript> | |
| 5732 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/floorplan-updated-layout-widget.558563.134322940780000000.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/floorplan-updated-layout-widget.558563.134322940780000000.css"></noscript> | |
| 5733 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/floorplans-optimized-image-modal.558563.134322940780000000.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/floorplans-optimized-image-modal.558563.134322940780000000.css"></noscript> | |
| 5734 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/prequal-widget.558563.134322940780000000.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/prequal-widget.558563.134322940780000000.css"></noscript> | |
| 5735 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/office-hours-layout1-widget.558563.134322940780000000.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/office-hours-layout1-widget.558563.134322940780000000.css"></noscript> | |
| 5736 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/address-widget.558563.134322940780000000.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/address-widget.558563.134322940780000000.css"></noscript> | |
| 5737 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/nudge-widget.558563.134322940780000000.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/nudge-widget.558563.134322940780000000.css"></noscript> | |
| 5738 | +<link href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/nudge-discreet.558563.134322940780000000.css" rel="stylesheet" type="text/css"> | |
| 5739 | + | |
| 5740 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.colors.134322934430000000.js"></script> | |
| 5741 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/nudge-personalized.134322934350000000.js"></script> | |
| 5742 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.bsn.134322934430000000.js"></script> | |
| 5743 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.lib.134322934460000000.js"></script> | |
| 5744 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.smartclasses.134322934470000000.js"></script> | |
| 5745 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/siteeditor-preview.134322934220000000.js"></script> | |
| 5746 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/incompatible-browser.134322934150000000.js" nomodule="nomodule"></script> | |
| 5747 | +<script src="https://cdngeneralmvc.rentcafe.com/admin/admin-area.js" defer="defer"></script> | |
| 5748 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.bootstrap.carousel.134322934410000000.js"></script> | |
| 5749 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/focus-scroll-visible.134322934300000000.js"></script> | |
| 5750 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/socialmedia-widget.134322934400000000.js"></script> | |
| 5751 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/floorplan-optimized-image-modals.134322934300000000.js"></script> | |
| 5752 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/floating-label-dropdown.134322934290000000.js"></script> | |
| 5753 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/nudge-widget.134322934350000000.js"></script> | |
| 5754 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/form-contact-session.134322934300000000.js"></script> | |
| 5755 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.datepicker.134322934440000000.js"></script> | |
| 5756 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.modal.134322934460000000.js"></script> | |
| 5757 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/login-links-dropdown.134322934320000000.js"></script> | |
| 5758 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/menu.134322934340000000.js"></script> | |
| 5759 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/floorplans-widget.134322934300000000.js"></script> | |
| 5760 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/contactus.134322934260000000.js"></script> | |
| 5761 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/contactmodal-widget.134322934250000000.js"></script> | |
| 5762 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/servertranslation.134322934220000000.js"></script> | |
| 5763 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/floorplan-optimized-layout-widget.134322934300000000.js"></script> | |
| 5764 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/recaptcha-widget.134322934370000000.js"></script> | |
| 5765 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/modal-widget.134322934340000000.js"></script> | |
| 5766 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/prequal-widget.134322934360000000.js"></script> | |
| 5767 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.bootstrap.carousel.lightbox.134322934410000000.js"></script> | |
| 5768 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/photogallery_default-widget.134322934360000000.js"></script> | |
| 5769 | +<script src="https://t.rentcafe.com/rctv1.4.min.js"></script> | |
| 5770 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/clicktrack-widget.134322934250000000.js"></script> | |
| 5771 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/leadattributionanddni.134322934320000000.js"></script> | |
| 5772 | + | |
| 5773 | + | |
| 5774 | + <script>ysi.serviceworker={register:function(){if("serviceWorker"in navigator){let e=document.getElementById("mainCSS"),r=e?encodeURI(e.getAttribute("href")):"",i=r?r.substr(r.indexOf(".")+1,r.lastIndexOf(".")-r.indexOf(".")-1):"",s=document.querySelectorAll("[data-name=property-logo]")[0],t=s?"PICTURE"===s.tagName?s.getElementsByTagName("img")[0].src:s.src:"",o="/serviceworker.js?version="+i+"&css="+r+"&logo="+(t=t?encodeURI(t):"")+"&serviceworker=1";navigator.serviceWorker.register(o)}}},ysi.serviceworker&&ysi.serviceworker.register();</script> | |
| 5775 | + | |
| 5776 | + | |
| 5777 | + | |
| 5778 | + | |
| 5779 | + | |
| 5780 | + | |
| 5781 | + | |
| 5782 | + | |
| 5783 | + <!-- | |
| 5784 | + <yardi-add-sass path="widgets/go-to-top" async="true" /> | |
| 5785 | +--> | |
| 5786 | + | |
| 5787 | +<div id="goToTop" role="complementary" aria-labelledby="gototoparialabel" lang=""> | |
| 5788 | + <button data-selenium-id="btngototop" class="btn btn-dark border-0 widget-left fadeOut" lang=""><svg width="16px" height="26px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z"></path></svg><span class="sr-only" id="gototoparialabel" lang="">Go to top</span></button> | |
| 5789 | +</div> | |
| 5790 | + | |
| 5791 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/go-to-top.134322934300000000.js" defer="defer"></script> | |
| 5792 | + | |
| 5793 | + | |
| 5794 | + | |
| 5795 | + | |
| 5796 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.localstorage.134322934460000000.js"></script> | |
| 5797 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/adwords_gadid.134322934040000000.js"></script> | |
| 5798 | + | |
| 5799 | +<script id="cookieinfo" src="https://cdngeneralmvc.rentcafe.com/common/js/cookiepolicy.js" data-bg="#454545" data-fg="#FFFFFF" data-link="#FFFFFF" data-cookie="CookieInfoScript" data-text-align="left" data-close-bg="#737373" data-close-text="Accept Notice" data-expires="Fri, 27 Aug 2027 19:17:25" data-message="By using this website you agree to our use of cookies as described in our <a href="https://www.aaltosuites.ca/privacypolicy" target="_blank" style="padding:10px;background-color:#E0E0E0 !important;color: #000000 !important; text-decoration: none;">cookie policy.</a>"></script> <script> | |
| 5800 | + document.addEventListener("DOMContentLoaded", function (event) { | |
| 5801 | + setTimeout(function () { | |
| 5802 | + var cookieclose = document.getElementsByClassName('cookieinfo-close'); | |
| 5803 | + if (cookieclose[0] != null) { | |
| 5804 | + cookieclose[0].setAttribute('data-selenium-id', 'CloseCookie'); | |
| 5805 | + } | |
| 5806 | + }, 1000); | |
| 5807 | + }); | |
| 5808 | + </script> | |
| 5809 | + | |
| 5810 | + | |
| 5811 | + | |
| 5812 | + <style> | |
| 5813 | + :root { | |
| 5814 | + --helpwidget-background-color: #000000; | |
| 5815 | + --helpwidget-outline-color: #ffffff; | |
| 5816 | + } | |
| 5817 | + </style> | |
| 5818 | +<div id="help-widget" class="w-100 widget-right" role="complementary" aria-label="Front desk - how can we help you?" lang=""> | |
| 5819 | + <input type="hidden" name="propertyid" id="propertyid" value="2384767"> | |
| 5820 | + | |
| 5821 | + | |
| 5822 | + | |
| 5823 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/help-widget-default.558563.134322940780000000.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/help-widget-default.558563.134322940780000000.css"></noscript> | |
| 5824 | + | |
| 5825 | + | |
| 5826 | +<!---START: Layout horizontal---> | |
| 5827 | +<!---NOTE: .frontdesk-animation is used for animation. Remove class if you want to remove animation---> | |
| 5828 | + | |
| 5829 | +<div id="frontDesk-widget-horizontal" class="frontDesk-widget-horizontal horizontal position-fixed d-flex frontdesk-animation" lang=""> | |
| 5830 | + <button id="btnFrontDesk" type="button" class="btn btn-primary hide-frontDesk-widget bell animation-bell" aria-expanded="false" data-selenium-id="showHidefrontDeskWidget" lang="" aria-label="Show Front Desk"> | |
| 5831 | + <span class="d-block bounce-dot" lang=""></span> | |
| 5832 | + <span class="btn-bell d-inline-block" lang=""> | |
| 5833 | + <span class="fas fa-concierge-bell" aria-hidden="true" lang=""></span> | |
| 5834 | + <span class="sr-only" lang="">Front desk options </span> | |
| 5835 | + </span> | |
| 5836 | + </button> | |
| 5837 | + <div id="frontDesk-widget-wrapper" class="frontDesk-widget-wrapper close-widget" lang=""> | |
| 5838 | + <!-- Email Us - modal --> | |
| 5839 | + <button id="email-us-btn" data-modal-url="/contactus?IsDialog=1&IsFrontDesk=true" type="button" class="btn btn-primary email-us-btn widget-btns trigger-popup" data-selenium-id="emailUs" data-toggle="tooltip" data-placement="top" data-animation="true" data-title="Envoyez-nous un courriel" lang="" data-original-title="Envoyez-nous un courriel" tabindex="-1" disabled="disabled" aria-hidden="true"><svg focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px" height="24px" viewBox="0 0 24 24" stroke-width="2"><g stroke-width="2" transform="translate(0, 0)"><polyline data-cap="butt" data-color="color-2" points="1.614 3.558 12 13 22.385 3.559" fill="none" stroke="#ffffff" stroke-miterlimit="10" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter"></polyline> <rect x="1" y="3" width="22" height="18" rx="2" ry="2" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect></g></svg><span class="sr-only" lang="">Envoyez-nous un courriel</span></button> | |
| 5840 | + | |
| 5841 | + <!-- Call Us - mobile --> | |
| 5842 | + <a id="call-us-btn-phone" href="tel:(819) 809-9131" onclick="callusGA4trackM();" class="btn btn-primary click-to-call-href click-to-call-title call-us-btn widget-btns d-inline-block d-md-none" data-selenium-id="callUsPhone" data-toggle="tooltip" data-placement="top" data-animation="true" data-title="Call Us at (819) 809-9131" lang="" data-original-title="Call Us at (819) 809-9131" tabindex="-1" aria-hidden="true"><svg focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px" height="24px" viewBox="0 0 48 48" stroke-width="4"><g stroke-width="4" transform="translate(0, 0)"><path d="M31.041,28.94l-3.423,4.279A36.116,36.116,0,0,1,14.782,20.384l4.279-3.423a2.908,2.908,0,0,0,.84-3.45L16,4.728a2.908,2.908,0,0,0-3.39-1.635L5.186,5.019A2.925,2.925,0,0,0,3.028,8.25,43.142,43.142,0,0,0,39.751,44.973a2.925,2.925,0,0,0,3.23-2.158l1.926-7.425A2.91,2.91,0,0,0,43.273,32l-8.782-3.9A2.907,2.907,0,0,0,31.041,28.94Z" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="4" stroke-linejoin="miter"></path></g></svg><span class="sr-only" lang="">APPELEZ-NOUS</span></a> | |
| 5843 | + <!-- Call Us - desktop --> | |
| 5844 | + <button id="call-us-btn" aria-label="Call Us" type="button" class="btn btn-primary click-to-call-title call-us-btn widget-btns trigger-popup d-none d-md-inline-block" data-selenium-id="callUsDesktop" data-toggle="tooltip" data-placement="top" data-animation="true" data-title="Call Us at (819) 809-9131" lang="" data-original-title="Call Us at (819) 809-9131" tabindex="-1" disabled="disabled" aria-hidden="true"><svg focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px" height="24px" viewBox="0 0 48 48" stroke-width="4"><g stroke-width="4" transform="translate(0, 0)"><path d="M31.041,28.94l-3.423,4.279A36.116,36.116,0,0,1,14.782,20.384l4.279-3.423a2.908,2.908,0,0,0,.84-3.45L16,4.728a2.908,2.908,0,0,0-3.39-1.635L5.186,5.019A2.925,2.925,0,0,0,3.028,8.25,43.142,43.142,0,0,0,39.751,44.973a2.925,2.925,0,0,0,3.23-2.158l1.926-7.425A2.91,2.91,0,0,0,43.273,32l-8.782-3.9A2.907,2.907,0,0,0,31.041,28.94Z" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="4" stroke-linejoin="miter"></path></g></svg></button> | |
| 5845 | + | |
| 5846 | + | |
| 5847 | + | |
| 5848 | + | |
| 5849 | + | |
| 5850 | + | |
| 5851 | + <!-- Schedule tour --> | |
| 5852 | + <button id="schedule-a-tour-btn" data-modal-url="/scheduletour?IsDialog=true" type="button" class="btn btn-primary schedule-a-tour-btn widget-btns trigger-popup" data-selenium-id="scheduleTour" data-toggle="tooltip" data-placement="top" data-animation="true" data-title="Planifier une visite" lang="" data-original-title="Planifier une visite" tabindex="-1" disabled="disabled" aria-hidden="true"><svg focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px" height="24px" viewBox="0 0 24 24" stroke-width="2"><g stroke-width="2" transform="translate(0, 0)"><rect data-color="color-2" x="5" y="12" width="2" height="1" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect> <rect data-color="color-2" x="11" y="12" width="2" height="1" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect> <rect data-color="color-2" x="5" y="17" width="2" height="1" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect> <rect data-color="color-2" x="11" y="17" width="2" height="1" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect> <rect data-color="color-2" x="17" y="12" width="2" height="1" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect> <rect data-color="color-2" data-stroke="none" x="5" y="12" width="2" height="1" fill="#ffffff"></rect> <rect data-color="color-2" data-stroke="none" x="11" y="12" width="2" height="1" fill="#ffffff"></rect> <rect data-color="color-2" data-stroke="none" x="5" y="17" width="2" height="1" fill="#ffffff"></rect> <rect data-color="color-2" data-stroke="none" x="11" y="17" width="2" height="1" fill="#ffffff"></rect> <rect data-color="color-2" data-stroke="none" x="17" y="12" width="2" height="1" fill="#ffffff"></rect> <rect x="1" y="3" width="22" height="19" rx="2" ry="2" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect> <line x1="6" y1="1" x2="6" y2="4" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></line> <line x1="18" y1="1" x2="18" y2="4" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></line> <line x1="1" y1="8" x2="23" y2="8" fill="none" stroke="#ffffff" stroke-miterlimit="10" stroke-width="2"></line></g></svg><span class="sr-only" lang="">Planifier une visite</span></button> | |
| 5853 | + | |
| 5854 | + | |
| 5855 | + </div> | |
| 5856 | +</div> | |
| 5857 | +<!---END: Layout horizontal---> | |
| 5858 | +<!--- Show/Hide aria-label for Front Desk button ---> | |
| 5859 | +<script> | |
| 5860 | +(function (d) { | |
| 5861 | + "use strict"; | |
| 5862 | + function updateBtnFrontDeskAriaLabel(btn) { | |
| 5863 | + if (!btn || btn.id !== "btnFrontDesk") return; | |
| 5864 | + var expanded = btn.getAttribute("aria-expanded"); | |
| 5865 | + btn.setAttribute("aria-label", expanded === "true" ? "Hide Front Desk" : "Show Front Desk"); | |
| 5866 | + } | |
| 5867 | + function init() { | |
| 5868 | + var btn = d.getElementById("btnFrontDesk"); | |
| 5869 | + if (!btn) return; | |
| 5870 | + updateBtnFrontDeskAriaLabel(btn); | |
| 5871 | + if (window.MutationObserver) { | |
| 5872 | + var observer = new MutationObserver(function () { updateBtnFrontDeskAriaLabel(btn); }); | |
| 5873 | + observer.observe(btn, { attributes: true, attributeFilter: ["aria-expanded"] }); | |
| 5874 | + } | |
| 5875 | + } | |
| 5876 | + if (d.readyState === "loading") d.addEventListener("DOMContentLoaded", init); | |
| 5877 | + else init(); | |
| 5878 | +})(document); | |
| 5879 | +</script> | |
| 5880 | + | |
| 5881 | + <style> | |
| 5882 | + :root { | |
| 5883 | + --helpwidget-window-x-offset: 0px; | |
| 5884 | + --helpwidget-window-y-offset: 0px; | |
| 5885 | + } | |
| 5886 | + </style> | |
| 5887 | + | |
| 5888 | + <!--START Modal: Contact Us / Email Us --> | |
| 5889 | + <div id="email-us-window" class="popup-widgets-window draggable scrollable " lang=""> | |
| 5890 | + <div class="popup-content" lang=""> | |
| 5891 | + <div class="popup-header modal-header" lang=""> | |
| 5892 | + <h2 class="m-0 text-truncate" lang="">Contactez-nous</h2> | |
| 5893 | + <button class="close" aria-label="Close this dialog window" data-selenium-id="close" lang=""> <span aria-hidden="true" class="fa fa-times" lang=""></span></button> | |
| 5894 | + </div> | |
| 5895 | + <div id="help-widget-email-modal-body" class="popup-body p-4" lang=""> | |
| 5896 | + </div> | |
| 5897 | + </div> | |
| 5898 | + </div> | |
| 5899 | + <!--END Modal: Contact Us / Email Us --> | |
| 5900 | + <!--START Modal: Call Us --> | |
| 5901 | + <div id="call-us-window" class="popup-widgets-window draggable scrollable " lang=""> | |
| 5902 | + <div class="popup-content" lang=""> | |
| 5903 | + <div class="popup-header modal-header" lang=""> | |
| 5904 | + <h2 class="m-0 text-truncate" lang="">APPELEZ-NOUS</h2> | |
| 5905 | + <button class="close" aria-label="Close this dialog window" data-selenium-id="close" lang=""> <span aria-hidden="true" class="fa fa-times" lang=""></span></button> | |
| 5906 | + </div> | |
| 5907 | + <div class="popup-body p-4 text-center" lang=""> | |
| 5908 | + <strong class="text-xl mb-4 d-block" lang=""> | |
| 5909 | + | |
| 5910 | + <style>.mobile-only .click-to-call{display:none}</style> | |
| 5911 | + | |
| 5912 | + <div class="ysi-phone-widget ysi-phone-wrapper" lang=""> | |
| 5913 | + <div class="d-inline-flex" lang=""> | |
| 5914 | + <a data-selenium-id="click_to_call" onclick="fireGaPhone()" href="tel:+1 819-809-9131" aria-label="Call Aalto at +1 819-809-9131" class="ysi-phone-number click-to-call-href text-decoration-none color-inherit " lang=""> | |
| 5915 | + <span aria-hidden="true" class="fa-flip-horizontal fas fa-phone mobile-phone-icon" lang=""></span> | |
| 5916 | + <span class="click-to-call ml-2 text-underline" lang="">+1 819-809-9131</span> | |
| 5917 | + </a> | |
| 5918 | + | |
| 5919 | + </div> | |
| 5920 | + </div> | |
| 5921 | + <script> | |
| 5922 | + function fireGaPhone() { | |
| 5923 | + if (typeof gtag != 'undefined') { | |
| 5924 | + var myPage = location.pathname.replace("/", ""); | |
| 5925 | + if (myPage == "") { myPage = "index"; } | |
| 5926 | + if (false ) { | |
| 5927 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 5928 | + gtag('event', 'phone_call', { 'property_name': propertyName, 'page_name': document.title, 'page_url': window.location.href, 'header_phone_number': '+1 819-809-9131'}); | |
| 5929 | + } | |
| 5930 | + gtag('event', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 5931 | + gtag('rc.send', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 5932 | + } | |
| 5933 | + } | |
| 5934 | + </script> | |
| 5935 | +</strong> | |
| 5936 | + | |
| 5937 | + | |
| 5938 | + <div class="ysi-office-hours-widget ysi-office-hours-wrapper" lang=""> | |
| 5939 | + <div class="d-inline-flex" lang=""> | |
| 5940 | + <div class="ysi-office-hours" data-selenium-id="SID_footer_officeHours" lang=""> | |
| 5941 | + <ul class="list-unstyled mb-0" lang=""> | |
| 5942 | + <li class=" " lang=""> | |
| 5943 | + <span class="office-hours-day" data-selenium-id="OHMondayFriday" lang="">Lundi<span class="sr-only" lang="">à</span>- Vendredi :</span> | |
| 5944 | + <span class="office-hours-time" data-selenium-id="OHMondayFridayTime" lang="">9h<span class="sr-only" lang="">à</span>- 18h</span> | |
| 5945 | +</li> | |
| 5946 | + <li class=" " lang=""> | |
| 5947 | + <span class="office-hours-day" data-selenium-id="OHSaturday" lang="">Samedi :</span> | |
| 5948 | + <span class="office-hours-time" data-selenium-id="OHSaturdayTime" lang="">10h<span class="sr-only" lang="">à</span>- 17h</span> | |
| 5949 | +</li> | |
| 5950 | + <li class=" " lang=""> | |
| 5951 | + <span class="office-hours-day" data-selenium-id="OHSunday" lang="">Dimanche :</span> | |
| 5952 | + <span class="office-hours-time" data-selenium-id="OHSundayTime" lang="">Fermé</span> | |
| 5953 | +</li> | |
| 5954 | + </ul> | |
| 5955 | + </div> | |
| 5956 | + </div> | |
| 5957 | + </div> | |
| 5958 | + | |
| 5959 | + </div> | |
| 5960 | + <div class="border-top px-4 py-4 text-center" lang=""> | |
| 5961 | + | |
| 5962 | + | |
| 5963 | + | |
| 5964 | + | |
| 5965 | + | |
| 5966 | +<div class="ysi-address-widget ysi-address-wrapper vertical" lang=""> | |
| 5967 | + <div class="d-inline-flex" lang=""> | |
| 5968 | + <address class="ysi-address"> | |
| 5969 | + <a class="address-link color-inherit d-block" href="https://maps.google.com?q=10 Rue Jos-Montferrand Gatineau, QC J8X 0A6" target="_blank" rel="noreferrer" lang=""> | |
| 5970 | + <div itemprop="name" data-selenium-id="address_propname" lang="">Aalto</div> | |
| 5971 | + <div itemprop="address" lang=""> | |
| 5972 | + <div data-selenium-id="address_street" lang=""> | |
| 5973 | + 10 Rue Jos-Montferrand | |
| 5974 | + </div> | |
| 5975 | + <div lang=""> | |
| 5976 | + <span data-selenium-id="address_city" lang="">Gatineau</span>,<span data-selenium-id="address_state" lang="">QC</span><span data-selenium-id="address_zip" lang=""> J8X 0A6</span> | |
| 5977 | + </div> | |
| 5978 | + </div> | |
| 5979 | + <span class="sr-only" lang="">S'ouvre dans un nouvel onglet</span> | |
| 5980 | + </a> | |
| 5981 | + </address> | |
| 5982 | + | |
| 5983 | + </div> | |
| 5984 | +</div> | |
| 5985 | + | |
| 5986 | + | |
| 5987 | + </div> | |
| 5988 | + </div> | |
| 5989 | + </div> | |
| 5990 | + <!--END Modal: Call Us --> | |
| 5991 | + | |
| 5992 | + | |
| 5993 | + | |
| 5994 | + <div id="schedule-a-tour-window" class="popup-widgets-window draggable scrollable " lang=""> | |
| 5995 | + <div class="popup-content" lang=""> | |
| 5996 | + <div class="popup-header modal-header" lang=""> | |
| 5997 | + <h2 class="m-0 text-truncate" lang="">Planifier une visite</h2> | |
| 5998 | + <button class="close" aria-label="Close this dialog window" data-selenium-id="close" lang=""> <span aria-hidden="true" class="fa fa-times" lang=""></span></button> | |
| 5999 | + </div> | |
| 6000 | + <div id="help-widget-schedule-a-tour-modal-body" class="popup-body" lang=""> | |
| 6001 | + <!-- Modal content loaded here --> | |
| 6002 | + </div> | |
| 6003 | + </div> | |
| 6004 | + </div> | |
| 6005 | + | |
| 6006 | +</div> | |
| 6007 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.modal.134322934460000000.js"></script> | |
| 6008 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/recaptcha-widget.134322934370000000.js"></script> | |
| 6009 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/contactus.134322934260000000.js"></script> | |
| 6010 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/contactmodal-widget.134322934250000000.js"></script> | |
| 6011 | +<script> | |
| 6012 | + | |
| 6013 | + | |
| 6014 | + function textGA4track(eventName) { | |
| 6015 | + if (typeof gtag != 'undefined') { | |
| 6016 | + gtag('event', eventName, { 'property_name': document.querySelector('meta[name="author"]').content, 'page_url': window.location.href, 'page_name': document.title, 'form_name': 'text_us', 'button_label': 'text_us' }); | |
| 6017 | + } | |
| 6018 | + } | |
| 6019 | + | |
| 6020 | + let chatBtn = document.querySelector('#rentcafe-conversations-webchat-btn'); | |
| 6021 | + if (chatBtn) { | |
| 6022 | + chatBtn.addEventListener('click', function () { | |
| 6023 | + if (typeof gtag != 'undefined') { | |
| 6024 | + gtag('event', 'rentcafe_chatbot', { | |
| 6025 | + 'property_name': document.querySelector('meta[name="author"]').content, | |
| 6026 | + 'page_url': window.location.href, | |
| 6027 | + 'page_name': document.title, | |
| 6028 | + 'form_name': 'chat', | |
| 6029 | + 'button_label': 'chat_with_us' | |
| 6030 | + }); | |
| 6031 | + } | |
| 6032 | + }); | |
| 6033 | + } | |
| 6034 | + | |
| 6035 | + let textUsBtn = document.querySelector('#text-us-btn'); | |
| 6036 | + if (textUsBtn) { | |
| 6037 | + textUsBtn.addEventListener('click', function () { | |
| 6038 | + textGA4track('front_desk'); | |
| 6039 | + }); | |
| 6040 | + } | |
| 6041 | + | |
| 6042 | + let rccTextUsBtn = document.querySelector('#rentcafe-conversations-sms-btn'); | |
| 6043 | + if (rccTextUsBtn) { | |
| 6044 | + rccTextUsBtn.addEventListener('click', function () { | |
| 6045 | + textGA4track('rentcafe_chatbot'); | |
| 6046 | + }); | |
| 6047 | + } | |
| 6048 | + | |
| 6049 | + let emailUsBtn = document.querySelector('#email-us-btn'); | |
| 6050 | + if (emailUsBtn) { | |
| 6051 | + emailUsBtn.addEventListener('click', function () { | |
| 6052 | + if (typeof gtag != 'undefined') { | |
| 6053 | + gtag('event', 'open_modal', { | |
| 6054 | + 'property_name': document.querySelector('meta[name="author"]').content, | |
| 6055 | + 'page_url': window.location.href, | |
| 6056 | + 'page_name': document.title, | |
| 6057 | + 'form_name': 'contact_us', | |
| 6058 | + 'button_label': 'email_us' | |
| 6059 | + }); | |
| 6060 | + } | |
| 6061 | + }); | |
| 6062 | + } | |
| 6063 | + | |
| 6064 | + // Desktop Call Us button | |
| 6065 | + let callUsDbtn = document.querySelector('#call-us-btn'); | |
| 6066 | + if (callUsDbtn) { | |
| 6067 | + callUsDbtn.addEventListener('click', function() { | |
| 6068 | + if (typeof gtag !== 'undefined') { | |
| 6069 | + gtag('event', 'open_modal', { | |
| 6070 | + 'property_name': document.querySelector('meta[name="author"]').content, | |
| 6071 | + 'page_url': window.location.href, | |
| 6072 | + 'page_name': document.title, | |
| 6073 | + 'form_name': 'call_us', | |
| 6074 | + 'button_label': 'call_us' | |
| 6075 | + }); | |
| 6076 | + } | |
| 6077 | + }); | |
| 6078 | + } | |
| 6079 | + | |
| 6080 | + // Schedule A Tour button | |
| 6081 | + let scheduleTourBtn = document.querySelector('#schedule-a-tour-btn'); | |
| 6082 | + if (scheduleTourBtn) { | |
| 6083 | + scheduleTourBtn.addEventListener('click', function() { | |
| 6084 | + if (typeof gtag !== 'undefined') { | |
| 6085 | + gtag('event', 'open_modal', { | |
| 6086 | + 'property_name': document.querySelector('meta[name="author"]').content, | |
| 6087 | + 'page_url': window.location.href, | |
| 6088 | + 'page_name': document.title, | |
| 6089 | + 'form_name': 'schedule_a_tour', | |
| 6090 | + 'button_label': 'schedule_a_tour' | |
| 6091 | + }); | |
| 6092 | + } | |
| 6093 | + }); | |
| 6094 | + } | |
| 6095 | + | |
| 6096 | +</script> | |
| 6097 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/help-widget.134322934310000000.js"></script> | |
| 6098 | + <!-- Nudge positioning --> | |
| 6099 | + <script> | |
| 6100 | + ysi.helpWidgetOverlapNudge = false; | |
| 6101 | + </script> | |
| 6102 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/help-widget-nudge-positioning.134322934300000000.js"></script> | |
| 6103 | + <!-- ScheduleTourEnabled --> | |
| 6104 | + <link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/ysi.datepicker.558563.134322940780000000.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/ysi.datepicker.558563.134322940780000000.css"></noscript> | |
| 6105 | + <link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/schedule-a-tour.558563.134322940780000000.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/schedule-a-tour.558563.134322940780000000.css"></noscript> | |
| 6106 | + <link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/help-widget-schedule-a-tour.558563.134322940780000000.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/help-widget-schedule-a-tour.558563.134322940780000000.css"></noscript> | |
| 6107 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.datepicker.134322934440000000.js" defer="defer"></script> | |
| 6108 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/schedule-tour.134322934380000000.js" defer="defer"></script> | |
| 6109 | + | |
| 6110 | + | |
| 6111 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/intltelinput.134322934150000000.js"></script> | |
| 6112 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/inttelphoneinput.134322934160000000.js"></script> | |
| 6113 | + <link href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/intlTelInput.558563.134322940780000000.css" rel="stylesheet" type="text/css"> | |
| 6114 | +<link data-href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/overlayscrollbar.558563.134322940780000000.css" rel="stylesheet" type="text/css" id="overlayScrollbarStyle"> | |
| 6115 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.scrollbars.134322934460000000.js"></script> | |
| 6116 | +<script data-src="https://cdngeneralmvc.rentcafe.com/common/js/overlayscrollbars.134322934200000000.js" data-delayload="true" id="overlayScrollbarScript" data-callback="load"></script> <script type="application/ld+json"> | |
| 6117 | +{ | |
| 6118 | + "@context": "https://www.schema.org", | |
| 6119 | + "@type": [ | |
| 6120 | + "LocalBusiness", | |
| 6121 | + "ApartmentComplex" | |
| 6122 | + ], | |
| 6123 | + "url": "https://www.aaltosuites.ca/", | |
| 6124 | + "logo": "https://resource.rentcafe.com/image/upload/q_auto,f_auto/s3/2/144684/aalto(1).png", | |
| 6125 | + "image": "", | |
| 6126 | + "priceRange": "$$", | |
| 6127 | + "accommodationFloorPlan": [ | |
| 6128 | + { | |
| 6129 | + "@type": "FloorPlan", | |
| 6130 | + "name": "Aalto II | S2", | |
| 6131 | + "numberOfBedrooms": 0, | |
| 6132 | + "numberOfFullBathrooms": 1.0, | |
| 6133 | + "floorSize": { | |
| 6134 | + "@type": "QuantitativeValue", | |
| 6135 | + "minValue": 483.0, | |
| 6136 | + "maxValue": 483.0 | |
| 6137 | + } | |
| 6138 | + }, | |
| 6139 | + { | |
| 6140 | + "@type": "FloorPlan", | |
| 6141 | + "name": "Aalto II | A2 | Accessible", | |
| 6142 | + "numberOfBedrooms": 1, | |
| 6143 | + "numberOfFullBathrooms": 1.0, | |
| 6144 | + "floorSize": { | |
| 6145 | + "@type": "QuantitativeValue", | |
| 6146 | + "minValue": 550.0, | |
| 6147 | + "maxValue": 550.0 | |
| 6148 | + } | |
| 6149 | + }, | |
| 6150 | + { | |
| 6151 | + "@type": "FloorPlan", | |
| 6152 | + "name": "Aalto | A9 | Accessible", | |
| 6153 | + "numberOfBedrooms": 1, | |
| 6154 | + "numberOfFullBathrooms": 1.0, | |
| 6155 | + "floorSize": { | |
| 6156 | + "@type": "QuantitativeValue", | |
| 6157 | + "minValue": 609.0, | |
| 6158 | + "maxValue": 609.0 | |
| 6159 | + } | |
| 6160 | + }, | |
| 6161 | + { | |
| 6162 | + "@type": "FloorPlan", | |
| 6163 | + "name": "Aalto | A7 | Accessible", | |
| 6164 | + "numberOfBedrooms": 1, | |
| 6165 | + "numberOfFullBathrooms": 1.0, | |
| 6166 | + "floorSize": { | |
| 6167 | + "@type": "QuantitativeValue", | |
| 6168 | + "minValue": 607.0, | |
| 6169 | + "maxValue": 607.0 | |
| 6170 | + } | |
| 6171 | + }, | |
| 6172 | + { | |
| 6173 | + "@type": "FloorPlan", | |
| 6174 | + "name": "Aalto II | A1", | |
| 6175 | + "numberOfBedrooms": 1, | |
| 6176 | + "numberOfFullBathrooms": 1.0, | |
| 6177 | + "floorSize": { | |
| 6178 | + "@type": "QuantitativeValue", | |
| 6179 | + "minValue": 559.0, | |
| 6180 | + "maxValue": 559.0 | |
| 6181 | + } | |
| 6182 | + }, | |
| 6183 | + { | |
| 6184 | + "@type": "FloorPlan", | |
| 6185 | + "name": "Aalto II | A3", | |
| 6186 | + "numberOfBedrooms": 1, | |
| 6187 | + "numberOfFullBathrooms": 1.0, | |
| 6188 | + "floorSize": { | |
| 6189 | + "@type": "QuantitativeValue", | |
| 6190 | + "minValue": 557.0, | |
| 6191 | + "maxValue": 557.0 | |
| 6192 | + } | |
| 6193 | + }, | |
| 6194 | + { | |
| 6195 | + "@type": "FloorPlan", | |
| 6196 | + "name": "Aalto | A12", | |
| 6197 | + "numberOfBedrooms": 1, | |
| 6198 | + "numberOfFullBathrooms": 1.0, | |
| 6199 | + "floorSize": { | |
| 6200 | + "@type": "QuantitativeValue", | |
| 6201 | + "minValue": 503.0, | |
| 6202 | + "maxValue": 503.0 | |
| 6203 | + } | |
| 6204 | + }, | |
| 6205 | + { | |
| 6206 | + "@type": "FloorPlan", | |
| 6207 | + "name": "Aalto | A8 | Accessible", | |
| 6208 | + "numberOfBedrooms": 1, | |
| 6209 | + "numberOfFullBathrooms": 1.0, | |
| 6210 | + "floorSize": { | |
| 6211 | + "@type": "QuantitativeValue", | |
| 6212 | + "minValue": 608.0, | |
| 6213 | + "maxValue": 608.0 | |
| 6214 | + } | |
| 6215 | + }, | |
| 6216 | + { | |
| 6217 | + "@type": "FloorPlan", | |
| 6218 | + "name": "Aalto | A5 | Accessible", | |
| 6219 | + "numberOfBedrooms": 1, | |
| 6220 | + "numberOfFullBathrooms": 1.0, | |
| 6221 | + "floorSize": { | |
| 6222 | + "@type": "QuantitativeValue", | |
| 6223 | + "minValue": 607.0, | |
| 6224 | + "maxValue": 607.0 | |
| 6225 | + } | |
| 6226 | + }, | |
| 6227 | + { | |
| 6228 | + "@type": "FloorPlan", | |
| 6229 | + "name": "Aalto | A10", | |
| 6230 | + "numberOfBedrooms": 1, | |
| 6231 | + "numberOfFullBathrooms": 1.0, | |
| 6232 | + "floorSize": { | |
| 6233 | + "@type": "QuantitativeValue", | |
| 6234 | + "minValue": 609.0, | |
| 6235 | + "maxValue": 609.0 | |
| 6236 | + } | |
| 6237 | + }, | |
| 6238 | + { | |
| 6239 | + "@type": "FloorPlan", | |
| 6240 | + "name": "Aalto | A11", | |
| 6241 | + "numberOfBedrooms": 1, | |
| 6242 | + "numberOfFullBathrooms": 1.0, | |
| 6243 | + "floorSize": { | |
| 6244 | + "@type": "QuantitativeValue", | |
| 6245 | + "minValue": 635.0, | |
| 6246 | + "maxValue": 635.0 | |
| 6247 | + } | |
| 6248 | + }, | |
| 6249 | + { | |
| 6250 | + "@type": "FloorPlan", | |
| 6251 | + "name": "Aalto | A13", | |
| 6252 | + "numberOfBedrooms": 1, | |
| 6253 | + "numberOfFullBathrooms": 1.0, | |
| 6254 | + "floorSize": { | |
| 6255 | + "@type": "QuantitativeValue", | |
| 6256 | + "minValue": 598.0, | |
| 6257 | + "maxValue": 598.0 | |
| 6258 | + } | |
| 6259 | + }, | |
| 6260 | + { | |
| 6261 | + "@type": "FloorPlan", | |
| 6262 | + "name": "Aalto | A6", | |
| 6263 | + "numberOfBedrooms": 1, | |
| 6264 | + "numberOfFullBathrooms": 1.0, | |
| 6265 | + "floorSize": { | |
| 6266 | + "@type": "QuantitativeValue", | |
| 6267 | + "minValue": 620.0, | |
| 6268 | + "maxValue": 620.0 | |
| 6269 | + } | |
| 6270 | + }, | |
| 6271 | + { | |
| 6272 | + "@type": "FloorPlan", | |
| 6273 | + "name": "Aalto | B2", | |
| 6274 | + "numberOfBedrooms": 1, | |
| 6275 | + "numberOfFullBathrooms": 1.0, | |
| 6276 | + "floorSize": { | |
| 6277 | + "@type": "QuantitativeValue", | |
| 6278 | + "minValue": 735.0, | |
| 6279 | + "maxValue": 735.0 | |
| 6280 | + } | |
| 6281 | + }, | |
| 6282 | + { | |
| 6283 | + "@type": "FloorPlan", | |
| 6284 | + "name": "Aalto II | A6", | |
| 6285 | + "numberOfBedrooms": 1, | |
| 6286 | + "numberOfFullBathrooms": 1.0, | |
| 6287 | + "floorSize": { | |
| 6288 | + "@type": "QuantitativeValue", | |
| 6289 | + "minValue": 653.0, | |
| 6290 | + "maxValue": 653.0 | |
| 6291 | + } | |
| 6292 | + }, | |
| 6293 | + { | |
| 6294 | + "@type": "FloorPlan", | |
| 6295 | + "name": "Aalto II | B1", | |
| 6296 | + "numberOfBedrooms": 1, | |
| 6297 | + "numberOfFullBathrooms": 1.0, | |
| 6298 | + "floorSize": { | |
| 6299 | + "@type": "QuantitativeValue", | |
| 6300 | + "minValue": 638.0, | |
| 6301 | + "maxValue": 638.0 | |
| 6302 | + } | |
| 6303 | + }, | |
| 6304 | + { | |
| 6305 | + "@type": "FloorPlan", | |
| 6306 | + "name": "Aalto II | B3", | |
| 6307 | + "numberOfBedrooms": 1, | |
| 6308 | + "numberOfFullBathrooms": 1.0, | |
| 6309 | + "floorSize": { | |
| 6310 | + "@type": "QuantitativeValue", | |
| 6311 | + "minValue": 690.0, | |
| 6312 | + "maxValue": 690.0 | |
| 6313 | + } | |
| 6314 | + }, | |
| 6315 | + { | |
| 6316 | + "@type": "FloorPlan", | |
| 6317 | + "name": "Aalto II | B2", | |
| 6318 | + "numberOfBedrooms": 1, | |
| 6319 | + "numberOfFullBathrooms": 1.0, | |
| 6320 | + "floorSize": { | |
| 6321 | + "@type": "QuantitativeValue", | |
| 6322 | + "minValue": 816.0, | |
| 6323 | + "maxValue": 816.0 | |
| 6324 | + } | |
| 6325 | + }, | |
| 6326 | + { | |
| 6327 | + "@type": "FloorPlan", | |
| 6328 | + "name": "Aalto | C7", | |
| 6329 | + "numberOfBedrooms": 2, | |
| 6330 | + "numberOfFullBathrooms": 2.0, | |
| 6331 | + "floorSize": { | |
| 6332 | + "@type": "QuantitativeValue", | |
| 6333 | + "minValue": 844.0, | |
| 6334 | + "maxValue": 844.0 | |
| 6335 | + } | |
| 6336 | + }, | |
| 6337 | + { | |
| 6338 | + "@type": "FloorPlan", | |
| 6339 | + "name": "Aalto II | C3", | |
| 6340 | + "numberOfBedrooms": 2, | |
| 6341 | + "numberOfFullBathrooms": 2.0, | |
| 6342 | + "floorSize": { | |
| 6343 | + "@type": "QuantitativeValue", | |
| 6344 | + "minValue": 875.0, | |
| 6345 | + "maxValue": 875.0 | |
| 6346 | + } | |
| 6347 | + }, | |
| 6348 | + { | |
| 6349 | + "@type": "FloorPlan", | |
| 6350 | + "name": "Aalto II | C2", | |
| 6351 | + "numberOfBedrooms": 2, | |
| 6352 | + "numberOfFullBathrooms": 2.0, | |
| 6353 | + "floorSize": { | |
| 6354 | + "@type": "QuantitativeValue", | |
| 6355 | + "minValue": 875.0, | |
| 6356 | + "maxValue": 875.0 | |
| 6357 | + } | |
| 6358 | + }, | |
| 6359 | + { | |
| 6360 | + "@type": "FloorPlan", | |
| 6361 | + "name": "Aalto II | C1", | |
| 6362 | + "numberOfBedrooms": 2, | |
| 6363 | + "numberOfFullBathrooms": 2.0, | |
| 6364 | + "floorSize": { | |
| 6365 | + "@type": "QuantitativeValue", | |
| 6366 | + "minValue": 987.0, | |
| 6367 | + "maxValue": 987.0 | |
| 6368 | + } | |
| 6369 | + }, | |
| 6370 | + { | |
| 6371 | + "@type": "FloorPlan", | |
| 6372 | + "name": "Aalto II | C6", | |
| 6373 | + "numberOfBedrooms": 2, | |
| 6374 | + "numberOfFullBathrooms": 2.0, | |
| 6375 | + "floorSize": { | |
| 6376 | + "@type": "QuantitativeValue", | |
| 6377 | + "minValue": 995.0, | |
| 6378 | + "maxValue": 995.0 | |
| 6379 | + } | |
| 6380 | + }, | |
| 6381 | + { | |
| 6382 | + "@type": "FloorPlan", | |
| 6383 | + "name": "Aalto II | D1", | |
| 6384 | + "numberOfBedrooms": 2, | |
| 6385 | + "numberOfFullBathrooms": 2.0, | |
| 6386 | + "floorSize": { | |
| 6387 | + "@type": "QuantitativeValue", | |
| 6388 | + "minValue": 1068.0, | |
| 6389 | + "maxValue": 1068.0 | |
| 6390 | + } | |
| 6391 | + } | |
| 6392 | + ], | |
| 6393 | + "sameAs": [ | |
| 6394 | + "https://www.facebook.com/zibiCanada/", | |
| 6395 | + "https://www.instagram.com/zibican/?hl=en" | |
| 6396 | + ], | |
| 6397 | + "openingHoursSpecification": [ | |
| 6398 | + { | |
| 6399 | + "@type": "OpeningHoursSpecification", | |
| 6400 | + "dayOfWeek": [ | |
| 6401 | + "Saturday" | |
| 6402 | + ], | |
| 6403 | + "opens": "10:00:00", | |
| 6404 | + "closes": "17:00:00" | |
| 6405 | + }, | |
| 6406 | + { | |
| 6407 | + "@type": "OpeningHoursSpecification", | |
| 6408 | + "dayOfWeek": [ | |
| 6409 | + "Sunday" | |
| 6410 | + ], | |
| 6411 | + "opens": "00:00:00", | |
| 6412 | + "closes": "00:00:00" | |
| 6413 | + }, | |
| 6414 | + { | |
| 6415 | + "@type": "OpeningHoursSpecification", | |
| 6416 | + "dayOfWeek": [ | |
| 6417 | + "Monday", | |
| 6418 | + "Tuesday", | |
| 6419 | + "Wednesday", | |
| 6420 | + "Thursday", | |
| 6421 | + "Friday" | |
| 6422 | + ], | |
| 6423 | + "opens": "09:00:00", | |
| 6424 | + "closes": "18:00:00" | |
| 6425 | + } | |
| 6426 | + ], | |
| 6427 | + "name": "Aalto", | |
| 6428 | + "address": { | |
| 6429 | + "@type": "PostalAddress", | |
| 6430 | + "addressLocality": "Gatineau", | |
| 6431 | + "addressRegion": "QC", | |
| 6432 | + "addressCountry": "CA", | |
| 6433 | + "postalCode": "J8X 0A6", | |
| 6434 | + "streetAddress": "10 Rue Jos-Montferrand" | |
| 6435 | + }, | |
| 6436 | + "telephone": "(819) 809-9131", | |
| 6437 | + "hasMap": "" | |
| 6438 | +}</script> | |
| 6439 | + | |
| 6440 | + | |
| 6441 | + <yardi-widget-siteeditorscript></yardi-widget-siteeditorscript> | |
| 6442 | + | |
| 6443 | + | |
| 6444 | +<script>(function(){function c(){var b=a.contentDocument||(a.contentWindow&&a.contentWindow.document);if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'a31d6a766c50f275',t:'MTc4Nzg1ODI0MQ=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script><iframe height="1" width="1" style="position: absolute; top: 0px; left: 0px; border-width: medium; border-style: none; border-color: currentcolor; border-image: none; visibility: hidden;"></iframe> | |
| 6445 | +<div class="cookieinfo" style="position: fixed; display: flex; justify-content: space-between; left: 0px; right: 0px; height: auto; min-height: 21px; z-index: 2147483647; background: rgb(69, 69, 69); color: rgb(255, 255, 255); line-height: 21px; padding: 8px 18px; font-family: verdana, arial, sans-serif; font-size: 14px; text-align: left; bottom: 0px; opacity: 1;"><span style="display:block;padding:5px 0 5px 0;">By using this website you agree to our use of cookies as described in our <a href="https://www.aaltosuites.ca/privacypolicy" target="_new" style="padding: 10px; text-decoration: underline; background-color: rgb(224, 224, 224) !important; color: rgb(0, 0, 0) !important; display: inline-block;" class="color-inherit"><span>cookie policy.</span> <span class="sr-only">Opens in a new tab</span></a> <img alt="" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="display: none;"></span> <button class="cookieinfo-close btn btn-primary btn-sm text-capitalize border-0" type="button" style="float: right; display: block; padding: 5px 8px; min-width: 100px; margin-left: 5px; border-radius: 5px; cursor: pointer; color: rgb(0, 0, 0); background: rgb(241, 214, 0); text-align: center;" data-selenium-id="CloseCookie">Accepter le préavis</button></div><iframe id="nr-ext-rsicon" style="position: absolute; display: none; width: 50px; height: 50px; z-index: 2147483647; border-style: none; background: transparent;"></iframe></body><grammarly-desktop-integration data-grammarly-shadow-root="true" style="visibility: visible !important;"></grammarly-desktop-integration></html> | |
| \ No newline at end of file | ||
added
tests/fixtures/aalto/19876247196edaa337bf.html
+1711 −0
@@ -0,0 +1,1711 @@ | ||
| 1 | +<html lang="fr-ca" style="--helpwidget-bottom-offset: 77px;"><head> | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | +<meta charset="utf-8"> | |
| 6 | +<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| 7 | +<meta name="viewport" content="width=device-width, initial-scale=1.0 "> | |
| 8 | + <title>Aalto | Apartments in Gatineau, QC</title> | |
| 9 | + <meta name="description" content="Check for available units at Aalto in Gatineau, QC. View floor plans, photos, and community amenities. Make Aalto your new home."> | |
| 10 | + <meta name="referrer" content="always"> | |
| 11 | + <meta name="keywords" content="apartments, rentals, apartment guide, apartment finder, apartment search, apartment locator, apartments for rent, apartment listings"> | |
| 12 | + <meta name="author" content="Aalto"> | |
| 13 | + <link rel="canonical" href="https://www.aaltosuites.ca/"> | |
| 14 | + | |
| 15 | + | |
| 16 | + <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin=""> | |
| 17 | + <link rel="preconnect" href="https://resource.rentcafe.com"> | |
| 18 | + | |
| 19 | + | |
| 20 | + <link rel="preload" as="image" href="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6179,h_3626,c_crop/q_auto,f_auto,c_lfill,w_420,ar_1.05,g_auto/s3/2/144684/dji_0349(1).jpg" media="(max-width: 419.99px)" fetchpriority="high"> | |
| 21 | + <link rel="preload" as="image" href="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6179,h_3626,c_crop/q_auto,f_auto,c_lfill,w_576,h_400,g_auto/s3/2/144684/dji_0349(1).jpg" media="(min-width: 420px) and (max-width: 575.99px) and (-webkit-max-device-pixel-ratio: 1.99), (min-width: 420px) and (max-width: 575.99px) and (max-resolution: 1.99dppx)" fetchpriority="high"> | |
| 22 | + <link rel="preload" as="image" href="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6179,h_3626,c_crop/q_auto,f_auto,c_fill,w_576,h_400,g_auto,dpr_2/s3/2/144684/dji_0349(1).jpg" media="(min-width: 420px) and (max-width: 575.99px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 420px) and (max-width: 575.99px) and (min-resolution: 2dppx)" fetchpriority="high"> | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | +<link rel="preload" href="https://cdngeneralmvc.rentcafe.com/common/scss/fontawesome/webfonts/ysi-fa-solid.woff2" as="font" type="font/woff2" crossorigin="anonymous"> | |
| 28 | + | |
| 29 | + <meta name="theme-color" content="#999"> | |
| 30 | + <link href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,w_152,h_152/s3/2/144684/favicon (1).png" rel="apple-touch-icon"> | |
| 31 | + <link rel="manifest" href="/manifest.json"> | |
| 32 | + <link href="https://resource.rentcafe.com/image/upload/q_auto,f_auto/s3/2/144684/favicon (1).ico" type="image/x-icon" rel="shortcut icon"> | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + <link href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/ritz.558563.134322940780000000.css" rel="stylesheet" type="text/css" id="mainCSS"> | |
| 38 | + | |
| 39 | + <link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap" rel="stylesheet" media="all" onload="this.media='all'"> | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + <style>@font-face{font-family:"Open Sans Local Fallback";src:local("Arial");font-weight:"300";ascent-override:110.08%;descent-override:33.4%;line-gap-override:0%;size-adjust:97.22%}@font-face{font-family:"Open Sans Local Fallback";src:local("Arial");font-weight:"400";ascent-override:105.7%;descent-override:28.68%;line-gap-override:0%;size-adjust:100.86%}@font-face{font-family:"Open Sans Local Fallback";src:local("Arial");font-weight:"700";ascent-override:98.83%;descent-override:30.58%;line-gap-override:0%;size-adjust:106.99%}@font-face{font-family:"Bebas Neue Local Fallback";src:local("Arial");font-weight:"400";ascent-override:138.69%;descent-override:47.67%;line-gap-override:0%;size-adjust:68.44%}</style> | |
| 45 | + | |
| 46 | + | |
| 47 | + <script async="" src="https://www.googletagmanager.com/gtm.js?id=GTM-M9CFHKM"></script><script>window.ysi={callbacks:[],registerCallback:function(i){"function"==typeof i&&this.callbacks.push(i)},init:function(){ysi.MQBreakpointListener&&ysi.MQBreakpointListener.init(),ysi.main();for(var i=0;i<ysi.callbacks.length;i++)ysi.callbacks[i]();ysi.smartclasses&&ysi.smartclasses.init()},main:function(){}},document.addEventListener("DOMContentLoaded",function(i){window.location.pathname.indexOf("/index")>-1&&history.replaceState(null,"",window.location.pathname.replace("index","")+window.location.search),ysi.init()});</script> | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | +<!-- Google Tag Manager --> | |
| 59 | +<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': | |
| 60 | +new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], | |
| 61 | +j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= | |
| 62 | +'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); | |
| 63 | +})(window,document,'script','dataLayer','GTM-M9CFHKM');</script> | |
| 64 | +<!-- End Google Tag Manager --> | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | +<script>window.ysi.Regextranslations= { 'regex': {"(\\d+) Sq. Ft.":"$1 pc","$ (\\d+)":"$1 $","-(\\d+) Sqft":"$1 pc","(\\d+) Sq. Ft":"$1 pc","(\\d+),(\\d+) Sq. Ft.":"$1,$2 pc","$(\\d),(\\d+)":"$1 $2 $","(\\d+) February, (\\d+)":"$1 février, $2","(\\d+) January, (\\d+)":"$1 janvier, $2","(\\d+) July, (\\d+)":"$1 juillet, $2","(\\d+) June, (\\d+)":"$1 juin, $2","(\\d+) March, (\\d+)":"$1 mars, $2","(\\d+) May, (\\d+)":"$1 mai, $2","(\\d+) November, (\\d+)":"$1 novembre, $2","(\\d+) October, (\\d+)":"$1 octobre, $2","(\\d+) September, (\\d+)":"$1 septembre, $2","April (\\d+), (\\d+)":"$1 avril, $2","August (\\d+), (\\d+)":"$1 août, $2","December (\\d+), (\\d+)":"$1 décembre, $2","February (\\d+), (\\d+)":"$1 février, $2","January (\\d+), (\\d+)":"$1 janvier, $2","July (\\d+), (\\d+)":"$1 juillet, $2","June (\\d+), (\\d+)":"$1 juin, $2","March (\\d+), (\\d+)":"$1 mars, $2","October (\\d+), (\\d+)":"$1 octobre, $2","May (\\d+), (\\d+)":"$1 mai, $2","September (\\d+), (\\d+)":"$1 septembre, $2","November (\\d+), (\\d+)":"$1 novembre, $2","Your username/email (\\w+) does not match our record (\\w+). Please update your profile to sync them.":"Votre nom d’utilisateur/adresse électronique $1 ne correspond pas à notre dossier $2. Veuillez mettre à jour votre profil pour les synchroniser.","You have successfully opted out of email notifications for community announcements, calendar events, and marketing campaigns from (\\w+).":"Vous avez choisi de ne pas recevoir de notifications par courriel pour les annonces de la communauté, les événements du calendrier et les campagnes de marketing de $1.","(\\d+) Beds":"$1 Chambres","(\\d+) Beds (\\d+) Bath":"$1 Chambres $2 Salle de bains","(\\d+) Beds (\\d+) Bathroom":"$1 Chambres $2 Salle de bains","(\\d+) Beds (\\d+) Bathrooms":"$1 Chambres $2 Salles de bains","The waitlist application fee is €(\\d+) and you are able to make this payment online using our online payment system and complete your application.":"Les frais de demande d'inscription sur la liste d'attente sont de $1 dollars et vous pouvez effectuer ce paiement en ligne en utilisant notre système de paiement en ligne et compléter votre demande.","Tenant Code #(\\d+)":"N° de code du locataire $1","Unit #(\\d+)":"N° d’unité $1","Your account balance is (\\d+) and your payment amount is (\\d+). Are you sure you want to pay extra amount?":"Le solde de votre compte est de $1 et le montant de votre paiement est de $2. Êtes-vous sûr de vouloir payer un montant supplémentaire?","Fri (\\d+) January":"Vendredi le $1 janvier","Fri (\\d+) July":"Vendredi le $1 juillet","Fri (\\d+) June":"Vendredi le $1 juin","Fri (\\d+) March":"Vendredi le $1 mars","Fri (\\d+) May":"Vendredi le $1 mai","Fri (\\d+) November":"Vendredi le $1 novembre","Fri (\\d+) October":"Vendredi le $1 octobre","Fri (\\d+) September":"Vendredi le $1 septembre","Friday, Apr (\\d+), (\\d+)":"Vendredi, le $1 avril, $2","Friday, Aug (\\d+), (\\d+)":"Vendredi, le $1 août, $2","Friday, Dec (\\d+), (\\d+)":"Vendredi, le $1 décembre, $2","Friday, Feb (\\d+), (\\d+)":"Vendredi, le $1 février, $2","Friday, Jan (\\d+), (\\d+)":"Vendredi, le $1 janvier, $2","Friday, Jul (\\d+), (\\d+)":"Vendredi, le $1 juillet, $2","Friday, Jun (\\d+), (\\d+)":"Vendredi, le $1 juin, $2","Friday, Mar (\\d+), (\\d+)":"Vendredi, le $1 mars, $2","Friday, May (\\d+), (\\d+)":"Vendredi, le $1 mai, $2","Friday, Nov (\\d+), (\\d+)":"Vendredi, le $1 novembre, $2","Friday, Oct (\\d+), (\\d+)":"Vendredi, le $1 octobre, $2","Friday, Sep (\\d+), (\\d+)":"Vendredi, le $1 septembre, $2","Hi (\\w+)":"Bonjour $1","Hi, (\\w+)":"Bonjour, $1","Important Messages for (\\w+)":"Messages importants pour $1","Jan (\\d+) — (\\d+) (\\d+)":"$1 janvier— $2 $3","January (\\d+)":"$1 janvier","Jul (\\d+) — (\\d+) (\\d+)":"$1 juillet — $2 $3","July (\\d+)":"$1 juillet","Jun (\\d+) — (\\d+) (\\d+)":"$1 juin — $2 $3","June (\\d+)":"$1 juin","Mar (\\d+) — (\\d+) (\\d+)":"$1 mars — $2 $3","March (\\d+)":"$1 mars","May (\\d+)":"$1 mai","May (\\d+) — (\\d+) (\\d+)":"$1 mai — $2 $3","Mon (\\d+) April":"Lundi le $1 avril","Mon (\\d+) August":"Lundi le $1 août","Mon (\\d+) December":"Lundi le $1 décembre","Mon (\\d+) February":"Lundi le $1 février","Mon (\\d+) January":"Lundi le $1 janvier","Mon (\\d+) July":"Lundi le $1 juillet","Mon (\\d+) June":"Lundi le $1 juin","Mon (\\d+) March":"Lundi le $1 mars","Mon (\\d+) May":"Lundi le $1 mai","Mon (\\d+) November":"Lundi le $1 novembre","Mon (\\d+) October":"Lundi le $1 octobre","Mon (\\d+) September":"Lundi le $1 septembre","Monday, Apr (\\d+), (\\d+)":"Lundi, le $1 avril, $2","Monday, Aug (\\d+), (\\d+)":"Lundi, le $1 août, $2","Monday, Dec (\\d+), (\\d+)":"Lundi, le $1 décembre, $2","Monday, Feb (\\d+), (\\d+)":"Lundi, le $1 février, $2","Monday, Jan (\\d+), (\\d+)":"Lundi, le $1 janvier, $2","Monday, Jul (\\d+), (\\d+)":"Lundi, le $1 juillet, $2","Sun (\\d+) December":"Dimanche le $1 décembre","Sun (\\d+) February":"Dimanche le $1 février","Sun (\\d+) January":"Dimanche le $1 janvier","Sun (\\d+) July":"Dimanche le $1 juillet","Sun (\\d+) June":"Dimanche le $1 juin","Sun (\\d+) March":"Dimanche le $1 mars","Sun (\\d+) May":"Dimanche le $1 mai","Sun (\\d+) November":"Dimanche le $1 novembre","Sun (\\d+) October":"Dimanche le $1 octobre","Sun (\\d+) September":"Dimanche le $1 septembre","Sunday, Apr (\\d+), (\\d+)":"Dimanche, le $1 avril, $2","Sunday, Aug (\\d+), (\\d+)":"Dimanche, le $1 août, $2","Sunday, Dec (\\d+), (\\d+)":"Dimanche, le $1 décembre, $2","Sunday, Feb (\\d+), (\\d+)":"Dimanche, le $1 février, $2","Sunday, Jan (\\d+), (\\d+)":"Dimanche, le $1 janvier, $2","Sunday, Jul (\\d+), (\\d+)":"Dimanche, le $1 juillet, $2","Sunday, Jun (\\d+), (\\d+)":"Dimanche, le $1 juin, $2","Sunday, Mar (\\d+), (\\d+)":"Dimanche, le $1 mars, $2","Sunday, May (\\d+), (\\d+)":"Dimanche, le $1 mai, $2","Sunday, Nov (\\d+), (\\d+)":"Dimanche, le $1 novembre, $2","Sunday, Oct (\\d+), (\\d+)":"Dimanche, le $1 octobre, $2","Sunday, Sep (\\d+), (\\d+)":"Dimanche, le $1 septembre, $2","Tenant Code (\\d+)":"Code du locataire $1","The waitlist application fee is € (\\d+) and you are able to make this payment online using our online payment system and complete your application.":"Les frais de demande d'inscription sur la liste d'attente sont de $1 dollars et vous pouvez effectuer ce paiement en ligne en utilisant notre système de paiement en ligne et compléter votre demande.","There was a problem sending the verification email, please call the help desk at (\\d+).":"Il y a eu un problème lors de l'envoi du courriel de vérification, veuillez appeler le service de soutien au $1.","Thu (\\d+) April":"Jeudi le $1 avril","Thu (\\d+) August":"Jeudi le $1 août","Thu (\\d+) December":"Jeudi le $1 décembre","Thu (\\d+) February":"Jeudi le $1 février","Thu (\\d+) January":"Jeudi le $1 janvier","Thu (\\d+) July":"Jeudi le $1 juillet","Thu (\\d+) June":"Jeudi le $1 juin","Thu (\\d+) March":"Jeudi le $1 mars","Thu (\\d+) May":"Jeudi le $1 mai","Thu (\\d+) November":"Jeudi le $1 novembre","Thu (\\d+) October":"Jeudi le $1 octobre","Thu (\\d+) September":"Jeudi le $1 septembre","Thursday, Apr (\\d+), (\\d+)":"Jeudi, le $1 avril, $2","Thursday, Aug (\\d+), (\\d+)":"Jeudi, le $1 août, $2","Wed (\\d+) November":"Mercredi le $1 novembre","Wed (\\d+) October":"Mercredi le $1 octobre","Wed (\\d+) September":"Mercredi le $1 septembre","Wednesday, Apr (\\d+), (\\d+)":"Mercredi, le $1 avril, $2","Wednesday, Aug (\\d+), (\\d+)":"Mercredi, le $1 août, $2","Wednesday, Dec (\\d+), (\\d+)":"Mercredi, le $1 décembre, $2","Wednesday, Feb (\\d+), (\\d+)":"Mercredi, le $1 février, $2","Wednesday, Jan (\\d+), (\\d+)":"Mercredi, le $1 janvier, $2","Wednesday, Jul (\\d+), (\\d+)":"Mercredi, le $1 juillet, $2","Wednesday, Jun (\\d+), (\\d+)":"Mercredi, le $1 juin, $2","Wednesday, Mar (\\d+), (\\d+)":"Mercredi, le $1 mars, $2","Wednesday, May (\\d+), (\\d+)":"Mercredi, le $1 mai, $2","Wednesday, Nov (\\d+), (\\d+)":"Mercredi, le $1 novembre, $2","Wednesday, Oct (\\d+), (\\d+)":"Mercredi, le $1 octobre, $2","Wednesday, Sep (\\d+), (\\d+)":"Mercredi, le $1 septembre, $2","Welcome to (\\w+).":"Bienvenue à $1.","You have (\\d+) activity":"Vous avez $1 activité","You have (\\d+) new Notification":"Vous avez $1 nouvelle notification","You have (\\d+) new Notifications":"Vous avez $1 nouvelles notifications","Your payment was successful! A confirmation email has been sent to (\\w+).":"Votre paiement a réussi! Un courriel de confirmation a été envoyé à $1.","- Spouse to (\\w+)":"- Conjoint de $1","(\\w+) says":"$1 dit","Monday, (\\d+) Dec, (\\d+)":"Lundi, le $1 décembre, $2","Feb (\\d+) — Mar (\\d+) (\\d+)":"$1 février — $2 mars $3","Tuesday, (\\d+) May, (\\d+)":"Mardi, le $1 mai, $2","Thursday, (\\d+) Nov, (\\d+)":"Jeudi, le $1 novembre, $2","Saturday, (\\d+) Aug, (\\d+)":"Samedi, le $1 août, $2","Tuesday, (\\d+) Jul, (\\d+)":"Mardi, le $1 juillet, $2","Friday, (\\d+) Aug, (\\d+)":"Vendredi, le $1 août, $2","Monday, (\\d+) Mar, (\\d+)":"Lundi, le $1 mars, $2","Friday, (\\d+) Mar, (\\d+)":"Vendredi, le $1 mars, $2","Jan (\\d+) — Feb (\\d+) (\\d+)":"$1 janvier — $2 février $3","Friday, (\\d+) Sep, (\\d+)":"Vendredi, le $1 septembre, $2","Wednesday, (\\d+) Oct, (\\d+)":"Mercredi, le $1 octobre, $2","Apr (\\d+) — May (\\d+) (\\d+)":"$1 avril — $2 mai $3","Wednesday, (\\d+) Feb, (\\d+)":"Mercredi, le $1 février, $2","Thursday, (\\d+) Jan, (\\d+)":"Jeudi, le $1 janvier, $2","Thursday, (\\d+) Mar, (\\d+)":"Jeudi, le $1 mars, $2","Tuesday, (\\d+) Mar, (\\d+)":"Mardi, le $1 mars, $2","Jul (\\d+) — Aug (\\d+) (\\d+)":"$1 juillet — $2 août $3","Wednesday, (\\d+) Mar, (\\d+)":"Mercredi, le $1 mars, $2","Tuesday, (\\d+) Apr, (\\d+)":"Mardi, le $1 avril, $2","Saturday, (\\d+) Jan, (\\d+)":"Samedi, le $1 janvier, $2","Wednesday, (\\d+) Sep, (\\d+)":"Mercredi, le $1 septembre, $2","Sunday, (\\d+) Jul, (\\d+)":"Dimanche, le $1 juillet, $2","Sunday, (\\d+) Sep, (\\d+)":"Dimanche, le $1 septembre, $2","Friday, (\\d+) Jul, (\\d+)":"Vendredi, le $1 juillet, $2","Monday, (\\d+) Sep, (\\d+)":"Lundi, le $1 septembre, $2","Tuesday, (\\d+) Sep, (\\d+)":"Mardi, le $1 septembre, $2","Sunday, (\\d+) Jan, (\\d+)":"Dimanche, le $1 janvier, $2","Sunday, (\\d+) Jun, (\\d+)":"Dimanche, le $1 juin, $2","Saturday, (\\d+) Jun, (\\d+)":"Samedi, le $1 juin, $2","May (\\d+) — Jun (\\d+) (\\d+)":"$1 mai — $2 juin $3","Monday, (\\d+) Apr, (\\d+)":"Lundi, le $1 avril, $2","Thursday, (\\d+) Aug, (\\d+)":"Jeudi, le $1 août, $2","Thursday, (\\d+) Sep, (\\d+)":"Jeudi, le $1 septembre, $2","Wednesday, (\\d+) Nov, (\\d+)":"Mercredi, le $1 novembre, $2","Saturday, (\\d+) Apr, (\\d+)":"Samedi, le $1 avril, $2","Oct (\\d+) — Nov (\\d+) (\\d+)":"$1 octobre — $2 novembre $3","Monday, (\\d+) Jan, (\\d+)":"Lundi, le $1 janvier, $2","Monday, (\\d+) May, (\\d+)":"Lundi, le $1 mai, $2","Saturday, (\\d+) May, (\\d+)":"Samedi, le $1 mai, $2","Thursday, (\\d+) Dec, (\\d+)":"Jeudi, le $1 décembre, $2","Saturday, (\\d+) Sep, (\\d+)":"Samedi, le $1 septembre, $2","Tuesday, (\\d+) Jan, (\\d+)":"Mardi, le $1 janvier, $2","Wednesday, (\\d+) Jul, (\\d+)":"Mercredi, le $1 juillet, $2","Wednesday, (\\d+) Dec, (\\d+)":"Mercredi, le $1 décembre, $2","Sunday, (\\d+) Feb, (\\d+)":"Dimanche, le $1 février, $2","Tuesday, (\\d+) Nov, (\\d+)":"Mardi, le $1 novembre, $2","Tuesday, (\\d+) Oct, (\\d+)":"Mardi, le $1 octobre, $2","Wednesday, (\\d+) May, (\\d+)":"Mercredi, le $1 mai, $2","Saturday, (\\d+) Dec, (\\d+)":"Samedi, le $1 décembre, $2","Saturday, (\\d+) Feb, (\\d+)":"Samedi, le $1 février, $2","Friday, (\\d+) Oct, (\\d+)":"Vendredi, le $1 octobre, $2","Friday, (\\d+) Jan, (\\d+)":"Vendredi, le $1 janvier, $2","Wednesday, (\\d+) Aug, (\\d+)":"Mercredi, le $1 août, $2","Thursday, (\\d+) Feb, (\\d+)":"Jeudi, le $1 février, $2","Sunday, (\\d+) Dec, (\\d+)":"Dimanche, le $1 décembre, $2","(\\d+) Jul — (\\d+) (\\d+)":"$1 juillet — $2 $3","You have (\\d+) favorite properties saved for this area.":"Vous avez $1 propriétés favorites sauvegardées pour cette région.","(\\d+) Bathroom":"$1 Salle de bains","(\\d+) Bathrooms":"$1 Salles de bains","(\\d+) or (\\d+) bathrooms":"$1 ou $2 salles de bain","(\\d+), (\\d+), or (\\d+) bathrooms":"$1, $2, ou $3 salles de bain","(\\d+), (\\d+), (\\d+), or (\\d+) bathrooms":"$1, $2, $3, ou $4 salles de bain","(\\d+), (\\d+), (\\d+), (\\d+), or (\\d+) bathrooms":"$1, $2, $3, $4, ou $5 salles de bain","Studio or (\\d+) bedrooms":"Studio ou $1 chambres à coucher","Studio or (\\d+) or (\\d+) bedrooms":"Studio ou $1 ou $2 chambres à coucher","Studio or (\\d+), (\\d+) or (\\d+) bedrooms":"Studio ou $1, $2 ou $3 chambres à coucher","Studio or (\\d+), (\\d+), (\\d+) or (\\d+) bedrooms":"Studio ou $1, $2, $3 ou $4 chambres à coucher","Studio or (\\d+), (\\d+), (\\d+), (\\d+) or (\\d+) bedrooms":"Studio ou $1, $2, $3, $4 ou $5 chambres à coucher","(\\d+) Bedrooms":"$1 Chambres à coucher","(\\d+) Beds to (\\d+) Beds":"$1 Chambres à $2 chambres","(\\d+) Baths to (\\d+) Baths":"$1 Salles de bains $2 Salles de bains","(\\d+)-(\\d+) Baths":"$1-$2 Salles de bains","(\\d+) a.m.":"$1 du matin","- (\\d+) p.m.":"- $1 du soir","(\\d+) or less":"$1 ou moins","(\\d+) or more":"$1 ou plus","(\\d+) to (\\d+)":"$1 à $2","(\\d+) of (\\d+)":"$1 de $2","(\\d+) results found":"$1 résultats trouvés.","(\\d+) results found.":"$1 résultats trouvés.","Bedrooms: (\\d+)-(\\d+)":"Chambres à coucher : $1-$2","Bathrooms: (\\d+)-(\\d+)":"Salles de bains : $1-$2","Rent: (\\d+) €":"Loyer : $1 $","(\\d+) Yardi Systems, Inc. All Rights Reserved.":"$1 Yardi Systems, Inc. Tous droits réservés.","(\\d+) Available":"$1 disponible","(\\d+), (\\d+) or (\\d+) bathrooms":"$1, $2 ou $3 salles de bain","(\\d+), (\\d+), (\\d+) or (\\d+) bathrooms":"$1, $2, $3 ou $4 salles de bain","(\\d+), (\\d+), (\\d+), (\\d+) or (\\d+) bathrooms":"$1, $2, $3, $4 ou $5 salles de bain","(\\d+) or (\\d+) bedrooms":"$1 ou $2 chambres à coucher","(\\d+), (\\d+) or (\\d+) bedrooms":"$1, $2 ou $3 chambres à coucher","(\\d+), (\\d+), (\\d+) or (\\d+) bedrooms":"$1, $2, $3 ou $4 chambres à coucher","(\\d+), (\\d+), (\\d+), (\\d+) or (\\d+) bedrooms":"$1, $2, $3, $4 ou $5 chambres à coucher","(\\d+) or more sqft":"$1 ou plus de pi²","(\\d+) or less sqft":"$1 ou moins de pi²","(\\d+) to (\\d+) sqft":"$1 à $2 pi²","Call Us at (\\d+)":"Appelez-nous au $1","Deposit: (\\w+) (\\d+)":"Dépôt : $1 $2","Up to (\\d+) Sq.M.":"Jusqu’à $1 m²","Starting at : (\\w+) (\\d+)/Month":"À partir de : $1 $2/mois","(© (\\d+) (\\w+), Inc. All Rights Reserved.)":"(© $1 $2, Inc. Tous droits réservés.)","© (\\d+) (\\w+). All Rights Reserved. | Website Design by RENT":"© $1 $2. Tous Droits Réservés. | Design du site internet par RENT","(\\d+) Sq. Ft. or more":"$1 pi² ou plus","(\\d+) Sq. Ft. or less":"$1 pi² ou moins","(\\d+) to (\\d+) Sq. Ft.":"$1 à $2 pi²","(\\d+) Sq.M. or more":"$1 m² ou plus","(\\d+) to (\\d+) Sq.M.":"$1 à $2 m²","(\\w)+(\\d+) or more":"$1$2 ou plus","(\\w)+(\\d+) or less":"$1$2 ou moins","Available On: (\\d+)":"Disponible le : $1","Studio to (\\d+) Beds":"Studio à $1 chambres","(\\d+) Apartments Available":"$1 appartements disponibles","Start (\\w+) (\\d+)/month":"Mois de début $1 $2","(\\d+) amenities":"$1 commodités","(\\d+) floor plans":"$1 plans d'étages","(\\d+) Sq.M. or less":"$1 m² ou moins","(\\d+),(\\d+) Bathrooms":"$1,$2 Salles de bains","(\\d+),(\\d+) Baths":"$1,$2 Salles de bains","An Applicant for a property located in (\\w+).":"Un demandeur pour une propriété qui se trouve à $1.","Thank you (\\w+).":"Merci $1.","Unit #(\\w+)":"N° d’unité $1","Tenant Code #(\\w+)":"N° de code du locataire $1","(\\d+) April, (\\d+)":"$1 avril, $2","(\\d+) August, (\\d+)":"$1 août, $2","(\\d+) December, (\\d+)":"$1 décembre, $2","Your email address is already associated with a property. You can use that account to manage your information while at eyardi ((\\w+)). Just fill in your password.":"Votre adresse électronique est déjà associée à une propriété. Vous pouvez utiliser ce compte pour gérer vos informations sur eyardi ($1). Il vous suffit de saisir votre mot de passe.","You can use that account to manage your information while at eyardi ((\\w+))":"Vous pouvez utiliser ce compte pour gérer vos renseignements pendant votre séjour chez eyardi ($1)","Your username/email ((\\w+)) does not match our record ((\\w+)). Please update your profile to sync them.":"Votre nom d’utilisateur/adresse électronique ($1) ne correspond pas à notre dossier ($2). Veuillez mettre à jour votre profil pour les synchroniser.","\\((\\d+) Available\\)":"($1 disponible)","((\\d+) comment)":"($1 remarque)","((\\d+) comments)":"($1 remarques)","(\\d+) Available Now":"$1 disponible maintenant","(\\d+) Bath":"$1 Salle de bains","(\\d+) Baths":"$1 Salles de bains","(\\d+) Bed":"$1 Chambre","(\\d+) Bed - (\\d+) Bath":"$1 Chambre - $2 Salle de bains","(\\d+) Bed (\\d+) Bath":"$1 Chambre $2 Salle de bains","(\\d+) Bed (\\d+) Bathroom":"$1 Chambre $2 Salle de bains","(\\d+) Bed (\\d+) Bathrooms":"$1 Chambre $2 Salles de bains","(\\d+) Bed (\\d+) Baths":"$1 Chambre $2 Salles de bains","(\\d+) Bedroom":"$1 Chambre à coucher","(\\d+) Beds (\\d+) Baths":"$1 Chambres $2 Salles de bains","(\\d+) beds/(\\d+) bath":"$1 Chambres/ $2 salle de bains","(\\d+) characters left.":"$1 caractères restants.","(\\d+) characters remaining":"$1 caractères restants","(\\d+) months":"$1 mois","(\\d+) sq.ft":"$1 pi²","(\\d+) sq.M":"$1 m²","(\\d+) sq.M.":"$1 m²","(\\w+) Map":"$1 carte","A Resident in a property located in (\\w+).":"Un résident dans une propriété qui se trouve à $1.","Apr (\\d+) — (\\d+) (\\d+)":"$1 avril — $2 $3","April (\\d+)":"$1 avril","Aug (\\d+) — (\\d+) (\\d+)":"$1 août — $2 $3","August (\\d+)":"$1 août","Be a part of (\\w+)":"Faites partie de $1","By: (\\w+)":"Par : $1","Dec (\\d+) — (\\d+) (\\d+)":"$1 décembre — $2 $3","December (\\d+)":"$1 décembre","Feb (\\d+) — (\\d+) (\\d+)":"$1 février — $2 $3","February (\\d+)":"$1 février","Floor Plan for (\\w+)":"Plan d’étage pour $1","FPA (\\d+)":"$1 FPA","Fri (\\d+) April":"Vendredi le $1 avril","Fri (\\d+) August":"Vendredi le $1 août","Fri (\\d+) December":"Vendredi le $1 décembre","Fri (\\d+) February":"Vendredi le $1 février","Monday, Jun (\\d+), (\\d+)":"Lundi, le $1 juin, $2","Monday, Mar (\\d+), (\\d+)":"Lundi, le $1 mars, $2","Monday, May (\\d+), (\\d+)":"Lundi, le $1 mai, $2","Monday, Nov (\\d+), (\\d+)":"Lundi, le $1 novembre, $2","Monday, Oct (\\d+), (\\d+)":"Lundi, le $1 octobre, $2","Monday, Sep (\\d+), (\\d+)":"Lundi, le $1 septembre, $2","near (\\w+)":"près de $1","Nov (\\d+) — (\\d+) (\\d+)":"$1 novembre — $2 $3","November (\\d+)":"$1 novembre","Oct (\\d+) — (\\d+) (\\d+)":"$1 octobre — $2 $3","October (\\d+)":"$1 octobre","Phone: (\\d+)":"Téléphone : $1","Reviews for (\\w+)":"Critiques pour $1","Sat (\\d+) April":"Samedi le $1 avril","Sat (\\d+) August":"Samedi le $1 août","Sat (\\d+) December":"Samedi le $1 décembre","Sat (\\d+) February":"Samedi le $1 février","Sat (\\d+) January":"Samedi le $1 janvier","Sat (\\d+) July":"Samedi le $1 juillet","Sat (\\d+) June":"Samedi le $1 juin","Sat (\\d+) March":"Samedi le $1 mars","Sat (\\d+) May":"Samedi le $1 mai","Sat (\\d+) November":"Samedi le $1 novembre","Sat (\\d+) October":"Samedi le $1 octobre","Sat (\\d+) September":"Samedi le $1 septembre","Saturday, Apr (\\d+), (\\d+)":"Samedi, le $1 avril, $2","Saturday, Aug (\\d+), (\\d+)":"Samedi, le $1 août, $2","Saturday, Dec (\\d+), (\\d+)":"Samedi, le $1 décembre, $2","Saturday, Feb (\\d+), (\\d+)":"Samedi, le $1 février, $2","Saturday, Jan (\\d+), (\\d+)":"Samedi, le $1janvier, $2","Saturday, Jul (\\d+), (\\d+)":"Samedi, le $1 juillet, $2","Saturday, Jun (\\d+), (\\d+)":"Samedi, le $1 juin, $2","Saturday, Mar (\\d+), (\\d+)":"Samedi, le $1 mars, $2","Saturday, May (\\d+), (\\d+)":"Samedi, le $1 mai, $2","Saturday, Nov (\\d+), (\\d+)":"Samedi, le $1 novembre, $2","Saturday, Oct (\\d+), (\\d+)":"Samedi, le $1 octobre, $2","Saturday, Sep (\\d+), (\\d+)":"Samedi, le $1 septembre, $2","Select 'Payment Accounts' to add or change your (\\w+).":"Sélectionner « Comptes de paiement » pour ajouter ou modifier vos $1.","Selected (\\d+) Items.":"Sélectionner $1 articles.","Sep (\\d+) — (\\d+) (\\d+)":"$1 septembre — $2 $3","September (\\d+)":"$1 septembre","Showing (\\d+) of (\\d+) entries":"Affichant $1 de $2 entrées","Showing (\\d+) to (\\d+) of (\\d+) entries":"Affichant $1 à $2 de $3 entrées","Sun (\\d+) April":"Dimanche le $1 avril","Sun (\\d+) August":"Dimanche le $1 août","Thursday, Dec (\\d+), (\\d+)":"Jeudi, le $1 décembre, $2","Thursday, Feb (\\d+), (\\d+)":"Jeudi, le $1 février, $2","Thursday, Jan (\\d+), (\\d+)":"Jeudi, le $1 janvier, $2","Thursday, Jul (\\d+), (\\d+)":"Jeudi, le $1 juillet, $2","Thursday, Jun (\\d+), (\\d+)":"Jeudi, le $1 juin, $2","Thursday, Mar (\\d+), (\\d+)":"Jeudi, le $1 mars, $2","Thursday, May (\\d+), (\\d+)":"Jeudi, le $1 mai, $2","Thursday, Nov (\\d+), (\\d+)":"Jeudi, le $1 novembre, $2","Thursday, Oct (\\d+), (\\d+)":"Jeudi, le $1 octobre, $2","Thursday, Sep (\\d+), (\\d+)":"Jeudi, le $1 septembre, $2","Tue (\\d+) April":"Mardi le $1 avril","Tue (\\d+) August":"Mardi le $1 août","Tue (\\d+) December":"Mardi le $1 décembre","Tue (\\d+) February":"Mardi le $1 février","Tue (\\d+) January":"Mardi le $1 janvier","Tue (\\d+) July":"Mardi le $1 juillet","Tue (\\d+) June":"Mardi le $1 juin","Tue (\\d+) March":"Mardi le $1 mars","Tue (\\d+) May":"Mardi le $1 mai","Tue (\\d+) November":"Mardi le $1 novembre","Tue (\\d+) October":"Mardi le $1 octobre","Tue (\\d+) September":"Mardi le $1 septembre","Tuesday, Apr (\\d+), (\\d+)":"Mardi, le $1 avril, $2","Tuesday, Aug (\\d+), (\\d+)":"Mardi, le $1 août, $2","Tuesday, Dec (\\d+), (\\d+)":"Mardi, le $1 décembre, $2","Tuesday, Feb (\\d+), (\\d+)":"Mardi, le $1 février, $2","Tuesday, Jan (\\d+), (\\d+)":"Mardi, le $1 janvier, $2","Tuesday, Jul (\\d+), (\\d+)":"Mardi, le $1 juillet, $2","Tuesday, Jun (\\d+), (\\d+)":"Mardi, le $1 juin, $2","Tuesday, Mar (\\d+), (\\d+)":"Mardi, le $1 mars, $2","Tuesday, May (\\d+), (\\d+)":"Mardi, le $1 mai, $2","Tuesday, Nov (\\d+), (\\d+)":"Mardi, le $1 novembre, $2","Tuesday, Oct (\\d+), (\\d+)":"Mardi, le $1 octobre, $2","Tuesday, Sep (\\d+), (\\d+)":"Mardi, le $1 septembre, $2","Up to (\\d+)":"Jusqu’à $1","We would love if you become a part of (\\w+).":"Nous serions ravis que vous fassiez partie de $1.","Wed (\\d+) April":"Mercredi le $1 avril","Wed (\\d+) August":"Mercredi le $1 août","Wed (\\d+) December":"Mercredi le $1 décembre","Wed (\\d+) February":"Mercredi le $1 février","Wed (\\d+) January":"Mercredi le $1 janvier","Wed (\\d+) July":"Mercredi le $1 juillet","Wed (\\d+) June":"Mercredi le $1 juin","Wed (\\d+) March":"Mercredi le $1 mars","Wed (\\d+) May":"Mercredi le $1 mai","Tuesday, (\\d+) Dec, (\\d+)":"Mardi, le $1 décembre, $2","Wednesday, (\\d+) Jun, (\\d+)":"Mercredi, le $1 juin, $2","Saturday, (\\d+) Jul, (\\d+)":"Samedi, le $1 juillet, $2","Monday, (\\d+) Aug, (\\d+)":"Lundi, le $1 août, $2","Monday, (\\d+) Feb, (\\d+)":"Lundi, le $1 février, $2","Nov (\\d+) — Dec (\\d+) (\\d+)":"$1 novembre — $2 décembre $3","Saturday, (\\d+) Nov, (\\d+)":"Samedi, le $1 novembre, $2","Tuesday, (\\d+) Aug, (\\d+)":"Mardi, le $1 août, $2","Monday, (\\d+) Jul, (\\d+)":"Lundi, le $1 juillet, $2","Thursday, (\\d+) Oct, (\\d+)":"Jeudi, le $1 octobre, $2","Sunday, (\\d+) Apr, (\\d+)":"Dimanche, le $1 avril, $2","Thursday, (\\d+) Jun, (\\d+)":"Jeudi, le $1 juin, $2","Friday, (\\d+) Dec, (\\d+)":"Vendredi, le $1 décembre, $2","Friday, (\\d+) Feb, (\\d+)":"Vendredi, le $1 février, $2","Friday, (\\d+) May, (\\d+)":"Vendredi, le $1 mai, $2","Sunday, (\\d+) Nov, (\\d+)":"Dimanche, le $1 novembre, $2","Mar (\\d+) — Apr (\\d+) (\\d+)":"$1 mars — $2 avril $3","Friday, (\\d+) Nov, (\\d+)":"Vendredi, le $1 novembre, $2","Wednesday, (\\d+) Jan, (\\d+)":"Mercredi, le $1 janvier, $2","Sep (\\d+) — Oct (\\d+) (\\d+)":"$1 septembre — $2 octobre $3","Saturday, (\\d+) Oct, (\\d+)":"Samedi, le $1 octobre, $2","Dec (\\d+) (\\d+) — Jan (\\d+) (\\d+)":"$1 décembre $2 — $3 janvier $4","Monday, (\\d+) Jun, (\\d+)":"Lundi, le $1 juin, $2","Sunday, (\\d+) May, (\\d+)":"Dimanche, le $1 mai, $2","Aug (\\d+) — Sep (\\d+) (\\d+)":"$1 août — $2 septembre $3","Thursday, (\\d+) Jul, (\\d+)":"Jeudi, le $1 juillet, $2","Tuesday, (\\d+) Feb, (\\d+)":"Mardi, le $1 février, $2","Thursday, (\\d+) May, (\\d+)":"Jeudi, le $1 mai, $2","Saturday, (\\d+) Mar, (\\d+)":"Samedi, le $1 mars, $2","Sunday, (\\d+) Mar, (\\d+)":"Dimanche, le $1 mars, $2","Wednesday, (\\d+) Apr, (\\d+)":"Mercredi, le $1 avril, $2","Tuesday, (\\d+) Jun, (\\d+)":"Mardi, le $1 juin, $2","Sunday, (\\d+) Aug, (\\d+)":"Dimanche, le $1 août, $2","Sunday, (\\d+) Oct, (\\d+)":"Dimanche, le $1 octobre, $2","Monday, (\\d+) Nov, (\\d+)":"Lundi, le $1 novembre, $2","Friday, (\\d+) Jun, (\\d+)":"Vendredi, le $1 juin, $2","Jun (\\d+) — Jul (\\d+) (\\d+)":"$1 juin — $2 juillet $3","Friday, (\\d+) Apr, (\\d+)":"Vendredi, le $1 avril, $2","Monday, (\\d+) Oct, (\\d+)":"Lundi, le $1 octobre, $2","Thursday, (\\d+) Apr, (\\d+)":"Jeudi, le $1 avril, $2","(\\d+) Dec (\\d+) — (\\d+) Jan (\\d+)":"$1 décembre $2 — $3 janvier $4","(\\d+) Dec — (\\d+) (\\d+)":"$1 décembre — $2 $3","(\\d+) Jul — (\\d+) Aug (\\d+)":"$1 juillet — $2 août $3","(\\d+) Apr — (\\d+) (\\d+)":"$1 avril — $2 $3","(\\d+) Nov — (\\d+) Dec (\\d+)":"$1 novembre — $2 décembre $3","(\\d+) Aug — (\\d+) Sep (\\d+)":"$1 août — $2 septembre $3","(\\d+) Apr — (\\d+) May (\\d+)":"$1 avril — $2 mai $3","(\\d+) Jan — (\\d+) Feb (\\d+)":"$1 janvier — $2 février $3","(\\d+) Mar — (\\d+) (\\d+)":"$1 mars — $2 $3","(\\d+) May — (\\d+) (\\d+)":"$1 mai — $2 $3","(\\d+) Jan — (\\d+) (\\d+)":"$1 janvier— $2 $3","(\\d+) Sep — (\\d+) Oct (\\d+)":"$1 septembre — $2 octobre $3","(\\d+) Mar — (\\d+) Apr (\\d+)":"$1 mars — $2 avril $3","(\\d+) Feb — (\\d+) Mar (\\d+)":"$1 février — $2 mars $3","(\\d+) Aug — (\\d+) (\\d+)":"$1 août — $2 $3","(\\d+) May — (\\d+) Jun (\\d+)":"$1 mai — $2 juin $3","(\\d+) Jun — (\\d+) Jul (\\d+)":"$1 juin — $2 juillet $3","(\\d+) Feb — (\\d+) (\\d+)":"$1 février — $2 $3","(\\d+) Oct — (\\d+) Nov (\\d+)":"$1 octobre — $2 novembre $3","(\\d+) Jun — (\\d+) (\\d+)":"$1 juin — $2 $3","(\\d+) Nov — (\\d+) (\\d+)":"$1 novembre — $2 $3","(\\d+) Oct — (\\d+) (\\d+)":"$1 octobre — $2 $3","(\\d+) Sep — (\\d+) (\\d+)":"$1 septembre — $2 $3","Spouse to (\\w+)":"Conjoint de $1","Roommate to (\\w+)":"Colocataire de $1","- Roommate to (\\w+)":"- Colocataire de $1","Your account balance is (\\d+) and your payment amount is (\\d+).":"Le solde de votre compte est de $1 et le montant de votre paiement est de $2.","Showing (\\d+) out of (\\d+) properties.":"Affichant $1 de $2 propriétés","- (\\w)+(\\d+) /Week":"- $1$2 /semaine","- (\\w)+(\\d+) /Month":"- $1$2 /mois","(\\d+)-(\\d+) Beds":"$1-$2 Chambres","(\\d+)-(\\d+) Bedrooms":"$1-$2 Chambres à coucher","((\\d+)) apartments found.":"$1 appartements trouvés.","(\\d+) sqft or more":"$1 pi² ou plus","(\\d+) sqft or less":"$1 pi² ou moins","Up to (\\d+) Sq. Ft.":"Jusqu’à $1 pi²","Source: (\\w+)":"Source : $1","PROPERTIES NEAR (\\w+)":"PROPRIÉTÉS PRÈS DE $1","PROPERTIES NEAR (\\w+) (\\w+)":"PROPRIÉTÉS PRÈS DE $1 $2","PROPERTIES NEAR (\\w+), (\\w+)":"PROPRIÉTÉS PRÈS DE $1, $2","PROPERTIES NEAR (\\w+),(\\w+)":"PROPRIÉTÉS PRÈS DE $1,$2","Website Design by RENTCafe (© (\\d+) (\\w+), Inc. All Rights Reserved.)":"Conception du site Web par RENTCafe (© $1 $2, Inc. Tous droits réservés.)","$(\\d+) deposit":"dépôt de $1 $","((\\d+)) Available":"($1)Disponible","£(\\d+) deposit":"dépôt de $1 £","€(\\d+) deposit":"dépôt de $1 €","(\\d+),(\\d+)-(\\d+),(\\d+) Sqft":"$1,$2-$3,$4 pi²","(\\d+),(\\d+)-(\\d+),(\\d+) Sqm":"$1,$2-$3,$4 m²","(\\d+).(\\d+)-(\\d+).(\\d+) Sqft":"$1,$2-$3,$4 pi²","(\\d+).(\\d+)-(\\d+).(\\d+) Sqm":"$1,$2-$3,$4 m²","(\\d+)-(\\d+) Sqft":"$1-$2 pi²","(\\d+)-(\\d+) Sqm":"$1-$2 m²","(\\d+)-(\\d+),(\\d+) Sqft":"$1-$2,$3 pi²","(\\d+)-(\\d+),(\\d+) Sqm":"$1-$2,$3 m²","(\\d+)-(\\d+).(\\d+) Sqft":"$1-$2,$3 pi²","(\\d+)-(\\d+).(\\d+) Sqm":"$1-$2,$3 m²","zł(\\d+) deposit":"dépôt de $1 zł","See all (\\d+) Photos":"Voir toutes les $1 photos","(\\d+)\\.(\\d+) Sq.M.":"$1.$2 m²","(\\d+)\\.(\\d+) Bathrooms":"$1.$2 Salles de bains","(\\d+),(\\d+) Sq.M.":"$1,$2 m²","(\\d+)\\.(\\d+) Baths":"$1.$2 Salles de bains","(\\d+),(\\d+) Sq. M.":"$1,$2 m²","(\\d+)\\.(\\d+) Sq. Ft.":"$1.$2 Pi²"} };</script><script>window.ysi.translations = {"free wifi in common areas":"WIFI GRATUIT DANS LES ESPACES COMMUNS","aalto amenities":"Commodités Aalto","theatre room":"SALLE DE CINÉMA","games & party room":"Salle de jeux et de réception","outdoor lounge":"ESPACE LOUNGE EXTÉRIEUR","coworking lounge":"Espace de cotravail","outdoor bike tune up & wash station":"STATION EXTÉRIEURE D’ENTRETIEN ET DE LAVAGE POUR VÉLOS","net-zero carbon heating & cooling":"CHAUFFAGE ET CLIMATISATION CARBONEUTRES (ZÉRO ÉMISSION NETTE)","enjoy the lush green spaces and scenic parks at zibi, perfect for relaxation, picnics, and outdoor activities.":"Profitez des espaces verts luxuriants et des parcs pittoresques de Zibi, parfaits pour la détente, les pique-niques et les activités de plein air.","soar across the ottawa river on the world's first interprovincial zip line, connecting gatineau and ottawa for an unforgettable adventure.":"Survolez la rivière des Outaouais sur la première tyrolienne interprovinciale au monde reliant Gatineau et Ottawa pour une aventure inoubliable.","zibi is always bustling with activity, enjoy world-class events like cirque du soleil and igloofest as well as pop-up markets, cinemas and more.":"Zibi est toujours très actif. Profitez d'événements de classe mondiale comme le Cirque du Soleil et Igloofest ainsi que de marchés éphémères, de cinémas et plus encore.","zibi is dedicated to becoming one of the most sustainable communities in canada and adhered to the one planet living framework to help guide sustainability and eco-friendly planning. with accessible transit, bike paths, and multiple transport options on your doorstep, you will be able to take advantage of one of the most connected master-planned communities in canada, as well as one of ottawa’s most pedestrian-friendly neighbourhoods. the recently re-designed chaudière crossing, with a dedicated bike lane and pedestrian walkway, will quickly and easily connect you between gatineau and ottawa.":"Zibi s’est engagée à devenir l’une des communautés les plus durables au Canada et respecte le cadre One Planet Living, qui oriente les aspects liés à la durabilité et à la planification écologique. Grâce aux multiples options de transport en commun ainsi que de pistes cyclables et piétonnières, vous serez en mesure de profiter d’une des communautés les plus connectées au Canada et d’un des quartiers les plus accueillants pour les piétons à Ottawa. La traverse des Chaudières, qui a récemment été redessinée pour y inclure une piste cyclable et une voie piétonnière, facilitera grandement la traversée entre Gatineau et Ottawa. Vous pouvez aussi utiliser la station Pimisi du système de train léger d’Ottawa et le carrefour de transport de la STO de Gatineau pour vous rendre facilement à Ottawa et dans les environs. Si vous préférez utiliser votre vélo, vous pouvez utiliser les pistes cyclables sécuritaires et pratiques (sans oublier les vues imprenables en cours de route!) pour vous rendre à votre destination. Avec autant d’options écologiques en matière de transport, vous pourrez remiser votre véhicule tout en explorant les meilleurs endroits de la ville.","live. explore. connect.":"Vivre. Découvrir. Créer des liens.","floor plans and pricing":"Plans d’étage et prix","gallery":"Gallerie","exterior":"Extérieur","email address":"Courriel","email address *":"Courriel *","email address*":"Courriel*","for a guided tour come and meet with the leasing agent five minutes prior to your appointment in our central leasing office.":"Pour une visite guidée, veuillez rencontrer l’agent de location à notre bureau central de location cinq minutes avant l’heure prévue de votre rendez-vous.","check availability":"vérifier la disponibilité","9am":"9h","6pm":"18h","9 am":"9h","10 am":"10h","5 pm":"17h","6 pm":"18h","sq. ft.":"pc","sq.ft.":"pc","sq.ft":"pc","sq.ft.:":"pc :","sq ft":"pc","sqft":"pc","- sqft":"- pc","- 6 pm":"- 18h","- 5 pm":"- 17h","studio":"studio","date available:":"Date disponible:","parks & plazas":"Parcs et places","live, explore, connect":"Vivre. Découvrir. Créer des liens.","studio / 1 bath":"studio / 1 SdB","1 bedroom / 1 bath":"1 chambre / 1 SdB","2 bedroom / 2 bath":"2 chambre / 2 SdB","1 bedroom + den":"1 chambre + bureau","bedrooms":"chambres","2 bedrooms + den":"2 chambres","aalto":"Aalto","aalto ii | a2":"Aalto II | A2","aalto ii | a1":"Aalto II | A1","aalto ii | a3":"Aalto II | A3","aalto ii | a4":"Aalto II | A4","aalto ii | a5":"Aalto II | A5","aalto ii | a6":"Aalto II | A6","aalto ii | a7":"Aalto II | A7","aalto ii | b1":"Aalto II | B1","aalto ii | b2":"Aalto II | B2","live at aalto":"VIVRE À AALTO ET AALTO II","find your suite":"Trouvez votre suite","close to it all":"Au cœur de tout","live in a connected community":"Vivre dans une communauté connectée","aalto and aalto ii are proudly part of zibi, an award-winning master-planned community across both ottawa and gatineau. zibi is one of canada's most ambitious urban developments, transforming a former industrial site into a vibrant, sustainable neighbourhood — seamlessly blending residential, commercial, and green spaces in one of the most dynamic settings in the national capital region.":"Aalto et Aalto II font fièrement partie de Zibi, une communauté primée et planifiée d’envergure située à la fois à Ottawa et à Gatineau. Zibi est l’un des projets urbains les plus ambitieux du Canada, transformant un ancien site industriel en un quartier dynamique et durable où se côtoient harmonieusement espaces résidentiels, commerciaux et verts dans l’un des environnements les plus inspirants de la région de la capitale nationale.","aalto and aalto ii are perched on the north shores of the ottawa river with sweeping views of canada's supreme court, parliament, and the national gallery of canada. the buildings are located just steps from the ottawa and gatineau downtown cores and adjacent to the riverfront tesasini park. with seamless access to transit and multi-use pathways, an active and connected lifestyle comes naturally.":"Aalto et Aalto II sont situés sur la rive nord de la rivière des Outaouais et offrent des vues spectaculaires sur la Cour suprême du Canada, le Parlement et le Musée des beaux-arts du Canada. Les immeubles se trouvent à quelques pas des centres-villes d’Ottawa et de Gatineau, tout près du parc riverain Tesasini. Grâce à un accès facile au transport en commun et aux sentiers polyvalents, un mode de vie actif et connecté s’impose naturellement.","live at zibi":"VIVRE À ZIBI","welcome to aalto and aalto ii — zibi's first residential buildings and a landmark on the shores of the ottawa river. whether you choose aalto or aalto ii, you'll enjoy the same waterfront lifestyle and effortless connection to the best of the national capital region.":"Bienvenue à Aalto et Aalto II — les premiers immeubles résidentiels de Zibi et de véritables emblèmes sur les rives de la rivière des Outaouais. Que vous choisissiez Aalto ou Aalto II, vous profiterez du même mode de vie au bord de l’eau et d’un accès privilégié aux meilleurs attraits de la région de la capitale nationale.","explore floorplans":"DÉCOUVRIR LES PLANS D’ÉTAGE","elevated everyday living":"Un quotidien rehaussé","modern amenities designed to elevate everyday living. from beautifully curated social spaces to wellness-focused fitness facilities, aalto and aalto ii offers residents a seamless balance of comfort, convenience, and connection.":"Des commodités modernes conçues pour enrichir votre quotidien. Des espaces communs soigneusement aménagés aux installations de remise en forme axées sur le bien-être, Aalto et Aalto II offrent un équilibre harmonieux entre confort, commodité et connexion.","as part of the zibi community, residents have access to a calendar that's always full: outdoor festivals, cultural gatherings, public art events, and neighbourhood activations that bring thousands of people to the waterfront year-round. whether you're looking to meet your neighbours, explore the river trails, or simply soak in the energy of one of canada's most vibrant new communities, there's always something happening at zibi.":"En tant que résident de la communauté Zibi, vous profiterez d’un calendrier d’activités toujours animé : festivals extérieurs, rassemblements culturels, événements d’art public et animations de quartier qui attirent des milliers de visiteurs au bord de l’eau tout au long de l’année. Que vous souhaitiez rencontrer vos voisins, explorer les sentiers riverains ou simplement profiter de l’énergie de l’une des communautés les plus vibrantes du Canada, il y a toujours quelque chose à découvrir à Zibi.","both buildings offer light-filled suites from studios to two-bedroom plus den, each with a private balcony and stunning river views. inside, every detail has been considered — quartz countertops, stainless steel energy star appliances, in-suite laundry, and quality finishes throughout.":"Les deux édifices offrent des suites lumineuses, allant du studio à l'appartement deux chambres plus bureau, chacune dotée d'un balcon privé et d'une vue imprenable sur la rivière. À l'intérieur, chaque détail a été pensé avec soin : comptoirs en quartz, électroménagers en acier inoxydable certifiés Energy Star, buanderie privée et finitions haut de gamme.","fitness centre":"CENTRE DE CONDITIONNEMENT PHYSIQUE","walk score":"Score de marche","aalto ii | c1":"Aalto II | C1","aalto ii | c6":"Aalto II | C6","aalto ii | c4":"Aalto II | C4","aalto ii | d7":"Aalto II | D7","aalto ii | d6":"Aalto II | D6","aalto ii | d2":"Aalto II | D2","aalto ii | d4":"Aalto II | D4","aalto ii | d5":"Aalto II | D5","aalto ii | d3":"Aalto II | D3","aalto ii | d1":"Aalto II | D1","transit score":"Note de transit","welcome to aalto":"Bienvenue à Aalto","aalto and aalto ii — two landmark rental buildings on gatineau's waterfront":"Aalto et Aalto II, deux immeubles locatifs sur les rives de la rivière des Outaouais.","live at aalto & aalto ii":"VIVRE À AALTO ET AALTO II","co-working lounge":"ESPACE DE COTRAVAIL","discover waterfront":"Découvrez la vie locative","rental living":"au bord de l’eau","bike score":"Note de vélo","applicant portal":"PORTAIL DES DEMANDEURS","take a tour":"VISITEZ LES LIEUX","bedroom":"chambre","two months free on select suites":"Deux mois gratuits sur certaines unités","move in today and save, now offering up to 2 months frees":"Emménagez dès aujourd’hui et économisez : profitez maintenant de jusqu’à deux mois gratuits.","schedule your consultation":"Planifiez votre consultation","bike racks":"Support pour bicyclettes","recycling":"Recyclage","pets":"Animaux de compagnie","no preference":"Aucune préférence","cats":"Chats","dogs":"Chiens","pet friendly":"Animaux de compagnie acceptés","no pets allowed":"Animaux de compagnie interdits","no properties in this area":"Aucune propriété dans cette région","compare":"Comparer","phone number":"Numéro de téléphone","about":"À propos","featured":"En vedette","bird's eye view":"Vue d’ensemble","neighborhood":"Voisinage","apply now":"Faites une demande maintenant","contact us":"Contactez-nous","state":"Province","phone":"Téléphone","regional offices":"Bureaux régionaux","properties":"Propriétés","* denotes a required field":"* Indique un champ requis","* indicates required fields.":"* Indique les champs requis.","* only available in select apartments":"* Disponible uniquement dans certains appartements",". are you sure you want to pay extra amount?":". Êtes-vous sûr de vouloir payer un montant supplémentaire?",". please select !":". Veuillez sélectionner!","/month":"/mois","+ add another pet (limit 1)":"+ Ajouter un autre animal de compagnie (limite de 1)","+ add another pet (limit 2)":"+ Ajouter un autre animal de compagnie (limite de 2)","+ add another pet (limit 3)":"+ Ajouter un autre animal de compagnie (limite de 3)","+ add another pet (limit 4)":"+ Ajouter un autre animal de compagnie (limite de 4)","+ add another vehicle (limit 1)":"+ Ajouter un autre véhicule (limite de 1)","+ add another vehicle (limit 2)":"+ Ajouter un autre véhicule (limite de 2)","+ add another vehicle (limit 3)":"+ Ajouter un autre véhicule (limite de 3)","+ add another vehicle (limit 4)":"+ Ajouter un autre véhicule (limite de 4)","< p > you have to select minimum two properties to compare.":"< p > Vous devez sélectionner au moins deux propriétés à comparer.","? previous":"? Précédent","100% safe and secure":"100 % sûr et sécurisé","10am":"10h00","10pm":"22h00","11am":"11h00","11pm":"23h00","12am":"12h00","12pm":"24h00","18 or older":"18 ans et plus","1am":"1h00","1pm":"13h00","2am":"2h00","2pm":"14h00","3am":"3h00","3pm":"15h00","4+ beds":"4+ Chambres","4am":"4h00","4pm":"16h00","5am":"5h00","5pm":"17h00","6am":"6h00","7am":"7h00","7pm":"19h00","8am":"8h00","8pm":"20h00","9pm":"21h00","a history of all maintenance requests including those that are pending as well as those that are completed.":"Un historique de toutes les demandes d'entretien, y compris celles qui sont en attente ainsi que celles qui sont terminées.","a message has been sent with instructions on how to reset your password.":"Un message a été envoyé avec des instructions sur la façon de réinitialiser votre mot de passe.","about us":"À propos de nous","accept":"Accepter","access blocked?":"Accès bloqué?","access instructions":"Instructions d'accès","access times":"Heures d'accès","additional rental options":"Options de location supplémentaires","address":"Adresse","address (line two)":"Adresse (ligne deux)","address 1":"Adresse 1","address 2":"Adresse 2","address 3":"Adresse 3","address information":"Information sur l'adresse","address:":"Adresse :","after move in date.":"Après la date d’emménagement.","age":"Âge","age:":"Âge :","aged 18 and over which has been exceeded by the list of additional occupants.":"âgés de 18 ans et plus qui a été dépassé par la liste des occupants supplémentaires.","agreement":"Accord","air conditioner":"Climatisation","air conditioner *":"Climatisation *","åland islands":"Îles d'Åland","albania":"Albanie","alerts":"Alertes","algeria":"Algérie","all":"Tout","all day?":"Toute la journée?","allow personal messages from bulletin board":"Permettre des messages personnels du babillard","almost there...":"On y est presque...","already a member?":"Déjà membre?","already have an account?":"Vous disposez déjà d'un compte?","already have an account? login now!":"Vous disposez déjà d'un compte? Connectez-vous maintenant!","already have insurance? you may upload your proof of insurance now. uploaded documents can be viewed below or from":"Vous êtes déjà assuré? Vous pouvez télécharger votre preuve d'assurance maintenant. Les documents téléchargés peuvent être consultés ci-dessous ou à partir de","already verified? click here to login.":"Déjà vérifié? Cliquer ici pour vous connecter.","alt. phone":"Téléphone alternatif","amenities":"Commodités","amenities:":"Commodités :","amenity":"Commodité","amenity*":"Commodité*","american samoa":"Samoa américaines","amount":"Montant","amount paid":"Montant payé","an error has occurred, please try again later":"Une erreur s'est produite, veuillez réessayer plus tard","information provided does not match with our records, please check your details and try again.":"Les informations fournies ne correspondent pas avec nos enregistrements, veuillez vérifier vos détails et essayer de nouveau.","in-home delivery preferences":"Préférences de livraison à domicile","in-law":"Belle-famille","inquire for details":"Renseignez-vous pour plus de détails","insurance":"Assurance","invalid file type.":"Type de fichier invalide.","invalid key, please try again":"Clé non valide, veuillez réessayer","invalid login":"Connexion invalide","invalid password, please try again.":"Mot de passe non valide, veuillez réessayer.","invalid phone number.":"Numéro de téléphone non valide.","invalid property info.":"Informations de propriété non valides.","invalid username or password.":"Nom d'utilisateur ou mot de passe invalide.","invalid verification code":"Code de vérification non valide","iran, islamic republic of":"République islamique d'Iran","iraq":"Iraq","ireland":"Irlande","israel":"Israël","issue subtype:":"Sous-type de problème :","issue type:":"Type de problème :","italy":"Italie","items of interest":"éléments d'intérêt","january":"Janvier","january monthly charges":"Charges mensuelles de janvier","january monthly charges and monthly auto-pay":"Les charges mensuelles de janvier et le paiement automatique mensuel","job title":"Titre du travail","jordan":"Jordanie","july":"Juillet","july monthly charges":"Charges mensuelles de juillet","july monthly charges and monthly auto-pay":"Les charges mensuelles de juillet et le paiement automatique mensuel","june":"Juin","june monthly charges":"Charges mensuelles de juin","june monthly charges and monthly auto-pay":"Les charges mensuelles de juin et le paiement automatique mensuel","just a second":"Un instant","just fill in your password.":"Il suffit de saisir votre mot de passe.","lockout assistance?":"Assistance en cas de verrouillage?","log in":"Se connecter","log out":"Déconnexion","logged in as:":"Connecté en tant que :","login":"Connexion","login here to access your lease information, pay your rent online, update account info or submit a maintenance request.":"Connectez-vous ici pour accéder à vos informations de location, payer votre loyer en ligne, mettre à jour vos informations de compte ou soumettre une demande d'entretien.","login to access your lease information, pay your rent online, update account information or submit a maintenance request.":"Connectez-vous ici pour accéder à vos informations de location, payer votre loyer en ligne, mettre à jour vos informations de compte ou soumettre une demande d'entretien.","login to resident services to manage your rental needs |":"Connectez-vous aux Services pour résidents pour gérer vos besoins de location |","login to your guest account":"Connectez-vous à votre compte d’invité","logout":"Déconnexion","luxembourg":"Luxembourg","macedonia, the former yugoslav republic of":"Ancienne république yougoslave de Macédoine","madagascar":"Madagascar","main charge":"Charge principale","main site":"Site principal","maintenance":"Entretien","maintenance notes":"Notes d'entretien","maintenance related":"Lié à l’entretien","maintenance request":"Demande d'entretien","maintenance requests":"Demandes d'entretien","maintenance:":"Entretien :","make":"Marque","make a one-time payment":"Effectuer un paiement unique","make a reservation":"Faire une réservation","make changes to your robots.txt file":"Apporter des modifications à votre fichier Robots.txt","make payments":"Effectuer des paiements","malaysia":"Malaisie","maldives":"Maldives","management company":"Société de gestion","management company phone":"Numéro de téléphone de la société de gestion","management team":"Équipe de gestion","manual":"Manuelle","map":"Carte","map & directions":"Carte et itinéraires","map view":"Vue cartographique","march":"Mars","march monthly charges":"Charges mensuelles de mars","march monthly charges and monthly auto-pay":"Les charges mensuelles de mars et le paiement automatique mensuel","marital status":"État civil","married":"Marié","marshall islands":"Îles Marshall","master bedroom":"Chambre principale","monthly charges and monthly auto-pay june":"Les charges mensuelles de juin et le paiement automatique mensuel","monthly charges and monthly auto-pay march":"Les charges mensuelles de mars et le paiement automatique mensuel","monthly charges and monthly auto-pay may":"Les charges mensuelles de mai et le paiement automatique mensuel","monthly charges and monthly auto-pay november":"Les charges mensuelles de novembre et le paiement automatique mensuel","monthly charges and monthly auto-pay october":"Les charges mensuelles d’octobre et le paiement automatique mensuel","monthly charges and monthly auto-pay september":"Les charges mensuelles de septembre et le paiement automatique mensuel","monthly fee":"Frais mensuels","monthly income":"Revenu mensuel","monthly rent/monthly mortgage payments":"Loyer mensuel / Paiements hypothécaires mensuels","months":"Mois","more":"Plus","more faqs":"Plus de questions fréquemment posées","morocco":"Maroc","mother":"Mère","motorbike":"Motocyclette","move in":"Emménagement","move in date":"Date d'emménagement","move in on":"Emménager le","move-in date":"Date d’emménagement","mr.":"M.","mrs.":"Madame","ms.":"Mme.","multifamily":"Multi-famille","my accounts":"Mes comptes","my documents":"Mes documents","my profile":"Mon profil","my requests already on file.":"Mes demandes déjà enregistrées.","n/a":"S.O.","name":"Nom","name on account":"Le nom sur le compte","namibia":"Namibie","near":"près de","nearby communities":"Communautés voisines","neighborhood info":"Informations sur le voisinage","neighbourhood":"Voisinage","netherlands":"Pays-Bas","netherlands antilles":"Antilles néerlandaises","never employed":"Jamais employé","new":"Nouveau","new account":"nouveau compte","new caledonia":"Nouvelle-Calédonie","new doc":"nouveau document","new edited":"nouvelle version","new email address":"Nouvelle adresse électronique","new lease document":"Nouveau document de bail","new password":"Nouveau mot de passe","new password*":"Nouveau mot de passe*","new password:":"Nouveau mot de passe :","new zealand":"Nouvelle-Zélande","news and updates":"Nouvelles et mises à jour","next":"Suivant","next ?":"Suivant ?","night life":"Vie nocturne","no":"Non","notification phone #":"N° de téléphone de notification","notifications end date":"Date de fin des notifications","notify a delivery creation?":"Notifier une création de livraison ?","notify a delivery pick-up?":"Notifier une prise de livraison ?","notify a delivery revisions?":"Notifier des révisions de livraison ?","notify an outside party pick-up completion?":"Aviser un tiers de l'achèvement d’une prise de livraison ?","notify an outside party pick-up creation?":"Aviser un tiers de la création d’une prise de livraison ?","notify an outside party pick-up revisions?":"Aviser un tiers des révisions d’une prise de livraison ?","notify keys picked up in bulk?":"Notifier que les clés ont été récupérées en masse ?","notify keys picked up?":"Notifier que les clés ont été récupérées ?","notify keys returned in bulk?":"Notifier que les clés ont été retournées en masse ?","notify keys returned?":"Notifier que les clés ont été retournées ?","notify via sms?":"Notifications par SMS?","november monthly charges":"Charges mensuelles de novembre","november monthly charges and monthly auto-pay":"Les charges mensuelles de novembre et le paiement automatique mensuel","number of guests":"Nombre d’invités","occupant":"occupant","occupants":"occupants","october":"Octobre","october monthly charges":"Charges mensuelles d’octobre","october monthly charges and monthly auto-pay":"Les charges mensuelles d’octobre et le paiement automatique mensuel","off":"DÉSACTIVÉ","office hours":"Heures d'ouverture du bureau","office:":"Bureau :","ok, please make.":"OK, veuillez effectuer.","old password*":"Ancien mot de passe*","on":"ON","on master bed":"Sur la chambre principale","on the following pages, you will be requested to input your desired move in date, input your personal information on the application and upload required application documents.":"Sur les pages suivantes, il vous sera demandé de saisir la date d'emménagement souhaitée, de saisir vos informations personnelles sur la demande et de télécharger les documents de demande requis.","parking and other items":"Stationnement et autres éléments","parking:":"Stationnement :","parkview":"Vue du parc","passport number":"Numéro de passeport","password":"Mot de passe","password must be a minimum of 10 characters long and must contain all of the following: one lowercase letter, one uppercase letter, one number and one symbol":"Le mot de passe doit avoir un minimum de 10 caractères et doit contenir tous les éléments suivants : une lettre minuscule, une lettre majuscule, un chiffre et un caractère spécial","password must be a minimum of 10 characters long and must contain all of the following: one lowercase letter, one uppercase letter, one number and one symbol.":"Le mot de passe doit avoir un minimum de 10 caractères et doit contenir tous les éléments suivants : une lettre minuscule, une lettre majuscule, un chiffre et un caractère spécial.","password must be at least 8 characters, please try again.":"Le mot de passe doit avoir au moins 8 caractères, veuillez réessayer.","password reset":"Réinitialisation du mot de passe","password retrieval":"Récupération du mot de passe","password*":"Mot de passe*","patio/balcony":"Terrasse/balcon","pay by date":"Payer par date","pay online, check the status of your payments and review your payment history.":"Payez en ligne, vérifiez le statut de vos paiements et consultez l'historique de vos transactions.","pay rent, make maintenance requests and more.":"Payer le loyer, faire des demandes d’entretien et plus.","payment account":"Compte de paiement","payment account:":"Compte du paiement :","payment accounts":"Comptes de paiement","payment amount":"Montant du paiement","payment date:":"Date du paiement :","payment details":"Détails du paiement","payment options":"Options de paiement","payments":"Paiements","payments and charges":"Paiements et charges","payments must be between zero and the total charge amount.":"Les paiements doivent être entre zéro et le montant total de la charge.","pending":"En attente","pending activity":"Activité en attente","pending availability":"Disponibilité en attente","pending payment description":"Description du paiement en attente","performing this action will add additional options as new monthly charges. are you sure you want to continue?":"L'exécution de cette action ajoutera les options supplémentaires en tant que nouvelles charges mensuelles. Êtes-vous sûr de vouloir continuer?","permission to enter*":"Permission d'entrer*","please contact your property manager if you do not have one.":"Veuillez contacter votre gestionnaire immobilier si vous n'en avez pas un.","please enter a campaign name.":"Veuillez saisir un nom de campagne.","please enter a message.":"Veuillez saisir un message.","please enter a payment amount less than or equal to the charge amount.":"Veuillez indiquer un montant de paiement inférieur ou égal au montant des charges.","please enter a valid credit card number.":"Veuillez saisir un numéro de carte de crédit valide.","please enter a valid date (iso).":"Veuillez saisir une date valide (ISO).","please enter a valid date.":"Veuillez saisir une date valide.","please enter a valid email address":"Veuillez saisir une adresse électronique valide","please enter a valid email address.":"Veuillez saisir une adresse électronique valide.","please enter a valid number.":"Veuillez saisir un numéro valide.","please enter a valid phone number.":"Veuillez saisir un numéro de téléphone valide.","please enter a valid routing number":"Veuillez saisir un numéro d’acheminement valide","please enter a valid url.":"Veuillez saisir un URL valide.","please enter a value with a valid extension.":"Veuillez saisir une valeur avec une extension valide.","please enter all required information for":"Veuillez saisir toutes les informations requises pour","please enter an amount less than or equal to":"Veuillez saisir un montant inférieur ou égal à","please enter an amount less than or equal to your unpaid amount.":"Veuillez saisir un montant inférieur ou égal à votre montant impayé.","please enter an amount less than your unpaid amount.":"Veuillez saisir un montant inférieur à votre montant impayé.","please enter date you would like to send this survey.":"Veuillez saisir la date que vous souhaitez envoyer ce sondage.","please enter days":"Veuillez saisir les jours","please enter expected move-in date":"Veuillez saisir la date prévue d'emménagement","please enter only digits.":"Veuillez ne saisir que des chiffres.","please enter positive amount.":"Veuillez saisir un montant positif.","please enter promotional code":"Veuillez saisir le code promotionnel","please enter registration code or phone number":"Veuillez saisir le Code d’inscription ou le Numéro de téléphone","please enter registration code or phone number.":"Veuillez saisir le Code d’inscription ou le Numéro de téléphone.","please enter the same value again.":"Veuillez saisir la même valeur de nouveau.","please enter title":"Veuillez saisir le titre","please enter valid first name.":"Veuillez saisir un prénom valide.","please enter valid last name.":"Veuillez saisir un nom de famille valide.","please enter valid phone number.":"Veuillez saisir un numéro de téléphone valide.","please read this entire agreement before proceeding. by clicking on the \"pay by secure ems pay server\" button below, you accept the terms and conditions. if you do not accept these terms, do not click \"pay by secure ems pay server\"below.":"VEUILLEZ LIRE L’INTÉGRALITÉ DE L’ENTENTE AVANT DE POURSUIVRE. EN CLIQUANT SUR LE BOUTON « Payer par serveur sécurisé EMS PAY » CI-DESSOUS, VOUS ACCEPTEZ LES CONDITIONS GÉNÉRALES. SI VOUS N’ACCEPTEZ PAS CES CONDITIONS GÉNÉRALES, NE CLIQUEZ PAS SUR LE BOUTON « Payer par serveur sécurisé EMS PAY » CI-DESSOUS.","please read this entire agreement before proceeding. by clicking on the 'pay by secure ems pay server' button below, you accept the terms and conditions. if you do not accept these terms, do not click 'pay by secure ems pay server' below.":"VEUILLEZ LIRE L’INTÉGRALITÉ DE L’ENTENTE AVANT DE POURSUIVRE. EN CLIQUANT SUR LE BOUTON « Payer par serveur sécurisé EMS PAY » CI-DESSOUS, VOUS ACCEPTEZ LES CONDITIONS GÉNÉRALES. SI VOUS N’ACCEPTEZ PAS CES CONDITIONS GÉNÉRALES, NE CLIQUEZ PAS SUR LE BOUTON « Payer par serveur sécurisé EMS PAY » CI-DESSOUS.","please review the documents below and sign your lease whenever you're ready.":"Veuillez réviser les documents ci-dessous et signer votre bail dès que vous êtes prêt.","please select":"Veuillez sélectionner","please select !":"Veuillez sélectionner!","please select a before/on/after location.":"Veuillez sélectionner un emplacement Avant le/Le/Après le.","please select a location from the list":"Veuillez sélectionner un emplacement dans la liste","please select a payment method":"Veuillez sélectionner un mode de paiement","please select a template before continuing":"Veuillez sélectionner un modèle avant de continuer","please select a template before continuing.":"Veuillez sélectionner un modèle avant de continuer.","please select at least one property.":"Veuillez sélectionner au moins une propriété.","please select at least one prospect from the list to send a notification email.":"Veuillez sélectionner au moins un client potentiel dans la liste pour envoyer un courriel de notification.","please select at least one status.":"Veuillez sélectionner au moins un statut.","please select if document is active.":"Veuillez sélectionner si le document est actif.","please select if document is required.":"Veuillez sélectionner si le document est requis.","please select residents.":"Veuillez sélectionner les Résidents.","please select the campaign type.":"Veuillez sélectionner le type de campagne.","please select the floor plans you would like to show on your brochure!!":"Veuillez sélectionner les plans d’étage que vous souhaitez montrer sur votre brochure!!","please select the floor plans you would like to show on your brochure!! test brochure by activating it":"Veuillez sélectionner les plans d’étage que vous souhaitez montrer sur votre brochure!! Testez la brochure en l'activant","please select valid start date to get your free online renters insurance quote.":"Veuillez sélectionner une date de début valide pour obtenir votre devis d'assurance locataire GRATUIT en ligne.","please select widget(s) before continuing.":"Veuillez sélectionner un ou des gadgets logiciels avant de continuer.","please specify number of services you wish to rent":"Veuillez spécifier le nombre de services que vous souhaitez louer","please take a moment to rate your experience with the completed maintenance request(s).":"Veuillez prendre quelques minutes pour évaluer votre expérience concernant la ou les demandes d'entretien effectuées.","please upload no more than 10 images. only .jpeg, .gif or .png files are allowed.":"Veuillez ne pas télécharger plus de 10 images. Seuls les fichiers .jpeg, .gif ou .png sont autorisés.","please upload required documents before proceeding.":"Veuillez télécharger les documents requis avant de poursuivre.","please use this email with your password next time you login. you may change your password with the change password button under profile.":"Veuillez utiliser cette adresse électronique avec votre mot de passe la prochaine fois que vous vous connecter. Vous pouvez changer votre mot de passe avec le bouton Modifier le mot de passe sous Profil.","please verify your account using the confirmation link we have sent to your email address.":"Veuillez vérifier votre compte en utilisant le lien de confirmation que nous avons envoyé à votre adresse électronique.","application information":"Informations sur la demande","application questions?":"Questions sur la demande?","applied":"Appliqué","apply":"Faire une demande","apply now !!":"FAITES UNE DEMANDE MAINTENANT!!","apply online now":"Faites une demande en ligne maintenant","apply.":"faire une demande.","approval date":"Date d'approbation","approved":"Approuvé","april monthly charges":"Les charges mensuelles d’avril","april monthly charges and monthly auto-pay":"Les charges mensuelles d’avril et le paiement automatique mensuel","apt":"Appartement","apt #":"N° d’app.","are you sure you want to remove this applicant?":"Êtes-vous sûr de vouloir supprimer ce demandeur?","are you sure you want to remove this property from your favorites?":"Êtes-vous sûr de vouloir supprimer cette propriété de vos favoris?","are your sure want to unsubscribe?":"Êtes-vous sûr de vouloir vous désabonner?","area":"Région","argentina":"Argentine","armenia":"Arménie","as soon as possible!":"Dès que possible!","as the first person to complete this application, you will be considered the primary applicant, and you will be asked to provide information about additional occupants.":"En tant que première personne à remplir cette demande, vous serez considéré comme le demandeur principal et il vous sera demandé de fournir des informations sur les occupants supplémentaires.","asap":"Dès que possible","assigned to":"Assigné à","assignment date":"Date d'assignation","attachment":"Pièce jointe","attachments":"Pièces jointes","august":"Août","august monthly charges":"Les charges mensuelles d’août","august monthly charges and monthly auto-pay":"Les charges mensuelles d’août et le paiement automatique mensuel","aunt":"Tante","australia":"Australie","austria":"Autriche","authenticate user":"Authentifier l'utilisateur","authorized for key?":"Autorisé pour une clé?","authorized guest":"Invité autorisé","auto-pay account":"Compte de paiement automatique","brief description:":"Brève description :","british indian ocean territory":"Territoire britannique de l'océan Indien","brother":"Frère","building":"Bâtiment","building your ideal match...":"En train de construire votre correspondance idéale...","bulgaria":"Bulgarie","bulletin board":"Babillard","bulletin board - allow personal messages":"Babillard - Permettre des messages personnels","bulletin board display name":"Nom d’affichage du babillard","bulletin board email notifications":"Notifications par courriel du babillard","bulletin board email notifications:":"Notifications par courriel du babillard :","business center":"Centre d'affaires","by connecting your existing account, you are agreeing to the":"En vous connectant à ce compte existant, vous acceptez les","by creating your account you are agreeing to the":"En créant ce compte, vous acceptez les","by signing this application, i agree that the information provided in this application is true and correct.":"En signant cette demande, je reconnais que les informations fournies dans cette demande sont vraies et correctes.","by submitting this form, you agree to rentcafé":"En soumettant ce formulaire, vous acceptez que RentCafe","by using this website you agree to our use of cookies as described in our":"En utilisant ce site web, vous acceptez que nous utilisions des témoins, comme décrit dans notre","by:":"Par :","by: anonymous":"Par : Anonyme","cable ready":"Prêt pour le câble","calendar":"Calendrier","call":"Appel","call for details":"Appelez-nous pour plus de détails","call now":"APPELEZ MAINTENANT","call us":"APPELEZ-NOUS","call us :":"Appelez-nous :","call:":"appel :","cambodia":"Cambodge","cameroon":"Cameroun","cancel":"Annuler","canceled":"Annulé","cape verde":"Cap-Vert","caption for image":"légende pour l'image","car":"Automobile","carpeting":"Moquette","check the status of your applications.":"Vérifiez le statut de vos demandes.","child care":"Garde d'enfants","chile":"Chili","choose file":"Choisir un fichier","choose your apartment":"Choisir votre appartement","christmas island":"L'île Christmas","city":"Ville","clear":"Effacer","clear all":"Effacer tout","click":"Cliquer","click here":"Cliquer ici","click here to log in.":"Cliquer ici pour vous connecter.","click here to login.":"cliquer ici pour vous connecter.","click here to receive future marketing messages":"Cliquer ici pour recevoir les futures communications de marketing","click here to receive future marketing messages.":"Cliquer ici pour recevoir les futures communications de marketing.","click here to register":"Cliquer ici pour vous inscrire","click here to register.":"Cliquer ici pour vous inscrire.","click here to sign in.":"Cliquer ici pour vous connecter.","client name:":"Nom du client :","client pin#:":"N° NIP du client :","client team:":"Équipe du client :","close":"Fermer","closing":"fermeture","club discount":"Remise pour le club","clubhouse":"Pavillon","cocos (keeling) islands":"Îles Cocos (Keeling)","color":"Couleur","coming soon":"Disponible bientôt","comments":"Remarques","community":"Communauté","community amenities":"Commodités communautaires","community amenities:":"Commodités communautaires :","community calendar":"Calendrier communautaire","community specials":"Offres spéciales de la communauté","comoros":"Comores","company not found.":"Entreprise non trouvée.","compare communities":"Comparer les communautés","compare now":"Comparer maintenant","compare properties":"Comparer les propriétés","completed":"Terminé","concierge":"Concierge","condo":"Condo","confirm password":"Confirmer le mot de passe","confirm password*":"Confirmer le mot de passe*","confirm password:":"Confirmer le mot de passe :","confirmation":"Confirmation","confirmation number:":"Numéro de confirmation :","create an account to join our waiting list":"Créer un compte pour joindre notre liste d’attente","create my account":"Créer mon compte","create reservation":"Créer une réservation","create your account today, and apply online!":"Créez votre compte aujourd’hui, et faites une demande en ligne!","created by":"Créé par","created by:":"Créé par :","creation date":"Date de création","creation date:":"Date de création :","credits redeemed must be between zero and the total credit amount.":"Les crédits échangés doivent être entre zéro et le montant total des crédits.","crime patrol":"Patrouille anti criminalité","crime petrol":"Patrouille anti criminalité","croatia":"Croatie","currency":"Devise","current charges and additional rental options":"Les charges actuelles et les options de location supplémentaires","current monthly charges":"Charges mensuelles actuelles","current outstanding charges":"Charges impayées actuelles","current password":"Mot de passe actuel","customize your robots.txt file. only do this if you have advanced knowledge on this subject.":"Personnalisez votre fichier robots.txt. Ne le faites que si vous avez des connaissances avancées en la matière.","czech republic":"République Tchèque","daily":"Quotidien","daily digest":"Recueil quotidien","data saved succesfully":"Données sauvegardées avec succès","data saved succesfully.":"Données sauvegardées avec succès.","data saved successfully":"Données sauvegardées avec succès","date":"Date","date available":"Date disponible","date can not be greater than":"La date ne peut pas être supérieure à","date can not be past":"La date ne peut pas être dépassée","date completed":"Date d'achèvement","date created":"Date de création","date of birth":"Date de naissance","date scheduled":"Date prévue","dates of your current lease:":"Les dates de votre bail actuel :","dates of your scheduled lease:":"Les dates de votre bail prévu :","daughter":"Fille","day":"jour","day(s)":"jour(s)","do you want to finalize the lease?":"Voulez-vous finaliser le bail?","do you want to leave this guest as cancelled?":"Voulez-vous laisser cet invité comme annulé?","do you want to navigate to other page without saving the signatures?":"Voulez-vous naviguer vers d’autres pages sans sauvegarder les signatures?","do you want to navigate without saving the signatures?":"Voulez-vous naviguer sans sauvegarder les signatures?","do you want to reactivate this guest?":"Voulez-vous réactiver cet invité ?","do you want to re-apply ?":"Voulez-vous faire une nouvelle demande?","do you want to rescore this group?":"Voulez-vous recalculer ce groupe ?","do you want to rescreen the applicants and its occupants?":"Voulez-vous procéder à un nouvel examen des demandeurs et de leurs occupants?","do you want to send a reminder ?":"Voulez-vous envoyer un rappel ?","document has been deleted. please upload a new document":"Le document a été supprimé. Veuillez télécharger un nouveau document","document signature":"Signature du document","documents":"Documents","documents menu":"Menu des documents","dominican republic":"République Dominicaine","don’t see the apartment or move in date you want, click here to be put on a wait list for this floorplan":"Si vous ne voyez pas l'appartement ou la date d'emménagement que vous souhaitez, cliquez ici pour être inscrit sur une liste d'attente pour ce plan d’étage","don't have an account yet?":"Vous ne disposez pas encore d'un compte?","door attendant":"Portier","download":"Télécharger","drop-off":"Déchargement","drop-off date":"Date du déchargement","drop-off location":"Lieu de déchargement","drop-offs":"Déchargements","dry cleaning":"Nettoyage à sec","duration*":"Durée*","during our office hours if you have any questions we can answer for you.":"pendant nos heures de bureau si vous avez des questions, nous pouvons vous répondre.","dutch - standard":"Néerlandais - Standard","ebrochure":"Brochure électronique","edit":"Modifier","edit profile":"Modifier le profil","efficient appliances":"Appareils ménagers efficaces","egypt":"Égypte","elapsed time":"Temps écoulé","electronic thermostat":"Thermostat électronique","elevator":"Ascenseur","error: end date must be after start date.":"Erreur : La date de fin doit être après la date de début.","estonia":"Estonie","ethiopia":"Éthiopie","events":"Événements","every":"Chaque","expected move in date (dd/mm/yyyy)":"Date d’emménagement prévue (jj/mm/aaaa)","expiry date":"Date d'expiration","extra payment amount":"Montant du paiement supplémentaire","extra storage":"Entreposage supplémentaire","facebook campaign":"Campagne Facebook","falkland islands (malvinas)":"Îles Falkland (Malvinas)","false":"Faux","family:":"Famille :","faroe islands":"Îles Féroé","father":"Père","favorite properties":"Propriétés favorites","featured amenities":"Commodités en vedette","february":"Février","february monthly charges":"Charges mensuelles de février","february monthly charges and monthly auto-pay":"Les charges mensuelles de février et le paiement automatique mensuel","feed fish":"Nourrir les poissons","file":"Fichier","file must be less than 5mb in size.":"La taille du fichier doit être inférieure à 5 Mo.","file must be less than 5mb in size. file types allowed: gif, jpg, png, bmp, pdf, doc, docx, xlsx maximum 100 characters are allowed in file name and special characters - /:*?<>| are not allowed in file name.":"La taille du fichier doit être inférieure à 5 Mo. Types de fichiers acceptés : gif, jpg, png, bmp, pdf, doc, docx, xlsx. Un maximum de 100 caractères sont autorisés dans le nom de fichier et les caractères spéciaux - /: *?<>| ne sont pas autorisés.","file name":"Nom du fichier","file name contains special characters.":"Le nom du fichier contient des caractères spéciaux.","file name too long.":"Le nom du fichier est trop long.","for mapping. please select!":"pour la cartographie. Veuillez sélectionner!","for more information about robots.txt, please visit":"Pour plus d’informations sur robots.txt, consultez","for performance reasons, please don't select more than":"Pour des raisons de performance, s'il vous plaît ne sélectionnez pas plus que","for technical support please email":"Pour obtenir du soutien technique, veuillez envoyer un courriel","forgot password":"Mot de passe oublié","forgot password?":"Mot de passe oublié?","fourth vehicle":"Quatrième véhicule","foyer/entryway":"Foyer/entrée","fr":"V","france":"France","free weights":"Poids libres","french - canada":"Français - Canada","french guiana":"Guyane française","french polynesia":"Polynésie française","french southern territories":"Terres australes françaises","friday":"Vendredi","friday:":"Vendredi :","friend":"ami","friends":"amis","from":"De","full description*":"Description complète*","full description:":"Description complète :","fully integrated *":"Entièrement intégré","furnished":"meublé","furniture pack*":"Pack mobilier*","gas range":"Cuisinière à gaz","georgia":"Géorgie","german - germany":"Allemand - Allemagne","germany":"Allemagne","get in touch":"Nous joindre","get notified":"Recevoir des notifications","get notified as soon as it becomes available.":"Recevoir une notification dès qu’il est disponible.","get on the waitlist":"Inscrivez-vous sur la liste d'attente","get ready to move in!":"Préparez-vous à emménager!","get score":"Obtenez le score","get the apartment you want right away!":"Obtenez l’appartement que vous voulez tout de suite!","get your free online renters insurance quote":"Obtenez votre devis GRATUIT d'assurance locataire en ligne","give us a call at":"Appelez-nous au","home decor planner":"Décorateur d'intérieur","home delivery":"Livraison à domicile","home:":"Accueil :","hong kong":"Hong Kong","house sitting":"Garde de maison","housekeeping":"Entretien ménager","how can we help you?":"Comment pouvons-nous vous aider?","how many bathrooms?":"Combien de salles de bains?","how many bedrooms?":"Combien de chambres à coucher?","how would you like to be contacted?":"Comment souhaitez-vous être contacté?","how would you like to pay?":"Comment voulez-vous payer ?","hr.":"Heure","hrs.":"Heures","hungary":"Hongrie","i agree to be screened after payment of application fees.":"J'accepte de me faire examiner après le paiement des frais de la demande.","i am available":"Je suis disponible","i don't have a middle name":"Je n'ai pas de deuxième prénom","i forgot my password":"J’ai oublié mon mot de passe","i have read and accept the":"J'ai lu et accepte le","i will take it":"Je le prends","iceland":"Islande","if you are still experiencing login issues, contact your property manager.":"Si vous éprouvez toujours des problèmes de connexion, veuillez contacter votre gestionnaire immobilier.","if you do not finish your application now, you may log in it at a later time to complete it, or to review it after you have submitted it.":"Si vous ne terminez pas votre demande maintenant, vous pourrez y revenir plus tard pour la compléter ou la réviser après l'avoir soumise.","if you have an account with us an email will be sent.":"Si vous avez un compte chez nous, un courriel vous sera envoyé.","if you have an acount with us an email will be sent.":"Si vous avez un compte chez nous, un courriel vous sera envoyé.","if you wish to add an additional rental option to your lease, please select the item to view more details.":"Si vous souhaitez ajouter une option de location supplémentaire à votre contrat de bail, veuillez sélectionner l'élément pour obtenir plus de détails.","problems adding a bank account?":"Des problèmes pour ajouter un compte bancaire?","processing request...":"Traitement de la demande...","processing request…":"Traitement de la demande...","processing...":"Traitement...","professional":"Professionnel","professionally managed by":"Géré professionnellement par","profile picture":"Photo de profil","profile":"Profil","program version:":"Version du logiciel :","properties you might also like":"Propriétés que vous pourriez également aimer","property":"PROPRIÉTÉ","property 1":"Propriété 1","property address":"Adresse de la propriété","property manager":"Gestionnaire immobilier","property name":"Nom de la propriété","property tab":"Onglet de propriété","property type:":"Type de propriété :","prospect applicant":"Demande de client potentiel","prospect registration email subscription narrative":"Narratif d’abonnement aux courriels d’inscription du client potentiel","prospect registration unsubscribe link message narrative":"Narratif du lien de désabonnement aux courriels d’inscription du client potentiel","public transportation":"Transports en commun","quantity":"Quantité","questions / comments":"Questions / Remarques","quote":"Devis","racquetball court":"Court de racquetball","rate and review our property":"Notez et évaluez notre propriété","rate us":"Évaluez-nous","rate us today!":"Évaluez-nous aujourd’hui!","rates may apply.":"Des tarifs peuvent s’appliquer.","rating":"Évaluation","ratings by category":"Évaluations par catégorie","read more":"Lire plus","read property manager's response":"Lire la réponse du gestionnaire immobilier","reason for moving":"Raison du déménagement","receive future marketing messages":"Recevoir des communications futures de marketing","recent activity":"Activité récente","registration error: past tenant access not allowed. please contact the property manager.":"Erreur d'inscription : l'accès des anciens locataires n'est pas autorisé. Veuillez contacter le gestionnaire immobilier.","registration error: please provide your registration code to complete this registration.":"Erreur d'inscription : veuillez fournir votre code d’inscription pour compléter cette inscription.","registration error: please provide your registration code to complete this registration. please contact your property manager if you do not have one.":"Erreur d'inscription : veuillez fournir votre code d'inscription pour compléter cette inscription. Veuillez contacter votre gestionnaire immobilier si vous n'en avez pas un.","registration error: property is not active.":"Erreur d’inscription : la propriété n’est pas active.","registration error: property not available in rentcafe.":"Erreur d'inscription : la propriété n'est pas disponible dans RentCafe.","registration succesful":"Inscription réussie","registration succesful.":"Inscription réussie.","relation":"Relation","relationship":"Relation","remaining":"Restant","remove":"Retirer","remove all":"Enlever tout","rent me":"Louez-moi","rent or own":"Loue ou possède","rent:":"Loyer :","rentable item is not selected for mapping. please select !":"L’article louable n’est pas sélectionné pour la cartographie. Veuillez sélectionner!","rentable items not selected.":"Les articles louables ne sont pas sélectionnés.","rental applications":"Demandes de location","rental information":"Informations de location","rental options":"Options de location","rental type:":"Type de location :","rentcafe":"RentCafe","reset":"Réinitialiser","residency from":"Résidence à partir de","resident":"Résident","resident accounts":"Comptes des résidents","resident information":"Information du résident","resident login":"Connexion des résidents","resident login page narrative":"Narratif de la page de connexion des résidents","resident portal":"PORTAIL DES RÉSIDENTS","resident registration":"Inscription du résident","resident services":"Services des résidents","resident services - tooltip":"Services des résidents - Info-bulle","residents":"RÉSIDENTS","restart":"RECOMMENCER","restore default":"Restaurer les valeurs par défaut","restore default robots.txt":"Restaurer le robots.text par défaut","results sorted by:":"Résultats triés par :","retired":"Retraité","return date":"Date de retour","return to content":"Retour au contenu","reunion":"Réunion","review":"Réviser","review lease":"Réviser bail","review memos":"Réviser mémos","review payment":"Vérifier le paiement","review submitted.":"Révision soumise.","review title":"Réviser le titre","reviews":"Revues","rewards":"Récompenses","romania":"Roumanie","roommate":"Colocataire","russian federation":"Fédération de Russie","sa":"S","saint helena":"Sainte-Hélène","saint kitts and nevis":"Saint-Christophe-et-Niévès","saint pierre and miquelon":"Saint-Pierre-et-Miquelon","saint vincent and the grenadines":"Saint-Vincent-et-les-Grenadines","sao tome and principe":"Sao Tomé-et-Principe","saturday":"Samedi","saudi arabia":"Arabie saoudite","save":"Sauvegarder","save & continue":"Sauvegarder et continuer","save selection":"Sauvegarder la sélection","save your application and log in at any time to continue.":"Sauvegarder votre demande et connectez-vous de nouveau à tout moment pour continuer.","says":"dit","says:":"dit :","schedule a tour":"Planifier une visite","scheduled":"Prévu","select 'authorized guest' to add/edit the guest.":"Sélectionner « Invité autorisé » pour ajouter/modifier l’invité.","select 'make a reservation' to create a reservation.":"Sélectionner « Faire une réservation » pour créer une réservation.","select 'make payments' to pay rent and other charges, and to schedule automatic payments.":"Sélectionnez « Effectuer des paiements » pour payer le loyer et les autres charges ainsi que planifier des paiements automatiques.","select 'package delivery' to view pick-ups and drop-offs.":"Sélectionner « Livraison de colis » pour visualiser les Prises de livraison et les Déchargements.","select payment method":"Sélectionner mode de paiement","---select payment method---":"---Sélectionner mode de paiement---","select 'pending activity' to view payments in process.":"Sélectionner « Activité en attente » pour visualiser les paiements en cours.","select 'recent activity' to show historical charges and payments":"Sélectionner « Activité récente » pour afficher les charges et paiements historiques","select 'resident away notice' to add/edit the away notice.":"Sélectionner « Avis d’absence du résident » pour ajouter/modifier l’avis d'absence.","select 'resident preference' to review/update your preference.":"Sélectionner « Préférence du résident » pour vérifier/mettre à jour votre préférence.","select services you wish to have during away period":"Sélectionner les services que vous souhaitez avoir pendant la période d'absence","select the change password button to change the email address you use to log into resident services, to change your resident services password, or to update your security question.":"Sélectionnez le bouton Modifier le mot de passe pour changer l'adresse électronique que vous utilisez pour vous connecter aux services aux résidents, pour modifier votre mot de passe des services aux résidents ou, pour mettre à jour votre question de sécurité.","select the edit profile button to update your phone numbers and vehicle information.":"Sélectionnez le bouton Modifier le profil pour mettre à jour vos numéros de téléphone et les informations sur le véhicule.","some breeds are not allowed for cats only":"Certaines races ne sont pas autorisées pour les chats uniquement","son":"Fils","sort by":"Trier par","sort by availability":"Trier par disponibilité","sort by beds (low to high)":"Trier par chambres (du plus bas au plus haut)","sort by city":"Trier par ville","sort by distance":"Trier par distance","sort by name":"Trier par nom","sort by rent (low to high)":"Trier par loyer (du plus bas au plus haut)","source:":"Source :","south africa":"Afrique du Sud","spa/hot tub":"Spa/bain tourbillon","spain":"Espagne","spanish - spain":"Espagnol - Espagne","spanish speaking staff":"Personnel parlant l'espagnol","specials":"Spéciaux","spouse":"Conjoint","sq. m":"m²","sq. m.:":"M² :","sq.m":"m²","sq.m.":"m²","sqm":"M²","square footage":"Superficie en pieds carrés","square meters":"Mètres carrés","ssn":"NAS","staff":"Personnel","staff:":"Personnel :","start application":"Démarrer la demande","start date":"Date de début","start date*":"Date de début*","start over":"Recommencer","start time*":"Heure de début*","start typing, then use the up and down arrows to select and option from the list":"Commencez à taper, puis utilisez les flèches haut et bas pour sélectionner une option dans la liste","started":"Commencé","starting at":"à partir de","state/province - zip/postal code":"État/Province - Zip/Code postal","state:":"Province :","status changed from":"Changement de statut de","status changed to":"Statut modifié à","status date:":"Date du statut :","staying in touch with your community has never been easier.":"Rester en contact avec votre communauté n'a jamais été aussi simple.","storage":"Entreposage","street view":"Vue de la rue","strong":"Fort","thank you for your feedback! please rate our property based on the following categories from 1 (worst) to 5 (best).":"Merci pour votre avis! Veuillez évaluer notre propriété basée sur les catégories suivantes sur une échelle de 1 (le meilleur) à 5 (le pire).","thank you for your interest in pre-qualification. we received your information and will contact you shortly.":"Merci de votre intérêt pour la préqualification. Nous avons reçu vos informations et nous vous contacterons sous peu.","thank you!":"Merci!","thank you.":"Merci.","thank you. you have now been added to the mailing list.":"Merci. Vous avez été ajouté à la liste de diffusion.","the change will effect all selected properties.":"La modification affectera toutes les propriétés sélectionnées.","the charge(s) listed below will be applied when the reservation has been approved.":"Les charges énumérées ci-dessous seront appliqués lorsque la réservation aura été approuvée.","the closest move-in date has been selected for you.":"La date d'emménagement la plus proche a été choisie pour vous.","the marketing source selected is already assigned for this property. are you sure you wish to continue?":"La source de marketing sélectionnée est déjà attribuée pour cette propriété. Êtes-vous sûr de vouloir continuer ?","the name you provide will be published on our website.":"Le nom que vous fournissez sera publié sur notre site Web.","the password reset link is invalid. to request a new password reset link, contact the property manager.":"Le lien de réinitialisation du mot de passe n'est pas valide. Pour demander un nouveau lien de réinitialisation du mot de passe, contactez le gestionnaire immobilier.","the specified credentials are invalid.":"Les informations d'identification spécifiées ne sont pas valides.","this account currently has auto-pay setup. do you want to make a one-time payment?":"Ce compte est actuellement configuré pour le paiement automatique. Voulez-vous effectuer un paiement unique ?","this account has already been registered.":"Ce compte a déjà été inscrit.","this account has already been registered. you will be redirected to the login page.":"Ce compte a déjà été inscrit. Vous serez redirigé vers l'écran de connexion.","this account has been locked until your password is reset. please check your email.":"Ce compte a été verrouillé jusqu'à ce que votre mot de passe soit réinitialisé.","this account is temporarily unavailable due to maintenance.":"Ce compte est temporairement indisponible pour cause d’entretien.","this account is temporarily unavailable due to maintenance. please contact your property management company for further assistance or check back at a later time.":"Ce compte est temporairement indisponible pour cause de maintenance. Veuillez contacter votre société de gestion immobilière pour obtenir une assistance supplémentaire ou revenez plus tard.","this applicant has registered in our system, and has not completed the application.":"Ce demandeur s'est inscrit dans notre système et n'a pas rempli la demande.","this application was previously approved. please rescore this application to account for the recent changes":"Cette demande a été précédemment approuvée. Veuillez réévaluer cette demande pour tenir compte des changements récents","this button takes you to the application process":"Ce bouton vous permet d'accéder au processus de demande","this custum field is already mapped. please select another!":"Ce champ personnalisé est déjà mappé. Veuillez en sélectionner un autre!","this feature is not supported on a mobile device. to continue with the rest of the application, please log in using a desktop or laptop computer.":"Cette fonction n'est pas prise en charge sur un appareil mobile. Pour continuer avec le reste de la demande, veuillez vous connecter en utilisant un ordinateur de bureau ou un ordinateur portable.","this field is required.":"Ce champ est requis.","this floor plan supports a maximum of":"Ce plan d'étage peut accommoder un maximum de","this ils requires a contract before adding properties. you should only continue if you have a contract in place. are you sure you would like to continue?":"Ce Service d'inscription en ligne exige un contrat avant d'ajouter des propriétés. Vous ne devez continuer que si vous avez un contrat en place. Êtes-vous sûr de vouloir continuer?","this property is listed under property list and its parent property is already published on ils. do you still want to publish it on ils?":"Cette propriété est répertoriée dans la liste des propriétés et sa propriété mère est déjà publiée sur le Service d'inscription en ligne. Voulez-vous toujours la publier sur le Service d'inscription en ligne?","this rentable item is already mapped. please select another!":"Cet article louable est déjà mappé. Veuillez en sélectionner un autre!","this site is protected by recaptcha and the google":"Ce site est protégé par reCAPTCHA et par Google","thursday":"Jeudi","thursday:":"Jeudi :","time remaining:":"Temps restant :","timor-leste":"Timor-Leste","title":"Titre","title,first name":"Titre, Prénom","to":"à","to manage your email preferences, please sign in and visit your profile page.":"Pour gérer vos préférences de courriel, veuillez vous connecter et visiter votre page de profil.","to read the terms and conditions.":"pour lire les Conditions générales.","to select this unit, click the apply now button.":"Pour sélectionner cette unité, cliquez sur le bouton Faire une demande maintenant.","please visit the residentshield link below to compare policy coverage and pricing from our website. by purchasing your policy through residentshield, your resident account will be updated automatically, saving you time and effort.":"Veuillez visiter le lien ResidentShield ci-dessous pour comparer la couverture et les prix des polices à partir de notre site Web. En achetant votre police par le biais de ResidentShield, votre compte de résident sera mis à jour automatiquement, ce qui vous fera gagner du temps et de l'énergie.","please wait ...":"Veuillez patienter…","please wait while we log you out.":"Veuillez patienter pendant que nous vous déconnectons.","please wait, we're loading your account.":"Veuillez patienter, nous sommes en train de télécharger votre compte.","please wait, we're loading your account…":"Veuillez patienter, nous sommes en train de télécharger votre compte...","please. bring them to the office. we need to keep a track of our keys.":"S'il vous plaît. Apportez-les au bureau. Nous devons garder une trace de nos clés.","pm":"PM","poland":"Pologne","pool":"Piscine","portal lease documents":"Documents de bail du Portail","post comment":"Publier le commentaire","post message":"Publier le message","post update":"Publier la mise à jour","postal code":"Code postal","posted on:":"Publié le :","posting assistant recommends this widget be included in your template, are you sure you want to remove it?":"L’Assistant de publication recommande d’inclure ce gadget logiciel dans votre modèle, êtes-vous sûr de vouloir le supprimer?","posting assistant requires this widget be included in your template. it cannot be removed.":"L’Assistant de publication exige que ce gadget logiciel soit inclus dans votre modèle. Il ne peut pas être supprimer.","preference":"Préférence","preference saved successfully":"Préférence sauvegardée avec succès","use your mouse or finger to sign in the boxes,":"Utilisez votre souris ou votre doigt pour signer dans les cases,","use your mouse to explore our property map.":"Utilisez votre souris pour explorer la carte de notre propriété.","user has already unsubscribed":"L'utilisateur s'est déjà désabonné","user has already unsubscribed.":"L'utilisateur s'est déjà désabonné.","user login":"Utilisateur en ligne","user not configured correctly, please contact administrator.":"L’utilisateur n’est pas configuré correctement, veuillez contacter l’administrateur.","user registration":"Inscription de l'utilisateur","user settings":"Paramètres de l'utilisateur","user verification":"Vérification de l'utilisateur","user with email address not found":"Utilisateur avec adresse électronique non trouvée","user with email address not found.":"Utilisateur avec adresse électronique non trouvée.","uzbekistan":"Ouzbékistan","value":"Valeur","value:":"Valeur :","vehicle information":"Informations sur le véhicule","vehicle type":"Type de véhicule","vehicles":"Véhicules","verification email":"Courriel de vérification","videos":"Vidéos","viet nam":"Vietnam","view":"Voir","view activity":"Voir l'activité","view all":"VOIR TOUT","view availability":"Voir la disponibilité","view brochure":"Voir la brochure","view details":"Voir les détails","view ebrochure":"Afficher brochure électronique","view floor plans":"Voir les plans d'étage","view floor plans for":"Voir les plans d’étage pour","view gallery":"Voir la galerie","view more amenities":"Voir plus de commodités","view property website":"voir le site web de la propriété","view reservations":"Voir les réservations","virgin islands, british":"Îles Vierges britanniques","virgin islands, u.s.":"Îles Vierges américaines","virtual videos":"Vidéos virtuels","visit us":"VISITEZ-NOUS","volleyball court":"Terrain de volleyball","w/d hookup":"Connexion laveuse/sécheuse","waitlisted":"Sur la liste d’attente","waitunit":"Unité d’attente","wallis and futuna":"Wallis-et-Futuna","want to hear back from us? leave your email address so we can follow up with you.":"Vous voulez que nous vous contactions? Laissez votre adresse électronique pour que nous puissions communiquer avec vous.","want to send us a note?":"Vous voulez nous envoyer un mot?","warning":"Avertissement","was 30 days notice given":"Un préavis de 30 jours a été donné","washer/dryer":"Laveuse/sécheuse","water plants":"Arroser les plantes","we":"M","we found multiple accounts matching this phone number, please login using your username and password.":"Nous avons trouvé plusieurs comptes correspondant à ce numéro de téléphone, veuillez connecter avec votre nom d'utilisateur et votre mot de passe.","we were not able to locate any resident account matching this phone number, please sign in using username and password and update the 'mobile phone for texts (sms)' field in profile.":"Nous n'avons pas été en mesure de trouver un compte de résident correspondant à ce numéro de téléphone. Veuillez vous connecter en utilisant votre nom d'utilisateur et votre mot de passe et mettre à jour le champ « Téléphone cellulaire pour les textes (SMS) » dans le Profil.","we were unable to find your record using this phone number, please register using your personal info":"Nous n'avons pas pu trouver votre dossier en utilisant ce numéro de téléphone, veuillez vous inscrire en utilisant vos informations personnelles","weak":"Faible","we'd love to talk about our events and latest news. your data will be processed in accordance with our privacy policy and we will always keep your data safe and secure. you will also be able to update your preferences or unsubscribe from our communications at any time. please tick this box if you would like to receive our marketing communications.":"Nous serions ravis de vous parler de nos événements et de nos dernières nouvelles. Vos données seront traitées conformément à notre politique de confidentialité et nous nous engageons à les conserver en toute sécurité. Vous pourrez également mettre à jour vos préférences ou vous désabonner de nos communications à tout moment. Veuillez cocher cette case si vous souhaitez recevoir nos communications de marketing.","wednesday":"Mercredi","wednesday:":"Mercredi :","weekly":"Hebdomadaire","weekly digest":"Recueil hebdomadaire","weight(lbs)":"Poids (en livres)","welcome back,":"Bienvenue à nouveau,","welcome back, !":"Bienvenue à nouveau !","welcome home!!":"Bienvenue chez vous!!","welcome narrative":"Narratif de bienvenue","welcome to":"Bienvenue à","welcome to our online application!":"Bienvenue à notre demande en ligne!","welcome to resident services":"Bienvenue aux services aux résidents","welcome to resident services.":"Bienvenue aux services aux résidents.","wellness calendar":"Calendrier du bien-être","we're finding the best floor plan for you...":"Nous trouvons le meilleur plan d'étage pour vous...","western sahara":"Sahara-Occidental","we've found the best floor plan for you!":"Nous avons trouvé le meilleur plan d'étage pour vous!","what is rentcafé?":"Qu'est-ce que RentCafe?","what is your favorite board game?":"Quel est votre jeu de société favori ?","what is your favorite restaurant?":"Quel est votre restaurant préféré ?","what our resident says":"Ce que dit notre résident","what was your first pet's name?":"Quel était le nom de votre premier animal de compagnie ?","what's going on":"Ce qui se passe","you are currently signed up for auto-pay of your monthly account balance. if you continue this payment setup, it will replace any existing auto-pay setup you have on your account. do you wish to continue?":"Vous êtes actuellement inscrit au paiement automatique de votre solde mensuel. Si vous poursuivez cette configuration de paiement, elle remplacera toute configuration de paiement automatique existante sur votre compte. Voulez-vous continuer?","you are not currently listed as a resident. please contact your property management company for more information.":"Vous ne figurez pas actuellement dans la liste des résidents. Veuillez contacter votre société de gestion immobilière pour plus d'informations.","you can access payment details anytime from the payments page.":"Vous pouvez consulter les détails du paiement en tout temps à partir de la page Paiements.","you can choose to subscribe to email notifications in concierge preferences":"Vous pouvez choisir de vous abonner aux notifications par courriel dans les Préférences de conciergerie","you can choose to subscribe to email notifications such as community announcements, calendar events, or marketing campaigns at any time. system notification emails such as payment-related changes, lease activity, service items, and account changes cannot be turned off.":"Vous pouvez choisir de vous abonner aux notifications par e-mail telles que les annonces de la communauté, les événements de calendrier ou les campagnes marketing à tout moment. Les courriels de notification provenant du système telles que les modifications liées au paiement, les activités de location, les éléments de service et les modifications de compte ne peuvent pas être désactivés.","you currently have monthly auto-pay setup for the charges indicated. do you want to continue with this payment?":"Vous avez actuellement une configuration de paiement automatique mensuel pour les charges indiquées. Voulez-vous continuer avec ce paiement?","you currently have one or more monthly charges scheduled for auto-pay using this account. please update or cancel your monthly auto-pay before deleting this account.":"Vous avez actuellement un ou plusieurs charges mensuelles prévus pour le paiement automatique à l’aide de ce compte. Veuillez mettre à jour ou annuler votre paiement automatique mensuel avant de supprimer ce compte.","you do not currently have any documents.":"Vous n'avez actuellement aucun document.","you have a credit balance on your account. if you make a payment now it will be included in the 'unapplied credit' under payments menu current outstanding charges.":"Vous avez un solde créditeur sur votre compte. Si vous effectuez un paiement maintenant, il sera inclus en tant que « Crédit non appliqué » dans le menu Paiements sous Charges en cours.","you have already been added to the mailing list.":"Vous avez déjà été ajouté à la liste de diffusion.","you have applied for the 'waitlist' apartment, your application is placed on a waiting list. you will be able to complete the application online and the property management company will contact you for actual apartment selection and allotment. pricing subject to change upon assignment of apartment.":"Vous avez demandé l'appartement « LISTE D’ATTENTE », votre demande est placée sur une liste d'attente. Vous pourrez remplir la demande en ligne et la société de gestion immobilière vous contactera pour la sélection et l'attribution de l'appartement. Les prix sont susceptibles d'être modifiés lors de l'attribution de l'appartement.","you have completed online lease renewal process successfully.":"Vous avez terminé le processus de renouvellement de bail en ligne avec succès.","you have previously opted out of email notifications for community announcements, calendar events, and marketing campaigns.":"Vous avez précédemment choisi de ne pas recevoir de notifications par courriel pour les annonces de la communauté, les événements du calendrier et les campagnes de marketing.","you have selected minimum two properties to compare. you can directly compare now from generated link here.":"Vous avez sélectionné au moins deux propriétés à comparer. Vous pouvez comparer directement à partir du lien généré ici.","you have successfully canceled reservation #":"Vous avez annulé avec succès la réservation n°","you have successfully opted out of email notifications for community announcements, calendar events, and marketing campaigns for all your accounts.":"Vous avez choisi de ne pas recevoir de notifications par courriel pour les annonces de la communauté, les événements du calendrier et les campagnes de marketing pour tous vos comptes.","you have successfully opted out of email notifications for community announcements, calendar events, and marketing campaigns.":"Vous avez choisi de ne pas recevoir de notifications par courriel pour les annonces de la communauté, les événements du calendrier et les campagnes de marketing.","you haven't selected any favorite properties.":"Vous n’avez pas sélectionné de propriétés favorites.","you haven't selected any favorite properties. you can click on 'back to search results' to search for properties and add to favorites or start an application.":"Vous n’avez pas sélectionné de propriétés favorites. Vous pouvez cliquez sur « Retour aux résultats de la recherche » pour rechercher des propriétés et les ajouter aux favoris ou lancer une demande.","you may enter a prepayment in the extra payment amount field.":"Vous pouvez inscrire un prépaiement dans le champ Montant du paiement supplémentaire.","you will find user guides and updates as well!":"Vous trouverez également des guides d'utilisation et des mises à jour!","you will not be able to add, edit or remove any occupants after payment.":"Vous ne pourrez pas ajouter, modifier ou supprimer des occupants après le paiement.","you will not be able to add, edit or remove any occupants if payments are made from application charges screen.":"Vous ne pourrez pas ajouter, modifier ou supprimer des occupants si les paiements sont effectués à partir de l'écran Charges de la demande.","you will still receive system notification emails for events such as updating a payment account, renewing a lease, submitting a service request, or making changes to your account.":"Vous continuerez à recevoir des courriels de notification du système pour des événements tels que la mise à jour d'un compte de paiement, le renouvellement d'un bail, la soumission d'une demande de service ou la modification de votre compte.","your account balance is":"Le solde de votre compte est","your actions can be found here!":"Vos actions se trouvent ici!","your application":"Votre demande","your balance for this charge is fully authorized. please click view/edit to change your authorization.":"Votre solde pour cette charge est entièrement autorisé. Veuillez cliquer sur Afficher/Modifier pour modifier votre autorisation.","your data has not been saved!":"Vos données n’ont PAS été sauvegardées!","your data has not been saved! are you sure you want to leave this page?":"Vos données n’ont PAS été sauvegardées! Êtes-vous sûr de vouloir quitter cette page?","your email (optional)":"Votre adresse électronique (facultatif)","your email address has not been verified.":"Votre adresse électronique n'a pas été vérifiée.","your email address has not been verified. please check your inbox to validate your account. if you are still experiencing login issues, contact your property manager.":"Votre adresse électronique n'a pas été vérifiée. Veuillez vérifier votre boîte de réception pour valider votre compte. Si vous éprouvez toujours des problèmes de connexion, veuillez contacter votre gestionnaire immobilier.","your email address is already associated with a property.":"Votre adresse électronique est déjà associée à une propriété.","your email has been updated to":"Votre adresse électronique a été mise à jour à","you're pre-qualified":"Vous êtes pré-qualifié","zip code":"Code postal","zoom in":"Zoom avant","zoom out":"Zoom arrière","unsubscribe from marketing messages.":"Se désabonner des messages de marketing","this site is protected by recaptcha. google privacy policy and terms of service apply.":"Ce site est protégé par reCAPTCHA. La politique de confidentialité de Google et les conditions d’utilisation s’appliquent.","this site is protected by recaptcha.":"Ce site est protégé par reCAPTCHA.","google privacy policy and terms of service apply.":"La politique de confidentialité de Google et les conditions d’utilisation s’appliquent.","by using this website you agree to our use of cookies as described in our cookie policy.":"En utilisant ce site web, vous acceptez que nous utilisions des témoins, comme décrit dans notre avis sur les témoins.","error : please enter a valid phone number.":"Erreur : Veuillez saisir un numéro de téléphone valide.","error : please enter a message.":"Erreur : Veuillez saisir un message.","error : please enter a valid email address.":"Erreur : Veuillez saisir une adresse électronique valide.","error : please provide a valid first name.":"Erreur : Veuillez fournir un prénom valide.","error : please provide a valid last name.":"Erreur : Veuillez fournir un nom de famille valide.","skip to main content":"Passer au contenu principal","send my message":"Envoyer mon message","legal disclaimer":"Avis juridique","cookie policy":"Avis sur les témoins","data protection":"Protection des données","student":"Étudiant","rental":"Location","contact":"Contact","show me more":"Afficher plus","view all properties":"Voir toutes les propriétés","see all properties":"Voir toutes les propriétés","city, post code, address or property name":"Ville, code postal, adresse ou nom de la propriété","more filters":"Plus de filtres","favorites":"Favoris","demographics":"Démographiques","search mode":"Mode de recherche","current map":"Carte actuelle","radius":"Rayon","polygon":"polygone","desired amenities":"Commodités désirées","clear filters":"EFFACER FILTRES","cosmopolitan":"Cosmopolite","hide":"cacher","got questions? we're here to help":"Vous avez des questions ? Nous sommes ici pour vous aider","send us a message":"Envoyez-nous un message","see specials":"voir les spéciaux","there was a problem sending your information. please contact the property directly.":"Il y a eu un problème en envoyant vos informations. Veuillez contacter la propriété directement.","your appointment is scheduled for":"Votre rendez-vous est prévu pour","tour options":"Options de visite","time & date":"Date et heure","your information":"Vos informations","id verification":"Vérification d'identité","desired number of bedrooms for tour":"Nombre de chambres à coucher désirées pour la visite","what size apartment would you like to see":"Quelle est la taille de l'appartement que vous souhaiteriez voir","bed":"Chambre","continue to scheduling":"Continuer vers la programmation","any":"N'importe quel","we are currently unable to proceed with your request. please try again later.":"Nous sommes actuellement dans l'impossibilité de traiter votre demande. Veuillez réessayer plus tard.","max rent":"Loyer maximum","you might be interested in other available apartments listed below":"Vous pourriez être intéressé par d'autres appartements disponibles énumérés ci-dessous","don't see the apartment or move-in date you want? join the waitlist for this floor plan.":"Vous ne voyez pas l'appartement ou la date d'emménagement que vous souhaitez ? Inscrivez-vous sur la liste d'attente pour ce plan d'étage.","to send this brochure to multiple email addresses, please separate each address with a semi-colon.":"Pour envoyer cette brochure à plusieurs adresses électroniques, veuillez séparer chaque adresse par un point-virgule.","to start, we need to locate your apartment community. please enter the postal code or name of your apartment community below:":"Pour commencer, nous devons localiser votre communauté d'appartements. Veuillez saisir le code postal ou le nom de votre communauté d'appartements ci-dessous :","to stop receiving marketing messages.":"pour arrêter de recevoir des communications de marketing.","to update email address, go to concierge menu and review preferences.":"Pour mettre à jour l'adresse électronique, allez dans le menu Concierge et révisez les préférences.","to update phone number, go to concierge menu and review preferences.":"Pour mettre à jour le numéro de téléphone, allez dans le menu Concierge et révisez les préférences.","to view brochure.":"pour afficher la brochure.","top":"HAUT","bottom":"Bas","today":"aujourd’hui","token is not selected. please select !":"Jeton n’est pas sélectionné. Veuillez sélectionner!","tooltip":"Info-bulle","total":"total","total additional monthly charges:":"Total des charges mensuelles additionnelles :","total amount":"Montant total","total amount must be greater than zero.":"Le montant total doit être supérieure à zéro.","total current monthly charges":"Total des charges mensuelles actuelles","total monthly charges:":"Total des charges mensuelles :","total new monthly charges":"Total des nouvelles charges mensuelles","total nonbill asp:":"Total ASP non facturé :","total nonbilled:":"Total non facturé :","total units billed:":"Unités totales facturées :","total:":"Total :","townhouse":"Maison en rangée","tracking number":"Numéro de suivi","please don't close your browser. we are processing your request":"Veuillez ne pas fermer votre navigateur. Nous traitons votre demande","thank you for your interest in our":"Merci de votre intérêt pour notre","we don't have any availability for this floor plan right now. by filling out the form below, you will be notified as soon as it becomes available":"Nous n'avons pas de disponibilité pour ce plan d'étage pour le moment. En remplissant le formulaire ci-dessous, vous serez informé dès qu'il sera disponible","how can we help you":"Comment pouvons-nous vous aider","are you a student":"Êtes-vous un étudiant","school":"École","desired move-in date":"Date d'emménagement souhaitée","academic term":"Période académique","rental level":"Niveau de la location","room":"Chambre","first name on id":"Prénom sur la pièce d'identité","last name on id":"Nom de famille sur la pièce d'identité","number of bedrooms":"Nombre de chambres à coucher","id verification required":"Vérification de l'identité requise","for security purposes and to ensure you receive the best customer service, it's vital we verify your identity.":"Pour des raisons de sécurité et pour que vous puissiez bénéficier du meilleur service à la clientèle, il est essentiel que nous vérifiions votre identité.","confirm appointment":"Confirmer le rendez-vous","show my floor plan":"Afficher mon plan d'étage","video":"Vidéo","accommodation type":"Type de logement","an entire unit":"Une unité entière","a room within a unit":"Une pièce dans une unité","a bed within a room":"Un lit dans une chambre","number of leasee":"Nombre de locataires","floorplan filters":"Filtres de plan d'étage","guided tour":"Visite guidée","self-guided tour":"Visite sans guide","live video tour":"Visite vidéo en direct","live tour options":"Options de visites en direct","available from":"Disponible à partir du","short term lease":"Bail à court terme","swimming pool":"Piscine","basketball court":"Terrain de basket-ball","tennis court":"Cour de tennis","playground":"Terrain de jeux","green building":"Bâtiment écologique","skip to compare tool":"Passer à l'outil de comparaison","corporate headquarters":"Siège social de l'entreprise","please provide a starting point.":"Veuillez fournir un point de départ.","unit size":"Taille de l'unité","price range":"Gamme de prix","no matches.":"Aucune correspondance.","please expand your search criteria or start over.":"Veuillez élargir vos critères de recherche ou recommencer.","please select an apartment from the list below that best suits your needs.":"Veuillez sélectionner un appartement dans la liste ci-dessous qui correspond le mieux à vos besoins.","prices and special offers valid for new residents only. pricing and availability subject to change at any time.":"Prix et offres spéciales valables pour les nouveaux résidents uniquement. Les prix et la disponibilité peuvent être modifiés à tout moment.","units are not available under selected floor plan(s). below are the available units for other floor plan(s).":"Les unités ne sont pas disponibles pour le(s) plan(s) d'étage sélectionné(s). Vous trouverez ci-dessous les unités disponibles pour les autres plans d'étage.","available on: available now":"Disponible le : disponible maintenant","apartment:":"Appartement :","add a message":"Ajouter un message","office information":"Informations du bureau","when would you like to visit?":"Quand souhaitez-vous nous rendre visite ?","open now":"Ouvert maintenant","unsubscribe":"Se désabonner","error : please provide a valid email.":"Erreur : veuillez fournir une adresse électronique valide.","← previous":"← Précédent","adresse: ,,":"Adresse : ,,","default school":"École par défaut","which school are you attending?":"Quelle école fréquentez-vous?","we've found something!":"Nous avons trouvé quelque chose!","when are you looking to move in?":"Quand souhaitez-vous emménager?","no matches":"Aucune correspondance","read less":"Lire moins","unit size should be a number.":"La taille de l'unité devrait être un nombre.","rent should be a number.":"Le loyer devrait être un chiffre.","minimum rent should be less than maximum rent.":"Le loyer minimum doit être inférieur au loyer maximum.","please enter valid rent":"Veuillez saisir un loyer valide","specials available":"Spéciaux disponibles","there might be specials available for apartments in this floor plan, subject to their availability and your choice of rental preferences":"Il peut y avoir des offres spéciales pour les appartements de ce plan d'étage, en fonction de leur disponibilité et de vos préférences en matière de location","please select the type of lease that you are interested in for us help you find the best offers.":"Veuillez sélectionner le type de location qui vous intéresse pour que nous vous aidions à trouver les meilleures offres.","links":"Liens","please try another date for your visit.":"Veuillez essayer une autre date pour votre visite.","sorry, there are no available timeslots for the selected date.":"Désolé, il n'y a pas de disponibilités pour la date sélectionnée.","are you a student?*":"Êtes-vous un étudiant ?*","first name on id*":"Prénom sur la pièce d'identité*","deposit: inquire for details":"Dépôt : renseignez-vous pour plus de détails","view location":"Voir l'emplacement","1 amenity":"1 commodité","1 floor plan":"1 plans d'étage","deposit:":"Dépôt :","garage":"Garage","spa":"Spa","away service complete":"Service d'absence terminé","away service notification preferences":"Préférences de notification des services des absences","bulk key pick up":"Collecte de clés en masse","bulk key return":"Retour de clés en masse","concierge preferences":"Préférences de conciergerie","concierge service complete":"Service de conciergerie achevé","concierge service notification preferences":"Préférences de notification du service de conciergerie","delivery creation":"Création de livraison","delivery pickup":"Prise de livraison","delivery reminder":"Rappel de livraison","delivery revision":"Révision de la livraison","disabled":"Hors service","drop-off creation":"Création d'un déchargement","drop-off notification preferences":"Préférences de notification de déchargement","drop-off pickup":"Déchargement pour prise de livraison","drop-off revision":"Révision du déchargement","emergency":"Urgence","emergency/regular notification preferences":"Préférences de notification d'urgence/régulière","additional information":"Informations supplémentaires","you might also like these properties":"Vous pourriez également aimer ces propriétés","call for pricing":"Appelez pour connaître les prix","{buttonname} for {floorplanname}":"{buttonName} pour {floorplanName}","{buttonname} for {floorplanname}, opens a dialog":"{buttonName} pour {floorplanName}, ouvre un dialogue","{buttonname} of {propertyname}, opens a dialog":"{buttonName} de {propertyName}, ouvre un dialogue","{buttonname} opens in a dialog":"{buttonName} s’ouvre dans un dialogue","{minbaths}{sronly} - {maxbaths} bath":"{minBaths}{srOnly} - {maxBaths} Salle de bains","{minbaths}{sronly} - {maxbaths} baths":"{minBaths}{srOnly} - {maxBaths} Salles de bains","{minbeds}{sronly} - {maxbeds} bed,":"{minBeds}{srOnly} - {maxBeds} Chambre,","{minbeds}{sronly} - {maxbeds} beds,":"{minBeds}{srOnly} - {maxBeds} Chambres,","{nobaths} bathrooms":"{noBaths} Salles de bains","{nobaths} baths":"{noBaths} Salles de bains","{nobeds} bedrooms":"{noBeds} Chambres à coucher","{nobeds} beds":"{noBeds} Chambres","categories":"Catégories","close filters":"Fermer les filtres","comment":"Commentaire","comments are closed.":"Les commentaires sont fermés.","community page":"Page communautaire","corporate locations":"Sites de l'entreprise","e-mail*":"Courriel*","leave a reply":"Laisser une réponse","name*":"Nom","next page":"Page suivante","next post":"Nouveau message","popular articles":"Articles populaires","popular posts":"Messages populaires","previous page":"Page précédente","previous post":"Message précédent","read more...":"Lire plus...","save my name, email, and website in this browser for the next time i comment.":"Enregistrez mon nom, mon adresse électronique et mon site web dans ce navigateur pour la prochaine fois que je ferai un commentaire.","select category":"Sélectionner la catégorie","tags":"Balises","team members":"Membres de l’équipe","website":"Site Web","you may use these html tags and attributes:":"Vous pouvez utiliser ces balises et attributs HTML :","- friday:":"- Vendredi :","- monday:":"- Lundi :","- saturday:":"- Samedi :","- sunday:":"- Dimanche","- thursday:":"- Jeudi :","- tuesday:":"- Mardi :","- wednesday:":"- Mercredi :","cancel my appointment":"Annulez mon rendez-vous","error : please select rental level.":"Erreur : Veuillez sélectionner le niveau de location.","error: please enter a valid date.":"Erreur : Veuillez saisir une date valide.","rental level*":"Niveau de location*","reschedule for another time":"Reprogrammer pour une autre heure","go back to the old version of resident portal. you can switch to the old version from settings > account preferences.":"Revenez à l'ancienne version du portail du Résident. Vous pouvez revenir à l'ancienne version à partir de Paramètres > Préférences du compte.","* indicates a required field.":"* Indique un champ requis.","+ add time":"* Ajouter l’heure","account access":"Accès au compte","at least 1x lowercase letter (a-z)":"au moins une lettre minuscule (a-z)","at least 1x number (1-9)":"au moins 1 chiffre (1-9)","at least 1x symbol (#*&@)":"au moins 1 symbole (#*&@ ;)","at least 1x uppercase letter (a-z)":"au moins 1 lettre majuscule (A-Z)","authorized guests":"Invités autorisés","avoid missed payments and late fees by setting up autopay!":"Évitez les paiements manqués et les frais de retard en mettant en place le paiement automatique!","confirm your password":"Confirmer votre mot de passe","create a password":"Créer un mot de passe","end time":"Heure de fin","enter your message here *":"Saisissez votre message ici*","invalid login attempt":"Tentative de connexion invalide","model":"Modèle","monthly (date picker)":"Mensuel (sélecteur de date)","not active":"Non actif","password must be a <strong>minimum of 10 characters</strong> long and must contain all of the following:":"Le mot de passe doit comporter un <strong>minimum de 10 caractères</strong> et doit contenir tous les éléments suivants :","passwords do not match.":"Les mots de passe ne correspondent pas.","please enter your account information.":"Veuillez saisir les informations relatives à votre compte.","confirm your appointment":"Confirmez votre rendez-vous","please provide your contact information":"Veuillez fournir vos informations de contact.","review & submit":"Examiner et soumettre","0 sq. ft.":"0 Pi²","academic year":"Année académique","i am already a prospect and need help.":"Je suis déjà un client potentiel et j'ai besoin d'aide.","i am already a resident and need help.":"Je suis déjà résident et j'ai besoin d'aide.","all rights reserved.":"Tous droits réservés.","yardi systems, inc.":"Yardi Systems, Inc.","city, property name or university":"Ville, nom de propriété ou université","date from":"Date à partir du","date to":"Date jusqu’au","error : please enter a city, property name or university":"Erreur : Veuillez saisir une ville, un nom de propriété, ou une université","error: please enter a message.":"Erreur : Veuillez saisir un message.","error: please enter a valid email address.":"Erreur : Veuillez saisir une adresse électronique valide.","error: please enter a valid phone number.":"Erreur : Veuillez saisir un numéro de téléphone valide.","error: please provide a valid first name.":"Erreur : Veuillez fournir un prénom valide.","temperature controlled pool":"Piscine à température contrôlée","university":"Université","view property":"Voir la propriété","washer":"Machine à laver","washing machine":"Machine à laver","error: please enter a valid maximum rent value.":"Erreur : Veuillez saisir une valeur de Loyer maximum valide.","error: please enter a valid minimum rent value.":"Erreur : Veuillez saisir une valeur de Loyer minimum valide.","error: please select a city.":"Erreur : Veuillez sélectionner une Ville.","error: please select a preferred language for communication.":"Erreur : Veuillez sélectionner une Langue de communication préférée.","error: please select a property.":"Erreur : Veuillez sélectionner une Propriété.","error: please select a rental level.":"Erreur : Veuillez sélectionner un Niveau de location.","error: please select a university.":"Erreur : Veuillez sélectionner une Université.","error: please select an academic term.":"Erreur : Veuillez sélectionner une Période académique.","error: please select an academic year.":"Erreur : Veuillez sélectionner une Année académique.","maximum rent":"Loyer maximum","minimum rent":"Loyer minimum","preferred language for communication":"Langue de communication préférée","review title*":"Réviser le titre*","your review*":"Votre révision*","| color:":"| Couleur :","verified resident":"Résident vérifié","fri":"ven.","mon":"lun.","or call":"ou appeler","pay by paypal account":"Payer par compte PayPal","pay by secure ccavenue server":"Payer par serveur sécurisé CCAVENUE","pay by secure ems pay server":"Payer par serveur sécurisé EMS PAY","pay by secure sagepay server":"Payer par serveur sécurisé SagePay","pay by secure worldpay server":"Payer par serveur sécurisé WorldPay","sat":"sam.","sun":"dim.","thu":"jeu.","tue":"mar.","wed":"mer.","- you can no longer edit the information contained in this application. you will be allowed to add occupants to the application until the property manager has approved the application. note that this may require you to pay additional fees and rerun screening on the application if applicable.":"- vous ne pouvez plus modifier les informations contenues dans cette demande. Vous serez autorisé à ajouter des occupants à la demande jusqu'à ce que le gestionnaire immobilier ait approuvé la demande. Notez que cela peut vous obliger à payer des frais supplémentaires et à recommencer la vérification de la demande, le cas échéant.","# of items":"Nbre d'articles","(available)":"(Disponible)","(contact for availability)":"(Contacter pour la disponibilité)","(lessee)":"(Locataire)","(miles)":"(milles)","(primary resident)":"(Résident principal)","(roommate)":"(Colocataire)",") does not match our record (":") ne correspond pas à nos dossiers (",") with the following details.":") avec les détails suivants.","). please update your profile to sync them.":"). Veuillez mettre à jour votre profil pour les synchroniser.","accessibility statement":"Déclaration d'accessibilité","account balance":"Solde du compte","account balance:":"Solde du compte :","account information":"Informations sur le compte","account information updated successfully.":"Les informations du compte ont été mises à jour avec succès.","action":"Action","action buttons":"Boutons d’action","actions":"Actions","activity":"Activité","activity by":"Activité par","activity date":"Date d’activité","activity type":"Type d'activité","add":"Ajouter","add activity":"Ajouter activité","add activity for":"Ajouter une activité pour","add another applicant":"Ajouter un autre demandeur","add authorized guest":"Ajouter un invité autorisé","add away notice":"Ajouter avis d’absence","add bank account":"Ajouter un compte bancaire","add details":"Ajouter des détails","add guest":"Ajouter un invité","add resident away notice":"Ajouter un avis d’absence d'un résident","add to favorites":"Ajouter aux favoris","add to waitlist":"Ajouter à la liste d’attente","addendum signing for one or more applicants is pending. in order to proceed, please ensure all applicants have electronically signed the addendum(s).":"La signature d'un addenda pour un ou plusieurs demandeurs est manquante. Pour continuer, veuillez vous assurer que tous les demandeurs ont signé électroniquement les addendas.","adding your name will help to ensure that the recipient does not perceive this as spam email":"L'ajout de votre nom contribuera à ce que le destinataire ne perçoive pas ce courriel comme un pourriel","additional applicant 1":"Demandeur supplémentaire 1","additional applicant info":"Informations supplémentaires sur le demandeur","additional applicants":"Demandeurs supplémentaires","additional documents":"Documents supplémentaires","additional income":"Revenu supplémentaire","additional income source":"Source de revenu supplémentaire","an error occured at the time of reservation. please try again later.":"Une erreur s’est produite au moment de la réservation. Veuillez réessayer plus tard.","and":"et","and you have entered a payment amount of":"et vous avez saisi un montant de paiement de","and your payment amount is":"et le montant de votre paiement est","announce guest":"Annoncer l'invité","announce guest?":"Annoncer l'invité?","announcement":"Annonce","announcements":"Annonces","antigua and barbuda":"Antigua-et-Barbuda","any baths":"Toutes les salles de bains","any beds":"Toutes les chambres","any rental options that you select here will not be reserved until you have finished submitting your application.":"Les options de location que vous sélectionnez ici ne seront pas réservées tant que vous n'aurez pas fini de soumettre votre demande.","apartment":"Appartement","apartment amenities":"Commodités de l'appartement","apartment communities":"Communautés d’appartements","apartment community":"Communauté d’appartements","apartment living":"La vie en appartement","apartment search":"recherche d'appartement","apartment search result":"Résultat de la recherche d'appartement","apartment search result narrative":"Narratif du résultat de la recherche d'appartement","apartment summary":"Sommaire de l'appartement","apartment summary - waitlist unit message narrative":"Sommaire de l’appartement - Message narratif de l'unité de liste d'attente","apartment types":"Types d’appartements","apartments":"Appartements","applicant":"Demandeur","applicant details need to be added. you can add details yourself.":"Les détails du demandeur doivent être ajoutés. Vous pouvez les ajouter vous-même.","applicant info":"Informations sur le demandeur","applicant information saved":"Informations sur le demandeur sauvegardées","applicant information saved.":"Informations sur le demandeur sauvegardées.","applicant login":"Connexion du demandeur","applicant login narrative":"Narratif de la connexion du demandeur","applicants":"DEMANDEURS","applicants below 18 years will not be able to register.":"Les demandeurs âgés de moins de 18 ans ne pourront pas s'inscrire.","application charges":"Charges pour la demande","application fees have been paid":"Les frais de demande ont été payés","auto-pay amount":"Montant du paiement automatique","auto-pay by":"Paiement automatique le","availability":"Disponibilité","availability 24 hours":"Disponibilité 24 heures sur 24","availability:":"Disponibilité :","available":"Disponible","available in selected units":"Disponible dans les unités sélectionnées","available now":"Disponible maintenant","available now !":"Disponible maintenant!","available units":"Unités disponibles","available units are shown below.":"Les unités disponibles sont indiquées ci-dessous.","awaiting approval":"En attente d'approbation","away notice":"Avis d'absence","azerbaijan":"Azerbaïdjan","back":"Retour","back to payment details":"Retour aux détails du paiement","back to payments":"Retour aux paiements","back to search":"Retour à la recherche","back to search results":"Retour aux résultats de la recherche","bahamas":"Bahamas","bahrain":"Bahreïn","balance":"Solde","balance due":"Solde dû","bank account number":"Numéro de compte bancaire","bank accounts":"Comptes bancaires","bank sort code":"Code de tri de la banque","basement parking":"Stationnement en sous-sol","basic lease information":"Informations de base sur le bail","basketball":"Basket-ball","bath":"Salle de bains","bath:":"Salle de bains :","baths:":"Salles de bains :","bbq/picnic area":"Espace pique-nique/barbecue","beauty salon":"Salon de beauté","because you have been inactive, your session is about to expire.":"Parce que vous avez été inactif, votre session est sur le point d'expirer.","bed:":"Chambre :","beds":"Chambres","beds/baths":"Chambres/Salles de bains","beds:":"Chambres :","belarus":"Biélorussie","belgium":"Belgique","birds eye view":"Vue d’ensemble","blocked":"Bloqué","bosnia and herzegovina":"Bosnie Herzégovine","both":"Les deux","bouvet island":"Île Bouvet","brazil":"Brésil","breed":"Race","carrier charges may apply.":"Des frais d'opérateur téléphonique peuvent s’appliquer.","case contact:":"Contact du dossier :","case id:":"Identifiant du dossier :","case priority:":"Priorité du dossier :","case team:":"Équipe du dossier :","category":"Catégorie","category*":"Catégorie*","cats & rabbits":"Les chats & lapins","cayman islands":"Îles Caïmans","ceiling fan":"Ventilateur de plafond","central african republic":"République centrafricaine","chad":"Tchad","change":"Modifier","change email":"Modifier le courriel","change email address":"Modifier l'adresse électronique","change login credentials":"Modifier les données d'accès","change password":"Modifier le mot de passe","change password security information":"Modifier les informations de sécurité du mot de passe","changing blue moon agency will delete form setup, default field setup and rentable items setup of existing blue moon agency. are you sure you want to continue?":"Le changement d'agence Blue Moon supprimera la configuration des formulaires, des champs par défaut et la configuration des articles à louer existants de l'agence Blue Moon. Êtes-vous sûr de vouloir continuer?","characters remaining":"caractères restants","charge":"Charge","charge amount":"Montant des charges","charge amounts have been refunded to your account. thank you.":"Les montants des charges ont été remboursés à votre compte. Merci.","charge description":"Description des charges","check out our faq’s.":"Consultez notre Foire aux questions.","check out the interactive map of our community, get directions from your current location, and see our address and contact information.":"Consultez la carte interactive de notre communauté, obtenez des directions à partir de votre emplacement actuel, et voyez notre adresse et nos coordonnées.","check out the status of your application":"Vérifiez le statut de votre demande","check the status of your application":"Vérifiez le statut de votre demande","confirmed":"Confirmé","congo, the democratic republic of the":"République démocratique du Congo","congratulations":"Félicitations","connect":"Vous connecter","contact does not found":"contact non trouvé","contact for availability":"Contacter pour la disponibilité","contact for details":"Contacter pour plus de détails","contact property":"Contacter la propriété","contacting card services ......":"En train de contacter les services de cartes ......","contactless pickup":"Prise de livraison sans contact","continue":"Continuer","continue application":"Continuer la demande","continue now with the application.":"Continuer maintenant avec la demande.","continue now with your apartment selection and complete your application:":"Continuez maintenant avec votre sélection d'appartements et complétez votre demande :","continue now with your apartment selection and complete your application: if you would like to pre-qualify again please click:":"Continuer maintenant avec votre sélection d'appartements et complétez votre demande : Si vous souhaitez vous pré-qualifier à nouveau, veuillez cliquer :","continue now with your application:":"Continuez maintenant avec votre demande :","continue now with your application: if you would like to pre-qualify again please click:":"Continuez maintenant avec votre demande : Si vous souhaitez vous pré-qualifier à nouveau, veuillez cliquer :","controlled access":"Accès contrôlé","controlled access/gated":"Accès contrôlé/privé","cook islands":"Îles Cook","cookie policy.":"avis sur les témoins.","copy from main applicant":"Copier du demandeur principal","copy settings!":"Copier les paramètres!","co-residents:":"Colocataires :","corporate headquarters |":"Siège social de l'entreprise |","cote d'ivoire":"Côte d’Ivoire","could not cancel reservation.":"Impossible d’annuler la réservation.","country":"Pays","county":"Comté","courtyard":"Cour intérieure","covered and uncovered parking spaces available":"Places de stationnement couvertes et non couvertes disponibles","covered parking":"Stationnement couvert","create a new account":"Créer un nouveau compte","create an account":"Créer un compte","dd/mm/yyyy":"jj/mm/aaaa","december monthly charges":"Charges mensuelles de décembre","december monthly charges and monthly auto-pay":"Les charges mensuelles de décembre et le paiement automatique mensuel","delete":"Supprimer","delivery":"Livraison","delivery date":"Date de livraison","delivery notification preferences":"Préférences de notification de livraison","denied":"Refusé","denmark":"Danemark","deposit":"Dépôt","description":"Description","details":"Détails","determine which lease offer best suites your needs and click the select lease button.":"Déterminez l'offre de location qui répond le mieux à vos besoins et cliquez sur le bouton Sélectionner le bail.","did an agent help you?":"Est-ce qu’un agent vous a aidé?","directions":"Itinéraire","directions from...":"Itinéraire à partir de ...","dishwasher":"Lave-vaisselle","dishwasher *":"Lave-vaisselle *","disposal":"Élimination","distance":"Distance","distance :":"Distance :","do you have a social security number?":"Avez-vous un numéro d'assurance sociale?","do you have any pets?":"Avez-vous des animaux de compagnie ?","do you have any vehicles?":"Avez-vous des véhicules?","do you really want to activate this account?":"Voulez-vous vraiment activer ce compte?","do you want to cancel this application?":"Voulez-vous annuler cette demande?","do you want to copy default property settings to property list?":"Voulez-vous copier les paramètres de propriété par défaut à la liste de propriétés?","do you want to create a new lead for this prospect?":"Voulez-vous créer une nouvelle piste de vente pour ce client potentiel?","do you want to delete resident registration configuration setup?":"Voulez-vous supprimer la configuration de l’inscription des résidents?","do you want to delete this prospect permanently?":"Voulez-vous supprimer ce client potentiel de façon permanente?","do you want to finalize the lease and initiate the blue moon esignature process?":"Voulez-vous finaliser le bail et lancer le processus de signature électronique de Blue Moon?","personal details":"Détails personnels","personal information":"Informations personnelles","pet":"Animal de compagnie","pet information":"Informations sur les animaux de compagnie","pet is offered as service":"L’animal de compagnie est offert en tant que service","pet policy":"Politique sur les animaux de compagnie","pet type":"Type d'animal","pets allowed":"Animaux de compagnie autorisés","pets are allowed":"Les animaux de compagnie sont autorisés","pets are not allowed":"Les animaux de compagnie ne sont pas autorisés","philippines":"Philippines","phone no":"N° de téléphone","phone number*":"Numéro de téléphone*","photo gallery":"Galerie de photos","photos":"Photos","pickup date":"Date de la prise de livraison","pick-up location":"Lieu de prise de livraison","pick-ups":"Prises de livraison","please accept screening terms and conditions.":"Veuillez accepter les conditions générales du dépistage.","please accept terms and conditions.":"Veuillez accepter les conditions générales.","please accept the terms and conditions before proceeding.":"Veuillez accepter les conditions générales avant de poursuivre.","please add a title before continuing.":"Veuillez ajouter un titre avant de continuer.","please check your inbox to validate your account.":"Veuillez vérifier votre boîte de réception pour valider votre compte.","please contact the property manager.":"Veuillez contacter le gestionnaire immobilier.","please contact your property management company for further assistance or check back at a later time.":"Veuillez contacter votre société de gestion immobilière pour obtenir de l’assistance supplémentaire ou revenez plus tard.","please enter your current password to change the password or security information.":"Veuillez saisir votre mot de passe actuel pour modifier le mot de passe ou les informations de sécurité.","please enter your email address and we'll send you a link to reset your password.":"Veuillez saisir votre adresse électronique et nous vous enverrons un lien pour réinitialiser votre mot de passe.","please enter your email address":"Veuillez saisir votre adresse électronique","please enter your first name.":"Veuillez saisir votre prénom.","please enter your last name.":"Veuillez saisir votre nom de famille.","please enter your username and password":"Veuillez saisir votre nom d'utilisateur et votre mot de passe","please fill all the required fields.":"Veuillez remplir tous les champs requis.","please fill out all required fields.":"Veuillez remplir tous les champs requis.","please fill out your information below to create your account. once your account is created, you will be taken to the application form.":"Veuillez remplir vos informations ci-dessous pour créer votre compte. Une fois votre compte créé, vous serez dirigé vers le formulaire de demande.","please fix this field.":"Veuillez corriger ce champ.","please let us know more about yourself.":"Veuillez nous en dire davantage sur vous.","please note that changing your account information will update all of the in-progress applications.":"Veuillez noter que la modification des informations de votre compte mettra à jour toutes les demandes en cours.","please note that changing your email address will also change your login information. in the future, you will use the new email address to login to manage your favorites.":"Veuillez noter que la modification de votre adresse électronique modifiera également vos informations de connexion. À l'avenir, vous utiliserez la nouvelle adresse électronique pour vous connecter afin de gérer vos favoris.","please note that the selected document has not been countersigned. are you sure you want to update this document as complete without countersignatures?":"Veuillez noter que le document sélectionné n'a pas été contresigné. Êtes-vous sûr de vouloir mettre à jour ce document comme étant complet sans contresignature?","preferred language":"Langue de préférence","preferred method of contact":"Méthode de contact préférée","preferred name":"Nom préféré","preferred name:":"Nom préféré :","preferred rent":"Loyer préférentiel","pre-qualify now!":"PRÉ-QUALIFIEZ VOUS MAINTENANT!","press ok to remain logged in or press cancel to log off.":"appuyez sur OK pour rester connecté ou appuyez sur Annuler pour vous déconnecter.","prev":"Précédent","previous address":"Adresse précédente","previous employer end date":"Date de fin chez l’employeur précédent","previous employer start date":"Date de début chez l’employeur précédent","previous employment information":"Informations sur les emplois précédents","prices and special offers valid for new residents only. pricing and availability subject to change at any time. prices and specials are not guaranteed until you have paid the application fees.":"Prix et offres spéciales valables uniquement pour les nouveaux résidents. Les prix et la disponibilité peuvent changer sans préavis. Les prix et les promotions ne sont pas garantis tant que vous n'avez pas payé les frais de demande.","primary":"Principal","primary applicant":"Demandeur principal","primary resident":"Résident principal","print":"Imprimer","prior to completing the selection, on the next page you will have an opportunity to select the lease term of your choice, and review the monthly charges before accepting.":"Avant de compléter la sélection, sur la page suivante, vous aurez la possibilité de sélectionner la durée de location de votre choix, et de revoir les charges mensuelles avant d'accepter.","priority*":"Priorité*","privacy policy":"Politique de confidentialité","recent posts":"Messages récents","recipient’s email":"Courriel du destinataire","records per page":"dossiers par page","recreation":"Loisir","recreation room":"Salle de loisirs","recurring pattern":"Motif récurrent","re-enter email address":"Saisissez à nouveau l'adresse électronique","refine:":"Raffiner :","refrigerate perishables?":"Réfrigérer les produits périssables ?","refrigerator":"Réfrigérateur","regional office(s)":"Bureau(x) régional(aux)","register":"S'inscrire","register for a fast, easy application":"Inscrivez-vous pour une demande rapide et facile","register now":"Inscrivez-vous maintenant","register your interest":"Enregistrez votre intérêt","registration code":"Code d'inscription","registration code and email do not match with our records, please check your details and try again.":"Le code d’inscription et l’adresse électronique ne correspondent pas avec les informations dans nos dossiers, veuillez vérifier vos détails et essayer de nouveau.","registration code not found, please check your registration code and try again.":"Code d’inscription pas trouvé, veuillez vérifier votre code d'inscription et réessayer.","registration error, please check your registration code and email and try again":"Erreur d'inscription, veuillez vérifier votre Code d'inscription et Courriel et réessayer","registration error: evicted tenant access not allowed.":"Erreur d’inscription : l'accès aux locataires expulsés n'est pas autorisé.","registration error: evicted tenant access not allowed. please contact the property manager.":"Erreur d’inscription : l'accès aux locataires expulsés n'est pas autorisé. Veuillez contacter le gestionnaire immobilier.","registration error: first name, last name and phone number provided do not match our record, please try again.":"Erreur d’inscription : Le prénom, nom de famille et numéro de téléphone fournis ne correspondent pas à notre dossier, veuillez réessayer.","registration error: incorrect email.":"Erreur d'inscription : adresse électronique erronée.","registration error: incorrect last name.":"Erreur d’inscription : nom de famille erroné.","registration error: incorrect registration code.":"Erreur d'inscription : code d’inscription erroné.","registration error: incorrect unit number.":"Erreur d’inscription : numéro d'unité erroné.","registration error: past tenant access not allowed.":"Erreur d'inscription : l'accès des anciens locataires n'est pas autorisé.","renter’s insurance is required to reside at this community, and you must provide proof of insurance to the management office. you can procure renter’s insurance from a provider of your choice or for your convenience you can click the residentshield link below to compare policy coverage and pricing options from our website. we have selected residentshield as our preferred provider and by purchasing your policy through them your account will be updated automatically, saving you time and effort.":"Une assurance locataire est requise pour résider dans cette communauté, et vous devez fournir une preuve d'assurance au bureau de gestion. Vous pouvez souscrire une assurance locataire auprès d'un fournisseur de votre choix ou, pour plus de commodité, vous pouvez cliquer sur le lien ResidentShield ci-dessous pour comparer la couverture de la police et les options de prix à partir de notre site Web. Nous avons choisi ResidentShield comme notre fournisseur préféré et en achetant votre police par leur intermédiaire, votre compte sera mis à jour automatiquement, ce qui vous permettra d'économiser du temps et des efforts.","renters insurance policy":"Police d’assurance des locataires","reply":"Répondre","reply to this post…":"Répondre à ce message...","request #":"N° de la demande","request description*":"Description de la demande*","request history":"Historique des demandes","requested":"Demandé","required field":"Champ obligatoire","reservation":"Réservation","reservation approval":"Approbation de réservation","reservation balance":"Solde de la réservation","reservation cancel?":"Annuler la réservation ?","reservation complete":"Réservation complète","reservation confirm?":"Confirmer la réservation ?","reservation created successfully. an email will be sent shortly containing reservation details. thank you.":"La réservation a été créée avec succès. Un courriel contenant les détails de la réservation sera envoyé sous peu. Merci.","reservation creation?":"Création de la réservation ?","reservation deny?":"Refuser la réservation ?","reservation notification preferences":"Préférences de notification des réservations","reservation request has been received and is pending approval. an email will be sent shortly containing reservation details. thank you.":"La demande de réservation a été reçue et est en attente d'approbation. Un courriel contenant les détails de la réservation sera envoyé prochainement. Merci.","reservations":"Réservations","reservations :":"Réservations :","reserve item":"Réserver l’article","scheduled reservations could not be loaded.":"Les réservations programmées n'ont pas pu être téléchargées.","screening information":"Informations sur le dépistage","search":"Rechercher","search results":"Résultats de recherche","search:":"Rechercher :","sec status date:":"Date du statut secondaire :","sec status:":"Statut secondaire :","second vehicle":"Deuxième véhicule","security alarm":"Alarme de sécurité","security answer":"Réponse de sécurité","security answer*":"Réponse de sécurité*","security characters":"Caractères de sécurité","security question":"Question de sécurité","security question*":"Question de sécurité*","see disclosure.":"Voir la divulgation.","see our":"Consultez notre","select":"Sélectionner","select \"authorized guest\" to add/edit the guest.":"Sélectionner « Invité autorisé » pour ajouter/modifier l’invité.","select \"make payments\" to pay rent and other charges, and to schedule automatic payments.":"Sélectionnez « Effectuer des paiements » pour payer le loyer et les autres charges ainsi que planifier des paiements automatiques.","select \"package delivery\" to view pick-ups and drop-offs.":"Sélectionner « Livraison de colis » pour visualiser les Prises de livraison et les Déchargements.","select \"payment accounts\" to add or change your bank accounts.":"Sélectionner « Comptes de paiement » pour ajouter ou modifier vos comptes bancaires.","select \"pending activity\" to view payments in process.":"Sélectionner « Activité en attente » pour visualiser les paiements en cours.","select \"recent activity\" to show historical charges and payments":"Sélectionner « Activité récente » pour afficher les charges et paiements historiques","select \"resident away notice\" to add/edit the away notice.":"Sélectionner « Avis d’absence du résident » pour ajouter/modifier l’avis d'absence.","select \"resident preference\" to review/update your preference.":"Sélectionner « Préférence du résident » pour vérifier/mettre à jour votre préférence.","select a category":"Choisissez une catégorie","select a payment account for this payment.":"Sélectionner un compte pour ce paiement.","select a sub category":"Sélectionner une sous-catégorie","select all":"Sélectionner tout","select 'view reservation' to check the status or pay for a reservation.":"Sélectionnez « Voir la réservation » pour vérifier le statut ou payer une réservation.","select your apartment community":"Sélectionnez votre Communauté d’appartements","self":"Moi-même","send":"Envoyer","send email":"Envoyer le courriel","send invitation":"Envoyer une invitation","send reply":"Envoyer la réponse","send to email":"Envoyer au courriel","send verification email":"Envoyer un courriel de vérification","sending email to":"Envoi du courriel à","september monthly charges":"Charges mensuelles de septembre","september monthly charges and monthly auto-pay":"Les charges mensuelles de septembre et le paiement automatique mensuel","serbia":"Serbie","session expiration warning":"Avertissement d’expiration de la session","settings":"Paramètres","settings saved.":"Paramètres sauvegardés.","seychelles":"Les Seychelles","sf":"PI²","share":"Partager","share with a friend":"Partager avec un ami","shipper":"Expéditeur","shops and service":"Commerces et services","should you wish to terminate your lease with us,":"Si vous souhaitez résilier votre bail avec nous,","show all":"Afficher tout","show my floor plan!":"Afficher mon plan d’étage!","sign":"Signer","sign all*":"Tout signer*","sign documents":"Signer les documents","sign in":"Connectez-vous","sign out":"Se déconnecter","sign up for a waiting list":"S’inscrire pour une liste d’attente","sign up for a waiting list'":"S’inscrire pour une liste d’attente'","sign up for the waiting list'":"S’inscrire pour la liste d’attente'","single":"Célibataire","sister":"Soeur","sister properties":"Propriétés sœurs","skip navigation":"Sauter la navigation","skylight":"Fenêtre de toit","slovakia":"Slovaquie","slovenia":"Slovénie","smoke detector":"Détecteur de fumée","solomon islands":"Îles Salomon","solution":"Solution","solution id":"Identifiant de la solution","somalia":"Somalie","studio bedroom":"Chambre de studio","su":"D","sub category":"Sous-catégorie","subject":"Objet","submit":"Soumettre","submit a maintenance request directly to the maintenance technician or property management office.":"Soumettez une demande d'entretien directement au technicien d'entretien ou au bureau de gestion immobilière.","submit leasing office request":"Soumettre la demande au bureau de location","submit maintenance request":"Soumettre une demande d'entretien","submit online maintenance requests.":"Soumettez des demandes d'entretien en ligne.","submit request":"Soumettre la demande","submit your application":"Soumettre votre demande","submitted":"Soumis","subscribe to email notifications":"Abonnez-vous aux notifications par courriel","subscribe to our newsletter":"Abonnez-vous à notre bulletin d'information","sudan":"Soudan","summary":"Sommaire","sun deck":"Solarium","sunday":"Dimanche","sustainable living":"Mode de vie durable","sustainable living:":"Mode de vie durable :","svalbard and jan mayen":"Svalbard et Jan Mayen","sweden":"Suède","switzerland":"Suisse","syrian arab republic":"République arabe syrienne","tab":"onglet","taiwan, province of china":"Taïwan","tajikistan":"Tadjikistan","tanzania, united republic of":"République-Unie de Tanzanie","task has been canceled successfully.":"La tâche a été annulé avec succès.","technical support":"Soutien technique","technician notes":"Notes du technicien","tenancy related":"Liés à la location","tenant code":"Code du locataire","terms":"Conditions","terms & conditions":"Conditions générales","terms and conditions":"Conditions générales","terms and other items":"Termes et autres éléments","terms of service":"Conditions d’utilisation","test brochure by activating it":"Testez la brochure en l'activant","text":"Texte","th":"J","thank you":"Merci","thank you for registering. your account has been successfully created.":"Merci de votre inscription. Votre compte à été créé avec succès.","the total amount of charges and credits must be positive.":"Le montant total des charges et crédits doit être positif.","the total authorized amount must be less than or equal to your balance amount.":"Le montant total autorisé doit être inférieur ou égal au montant de votre solde.","the unpaid charge amount is":"Le montant des charges impayées est","there are no charges posted for this application. are you sure you want to submit application for this prospect?":"Il n'y a pas de charges affichées pour cette demande. Êtes-vous certain de vouloir soumettre une demande pour ce client potentiel?","there are no documents available to sign or upload at this time.":"Il n'y a aucun document disponible à signer ou à télécharger pour le moment.","there are no documents for signature/upload at this time.":"Il n'y a aucun document à signer ou à télécharger pour le moment.","there are no recipients of the selected type.":"Il n'y a pas de destinataires du type sélectionné.","there are no renewal proposals available at this time.":"Il n'y a pas de propositions de renouvellement disponibles pour le moment.","there are one or more inprogress signatures for this document. are you sure you want to delete the document?":"Il y a une ou plusieurs signatures en cours pour ce document. Êtes-vous sûr de vouloir supprimer le document?","there is an error while unsubscribing user.":"Une erreur s'est produite lors du désabonnement de l'utilisateur.","there was a problem resetting your password.":"Il y a eu un problème en réinitialisant votre mot de passe.","these terms and conditions apply to all services supplied by eyardi unless a separate user agreement applies. by completing and submitting a registration form to eyardi, or clicking “i agree”, or using an eyardi product, you acknowledge that you have read and agree with the following terms and conditions.":"Ces conditions générales s'appliquent à tous les services fournis par Yardi, sauf si un accord d'utilisation distinct s'applique. En remplissant et en soumettant un formulaire d'inscription à Yardi, ou en cliquant sur « J'accepte », ou en utilisant un produit Yardi, vous reconnaissez avoir lu et accepté les conditions générales suivantes.","third vehicle":"Troisième véhicule","transactions in process and not yet posted to your bank account.":"Les transactions en cours et pas encore affichées à votre compte bancaire.","travel":"Voyage","trinidad and tobago":"Trinité-et-Tobago","try this out":"Essayez ceci","tu":"M","tuesday":"Mardi","tuesday:":"Mardi :","tunisia":"Tunisie","turkey":"Turquie","turks and caicos islands":"Îles Turks et Caïques","uganda":"Ouganda","ukraine":"Ukraine","unable to access your account at this time. please try again at a later time.":"Impossible d’accéder à votre compte pour le moment. Veuillez réessayer plus tard.","uncle":"Oncle","underground parking":"stationnement souterrain","unit":"Unité","united arab emirates":"Émirats arabes unis","united kingdom":"Royaume-Uni","united states":"États-Unis","united states minor outlying islands":"Îles mineures éloignées des États-Unis","upcoming events":"Événements à venir","update":"Mettre à jour","update account":"Mettre à jour le compte","update email address":"Mettre a jour l'adresse électronique","update email address in concierge preferences":"Mettre a jour l'adresse électronique dans les Préférences de conciergerie","update profile":"Mettre à jour le profil","update settings":"Mettre à jour les paramètres","update status":"Mise à jour du statut","upload doc":"télécharger le document","upload important documents":"Télécharger les documents importants","upload proof of renters insurance here":"Téléchargez la preuve d’Assurance des locataires ici","uploaded":"Téléchargé","use my existing account!":"Utilisez mon compte existant!","use the bank accounts listed below to make one-time payments or schedule monthly automatic payments.":"Utilisez les comptes bancaires indiqués ci-dessous pour effectuer des paiements uniques ou planifier des paiements mensuels automatiques.","use your account with multiple applications.":"Utilisez votre compte avec plusieurs demandes.","wheelchair access":"Accès pour fauteuils roulants","when would you like to move in?":"Quand voulez-vous emménager?","which communities are associated with my email address?":"Quelles communautés sont associées à mon adresse électronique?","who is your favorite book character?":"Quel est votre personnage de livre préféré ?","who is your favorite celebrity?":"Quelle est votre célébrité préférée ?","who was your childhood hero?":"Qui était votre héros d'enfance ?","who was your first boss?":"Qui était votre premier patron ?","why am i seeing this?":"Pourquoi est-ce que vois-je ceci?","widgets were not finished loading.":"Le chargement des gadgets logiciels n'était pas terminé.","window coverings":"Couvre-fenêtres","with a different email address":"avec une autre adresse courriel","with a free account, you can:":"L’ouverture d’un compte est gratuite et confidentielle et vous permet de :","with a friend":"avec un ami","work completed":"Travaux achevés","work order id":"Identifiant du bon de travail","would you like to compare the first four items you selected?":"Voulez-vous comparer les premiers quatre articles que vous avez sélectionnés?","would you like to send an email to this user to login?":"Voulez-vous envoyer un courriel à cet utilisateur pour qu'il se connecte?","write a message to your neighbors":"Écrivez un message à vos voisins","write a review":"Rédiger un avis","yardi systems inc | website design by rent":"Yardi Systems Inc | Design du site internet par RENT","year":"Année","yearly":"Annuel","yemen":"Yémen","yes":"Oui","yes, compare now.":"Oui, comparez maintenant.","you are about to":"Vous êtes sur le point de","you are about to change templates and will lose any unsaved data. do you want to continue?":"Vous êtes sur le point de changer de modèle et vous perdrez toutes les données non sauvegardées. Voulez-vous continuer?","you can click on 'back to search results' to search for properties and add to favorites or start an application.":"Vous pouvez cliquez sur « Retour aux résultats de la recherche » pour rechercher des propriétés et les ajouter aux favoris ou lancer une demande.","you can click on the image to select a floor.":"Vous pouvez cliquez sur l’image pour sélectionner un étage.","you can compare maximum four properties.":"Vous pouvez comparer un maximum de quatre propriétés.","you can reset your password using the forget password link.":"Vous pouvez réinitialiser votre mot de passe en utilisant le lien Mot de passe oublié.","you can upload images or voice memos up to 5mb. file types allowed: .gif, .jpeg, .png, .jpg, .pjpeg, .bmp, .x-png, .wav, .aif, .wmv, .m4a, .mp4":"Vous pouvez télécharger des images ou des mémos vocaux jusqu'à 5 Mo. Types de fichiers autorisés : .gif, .jpeg, .png, .jpg, .pjpeg, .bmp, .x-png, .wav, .aif, .wmv, .m4a, .mp4","you can upload images up to 5mb. file types allowed: .gif, .jpeg, .png, .jpg, .pjpeg, .bmp, .x-png":"Vous pouvez télécharger des images jusqu'à 5 Mo. Types de fichiers autorisés : .gif, .jpeg, .png, .jpg, .pjpeg, .bmp, .x-png","you can use that account to manage your information while at eyardi":"Vous pouvez utiliser ce compte pour gérer vos renseignements pendant votre séjour chez eyardi","you can use your resident portal to pay your rent, submit service requests and communicate with us and the other residents!":"Vous pouvez utiliser votre Portail des résidents pour payer votre loyer, soumettre des demande de service et communiquer avec nous et les autres résidents!","you currently have an active payment that is pending processing with this account. once the payment has been processed, you will be able to delete this account. please check back later.":"Vous avez actuellement un paiement actif qui est en instance de traitement avec ce compte. Une fois ce paiement traité, vous pourrez supprimer ce compte. Veuillez vérifier plus tard.","you currently have an active payment that is pending processing with this account. once the payment has been processed, you will be able to edit or delete this account. please check back later.":"Vous avez actuellement un paiement actif en attente de traitement pour ce compte. Une fois le paiement traité, vous pourrez modifier ou supprimer ce compte. Veuillez vérifier plus tard.","you have entered a bank account number which looks like a credit card number. do you want to continue?":"Vous avez saisi un numéro de compte bancaire qui ressemble à un numéro de carte de crédit. Voulez-vous continuer?","you have entered a future date for your employment begin date. are you sure you want a future date?":"Vous avez saisi une date future pour votre date de début d'emploi. Êtes-vous sûr de vouloir une date future?","you have exceeded the maximum login failures.":"Vous avez dépassé le nombre maximum d'échecs de connexion.","you have lived at your current place of residence for less than 0 months. please enter your previous address.":"Vous habitez à votre lieu de résidence actuel depuis moins de 0 mois. Veuillez indiquer votre ancienne adresse.","you have lived at your current place of residence for less than 24 months. please enter your previous address.":"Vous habitez à votre lieu de résidence actuel depuis moins de 24 mois. Veuillez entrer votre ancienne adresse.","you have no notifications":"Vous n'avez aucune notification","you have not added any favorites yet.":"Vous n’avez pas encore ajouté de favoris.","you have not rated any of the categories. you must rate at least one category in order to proceed.":"Vous n'avez évalué aucune des catégories. Vous devez évaluer au moins une catégorie afin de procéder.","you have not specified a custom whisper .wav file. are you sure you wish to continue?":"Vous n'avez pas spécifié de fichier .wav Whisper personnalisé. Êtes-vous sûr de vouloir continuer?","you have now been added to the mailing list.":"Vous avez été ajouté à la liste de diffusion.","you have previously opted out of email notifications for community announcements, calendar events, and marketing campaigns for all your accounts.":"Vous avez précédemment choisi de ne pas recevoir de notifications par courriel pour les annonces de la communauté, les événements du calendrier et les campagnes de marketing pour tous vos comptes.","you may need to enable tls":"Vous devrez peut-être activer TLS","you must enter a different name for your new variation.":"Vous devez saisir un nom différent pour votre nouvelle variation.","you must include at least 1 widget in your post":"Vous devez inclure au moins un 1 gadget logiciel dans votre message","you recently submitted a bank account payment, please allow sufficient time for the processing of this payment before re-submitting another payment.":"Vous avez récemment soumis un paiement par compte bancaire. Veuillez prévoir suffisamment de temps pour le traitement de ce paiement avant de soumettre à nouveau un autre paiement.","you started your renewal process with us and are close to finishing up.":"Vous avez commencé votre processus de renouvellement avec nous et êtes sur le point de le terminer.","you started your renewal process with us and are close to finishing up. please review the documents below and sign your lease whenever you're ready.":"Vous avez commencé votre processus de renouvellement avec nous et êtes sur le point de le terminer. Veuillez examiner les documents ci-dessous et signer votre bail dès que vous êtes prêt.","you will be taken to the ccavenue interface to enter your payment information.":"Vous serez dirigé vers l'interface CCAVENUE pour saisir vos informations de paiement.","you will be taken to the ems pay interface to enter your payment information.":"Vous serez dirigé vers l'interface EMS PAY pour saisir vos informations de paiement.","you will be taken to the paypal interface to enter your paypal information.":"Vous serez dirigé vers l'interface PayPal pour saisir vos informations de PayPal.","you will be taken to the sagepay interface to enter your card information.":"Vous serez dirigé vers l'interface SagePay pour saisir les informations de votre carte.","you will be taken to the worldpay interface to enter your card information.":"Vous serez dirigé vers l'interface WorldPay pour saisir les informations de votre carte.","your forgot password link has expired, please try again.":"Le lien « Mot de passe oublié » a expiré, veuillez réessayer.","your info:":"Vos informations :","your information has been received. we will contact you shortly.":"Vos informations ont été reçues. Nous vous contacterons sous peu.","your information is 100% safe and secure":"Vos informations sont 100 % sûres et sécurisées","your lease proposal has been scheduled for renewal.":"Votre proposition de bail a été programmée pour renouvellement.","your login information has changed.":"Vos informations de connexion ont changé.","your maintenance request has been successfully created.":"Votre demande d’entretien a été créée avec succès.","your message":"Votre message","your name":"Votre nom","your name (optional)":"Votre nom (facultatif)","your payment was successful! a confirmation email has been sent to":"Votre paiement a réussi! Un courriel de confirmation a été envoyé à","your preferences":"Vos préférences","your registration code should have been provided to you by your property manager. if you do not have one, please contact your property manager.":"Votre Code d'inscription vous a été fourni par votre gestionnaire immobilier. Si vous n'en avez pas, veuillez contacter votre gestionnaire immobilier.","your rent, move in date and term will update for this selection":"Votre loyer, votre date d'emménagement et votre durée seront mis à jour en fonction de cette sélection","your review:":"Votre révision :","your robots.txt file. only do this if you have advanced knowledge on this subject.":"votre ficher robots.txt. Ne le faites que si vous avez des connaissances avancées sur ce sujet.","your session will expire in":"Votre session expirera dans","your signature":"Votre signature","your total auto-pay selected must be greater than or equal to zero.":"Votre paiement automatique total sélectionné doit être supérieur ou égal à zéro.","your username/email (":"Votre nom d’utilisateur/courriel (","pan/zoom map to trigger new search":"Panoramique/Zoom de la carte pour déclencher une nouvelle recherche","search within current map boundaries.":"Recherche dans les limites de la carte actuelle.","click on the map to define a circle.":"Cliquez sur la carte pour définir un cercle.","click on the map to set the center of the circle.":"Cliquez sur la carte pour définir le centre du cercle.","click on the map to define a polygon.":"Cliquez sur la carte pour définir un polygone.","click on the map to start drawing the polygon.":"Cliquez sur la carte pour commencer à dessiner le polygone.","no properties in this area.":"Aucune propriété dans cette région.","no demographics data found.":"Aucune donnée démographique trouvée.","min":"Min.","max":"Max.","studio or 1 bedroom":"Studio ou 1 chambre à coucher","1 bedroom":"1 chambre à coucher","remove all filters":"Enlever tous les filtres","error : please enter a city, post code, address or property name":"Erreur : Veuillez saisir une ville, un code postal, une adresse ou un nom de propriété","rent (low to high)":"loyer (du plus bas au plus haut)","beds (low to high)":"Chambres (du plus bas au plus haut)","satellite":"Satellite","property type":"Type de propriété","loft":"Loft","specialty":"Spécialité","affordable":"Abordable","fitness":"Entraînement physique","cats allowed":"Chats autorisés","dogs allowed":"Animaux de compagnie autorisés","no pets":"Aucun animal de compagnie","show more":"Afficher plus","message *":"Message *","success":"Succès","contact us submitted":"Demande de contact soumise","something went wrong. please check url parameters":"Un problème est survenu. Veuillez vérifier les paramètres de l'URL","error":"Erreur","waitlist":"liste d’attente","please contact the property for apartments pricing":"Veuillez contacter la propriété pour les prix des appartements","show specials only":"Afficher spéciaux seulement","/week":"/semaine","/annually":"/annuel","/quarterly":"/trimestriel","or more":"ou plus","or less":"ou moins","square feet":"Pieds carrés","property image":"Image de la propriété","chat with us":"Clavardez avec nous","get directions":"Obtenir un itinéraire","call us:":"APPELEZ-NOUS :","start":"Début","error : please provide a valid email":"Erreur : veuillez fournir une adresse électronique valide","have a question?":"Avez-vous une question?","features & amenities":"Caractéristiques et commodités","closed":"Fermé","apartment #":"N° d’appartement","phone:":"Téléphone :","please confirm your school":"Veuillez confirmer votre école","term":"durée","website:":"Site internet :","confirm":"Confirmer","when will you be attending?":"Quand serez-vous présent ?","please select one of the above":"Veuillez choisir l'une des options ci-dessus","i am looking for a student lease":"JE CHERCHE un bail pour étudiant","we have the best student housing communities that you will find in town. we have great rental options!":"Nous avons l'une des meilleures communautés de logements étudiants que vous trouverez en ville. Nous avons d'excellentes options de location !","our apartments are elegant and smartly furnished. if your company has an association with us, we have great options for you. click here to learn more.":"Nos appartements sont élégants et meublés avec goût. Si votre entreprise a une association avec nous, nous avons d'excellentes options pour vous. Cliquez ici pour en savoir plus.","i am looking for a traditional lease.":"JE CHERCHE UN BAIL TRADITIONNEL","our rents are competitive and our apartments offer complete value for your money. click here to see our apartments.":"Nos loyers sont compétitifs et nos appartements offrent un excellent rapport qualité-prix. Cliquez ici pour voir nos appartements.","i am looking for a short term stay.":"JE CHERCHE UN SÉJOUR À COURT TERME.","our short term living solutions are flexible and can be rented out at a moment's notice. click here to see our options.":"Nos solutions de logement à court terme sont flexibles et peuvent être louées à tout moment. Cliquez ici pour voir nos options.","next →":"Suivant →","please select your move-in date":"Veuillez sélectionner votre date d’emménagement","reserve your apartment":"Réservez votre appartement","student lease":"Bail étudiant","air conditioning":"Climatisation","am":"AM","april":"Avril","at":"au/à","balcony":"Balcon","book now":"Réservez maintenant","call us now":"APPELEZ MAINTENANT","city, property name, university":"Ville, Nom de la propriété, Université","club house":"Pavillon","december":"Décembre","explore amenities":"Découvrir les commodités","explore the community":"Découvrir la communauté","features":"Caractéristiques","find your home now":"Trouvez votre résidence dès maintenant","fire place":"Cheminée","follow us on":"SUIVEZ-NOUS SUR","furnished units":"Unités meublées","grades":"CLASSES","gym":"Gymnase","high-speed internet":"Internet à haute vitesse","looking for more info?":"VOUS CHERCHEZ PLUS D'INFORMATIONS ?","november":"Novembre","open plan kitchen":"Cuisine ouverte","our address":"NOTRE ADRESSE","our locations":"Nos sites","out door space":"Espace extérieur","reading lights":"Lampes de lecture","rent (high to low)":"Loyer (du plus élevé au plus bas)","rooms":"Trouvez votre résidence dès maintenant","search filters":"Filtres de recherche","security":"Sécurité","september":"Septembre","smart classroom facilities":"Salles de classe intelligentes","{urlcaption} opens in a new tab":"{urlCaption} S’ouvre dans un nouvel onglet","1 apartment available":"1 appartement disponible","1 bath":"1 Salle de bains","1 bathroom":"1 Salle de bains","1 bed":"1 chambre","apply now at {propertyname}, opens a new window":"Faites une demande maintenant à {propertyName}, ouvre une nouvelle fenêtre","call {propertyname} at: {phonenumber}":"Appelez {propertyName} au : {phoneNumber}","click to have {propertyname} added as favorite":"Cliquez pour ajouter {propertyName} à vos favoris","click to have {propertyname} removed from favorites":"Cliquez pour supprimer {propertyName} des favoris","contact us, {propertyname}, opens a dialog":"Contactez-nous, {propertyName}, ouvre un dialogue","error : please select are you a student.?":"Erreur : Veuillez sélectionner Êtes-vous étudiant?","more ...":"Plus ...","please expand your search criteria or {startoverbutton}.":"Veuillez élargir vos critères de recherche ou {startOverButton}.","showing {count} out of {total} properties.":"Affichant {count} de {total} propriétés.","showing {count} out of {total} units.":"Affichant {count} de {total} unités.","testimonials":"Témoignages","this site is protected by recaptcha. google {privacypolicy} and {termsofservice} apply.":"Ce site est protégé par reCAPTCHA. Les {PrivacyPolicy} et {TermsOfService} de Google s’appliquent.","view details for {propertyname} opens in a new tab":"Voir les détails pour {propertyName} s’ouvre dans un nouvel onglet","view photo gallery":"Voir la galerie de photos","you have {count} favorite properties saved for this area.":"Vous avez {count} propriétés favorites sauvegardées pour cette région.","you have {count} favorite units saved for this area.":"Vous avez {count} unités favorites sauvegardées pour cette région.","email":"Courriel","email address:":"Adresse électronique :","email addresses do not match.":"Les adresses électroniques ne correspondent pas.","email body:":"Corps du courriel :","email property":"Envoyer un courriel à la propriété","email sent successfully.":"Courriel envoyé avec succès.","email unsubscribe":"Désabonner des courriels","email us":"Envoyez-nous un courriel","email*":"Courriel*","email:":"Courriel :","emergency contact":"Personne à contacter en cas d'urgence","employed":"Employé","employed since":"Employé depuis","employer":"Employeur","employers phone":"Téléphone de l'employeur","employment information":"Informations d'emploi","employment status":"Statut d'emploi","end date":"Date de fin","end date*":"Date de fin*","end time*":"Heure de fin*","english":"Anglais","english - united kingdom":"Anglais - Royaume-Uni","enquiry":"Demande de renseignements","enter email address":"Saisissez l'adresse électronique","enter email message here":"Saisissez le message du courriel ici","enter first name":"Saisissez le prénom","enter last name":"Saisissez le nom de famille","enter payment details":"Saisissez les détails du paiement","enter phone number":"Saisissez le numéro de téléphone","enter the amount to pay for each charge.":"Saisissez le montant à payer pour chaque charge.","enter the email address and password that you entered when you registered for your account.":"Saisissez l'adresse électronique et le mot de passe que vous avez choisis lors de votre inscription de votre compte.","enter your address":"Saisissez votre adresse","enter your zip code":"Saisissez votre code postal","entry closet":"Placard d'entrée","equatorial guinea":"Guinée Équatoriale","file size exceeds 2 mbs. please select a smaller file to upload.":"La taille du fichier dépasse 2 Mo. Veuillez choisir un fichier plus petit à télécharger.","file size is too large.":"La taille du fichier est trop grande.","file type not supported. please upload a valid file.":"Le type de fichier n’est pas pris en charge. Veuillez télécharger un fichier valide.","file types allowed: gif, jpg, png, bmp, pdf, doc, docx, xlsx":"Types de fichiers acceptés : gif, jpg, png, bmp, pdf, doc, docx, xlsx","file types allowed: gif, jpg, png, bmp, pdf, doc, docx, xlsx maximum 100 characters are allowed in file name and special characters - /:*?<>| are not allowed in file name.":"Types de fichiers acceptés : gif, jpg, png, bmp, pdf, doc, docx, xlsx. Un maximum de 100 caractères sont autorisés dans le nom de fichier et les caractères spéciaux - /:*?<>| ne sont pas autorisés.","find a map and easy directions to locate our community":"Trouvez une carte et des directions faciles pour localiser notre communauté","find map and easy directions to locate our community":"Trouvez une carte et des directions faciles pour localiser notre communauté","find my floor plan!":"Trouvez mon plan d’étage!","find our available spaces, prices, and potential move-in dates.":"Découvrez nos espaces disponibles, les prix et les dates potentielles d'emménagement.","fire drill evacuation":"Exercice d'évacuation en cas d'incendie","fireplace":"Foyer","first name":"Prénom","first name *":"PRÉNOM *","first name*":"Prénom*","first vehicle":"Premier véhicule","fitness center":"Centre d'entraînement physique","floor":"Étage","floor plan":"Plan d’étage","floor plan details not available for this property. please contact property manager.":"Les détails du plan d'étage ne sont pas disponibles pour cette propriété. Veuillez contacter le gestionnaire immobilier.","floor plan for":"Plan d’étage pour","floor plan:":"Plan d’étage :","floor plans":"Plans d'étages","floor plans narrative":"Narratif des plans d'étage","follow":"Suivre","follow this property":"Suivez cette propriété","follow us":"Suivez-nous","food":"Nourriture","for a lease shorter than 12 months.":"pour un bail plus court que 12 mois.","glad to have you back!":"Heureux de vous revoir!","go":"Allez","good news! it looks like you have an existing account tied to your email address (":"Bonne nouvelle ! Il semble que vous ayez déjà un compte lié à cette adresse électronique (","got a question? get in touch":"Vous avez une question ? Nous joindre","got it":"Compris","got it!":"Compris!","government issued identification number":"Numéro d'identification émis par le gouvernement","government issuing entity":"Entité du gouvernement émettrice","grandfather":"Grand-père","grandmother":"Grand-mère","great britain":"Grand Bretagne","great news, you pre-qualify for the below floor plans!":"Bonnes nouvelles, vous êtes préqualifiez pour les plans d'étage ci-dessous!","great news, you pre-qualify for the below floorplans!":"Bonnes nouvelles, vous êtes préqualifiez pour les plans d'étage ci-dessous!","great news, you pre-qualify for the below units!":"Bonnes nouvelles, vous êtes préqualifiez pour les unités ci-dessous !","great news, you pre-qualify!":"Bonnes nouvelles, vous êtes préqualifiez !","greece":"Grèce","greenland":"Groenland","grid view":"Vue quadrillée","group exercise":"Exercice de groupe","guarantor":"Garant","guest / package / notice / key / preference":"Invité / Colis / Avis / Clé / Préférence","guest has key?":"L’invité a une clé?","guest inactive?":"Invité inactif?","guest login":"Connexion d’invité","guest notification preferences":"Préférences de notification des invités","guest room":"Chambre d’invité","guest sign in?":"Inscription d’invité ?","guest sign out":"Départ des invités","guide":"Guide","guinea":"Guinée","guinea-bissau":"Guinée-Bissau","haiti":"Haïti","handrails":"Mains courantes","hardwood floors":"Planchers de bois franc","have any questions?":"Avez-vous des questions?","heard island and mcdonald islands":"Îles Heard et Mcdonald","help and support":"Soutien technique et assistance","here":"ici","here you can check what's available":"Vous pouvez vérifier ici ce qui est disponible","high ceilings":"Plafonds hauts","high speed internet":"Internet à haute vitesse","historic building":"Bâtiment historique","hold mail":"Retenir le courrier","holy see (vatican city state)":"Saint-Siège (État de la Cité du Vatican)","home":"Accueil","if you would like to be put on the waiting list.":"si vous souhaitez être mis sur la liste d'attente.","if you would like to complete the application on their behalf , please click on the 'add details' button.":"Si vous souhaitez remplir la demande en leur nom, veuillez cliquer sur le bouton « Ajouter des détails ».","if you would like to invite an occupant to register and complete this application, please click on the 'invite' button.":"Si vous souhaitez inviter un résident à s’inscrire et à remplir cette demande, veuillez cliquer sur le bouton « Inviter ».","if your username is not an email address,":"Si votre nom d’utilisateur n’est pas une adresse électronique,","i'm in no rush.":"Je ne suis pas pressé.","i'm not a robot":"Je ne suis pas un robot","image":"Image","images.":"images.","important messages for":"Messages importants pour","in home delivery approved?":"Livraison à domicile approuvée ?","in order to verify that the email address associated with your account is correct, we have sent an email to the email address you specified while registering on residentcafé. to activate your residentcafé account, please access your email and click on the link provided inside the email.":"Afin de vérifier que l'adresse électronique associée à votre compte est correcte, nous avons envoyé un courriel à l'adresse que vous avez indiquée lors de votre inscription sur ResidentCafé. Pour activer votre compte ResidentCafé, veuillez accéder à votre courriel et cliquer sur le lien qui vous y sera fourni.","in the box below, select your desired move in date. please note that we cannot guarantee that there will be an apartment available on that date, but that this is your preference. regarding estimated waiting list timing.":"Dans le cadre ci-dessous, sélectionnez la date d'emménagement souhaitée. Veuillez noter que nous ne pouvons pas garantir qu'il y aura un appartement disponible à cette date, mais qu'il s'agit de votre préférence. Concernant le calendrier estimé de la liste d'attente.","in the next few months...":"Dans les prochains mois...","inactive":"Inactif","indonesia":"Indonésie","kazakhstan":"Kazakhstan","keep up to date with current events at your community.":"Restez à jour avec les événements dans votre communauté.","kenya":"Kenya","key code":"Code de clé","key description":"Description de la clé","key notification preferences":"Préférences de notification des clés","key tracking":"Suivi de clé","key type":"Type de clé","kitchen table":"Table de cuisine","korea, democratic people's republic of":"République populaire démocratique de Corée","korea, republic of":"République de Corée","kuwait":"Koweït","kyrgyzstan":"Kirghizistan","landlord email":"Courriel du propriétaire","landlord name":"Nom du propriétaire","landlord phone":"Numéro de téléphone du propriétaire","language":"Langue","lao people's democratic republic":"République démocratique populaire lao","large closets":"Grands placards","last name":"Nom de famille","last name *":"NOM DE FAMILLE *","last name*":"Nom de famille*","latvia":"Lettonie","laundry facilities":"Buanderie","lease":"Bail","lease creation":"Création du bail","lease from date":"Date de début du bail","lease info":"Informations sur le bail","lease information":"Informations sur le bail","lease renewal":"Renouvellement du bail","lease summary":"Sommaire du bail","lease term":"Durée du bail","lease term:":"Durée du bail :","lease terms":"Durée du bail","lease to date":"Bail à ce jour","leasing office request":"Demande du Bureau de location","lebanon":"Liban","lessee":"Locataire","let's get started!":"C'est parti!","liberia":"Libéria","libyan arab jamahiriya":"Jamahiriya arabe libyenne","license":"Permis de conduire","license plate":"Plaque d'immatriculation","license plate:":"Plaque d’immatriculation :","light is not working":"La lumière ne fonctionne pas","like our community":"Aimer notre communauté","list":"Liste","list view":"Vue de la liste","lithuania":"Lituanie","living room":"Salon","loading…":"En train de charger...","location":"Emplacement","location:":"Emplacement :","locations":"Emplacements","mauritania":"Mauritanie","maximum 100 characters are allowed in file name and special characters - /:*?<>| are not allowed in file name.":"Un maximum de 100 caractères sont autorisés dans le nom de fichier et les caractères spéciaux - / : *?<>| ne sont pas autorisés.","max-rent":"Loyer maximal","may":"Mai","may monthly charges":"Charges mensuelles de mai","may monthly charges and monthly auto-pay":"Les charges mensuelles de mai et le paiement automatique mensuel","mbr closet":"Placard de la chambre principale","meal service":"Service de repas","media room":"Salle multimédia","medium":"Moyen","message":"Message","message*":"Message *","micronesia, federated states of":"États fédérés de Micronésie","microwave":"Micro-ondes","middle name":"Deuxième prénom","minimum length should be":"la longueur minimale devrait être","minutes (as of":"minutes (à partir de","mm/dd/yy":"mm/jj/aa","mo":"L","mobile phone":"Téléphone cellulaire","mobile phone for texts (sms):":"Téléphone cellulaire pour textes (SMS) :","moldova, republic of":"République de Moldova","monday":"Lundi","monday:":"Lundi :","mongolia":"Mongolie","month":"Mois","monthly":"Mensuel","monthly charges and monthly auto-pay april":"Les charges mensuelles d’avril et le paiement automatique mensuel","monthly charges and monthly auto-pay august":"Les charges mensuelles d’août et le paiement automatique mensuel","monthly charges and monthly auto-pay december":"Les charges mensuelles de décembre et le paiement automatique mensuel","monthly charges and monthly auto-pay february":"Les charges mensuelles de février et le paiement automatique mensuel","monthly charges and monthly auto-pay january":"Les charges mensuelles de janvier et le paiement automatique mensuel","monthly charges and monthly auto-pay july":"Les charges mensuelles de juillet et le paiement automatique mensuel","no availability":"Aucune disponibilité","no available reservations for this date and duration":"Aucune réservation disponible pour cette date et cette durée","no charges available for payment.":"Aucune charge disponible pour le paiement.","no data available in table":"Aucune donnée disponible dans le tableau","no data found":"Aucune donnée trouvée","no digest":"Aucun recueil","no file chose":"Aucun fichier choisi","no item is available to rent now for parking":"Aucun stationnement n’est disponible à la location en ce moment","no items selected":"Aucun article sélectionné","no maintenance requests on file.":"Aucune demande d'entretien dans le dossier.","no reservations on file.":"Aucune réservation au dossier.","no service items selected":"Aucun article de service sélectionné","no vehicle information":"Aucune information sur le véhicule","no work order memos found":"AUCUN MÉMO DE BON DE TRAVAIL TROUVÉ","noise":"Bruit","noise:":"Bruit :","norfolk island":"Île Norfolk","northern mariana islands":"Îles Mariannes du Nord","norway":"Norvège","not ?":"Ne pas ?","not available":"Non disponible","not found":"pas trouvé","not found!":"Pas trouvé!","not started":"Pas commencé","not uploaded":"Non téléchargé","note:":"Remarque :","note: if you do not receive the activation email in your inbox within 10 minutes of registering, please check your spam folder. if the email is not found please call the help desk.":"REMARQUE : si vous ne recevez pas le courriel d'activation dans votre boîte de réception dans les 10 minutes suivant votre inscription, veuillez vérifier votre dossier Pourriel. Si le courriel est introuvable, veuillez appeler le service d'assistance.","notes":"Notes","notes type":"Type de notes","notes*":"Notes*","notification email":"Courriel de notification","once your application has started, any changes made to your application by the property management company will immediately be reflected on this application for your convenience.":"Une fois que votre demande a commencé, toute modification apportée par la société de gestion immobilière sera immédiatement reflétée sur cette demande pour votre commodité.","one-time payment":"Paiement unique","online application":"DEMANDE EN LIGNE","online leasing":"Location en ligne","online leasing workflow":"Flux de travail pour la location en ligne","online payment":"Paiement en ligne","online payment - ems":"Paiement en ligne - EMS","online payment using ccavenue":"Paiement en ligne au moyen de CCAVENUE","online payment using ems pay":"Paiement en ligne au moyen de EMS PAY","online payments are reflected in the recent activity only after they are fully processed.":"Les paiements en ligne n'apparaissent dans l’Activité récente qu'après avoir été entièrement traités.","on-site maintenance":"Entretien sur site","on-site management":"Gestion sur site","options":"Options","or":"ou","or choose a script signature.":"ou choisissez une signature de script.","originator":"Expéditeur","other":"Autre","other documents":"Autres documents","other information":"Autres informations","others":"Autres","our amenities":"NOS COMMODITÉS","our apartments":"Nos appartements","our location":"Notre site","our management team":"Notre équipe de gestion","our properties":"Nos propriétés","our residents":"NOS RÉSIDENTS","outside party pick-up notification preferences":"Préférences en matière de notification de prise de livraison par un tiers","overall rating":"Évaluation globale","overview":"Aperçu","own":"Posséder","package delivery":"Livraison de colis","package receiving":"Réception de colis","paid by":"Payé par","paking":"Stationnement","palestinian territory, occupied":"Territoire palestinien occupé","papua new guinea":"Papouasie-Nouvelle-Guinée","parking":"Stationnement","this community is only accepting applications for a waiting list at this time. please click here to be put on the waiting list for this floorplan":"Cette communauté n'accepte que les demandes d'inscription sur une liste d’attente pour l'instant. Veuillez cliquer ici pour vous inscrire sur la liste d'attente pour ce plan d'étage","open for application on":"Ouvert aux demandes le","up to":"Jusqu'à","prices and special offers valid for new residents only. pricing and availability subject to change at any time":"Prix et offres spéciales valables pour les nouveaux résidents uniquement. Les prix et la disponibilité peuvent être modifiés à tout moment","no campaign":"Aucune campagne","indicates required fields":"indique les champs requis","no middle name":"Aucun deuxième prénom","yes, i'd be happy to receive text messages":"Oui, je serais heureux de recevoir des messages texte","by checking the box, you agree to receive marketing text messages via automated technology from":"En cochant la case, vous acceptez de recevoir des messages texte de marketing via une technologie automatisée de la part de","and its affiliates, subsidiaries, related properties, and/or service providers. you also agree to the terms of service and privacy policy. you understand that your consent is not a condition to make any purchase of property, goods or services. message and data rates may apply":"et de ses sociétés affiliées, filiales, propriétés apparentées et/ou fournisseurs de services. Vous acceptez également les conditions d’utilisation et la politique de confidentialité. Vous comprenez que votre consentement n'est pas une condition pour effectuer quelconque achat de propriété, de biens ou de services. Les tarifs des messages et des données peuvent s'appliquer","zip":"Code postal","social security number":"Numéro d'assurance sociale (NAS)","carrier charges may apply":"Des frais d'opérateur téléphonique peuvent s'appliquer","next available date":"Prochaine date disponible","desired number of bedrooms":"Nombre de chambres à coucher désirées","desired number of bathrooms":"Nombre de salles de bains désirées","number of amenities":"Nombre de commodités","rent specials available at":"Offres spéciales de location disponibles sur","special offers are valid for individual floor plans. for more details, please check each floor plan or contact the property directly.":"Les offres spéciales sont valables pour les plans d'étage individuels. Pour plus de détails, veuillez consulter chaque plan d'étage ou contacter directement la propriété.","apartment number":"Numéro d'appartement","denotes mandatory fields":"indique les champs obligatoires","start your application":"Commencez votre demande","maybe later":"Peut-être plus tard","restrictions":"Restrictions","max weight":"Poids maximum","allowed":"Autorisé","one time fee":"Frais uniques","pet care available":"Soins pour animaux de compagnie disponibles","this site is protected by recaptcha. google":"Ce site est protégé par reCAPTCHA. Google","service":"Service","sorry, there are no apartment listings matching your criteria. please try a broader search! still havent found the apartment of your choice?":"Désolé, il n'y a pas d'annonces d'appartements correspondant à vos critères. Veuillez essayer une recherche plus générale ! Vous n'avez toujours pas trouvé l'appartement de votre choix ?","contact us with your requirement.":"Contactez-nous pour nous faire part de vos besoins.","similar floor plans":"Plans d'étage similaires","you might be interested in other available apartments listed below.":"Vous pourriez être intéressé par d'autres appartements disponibles énumérés ci-dessous.","locate me":"Localisez-moi","error: location access is denied!":"Erreur : L'accès à l'emplacement est refusé !","opens in a new tab":"S'ouvre dans un nouvel onglet","spanish":"Espagnol","translate":"Traduire","register your interest today.":"Enregistrez votre intérêt aujourd’hui.","cookies policy":"Avis sur les témoins","your new home":"Votre nouveau domicile","register your interest today":"Enregistrez votre intérêt aujourd’hui","*indicates required fields.":"*Indique les champs requis.","this site is protected by rechapta. google privacy policy and terms of service apply.":"Ce site est protégé par reCAPTCHA. La politique de confidentialité de Google et les conditions d’utilisation s’appliquent.","what's included?":"Qu'est-ce qui est inclus?","all categories":"Toutes les catégories","saturday:":"Samedi :","press for larger image":"Appuyez pour agrandir l'image","restaurants":"Restaurants","* denotes mandatory fields.":"* indique les champs obligatoires.","this account has a past resident status. any payments made will be processed by 'w+'.":"Ce compte a un statut d'ancien résident. Tout paiement effectué sera traité par « $1 ».","cost estimate":"Estimation du coût","get started by selecting your unit, move-in date, and lease term.":"Commencez par sélectionner votre unité, votre date d’emménagement et la durée du bail.","go back":"Revenez en arrière","select add-ons":"Sélectionner des compléments","10 month":"10 mois","12 month":"12 mois","characters left.":"caractères restants.","6 month":"6 mois","4 month":"4 mois",", and consent to receive essential account messages by email or text. message and data rates may apply.":", et acceptez de recevoir les messages importants concernant votre compte par courriel ou SMS. Des tarifs de messagerie et de données peuvent s’appliquer.","this website does not include a cookie consent mechanism. by continuing to use this site, you accept that cookie preferences cannot be adjusted and that some cookies, necessary for site functionality and marketing, may be used.":"Ce site Web ne comprend pas de mécanisme de consentement aux témoins. En continuant à utiliser ce site, vous acceptez que les préférences en matière de témoins ne puissent pas être modifiées et que certains témoins, nécessaires au fonctionnement du site et à des fins marketing, puissent être utilisés.","please contact the property for apartments pricing.":"Veuillez contacter la propriété pour les prix des appartements","yes, i'd be happy to receive text messages!":"Oui, je serais heureux de recevoir des messages texte!","1 month":"1 mois","5 month":"5 mois","11 month":"11 mois","/mo":"/mois","calculate":"Calculer","region 2":"Région 2","starting at:":"À partir de :","please expand your search criteria or":"Veuillez élargir vos critères de recherche ou","360° tour":"Visite à 360°","apply filters":"APPLIQUER FILTRES","30 min":"30 min.","for a live video tour, take a tour virtually with the leasing age...":"Pour une visite vidéo en direct, faites le tour virtuellement avec l'agent immobilier...","on demand":"SUR DEMANDE","take an online interactive walkthrough.":"Faites une visite virtuelle interactive.","tour in-person with one of our agents.":"Visite en personne avec un de nos agents.","tour with an agent through a video conference.":"Visite avec un agent par vidéoconférence.","video tour":"Visite vidéo","tags:":"Balises :","error: please provide a valid last name.":"Erreur : Veuillez fournir un nom de famille valide.","important:":"IMPORTANT :","last name on id*":"Nom de famille sur la pièce d'identité","please enter your name exactly as it appears on your government-issued photo id":"Veuillez indiquer votre nom tel qu'il apparaît sur votre carte d'identité à photo émise par le gouvernement.","powered by rentcafe":"Actionné par RentCafe","room type":"Type de chambre","room type features":"Caractéristiques du type de chambre","room type name":"Nom du type de chambre","summer booking":"Réservation pour l'été","sunday:":"Dimanche :","# of nights":"Nombre de nuits","children":"Enfants","error: please enter a valid guests value.":"Erreur : Veuillez saisir une valeur valide pour Invités.","error: please enter a valid maximum price value.":"Erreur : Veuillez saisir une valeur de Prix maximum valide.","error: please enter a valid minimum price value.":"Erreur : Veuillez saisir une valeur de Prix minimum valide.","guests":"Invités","the selected check-in date is not valid. please select a future date to proceed.":"La date d'enregistrement sélectionnée n'est pas valide. Veuillez sélectionner une date dans le futur pour continuer.","the selected check-in date is not valid. please select a later date to proceed.":"La date d'enregistrement sélectionnée n'est pas valide. Veuillez sélectionner une date ultérieure pour continuer.","the selected check-in date is not valid. please select an earlier date to proceed.":"La date d'enregistrement sélectionnée n'est pas valide. Veuillez sélectionner une date antérieure pour continuer.","the selected check-out date is not valid. please select a future date to proceed.":"La date de départ sélectionnée n'est pas valide. Veuillez sélectionner une date dans le futur pour continuer.","the selected check-out date is not valid. please select a later date to proceed.":"La date de départ sélectionnée n'est pas valide. Veuillez sélectionner une date ultérieure pour continuer.","the selected check-out date is not valid. please select an earlier date to proceed.":"La date de départ sélectionnée n'est pas valide. Veuillez sélectionner une date antérieure pour continuer.","baths":"Salles de bains","learn more":"En savoir plus","city, zip, address, property name":"Ville, code postal, adresse, nom de la propriété","city, post code, address, property name":"Ville, code postal, adresse, nom de la propriété","bathroom":"Salle de bains","bathrooms":"Salles de bains","rent":"Loyer","done":"Terminé","enabled":"Activé","guest sign in":"Inscription des invités","in home delivery opt-in & notification preferences":"Préférences en matière de consentement et de notification pour la livraison à domicile","in home delivery pickup":"Prise de livraison à domicile","key pick up":"Collecte de clés","key return":"Retour de clés","notify via text message?":"Notifier par message texte ?","opt-in to in home delivery":"Consentement pour la livraison à domicile","please match the requested format.":"Veuillez respecter le format demandé.","please try with the marketing site to unsubscribe the email":"Veuillez essayer avec le site de marketing pour vous désabonner du courriel","regular":"Régulier","reservation cancel":"Annulation de la réservation","reservation confirm":"Confirmation de réservation","reservation creation":"Création de réservation","reservation deny":"Refus de réservation","reservation ended":"Réservation terminée","reservation reschedule":"Report de la réservation","reservation waitlist":"Liste d'attente des réservations","user successfully unsubscribed":"L'utilisateur s'est désabonné avec succès","{number} bathrooms":"{number} salles de bains","{number} bedrooms":"{number} chambres à coucher","{number0} or {number1} bathrooms":"{number0} ou {number1} salles de bains","{number0} or {number1} bedrooms":"{number0} ou {number1} chambres à coucher","{number0}, {number1} or {number2} bathrooms":"{number0}, {number1} ou {number2} salles de bains","{number0}, {number1} or {number2} bedrooms":"{number0}, {number1} ou {number2} chambres à coucher","{number0}, {number1}, {number2} or {number3} bathrooms":"{number0}, {number1}, {number2} ou {number3} salles de bains","{number0}, {number1}, {number2} or {number3} bedrooms":"{number0}, {number1}, {number2} ou {number3} chambres à coucher","{number0}, {number1}, {number2}, {number3} or {number4} bathrooms":"{number0}, {number1}, {number2}, {number3} ou {number4} salles de bains","{number0}, {number1}, {number2}, {number3} or {number4} bedrooms":"{number0}, {number1}, {number2}, {number3} ou {number4} chambres à coucher","studio or":"Studio ou","please enter your email.":"Veuillez saisir votre adresse électronique.","please enter your password below to continue.":"Veuillez saisir votre adresse électronique ci-dessous pour continuer.","relation *":"Relation *","scheduled times":"Heures programmées","send a message":"Envoyer un message","start time":"Heure de début","state/province":"État/Province","vehicle":"Véhicule","you can upload images up to 2mb. file types allowed: .gif, .jpeg, .png, .jpg, .pjpeg, .bmp, .x-png":"Vous pouvez télécharger des images jusqu'à 2 Mo. Types de fichiers autorisés : .gif, .jpeg, .png, .jpg, .pjpeg, .bmp, .x-png","you currently have an active payment that is pending processing with this credit card. once the payment has been processed, you will be able to delete this credit card. please check back later.":"Vous avez actuellement un paiement actif qui est en attente de traitement avec cette carte de crédit. Une fois le paiement traité, vous pourrez supprimer cette carte de crédit. Veuillez revenir plus tard.","(waitlist)":"(liste d'attente)","1 bed, 1 bath":"1 chambre, 1 salle de bain","2 beds, 1 bath":"2 chambres, 1 salle de bain","3 beds, 1 bath":"3 chambres, 1 salle de bain","3 beds, 1,5 baths":"3 chambres, 1,5 salles de bain","3 beds, 1.5 baths":"3 chambres, 1,5 salles de bain","4 beds, 1,5 baths":"4 chambres, 1,5 salles de bain","4 beds, 1.5 baths":"4 chambres, 1,5 salles de bain","4 beds, 2 baths":"4 chambres, 2 salles de bain","studio, 1 bath":"Studio, 1 salle de bain",". this site is protected by recaptcha. the google":". Ce site est protégé par reCAPTCHA. Google","error: please agree to the privacy policy & terms and conditions.":"Erreur : Veuillez accepter la politique de confidentialité et les conditions générales.","view map":"Afficher la carte","add-ons":"Compléments","property overview":"Aperçu de la propriété","budget":"Budget","please select the room":"Veuillez sélectionner la chambre","find my floor plan":"Trouvez mon plan d’étage","view this room":"Voir cette chambre","room detail":"Détails de la chambre","by continuing, you agree to the":"En continuant, vous acceptez les","email address and phone number are required for essential messages related to your account.":"L’adresse électronique et le numéro de téléphone sont obligatoires pour les messages importants liés à votre compte.","property features":"Caractéristiques de la propriété","in the next few months.":"Dans les prochains mois.","describe your budget":"Décrivez votre budget","send me special offers by email and text. we respect your inbox, you can opt-out anytime.":"Envoyez-moi des offres spéciales par courriel et SMS. Nous respectons votre boîte de réception, vous pouvez vous désabonner à tout moment.","view the brochure":"Afficher la brochure","schedule tour":"Programmer une visite","property details":"Détails de la propriété","similar accommodations":"Hébergements similaires","available times on":"Heures disponibles le","&":"et","by checking this box, you are agreeing to the":"En cochant cette case, vous acceptez les","in the next few months":"Dans les prochains mois","accept notice":"Accepter le préavis","no add-ons":"Aucun complément","3 month":"3 mois","show less":"Afficher moins","personalize your cost":"Personnaliser votre coût","8 month":"8 mois","9 month":"9 mois","we’ll send essential messages by email and text. you can opt out of text messages anytime.":"Nous vous enverrons les messages importants par courriel et par SMS. Vous pouvez vous désabonner des SMS à tout moment.","14 month":"14 mois","7 month":"7 mois","15 month":"15 mois","estimate your costs":"Estimer vos coûts","region 1":"Région 1","base rent":"Loyer de base","email my estimate":"Envoyer mon devis par courriel","2 month":"2 mois","i also want to receive offers and promotions.":"Je souhaite également recevoir des offres et des offres spéciales.","13 month":"13 mois","2 bedroom":"2 chambres à coucher","hey, don't miss out on this offer!":"Hé, ne ratez pas cette offre!","this is an estimate only. actual costs may vary.":"Il s'agit d'une estimation. Les coûts réels peuvent varier.","optional":"Facultatif","select academic term":"Sélectionnez une période académique","refundable":"Remboursable","you selected a {gradename} room for the {ayname} for {atname} ({atrange}).":"Vous avez sélectionné une chambre {gradeName} pour le {ayName} pour {atName} ({atRange}).","select room type":"Sélectionner le type de chambre","your details":"Vos détails","move out":"Déménagement","other charges":"Autres charges","total costs over":"Coûts totaux sur","another unit?":"Une autre unité?","delayed move-out":"Déménagement différé","no add-ons selected":"Aucun complément sélectionné","alternative room":"Chambre alternative","rent price per week":"Loyer hebdomadaire","you are now in our waitlist. we will contact you shortly.":"Vous êtes désormais inscrit sur notre liste d'attente. Nous vous contacterons sous peu.","total costs over the academic term.":"Coût total pour la période académique.","late start":"Début tardif","error: this field is required.":"Erreur : Ce champ est requis.","no, thank you.":"Non, merci...","required":"Requis","send estimate":"Envoyer une estimation","no units available":"Aucune unité disponible.","join the waitlist":"INSCRIVEZ-VOUS SUR LA LISTE D'ATTENTE","submitting...":"Soumission...","early move-out":"Déménagement anticipé","total costs":"Coûts totaux","one time":"Une fois","i agree to receive updates.":"J'accepte de recevoir des mises à jour.","estimated total cost with fees and add-ons.":"Coût total estimé, avec les frais et les compléments.","sq. m.":"m²","selected add-ons":"COMPLÉMENTS SÉLECTIONNÉS","join our waitlist for a unit":"Inscrivez-vous sur notre liste d'attente pour une unité","yes, i am interested":"Oui, je suis intéressé","plan ahead by estimating your costs and additional fees based on your selected room.":"Préparez-vous à l'avance en estimant vos coûts et les frais supplémentaires en fonction de la chambre que vous avez choisie.","inquire for more details":"Renseignez-vous pour plus de détails","sending...":"Envoyant...","* indicates required fields":"* Indique les champs requis","min rent":"Loyer minimum","we have the perfect unit for you!":"Nous avons l'unité parfaite pour vous!","sorry, no units available for this floorplan at the moment.":"Désolé, aucune unité n'est disponible pour ce plan d'étage pour le moment.","one-time":"Une fois","move-out":"DÉMÉNAGEMENT","no add-ons available.":"Aucun complément disponible.","included costs":"COÛTS INCLUS","would you be interested in an alternative room if your selected room is not available?":"Seriez-vous intéressé(e) par une autre chambre si celle que vous avez choisie n'était pas disponible?","move-in":"EMMÉNAGEMENT","error: please verify you are not a robot.":"Erreur : Veuillez vérifier que vous n'êtes pas un robot.","application":"Application","included by default":"Inclus par défaut","included in rent":"Inclus dans le loyer","we'll send you an overview of your estimate for this room.":"Nous vous enverrons un résumé de votre estimation pour cette chambre.","week":"semaine","application costs":"Coûts de demande","yes, absolutely!":"Oui, absolument!","recurring - monthly":"Récurrent – Mensuel","estimated total cost":"Coût total estimé","leasing special applied":"L'offre spéciale de location est appliquée","book now to avail our":"Réservez dès maintenant pour profiter de notre","total rent":"LOYER TOTAL","no, i am not interested":"Non, cela ne m'intéresse pas","select academic year":"Sélectionnez l'année académique","select your add-ons":"Sélectionner vos compléments","hassle free move-out":"Un déménagement sans problème","please check your inbox.":"Veuillez vérifier votre boîte de réception.","recurring by instalment":"Récurrent par versement","view all available units":"Voir toutes les unités disponibles","an error occurred. please try again.":"Une erreur s'est produite. Veuillez réessayer.","join our waitlist for this room and we'll contact you about its availability.":"Inscrivez-vous sur notre liste d'attente pour cette chambre et nous vous contacterons dès qu'elle sera disponible.","no cost":"Aucun coût","room availability":"Disponibilité de la chambre","error: please enter a valid email.":"Erreur : Veuillez saisir une adresse électronique valide.","no application fees.":"Aucuns frais demande","loading...":"Chargement...","sq.m.:":"M² :","estimate emailed.":"Estimation envoyée par courriel.","recurring":"Récurrent","leasing special":"Offre spéciale de location","virtual tour":"Visite virtuelle","delayed move-in":"Emménagement différé","add-ons and extras update your total cost.":"Les compléments et les suppléments modifient votre coût total.","add-on selected":"Ajouter le complément sélectionné","an unexpected error has occurred. please try again.":"Une erreur inattendue s’est produite. Veuillez réessayer.","unable to send estimate. please try again.":"Impossible d'envoyer l'estimation. Veuillez réessayer.","no other charges.":"Aucune autre charge.","early move-in":"Emménagement anticipé","view room":"Voir la chambre","add-ons selected":"Compléments sélectionnés","academic terms":"Périodes académiques","the academic term has not yet started. you can explore different move-in dates here to estimate your costs. but when you begin your application, your move-in date will default to the academic term start date.":"La période académique n’a pas encore commencé. Vous pouvez explorer différentes dates d’emménagement ici pour estimer vos coûts. Cependant, lorsque vous commencerez votre demande, votre date d’emménagement sera automatiquement fixée à la date de début de la période académique.","starting late?":"Début différé?","want to live with your friends?":"Souhaitez-vous vivre avec vos amis?","total costs based on selected academic term and move-in date.":"Total des coûts en fonction de la période académique et de la date d’emménagement sélectionnées.","feb":"Févr.","guarantor login":"Connexion du garant","add another":"Ajouter un autre","jan":"Janv.","oct":"Oct.","nights":"Nuits","pricing breakdown":"Ventilation des prix","select check-in date first":"Veuillez d’abord sélectionner une date d’enregistrement","cost estimate unavailable":"Estimation des coûts indisponible","please select a check-in date.":"Veuillez sélectionner une date d’enregistrement.","stay must be {nights} nights or fewer":"Le séjour doit durer {nights} nuits ou moins","i want to reserve for friends.":"Je souhaite réserver pour des amis.","see what's included, what's extra":"Voir ce qui est inclus et ce qui est en supplément","checking availability…":"Vérification de la disponibilité en cours","result":"résultat","error: please provide a valid name.":"Erreur : veuillez fournir un nom valide.","please select a check-out date.":"Veuillez sélectionner une date de départ.","max 10 reached":"Limite de 10 atteinte","nov":"Nov.","short stay rooms":"Chambres pour séjours courts","you are not adding any friends.":"Vous n’ajoutez aucun ami.","minimum stay is {nights} nights":"La durée minimale de séjour est de {nights} nuits.","same nearby locations apply":"Les mêmes emplacements à proximité s’appliquent","maximum of {n} guests allowed.":"Maximum de {n} invités autorisés.","stay must be 1 night or fewer":"Le séjour doit durer 1 nuit ou moins","results":"résultats","check-out":"Départ","jun":"Juin","please enter a valid email.":"Veuillez saisir une adresse électronique valide.","mar":"Mars","price breakdown":"Ventilation des prix","please select both check-in and check-out dates.":"Veuillez sélectionner les dates d’enregistrement et de départ.","choose your dates":"Choisir vos dates","estimate my costs":"Estimer mes coûts","dec":"Déc.","no properties match the area you've drawn. try a wider radius or a different shape.":"Aucune propriété ne correspond à la zone que vous avez définie. Essayez avec un rayon plus large ou une autre forme.","minimum stay is 1 night":"La durée minimale de séjour est de 1 nuit","rent price":"Prix du loyer","grade features":"Fonctions de la classe","select your room":"Sélectionner votre chambre","sep":"Sept.","guest":"Invité","city or property":"Ville ou propriété","nearby":"À PROXIMITÉ","apr":"Avr.","error:":"Erreur :","certificates":"Certificats","{count} room types":"{count} types de chambre","group booking":"Réservation de groupe","360 tour":"Visite à 360°","jul":"Juil.","short stay availability":"Disponibilité pour séjours courts","1 room type":"1 type de chambre","compare room types":"Comparer les types de chambres","night":"Nuit","view document":"Voir le document","weekend":"Fin de semaine","your costs may vary based on your move-in date.":"Vos coûts peuvent varier en fonction de votre date d’emménagement.","use your mouse or touch to navigate":"Utilisez votre souris ou votre doigt pour naviguer","limited availability":"Disponibilité limitée","you can add up to 10 friends":"Vous pouvez ajouter jusqu’à 10 amis.","please enter a minimum of 2 characters.":"Veuillez saisir un minimum de 2 caractères.","the academic term has already started. you can select your preferred move-in date, and your costs will be estimated based on that date.":"La période académique a déjà commencé. Vous pouvez sélectionner votre date d’emménagement préférée, et vos coûts seront estimés en fonction de cette date.","check-in":"Enregistrement","you already entered this email address.":"Vous avez déjà saisi cette adresse électronique.","selected term":"période sélectionnée","card view":"Vue de la carte","check-out must be after check-in.":"La date de départ doit être après la date d’enregistrement.","same property features apply":"Les mêmes fonctions de la propriété s’appliquent","stay must be at least 1 night":"Le séjour doit durer au moins 1 nuit","# of persons":"Nbre de personnes","this value is required.":"Cette valeur est requise.","average per night":"Prix moyen par nuit","selected academic term":"période académique sélectionnée","continue booking":"Poursuivre la réservation","we're experiencing higher than normal traffic. please try again in a moment.":"Notre trafic est actuellement plus élevé que d'habitude. Veuillez réessayer dans quelques instants.","stay must be at least {nights} nights":"Le séjour doit durer au moins {nights} nuits","you are booking with":"Vous réservez avec","nightly rates":"Tarifs par nuit","aug":"Août","save group booking":"Enregistrer la réservation de groupe","maximum of 1 guest allowed.":"Maximum de 1 invité autorisé.","maximum stay is 1 night":"La durée maximale de séjour est de 1 nuit","saving would remove previously saved details.":"La sauvegarde supprimera les détails précédemment enregistrés.","maximum stay is {nights} nights":"La durée maximale de séjour est de {nights} nuits.","/ night":"/ nuit","no properties match your dates. try different dates or disable the date filter.":"Aucune propriété ne correspond à vos dates. Essayez d’autres dates ou désactivez le filtre de date.",",":",","are you a student?":"Êtes-vous un étudiant ?*"}; </script></head> | |
| 79 | + | |
| 80 | +<body id="homepage"> | |
| 81 | + | |
| 82 | +<!-- Google Tag Manager (noscript) --> | |
| 83 | +<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M9CFHKM" height="0" width="0" style="display:none;visibility:hidden" lang=""></iframe></noscript> | |
| 84 | +<!-- End Google Tag Manager (noscript) --> | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + <style>a#skip-nav{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}a#skip-nav:focus,a#skip-nav:active{position:fixed;bottom:10px;left:10px;width:auto;height:auto;text-decoration:underline;background:white;padding:5px 20px 10px;z-index:100000}</style> | |
| 98 | + | |
| 99 | + | |
| 100 | +<a id="skip-nav" href="#main-content" lang="">Passer au contenu principal</a> | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + <nav id="ysi-mobile-navbar" aria-label="main navigation" class="ysi-navbar-mobile navbar w-100 d-xl-none navbar-light" style="width: 100%; background-color: rgba(74,166,202,1); color: #ffffff; " aria-hidden="false"> | |
| 115 | + <button id="nav-btn" class="navbar-toggler collapsed " style=" color: #ffffff; " type="button" data-toggle="collapse" data-target="#navbarMobileCollapse" aria-controls="navbarMobileCollapse" aria-expanded="false" aria-label="Toggle navigation" aria-haspopup="true" lang=""> | |
| 116 | + <svg class="ysi-svg-icon ysi-svg-icon-bars" width="1em" height="1em" viewBox="0 0 256 256"><path d="m 24,66 h 208 c 4,0 8,-4 8,-8 V 38 c 0,-4 -4,-8 -8,-8 H 24 c -4,0 -8,4 -8,8 v 20 c 0,4 4,8 8,8 z m 0,80 h 208 c 4,0 8,-4 8,-8 v -20 c 0,-4 -4,-8 -8,-8 H 24 c -4,0 -8,4 -8,8 v 20 c 0,4 4,8 8,8 z m 0,80 h 208 c 4,0 8,-4 8,-8 v -20 c 0,-4 -4,-8 -8,-8 H 24 c -4,0 -8,4 -8,8 v 20 c 0,4 4,8 8,8 z"></path></svg> | |
| 117 | + <svg class="ysi-svg-icon ysi-svg-icon-times" width="1em" height="1em" viewBox="0 0 256 256"><rect transform="rotate(45, 128, 128)" width="244" height="44.8" x="6" y="108" rx="12" ry="12"></rect><rect transform="rotate(-45, 128, 128)" width="244" height="44.8" x="6" y="108" rx="12" ry="12"></rect></svg> | |
| 118 | + </button> | |
| 119 | + <div class="navbar-right pr-2" lang=""> | |
| 120 | + | |
| 121 | + | |
| 122 | + <div class="dropdown ysi-translate-widget ysi-translate-dropdown px-2 " lang=""> | |
| 123 | + <a data-selenium-id="translate" class="dropdown-toggle color-inherit text-decoration-none" href="#" onclick="elementLanguageFocus()" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" lang=""> | |
| 124 | + <span aria-hidden="true" class="fas fa-globe-americas" lang=""></span> <span class="sr-only" lang="">Langue</span> | |
| 125 | + </a> | |
| 126 | + <ul class="dropdown-menu dropdown-menu-right" lang=""> | |
| 127 | + | |
| 128 | + <li lang=""> | |
| 129 | + <a data-selenium-id="lang-1" class="dropdown-item px-3 language-drowndown-item" href="javascript:getPack('fr-ca')" aria-label="French - Canada Language" lang=""> | |
| 130 | + <span class="ml-2" lang="">Français - Canada</span> | |
| 131 | + </a> | |
| 132 | + </li> | |
| 133 | + <li lang=""> | |
| 134 | + <a data-selenium-id="lang-1" class="dropdown-item px-3 language-drowndown-item" href="javascript:getPack('en')" aria-label="English Language" lang=""> | |
| 135 | + <span class="ml-2" lang="">Anglais</span> | |
| 136 | + </a> | |
| 137 | + </li> | |
| 138 | + </ul> | |
| 139 | + </div> | |
| 140 | + <input type="hidden" id="translate-request-verification-token" name="translate-request-verification-token" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ1E9odX1zOppWDJciyOPWY4X30sSd5MvyWgCXJ6UeFWplye6u2FXDVVIDVPTj_xxw_CJK5L31CIDKw_KarigoNOlIUSHDDEEROplk49gLYCOiw8PsShK4PTLo7wmIwUUx4"> | |
| 141 | + <script type="text/javascript"> | |
| 142 | + ysi.SiteId = 'NDc1ODQ0-LVf1bALv%2fwU%3d'; | |
| 143 | + ysi.registerCallback(function () { | |
| 144 | + var sourceLanguage = ysi.cookie.read('stl_' + ysi.SiteId); | |
| 145 | + if(sourceLanguage == null || sourceLanguage != 'fr-ca'){ | |
| 146 | + ysi.cookie.create('stl_' + ysi.SiteId, 'fr-ca', 1000); | |
| 147 | + ysi.cookie.create('gtal_' + ysi.SiteId, 'fr-ca', 1000); | |
| 148 | + } | |
| 149 | + }); | |
| 150 | + </script> | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + <div class="dropdown ysi-login-link-widget ysi-login-dropdown d-inline" style="max-width: max-content;" lang="" aria-hidden="false"> | |
| 158 | + | |
| 159 | + <a data-selenium-id="loginlinks" class="dropdown-toggle color-inherit text-decoration-none " href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" style="" lang=""> | |
| 160 | + <svg class="ysi-svg-icon ysi-svg-icon-user" width="1em" height="1em" viewBox="0 0 256 256"><path d="m 128,128 c 35.35,0 64,-28.7 64,-64 C 192,28.7 163.4,0 128,0 92.7,0 64,28.7 64,64 c 0,35.4 28.65,64 64,64 z m 44.8,16 h -8.4 c -11.1,5.1 -23.5,8 -36.5,8 -13,0 -25.3,-2.9 -36.5,-8 H 83.2 C 46.1,144 16,174.1 16,211.2 V 232 c 0,13.3 10.8,24 24,24 h 176 c 13.3,0 24,-10.8 24,-24 V 211.2 C 240,174.1 209.9,144 172.8,144 Z"></path></svg> | |
| 161 | + <span class="sr-only" lang="">Connexion</span> | |
| 162 | + </a> | |
| 163 | + | |
| 164 | + <div class="dropdown-menu dropdown-menu-right" lang=""> | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + <ul class="dropdown-list list-unstyled mb-0" lang=""> | |
| 169 | + <li lang=""> | |
| 170 | + <a data-selenium-id="residentlogin" class="dropdown-item track-resident-login" href="https://aaltosuites.securecafenet.com/residentservices/aalto/userlogin?dropdownlangid=38" rel="noopener" target="_Blank" lang="">Résident<span class="sr-only" lang="">Login Opens in a new tab</span> </a> | |
| 171 | + </li> | |
| 172 | + | |
| 173 | + <li lang=""> | |
| 174 | + <a data-selenium-id="applicantlogin" class="dropdown-item track-applicant-login" href="https://aaltosuites.securecafe.com/onlineleasing/aalto/guestlogin.aspx?dropdownlangid=38&PropLeadSource_2384767=portal" rel="noopener" target="_Blank" lang="">Demandeur<span class="sr-only" lang="">Login Opens in a new tab</span> </a> | |
| 175 | + </li> | |
| 176 | + | |
| 177 | + </ul> | |
| 178 | + </div> | |
| 179 | + </div> | |
| 180 | + | |
| 181 | + | |
| 182 | + | |
| 183 | + | |
| 184 | + <style>.mobile-only .click-to-call{display:none}</style> | |
| 185 | + | |
| 186 | + <div class="ysi-phone-widget ysi-phone-wrapper mobile-only d-inline ml-2 " lang=""> | |
| 187 | + <div class="d-inline-flex" lang=""> | |
| 188 | + <a data-selenium-id="click_to_call" onclick="fireGaPhone()" href="tel:+1 819-809-9131" aria-label="Call Aalto at +1 819-809-9131" class="ysi-phone-number click-to-call-href color-inherit " lang=""> | |
| 189 | + <svg class="ysi-svg-icon mobile-phone-icon" width="1em" height="1em" viewBox="0 0 256 256"><path d="M 9.3,12.3 61.3,0.3 c 5.6,-1.3 11.5,1.6 13.7,6.9 L 99,63.3 c 2.1,4.9 0.7,10.6 -3.4,14 L 65.3,102 c 18,38.3 49.4,70.2 88.6,88.6 l 24.8,-30.3 c 3.4,-4.1 9.1,-5.5 14,-3.4 l 56,24 c 5.3,2.3 8.3,8.1 7,13.8 L 243.7,246.7 C 242.4,252.1 237.6,256 232,256 103.9,256 0,152.3 0,24 0,18.4 3.8,13.6 9.3,12.3 Z"></path></svg> | |
| 190 | + <span class="click-to-call" lang="">+1 819-809-9131</span> | |
| 191 | + </a> | |
| 192 | + | |
| 193 | + </div> | |
| 194 | + </div> | |
| 195 | + <script> | |
| 196 | + function fireGaPhone() { | |
| 197 | + if (typeof gtag != 'undefined') { | |
| 198 | + var myPage = location.pathname.replace("/", ""); | |
| 199 | + if (myPage == "") { myPage = "index"; } | |
| 200 | + if (false ) { | |
| 201 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 202 | + gtag('event', 'phone_call', { 'property_name': propertyName, 'page_name': document.title, 'page_url': window.location.href, 'header_phone_number': '+1 819-809-9131'}); | |
| 203 | + } | |
| 204 | + gtag('event', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 205 | + gtag('rc.send', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 206 | + } | |
| 207 | + } | |
| 208 | + </script> | |
| 209 | + | |
| 210 | + </div> | |
| 211 | + <div class="collapse navbar-collapse" id="navbarMobileCollapse" lang=""> | |
| 212 | + <ul class="nav navbar-nav pt-3 custom-scroll" lang=""> | |
| 213 | + <li class="nav-item active" lang=""> | |
| 214 | + <a data-selenium-id="mobile_indexaspx_MenuLink" href="/" aria-current="page" class="nav-link" lang="">Accueil</a> | |
| 215 | + </li> | |
| 216 | + <li class="nav-item" lang=""> | |
| 217 | + <a data-selenium-id="mobile_floorplansaspx_MenuLink" href="/floorplans" class="nav-link" lang="">Plans d’étage et prix</a> | |
| 218 | + </li> | |
| 219 | + <li class="nav-item" lang=""> | |
| 220 | + <a data-selenium-id="mobile_amenitiesaspx_MenuLink" href="/amenities" class="nav-link" lang="">Commodités</a> | |
| 221 | + </li> | |
| 222 | + <li class="nav-item" lang=""> | |
| 223 | + <a data-selenium-id="mobile_neighbourhoodaspx_MenuLink" href="/neighbourhood" class="nav-link" lang="">Voisinage</a> | |
| 224 | + </li> | |
| 225 | + <li class="nav-item" lang=""> | |
| 226 | + <a data-selenium-id="mobile_photogalleryaspx_MenuLink" href="/photogallery" class="nav-link" lang="">Gallerie</a> | |
| 227 | + </li> | |
| 228 | + <li class="nav-item" lang=""> | |
| 229 | + <a data-selenium-id="mobile_scheduletouraspx_MenuLink" href="/scheduletour" class="nav-link" lang="">Planifier une visite</a> | |
| 230 | + </li> | |
| 231 | + <li class="nav-item" lang=""> | |
| 232 | + <a data-selenium-id="mobile_contactusaspx_MenuLink" href="/contactus" class="nav-link" lang="">Contactez-nous</a> | |
| 233 | + </li> | |
| 234 | + </ul> | |
| 235 | + </div> | |
| 236 | + </nav> | |
| 237 | + | |
| 238 | + | |
| 239 | + | |
| 240 | +<script> | |
| 241 | +window.addEventListener("load", () => { | |
| 242 | + document.querySelectorAll('button.navbar-toggler[aria-expanded]').forEach((hamburger) => { | |
| 243 | + const update = () => { | |
| 244 | + hamburger.setAttribute( | |
| 245 | + "aria-label", | |
| 246 | + hamburger.getAttribute("aria-expanded") === "true" | |
| 247 | + ? "Close navigation" | |
| 248 | + : "Toggle navigation" | |
| 249 | + ); | |
| 250 | + }; | |
| 251 | + | |
| 252 | + update(); | |
| 253 | + | |
| 254 | + new MutationObserver(update).observe(hamburger, { | |
| 255 | + attributes: true, | |
| 256 | + attributeFilter: ["aria-expanded"], | |
| 257 | + }); | |
| 258 | + }); | |
| 259 | +}); | |
| 260 | +</script> | |
| 261 | + | |
| 262 | + | |
| 263 | + | |
| 264 | + <header><div data-offset-top="0" id="stickyTopSentinel0" class="stickytopsentinel" style="position: absolute; left: 0px; width: 1px; height: 1px; z-index: 0;"></div><div class="center-top no-repeat p-xl-3 text-white se-custom-bgcolor ysi-row d-none d-xl-flex sticky-top left-0 right-0" style="background-color:rgba(74,166,202,1) !important" lang=""><div class="container-fluid" lang=""><div class="row" lang=""><div class="pt-xl-0 pt-lg-2 pt-md-0 px-1 se-custom-bgcolor col-12 offset-0 d-flex justify-content-center align-items-center flex-row text-center col-lg-12 col-xl-4 justify-content-xl-start" style="background-color:rgba(74,166,202,1) !important" lang=""><style>#logo400 img{box-sizing:content-box}@media (min-width: 992px){#logo400 img{width:227px}}</style><div class="ysi-logo-widget ysi-logo-wrapper p-2" data-widget-order="1" lang="" aria-hidden="true"><picture id="logo400"> | |
| 265 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1614,h_213,c_crop/q_auto,f_auto,c_fit,w_227,h_30,dpr_2/s3/2/144684/aalto(1).png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1614,h_213,c_crop/q_auto,f_auto,c_limit,w_227,h_30/s3/2/144684/aalto(1).png"> | |
| 266 | + | |
| 267 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1614,h_213,c_crop/q_auto,f_auto,c_fit,w_182,h_24,dpr_2/s3/2/144684/aalto(1).png 2x"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1614,h_213,c_crop/q_auto,f_auto,c_limit,w_182,h_24/s3/2/144684/aalto(1).png" class="d-inline-block img-fluid" alt="A black and white image of a person." width="182" height="24"> | |
| 268 | +</picture> | |
| 269 | +</div> | |
| 270 | + | |
| 271 | +</div><div class="pr-lg-6 py-0 text-white se-custom-bgcolor col-12 offset-0 d-flex justify-content-end align-items-center flex-row text-center col-lg-12 col-xl-8 rgt-nav" style="background-color:rgba(74,166,202,1) !important" lang=""> | |
| 272 | + | |
| 273 | + | |
| 274 | +<div class="ysi-button-widget ysi-button-wrapper" lang=""> | |
| 275 | + <a data-selenium-id="btn-01" class="btn letter-spacing-1 color-inherit font-heading px-4 py-0 text-lg btn-sm btn-link" href="/scheduletour" style="" lang="">VISITEZ LES LIEUX</a> | |
| 276 | +</div> | |
| 277 | + | |
| 278 | + | |
| 279 | + | |
| 280 | +<div class="ysi-button-widget ysi-button-wrapper" lang=""> | |
| 281 | + <a data-selenium-id="ApplicantLogin" class="btn px-4 py-0 letter-spacing-1 font-heading text-lg btn-link" href="https://aaltosuites.securecafe.com/onlineleasing/aalto/guestlogin.aspx?PropLeadSource_2384767=portal" style="color: #ffffff !important;" target="_blank" rel="noopener" lang="">PORTAIL DES DEMANDEURS<span class="sr-only" lang="">Login Opens in a new tab</span> | |
| 282 | + </a> | |
| 283 | +</div> | |
| 284 | + | |
| 285 | + | |
| 286 | + | |
| 287 | + | |
| 288 | +<div class="ysi-button-widget ysi-button-wrapper" lang=""> | |
| 289 | + <a data-selenium-id="ResidentLogin" class="btn px-4 py-0 letter-spacing-1 font-heading text-lg btn-link" href="https://aaltosuites.securecafenet.com/residentservices/aalto/userlogin" style="color: #ffffff !important;" target="_blank" rel="noopener" lang="">PORTAIL DES RÉSIDENTS<span class="sr-only" lang="">Login Opens in a new tab</span> | |
| 290 | + </a> | |
| 291 | +</div> | |
| 292 | + | |
| 293 | + | |
| 294 | + <div class="dropdown ysi-translate-widget ysi-translate-dropdown px-2 d-none d-lg-flex" lang=""> | |
| 295 | + <a data-selenium-id="translate" class="dropdown-toggle color-inherit " href="#" onclick="elementLanguageFocus()" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" lang=""> | |
| 296 | + <span aria-hidden="true" class="fas fa-globe-americas" lang=""></span> <span class="" lang="">Langue</span> | |
| 297 | + </a> | |
| 298 | + <ul class="dropdown-menu " lang=""> | |
| 299 | + | |
| 300 | + <li lang=""> | |
| 301 | + <a data-selenium-id="lang-1" class="dropdown-item px-3 language-drowndown-item" href="javascript:getPack('fr-ca')" aria-label="French - Canada Language" lang=""> | |
| 302 | + <span class="ml-2" lang="">Français - Canada</span> | |
| 303 | + </a> | |
| 304 | + </li> | |
| 305 | + <li lang=""> | |
| 306 | + <a data-selenium-id="lang-1" class="dropdown-item px-3 language-drowndown-item" href="javascript:getPack('en')" aria-label="English Language" lang=""> | |
| 307 | + <span class="ml-2" lang="">Anglais</span> | |
| 308 | + </a> | |
| 309 | + </li> | |
| 310 | + </ul> | |
| 311 | + </div> | |
| 312 | + <input type="hidden" id="translate-request-verification-token" name="translate-request-verification-token" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ1E9odX1zOppWDJciyOPWY4X30sSd5MvyWgCXJ6UeFWplye6u2FXDVVIDVPTj_xxw_CJK5L31CIDKw_KarigoNOlIUSHDDEEROplk49gLYCOiw8PsShK4PTLo7wmIwUUx4"> | |
| 313 | + <script type="text/javascript"> | |
| 314 | + ysi.SiteId = 'NDc1ODQ0-LVf1bALv%2fwU%3d'; | |
| 315 | + ysi.registerCallback(function () { | |
| 316 | + var sourceLanguage = ysi.cookie.read('stl_' + ysi.SiteId); | |
| 317 | + if(sourceLanguage == null || sourceLanguage != 'fr-ca'){ | |
| 318 | + ysi.cookie.create('stl_' + ysi.SiteId, 'fr-ca', 1000); | |
| 319 | + ysi.cookie.create('gtal_' + ysi.SiteId, 'fr-ca', 1000); | |
| 320 | + } | |
| 321 | + }); | |
| 322 | + </script> | |
| 323 | + | |
| 324 | +</div><div class="mt-xl-0 my-3 mr-2 text-white col-12 offset-0 d-flex justify-content-end align-items-center flex-column text-center col-lg-12 position-fixed top-0 right-0 p-0 w-auto navbutton-z-index" lang=""> <style> | |
| 325 | + #navbarCollapse .nav.navbar-nav { | |
| 326 | + background-color: #191f31; | |
| 327 | + } | |
| 328 | + </style> | |
| 329 | + <nav id="ysi-navbar" aria-label="main navigation" class="ysi-navbar navbar text-uppercase justify-content-end navbar-dark" style="" aria-hidden="true"> | |
| 330 | + <button class="navbar-toggler collapsed navbutton-z-index " type="button" data-selenium-id="NavigationMenu" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation" style="background-color: inherit; color: inherit; fill: inherit !important; " lang=""> | |
| 331 | + <span aria-hidden="true" class="fas fa-bars" lang=""></span> <span aria-hidden="true" class="fas fa-times" lang=""></span> | |
| 332 | + </button> | |
| 333 | + <div class="navbar-collapse collapse navbar-z-index position-fixed left-0 right-0 top-0 bottom-0 nav-h-100" style="width: 100%; " id="navbarCollapse" lang=""> | |
| 334 | + <ul class="nav navbar-nav font-heading custom-scroll os-theme-light nav-x-center nav-y-center py-4 " lang=""> | |
| 335 | + <li class="nav-item active" lang=""> | |
| 336 | + <a data-selenium-id="indexaspx_MenuLink" href="/" aria-current="page" class="nav-link" lang="">Accueil</a> | |
| 337 | + </li> | |
| 338 | + <li class="nav-item" lang=""> | |
| 339 | + <a data-selenium-id="floorplansaspx_MenuLink" href="/floorplans" class="nav-link" lang="">Plans d’étage et prix</a> | |
| 340 | + </li> | |
| 341 | + <li class="nav-item" lang=""> | |
| 342 | + <a data-selenium-id="amenitiesaspx_MenuLink" href="/amenities" class="nav-link" lang="">Commodités</a> | |
| 343 | + </li> | |
| 344 | + <li class="nav-item" lang=""> | |
| 345 | + <a data-selenium-id="neighbourhoodaspx_MenuLink" href="/neighbourhood" class="nav-link" lang="">Voisinage</a> | |
| 346 | + </li> | |
| 347 | + <li class="nav-item" lang=""> | |
| 348 | + <a data-selenium-id="photogalleryaspx_MenuLink" href="/photogallery" class="nav-link" lang="">Gallerie</a> | |
| 349 | + </li> | |
| 350 | + <li class="nav-item" lang=""> | |
| 351 | + <a data-selenium-id="scheduletouraspx_MenuLink" href="/scheduletour" class="nav-link" lang="">Planifier une visite</a> | |
| 352 | + </li> | |
| 353 | + <li class="nav-item" lang=""> | |
| 354 | + <a data-selenium-id="contactusaspx_MenuLink" href="/contactus" class="nav-link" lang="">Contactez-nous</a> | |
| 355 | + </li> | |
| 356 | + </ul> | |
| 357 | + </div> | |
| 358 | + </nav> | |
| 359 | + | |
| 360 | + | |
| 361 | + | |
| 362 | + | |
| 363 | +<script> | |
| 364 | +window.addEventListener("load", () => { | |
| 365 | + document.querySelectorAll('button.navbar-toggler[aria-expanded]').forEach((hamburger) => { | |
| 366 | + const update = () => { | |
| 367 | + hamburger.setAttribute( | |
| 368 | + "aria-label", | |
| 369 | + hamburger.getAttribute("aria-expanded") === "true" | |
| 370 | + ? "Close navigation" | |
| 371 | + : "Toggle navigation" | |
| 372 | + ); | |
| 373 | + }; | |
| 374 | + | |
| 375 | + update(); | |
| 376 | + | |
| 377 | + new MutationObserver(update).observe(hamburger, { | |
| 378 | + attributes: true, | |
| 379 | + attributeFilter: ["aria-expanded"], | |
| 380 | + }); | |
| 381 | + }); | |
| 382 | +}); | |
| 383 | +</script> | |
| 384 | + | |
| 385 | +</div></div></div></div><div class=" ysi-row position-relative" lang=""><div class="container-fluid" lang=""><div class="row" lang=""><div class="py-3 px-1 se-custom-bgcolor col-12 offset-0 d-flex justify-content-center align-items-center flex-row text-center col-lg-12 d-xl-none justify-content-xl-start border-top border-1 border-secondary" style="background-color:rgba(74,166,202,1) !important" lang=""><style>#logo623 img{box-sizing:content-box}@media (min-width: 992px){#logo623 img{width:227px}}</style><div class="ysi-logo-widget ysi-logo-wrapper p-2" data-widget-order="1" lang="" aria-hidden="false"><picture id="logo623"> | |
| 386 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1614,h_213,c_crop/q_auto,f_auto,c_fit,w_227,h_30,dpr_2/s3/2/144684/aalto(1).png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1614,h_213,c_crop/q_auto,f_auto,c_limit,w_227,h_30/s3/2/144684/aalto(1).png"> | |
| 387 | + | |
| 388 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1614,h_213,c_crop/q_auto,f_auto,c_fit,w_182,h_24,dpr_2/s3/2/144684/aalto(1).png 2x"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1614,h_213,c_crop/q_auto,f_auto,c_limit,w_182,h_24/s3/2/144684/aalto(1).png" class="d-inline-block img-fluid" alt="A black and white image of a person." width="182" height="24"> | |
| 389 | +</picture> | |
| 390 | +</div> | |
| 391 | + | |
| 392 | +</div></div></div></div><div class="contain bg-primary ysi-row position-relative ysi-lazyload--handled" lang="" data-mq-max-width="991px" style="background-image: url("https://resource.rentcafe.com/image/upload/q_auto,f_auto,w_1000,h_500,c_lfill,g_auto/s3/2/144684/DJI_0349.jpg");"><div class="container-fluid" lang=""><div class="row" lang=""><div class="p-0 col-12 offset-0 d-flex justify-content-start align-items-stretch flex-column text-center" lang=""> | |
| 393 | + <style>.photogallery{width:100%;margin:0 auto;position:relative}.photogallery:before{content:'';display:block;width:1px;height:0;padding-bottom:33%;margin-left:-1px;float:left}.photogallery:after{content:"";display:table;clear:both}.photogallery[data-has-height="true"] .carousel-item .item a,.photogallery[data-has-height="true"] .carousel-item .item .yardi-widget-picture{display:flex;width:100%;height:100%}.photogallery[data-has-height="true"] .carousel-item .item picture{display:flex;justify-content:center;align-items:center;height:100%;width:100%}.photogallery .carousel-inner{background:rgba(0,0,0,0.05)}.photogallery .carousel-item{word-wrap:break-word;text-align:center}.photogallery .carousel-item .item{display:inline-block;vertical-align:top;position:relative;overflow:hidden;width:100%}.photogallery .carousel-item .item img{transition:all .2s linear;height:100%;width:100%}@supports (object-fit: cover){.photogallery .carousel-item .item img{object-fit:cover}}.photogallery .carousel-item .item-caption{display:block;background:rgba(0,0,0,0.6);padding:.86em 25px .86em 15px;position:absolute;bottom:0;left:0;right:0;transition:transform 0.3s ease;color:#fff;font-size:0.86rem;line-height:1.6em;max-height:3.2em;overflow:hidden;z-index:2;box-sizing:content-box;width:auto !important;padding-top:0 !important;padding-bottom:0 !important;border-top:.6em solid transparent !important;border-bottom:.6em solid transparent !important}.photogallery .carousel-item .item-caption:before{content:"...";display:block;float:right;line-height:inherit;padding:1.6em 0 0;font-weight:700;height:calc(1.6em + 1px);overflow:visible}@supports (display: -webkit-box) and (-webkit-line-clamp: 2) and (-webkit-box-orient: vertical){.photogallery .carousel-item .item-caption{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.photogallery .carousel-item .item-caption:before{display:none}}.photogallery .carousel-item .item a:has(img):focus{outline-offset:-2px !important;outline-width:2px !important}.photogallery .carousel-item .item a:has(img):focus .item-caption{right:2px;bottom:2px;left:2px}@media (hover: hover){.photogallery .carousel-item .item{background:transparent}.photogallery .carousel-item img,.photogallery .carousel-item img:not(:last-child){padding-bottom:0}.photogallery .carousel-item .item a .item-caption{bottom:0;max-height:none;padding-bottom:10px;transform:translateY(101%)}.photogallery .carousel-item .item a .item-caption:after{display:none}.photogallery .carousel-item .item a:hover .item-caption,.photogallery .carousel-item .item a:focus .item-caption{transform:translateY(0)}}.photogallery .item-index{position:absolute;font-size:.93rem;top:.3em;right:.3em;background:rgba(0,0,0,0.8);color:#fff;line-height:1em;padding:.3em}@media (min-width: 576px){.photogallery .item-index{display:none}}@media (hover: hover){.photogallery.key-activated .carousel-item.active .item a .item-caption{transform:translateY(0)}}.gallery-prev,.gallery-next{position:absolute;display:block;line-height:0px;font-size:0px;cursor:pointer;background:transparent;color:transparent;top:50%;-webkit-transform:translate(0, -50%);-ms-transform:translate(0, -50%);transform:translate(0, -50%);border:none;outline:none;width:auto;bottom:auto;z-index:4;padding:15px;transition:opacity .2s;text-decoration:none}.gallery-prev:hover,.gallery-prev:focus,.gallery-next:hover,.gallery-next:focus{outline:none;background:transparent;color:transparent}.gallery-prev:hover:before,.gallery-prev:focus:before,.gallery-next:hover:before,.gallery-next:focus:before{opacity:1}.gallery-prev:before,.gallery-next:before{font-family:"Font Awesome 5";font-weight:900;font-size:36px;line-height:1;color:#fff;opacity:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-shadow:0 0 12px #000}@media (hover: hover){.gallery-prev:before,.gallery-next:before{font-size:36px}}.gallery-prev{left:1%}.gallery-prev:before{content:"\f137"}.gallery-next{right:1%}.gallery-next:before{content:"\f138"}.carousel-indicators.gallery-thumbnails>*:focus{outline:none !important;box-shadow:none !important}.carousel-indicators.gallery-thumbnails>*:focus:after{opacity:1;box-shadow:inset 0 0 0 2px #000, inset 0 0 0 4px #2491eb, inset 0 0 0 6px #fff}.carousel-indicators.gallery-thumbnails>*:focus img{opacity:1;transform:scale3d(1.05, 1.05, 1)}.carousel-indicators.gallery-thumbnails>*:focus-visible:after{box-shadow:inset 0 0 0 0px #000, inset 0 0 0 3px #2491eb, inset 0 0 0 5px #fff !important;outline:2px solid rgba(11,161,242,0.9) !important}.carousel-item a:has(img):focus{outline:none !important;box-shadow:none !important}.carousel-item a:has(img):focus:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;box-shadow:inset 0 0 0 2px #000, inset 0 0 0 4px #2491eb, inset 0 0 0 6px #fff}.carousel-item a:has(img):focus:not(:focus-visible):after{box-shadow:none !important;outline:none !important}.carousel-item a:has(img):focus-visible:after{box-shadow:inset 0 0 0 2px #000, inset 0 0 0 6px #2491eb, inset 0 0 0 8px #fff !important;outline:2px solid rgba(11,161,242,0.9) !important}.photogallery .carousel-item .item a:focus .item-caption{right:3px;bottom:3px;left:3px}.carousel-control-next:focus,.carousel-control-prev:focus{box-shadow:0 0 0 2px #2491eb, 0 0 0 3px #000, 0 0 0 2px #fff inset !important;outline:1px solid rgba(11,161,242,0.9) !important}.carousel-control-next:focus-visible,.carousel-control-prev:focus-visible{box-shadow:0 0 0 3px #2491eb, 0 0 0 5px #000, 0 0 0 2px #fff inset !important;outline:2px solid rgba(11,161,242,0.9) !important}.carousel[data-gallery-type="masonry"] .carousel-item a:focus img,.carousel[data-gallery-type="tabs"] .carousel-item a:focus img,.carousel[data-gallery-type="tiled"] .carousel-item a:focus img{transform:scale3d(1.05, 1.05, 1)}.carousel[data-transition='crossfade'] .carousel-item{transition:transform .6s ease;opacity:1;z-index:1}.carousel[data-transition='crossfade'] .carousel-item-prev,.carousel[data-transition='crossfade'] .active.carousel-item-left,.carousel[data-transition='crossfade'] .carousel-item-next,.carousel[data-transition='crossfade'] .active.carousel-item-right{transform:scale(1.001, 1.001);z-index:2}.carousel[data-transition='crossfade'] .active.landscape.carousel-item-left,.carousel[data-transition='crossfade'] .active.portrait.carousel-item-left,.carousel[data-transition='crossfade'] .active.landscape.carousel-item-right,.carousel[data-transition='crossfade'] .active.portrait.carousel-item-right{animation:.6s both reverse carouselCrossFadeIn}.carousel[data-transition='crossfade'] .carousel-item-next.carousel-item-left,.carousel[data-transition='crossfade'] .carousel-item-prev.carousel-item-right{transform:scale(1, 1);animation:.6s both carouselCrossFadeIn;z-index:3}@keyframes carouselCrossFadeIn{from{opacity:0}to{opacity:1}}.carousel[data-transition='none'] .carousel-item{transition:none}.carousel-ysi-lazyinit .carousel-control-next,.carousel-ysi-lazyinit .carousel-control-prev,.carousel-ysi-lazyinit .carousel-indicators{display:none}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel.picture-overlay:after{content:none}.carousel.picture-overlay.overlay-10,.carousel.picture-overlay.overlay-20,.carousel.picture-overlay.overlay-30,.carousel.picture-overlay.overlay-40,.carousel.picture-overlay.overlay-50,.carousel.picture-overlay.overlay-60,.carousel.picture-overlay.overlay-70,.carousel.picture-overlay.overlay-80,.carousel.picture-overlay.overlay-90{background-color:initial}.carousel.picture-overlay.overlay-10 picture:after{background-color:rgba(0,0,0,0.1)}.carousel.picture-overlay.overlay-20 picture:after{background-color:rgba(0,0,0,0.2)}.carousel.picture-overlay.overlay-30 picture:after{background-color:rgba(0,0,0,0.3)}.carousel.picture-overlay.overlay-40 picture:after{background-color:rgba(0,0,0,0.4)}.carousel.picture-overlay.overlay-50 picture:after{background-color:rgba(0,0,0,0.5)}.carousel.picture-overlay.overlay-60 picture:after{background-color:rgba(0,0,0,0.6)}.carousel.picture-overlay.overlay-70 picture:after{background-color:rgba(0,0,0,0.7)}.carousel.picture-overlay.overlay-80 picture:after{background-color:rgba(0,0,0,0.8)}.carousel.picture-overlay.overlay-90 picture:after{background-color:rgba(0,0,0,0.9)}.carousel.picture-overlay picture{position:relative;width:100%;display:contents}.carousel.picture-overlay picture:after{content:"";position:absolute;width:100%;height:100%;background:rgba(0,0,0,0.4);top:0;left:0;z-index:1;pointer-events:none}.carousel[data-gallery-type="stackedthumbnailcarousel"] .carousel-indicators.gallery-thumbnails>*:not(.active):focus:after{opacity:1;box-shadow:inset 0 0 0 2px #000, inset 0 0 0 5px #2491eb, inset 0 0 0 7px #fff !important;outline:2px solid rgba(11,161,242,0.9) !important}.photogallery .carousel .carousel-item{padding:0}.photogallery .carousel .carousel-item .item{display:flex;align-items:center;justify-content:center;position:relative;width:auto}.photogallery .carousel .carousel-item .item a{position:relative;overflow:hidden;max-height:100%}.photogallery .carousel-item .item.item-with-ratio{position:absolute;top:0;right:0;bottom:0;left:0}.photogallery .carousel-item .item.item-with-ratio a{display:inline-flex;max-width:100%;max-height:100%;align-items:center;justify-content:center}.photogallery .carousel-item .item.item-with-ratio img{flex:0 0 auto;max-width:100%;max-height:100%}.carousel-indicators.gallery-dots{bottom:unset;top:100%}.d-flex>.photogallery .carousel-indicators.gallery-dots{top:unset}.dots-on-top .carousel-indicators.gallery-dots{bottom:auto;top:0;position:absolute;padding:0 10px;display:flex;justify-content:flex-end}.container .photogallery .item img{max-height:calc(100vw - 15px - 15px);width:unset;height:unset;max-width:100%;object-fit:unset;transition:none}@media (min-width: 576px){.container .photogallery .item img{max-height:calc(540px - 15px - 15px)}}@media (min-width: 768px){.container .photogallery .item img{max-height:calc(720px - 15px - 15px)}}@media (min-width: 992px){.container .photogallery .item img{max-height:calc(960px - 15px - 15px)}}@media (min-width: 1200px){.container .photogallery .item img{max-height:calc(1140px - 15px - 15px)}}.container .photogallery .carousel-inner-wrapper:before{content:'';display:block;width:1px;height:0;padding-bottom:33.3333%;margin-left:-1px;float:left;background:transparent}.photogallery:before{float:none;display:inline;margin-left:auto;width:1px}.photogallery .carousel-inner-wrapper{vertical-align:middle;width:100%;display:inline-flex;align-items:center}.photogallery[data-gallery-type="default"]:not(.normalized) .carousel-control-prev,.photogallery[data-gallery-type="default"]:not(.normalized) .carousel-control-next{opacity:0}.photogallery[data-gallery-type="default"] .carousel-inner{transition:background .2s}.photogallery[data-gallery-type="default"]:not(.normalized) .carousel-inner{background:none}.photogallery[data-gallery-type="default"][data-has-height="true"] .carousel-item .item picture img{width:100%;height:100%;object-fit:contain}.photogallery[data-gallery-type="default"][data-has-height="true"] .carousel-item .item picture img.object-fit-cover{min-width:100%;min-height:100%;object-fit:cover}.ysi-slider[data-gallery-type="slider"] .carousel-indicators.gallery-dots{position:absolute;top:auto;bottom:10px;align-self:flex-end;z-index:3}.ysi-slider[data-gallery-type="slider"] .carousel-indicators.gallery-dots li{padding:0}.ysi-slider[data-gallery-type="slider"] .carousel-indicators.gallery-dots li::before,.ysi-slider[data-gallery-type="slider"] .carousel-indicators.gallery-dots li::after{display:none}.ysi-slider[data-gallery-type="slider"] .carousel-indicators.gallery-dots li button{display:block;width:100%;height:100%;padding:0;background:transparent;border:0;cursor:pointer}.ysi-slider[data-gallery-type="slider"] .carousel-item img{object-position:center center}.ysi-slider[data-gallery-type="slider"] .gallery-prev,.ysi-slider[data-gallery-type="slider"] .gallery-next{padding:30px}@media (max-width: 767.98px){.ysi-slider[data-gallery-type="slider"] .gallery-prev,.ysi-slider[data-gallery-type="slider"] .gallery-next{padding:5px}}.ysi-slider[data-gallery-type="slider"] .carousel-controls{z-index:4}yardi-widget-gallery:not([parallax="true"]),yardi-widget-gallery .ysi-slider.ysi-slider-se[data-gallery-type="slider"]{min-height:96px}.ysi-slider.ysi-slider-se.position-absolute[data-gallery-type="slider"]{overflow:hidden}</style> | |
| 394 | + | |
| 395 | +<style>#homepagegallery{height:400px;}@media (min-width: 768px){#homepagegallery{height:500px;}}@media (min-width: 992px){#homepagegallery{height:600px;}}@media (min-width: 1200px){#homepagegallery{height:83vh;}}</style> <section aria-label="Image carousel homepagegallery" id="homepagegallery" class="ysi-slider carousel slide carousel-fade w-100 d-flex justify-content-center picture-overlay overlay-30 z-index-1" data-gallery-type="slider" data-ride="carousel" data-interval="false"> | |
| 396 | + <div class="carousel-inner position-absolute h-100 w-100 left-0" aria-live="polite" lang=""> | |
| 397 | + <div class="ysi-picture-widget ysi-picture-wrapper carousel-item active h-100" id="homepagegallery-slide-1" role="tabpanel" lang=""> | |
| 398 | + <picture id="homepagegallery-0"> | |
| 399 | +<source media="(min-width: 2560px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6179,h_3626,c_crop/q_auto,f_auto,c_lfill,w_3200,ar_2.14190093708166,g_auto/s3/2/144684/dji_0349(1).jpg" width="3200" height="1494"> | |
| 400 | +<source media="(min-width: 1920px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6179,h_3626,c_crop/q_auto,f_auto,c_lfill,w_2560,ar_2.14190093708166,g_auto/s3/2/144684/dji_0349(1).jpg" width="2560" height="1195"> | |
| 401 | +<source media="(min-width: 1440px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6179,h_3626,c_crop/q_auto,f_auto,c_lfill,w_1920,ar_2.14190093708166,g_auto/s3/2/144684/dji_0349(1).jpg" width="1920" height="896"> | |
| 402 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6179,h_3626,c_crop/q_auto,f_auto,c_lfill,w_1440,ar_2.14190093708166,g_auto/s3/2/144684/dji_0349(1).jpg" width="1440" height="672"> | |
| 403 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6179,h_3626,c_crop/q_auto,f_auto,c_fill,w_1200,h_600,g_auto,dpr_2/s3/2/144684/dji_0349(1).jpg 2x" width="1200" height="600"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6179,h_3626,c_crop/q_auto,f_auto,c_lfill,w_1200,h_600,g_auto/s3/2/144684/dji_0349(1).jpg" width="1200" height="600"> | |
| 404 | +<source media="(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6179,h_3626,c_crop/q_auto,f_auto,c_fill,w_992,h_500,g_auto,dpr_2/s3/2/144684/dji_0349(1).jpg 2x" width="992" height="500"><source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6179,h_3626,c_crop/q_auto,f_auto,c_lfill,w_992,h_500,g_auto/s3/2/144684/dji_0349(1).jpg" width="992" height="500"> | |
| 405 | +<source media="(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6179,h_3626,c_crop/q_auto,f_auto,c_fill,w_768,h_400,g_auto,dpr_2/s3/2/144684/dji_0349(1).jpg 2x" width="768" height="400"><source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6179,h_3626,c_crop/q_auto,f_auto,c_lfill,w_768,h_400,g_auto/s3/2/144684/dji_0349(1).jpg" width="768" height="400"> | |
| 406 | +<source media="(min-width: 420px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 420px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6179,h_3626,c_crop/q_auto,f_auto,c_fill,w_576,h_400,g_auto,dpr_2/s3/2/144684/dji_0349(1).jpg 2x" width="576" height="400"><source media="(min-width: 420px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6179,h_3626,c_crop/q_auto,f_auto,c_lfill,w_576,h_400,g_auto/s3/2/144684/dji_0349(1).jpg" width="576" height="400"> | |
| 407 | +<source srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6179,h_3626,c_crop/q_auto,f_auto,c_lfill,w_420,h_400,g_auto/s3/2/144684/dji_0349(1).jpg" width="420" height="400"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6179,h_3626,c_crop/q_auto,f_auto,c_lfill,w_420,ar_1.05,g_auto/s3/2/144684/dji_0349(1).jpg" class="d-block w-100 h-100 object-fit-cover img-fluid" alt="A cityscape with a mix of modern and older buildings, a construction crane, and a clear sky." fetchpriority="high"> | |
| 408 | +</picture> | |
| 409 | + | |
| 410 | + | |
| 411 | + | |
| 412 | + </div> | |
| 413 | + | |
| 414 | + | |
| 415 | + </div> | |
| 416 | + | |
| 417 | + | |
| 418 | + </section> | |
| 419 | + | |
| 420 | + <script>ysi.registerCallback(function(){const e=document.querySelectorAll('.carousel[data-gallery-type="slider"]');for(let l=0,r=e.length;l<r;l++)new ysiCarousel(e[l],{swipe:!1,normalize:!1,emulateInterval:!0})});</script> | |
| 421 | + | |
| 422 | +</div><div class="position-absolute mb-xl-8 my-5 px-lg-6 pl-4 pt-2 text-white col-10 offset-1 d-flex justify-content-end align-items-start flex-column text-left col-lg-10 z-index-1 position-lg-absolute left-0 right-0 bottom-0 border-left border-3 border-secondary" lang=""><div class="display-1 font-heading mb-2 mb-md-0" lang=""><span style="font-family: "Times New Roman";" lang="">Bienvenue à Aalto</span></div> | |
| 423 | +<p style="font-size:1rem; font-weight:300; color:#ffffff; margin-bottom:3rem;" lang="">Aalto et Aalto II, deux immeubles locatifs sur les rives de la rivière des Outaouais.</p> | |
| 424 | + </div></div></div></div></header> | |
| 425 | + | |
| 426 | + | |
| 427 | + | |
| 428 | + | |
| 429 | +<main id="main-content"><div class="contain container-fluid p-0" lang=""><div class="row no-gutters" lang=""><div class="justify-content-start align-items-stretch flex-column d-flex text-left p-0 col-12 col-lg-6 order-2 order-lg-1" lang=""> <div class="ysi-picture-widget ysi-picture-wrapper w-100 h-100 w-100 h-100 w-100 h-100" lang=""> | |
| 430 | + <picture> | |
| 431 | +<source media="(min-width: 4500px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_3106,h_3106,c_crop/q_auto,f_auto,c_fill,w_1600,ar_0.942,g_auto/s3/2/144684/zibi_aaltosuites-int.jpg"> | |
| 432 | +<source media="(min-width: 3840px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_3106,h_3106,c_crop/q_auto,f_auto,c_fill,w_2250,ar_0.942,g_auto/s3/2/144684/zibi_aaltosuites-int.jpg"> | |
| 433 | +<source media="(min-width: 3200px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_3106,h_3106,c_crop/q_auto,f_auto,c_fill,w_1920,ar_0.942,g_auto/s3/2/144684/zibi_aaltosuites-int.jpg"> | |
| 434 | +<source media="(min-width: 2560px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_3106,h_3106,c_crop/q_auto,f_auto,c_fill,w_1600,ar_0.942,g_auto/s3/2/144684/zibi_aaltosuites-int.jpg"> | |
| 435 | +<source media="(min-width: 1920px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_3106,h_3106,c_crop/q_auto,f_auto,c_fill,w_1280,ar_0.942,g_auto/s3/2/144684/zibi_aaltosuites-int.jpg"> | |
| 436 | +<source media="(min-width: 1440px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_3106,h_3106,c_crop/q_auto,f_auto,c_fill,w_960,ar_0.942,g_auto/s3/2/144684/zibi_aaltosuites-int.jpg"> | |
| 437 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_3106,h_3106,c_crop/q_auto,f_auto,c_fill,w_720,ar_0.942,g_auto/s3/2/144684/zibi_aaltosuites-int.jpg"> | |
| 438 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_3106,h_3106,c_crop/q_auto,f_auto,c_fill,w_600,ar_0.942,g_auto/s3/2/144684/zibi_aaltosuites-int.jpg"> | |
| 439 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_3106,h_3106,c_crop/q_auto,f_auto,c_fill,w_992,ar_0.942,g_auto/s3/2/144684/zibi_aaltosuites-int.jpg"> | |
| 440 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_3106,h_3106,c_crop/q_auto,f_auto,c_fill,w_768,ar_0.942,g_auto/s3/2/144684/zibi_aaltosuites-int.jpg"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_3106,h_3106,c_crop/q_auto,f_auto,c_fill,w_576,ar_0.942,g_auto/s3/2/144684/zibi_aaltosuites-int.jpg" class="w-100 h-100 img-fluid" alt="A modern multi-story building with a curved facade and balconies is situated on a street corner." width="2926" height="3106"> | |
| 441 | +</picture> | |
| 442 | + | |
| 443 | + | |
| 444 | + | |
| 445 | + </div> | |
| 446 | + | |
| 447 | +</div><div class="py-lg-7 pl-lg-6 pr-lg-7 py-5 px-4 se-custom-bgcolor col-12 offset-0 d-flex justify-content-center align-items-center flex-column text-center col-lg-6 align-items-lg-start text-lg-left order-1 order-lg-2" style="background-color:rgba(249,247,245,1) !important" lang=""> <div style="display:flex; align-items:center; gap:1rem; margin-bottom:2rem;" lang=""> | |
| 448 | + <div style="width:48px; height:1.5px; background:#528aa1;" lang=""></div> | |
| 449 | + <span style="font-size:0.9rem; font-weight:500; letter-spacing:0.22em; text-transform:uppercase; color:#528aa1;" lang="">VIVRE À AALTO ET AALTO II</span> | |
| 450 | + </div> | |
| 451 | + <div class="display-3 h1" lang=""><span style="font-family: "Times New Roman";" lang="">Trouvez votre suite</span></div> | |
| 452 | + | |
| 453 | + | |
| 454 | + <p style="font-size:1rem; font-weight:300; line-height:1.85; color:#424242; max-width:700px; margin-bottom:3rem;" lang="">Bienvenue à Aalto et Aalto II — les premiers immeubles résidentiels de Zibi et de véritables emblèmes sur les rives de la rivière des Outaouais. Que vous choisissiez Aalto ou Aalto II, vous profiterez du même mode de vie au bord de l’eau et d’un accès privilégié aux meilleurs attraits de la région de la capitale nationale.<br lang=""><br lang="">Les deux édifices offrent des suites lumineuses, allant du studio à l'appartement deux chambres plus bureau, chacune dotée d'un balcon privé et d'une vue imprenable sur la rivière. À l'intérieur, chaque détail a été pensé avec soin : comptoirs en quartz, électroménagers en acier inoxydable certifiés Energy Star, buanderie privée et finitions haut de gamme.</p><a href="https://www.aaltosuites.ca/floorplans" style="display:inline-block; background:#5f8b9e; color:#fff; border-radius: 2px; padding:1rem 2.2rem; font-size:0.72rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; text-decoration:none; font-family:'Jost',sans-serif;" lang="">DÉCOUVRIR LES PLANS D’ÉTAGE</a></div></div></div><div class="cover center-center no-repeat se-custom-bgcolor container-fluid p-0" style="background-color:rgba(249,247,245,1) !important" lang=""><div class="row no-gutters" lang=""><div class="py-lg-7 pl-lg-6 pr-lg-7 py-5 px-4 col-12 offset-0 d-flex text-center col-lg-6 text-lg-left justify-content-center align-items-center align-items-lg-start flex-column" lang=""> <div style="display:flex; align-items:center; gap:1rem; margin-bottom:2rem;" lang=""> | |
| 455 | + <div style="width:48px; height:1.5px; background:#528aa1;" lang=""></div> | |
| 456 | + <span style="font-size:0.9rem; font-weight:500; letter-spacing:0.22em; text-transform:uppercase; color:#528aa1;" lang="">VIVRE À ZIBI</span> | |
| 457 | + </div> <div class="display-3 h1" lang=""><font face="Times New Roman" lang="">Au cœur de tout</font></div> <p style="font-size:1rem; font-weight:300; line-height:1.85; color:#424242; max-width:700px; margin-bottom:3rem;" lang="">Aalto et Aalto II sont situés sur la rive nord de la rivière des Outaouais et offrent des vues spectaculaires sur la Cour suprême du Canada, le Parlement et le Musée des beaux-arts du Canada. Les immeubles se trouvent à quelques pas des centres-villes d’Ottawa et de Gatineau, tout près du parc riverain Tesasini. Grâce à un accès facile au transport en commun et aux sentiers polyvalents, un mode de vie actif et connecté s’impose naturellement.</p><a href="https://www.aaltosuites.ca/neighbourhood" style="display:inline-block; background:#5f8b9e; color:#fff; border-radius: 2px; padding:1rem 2.2rem; font-size:0.72rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; text-decoration:none; font-family:'Jost',sans-serif;" lang="">En savoir plus</a></div><div class="col-12 offset-0 col-lg-6 justify-content-center align-items-center" lang=""> <div class="ysi-picture-widget ysi-picture-wrapper h-100 w-100 " lang=""> | |
| 458 | + <picture> | |
| 459 | +<source media="(min-width: 1440px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1800,h_1800,c_crop/q_auto,f_auto,c_limit,w_1800/s3/2/144684/festibiere2024_orkestra-mxlevesque_webres-52.png"> | |
| 460 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1800,h_1800,c_crop/q_auto,f_auto,c_limit,w_1440/s3/2/144684/festibiere2024_orkestra-mxlevesque_webres-52.png"> | |
| 461 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1800,h_1800,c_crop/q_auto,f_auto,c_limit,w_1200/s3/2/144684/festibiere2024_orkestra-mxlevesque_webres-52.png"> | |
| 462 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1800,h_1800,c_crop/q_auto,f_auto,c_limit,w_992/s3/2/144684/festibiere2024_orkestra-mxlevesque_webres-52.png"> | |
| 463 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1800,h_1800,c_crop/q_auto,f_auto,c_limit,w_768/s3/2/144684/festibiere2024_orkestra-mxlevesque_webres-52.png"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1800,h_1800,c_crop/q_auto,f_auto,c_limit,w_576/s3/2/144684/festibiere2024_orkestra-mxlevesque_webres-52.png" class="0 object-fit-cover h-100 w-100 img-fluid" alt="A modern building is situated by a body of water." width="1800" height="1800" loading="lazy"> | |
| 464 | +</picture> | |
| 465 | + | |
| 466 | + | |
| 467 | + | |
| 468 | + </div> | |
| 469 | + | |
| 470 | +</div></div></div><div class="text-white se-custom-bgcolor container-fluid p-0" style="background-color:rgba(249,247,245,1) !important" lang=""><div class="row no-gutters" lang=""><div class="order-lg-1 order-2 cover col-12 offset-0 d-flex justify-content-start align-items-stretch flex-column text-left col-lg-6" lang=""> <div class="ysi-picture-widget ysi-picture-wrapper " lang=""> | |
| 471 | + <picture> | |
| 472 | +<source media="(min-width: 1920px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_2560/s3/2/144684/zibi_aaltosuites-partyroom-2(1).jpg"> | |
| 473 | +<source media="(min-width: 1440px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_1920/s3/2/144684/zibi_aaltosuites-partyroom-2(1).jpg"> | |
| 474 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_1440/s3/2/144684/zibi_aaltosuites-partyroom-2(1).jpg"> | |
| 475 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_1200/s3/2/144684/zibi_aaltosuites-partyroom-2(1).jpg"> | |
| 476 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_992/s3/2/144684/zibi_aaltosuites-partyroom-2(1).jpg"> | |
| 477 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_768/s3/2/144684/zibi_aaltosuites-partyroom-2(1).jpg"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_576/s3/2/144684/zibi_aaltosuites-partyroom-2(1).jpg" class="0 img-fluid" alt="A modern living room with a black and white color scheme." width="2560" height="2560" loading="lazy"> | |
| 478 | +</picture> | |
| 479 | + | |
| 480 | + | |
| 481 | + | |
| 482 | + </div> | |
| 483 | + | |
| 484 | +</div><div class="order-lg-2 order-1 py-lg-6 pl-lg-6 pr-lg-7 py-5 px-4 col-12 offset-0 d-flex text-center col-lg-6 text-lg-left justify-content-center align-items-center align-items-lg-start flex-column" lang=""> <div style="display:flex; align-items:center; gap:1rem; margin-bottom:2rem;" lang=""> | |
| 485 | + <div style="width:48px; height:1.5px; background:#528aa1;" lang=""></div> | |
| 486 | + <span style="font-size:0.9rem; font-weight:500; letter-spacing:0.22em; text-transform:uppercase; color:#528aa1;" lang="">Commodité</span> | |
| 487 | + </div> <div class="display-3 h1" lang=""><span style="font-family: "Times New Roman";" lang=""><font color="#000000" lang="">Un quotidien rehaussé</font></span></div> <p style="font-size:1rem; font-weight:300; line-height:1.85; color:#424242; max-width:700px; margin-bottom:3rem;" lang="">Des commodités modernes conçues pour enrichir votre quotidien. Des espaces communs soigneusement aménagés aux installations de remise en forme axées sur le bien-être, Aalto et Aalto II offrent un équilibre harmonieux entre confort, commodité et connexion.</p><a href="https://www.aaltosuites.ca/amenities" style="display:inline-block; background:#5f8b9e; color:#fff; border-radius: 2px; padding:1rem 2.2rem; font-size:0.72rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; text-decoration:none; font-family:'Jost',sans-serif;" lang="">En savoir plus</a></div></div></div><div class="center-center no-repeat text-dark bg-white container-fluid p-0" lang=""><div class="row no-gutters" lang=""><div class="community-connect order-1 py-lg-5 pl-lg-6 pb-lg-0 pr-lg-6 pt-lg-0 py-5 px-4 se-custom-bgcolor col-12 offset-0 d-flex justify-content-center align-items-center flex-column text-center col-lg-6 align-items-lg-start text-lg-left order-3 order-lg-1" style="background-color:rgba(249,247,245,1) !important" lang=""> <div style="display:flex; align-items:center; gap:1rem; margin-bottom:2rem;" lang=""> | |
| 488 | + <div style="width:48px; height:1.5px; background:#528aa1;" lang=""></div> | |
| 489 | + <span style="font-size:0.9rem; font-weight:500; letter-spacing:0.22em; text-transform:uppercase; color:#528aa1;" lang="">ZIBI</span> | |
| 490 | + </div> <div class="display-3 h1" lang=""><span style="font-family: "Times New Roman";" lang="">Vivre dans une communauté connectée</span></div> <p style="font-size:1rem; font-weight:300; line-height:1.85; color:#424242; margin-top:2rem; margin-bottom:0rem;" lang="">Aalto et Aalto II font fièrement partie de Zibi, une communauté primée et planifiée d’envergure située à la fois à Ottawa et à Gatineau. Zibi est l’un des projets urbains les plus ambitieux du Canada, transformant un ancien site industriel en un quartier dynamique et durable où se côtoient harmonieusement espaces résidentiels, commerciaux et verts dans l’un des environnements les plus inspirants de la région de la capitale nationale.<br lang="">En tant que résident de la communauté Zibi, vous profiterez d’un calendrier d’activités toujours animé : festivals extérieurs, rassemblements culturels, événements d’art public et animations de quartier qui attirent des milliers de visiteurs au bord de l’eau tout au long de l’année. Que vous souhaitiez rencontrer vos voisins, explorer les sentiers riverains ou simplement profiter de l’énergie de l’une des communautés les plus vibrantes du Canada, il y a toujours quelque chose à découvrir à Zibi.</p> | |
| 491 | +<br lang=""><br lang=""> | |
| 492 | + | |
| 493 | + | |
| 494 | + | |
| 495 | + <a href="https://zibi.ca/fr/au-programme/" style="display:inline-block; background:#5f8b9e; color:#fff; border-radius: 2px; padding:1rem 2.2rem; font-size:0.72rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; text-decoration:none; font-family:'Jost',sans-serif;" lang="">En savoir plus</a></div><div class="contain center-top no-repeat m-0 p-0 col-12 offset-0 d-flex justify-content-start align-items-center flex-column text-center col-lg-6 offset-lg-0 d-lg-flex order-2" lang=""> <div class="ysi-picture-widget ysi-picture-wrapper h-100 w-100 " lang=""> | |
| 496 | + <picture> | |
| 497 | +<source media="(min-width: 1920px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_2560/s3/2/144684/zibirender2018_7_more-sky.jpg"> | |
| 498 | +<source media="(min-width: 1440px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_1920/s3/2/144684/zibirender2018_7_more-sky.jpg"> | |
| 499 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_1440/s3/2/144684/zibirender2018_7_more-sky.jpg"> | |
| 500 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_1200/s3/2/144684/zibirender2018_7_more-sky.jpg"> | |
| 501 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_992/s3/2/144684/zibirender2018_7_more-sky.jpg"> | |
| 502 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_768/s3/2/144684/zibirender2018_7_more-sky.jpg"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_576/s3/2/144684/zibirender2018_7_more-sky.jpg" class="0 object-fit-cover h-100 w-100 img-fluid" alt="A cityscape with a river running through it." width="2560" height="2560" loading="lazy"> | |
| 503 | +</picture> | |
| 504 | + | |
| 505 | + | |
| 506 | + | |
| 507 | + </div> | |
| 508 | + | |
| 509 | +</div></div></div><div class="px-xl-7 pt-lg-7 px-md-5 py-5 px-3 se-custom-bgcolor container-fluid p-0" style="background-color:rgba(16,30,62,1) !important" lang=""><div class="row no-gutters" lang=""><div class="mb-lg-0 mb-4 justify-content-center align-items-center align-items-lg-start flex-column d-flex text-center text-lg-left col-12 col-lg-7" lang=""> | |
| 510 | + <div class="display-3 h1" lang=""><span style="font-family: "Times New Roman";" lang=""><font color="#ffffff" lang="">Découvrez la vie locative<br lang="">au bord de l’eau</font></span></div> | |
| 511 | + </div><div class="col-12 offset-0 d-flex justify-content-start align-items-center flex-column text-left col-lg-5 justify-content-lg-end align-items-lg-end flex-lg-row text-lg-center" lang=""><a href="https://www.aaltosuites.ca/photogallery" style="display:inline-block; background:#5f8b9e; color:#fff; border-radius: 2px; padding:1rem 2.2rem; font-size:0.72rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; text-decoration:none; font-family:'Jost',sans-serif;" lang="">En savoir plus</a></div></div></div><div class="py-md-0 px-md-0 py-2 px-2" lang=""><div class="container-fluid" lang=""><div class="row" lang=""><div class="justify-content-start align-items-stretch flex-column d-flex text-left px-0 pr-md-3 col-12 col-md-5 col-lg-5" lang=""><div class="p-0" lang=""><div class="container-fluid" lang=""><div class="row" lang=""><div class="justify-content-start align-items-stretch flex-column d-flex text-left pr-1 pr-md-2 pl-0 col-6 col-lg-6" lang=""> <div class="ysi-picture-widget ysi-picture-wrapper h-100 w-100 h-100 w-100 h-100 w-100" lang=""> | |
| 512 | + <picture> | |
| 513 | +<source media="(min-width: 2560px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_10000,h_8891,c_crop/q_auto,f_auto,c_fill,w_3200,ar_0.877,g_auto/s3/2/144684/aalto_aalto%20ii_exterior(1).jpg"> | |
| 514 | +<source media="(min-width: 1920px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_10000,h_8891,c_crop/q_auto,f_auto,c_fill,w_2560,ar_0.877,g_auto/s3/2/144684/aalto_aalto%20ii_exterior(1).jpg"> | |
| 515 | +<source media="(min-width: 1440px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_10000,h_8891,c_crop/q_auto,f_auto,c_fill,w_1920,ar_0.877,g_auto/s3/2/144684/aalto_aalto%20ii_exterior(1).jpg"> | |
| 516 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_10000,h_8891,c_crop/q_auto,f_auto,c_fill,w_1440,ar_0.877,g_auto/s3/2/144684/aalto_aalto%20ii_exterior(1).jpg"> | |
| 517 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_10000,h_8891,c_crop/q_auto,f_auto,c_fill,w_1200,ar_0.877,g_auto/s3/2/144684/aalto_aalto%20ii_exterior(1).jpg"> | |
| 518 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_10000,h_8891,c_crop/q_auto,f_auto,c_fill,w_992,ar_0.877,g_auto/s3/2/144684/aalto_aalto%20ii_exterior(1).jpg"> | |
| 519 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_10000,h_8891,c_crop/q_auto,f_auto,c_fill,w_768,ar_0.877,g_auto/s3/2/144684/aalto_aalto%20ii_exterior(1).jpg"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_10000,h_8891,c_crop/q_auto,f_auto,c_fill,w_576,ar_0.877,g_auto/s3/2/144684/aalto_aalto%20ii_exterior(1).jpg" class="w-100 h-100 object-fit-cover img-fluid" alt="A modern multi-story building with a curved facade and balconies is situated on a street corner." width="7797" height="8891"> | |
| 520 | +</picture> | |
| 521 | + | |
| 522 | + | |
| 523 | + | |
| 524 | + </div> | |
| 525 | + | |
| 526 | +</div><div class="justify-content-start align-items-stretch flex-column d-flex text-left pl-1 pl-md-2 pr-0 col-6 col-lg-6" lang=""> <div class="ysi-picture-widget ysi-picture-wrapper h-100 w-100 h-100 w-100 h-100 w-100" lang=""> | |
| 527 | + <picture> | |
| 528 | +<source media="(min-width: 2560px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6000,h_4000,c_crop/q_auto,f_auto,c_fill,w_3200,ar_0.877,g_auto/s3/2/144684/aalto%20ii_gym_1.jpg"> | |
| 529 | +<source media="(min-width: 1920px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6000,h_4000,c_crop/q_auto,f_auto,c_fill,w_2560,ar_0.877,g_auto/s3/2/144684/aalto%20ii_gym_1.jpg"> | |
| 530 | +<source media="(min-width: 1440px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6000,h_4000,c_crop/q_auto,f_auto,c_fill,w_1920,ar_0.877,g_auto/s3/2/144684/aalto%20ii_gym_1.jpg"> | |
| 531 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6000,h_4000,c_crop/q_auto,f_auto,c_fill,w_1440,ar_0.877,g_auto/s3/2/144684/aalto%20ii_gym_1.jpg"> | |
| 532 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6000,h_4000,c_crop/q_auto,f_auto,c_fill,w_1200,ar_0.877,g_auto/s3/2/144684/aalto%20ii_gym_1.jpg"> | |
| 533 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6000,h_4000,c_crop/q_auto,f_auto,c_fill,w_992,ar_0.877,g_auto/s3/2/144684/aalto%20ii_gym_1.jpg"> | |
| 534 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6000,h_4000,c_crop/q_auto,f_auto,c_fill,w_768,ar_0.877,g_auto/s3/2/144684/aalto%20ii_gym_1.jpg"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6000,h_4000,c_crop/q_auto,f_auto,c_fill,w_576,ar_0.877,g_auto/s3/2/144684/aalto%20ii_gym_1.jpg" class="w-100 h-100 object-fit-cover img-fluid" alt="A spacious gym with a variety of exercise equipment and a view of the city skyline." width="3508" height="4000"> | |
| 535 | +</picture> | |
| 536 | + | |
| 537 | + | |
| 538 | + | |
| 539 | + </div> | |
| 540 | + | |
| 541 | +</div></div></div></div><div class="p-0" lang=""><div class="container-fluid" lang=""><div class="row" lang=""><div class="justify-content-start align-items-stretch flex-row d-flex text-left pt-2 pt-md-3 px-0 col-12 col-lg-12" lang=""> <div class="ysi-picture-widget ysi-picture-wrapper h-100 w-100 h-100 w-100 h-100 w-100" lang=""> | |
| 542 | + <picture> | |
| 543 | +<source media="(min-width: 2560px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_5000,h_2813,c_crop/q_auto,f_auto,c_fill,w_3200,ar_1.334,g_auto/s3/2/144684/int_suite_09_vf.jpg"> | |
| 544 | +<source media="(min-width: 1920px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_5000,h_2813,c_crop/q_auto,f_auto,c_fill,w_2560,ar_1.334,g_auto/s3/2/144684/int_suite_09_vf.jpg"> | |
| 545 | +<source media="(min-width: 1440px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_5000,h_2813,c_crop/q_auto,f_auto,c_fill,w_1920,ar_1.334,g_auto/s3/2/144684/int_suite_09_vf.jpg"> | |
| 546 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_5000,h_2813,c_crop/q_auto,f_auto,c_fill,w_1440,ar_1.334,g_auto/s3/2/144684/int_suite_09_vf.jpg"> | |
| 547 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_5000,h_2813,c_crop/q_auto,f_auto,c_fill,w_1200,ar_1.334,g_auto/s3/2/144684/int_suite_09_vf.jpg"> | |
| 548 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_5000,h_2813,c_crop/q_auto,f_auto,c_fill,w_992,ar_1.334,g_auto/s3/2/144684/int_suite_09_vf.jpg"> | |
| 549 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_5000,h_2813,c_crop/q_auto,f_auto,c_fill,w_768,ar_1.334,g_auto/s3/2/144684/int_suite_09_vf.jpg"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_5000,h_2813,c_crop/q_auto,f_auto,c_fill,w_576,ar_1.334,g_auto/s3/2/144684/int_suite_09_vf.jpg" class="w-100 h-100 object-fit-cover img-fluid" alt="A modern kitchen with a dining area and a view of the city." width="3753" height="2813"> | |
| 550 | +</picture> | |
| 551 | + | |
| 552 | + | |
| 553 | + | |
| 554 | + </div> | |
| 555 | + | |
| 556 | +</div></div></div></div></div><div class="justify-content-start align-items-stretch flex-column d-flex text-left px-0 pr-md-3 pt-2 pt-md-0 col-12 col-md-5 col-lg-5" lang=""><div class="p-0" lang=""><div class="container-fluid" lang=""><div class="row" lang=""><div class="justify-content-start align-items-stretch flex-column d-flex text-left pb-2 pb-md-3 px-0 col-12 col-lg-12" lang=""> <div class="ysi-picture-widget ysi-picture-wrapper h-100 w-100 h-100 w-100 h-100 w-100" lang=""> | |
| 557 | + <picture> | |
| 558 | +<source media="(min-width: 1920px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2048,h_1532,c_crop/q_auto,f_auto,c_fill,w_2043,ar_1.334,g_auto/s3/2/144684/zibi2022-kanaalbike.jpg"> | |
| 559 | +<source media="(min-width: 1440px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2048,h_1532,c_crop/q_auto,f_auto,c_fill,w_1920,ar_1.334,g_auto/s3/2/144684/zibi2022-kanaalbike.jpg"> | |
| 560 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2048,h_1532,c_crop/q_auto,f_auto,c_fill,w_1440,ar_1.334,g_auto/s3/2/144684/zibi2022-kanaalbike.jpg"> | |
| 561 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2048,h_1532,c_crop/q_auto,f_auto,c_fill,w_1200,ar_1.334,g_auto/s3/2/144684/zibi2022-kanaalbike.jpg"> | |
| 562 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2048,h_1532,c_crop/q_auto,f_auto,c_fill,w_992,ar_1.334,g_auto/s3/2/144684/zibi2022-kanaalbike.jpg"> | |
| 563 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2048,h_1532,c_crop/q_auto,f_auto,c_fill,w_768,ar_1.334,g_auto/s3/2/144684/zibi2022-kanaalbike.jpg"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2048,h_1532,c_crop/q_auto,f_auto,c_fill,w_576,ar_1.334,g_auto/s3/2/144684/zibi2022-kanaalbike.jpg" class="w-100 h-100 object-fit-cover img-fluid" alt="Two people riding bicycles on a path near a body of water with buildings in the background." width="2044" height="1532"> | |
| 564 | +</picture> | |
| 565 | + | |
| 566 | + | |
| 567 | + | |
| 568 | + </div> | |
| 569 | + | |
| 570 | +</div></div></div></div><div class="p-0" lang=""><div class="container-fluid" lang=""><div class="row" lang=""><div class="justify-content-start align-items-stretch flex-column d-flex text-left pr-1 pr-md-2 pl-0 col-6 col-lg-6" lang=""> <div class="ysi-picture-widget ysi-picture-wrapper h-100 w-100 h-100 w-100 h-100 w-100" lang=""> | |
| 571 | + <picture> | |
| 572 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1238,h_1234,c_crop/q_auto,f_auto,c_fill,w_1082,ar_0.877,g_auto/s3/2/144684/rogers%20interzip%20(1).png"> | |
| 573 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1238,h_1234,c_crop/q_auto,f_auto,c_fill,w_992,ar_0.877,g_auto/s3/2/144684/rogers%20interzip%20(1).png"> | |
| 574 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1238,h_1234,c_crop/q_auto,f_auto,c_fill,w_768,ar_0.877,g_auto/s3/2/144684/rogers%20interzip%20(1).png"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1238,h_1234,c_crop/q_auto,f_auto,c_fill,w_576,ar_0.877,g_auto/s3/2/144684/rogers%20interzip%20(1).png" class="w-100 h-100 object-fit-cover img-fluid" alt="Two people are swinging on a wire in front of a large castle." width="1082" height="1234"> | |
| 575 | +</picture> | |
| 576 | + | |
| 577 | + | |
| 578 | + | |
| 579 | + </div> | |
| 580 | + | |
| 581 | +</div><div class="justify-content-start align-items-stretch flex-column d-flex text-left pl-1 pl-md-2 pr-0 col-6 col-lg-6" lang=""> <div class="ysi-picture-widget ysi-picture-wrapper h-100 w-100 h-100 w-100 h-100 w-100" lang=""> | |
| 582 | + <picture> | |
| 583 | +<source media="(min-width: 2560px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_3333,h_4166,c_crop/q_auto,f_auto,c_fill,w_3200,ar_0.877,g_auto/s3/2/144684/dscf0140%20curtis%20perry.jpg"> | |
| 584 | +<source media="(min-width: 1920px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_3333,h_4166,c_crop/q_auto,f_auto,c_fill,w_2560,ar_0.877,g_auto/s3/2/144684/dscf0140%20curtis%20perry.jpg"> | |
| 585 | +<source media="(min-width: 1440px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_3333,h_4166,c_crop/q_auto,f_auto,c_fill,w_1920,ar_0.877,g_auto/s3/2/144684/dscf0140%20curtis%20perry.jpg"> | |
| 586 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_3333,h_4166,c_crop/q_auto,f_auto,c_fill,w_1440,ar_0.877,g_auto/s3/2/144684/dscf0140%20curtis%20perry.jpg"> | |
| 587 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_3333,h_4166,c_crop/q_auto,f_auto,c_fill,w_1200,ar_0.877,g_auto/s3/2/144684/dscf0140%20curtis%20perry.jpg"> | |
| 588 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_3333,h_4166,c_crop/q_auto,f_auto,c_fill,w_992,ar_0.877,g_auto/s3/2/144684/dscf0140%20curtis%20perry.jpg"> | |
| 589 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_3333,h_4166,c_crop/q_auto,f_auto,c_fill,w_768,ar_0.877,g_auto/s3/2/144684/dscf0140%20curtis%20perry.jpg"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_3333,h_4166,c_crop/q_auto,f_auto,c_fill,w_576,ar_0.877,g_auto/s3/2/144684/dscf0140%20curtis%20perry.jpg" class="w-100 h-100 object-fit-cover img-fluid" alt="A group of people are dancing in front of a red brick building." width="3333" height="3800"> | |
| 590 | +</picture> | |
| 591 | + | |
| 592 | + | |
| 593 | + | |
| 594 | + </div> | |
| 595 | + | |
| 596 | +</div></div></div></div></div><div class="justify-content-start align-items-stretch flex-row flex-md-column d-flex text-left pt-2 pt-md-0 px-0 col-12 col-md-2 col-lg-2" lang=""> <div class="ysi-picture-widget ysi-picture-wrapper h-100 w-100 h-100 w-100 h-100 w-100" lang=""> | |
| 597 | + <picture> | |
| 598 | +<source media="(min-width: 2560px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_3200,ar_0.786,g_auto/s3/2/144684/aalto%20suites_lounge%20chairs%20with%20view_1.jpg"> | |
| 599 | +<source media="(min-width: 1920px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_2560,ar_0.786,g_auto/s3/2/144684/aalto%20suites_lounge%20chairs%20with%20view_1.jpg"> | |
| 600 | +<source media="(min-width: 1440px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_1920,ar_0.786,g_auto/s3/2/144684/aalto%20suites_lounge%20chairs%20with%20view_1.jpg"> | |
| 601 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_1440,ar_0.786,g_auto/s3/2/144684/aalto%20suites_lounge%20chairs%20with%20view_1.jpg"> | |
| 602 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_1200,ar_0.786,g_auto/s3/2/144684/aalto%20suites_lounge%20chairs%20with%20view_1.jpg"> | |
| 603 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_992,ar_0.786,g_auto/s3/2/144684/aalto%20suites_lounge%20chairs%20with%20view_1.jpg"> | |
| 604 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_768,ar_0.786,g_auto/s3/2/144684/aalto%20suites_lounge%20chairs%20with%20view_1.jpg"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_576,ar_0.786,g_auto/s3/2/144684/aalto%20suites_lounge%20chairs%20with%20view_1.jpg" class="w-100 h-100 object-fit-cover pr-1 pr-md-0 pb-0 pb-md-3 img-fluid" alt="A living room with a large window, a sofa, a chair, a coffee table, and a television." width="3521" height="4480"> | |
| 605 | +</picture> | |
| 606 | + | |
| 607 | + | |
| 608 | + | |
| 609 | + </div> | |
| 610 | + | |
| 611 | + <div class="ysi-picture-widget ysi-picture-wrapper h-100 w-100 h-100 w-100 h-100 w-100" lang=""> | |
| 612 | + <picture> | |
| 613 | +<source media="(min-width: 2560px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_3200,ar_0.786,g_auto/s3/2/144684/8(3).jpg"> | |
| 614 | +<source media="(min-width: 1920px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_2560,ar_0.786,g_auto/s3/2/144684/8(3).jpg"> | |
| 615 | +<source media="(min-width: 1440px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_1920,ar_0.786,g_auto/s3/2/144684/8(3).jpg"> | |
| 616 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_1440,ar_0.786,g_auto/s3/2/144684/8(3).jpg"> | |
| 617 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_1200,ar_0.786,g_auto/s3/2/144684/8(3).jpg"> | |
| 618 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_992,ar_0.786,g_auto/s3/2/144684/8(3).jpg"> | |
| 619 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_768,ar_0.786,g_auto/s3/2/144684/8(3).jpg"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_576,ar_0.786,g_auto/s3/2/144684/8(3).jpg" class="w-100 h-100 object-fit-cover pl-1 pl-md-0 img-fluid" alt="A yoga studio with mats on the floor and a view of the city outside the windows." width="3521" height="4480"> | |
| 620 | +</picture> | |
| 621 | + | |
| 622 | + | |
| 623 | + | |
| 624 | + </div> | |
| 625 | + | |
| 626 | +</div></div></div></div></main> | |
| 627 | + | |
| 628 | +<script> | |
| 629 | + if (window.location.pathname == '/index') { | |
| 630 | + let stateObj = { | |
| 631 | + foo: "bar", | |
| 632 | + }; | |
| 633 | + | |
| 634 | + history.pushState(stateObj, "", "/"); | |
| 635 | + const canonical = document.querySelector('link[rel="canonical"]'); | |
| 636 | + if (canonical !== null) { | |
| 637 | + canonical.href = window.location.href; | |
| 638 | + } | |
| 639 | + } | |
| 640 | +</script> | |
| 641 | + | |
| 642 | + | |
| 643 | +<footer><div class="px-xl-7 p-lg-6 p-md-5 py-5 px-3 text-light bg-primary" lang=""><div class="container-fluid" lang=""><div class="row" lang=""><div class="text-light justify-content-start align-items-stretch flex-column d-flex text-center text-md-left pb-md-0 pb-3 col-12 col-md-3 col-lg-3 order-3 order-md-2" lang=""> | |
| 644 | + <h2 class="pb-3 h3 mb-0 text-secondary" lang="">Liens</h2> | |
| 645 | + <link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/footerlinks-widget.558563.134322940780000000.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/footerlinks-widget.558563.134322940780000000.css"></noscript> | |
| 646 | + | |
| 647 | + | |
| 648 | + | |
| 649 | + | |
| 650 | + | |
| 651 | +<ul class="ysi-footer-links list-unstyled vertical mb-3 mb-md-0" lang=""> | |
| 652 | + <li class="py-2 py-sm-0" lang=""><a class="color-inherit" href="https://aaltosuites.securecafenet.com/residentservices/aalto/userlogin?dropdownlangid=38" target="_blank" data-selenium-id="SID_footer_ResidentLogin" lang="">Connexion des résidents<span class="sr-only" lang="">S'ouvre dans un nouvel onglet</span></a></li> | |
| 653 | + <li class="py-2 py-sm-0" lang=""><a class="color-inherit" href="https://aaltosuites.securecafe.com/onlineleasing/aalto/guestlogin.aspx?dropdownlangid=38&PropLeadSource_2384767=portal" target="_blank" data-selenium-id="SID_footer_ApplicantLogin" lang="">Connexion du demandeur<span class="sr-only" lang="">S'ouvre dans un nouvel onglet</span></a></li> | |
| 654 | + <li class="py-2 py-sm-0" lang=""> | |
| 655 | + <a class="color-inherit" href="/termsandconditions" target="_blank" data-selenium-id="SID_footer_termsandconditions" lang="">Conditions générales<span class="sr-only" lang="">S'ouvre dans un nouvel onglet</span> </a> | |
| 656 | + </li> | |
| 657 | + <li class="py-2 py-sm-0" lang=""> | |
| 658 | + <a class="color-inherit" href="/privacypolicy" target="_blank" data-selenium-id="SID_footer_privacypolicy" lang="">Politique de confidentialité<span class="sr-only" lang="">S'ouvre dans un nouvel onglet</span> </a> | |
| 659 | + </li> | |
| 660 | + <li class="py-2 py-sm-0" lang=""> | |
| 661 | + <a class="color-inherit" href="/contactus" data-selenium-id="SID_footer_contactus" lang="">Contactez-nous</a> | |
| 662 | + </li> | |
| 663 | + <li class="py-2 py-sm-0" lang=""> | |
| 664 | + <a class="color-inherit" href="/accessibility" target="_blank" data-selenium-id="SID_footer_accessibility" lang="">Déclaration d'accessibilité<span class="sr-only" lang="">S'ouvre dans un nouvel onglet</span> </a> | |
| 665 | + </li> | |
| 666 | +</ul> | |
| 667 | + | |
| 668 | +<script language="javascript"> | |
| 669 | + function translatepage() { | |
| 670 | + var url1 = window.location; | |
| 671 | + var lang1 = (navigator.language || navigator.userLanguage); | |
| 672 | + var e = (document.charset || document.characterSet); | |
| 673 | + var urlf = 'https://translate.google.com/translate?prev=hp&hl=en&js=y&u=' + url1 + '&sl=' + e + '&tl=' + lang1 + '&history_state0='; | |
| 674 | + window.open(urlf); | |
| 675 | + } | |
| 676 | +</script> | |
| 677 | + | |
| 678 | +</div><div class="text-light justify-content-start align-items-stretch flex-column d-flex text-center text-md-left col-12 col-md-3 col-lg-3 order-4 order-md-3" lang=""> | |
| 679 | + <h2 class="pb-md-3 pb-3 h3 mb-0 text-secondary" lang="">Heures d'ouverture du bureau</h2> | |
| 680 | + | |
| 681 | + | |
| 682 | + <div class="ysi-office-hours-widget ysi-office-hours-wrapper" lang=""> | |
| 683 | + <div class="d-inline-flex" lang=""> | |
| 684 | + <div class="ysi-office-hours" data-selenium-id="SID_footer_officeHours" lang=""> | |
| 685 | + <ul class="list-unstyled mb-0" lang=""> | |
| 686 | + <li class=" " lang=""> | |
| 687 | + <span class="office-hours-day" data-selenium-id="OHMondayFriday" lang="">Lundi<span class="sr-only" lang="">à</span>- Vendredi :</span> | |
| 688 | + <span class="office-hours-time" data-selenium-id="OHMondayFridayTime" lang="">9h<span class="sr-only" lang="">à</span>- 18h</span> | |
| 689 | +</li> | |
| 690 | + <li class=" " lang=""> | |
| 691 | + <span class="office-hours-day" data-selenium-id="OHSaturday" lang="">Samedi :</span> | |
| 692 | + <span class="office-hours-time" data-selenium-id="OHSaturdayTime" lang="">10h<span class="sr-only" lang="">à</span>- 17h</span> | |
| 693 | +</li> | |
| 694 | + <li class=" " lang=""> | |
| 695 | + <span class="office-hours-day" data-selenium-id="OHSunday" lang="">Dimanche :</span> | |
| 696 | + <span class="office-hours-time" data-selenium-id="OHSundayTime" lang="">Fermé</span> | |
| 697 | +</li> | |
| 698 | + </ul> | |
| 699 | + </div> | |
| 700 | + </div> | |
| 701 | + </div> | |
| 702 | +</div><div class="text-light justify-content-start align-items-stretch flex-column d-flex text-center text-md-right pb-3 pb-md-0 col-12 col-md-3 col-lg-6 order-1 order-md-4" lang=""> | |
| 703 | + | |
| 704 | + | |
| 705 | + | |
| 706 | + | |
| 707 | +<div class="ysi-address-widget ysi-address-wrapper vertical" lang=""> | |
| 708 | + <div class="d-inline-flex" lang=""> | |
| 709 | + <address class="ysi-address"> | |
| 710 | + <a class="address-link color-inherit d-block" href="https://maps.google.com?q=10 Rue Jos-Montferrand Gatineau, QC J8X 0A6" target="_blank" rel="noreferrer" lang=""> | |
| 711 | + <div itemprop="name" data-selenium-id="address_propname" lang="">Aalto</div> | |
| 712 | + <div itemprop="address" lang=""> | |
| 713 | + <div data-selenium-id="address_street" lang=""> | |
| 714 | + 10 Rue Jos-Montferrand | |
| 715 | + </div> | |
| 716 | + <div lang=""> | |
| 717 | + <span data-selenium-id="address_city" lang="">Gatineau</span>,<span data-selenium-id="address_state" lang="">QC</span><span data-selenium-id="address_zip" lang=""> J8X 0A6</span> | |
| 718 | + </div> | |
| 719 | + </div> | |
| 720 | + <span class="sr-only" lang="">S'ouvre dans un nouvel onglet</span> | |
| 721 | + </a> | |
| 722 | + </address> | |
| 723 | + | |
| 724 | + </div> | |
| 725 | +</div> | |
| 726 | + | |
| 727 | + | |
| 728 | + | |
| 729 | + <div data-selenium-id="address_phone_foot" class="phone-number-address ysi-phone-wrapper my-2 py-1 py-sm-0 mt-2 font-weight-bold " lang=""> | |
| 730 | + <div class="d-inline-flex" lang=""> | |
| 731 | + <a href="tel:+1 819-809-9131" onclick="fireGaNa();" aria-label="Call Aalto at +1 819-809-9131" class="ysi-phone-number click-to-call-foot-href text-decoration-none color-inherit" data-selenium-id="click-to-call-foot" lang=""> | |
| 732 | + <span aria-hidden="true" class="fa-flip-horizontal fas fa-phone nu nu-phones-solid text-secondary" lang=""></span> <span data-selenium-id="click_to_call_foot_span" class="click-to-call-foot ml-2 text-underline" lang="">+1 819-809-9131</span> | |
| 733 | + </a> | |
| 734 | + | |
| 735 | + </div> | |
| 736 | + </div> | |
| 737 | + <script> | |
| 738 | + function fireGaNa() { | |
| 739 | + if (typeof gtag != 'undefined') { | |
| 740 | + var myPage = location.pathname.replace("/", ""); | |
| 741 | + if (myPage == "") { myPage = "index"; } | |
| 742 | + if (false ) { | |
| 743 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 744 | + gtag('event', 'phone_call', { 'property_name': propertyName, 'page_name': document.title, 'page_url': window.location.href, 'footer_phone_number': '+1 819-809-9131'}); | |
| 745 | + } | |
| 746 | + gtag('event', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickFooter', 'event_label': myPage }); | |
| 747 | + gtag('rc.send', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickFooter', 'event_label': myPage }); | |
| 748 | + } | |
| 749 | + } | |
| 750 | + </script> | |
| 751 | + | |
| 752 | + | |
| 753 | +<ul class="list-unstyled mb-0" lang=""> | |
| 754 | + | |
| 755 | + | |
| 756 | +</ul> | |
| 757 | + | |
| 758 | + | |
| 759 | + <style>ul.ysi-socialmedia-popover-icons li a,ul.ysi-socialmedia-popover-icons p a,.ysi-socialmedia-widget li a,.ysi-socialmedia-widget p a{margin:1px 0}ul.ysi-socialmedia-icons li a,ul.ysi-socialmedia-icons p a,.ysi-socialmedia-widget li a,.ysi-socialmedia-widget p a{margin:0}ul.ysi-socialmedia-icons,ul.ysi-socialmedia-popover-icons,.ysi-socialmedia-widget{margin-bottom:0}ul.ysi-socialmedia-icons li a,ul.ysi-socialmedia-icons p a,ul.ysi-socialmedia-popover-icons li a,ul.ysi-socialmedia-popover-icons p a,.ysi-socialmedia-widget li a,.ysi-socialmedia-widget p a{width:40px;height:40px;display:inline-block;line-height:2.2;color:#fff;font-size:1.2rem;text-align:center}ul.ysi-socialmedia-icons li a.facebook_icon,ul.ysi-socialmedia-icons p a.facebook_icon,ul.ysi-socialmedia-popover-icons li a.facebook_icon,ul.ysi-socialmedia-popover-icons p a.facebook_icon,.ysi-socialmedia-widget li a.facebook_icon,.ysi-socialmedia-widget p a.facebook_icon{background:#3b5998;-moz-transition:background-color 1s 0.001s,color 1s;-o-transition:background-color 1s 0.001s,color 1s;-webkit-transition:background-color 1s 0.001s,color 1s;transition:background-color 1s 0.001s,color 1s}ul.ysi-socialmedia-icons li a.facebook_icon:hover,ul.ysi-socialmedia-icons p a.facebook_icon:hover,ul.ysi-socialmedia-popover-icons li a.facebook_icon:hover,ul.ysi-socialmedia-popover-icons p a.facebook_icon:hover,.ysi-socialmedia-widget li a.facebook_icon:hover,.ysi-socialmedia-widget p a.facebook_icon:hover{background:#4565ab}ul.ysi-socialmedia-icons li a.twitter_icon,ul.ysi-socialmedia-icons p a.twitter_icon,ul.ysi-socialmedia-popover-icons li a.twitter_icon,ul.ysi-socialmedia-popover-icons p a.twitter_icon,.ysi-socialmedia-widget li a.twitter_icon,.ysi-socialmedia-widget p a.twitter_icon{background:#2CAAE1;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.twitter_icon:hover,ul.ysi-socialmedia-icons p a.twitter_icon:hover,ul.ysi-socialmedia-popover-icons li a.twitter_icon:hover,ul.ysi-socialmedia-popover-icons p a.twitter_icon:hover,.ysi-socialmedia-widget li a.twitter_icon:hover,.ysi-socialmedia-widget p a.twitter_icon:hover{background:#2fb4ed}ul.ysi-socialmedia-icons li a.pinterest_icon,ul.ysi-socialmedia-icons p a.pinterest_icon,ul.ysi-socialmedia-popover-icons li a.pinterest_icon,ul.ysi-socialmedia-popover-icons p a.pinterest_icon,.ysi-socialmedia-widget li a.pinterest_icon,.ysi-socialmedia-widget p a.pinterest_icon{background:#C13238;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.pinterest_icon:hover,ul.ysi-socialmedia-icons p a.pinterest_icon:hover,ul.ysi-socialmedia-popover-icons li a.pinterest_icon:hover,ul.ysi-socialmedia-popover-icons p a.pinterest_icon:hover,.ysi-socialmedia-widget li a.pinterest_icon:hover,.ysi-socialmedia-widget p a.pinterest_icon:hover{background:#cc353a}ul.ysi-socialmedia-icons li a.instagram_icon,ul.ysi-socialmedia-icons p a.instagram_icon,ul.ysi-socialmedia-popover-icons li a.instagram_icon,ul.ysi-socialmedia-popover-icons p a.instagram_icon,.ysi-socialmedia-widget li a.instagram_icon,.ysi-socialmedia-widget p a.instagram_icon{background:#49709b;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.instagram_icon:hover,ul.ysi-socialmedia-icons p a.instagram_icon:hover,ul.ysi-socialmedia-popover-icons li a.instagram_icon:hover,ul.ysi-socialmedia-popover-icons p a.instagram_icon:hover,.ysi-socialmedia-widget li a.instagram_icon:hover,.ysi-socialmedia-widget p a.instagram_icon:hover{background:#608bba}ul.ysi-socialmedia-icons li a.linkedin_icon,ul.ysi-socialmedia-icons p a.linkedin_icon,ul.ysi-socialmedia-popover-icons li a.linkedin_icon,ul.ysi-socialmedia-popover-icons p a.linkedin_icon,.ysi-socialmedia-widget li a.linkedin_icon,.ysi-socialmedia-widget p a.linkedin_icon{background:#005a87;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.linkedin_icon:hover,ul.ysi-socialmedia-icons p a.linkedin_icon:hover,ul.ysi-socialmedia-popover-icons li a.linkedin_icon:hover,ul.ysi-socialmedia-popover-icons p a.linkedin_icon:hover,.ysi-socialmedia-widget li a.linkedin_icon:hover,.ysi-socialmedia-widget p a.linkedin_icon:hover{background:#0472a5}ul.ysi-socialmedia-icons li a.youtube_icon,ul.ysi-socialmedia-icons p a.youtube_icon,ul.ysi-socialmedia-popover-icons li a.youtube_icon,ul.ysi-socialmedia-popover-icons p a.youtube_icon,.ysi-socialmedia-widget li a.youtube_icon,.ysi-socialmedia-widget p a.youtube_icon{background:#c9322b;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.youtube_icon:hover,ul.ysi-socialmedia-icons p a.youtube_icon:hover,ul.ysi-socialmedia-popover-icons li a.youtube_icon:hover,ul.ysi-socialmedia-popover-icons p a.youtube_icon:hover,.ysi-socialmedia-widget li a.youtube_icon:hover,.ysi-socialmedia-widget p a.youtube_icon:hover{background:#dd3830}ul.ysi-socialmedia-icons li a.yelp_icon,ul.ysi-socialmedia-icons p a.yelp_icon,ul.ysi-socialmedia-popover-icons li a.yelp_icon,ul.ysi-socialmedia-popover-icons p a.yelp_icon,.ysi-socialmedia-widget li a.yelp_icon,.ysi-socialmedia-widget p a.yelp_icon{background:#DE3C43;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.yelp_icon:hover,ul.ysi-socialmedia-icons p a.yelp_icon:hover,ul.ysi-socialmedia-popover-icons li a.yelp_icon:hover,ul.ysi-socialmedia-popover-icons p a.yelp_icon:hover,.ysi-socialmedia-widget li a.yelp_icon:hover,.ysi-socialmedia-widget p a.yelp_icon:hover{background:#ea3f45}ul.ysi-socialmedia-icons li a.snapchat_icon,ul.ysi-socialmedia-icons p a.snapchat_icon,ul.ysi-socialmedia-popover-icons li a.snapchat_icon,ul.ysi-socialmedia-popover-icons p a.snapchat_icon,.ysi-socialmedia-widget li a.snapchat_icon,.ysi-socialmedia-widget p a.snapchat_icon{background:#E0E237;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.snapchat_icon:hover,ul.ysi-socialmedia-icons p a.snapchat_icon:hover,ul.ysi-socialmedia-popover-icons li a.snapchat_icon:hover,ul.ysi-socialmedia-popover-icons p a.snapchat_icon:hover,.ysi-socialmedia-widget li a.snapchat_icon:hover,.ysi-socialmedia-widget p a.snapchat_icon:hover{background:#efef39}ul.ysi-socialmedia-icons li a.more-social-icons,ul.ysi-socialmedia-icons p a.more-social-icons,ul.ysi-socialmedia-popover-icons li a.more-social-icons,ul.ysi-socialmedia-popover-icons p a.more-social-icons,.ysi-socialmedia-widget li a.more-social-icons,.ysi-socialmedia-widget p a.more-social-icons{background:#6e6e6e;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.more-social-icons:hover,ul.ysi-socialmedia-icons p a.more-social-icons:hover,ul.ysi-socialmedia-popover-icons li a.more-social-icons:hover,ul.ysi-socialmedia-popover-icons p a.more-social-icons:hover,.ysi-socialmedia-widget li a.more-social-icons:hover,.ysi-socialmedia-widget p a.more-social-icons:hover{background:#888888}.ysi-socialmedia-widget ul{padding-left:0;list-style:none}.ysi-socialmedia-widget p{margin-bottom:0}.ysi-socialmedia-widget.icon-white ul li a,.ysi-socialmedia-widget.icon-white p a{color:#fff;background:none}.ysi-socialmedia-widget.icon-white ul li a:hover,.ysi-socialmedia-widget.icon-white p a:hover{color:#f8f9fa;background:none}.ysi-socialmedia-widget.icon-light ul li a,.ysi-socialmedia-widget.icon-light p a{color:#f8f9fa;background:none}.ysi-socialmedia-widget.icon-light ul li a:hover,.ysi-socialmedia-widget.icon-light p a:hover{color:#fff;background:none}.ysi-socialmedia-widget.icon-dark ul li a,.ysi-socialmedia-widget.icon-dark p a{color:#343a40;background:none}.ysi-socialmedia-widget.icon-dark ul li a:hover,.ysi-socialmedia-widget.icon-dark p a:hover{color:#0056B3;background:none}.ysi-socialmedia-widget.icon-primary ul li a,.ysi-socialmedia-widget.icon-primary p a{color:#191f31;background:none}.ysi-socialmedia-widget.icon-primary ul li a:hover,.ysi-socialmedia-widget.icon-primary p a:hover{color:#191f31;background:none}.ysi-socialmedia-widget.icon-secondary ul li a,.ysi-socialmedia-widget.icon-secondary p a{color:#fff;background:none}.ysi-socialmedia-widget.icon-secondary ul li a:hover,.ysi-socialmedia-widget.icon-secondary p a:hover{color:#fff;background:none}.ysi-socialmedia-widget.background-light ul li a,.ysi-socialmedia-widget.background-light p a{background-color:#f8f9fa}.ysi-socialmedia-widget.background-light ul li a:hover,.ysi-socialmedia-widget.background-light p a:hover{background-color:#f8f9fa}.ysi-socialmedia-widget.background-dark ul li a,.ysi-socialmedia-widget.background-dark p a{background-color:#000}.ysi-socialmedia-widget.background-dark ul li a:hover,.ysi-socialmedia-widget.background-dark p a:hover{background-color:#000}.ysi-socialmedia-widget.background-primary ul li a,.ysi-socialmedia-widget.background-primary p a{background-color:#191f31}.ysi-socialmedia-widget.background-primary ul li a:hover,.ysi-socialmedia-widget.background-primary p a:hover{background-color:#191f31}.ysi-socialmedia-widget.background-secondary ul li a,.ysi-socialmedia-widget.background-secondary p a{background-color:#fff}.ysi-socialmedia-widget.background-secondary ul li a:hover,.ysi-socialmedia-widget.background-secondary p a:hover{background-color:#fff}.ysi-socialmedia-widget.rounded ul li a,.ysi-socialmedia-widget.rounded p a{border-radius:50px}.ysi-socialmedia-widget.square ul li a,.ysi-socialmedia-widget.square p a{border-radius:0px}.ysi-socialmedia-widget.regular ul li a,.ysi-socialmedia-widget.regular p a{font-size:1.2rem;width:45px;height:45px}.ysi-socialmedia-widget.large ul li a,.ysi-socialmedia-widget.large p a{font-size:2.5rem;width:60px;height:60px;line-height:1.5}.ysi-socialmedia-widget.horizontal ul,.ysi-socialmedia-widget.horizontal p{line-height:10px}.ysi-socialmedia-widget.horizontal ul li,.ysi-socialmedia-widget.horizontal p li{display:inline-block}.ysi-socialmedia-widget.vertical ul li,.ysi-socialmedia-widget.vertical p{margin:3px 0}.ysi-socialmedia-widget.outline-light ul li a,.ysi-socialmedia-widget.outline-light p a{border:1px solid #f8f9fa;background:none}.ysi-socialmedia-widget.outline-light ul li a:hover,.ysi-socialmedia-widget.outline-light p a:hover{border:1px solid #fff;background:none}.ysi-socialmedia-widget.outline-dark ul li a,.ysi-socialmedia-widget.outline-dark p a{border:1px solid #343a40;background:none;color:#343a40}.ysi-socialmedia-widget.outline-dark ul li a:hover,.ysi-socialmedia-widget.outline-dark p a:hover{border:1px solid #343a40;background:none;color:#343a40}.ysi-socialmedia-widget.outline-primary ul li a,.ysi-socialmedia-widget.outline-primary p a{border:1px solid #191f31}.ysi-socialmedia-widget.outline-primary ul li a:hover,.ysi-socialmedia-widget.outline-primary p a:hover{border:1px solid #191f31}.ysi-socialmedia-widget.outline-secondary ul li a,.ysi-socialmedia-widget.outline-secondary p a{border:1px solid #fff}.ysi-socialmedia-widget.outline-secondary ul li a:hover,.ysi-socialmedia-widget.outline-secondary p a:hover{border:1px solid #fff}.ysi-socialmedia-widget.left,.ysi-socialmedia-widget.right{position:fixed;z-index:5;top:0;padding:0 3px}.ysi-socialmedia-widget.left{left:0}.ysi-socialmedia-widget.right{right:0}.ysi-socialmedia-share.horizontal ul{float:inherit}.ysi-socialmedia-share.horizontal ul li{float:inherit;margin-left:0.25rem}.ysi-socialmedia-share.horizontal ul li a.more-social-icons{height:20px;line-height:1;margin:0;background:#c7c7c7;color:#6e6e6e}.ysi-socialmedia-follow.horizontal{line-height:0}.ysi-socialmedia-follow.horizontal ul.ysi-socialmedia-icons{display:inline-flex}.ysi-socialmedia-follow.horizontal ul.ysi-socialmedia-icons li{margin-right:0.4rem}.ysi-socialmedia-follow.horizontal ul.ysi-socialmedia-icons li a,.ysi-socialmedia-follow.horizontal ul.ysi-socialmedia-popover-icons li a{width:auto;height:auto;line-height:initial}ul.ysi-socialmedia-icons li a.ysi-share,ul.ysi-socialmedia-popover-icons li a.ysi-share,.ysi-socialmedia-share p a.ysi-share{font:11px/18px 'Helvetica Neue', Arial, sans-serif;color:#fff;background:#6e6e6e;height:20px;line-height:18px;padding:1px 8px 1px 6px;border:none;border-radius:3px;outline:0;width:unset;height:unset}ul.ysi-socialmedia-icons li a.ysi-share:hover,ul.ysi-socialmedia-popover-icons li a.ysi-share:hover,.ysi-socialmedia-share p a.ysi-share:hover{text-decoration:none}ul.ysi-socialmedia-icons li a.ysi-share i,ul.ysi-socialmedia-popover-icons li a.ysi-share i,.ysi-socialmedia-share p a.ysi-share i{margin-right:.3em;font-size:1.2em}ul.ysi-socialmedia-icons li a.ysi-share.facebook,ul.ysi-socialmedia-popover-icons li a.ysi-share.facebook,.ysi-socialmedia-share p a.ysi-share.facebook{background:#4267b2}ul.ysi-socialmedia-icons li a.ysi-share.facebook:hover,ul.ysi-socialmedia-popover-icons li a.ysi-share.facebook:hover,.ysi-socialmedia-share p a.ysi-share.facebook:hover{background:#365899}ul.ysi-socialmedia-icons li a.ysi-share.twitter,ul.ysi-socialmedia-popover-icons li a.ysi-share.twitter,.ysi-socialmedia-share p a.ysi-share.twitter{background:#1b95e0}ul.ysi-socialmedia-icons li a.ysi-share.twitter:hover,ul.ysi-socialmedia-popover-icons li a.ysi-share.twitter:hover,.ysi-socialmedia-share p a.ysi-share.twitter:hover{background:#0c7abf}ul.ysi-socialmedia-icons li a.ysi-share.twitter i,ul.ysi-socialmedia-popover-icons li a.ysi-share.twitter i,.ysi-socialmedia-share p a.ysi-share.twitter i{font-size:inherit}ul.ysi-socialmedia-icons li a.ysi-share.pinterest,ul.ysi-socialmedia-popover-icons li a.ysi-share.pinterest,.ysi-socialmedia-share p a.ysi-share.pinterest{background:#C13238}ul.ysi-socialmedia-icons li a.ysi-share.pinterest i,ul.ysi-socialmedia-popover-icons li a.ysi-share.pinterest i,.ysi-socialmedia-share p a.ysi-share.pinterest i{font-size:inherit}ul.ysi-socialmedia-icons li a.ysi-share.linkedin,ul.ysi-socialmedia-popover-icons li a.ysi-share.linkedin,.ysi-socialmedia-share p a.ysi-share.linkedin{background:#005a87}@media (max-width: 991.98px){.d-md-none-down{display:none !important}}</style> | |
| 760 | + | |
| 761 | + <div class="ysi-socialmedia-widget ysi-socialmedia-wrapper ysi-socialmedia-link horizontal" lang=""> | |
| 762 | + <ul class="ysi-socialmedia-icons" data-selenium-id="socialmedia_1786043950986" lang=""> | |
| 763 | + <li class="social-media-facebook " lang=""> | |
| 764 | + <a href="https://www.facebook.com/zibiCanada/" target="_blank" aria-label="Facebook, opens in new tab" rel="noopener" data-selenium-id="SM_FaceBookIcon" class="facebook_icon" lang=""> | |
| 765 | + <span aria-hidden="true" class="nu nu-secondary_facebook_logo fab fa-facebook-f" lang=""></span> | |
| 766 | + </a> | |
| 767 | + </li> | |
| 768 | + <li class="social-media-instagram " lang=""> | |
| 769 | + <a href="https://www.instagram.com/zibican/?hl=en" target="_blank" aria-label="Instagram, opens in new tab" rel="noopener" data-selenium-id="SM_InstagramIcon" class="instagram_icon" lang=""> | |
| 770 | + <span aria-hidden="true" class="fab fa-instagram" lang=""></span> | |
| 771 | + </a> | |
| 772 | + </li> | |
| 773 | + </ul> | |
| 774 | + | |
| 775 | + </div> | |
| 776 | + <div class="ysi-socialmedia-widget ysi-socialmedia-popover-wrapper d-none" lang=""> | |
| 777 | + <ul class="ysi-socialmedia-popover-icons list-inline text-center list-inline" lang=""> | |
| 778 | + </ul> | |
| 779 | + | |
| 780 | + </div> | |
| 781 | +</div></div></div></div><div class="pb-5 pt-4 px-3 bg-primary container-fluid p-0" lang=""><div class="row no-gutters" lang=""><div class="text-light justify-content-center align-items-center flex-column d-flex text-center col-12 col-lg-12" lang=""> | |
| 782 | + | |
| 783 | +<div class="ysi-copyright" lang=""> | |
| 784 | + <svg role="img" alt="Equal housing opportunity" aria-labelledby="svgeho" focusable="false" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="1em" height=".884em" viewBox="0 0 15.2 10.72"> | |
| 785 | + <title id="svgeho">Equal housing opportunity</title> | |
| 786 | + <defs><style> | |
| 787 | + .cls-1 { | |
| 788 | + fill-rule: evenodd; | |
| 789 | + } | |
| 790 | + </style></defs> | |
| 791 | + <path class="cls-1" d="M7.54,0,0,3.72V5.46H.84V10.7H14.19V5.46h1V3.72Zm5,9.12H2.48V4.34l5.06-2.6,5,2.6Z"></path> | |
| 792 | + <polygon class="cls-1" points="9.85 6.02 5.18 6.02 5.18 4.34 9.85 4.34 9.85 6.02 9.85 6.02"></polygon> | |
| 793 | + <polygon class="cls-1" points="9.85 8.44 5.18 8.44 5.18 6.76 9.85 6.76 9.85 8.44 9.85 8.44"></polygon> | |
| 794 | + </svg> | |
| 795 | + <span id="footerText" data-selenium-id="customCopyrightText" lang="">© 2026 Aalt. Tous Droits Réservés. | Design du site internet par RENTPrices and specifications are subject to change without notice. Illustrations are artist’s concept. E. & O. E.</span> | |
| 796 | + <span lang=""> | <span lang="">Actionné par RentCafe</span>(© <span lang="">2026 </span>Yardi Systems, Inc.<span lang="">Tous droits réservés.</span>)</span> | |
| 797 | +</div> | |
| 798 | +</div></div></div></footer> | |
| 799 | + | |
| 800 | + | |
| 801 | + | |
| 802 | + | |
| 803 | + | |
| 804 | + | |
| 805 | + <yardi-widget-craigslist></yardi-widget-craigslist> | |
| 806 | + | |
| 807 | +<script> | |
| 808 | +ysi.registerCallback(function () { | |
| 809 | + if (typeof ClickTrack != "undefined") { | |
| 810 | + ClickTrack._PageDisplayName = 'SG9tZSNTeXN0ZW0uUmFuZG9t-ER%2btLH5xchE%3d'; | |
| 811 | + ClickTrack.SiteSection = 'PropertyPortal' ; | |
| 812 | + ClickTrack._CCDisplayName = ''; | |
| 813 | + ClickTrack.CCQS = ''; | |
| 814 | + ClickTrack._ULI = ''; | |
| 815 | + ClickTrack._Property = 'MjM4NDc2NyNTeXN0ZW0uUmFuZG9t-dONg5bn5YVQ%3d'; | |
| 816 | + ClickTrack.isPreview = ''; | |
| 817 | + | |
| 818 | + | |
| 819 | + ClickTrack.init(); | |
| 820 | + } | |
| 821 | + | |
| 822 | + ysi.clicktrack && ysi.clicktrack.CheckAndPassCTUserAndVisit('securecafe.com','securecafeapplicant.com','rentcafe.com'); | |
| 823 | +}); | |
| 824 | +</script> | |
| 825 | + | |
| 826 | + | |
| 827 | + | |
| 828 | + | |
| 829 | + | |
| 830 | +<input type="hidden" id="dni-request-verification-token" name="dni-request-verification-token" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ1E9odX1zOppWDJciyOPWY4X30sSd5MvyWgCXJ6UeFWplye6u2FXDVVIDVPTj_xxw_CJK5L31CIDKw_KarigoNOlIUSHDDEEROplk49gLYCOiw8PsShK4PTLo7wmIwUUx4"> | |
| 831 | +<script> | |
| 832 | + | |
| 833 | + var leadAttrSecureCafe = "securecafe.com"; | |
| 834 | + var leadAttrReactOle = "securecafeapplicant.com"; | |
| 835 | + var leadAttrRentCafe = "rentcafe.com"; | |
| 836 | + | |
| 837 | + function leadAttrHrefMatchesOleDomains(href) { | |
| 838 | + if (!href) return false; | |
| 839 | + var h = href.trim().toLowerCase(); | |
| 840 | + var d0 = leadAttrSecureCafe.toLowerCase(); | |
| 841 | + var d1 = leadAttrReactOle.toLowerCase(); | |
| 842 | + var d2 = leadAttrRentCafe.toLowerCase(); | |
| 843 | + return (d0.length && h.indexOf(d0) > -1) || (d1.length && h.indexOf(d1) > -1) || (d2.length && h.indexOf(d2) > -1); | |
| 844 | + } | |
| 845 | + | |
| 846 | + function leadAttrHrefIsReactOleHostedUrl(href) { | |
| 847 | + if (!href) return false; | |
| 848 | + var h = href.trim().toLowerCase(); | |
| 849 | + var d1 = leadAttrReactOle.toLowerCase(); | |
| 850 | + var d2 = leadAttrRentCafe.toLowerCase(); | |
| 851 | + return (d1.length && h.indexOf(d1) > -1) || (d2.length && h.indexOf(d2) > -1); | |
| 852 | + } | |
| 853 | + | |
| 854 | + ysi.registerCallback(function () { | |
| 855 | + | |
| 856 | + if (!ysi.cookie.read('PropLeadSource_' + 2384767)) { | |
| 857 | + if ('' === 'True') { | |
| 858 | + ysi.cookie.create("PropLeadSource_" + 2384767, 'rentcafe',30); | |
| 859 | + } else { | |
| 860 | + ysi.cookie.create("PropLeadSource_" + 2384767, 'portal', 30); | |
| 861 | + } | |
| 862 | + } | |
| 863 | + | |
| 864 | + if (typeof RCTPCampaign != "undefined") { | |
| 865 | + | |
| 866 | + console.log("Initializing RCTP Campaign"); | |
| 867 | + | |
| 868 | + RCTPCampaign.PId = "2384767"; | |
| 869 | + RCTPCampaign.UrlPattern = ""; | |
| 870 | + RCTPCampaign.UseMVCDNI = "1"; | |
| 871 | + RCTPCampaign.init(); | |
| 872 | + | |
| 873 | + RCTPCampaign.DoExecuteAfterCampaignLoad(function () { | |
| 874 | + if (RCTPCampaign.CampaignDetails.CampaignID != "0" && RCTPCampaign.CampaignDetails.CampaignID != "") { | |
| 875 | + | |
| 876 | + console.log("RC Campaign Type - " + RCTPCampaign.CampaignDetails.CampaignType); | |
| 877 | + console.log("RC Campaign Id - " + RCTPCampaign.CampaignDetails.CampaignID); | |
| 878 | + if (RCTPCampaign.CampaignDetails.CampaignType == "StandardCampaign") | |
| 879 | + { | |
| 880 | + ysi.cookie.create("RCStandardCampaignId_" + 2384767, RCTPCampaign.CampaignDetails.CampaignID); | |
| 881 | + } | |
| 882 | + else | |
| 883 | + { | |
| 884 | + ysi.cookie.create("RCDynamicCampaignId_" + 2384767, RCTPCampaign.CampaignDetails.CampaignID); | |
| 885 | + } | |
| 886 | + document.querySelectorAll('.click-to-call').forEach(function(dots) { | |
| 887 | + dots.innerHTML = RCTPCampaign.CampaignDetails.Phone; | |
| 888 | + }); | |
| 889 | + document.querySelectorAll('.click-to-call-href').forEach(function(dots) { | |
| 890 | + dots.href = "tel:" + RCTPCampaign.CampaignDetails.Phone; | |
| 891 | + }); | |
| 892 | + document.querySelectorAll('.click_to_call_href_nudge').forEach(function(dots) { | |
| 893 | + dots.href = "tel:" + RCTPCampaign.CampaignDetails.Phone; | |
| 894 | + }); | |
| 895 | + document.querySelectorAll('.click-to-call-title').forEach(function(dots) { | |
| 896 | + dots.title = "Call Us at " + RCTPCampaign.CampaignDetails.Phone; | |
| 897 | + dots.setAttribute("data-original-title","Call Us at " + RCTPCampaign.CampaignDetails.Phone); | |
| 898 | + }); | |
| 899 | + | |
| 900 | + if ( RCTPCampaign.CampaignDetails.CampaignID != "0" && RCTPCampaign.CampaignDetails.CampaignID != "" ) { | |
| 901 | + document.querySelectorAll('a:not(.donottrack)').forEach( | |
| 902 | + function (el) { | |
| 903 | + var href = el.getAttribute('href'); | |
| 904 | + if (href) { | |
| 905 | + if (leadAttrHrefMatchesOleDomains(href)) { | |
| 906 | + el.href = RCTPCampaign.AppendCrossDomainParamsInURL(href) | |
| 907 | + } | |
| 908 | + } | |
| 909 | + }); | |
| 910 | + } | |
| 911 | + | |
| 912 | + | |
| 913 | + } | |
| 914 | + | |
| 915 | + | |
| 916 | + }); | |
| 917 | + | |
| 918 | + | |
| 919 | + } | |
| 920 | + | |
| 921 | + | |
| 922 | + if (ysi.cookie.read('PropLeadSource_' + 2384767)) | |
| 923 | + { | |
| 924 | + | |
| 925 | + var propleadsource=ysi.cookie.read('PropLeadSource_' + 2384767) | |
| 926 | + document.querySelectorAll('a:not(.donottrack)').forEach( | |
| 927 | + function (el) { | |
| 928 | + var href = el.getAttribute('href'); | |
| 929 | + if (href) { | |
| 930 | + if (leadAttrHrefMatchesOleDomains(href) && !leadAttrHrefIsReactOleHostedUrl(href)) { | |
| 931 | + if (href.indexOf("PropLeadSource") === -1) | |
| 932 | + { | |
| 933 | + if (href.indexOf("?") == -1) { | |
| 934 | + href = href + "?"; | |
| 935 | + } else { | |
| 936 | + href = href + "&"; | |
| 937 | + } | |
| 938 | + href = href + 'PropLeadSource_' + 2384767 + "=" + propleadsource; | |
| 939 | + el.setAttribute('href', href); | |
| 940 | + } | |
| 941 | + } | |
| 942 | + } | |
| 943 | + }); | |
| 944 | + } | |
| 945 | + }); | |
| 946 | + | |
| 947 | +</script> | |
| 948 | + | |
| 949 | + | |
| 950 | + | |
| 951 | + <div class="container-fluid w-100 fixed-bottom nudgestrip d-none" lang=""> | |
| 952 | + <div class="row bg-secondary d-block d-md-none text-center" lang=""> | |
| 953 | + <div class="col p-0" lang=""> | |
| 954 | + <button type="button" class="btn btn-primary btn-block" onclick="ysi.nudge.showNudge()" lang=""> | |
| 955 | + Deux mois gratuits sur certaines unités | |
| 956 | + </button> | |
| 957 | + </div> | |
| 958 | + </div> | |
| 959 | + </div> | |
| 960 | + | |
| 961 | + <!--START: Nudge Widget Container--> | |
| 962 | + <div class="container-fluid w-100 fixed-bottom nudge-left" role="complementary" aria-label="Deux mois gratuits sur certaines unités" lang=""> | |
| 963 | + <!-- For Nudge alignment used class: "nudge-left", "nudge-center" , "nudge-right" --> | |
| 964 | + <div class="px-3 modest-nudge show nudge-open" id="leadNudgeBlock" lang=""> | |
| 965 | + <button type="button" class="close position-absolute" aria-label="close dialog" onclick="ysi.nudge.closeNudge()" lang=""> | |
| 966 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 967 | + </button> | |
| 968 | + <div class="row" lang=""> | |
| 969 | + <div class="nudge-block d-flex flex-wrap align-items-stretch w-100" lang=""> | |
| 970 | + | |
| 971 | + <div class="nudge-form-block col-12 p-4" lang=""> | |
| 972 | + <form id="myNudgeForm" class="needs-validation" novalidate="" method="post"> | |
| 973 | + <div id="leadNudgeBlock01" class="row" lang=""> | |
| 974 | + | |
| 975 | + <!-- Title and description --> | |
| 976 | + <div class="col-md-12 mb-3 mt-2" lang=""> | |
| 977 | + <h2 class="h5 mb-2 font-weight-normal" lang="">Deux mois gratuits sur certaines unités</h2> | |
| 978 | + <p class="mb-0" lang="">Emménagez dès aujourd’hui et économisez. Profitez maintenant de jusqu’à 2 mois gratuits.</p> | |
| 979 | + </div> | |
| 980 | + | |
| 981 | + <div class="col-md-12 mb-1" lang=""> | |
| 982 | + <p class="text-sm" lang="">* indique les champs obligatoires.</p> | |
| 983 | + </div> | |
| 984 | + <!-- First name --> | |
| 985 | + <div class="col-md-6 mb-1 mb-lg-2 pr-md-1" lang=""> | |
| 986 | + <div class="form-group w-100 floating-label floating-label-sm mb-0" lang=""> | |
| 987 | + <label for="nudgeFirstName" lang="">Prénom<span lang="">*</span> | |
| 988 | + </label> | |
| 989 | + <input type="text" class="form-control form-control-sm required" aria-invalid="false" id="nudgeFirstName" name="FirstName" data-selenium-id="nudgeFirstName" autocomplete="given-name" data-aria-describedby="nudgeinvalidFirstname" lang=""> | |
| 990 | + <div class="invalid-feedback" id="nudgeinvalidFirstname" aria-hidden="true" lang="">Erreur : Veuillez fournir un prénom valide.</div> | |
| 991 | + </div> | |
| 992 | + </div> | |
| 993 | + | |
| 994 | + <!-- Last name --> | |
| 995 | + <div class="col-md-6 mb-1 mb-lg-2 pl-md-1" lang=""> | |
| 996 | + <div class="form-group w-100 floating-label floating-label-sm mb-0" lang=""> | |
| 997 | + <label for="nudgeLastName" lang="">Nom de famille<span lang="">*</span> | |
| 998 | + </label> | |
| 999 | + <input type="text" class="form-control form-control-sm required" aria-invalid="false" id="nudgeLastName" name="LastName" data-selenium-id="nudgeLastName" autocomplete="family-name" data-aria-describedby="nudgeinvalidLastname" lang=""> | |
| 1000 | + <div class="invalid-feedback" id="nudgeinvalidLastname" aria-hidden="true" lang="">Erreur : Veuillez fournir un nom de famille valide.</div> | |
| 1001 | + </div> | |
| 1002 | + </div> | |
| 1003 | + | |
| 1004 | + <!-- Email --> | |
| 1005 | + <div class="col-md-12 mb-1 mb-lg-2 " lang=""> | |
| 1006 | + <div class="form-group w-100 floating-label floating-label-sm mb-0" lang=""> | |
| 1007 | + <label for="nudgeEmail" lang="">Courriel<span lang="">*</span> | |
| 1008 | + </label> | |
| 1009 | + <input type="text" class="form-control form-control-sm required" aria-invalid="false" pattern="[A-Za-z0-9._%+\-]+@[A-Za-z0-9.\-]+\.[A-Za-z]{2,4}$" id="nudgeEmail" name="Email" data-selenium-id="nudgeEmail" autocomplete="email" data-aria-describedby="nudgeinvalidEmail" lang=""> | |
| 1010 | + <div class="invalid-feedback" id="nudgeinvalidEmail" aria-hidden="true" lang="">Erreur : Veuillez saisir une adresse électronique valide.</div> | |
| 1011 | + </div> | |
| 1012 | + </div> | |
| 1013 | + | |
| 1014 | + <!-- For Canada, emails checkbox --> | |
| 1015 | + <div class="col-auto form-group" lang=""> | |
| 1016 | + <div class=" checkbox" lang=""> | |
| 1017 | + <input aria-label="Subscribe/Unsubscribe to marketing email" id="SubscribeToEmailsNudge" type="checkbox" class="form-check-input" value="" onchange="ysi.nudge.issubscribecheckednudge()"> | |
| 1018 | + <label for="SubscribeToEmailsNudge" lang=""> | |
| 1019 | + | |
| 1020 | + | |
| 1021 | + | |
| 1022 | + | |
| 1023 | + </label> | |
| 1024 | + </div> | |
| 1025 | + </div> | |
| 1026 | + | |
| 1027 | + <!-- Privacy Policy / Terms and Conditions checkbox --> | |
| 1028 | + | |
| 1029 | + <!-- Hidden form fields --> | |
| 1030 | + <input type="hidden" name="IsSubscribeToEmailsNudge" id="IsSubscribeToEmailsNudge" value="false"> | |
| 1031 | + <input type="hidden" name="IsFlexProp" id="IsFlexProp" value="False"> | |
| 1032 | + | |
| 1033 | + <input type="hidden" name="IsCanadaPropertyNudge" id="IsCanadaPropertyNudge" value="True"> | |
| 1034 | + <input type="hidden" name="nudgepagename" id="nudgepagename" value=""> | |
| 1035 | + <input type="hidden" name="txtisresidentoption" id="nudgetxtisresidentoption" value="0"> | |
| 1036 | + <input type="hidden" name="nudgetrackingid" id="nudgetrackingid" value="308749"> | |
| 1037 | + <input type="hidden" name="nudgeuseragent" id="nudgeuseragent" value=""> | |
| 1038 | + <input type="hidden" name="nudgeAdwordsNetwork" id="nudgeAdwordsNetwork" value=""> | |
| 1039 | + <input type="hidden" name="nudgeAdwordsDevice" id="nudgeAdwordsDevice" value=""> | |
| 1040 | + <input type="hidden" name="nudgeAdwordsKeyword" id="nudgeAdwordsKeyword" value=""> | |
| 1041 | + <input type="hidden" name="nudgeAdwordsAdgroup" id="nudgeAdwordsAdgroup" value=""> | |
| 1042 | + <input type="hidden" name="nudgeAdwordsCampaign" id="nudgeAdwordsCampaign" value=""> | |
| 1043 | + <input type="hidden" name="nudgeAdwordsGclid" id="nudgeAdwordsGclid" value=""> | |
| 1044 | + <input type="hidden" name="nudgecafeusenewcaptcha" id="nudgecafeusenewcaptcha" value="True"> | |
| 1045 | + <input type="hidden" id="nudgepreviousPageTitle" name="nudgepreviousPageTitle" value="Aalto | Apartments in Gatineau, QC"> | |
| 1046 | + <input type="hidden" name="IsPureStudentPropNudge" id="IsPureStudentPropNudge" value="False"> | |
| 1047 | + <div class="col-auto col-sm-6 col-md-3 mb-1 mb-lg-2" lang=""> | |
| 1048 | + <button id="btnsubmitnudgehiddencaptcha" class="btn btn-light py-1" data-selenium-id="SendBtnhiddencaptcha" type="submit" lang="">Envoyer</button> | |
| 1049 | + </div> | |
| 1050 | + <span class="nudgeResponsLoader px-3" aria-live="assertive" lang=""><!-- Loading message inserted here --></span> | |
| 1051 | + <input type="hidden" name="g-recaptcha-response-ent" id="nudgecaptchag-recaptcha-response-ent" value=""> | |
| 1052 | + <input type="hidden" name="failed-captcha-ent" id="nudgecaptchafailed-captcha-ent" value="false"> | |
| 1053 | + | |
| 1054 | + <!-- Recaptcha terms --> | |
| 1055 | + <div class="col-md-12 py-0 mt-2" lang=""> | |
| 1056 | + <div id="nudge-grecaptcha-terms" class="grecaptcha-terms" lang="">Ce site est protégé par reCAPTCHA.<a class="color-inherit" rel="nofollow" target="_blank" href="https://policies.google.com/privacy" lang="">Politique de confidentialité<span class="sr-only" lang=""> for Google, Opens in a new tab </span></a>et<a class="color-inherit" rel="nofollow" target="_blank" href="https://policies.google.com/terms" lang="">Conditions d’utilisation<span class="sr-only" lang=""> for Google, Opens in a new tab </span></a>faire une demande.</div> | |
| 1057 | + </div> | |
| 1058 | + | |
| 1059 | + <!-- Call Us link --> | |
| 1060 | + <div class="col-md-12 h4 mt-3 my-md-3" lang=""> | |
| 1061 | + <span lang="">Planifiez une visite:</span> | |
| 1062 | + <a class="click_to_call_href_nudge" onclick="fireGaNudgePhone()" href="tel:+1 819-809-9131" lang=""> | |
| 1063 | + <span class=" sr-only" lang="">Numéro de téléphone</span> | |
| 1064 | + <span class="click-to-call" lang=""> +1 819-809-9131</span> | |
| 1065 | + </a> | |
| 1066 | + </div> | |
| 1067 | + </div><!-- End block 1 --> | |
| 1068 | + <!-- Block 2 : displayed on form submit --> | |
| 1069 | + <div id="leadNudgeBlock02" class="row mt-3 d-none" lang=""> | |
| 1070 | + <!-- Recaptcha --> | |
| 1071 | + | |
| 1072 | + <div class="col-md-12 mb-1 mb-lg-2 " lang=""> | |
| 1073 | + <div class="form-group mt-4 mb-4" lang=""> | |
| 1074 | + <div id="nudge-recaptcha-block" aria-hidden="true" class="form-control p-0 border-0 bg-transparent" lang=""> | |
| 1075 | + | |
| 1076 | + | |
| 1077 | +<div id="nudgecaptcha" class="recaptcha" style="min-height: 78px" lang=""></div> | |
| 1078 | + | |
| 1079 | + | |
| 1080 | + </div> | |
| 1081 | + <div class="invalid-feedback text-left w-auto" id="nudgeinvalidCaptcha" aria-live="polite" lang=""> | |
| 1082 | + Error : Please verify you are not a robot. | |
| 1083 | + </div> | |
| 1084 | + </div> | |
| 1085 | + </div> | |
| 1086 | + | |
| 1087 | + <!-- Submit button with loader --> | |
| 1088 | + <div class="col-md-12 mb-1 mb-lg-1 mt-2" lang=""> | |
| 1089 | + <button id="btnsubmitnudge" style="display:none" class="btn btn-light px-3 py-1" data-selenium-id="SendBtn" type="submit" lang="">Envoyer</button> | |
| 1090 | + <span class="nudgeResponsLoader" aria-live="assertive" lang=""><!-- Loading message inserted here --></span> | |
| 1091 | + </div> | |
| 1092 | + </div> | |
| 1093 | + <input name="__RequestVerificationToken" type="hidden" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ1E9odX1zOppWDJciyOPWY4X30sSd5MvyWgCXJ6UeFWplye6u2FXDVVIDVPTj_xxw_CJK5L31CIDKw_KarigoNOlIUSHDDEEROplk49gLYCOiw8PsShK4PTLo7wmIwUUx4"></form> | |
| 1094 | + </div> | |
| 1095 | + </div> | |
| 1096 | + </div> | |
| 1097 | + </div> | |
| 1098 | + </div> | |
| 1099 | + <input type="hidden" id="nudge-request-verification-token" name="nudge-request-verification-token" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ1E9odX1zOppWDJciyOPWY4X30sSd5MvyWgCXJ6UeFWplye6u2FXDVVIDVPTj_xxw_CJK5L31CIDKw_KarigoNOlIUSHDDEEROplk49gLYCOiw8PsShK4PTLo7wmIwUUx4"> | |
| 1100 | + <input type="hidden" name="nudgepopid" id="nudgepopid" value="2537319293"> | |
| 1101 | + <input type="hidden" name="pageId" id="pageId" value="0"> | |
| 1102 | + <input type="hidden" name="requestpage" id="requestpage" value=""> | |
| 1103 | + <input type="hidden" name="nudgeid" id="nudgeid" value="308749"> | |
| 1104 | + <input type="hidden" name="nudgeUrlPattern" id="nudgeUrlPattern" value=""> | |
| 1105 | +<script> | |
| 1106 | + ysi.registerCallback(function () { | |
| 1107 | + | |
| 1108 | + ysi.nudge && ysi.nudge.init({ | |
| 1109 | + propertyurl: 'www.aaltosuites.ca', | |
| 1110 | + cookiekey: "nud_2384767", | |
| 1111 | + cookievalue: "eyJwdiI6MCwiY24iOjMwODc0OSwiYW4iOlszMDg3NDldLCJpYW4iOltdfQ==", | |
| 1112 | + playtimer: parseInt('0') * 1000, | |
| 1113 | + pagerequested: "index", | |
| 1114 | + apiurl: "https://api.rentcafe.com/rentcafeapi.aspx?requestType=NudgeStatsTracker&propertyId=MjM4NDc2Nw%3d%3d-4jqO3QRC5RM%3d&pageId=MA%3d%3d-MHTrHsWXyiE%3d", | |
| 1115 | + campaignType: "0", | |
| 1116 | + isBottomLayout: false, | |
| 1117 | + isModestLayout: true, | |
| 1118 | + isCompanyNudge: false, | |
| 1119 | + outboundLink: "", | |
| 1120 | + donottrack: false, | |
| 1121 | + isaddstat: true, | |
| 1122 | + nudgeid: 'MzA4NzQ5-sEIVxK7WQVA%3d' | |
| 1123 | + }); | |
| 1124 | + | |
| 1125 | + let promoCode = document.getElementById("promoCode"), | |
| 1126 | + newCode = document.getElementById("newCode"); | |
| 1127 | + | |
| 1128 | + if (promoCode && newCode) { | |
| 1129 | + newCode.innerHTML = promoCode.innerHTML.split('').join(' '); | |
| 1130 | + } | |
| 1131 | + if(document.getElementById('nudgepreviousPageTitle')){ | |
| 1132 | + document.getElementById('nudgepreviousPageTitle').value = document.title; | |
| 1133 | + | |
| 1134 | + } | |
| 1135 | + }); | |
| 1136 | + | |
| 1137 | + function fireGaNudgePhone() { | |
| 1138 | + if (typeof gtag !== 'undefined' ) { | |
| 1139 | + var myPage = location.pathname.replace("/", ""); | |
| 1140 | + if (myPage === "") { myPage = "index"; } | |
| 1141 | + if (false ) { | |
| 1142 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 1143 | + gtag('event', 'phone_call', { 'property_name': propertyName, 'page_name': document.title, 'page_url': window.location.href, 'nudge_phone_number': '+1 819-809-9131'}); | |
| 1144 | + } | |
| 1145 | + gtag('event', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickNudge', 'event_label': myPage }); | |
| 1146 | + gtag('rc.send', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickNudge', 'event_label': myPage }); | |
| 1147 | + } | |
| 1148 | + } | |
| 1149 | + | |
| 1150 | +</script> | |
| 1151 | + | |
| 1152 | + | |
| 1153 | + | |
| 1154 | + | |
| 1155 | + <script> | |
| 1156 | + // Set visited timestamp, regardless of whether a nudge is on this page | |
| 1157 | + let visited = localStorage.getItem('timestamp'); | |
| 1158 | + if (!visited) { | |
| 1159 | + localStorage.setItem('timestamp', new Date().getTime()); | |
| 1160 | + } | |
| 1161 | + | |
| 1162 | + let innerPage = document.getElementById("innerpage"); | |
| 1163 | + // We check if device uses common breakpoint 767px, has touch capabilities, or supports DocumentTouch interface (supported by some older mobile browsers) | |
| 1164 | + let isMobileorTablet = window.matchMedia('(max-width: 767px)').mactches || ('ontouchstart' in window) || (window.DocumentTouch && document instanceof window.DocumentTouch); | |
| 1165 | + if (innerPage && !isMobileorTablet) { | |
| 1166 | + | |
| 1167 | + console.log('Not mobile or tablet'); | |
| 1168 | + let mainEle = document.querySelector("main"); | |
| 1169 | + let bannerImg = mainEle.previousElementSibling; | |
| 1170 | + | |
| 1171 | + | |
| 1172 | + if (bannerImg.classList.contains("fixed-background") && !bannerImg.classList.contains("ysi-innerpage-banner")) { | |
| 1173 | + console.log("No Banner Image Widget") | |
| 1174 | + bannerImg.classList.add("center-top"); | |
| 1175 | + let nudgeEle = document.getElementById("nudgeTop"); | |
| 1176 | + let menuEle = document.querySelector(".sticky-top"); | |
| 1177 | + | |
| 1178 | + function updateBackgroundPosition() { | |
| 1179 | + /* | |
| 1180 | + *We use the height of the nudge to correct | |
| 1181 | + *the position of the banner image when set to parallax | |
| 1182 | + */ | |
| 1183 | + let menuHeight = menuEle.offsetHeight; | |
| 1184 | + let nudgeHeight = nudgeEle.offsetHeight; | |
| 1185 | + bannerImg.style.backgroundPositionY = (nudgeHeight + menuHeight) + 'px'; | |
| 1186 | + } | |
| 1187 | + | |
| 1188 | + // Update background position | |
| 1189 | + updateBackgroundPosition(); | |
| 1190 | + | |
| 1191 | + // Update if window resized | |
| 1192 | + //window.addEventListener("resize", updateBackgroundPosition); | |
| 1193 | + | |
| 1194 | + // We chech for changes in the nudge widget | |
| 1195 | + let resizeObserver = new ResizeObserver(() => { | |
| 1196 | + updateBackgroundPosition(); | |
| 1197 | + }); | |
| 1198 | + | |
| 1199 | + resizeObserver.observe(nudgeEle); | |
| 1200 | + | |
| 1201 | + // We remove the classes that cause bg image to blow out | |
| 1202 | + bannerImg.classList.remove("cover", "center-center") | |
| 1203 | + }; | |
| 1204 | + | |
| 1205 | + } | |
| 1206 | + </script> | |
| 1207 | + | |
| 1208 | + | |
| 1209 | + | |
| 1210 | + | |
| 1211 | + | |
| 1212 | +<script> | |
| 1213 | + ysi.SiteId = 'NDc1ODQ0-LVf1bALv%2fwU%3d'; | |
| 1214 | + ysi.registerCallback(function () { | |
| 1215 | + ysi.SiteId='NDc1ODQ0-LVf1bALv%2fwU%3d'; | |
| 1216 | + if (window.location.search ) { | |
| 1217 | + if (window.location.search.includes("touchpoint")) { | |
| 1218 | + if (!ysi.cookie.read('Propleadtouchpoint_' + 2384767)) { | |
| 1219 | + var urlParams = new URLSearchParams(window.location.search); | |
| 1220 | + urlParams.forEach(function (value, key) { | |
| 1221 | + if (key == "touchpoint" && value.length > 0) { | |
| 1222 | + ysi.cookie.create("Propleadtouchpoint_" + 2384767, value, 0.0138889); | |
| 1223 | + } | |
| 1224 | + }); | |
| 1225 | + } | |
| 1226 | + } | |
| 1227 | + if (window.location.search.includes("conversationguid")) { | |
| 1228 | + | |
| 1229 | + var urlParams = new URLSearchParams(window.location.search); | |
| 1230 | + urlParams.forEach(function (value, key) { | |
| 1231 | + if (key == "conversationguid" && value.length > 0 && value.length != "undefined") { | |
| 1232 | + var conversationguidval = value; | |
| 1233 | + ysi.cookie.create("cgid", conversationguidval, 0.0138889); | |
| 1234 | + } | |
| 1235 | + }); | |
| 1236 | + } | |
| 1237 | + | |
| 1238 | + if (window.location.search.includes("ccpid")) { | |
| 1239 | + if (!ysi.cookie.read('ccpid_' + 2384767)) { | |
| 1240 | + var urlParams = new URLSearchParams(window.location.search); | |
| 1241 | + urlParams.forEach(function (value, key) { | |
| 1242 | + if (key == "ccpid" && value.length > 0) { | |
| 1243 | + ysi.cookie.create("ccpid_" + 2384767, value, 0.0138889); | |
| 1244 | + } | |
| 1245 | + }); | |
| 1246 | + } | |
| 1247 | + } | |
| 1248 | + | |
| 1249 | + } | |
| 1250 | + }); | |
| 1251 | + | |
| 1252 | + | |
| 1253 | +</script> | |
| 1254 | + | |
| 1255 | + | |
| 1256 | + | |
| 1257 | + | |
| 1258 | + | |
| 1259 | + | |
| 1260 | + | |
| 1261 | + | |
| 1262 | + | |
| 1263 | + | |
| 1264 | + <link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/office-hours-layout1-widget.558563.134322940780000000.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/office-hours-layout1-widget.558563.134322940780000000.css"></noscript> | |
| 1265 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/address-widget.558563.134322940780000000.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/address-widget.558563.134322940780000000.css"></noscript> | |
| 1266 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/nudge-widget.558563.134322940780000000.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/nudge-widget.558563.134322940780000000.css"></noscript> | |
| 1267 | +<link href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/nudge-discreet.558563.134322940780000000.css" rel="stylesheet" type="text/css"> | |
| 1268 | + | |
| 1269 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.modal.134322934460000000.js"></script> | |
| 1270 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.colors.134322934430000000.js"></script> | |
| 1271 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/nudge-personalized.134322934350000000.js"></script> | |
| 1272 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.bsn.134322934430000000.js"></script> | |
| 1273 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.lib.134322934460000000.js"></script> | |
| 1274 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.smartclasses.134322934470000000.js"></script> | |
| 1275 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/siteeditor-preview.134322934220000000.js"></script> | |
| 1276 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/incompatible-browser.134322934150000000.js" nomodule="nomodule"></script> | |
| 1277 | +<script src="https://cdngeneralmvc.rentcafe.com/admin/admin-area.js" defer="defer"></script> | |
| 1278 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.bootstrap.carousel.134322934410000000.js"></script> | |
| 1279 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/socialmedia-widget.134322934400000000.js"></script> | |
| 1280 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/focus-scroll-visible.134322934300000000.js"></script> | |
| 1281 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/nudge-widget.134322934350000000.js"></script> | |
| 1282 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/form-contact-session.134322934300000000.js"></script> | |
| 1283 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/login-links-dropdown.134322934320000000.js"></script> | |
| 1284 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/menu.134322934340000000.js"></script> | |
| 1285 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/servertranslation.134322934220000000.js"></script> | |
| 1286 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/recaptcha-widget.134322934370000000.js"></script> | |
| 1287 | +<script src="https://t.rentcafe.com/rctv1.4.min.js"></script> | |
| 1288 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/clicktrack-widget.134322934250000000.js"></script> | |
| 1289 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/leadattributionanddni.134322934320000000.js"></script> | |
| 1290 | + | |
| 1291 | + | |
| 1292 | + <script>ysi.serviceworker={register:function(){if("serviceWorker"in navigator){let e=document.getElementById("mainCSS"),r=e?encodeURI(e.getAttribute("href")):"",i=r?r.substr(r.indexOf(".")+1,r.lastIndexOf(".")-r.indexOf(".")-1):"",s=document.querySelectorAll("[data-name=property-logo]")[0],t=s?"PICTURE"===s.tagName?s.getElementsByTagName("img")[0].src:s.src:"",o="/serviceworker.js?version="+i+"&css="+r+"&logo="+(t=t?encodeURI(t):"")+"&serviceworker=1";navigator.serviceWorker.register(o)}}},ysi.serviceworker&&ysi.serviceworker.register();</script> | |
| 1293 | + | |
| 1294 | + | |
| 1295 | + | |
| 1296 | + | |
| 1297 | + | |
| 1298 | + | |
| 1299 | + | |
| 1300 | + | |
| 1301 | + | |
| 1302 | + | |
| 1303 | + | |
| 1304 | + | |
| 1305 | + | |
| 1306 | + | |
| 1307 | + | |
| 1308 | + | |
| 1309 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.localstorage.134322934460000000.js"></script> | |
| 1310 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/adwords_gadid.134322934040000000.js"></script> | |
| 1311 | + | |
| 1312 | +<script id="cookieinfo" src="https://cdngeneralmvc.rentcafe.com/common/js/cookiepolicy.js" data-bg="#454545" data-fg="#FFFFFF" data-link="#FFFFFF" data-cookie="CookieInfoScript" data-text-align="left" data-close-bg="#737373" data-close-text="Accept Notice" data-expires="Fri, 27 Aug 2027 19:16:59" data-message="By using this website you agree to our use of cookies as described in our <a href="https://www.aaltosuites.ca/privacypolicy" target="_blank" style="padding:10px;background-color:#E0E0E0 !important;color: #000000 !important; text-decoration: none;">cookie policy.</a>"></script> <script> | |
| 1313 | + document.addEventListener("DOMContentLoaded", function (event) { | |
| 1314 | + setTimeout(function () { | |
| 1315 | + var cookieclose = document.getElementsByClassName('cookieinfo-close'); | |
| 1316 | + if (cookieclose[0] != null) { | |
| 1317 | + cookieclose[0].setAttribute('data-selenium-id', 'CloseCookie'); | |
| 1318 | + } | |
| 1319 | + }, 1000); | |
| 1320 | + }); | |
| 1321 | + </script> | |
| 1322 | + | |
| 1323 | + <!-- | |
| 1324 | + <yardi-add-sass path="widgets/go-to-top" async="true" /> | |
| 1325 | +--> | |
| 1326 | + | |
| 1327 | +<div id="goToTop" role="complementary" aria-labelledby="gototoparialabel" lang=""> | |
| 1328 | + <button data-selenium-id="btngototop" class="btn btn-dark border-0 widget-left fadeOut" lang=""><svg width="16px" height="26px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z"></path></svg><span class="sr-only" id="gototoparialabel" lang="">Go to top</span></button> | |
| 1329 | +</div> | |
| 1330 | + | |
| 1331 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/go-to-top.134322934300000000.js" defer="defer"></script> | |
| 1332 | + | |
| 1333 | + | |
| 1334 | + | |
| 1335 | + | |
| 1336 | + | |
| 1337 | + <style> | |
| 1338 | + :root { | |
| 1339 | + --helpwidget-background-color: #000000; | |
| 1340 | + --helpwidget-outline-color: #ffffff; | |
| 1341 | + } | |
| 1342 | + </style> | |
| 1343 | +<div id="help-widget" class="w-100 widget-right" role="complementary" aria-label="Front desk - how can we help you?" lang=""> | |
| 1344 | + <input type="hidden" name="propertyid" id="propertyid" value="2384767"> | |
| 1345 | + | |
| 1346 | + | |
| 1347 | + | |
| 1348 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/help-widget-default.558563.134322940780000000.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/help-widget-default.558563.134322940780000000.css"></noscript> | |
| 1349 | + | |
| 1350 | + | |
| 1351 | +<!---START: Layout horizontal---> | |
| 1352 | +<!---NOTE: .frontdesk-animation is used for animation. Remove class if you want to remove animation---> | |
| 1353 | + | |
| 1354 | +<div id="frontDesk-widget-horizontal" class="frontDesk-widget-horizontal horizontal position-fixed d-flex frontdesk-animation" lang=""> | |
| 1355 | + <button id="btnFrontDesk" type="button" class="btn btn-primary hide-frontDesk-widget bell animation-bell" aria-expanded="false" data-selenium-id="showHidefrontDeskWidget" lang="" aria-label="Show Front Desk"> | |
| 1356 | + <span class="d-block bounce-dot" lang=""></span> | |
| 1357 | + <span class="btn-bell d-inline-block" lang=""> | |
| 1358 | + <span class="fas fa-concierge-bell" aria-hidden="true" lang=""></span> | |
| 1359 | + <span class="sr-only" lang="">Front desk options </span> | |
| 1360 | + </span> | |
| 1361 | + </button> | |
| 1362 | + <div id="frontDesk-widget-wrapper" class="frontDesk-widget-wrapper close-widget" lang=""> | |
| 1363 | + <!-- Email Us - modal --> | |
| 1364 | + <button id="email-us-btn" data-modal-url="/contactus?IsDialog=1&IsFrontDesk=true" type="button" class="btn btn-primary email-us-btn widget-btns trigger-popup" data-selenium-id="emailUs" data-toggle="tooltip" data-placement="top" data-animation="true" data-title="Envoyez-nous un courriel" lang="" data-original-title="Envoyez-nous un courriel" tabindex="-1" disabled="disabled" aria-hidden="true"><svg focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px" height="24px" viewBox="0 0 24 24" stroke-width="2"><g stroke-width="2" transform="translate(0, 0)"><polyline data-cap="butt" data-color="color-2" points="1.614 3.558 12 13 22.385 3.559" fill="none" stroke="#ffffff" stroke-miterlimit="10" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter"></polyline> <rect x="1" y="3" width="22" height="18" rx="2" ry="2" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect></g></svg><span class="sr-only" lang="">Envoyez-nous un courriel</span></button> | |
| 1365 | + | |
| 1366 | + <!-- Call Us - mobile --> | |
| 1367 | + <a id="call-us-btn-phone" href="tel:(819) 809-9131" onclick="callusGA4trackM();" class="btn btn-primary click-to-call-href click-to-call-title call-us-btn widget-btns d-inline-block d-md-none" data-selenium-id="callUsPhone" data-toggle="tooltip" data-placement="top" data-animation="true" data-title="Call Us at (819) 809-9131" lang="" data-original-title="Call Us at (819) 809-9131" tabindex="-1" aria-hidden="true"><svg focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px" height="24px" viewBox="0 0 48 48" stroke-width="4"><g stroke-width="4" transform="translate(0, 0)"><path d="M31.041,28.94l-3.423,4.279A36.116,36.116,0,0,1,14.782,20.384l4.279-3.423a2.908,2.908,0,0,0,.84-3.45L16,4.728a2.908,2.908,0,0,0-3.39-1.635L5.186,5.019A2.925,2.925,0,0,0,3.028,8.25,43.142,43.142,0,0,0,39.751,44.973a2.925,2.925,0,0,0,3.23-2.158l1.926-7.425A2.91,2.91,0,0,0,43.273,32l-8.782-3.9A2.907,2.907,0,0,0,31.041,28.94Z" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="4" stroke-linejoin="miter"></path></g></svg><span class="sr-only" lang="">APPELEZ-NOUS</span></a> | |
| 1368 | + <!-- Call Us - desktop --> | |
| 1369 | + <button id="call-us-btn" aria-label="Call Us" type="button" class="btn btn-primary click-to-call-title call-us-btn widget-btns trigger-popup d-none d-md-inline-block" data-selenium-id="callUsDesktop" data-toggle="tooltip" data-placement="top" data-animation="true" data-title="Call Us at (819) 809-9131" lang="" data-original-title="Call Us at (819) 809-9131" tabindex="-1" disabled="disabled" aria-hidden="true"><svg focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px" height="24px" viewBox="0 0 48 48" stroke-width="4"><g stroke-width="4" transform="translate(0, 0)"><path d="M31.041,28.94l-3.423,4.279A36.116,36.116,0,0,1,14.782,20.384l4.279-3.423a2.908,2.908,0,0,0,.84-3.45L16,4.728a2.908,2.908,0,0,0-3.39-1.635L5.186,5.019A2.925,2.925,0,0,0,3.028,8.25,43.142,43.142,0,0,0,39.751,44.973a2.925,2.925,0,0,0,3.23-2.158l1.926-7.425A2.91,2.91,0,0,0,43.273,32l-8.782-3.9A2.907,2.907,0,0,0,31.041,28.94Z" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="4" stroke-linejoin="miter"></path></g></svg></button> | |
| 1370 | + | |
| 1371 | + | |
| 1372 | + | |
| 1373 | + | |
| 1374 | + | |
| 1375 | + | |
| 1376 | + <!-- Schedule tour --> | |
| 1377 | + <button id="schedule-a-tour-btn" data-modal-url="/scheduletour?IsDialog=true" type="button" class="btn btn-primary schedule-a-tour-btn widget-btns trigger-popup" data-selenium-id="scheduleTour" data-toggle="tooltip" data-placement="top" data-animation="true" data-title="Planifier une visite" lang="" data-original-title="Planifier une visite" tabindex="-1" disabled="disabled" aria-hidden="true"><svg focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px" height="24px" viewBox="0 0 24 24" stroke-width="2"><g stroke-width="2" transform="translate(0, 0)"><rect data-color="color-2" x="5" y="12" width="2" height="1" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect> <rect data-color="color-2" x="11" y="12" width="2" height="1" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect> <rect data-color="color-2" x="5" y="17" width="2" height="1" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect> <rect data-color="color-2" x="11" y="17" width="2" height="1" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect> <rect data-color="color-2" x="17" y="12" width="2" height="1" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect> <rect data-color="color-2" data-stroke="none" x="5" y="12" width="2" height="1" fill="#ffffff"></rect> <rect data-color="color-2" data-stroke="none" x="11" y="12" width="2" height="1" fill="#ffffff"></rect> <rect data-color="color-2" data-stroke="none" x="5" y="17" width="2" height="1" fill="#ffffff"></rect> <rect data-color="color-2" data-stroke="none" x="11" y="17" width="2" height="1" fill="#ffffff"></rect> <rect data-color="color-2" data-stroke="none" x="17" y="12" width="2" height="1" fill="#ffffff"></rect> <rect x="1" y="3" width="22" height="19" rx="2" ry="2" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect> <line x1="6" y1="1" x2="6" y2="4" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></line> <line x1="18" y1="1" x2="18" y2="4" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></line> <line x1="1" y1="8" x2="23" y2="8" fill="none" stroke="#ffffff" stroke-miterlimit="10" stroke-width="2"></line></g></svg><span class="sr-only" lang="">Planifier une visite</span></button> | |
| 1378 | + | |
| 1379 | + | |
| 1380 | + </div> | |
| 1381 | +</div> | |
| 1382 | +<!---END: Layout horizontal---> | |
| 1383 | +<!--- Show/Hide aria-label for Front Desk button ---> | |
| 1384 | +<script> | |
| 1385 | +(function (d) { | |
| 1386 | + "use strict"; | |
| 1387 | + function updateBtnFrontDeskAriaLabel(btn) { | |
| 1388 | + if (!btn || btn.id !== "btnFrontDesk") return; | |
| 1389 | + var expanded = btn.getAttribute("aria-expanded"); | |
| 1390 | + btn.setAttribute("aria-label", expanded === "true" ? "Hide Front Desk" : "Show Front Desk"); | |
| 1391 | + } | |
| 1392 | + function init() { | |
| 1393 | + var btn = d.getElementById("btnFrontDesk"); | |
| 1394 | + if (!btn) return; | |
| 1395 | + updateBtnFrontDeskAriaLabel(btn); | |
| 1396 | + if (window.MutationObserver) { | |
| 1397 | + var observer = new MutationObserver(function () { updateBtnFrontDeskAriaLabel(btn); }); | |
| 1398 | + observer.observe(btn, { attributes: true, attributeFilter: ["aria-expanded"] }); | |
| 1399 | + } | |
| 1400 | + } | |
| 1401 | + if (d.readyState === "loading") d.addEventListener("DOMContentLoaded", init); | |
| 1402 | + else init(); | |
| 1403 | +})(document); | |
| 1404 | +</script> | |
| 1405 | + | |
| 1406 | + <style> | |
| 1407 | + :root { | |
| 1408 | + --helpwidget-window-x-offset: 0px; | |
| 1409 | + --helpwidget-window-y-offset: 0px; | |
| 1410 | + } | |
| 1411 | + </style> | |
| 1412 | + | |
| 1413 | + <!--START Modal: Contact Us / Email Us --> | |
| 1414 | + <div id="email-us-window" class="popup-widgets-window draggable scrollable " lang=""> | |
| 1415 | + <div class="popup-content" lang=""> | |
| 1416 | + <div class="popup-header modal-header" lang=""> | |
| 1417 | + <h2 class="m-0 text-truncate" lang="">Contactez-nous</h2> | |
| 1418 | + <button class="close" aria-label="Close this dialog window" data-selenium-id="close" lang=""> <span aria-hidden="true" class="fa fa-times" lang=""></span></button> | |
| 1419 | + </div> | |
| 1420 | + <div id="help-widget-email-modal-body" class="popup-body p-4" lang=""> | |
| 1421 | + </div> | |
| 1422 | + </div> | |
| 1423 | + </div> | |
| 1424 | + <!--END Modal: Contact Us / Email Us --> | |
| 1425 | + <!--START Modal: Call Us --> | |
| 1426 | + <div id="call-us-window" class="popup-widgets-window draggable scrollable " lang=""> | |
| 1427 | + <div class="popup-content" lang=""> | |
| 1428 | + <div class="popup-header modal-header" lang=""> | |
| 1429 | + <h2 class="m-0 text-truncate" lang="">APPELEZ-NOUS</h2> | |
| 1430 | + <button class="close" aria-label="Close this dialog window" data-selenium-id="close" lang=""> <span aria-hidden="true" class="fa fa-times" lang=""></span></button> | |
| 1431 | + </div> | |
| 1432 | + <div class="popup-body p-4 text-center" lang=""> | |
| 1433 | + <strong class="text-xl mb-4 d-block" lang=""> | |
| 1434 | + | |
| 1435 | + <style>.mobile-only .click-to-call{display:none}</style> | |
| 1436 | + | |
| 1437 | + <div class="ysi-phone-widget ysi-phone-wrapper" lang=""> | |
| 1438 | + <div class="d-inline-flex" lang=""> | |
| 1439 | + <a data-selenium-id="click_to_call" onclick="fireGaPhone()" href="tel:+1 819-809-9131" aria-label="Call Aalto at +1 819-809-9131" class="ysi-phone-number click-to-call-href text-decoration-none color-inherit " lang=""> | |
| 1440 | + <span aria-hidden="true" class="fa-flip-horizontal fas fa-phone mobile-phone-icon" lang=""></span> | |
| 1441 | + <span class="click-to-call ml-2 text-underline" lang="">+1 819-809-9131</span> | |
| 1442 | + </a> | |
| 1443 | + | |
| 1444 | + </div> | |
| 1445 | + </div> | |
| 1446 | + <script> | |
| 1447 | + function fireGaPhone() { | |
| 1448 | + if (typeof gtag != 'undefined') { | |
| 1449 | + var myPage = location.pathname.replace("/", ""); | |
| 1450 | + if (myPage == "") { myPage = "index"; } | |
| 1451 | + if (false ) { | |
| 1452 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 1453 | + gtag('event', 'phone_call', { 'property_name': propertyName, 'page_name': document.title, 'page_url': window.location.href, 'header_phone_number': '+1 819-809-9131'}); | |
| 1454 | + } | |
| 1455 | + gtag('event', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 1456 | + gtag('rc.send', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 1457 | + } | |
| 1458 | + } | |
| 1459 | + </script> | |
| 1460 | +</strong> | |
| 1461 | + | |
| 1462 | + | |
| 1463 | + <div class="ysi-office-hours-widget ysi-office-hours-wrapper" lang=""> | |
| 1464 | + <div class="d-inline-flex" lang=""> | |
| 1465 | + <div class="ysi-office-hours" data-selenium-id="SID_footer_officeHours" lang=""> | |
| 1466 | + <ul class="list-unstyled mb-0" lang=""> | |
| 1467 | + <li class=" " lang=""> | |
| 1468 | + <span class="office-hours-day" data-selenium-id="OHMondayFriday" lang="">Lundi<span class="sr-only" lang="">à</span>- Vendredi :</span> | |
| 1469 | + <span class="office-hours-time" data-selenium-id="OHMondayFridayTime" lang="">9h<span class="sr-only" lang="">à</span>- 18h</span> | |
| 1470 | +</li> | |
| 1471 | + <li class=" " lang=""> | |
| 1472 | + <span class="office-hours-day" data-selenium-id="OHSaturday" lang="">Samedi :</span> | |
| 1473 | + <span class="office-hours-time" data-selenium-id="OHSaturdayTime" lang="">10h<span class="sr-only" lang="">à</span>- 17h</span> | |
| 1474 | +</li> | |
| 1475 | + <li class=" " lang=""> | |
| 1476 | + <span class="office-hours-day" data-selenium-id="OHSunday" lang="">Dimanche :</span> | |
| 1477 | + <span class="office-hours-time" data-selenium-id="OHSundayTime" lang="">Fermé</span> | |
| 1478 | +</li> | |
| 1479 | + </ul> | |
| 1480 | + </div> | |
| 1481 | + </div> | |
| 1482 | + </div> | |
| 1483 | + | |
| 1484 | + </div> | |
| 1485 | + <div class="border-top px-4 py-4 text-center" lang=""> | |
| 1486 | + | |
| 1487 | + | |
| 1488 | + | |
| 1489 | + | |
| 1490 | + | |
| 1491 | +<div class="ysi-address-widget ysi-address-wrapper vertical" lang=""> | |
| 1492 | + <div class="d-inline-flex" lang=""> | |
| 1493 | + <address class="ysi-address"> | |
| 1494 | + <a class="address-link color-inherit d-block" href="https://maps.google.com?q=10 Rue Jos-Montferrand Gatineau, QC J8X 0A6" target="_blank" rel="noreferrer" lang=""> | |
| 1495 | + <div itemprop="name" data-selenium-id="address_propname" lang="">Aalto</div> | |
| 1496 | + <div itemprop="address" lang=""> | |
| 1497 | + <div data-selenium-id="address_street" lang=""> | |
| 1498 | + 10 Rue Jos-Montferrand | |
| 1499 | + </div> | |
| 1500 | + <div lang=""> | |
| 1501 | + <span data-selenium-id="address_city" lang="">Gatineau</span>,<span data-selenium-id="address_state" lang="">QC</span><span data-selenium-id="address_zip" lang=""> J8X 0A6</span> | |
| 1502 | + </div> | |
| 1503 | + </div> | |
| 1504 | + <span class="sr-only" lang="">S'ouvre dans un nouvel onglet</span> | |
| 1505 | + </a> | |
| 1506 | + </address> | |
| 1507 | + | |
| 1508 | + </div> | |
| 1509 | +</div> | |
| 1510 | + | |
| 1511 | + | |
| 1512 | + </div> | |
| 1513 | + </div> | |
| 1514 | + </div> | |
| 1515 | + <!--END Modal: Call Us --> | |
| 1516 | + | |
| 1517 | + | |
| 1518 | + | |
| 1519 | + <div id="schedule-a-tour-window" class="popup-widgets-window draggable scrollable " lang=""> | |
| 1520 | + <div class="popup-content" lang=""> | |
| 1521 | + <div class="popup-header modal-header" lang=""> | |
| 1522 | + <h2 class="m-0 text-truncate" lang="">Planifier une visite</h2> | |
| 1523 | + <button class="close" aria-label="Close this dialog window" data-selenium-id="close" lang=""> <span aria-hidden="true" class="fa fa-times" lang=""></span></button> | |
| 1524 | + </div> | |
| 1525 | + <div id="help-widget-schedule-a-tour-modal-body" class="popup-body" lang=""> | |
| 1526 | + <!-- Modal content loaded here --> | |
| 1527 | + </div> | |
| 1528 | + </div> | |
| 1529 | + </div> | |
| 1530 | + | |
| 1531 | +</div> | |
| 1532 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.modal.134322934460000000.js"></script> | |
| 1533 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/recaptcha-widget.134322934370000000.js"></script> | |
| 1534 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/contactus.134322934260000000.js"></script> | |
| 1535 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/contactmodal-widget.134322934250000000.js"></script> | |
| 1536 | +<script> | |
| 1537 | + | |
| 1538 | + | |
| 1539 | + function textGA4track(eventName) { | |
| 1540 | + if (typeof gtag != 'undefined') { | |
| 1541 | + gtag('event', eventName, { 'property_name': document.querySelector('meta[name="author"]').content, 'page_url': window.location.href, 'page_name': document.title, 'form_name': 'text_us', 'button_label': 'text_us' }); | |
| 1542 | + } | |
| 1543 | + } | |
| 1544 | + | |
| 1545 | + let chatBtn = document.querySelector('#rentcafe-conversations-webchat-btn'); | |
| 1546 | + if (chatBtn) { | |
| 1547 | + chatBtn.addEventListener('click', function () { | |
| 1548 | + if (typeof gtag != 'undefined') { | |
| 1549 | + gtag('event', 'rentcafe_chatbot', { | |
| 1550 | + 'property_name': document.querySelector('meta[name="author"]').content, | |
| 1551 | + 'page_url': window.location.href, | |
| 1552 | + 'page_name': document.title, | |
| 1553 | + 'form_name': 'chat', | |
| 1554 | + 'button_label': 'chat_with_us' | |
| 1555 | + }); | |
| 1556 | + } | |
| 1557 | + }); | |
| 1558 | + } | |
| 1559 | + | |
| 1560 | + let textUsBtn = document.querySelector('#text-us-btn'); | |
| 1561 | + if (textUsBtn) { | |
| 1562 | + textUsBtn.addEventListener('click', function () { | |
| 1563 | + textGA4track('front_desk'); | |
| 1564 | + }); | |
| 1565 | + } | |
| 1566 | + | |
| 1567 | + let rccTextUsBtn = document.querySelector('#rentcafe-conversations-sms-btn'); | |
| 1568 | + if (rccTextUsBtn) { | |
| 1569 | + rccTextUsBtn.addEventListener('click', function () { | |
| 1570 | + textGA4track('rentcafe_chatbot'); | |
| 1571 | + }); | |
| 1572 | + } | |
| 1573 | + | |
| 1574 | + let emailUsBtn = document.querySelector('#email-us-btn'); | |
| 1575 | + if (emailUsBtn) { | |
| 1576 | + emailUsBtn.addEventListener('click', function () { | |
| 1577 | + if (typeof gtag != 'undefined') { | |
| 1578 | + gtag('event', 'open_modal', { | |
| 1579 | + 'property_name': document.querySelector('meta[name="author"]').content, | |
| 1580 | + 'page_url': window.location.href, | |
| 1581 | + 'page_name': document.title, | |
| 1582 | + 'form_name': 'contact_us', | |
| 1583 | + 'button_label': 'email_us' | |
| 1584 | + }); | |
| 1585 | + } | |
| 1586 | + }); | |
| 1587 | + } | |
| 1588 | + | |
| 1589 | + // Desktop Call Us button | |
| 1590 | + let callUsDbtn = document.querySelector('#call-us-btn'); | |
| 1591 | + if (callUsDbtn) { | |
| 1592 | + callUsDbtn.addEventListener('click', function() { | |
| 1593 | + if (typeof gtag !== 'undefined') { | |
| 1594 | + gtag('event', 'open_modal', { | |
| 1595 | + 'property_name': document.querySelector('meta[name="author"]').content, | |
| 1596 | + 'page_url': window.location.href, | |
| 1597 | + 'page_name': document.title, | |
| 1598 | + 'form_name': 'call_us', | |
| 1599 | + 'button_label': 'call_us' | |
| 1600 | + }); | |
| 1601 | + } | |
| 1602 | + }); | |
| 1603 | + } | |
| 1604 | + | |
| 1605 | + // Schedule A Tour button | |
| 1606 | + let scheduleTourBtn = document.querySelector('#schedule-a-tour-btn'); | |
| 1607 | + if (scheduleTourBtn) { | |
| 1608 | + scheduleTourBtn.addEventListener('click', function() { | |
| 1609 | + if (typeof gtag !== 'undefined') { | |
| 1610 | + gtag('event', 'open_modal', { | |
| 1611 | + 'property_name': document.querySelector('meta[name="author"]').content, | |
| 1612 | + 'page_url': window.location.href, | |
| 1613 | + 'page_name': document.title, | |
| 1614 | + 'form_name': 'schedule_a_tour', | |
| 1615 | + 'button_label': 'schedule_a_tour' | |
| 1616 | + }); | |
| 1617 | + } | |
| 1618 | + }); | |
| 1619 | + } | |
| 1620 | + | |
| 1621 | +</script> | |
| 1622 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/help-widget.134322934310000000.js"></script> | |
| 1623 | + <!-- Nudge positioning --> | |
| 1624 | + <script> | |
| 1625 | + ysi.helpWidgetOverlapNudge = false; | |
| 1626 | + </script> | |
| 1627 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/help-widget-nudge-positioning.134322934300000000.js"></script> | |
| 1628 | + <!-- ScheduleTourEnabled --> | |
| 1629 | + <link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/ysi.datepicker.558563.134322940780000000.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/ysi.datepicker.558563.134322940780000000.css"></noscript> | |
| 1630 | + <link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/schedule-a-tour.558563.134322940780000000.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/schedule-a-tour.558563.134322940780000000.css"></noscript> | |
| 1631 | + <link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/help-widget-schedule-a-tour.558563.134322940780000000.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/help-widget-schedule-a-tour.558563.134322940780000000.css"></noscript> | |
| 1632 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.datepicker.134322934440000000.js" defer="defer"></script> | |
| 1633 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/schedule-tour.134322934380000000.js" defer="defer"></script> | |
| 1634 | + | |
| 1635 | + | |
| 1636 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/intltelinput.134322934150000000.js"></script> | |
| 1637 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/inttelphoneinput.134322934160000000.js"></script> | |
| 1638 | + <link href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/intlTelInput.558563.134322940780000000.css" rel="stylesheet" type="text/css"> | |
| 1639 | +<link data-href="https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/overlayscrollbar.558563.134322940780000000.css" rel="stylesheet" type="text/css" id="overlayScrollbarStyle"> | |
| 1640 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.scrollbars.134322934460000000.js"></script> | |
| 1641 | +<script data-src="https://cdngeneralmvc.rentcafe.com/common/js/overlayscrollbars.134322934200000000.js" data-delayload="true" id="overlayScrollbarScript" data-callback="load"></script> <script type="application/ld+json"> | |
| 1642 | +{ | |
| 1643 | + "@context": "https://www.schema.org", | |
| 1644 | + "@type": [ | |
| 1645 | + "LocalBusiness", | |
| 1646 | + "ApartmentComplex" | |
| 1647 | + ], | |
| 1648 | + "url": "https://www.aaltosuites.ca/", | |
| 1649 | + "logo": "https://resource.rentcafe.com/image/upload/q_auto,f_auto/s3/2/144684/aalto(1).png", | |
| 1650 | + "image": "", | |
| 1651 | + "description": "\n <p>Aalto's light-filled suites are available from studios to two-bedroom plus den, with a layout to suit every lifestyle. Each home offers stunning views from your private balcony, and is finished with quartz countertops, laminate flooring throughout, window coverings in the living room and bedroom, 4-piece stainless steel Energy Star appliances, in-suite laundry, and much more.<br> <br>Our accessible1-bedroom suites are outfitted with the latest energy-saving appliances and embrace the principles of Accessible Design. Select 1-bedroom suites feature a range of accessible design elements such as roll under cabinets in the kitchen and bathroom, colour contrasts for vision impairment, fold-down entryway benches, and e-scooter charging stations.</p>", | |
| 1652 | + "priceRange": "$$", | |
| 1653 | + "photos": [ | |
| 1654 | + { | |
| 1655 | + "@type": "ImageObject", | |
| 1656 | + "url": "2/144684/dji_0349(1).jpg" | |
| 1657 | + } | |
| 1658 | + ], | |
| 1659 | + "openingHoursSpecification": [ | |
| 1660 | + { | |
| 1661 | + "@type": "OpeningHoursSpecification", | |
| 1662 | + "dayOfWeek": [ | |
| 1663 | + "Saturday" | |
| 1664 | + ], | |
| 1665 | + "opens": "10:00:00", | |
| 1666 | + "closes": "17:00:00" | |
| 1667 | + }, | |
| 1668 | + { | |
| 1669 | + "@type": "OpeningHoursSpecification", | |
| 1670 | + "dayOfWeek": [ | |
| 1671 | + "Sunday" | |
| 1672 | + ], | |
| 1673 | + "opens": "00:00:00", | |
| 1674 | + "closes": "00:00:00" | |
| 1675 | + }, | |
| 1676 | + { | |
| 1677 | + "@type": "OpeningHoursSpecification", | |
| 1678 | + "dayOfWeek": [ | |
| 1679 | + "Monday", | |
| 1680 | + "Tuesday", | |
| 1681 | + "Wednesday", | |
| 1682 | + "Thursday", | |
| 1683 | + "Friday" | |
| 1684 | + ], | |
| 1685 | + "opens": "09:00:00", | |
| 1686 | + "closes": "18:00:00" | |
| 1687 | + } | |
| 1688 | + ], | |
| 1689 | + "sameAs": [ | |
| 1690 | + "https://www.facebook.com/zibiCanada/", | |
| 1691 | + "https://www.instagram.com/zibican/?hl=en" | |
| 1692 | + ], | |
| 1693 | + "name": "Aalto", | |
| 1694 | + "address": { | |
| 1695 | + "@type": "PostalAddress", | |
| 1696 | + "addressLocality": "Gatineau", | |
| 1697 | + "addressRegion": "QC", | |
| 1698 | + "addressCountry": "CA", | |
| 1699 | + "postalCode": "J8X 0A6", | |
| 1700 | + "streetAddress": "10 Rue Jos-Montferrand" | |
| 1701 | + }, | |
| 1702 | + "telephone": "(819) 809-9131", | |
| 1703 | + "hasMap": "" | |
| 1704 | +}</script> | |
| 1705 | + | |
| 1706 | + | |
| 1707 | + <yardi-widget-siteeditorscript></yardi-widget-siteeditorscript> | |
| 1708 | + | |
| 1709 | + | |
| 1710 | +<script>(function(){function c(){var b=a.contentDocument||(a.contentWindow&&a.contentWindow.document);if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'a31d69ed0a0c9e6a',t:'MTc4Nzg1ODIxOQ=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script><iframe height="1" width="1" style="position: absolute; top: 0px; left: 0px; border-width: medium; border-style: none; border-color: currentcolor; border-image: none; visibility: hidden;"></iframe> | |
| 1711 | +<div class="cookieinfo" style="position: fixed; display: flex; justify-content: space-between; left: 0px; right: 0px; height: auto; min-height: 21px; z-index: 2147483647; background: rgb(69, 69, 69); color: rgb(255, 255, 255); line-height: 21px; padding: 8px 18px; font-family: verdana, arial, sans-serif; font-size: 14px; text-align: left; bottom: 0px; opacity: 1;"><span style="display:block;padding:5px 0 5px 0;">By using this website you agree to our use of cookies as described in our <a href="https://www.aaltosuites.ca/privacypolicy" target="_new" style="padding: 10px; text-decoration: underline; background-color: rgb(224, 224, 224) !important; color: rgb(0, 0, 0) !important; display: inline-block;" class="color-inherit"><span>cookie policy.</span> <span class="sr-only">Opens in a new tab</span></a> <img alt="" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="display: none;"></span> <button class="cookieinfo-close btn btn-primary btn-sm text-capitalize border-0" type="button" style="float: right; display: block; padding: 5px 8px; min-width: 100px; margin-left: 5px; border-radius: 5px; cursor: pointer; color: rgb(0, 0, 0); background: rgb(241, 214, 0); text-align: center;" data-selenium-id="CloseCookie">Accepter le préavis</button></div></body></html> | |
| \ No newline at end of file | ||
deleted
tests/fixtures/aalto/7f32c075ca02ee9f4d34.json
+0 −1
@@ -1 +0,0 @@ | ||
| 1 | −{"success":true,"data":{"metadata":{"keywords":"apartments, rentals, apartment guide, apartment finder, apartment search, apartment locator, apartments for rent, apartment listings","theme-color":"#999","language":"fr-ca","referrer":"always","viewport":"width=device-width, initial-scale=1.0 ","author":"Aalto","description":"Check for available units at Aalto in Gatineau, QC. View floor plans, photos, and community amenities. Make Aalto your new home.","title":"Floor Plans of Aalto in Gatineau, QC","favicon":"https://resource.rentcafe.com/image/upload/q_auto,f_auto,w_152,h_152/s3/2/144684/favicon%20(1).png","scrapeId":"019fe4fd-2c07-7539-8b4d-1792fae541b2","sourceURL":"https://www.aaltosuites.ca/floorplans","url":"https://www.aaltosuites.ca/floorplans","statusCode":200,"contentType":"text/html; charset=utf-8","proxyUsed":"basic","cacheState":"hit","cachedAt":"2026-08-09T05:26:58.740Z","creditsUsed":1,"concurrencyLimited":false},"html":"<!DOCTYPE html><html lang=\"fr-ca\" style=\"--helpwidget-bottom-offset: 0px;\">\n\n<body id=\"innerpage\">\n \n\n \n\n \n\n \n\n\n \n\n\n<a id=\"skip-nav\" href=\"https://www.aaltosuites.ca/floorplans#main-content\" lang=\"\">Passer au contenu principal</a>\n \n\n\n\n \n\n\n\n\n\n\n\n \n \n\n\n\n\n\n\n\n \n\n <main id=\"main-content\"><div style=\"background-color:rgba(249,249,245,1) !important\" class=\"se-custom-bgcolor\" lang=\"\"><div class=\"container\" lang=\"\"><div class=\"row\" lang=\"\"><div class=\"justify-content-start align-items-stretch flex-column d-flex text-left py-5 col-12 col-lg-12\" lang=\"\"><div class=\"row\" lang=\"\"><div class=\"justify-content-start align-items-stretch flex-column d-flex text-left col-12 col-lg-12\" lang=\"\"></div></div><div class=\"row\" lang=\"\"><div class=\"justify-content-start align-items-stretch flex-column d-flex d-md-none text-left col-12 col-lg-12\" lang=\"\"><h1 class=\"text-uppercase page-heading mobile\" data-selenium-id=\"SID_h1Tag\" lang=\"\">Plans d'étages</h1></div></div><div class=\"row\" lang=\"\"><div class=\"justify-content-start align-items-stretch flex-column d-flex text-left col-12 col-lg-12\" lang=\"\">\n \n\n\n \n \n <div class=\"row\" lang=\"\">\n <div class=\"col-12 mb-3\" data-selenium-id=\"FloorplansTopNarrative\" lang=\"\">\n \n\n\n\n </div>\n </div>\n \n <div class=\"row\" lang=\"\">\n <div class=\"col-12 page-content-floorplans floorplans-layout-tab\" lang=\"\">\n\n \n\n <div id=\"fp-container\" lang=\"\">\n \n \n\n\n\n \n\n<!-- Optimized Floor Plans Layout Start -->\n<div class=\"page-content-floorplans optimized mt-3 pagebreak-before\" lang=\"\">\n\n\t<!-- views menu -->\n\n\t<div class=\"tab-content\" lang=\"\">\n <div class=\"tab-pane fade show active\" id=\"gridView\" lang=\"\">\n\n <!-- START: filters -->\n <div id=\"floorplans-filter\" class=\"border-bottom mb-5\" lang=\"\">\n <form class=\"form-row row\" id=\"aptsearch\" method=\"post\" action=\"https://www.aaltosuites.ca/availableunits\">\n \n <!-- Beds dropdown -->\n <div class=\"form-group col-6 col-sm-6 col-md\" lang=\"\">\n <div id=\"beds-dropdown\" class=\"dropdown floating-label floating-label-sm\" lang=\"\">\n <button class=\"btn btn-sm dropdown-toggle pr-5\" type=\"button\" id=\"beds-dropdown-toggle\" data-toggle=\"dropdown\" data-persist=\"true\" aria-expanded=\"false\" lang=\"\"><span>chambres</span> </button>\n <div class=\"p-3 dropdown-menu text-sm\" aria-labelledby=\"beds-dropdown-toggle\" lang=\"\">\n <fieldset>\n <legend class=\"sr-only\" lang=\"\">Choose your desired number of bedrooms</legend>\n <div class=\"checkbox\" lang=\"\">\n <input id=\"0-beds-checkbox\" type=\"checkbox\" value=\"0\" name=\"bedrooms\" class=\"beds-checkbox mr-2\">\n <label for=\"0-beds-checkbox\" lang=\"\">studio</label>\n </div>\n <div class=\"checkbox\" lang=\"\">\n <input id=\"1-beds-checkbox\" type=\"checkbox\" value=\"1\" name=\"bedrooms\" class=\"beds-checkbox mr-2\">\n <label for=\"1-beds-checkbox\" lang=\"\">1 chambre à coucher</label>\n </div>\n <div class=\"checkbox\" lang=\"\">\n <input id=\"2-beds-checkbox\" type=\"checkbox\" value=\"2\" name=\"bedrooms\" class=\"beds-checkbox mr-2\">\n <label for=\"2-beds-checkbox\" lang=\"\">\n 2 Chambres à coucher\n </label>\n </div>\n </fieldset>\n <div lang=\"\">\n <button id=\"beds-clear\" type=\"button\" class=\"float-left d-none btn btn-link font-base text-muted text-capitalize btn-sm\" lang=\"\">Effacer</button>\n <button id=\"beds-done\" type=\"button\" class=\"float-right btn btn-link font-base text-black text-capitalize btn-sm\" lang=\"\">Terminé</button>\n </div>\n </div>\n </div>\n </div>\n <!-- Baths dropdown -->\n <div class=\"form-group col-6 col-sm-6 col-md\" lang=\"\">\n <div id=\"baths-dropdown\" class=\"dropdown floating-label floating-label-sm\" lang=\"\">\n <button class=\"btn btn-sm dropdown-toggle pr-5\" type=\"button\" id=\"baths-dropdown-toggle\" data-toggle=\"dropdown\" data-persist=\"true\" aria-expanded=\"false\" lang=\"\"><span>Salles de bains</span> </button>\n <div class=\"p-3 dropdown-menu text-sm\" aria-labelledby=\"baths-dropdown-toggle\" lang=\"\">\n <fieldset>\n <legend class=\"sr-only\" lang=\"\">Choose your desired number of bathrooms</legend>\n <div class=\"checkbox\" lang=\"\">\n <input id=\"1-baths-checkbox\" type=\"checkbox\" value=\"1\" name=\"bathrooms\" class=\"baths-checkbox mr-2\">\n <label for=\"1-baths-checkbox\" lang=\"\">1 Salle de bains</label>\n </div>\n <div class=\"checkbox\" lang=\"\">\n <input id=\"2-baths-checkbox\" type=\"checkbox\" value=\"2\" name=\"bathrooms\" class=\"baths-checkbox mr-2\">\n <label for=\"2-baths-checkbox\" lang=\"\">\n 2 Salles de bains\n </label>\n </div>\n </fieldset>\n <div id=\"baths-error\" class=\"dropdown-error\" lang=\"\"></div>\n <div lang=\"\">\n <button id=\"baths-clear\" type=\"button\" class=\"d-none float-left btn btn-sm btn-link font-base text-muted text-capitalize\" lang=\"\">Effacer</button>\n <button id=\"baths-done\" type=\"button\" class=\"float-right btn btn-sm btn-link font-base text-black text-capitalize\" lang=\"\">Terminé</button>\n </div>\n </div>\n </div>\n </div>\n <!-- Unit size dropdown -->\n <div class=\"form-group col-12 col-sm-6 col-md\" lang=\"\">\n <div id=\"unit-size-dropdown\" class=\"dropdown floating-label floating-label-sm\" lang=\"\">\n <button class=\"btn btn-sm dropdown-toggle pr-5\" type=\"button\" id=\"unit-size-dropdown-toggle\" data-toggle=\"dropdown\" data-persist=\"true\" aria-expanded=\"false\" lang=\"\">\n <span lang=\"\">Taille de l'unité</span> \n </button>\n <div class=\"p-3 dropdown-menu dropdown-menu-right text-sm\" aria-labelledby=\"unit-size-dropdown-toggle\" lang=\"\">\n <div class=\"range\" lang=\"\">\n <div class=\"field\" lang=\"\">\n <div class=\"input-group-sm\" lang=\"\">\n <div class=\"floating-label floating-label-sm\" lang=\"\">\n <label for=\"min-unit-size\" lang=\"\">Min.</label>\n <input aria-describedby=\"unit-size-error\" aria-label=\"minimum square Feet\" id=\"min-unit-size\" class=\"form-control form-control-sm\" name=\"min-unit-size\" type=\"number\" data-max=\"1068\" data-min=\"483\" data-arealabel=\"Sq. Ft.\" min=\"0\" step=\"100\" placeholder=\"Min\">\n </div>\n <div class=\"input-group-append\" lang=\"\">\n <span class=\"input-group-text\" lang=\"\">pc</span>\n </div>\n </div>\n </div>\n <div class=\"p-2\" lang=\"\">à</div>\n <div class=\"field\" lang=\"\">\n <div class=\"input-group-sm\" lang=\"\">\n <div class=\"floating-label floating-label-sm\" lang=\"\">\n <label for=\"max-unit-size\" lang=\"\">Max.</label>\n <input aria-describedby=\"unit-size-error\" aria-label=\"maximum square Feet\" id=\"max-unit-size\" class=\"form-control form-control-sm\" name=\"max-unit-size\" type=\"number\" data-max=\"1068\" data-min=\"483\" data-arealabel=\"Sq. Ft.\" min=\"0\" step=\"100\" placeholder=\"Max\">\n </div>\n <div class=\"input-group-append\" lang=\"\">\n <span class=\"input-group-text\" lang=\"\">pc</span>\n </div>\n </div>\n </div>\n </div>\n <div id=\"unit-size-error\" aria-hidden=\"true\" class=\"dropdown-error\" lang=\"\"></div>\n <div lang=\"\">\n <button id=\"unit-size-clear\" type=\"button\" class=\"d-none float-left btn btn-sm btn-link font-base text-muted text-capitalize\" lang=\"\">Effacer</button>\n <button id=\"unit-size-done\" type=\"button\" class=\"float-right btn btn-sm btn-link font-base text-black text-capitalize\" lang=\"\">Terminé</button>\n </div>\n </div>\n </div>\n </div>\n <!-- Rent dropdown -->\n <div class=\"form-group col-12 col-sm-6 col-md\" lang=\"\">\n <div id=\"rent-dropdown\" class=\"dropdown floating-label floating-label-sm\" data-currency=\"$\" lang=\"\">\n <button id=\"rent-dropdown-toggle\" class=\"btn btn-sm dropdown-toggle pr-5\" type=\"button\" data-toggle=\"dropdown\" data-persist=\"true\" aria-expanded=\"false\" lang=\"\">\n <span lang=\"\">Gamme de prix</span> \n </button>\n <div class=\"p-3 dropdown-menu dropdown-menu-right text-sm\" aria-labelledby=\"rent-dropdown-toggle\" lang=\"\">\n <div class=\"range\" lang=\"\">\n <div class=\"field\" lang=\"\">\n <div class=\"input-group-sm\" lang=\"\">\n <div class=\"input-group-prepend\" lang=\"\">\n <span class=\"input-group-text\" lang=\"\">$</span>\n </div>\n <div class=\"floating-label floating-label-sm\" lang=\"\">\n <label for=\"min-rent\" lang=\"\">Min.</label>\n <input aria-describedby=\"rent-error\" aria-label=\"Minimum Price\" id=\"min-rent\" class=\"form-control form-control-sm\" name=\"min-rent\" type=\"number\" data-max=\"2485\" data-min=\"1520\" min=\"0\" step=\"100\" placeholder=\"Min\">\n </div>\n </div>\n </div>\n <div class=\"p-2\" lang=\"\">à</div>\n <div class=\"field\" lang=\"\">\n <div class=\"input-group-sm\" lang=\"\">\n <div class=\"input-group-prepend\" lang=\"\">\n <span class=\"input-group-text\" lang=\"\">$</span>\n </div>\n <div class=\"floating-label floating-label-sm\" lang=\"\">\n <label for=\"max-rent\" lang=\"\">Max.</label>\n <input aria-describedby=\"rent-error\" aria-label=\"Maximum Price\" id=\"max-rent\" class=\"form-control form-control-sm\" name=\"max-rent\" type=\"number\" data-max=\"2485\" data-min=\"1520\" min=\"0\" step=\"100\" placeholder=\"Max\">\n </div>\n </div>\n </div>\n </div>\n <div id=\"rent-error\" aria-hidden=\"true\" class=\"dropdown-error\" role=\"alert\" lang=\"\"></div>\n <div lang=\"\">\n <button id=\"rent-clear\" type=\"button\" class=\"d-none float-left btn btn-sm btn-link font-base text-muted text-capitalize\" lang=\"\">Effacer</button>\n <button id=\"rent-done\" type=\"button\" class=\"float-right btn btn-sm btn-link font-base text-black text-capitalize\" lang=\"\">Terminé</button>\n </div>\n </div>\n </div>\n </div>\n <!-- Move-in date -->\n <div class=\"form-group input-group col-12 col-sm-6 col-md filter-input floating-label floating-label-sm\" lang=\"\">\n <label for=\"move-in-date\" lang=\"\">Date d’emménagement</label>\n <input type=\"text\" class=\"form-control form-control-sm flatpickr-input\" id=\"move-in-date\" name=\"move-in-date\" value=\"\" placeholder=\"jj/mm/aaaa\" lang=\"\"><div class=\"flatpickr-calendar animate static\" tabindex=\"-1\"><div class=\"flatpickr-months\"><span class=\"flatpickr-prev-month flatpickr-disabled\" tabindex=\"0\" aria-label=\"Previous Month\" role=\"button\"></span><div class=\"flatpickr-month\"><div class=\"flatpickr-current-month\"><select class=\"flatpickr-monthDropdown-months\" aria-label=\"Month\" tabindex=\"0\"><option class=\"flatpickr-monthDropdown-month\" value=\"\" disabled=\"\">Select Month</option><option class=\"flatpickr-monthDropdown-month\" value=\"7\" tabindex=\"-1\">août</option><option class=\"flatpickr-monthDropdown-month\" value=\"8\" tabindex=\"-1\">septembre</option><option class=\"flatpickr-monthDropdown-month\" value=\"9\" tabindex=\"-1\">octobre</option><option class=\"flatpickr-monthDropdown-month\" value=\"10\" tabindex=\"-1\">novembre</option></select><select class=\"flatpickr-yearDropdown-years\" tabindex=\"0\" aria-label=\"Year\" style=\"text-align-last:left\"><option value=\"\" disabled=\"\">Select Year</option><option value=\"2026\">2026</option></select><div class=\"numInputWrapper\" style=\"display: none;\"><input class=\"numInput cur-year\" type=\"number\" tabindex=\"0\" aria-label=\"Year\" min=\"2026\" max=\"2026\" disabled=\"\"><span class=\"arrowUp\"></span><span class=\"arrowDown\"></span></div></div></div><span class=\"flatpickr-next-month\" tabindex=\"0\" aria-label=\"Next Month\" role=\"button\"></span></div><div class=\"flatpickr-innerContainer\"><div class=\"flatpickr-rContainer\"><div class=\"flatpickr-weekdays\"><div class=\"flatpickr-weekdaycontainer\">\n <span class=\"flatpickr-weekday\">\n lun</span><span class=\"flatpickr-weekday\">Mars</span><span class=\"flatpickr-weekday\">mer</span><span class=\"flatpickr-weekday\">jeu</span><span class=\"flatpickr-weekday\">ven</span><span class=\"flatpickr-weekday\">sam</span><span class=\"flatpickr-weekday\">dim\n </span>\n </div></div><div class=\"flatpickr-days\" tabindex=\"-1\"><div class=\"dayContainer\"><span class=\"flatpickr-day prevMonthDay flatpickr-disabled ysi-date-disabled\" aria-label=\"Monday, July 27, 2026. Unavailable\" role=\"button\">27</span><span class=\"flatpickr-day prevMonthDay flatpickr-disabled ysi-date-disabled\" aria-label=\"Tuesday, July 28, 2026. Unavailable\" role=\"button\">28</span><span class=\"flatpickr-day prevMonthDay flatpickr-disabled ysi-date-disabled\" aria-label=\"Wednesday, July 29, 2026. Unavailable\" role=\"button\">29</span><span class=\"flatpickr-day prevMonthDay flatpickr-disabled ysi-date-disabled\" aria-label=\"Thursday, July 30, 2026. Unavailable\" role=\"button\">30</span><span class=\"flatpickr-day prevMonthDay flatpickr-disabled ysi-date-disabled\" aria-label=\"Friday, July 31, 2026. Unavailable\" role=\"button\">31</span><span class=\"flatpickr-day flatpickr-disabled ysi-date-disabled\" aria-label=\"Saturday, August 1, 2026. Unavailable\" role=\"button\">1</span><span class=\"flatpickr-day flatpickr-disabled ysi-date-disabled\" aria-label=\"Sunday, August 2, 2026. Unavailable\" role=\"button\">2</span><span class=\"flatpickr-day flatpickr-disabled ysi-date-disabled\" aria-label=\"Monday, August 3, 2026. Unavailable\" role=\"button\">3</span><span class=\"flatpickr-day flatpickr-disabled ysi-date-disabled\" aria-label=\"Tuesday, August 4, 2026. Unavailable\" role=\"button\">4</span><span class=\"flatpickr-day flatpickr-disabled ysi-date-disabled\" aria-label=\"Wednesday, August 5, 2026. Unavailable\" role=\"button\">5</span><span class=\"flatpickr-day flatpickr-disabled ysi-date-disabled\" aria-label=\"Thursday, August 6, 2026. Unavailable\" role=\"button\">6</span><span class=\"flatpickr-day flatpickr-disabled ysi-date-disabled\" aria-label=\"Friday, August 7, 2026. Unavailable\" role=\"button\">7</span><span class=\"flatpickr-day flatpickr-disabled ysi-date-disabled\" aria-label=\"Saturday, August 8, 2026. Unavailable\" role=\"button\">8</span><span class=\"flatpickr-day today ysi-date-disabled\" aria-label=\"Sunday, August 9, 2026. Unavailable\" aria-current=\"date\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">9</span><span class=\"flatpickr-day \" aria-label=\"Monday, August 10, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">10</span><span class=\"flatpickr-day \" aria-label=\"Tuesday, August 11, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">11</span><span class=\"flatpickr-day \" aria-label=\"Wednesday, August 12, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">12</span><span class=\"flatpickr-day \" aria-label=\"Thursday, August 13, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">13</span><span class=\"flatpickr-day \" aria-label=\"Friday, August 14, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">14</span><span class=\"flatpickr-day \" aria-label=\"Saturday, August 15, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">15</span><span class=\"flatpickr-day \" aria-label=\"Sunday, August 16, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">16</span><span class=\"flatpickr-day \" aria-label=\"Monday, August 17, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">17</span><span class=\"flatpickr-day \" aria-label=\"Tuesday, August 18, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">18</span><span class=\"flatpickr-day \" aria-label=\"Wednesday, August 19, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">19</span><span class=\"flatpickr-day \" aria-label=\"Thursday, August 20, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">20</span><span class=\"flatpickr-day \" aria-label=\"Friday, August 21, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">21</span><span class=\"flatpickr-day \" aria-label=\"Saturday, August 22, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">22</span><span class=\"flatpickr-day \" aria-label=\"Sunday, August 23, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">23</span><span class=\"flatpickr-day \" aria-label=\"Monday, August 24, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">24</span><span class=\"flatpickr-day \" aria-label=\"Tuesday, August 25, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">25</span><span class=\"flatpickr-day \" aria-label=\"Wednesday, August 26, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">26</span><span class=\"flatpickr-day \" aria-label=\"Thursday, August 27, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">27</span><span class=\"flatpickr-day \" aria-label=\"Friday, August 28, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">28</span><span class=\"flatpickr-day \" aria-label=\"Saturday, August 29, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">29</span><span class=\"flatpickr-day \" aria-label=\"Sunday, August 30, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">30</span><span class=\"flatpickr-day \" aria-label=\"Monday, August 31, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">31</span><span class=\"flatpickr-day nextMonthDay\" aria-label=\"Tuesday, September 1, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">1</span><span class=\"flatpickr-day nextMonthDay\" aria-label=\"Wednesday, September 2, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">2</span><span class=\"flatpickr-day nextMonthDay\" aria-label=\"Thursday, September 3, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">3</span><span class=\"flatpickr-day nextMonthDay\" aria-label=\"Friday, September 4, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">4</span><span class=\"flatpickr-day nextMonthDay\" aria-label=\"Saturday, September 5, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">5</span><span class=\"flatpickr-day nextMonthDay\" aria-label=\"Sunday, September 6, 2026\" tabindex=\"-1\" aria-pressed=\"false\" role=\"button\">6</span></div></div></div></div></div>\n <div class=\"input-group-append\" lang=\"\">\n <button class=\"btn btn-light btn-sm border\" id=\"move-in-date-button\" type=\"button\" aria-label=\"Open calendar\" lang=\"\"><span aria-hidden=\"true\" class=\"fa fa-calendar text-muted\" lang=\"\"></span></button>\n </div>\n \n </div>\n <!-- Apartment number -->\n </form>\n </div>\n <!-- END: filters -->\n\n\n <div id=\"floorplans-container\" class=\"row align-items-stretch\" role=\"alert\" aria-live=\"assertive\" lang=\"\">\n \n<!-- Hidden input for layout type (true = updated) -->\n\n\n\n\n\n\n\n\n \n <div id=\"fp-container-6473291\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-0\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-0-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/s2.png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto II | S2 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473291\" data-image-modal=\"modal-body-6473291\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473291\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/s2.png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/s2.png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/s2.png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/s2.png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/s2.png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/s2.png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/s2.png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/s2.png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/s2.png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-0\" class=\"property-title h4\" lang=\"\">\n Aalto II | S2\n </h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">studio / 1 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">483 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$1,520.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-ii-%7c-s2\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto II | S2\" data-floorplan-size=\"0\" data-floorplan-sqft=\"483\" data-floorplan-price=\"1520\" data-selenium-id=\"floorplan-0-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto II | S2</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto II | S2</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473262\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-1\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-1-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a1(1).png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto II | A1 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473262\" data-image-modal=\"modal-body-6473262\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473262\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a1(1).png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a1(1).png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a1(1).png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a1(1).png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a1(1).png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a1(1).png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a1(1).png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a1(1).png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a1(1).png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-1\" class=\"property-title h4\" lang=\"\">Aalto II | A1</h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">1 chambre / 1 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">559 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$1,700.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-ii-%7c-a1\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto II | A1\" data-floorplan-size=\"1\" data-floorplan-sqft=\"559\" data-floorplan-price=\"1700 -1860\" data-selenium-id=\"floorplan-1-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto II | A1</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto II | A1</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473263\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-2\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-2-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a3(1).png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto II | A3 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473263\" data-image-modal=\"modal-body-6473263\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473263\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a3(1).png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a3(1).png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a3(1).png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a3(1).png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a3(1).png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a3(1).png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a3(1).png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a3(1).png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a3(1).png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-2\" class=\"property-title h4\" lang=\"\">Aalto II | A3</h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">1 chambre / 1 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">557 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$1,795.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-ii-%7c-a3\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto II | A3\" data-floorplan-size=\"1\" data-floorplan-sqft=\"557\" data-floorplan-price=\"1795 -1830\" data-selenium-id=\"floorplan-2-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto II | A3</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto II | A3</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473261\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-3\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-3-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a2(1).png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto II | A2 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473261\" data-image-modal=\"modal-body-6473261\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473261\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a2(1).png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a2(1).png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a2(1).png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a2(1).png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a2(1).png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a2(1).png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a2(1).png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a2(1).png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a2(1).png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-3\" class=\"property-title h4\" lang=\"\">Aalto II | A2</h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">1 chambre / 1 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">550 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$1,810.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-ii-%7c-a2\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto II | A2\" data-floorplan-size=\"1\" data-floorplan-sqft=\"550\" data-floorplan-price=\"1810 -1815\" data-selenium-id=\"floorplan-3-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto II | A2</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto II | A2</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473298\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-4\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-4-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a12.png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto | A12 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473298\" data-image-modal=\"modal-body-6473298\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473298\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a12.png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a12.png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a12.png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a12.png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a12.png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a12.png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a12.png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a12.png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a12.png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-4\" class=\"property-title h4\" lang=\"\">\n Aalto | A12\n </h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">1 chambre / 1 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">503 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$1,820.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-%7c-a12\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto | A12\" data-floorplan-size=\"1\" data-floorplan-sqft=\"503\" data-floorplan-price=\"1820\" data-selenium-id=\"floorplan-4-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto | A12</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto | A12</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473303\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-5\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-5-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a5(1).png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto | A5 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473303\" data-image-modal=\"modal-body-6473303\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473303\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a5(1).png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a5(1).png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a5(1).png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a5(1).png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a5(1).png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a5(1).png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a5(1).png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a5(1).png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a5(1).png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-5\" class=\"property-title h4\" lang=\"\">\n Aalto | A5\n </h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">1 chambre / 1 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">607 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$1,835.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-%7c-a5\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto | A5\" data-floorplan-size=\"1\" data-floorplan-sqft=\"607\" data-floorplan-price=\"1835\" data-selenium-id=\"floorplan-5-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto | A5</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto | A5</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473307\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-6\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-6-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a8.png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto | A8 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473307\" data-image-modal=\"modal-body-6473307\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473307\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a8.png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a8.png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a8.png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a8.png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a8.png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a8.png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a8.png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a8.png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a8.png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-6\" class=\"property-title h4\" lang=\"\">\n Aalto | A8\n </h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">1 chambre / 1 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">608 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$1,835.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-%7c-a8\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto | A8\" data-floorplan-size=\"1\" data-floorplan-sqft=\"608\" data-floorplan-price=\"1835\" data-selenium-id=\"floorplan-6-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto | A8</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto | A8</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473308\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-7\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-7-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a9.png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto | A9 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473308\" data-image-modal=\"modal-body-6473308\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473308\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a9.png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a9.png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a9.png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a9.png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a9.png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a9.png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a9.png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a9.png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a9.png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-7\" class=\"property-title h4\" lang=\"\">\n Aalto | A9\n </h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">1 chambre / 1 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">609 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$1,840.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-%7c-a9\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto | A9\" data-floorplan-size=\"1\" data-floorplan-sqft=\"609\" data-floorplan-price=\"1840 -1845\" data-selenium-id=\"floorplan-7-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto | A9</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto | A9</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473306\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-8\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-8-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a7(1).png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto | A7 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473306\" data-image-modal=\"modal-body-6473306\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473306\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a7(1).png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a7(1).png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a7(1).png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a7(1).png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a7(1).png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a7(1).png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a7(1).png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a7(1).png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a7(1).png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-8\" class=\"property-title h4\" lang=\"\">\n Aalto | A7\n </h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">1 chambre / 1 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">607 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$1,840.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-%7c-a7\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto | A7\" data-floorplan-size=\"1\" data-floorplan-sqft=\"607\" data-floorplan-price=\"1840 -1850\" data-selenium-id=\"floorplan-8-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto | A7</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto | A7</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473295\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-9\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-9-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a10.png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto | A10 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473295\" data-image-modal=\"modal-body-6473295\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473295\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a10.png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a10.png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a10.png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a10.png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a10.png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a10.png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a10.png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a10.png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a10.png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-9\" class=\"property-title h4\" lang=\"\">\n Aalto | A10\n </h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">1 chambre / 1 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">609 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$1,850.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-%7c-a10\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto | A10\" data-floorplan-size=\"1\" data-floorplan-sqft=\"609\" data-floorplan-price=\"1850\" data-selenium-id=\"floorplan-9-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto | A10</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto | A10</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473297\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-10\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-10-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a11.png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto | A11 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473297\" data-image-modal=\"modal-body-6473297\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473297\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a11.png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a11.png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a11.png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a11.png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a11.png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a11.png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a11.png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a11.png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a11.png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-10\" class=\"property-title h4\" lang=\"\">\n Aalto | A11\n </h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">1 chambre / 1 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">635 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$1,855.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-%7c-a11\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto | A11\" data-floorplan-size=\"1\" data-floorplan-sqft=\"635\" data-floorplan-price=\"1855\" data-selenium-id=\"floorplan-10-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto | A11</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto | A11</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473299\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-11\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-11-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a13.png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto | A13 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473299\" data-image-modal=\"modal-body-6473299\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473299\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a13.png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a13.png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a13.png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a13.png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a13.png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a13.png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a13.png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a13.png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a13.png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-11\" class=\"property-title h4\" lang=\"\">\n Aalto | A13\n </h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">1 chambre / 1 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">598 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$1,855.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-%7c-a13\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto | A13\" data-floorplan-size=\"1\" data-floorplan-sqft=\"598\" data-floorplan-price=\"1855 -1880\" data-selenium-id=\"floorplan-11-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto | A13</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto | A13</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473265\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-12\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-12-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a5.png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto II | A5 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473265\" data-image-modal=\"modal-body-6473265\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473265\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a5.png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a5.png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a5.png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a5.png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a5.png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a5.png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a5.png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a5.png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a5.png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-12\" class=\"property-title h4\" lang=\"\">Aalto II | A5</h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">1 chambre / 1 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">527 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$1,855.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-ii-%7c-a5\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto II | A5\" data-floorplan-size=\"1\" data-floorplan-sqft=\"527\" data-floorplan-price=\"1855\" data-selenium-id=\"floorplan-12-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto II | A5</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto II | A5</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473304\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-13\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-13-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a6(1).png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto | A6 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473304\" data-image-modal=\"modal-body-6473304\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473304\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a6(1).png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a6(1).png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a6(1).png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a6(1).png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a6(1).png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a6(1).png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a6(1).png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a6(1).png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a6(1).png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-13\" class=\"property-title h4\" lang=\"\">\n Aalto | A6\n </h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">1 chambre / 1 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">620 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$1,875.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-%7c-a6\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto | A6\" data-floorplan-size=\"1\" data-floorplan-sqft=\"620\" data-floorplan-price=\"1875\" data-selenium-id=\"floorplan-13-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto | A6</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto | A6</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473266\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-14\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-14-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/a6.png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto II | A6 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473266\" data-image-modal=\"modal-body-6473266\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473266\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/a6.png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/a6.png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/a6.png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/a6.png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/a6.png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/a6.png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/a6.png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/a6.png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/a6.png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-14\" class=\"property-title h4\" lang=\"\">Aalto II | A6</h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">1 chambre / 1 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">653 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$1,885.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-ii-%7c-a6\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto II | A6\" data-floorplan-size=\"1\" data-floorplan-sqft=\"653\" data-floorplan-price=\"1885\" data-selenium-id=\"floorplan-14-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto II | A6</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto II | A6</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473268\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-15\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-15-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/b1.png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto II | B1 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473268\" data-image-modal=\"modal-body-6473268\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473268\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/b1.png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/b1.png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/b1.png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/b1.png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/b1.png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/b1.png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/b1.png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/b1.png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/b1.png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-15\" class=\"property-title h4\" lang=\"\">Aalto II | B1</h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">1 chambre / 1 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">638 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$1,930.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-ii-%7c-b1\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto II | B1\" data-floorplan-size=\"1\" data-floorplan-sqft=\"638\" data-floorplan-price=\"1930 -1945\" data-selenium-id=\"floorplan-15-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto II | B1</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto II | B1</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473310\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-16\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-16-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/b2(1).png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto | B2 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473310\" data-image-modal=\"modal-body-6473310\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473310\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/b2(1).png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/b2(1).png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/b2(1).png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/b2(1).png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/b2(1).png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/b2(1).png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/b2(1).png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/b2(1).png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/b2(1).png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-16\" class=\"property-title h4\" lang=\"\">\n Aalto | B2\n </h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">1 chambre / 1 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">735 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$1,980.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-%7c-b2\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto | B2\" data-floorplan-size=\"1\" data-floorplan-sqft=\"735\" data-floorplan-price=\"1980 -2000\" data-selenium-id=\"floorplan-16-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto | B2</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto | B2</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473270\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-17\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-17-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/b3.png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto II | B3 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473270\" data-image-modal=\"modal-body-6473270\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473270\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/b3.png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/b3.png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/b3.png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/b3.png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/b3.png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/b3.png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/b3.png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/b3.png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/b3.png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-17\" class=\"property-title h4\" lang=\"\">\n Aalto II | B3\n </h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">1 chambre / 1 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">690 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$1,985.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-ii-%7c-b3\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto II | B3\" data-floorplan-size=\"1\" data-floorplan-sqft=\"690\" data-floorplan-price=\"1985 -1990\" data-selenium-id=\"floorplan-17-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto II | B3</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto II | B3</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473269\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-18\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-18-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/b2.png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto II | B2 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473269\" data-image-modal=\"modal-body-6473269\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473269\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/b2.png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/b2.png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/b2.png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/b2.png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/b2.png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/b2.png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/b2.png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/b2.png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/b2.png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-18\" class=\"property-title h4\" lang=\"\">Aalto II | B2</h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">1 chambre / 1 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">816 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$2,085.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-ii-%7c-b2\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto II | B2\" data-floorplan-size=\"1\" data-floorplan-sqft=\"816\" data-floorplan-price=\"2085\" data-selenium-id=\"floorplan-18-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto II | B2</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto II | B2</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473315\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-19\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-19-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/c5(1).png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto | C5 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473315\" data-image-modal=\"modal-body-6473315\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473315\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/c5(1).png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/c5(1).png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/c5(1).png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/c5(1).png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/c5(1).png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/c5(1).png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/c5(1).png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/c5(1).png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/c5(1).png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-19\" class=\"property-title h4\" lang=\"\">\n Aalto | C5\n </h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">2 chambre / 2 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">849 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$2,065.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-%7c-c5\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto | C5\" data-floorplan-size=\"2\" data-floorplan-sqft=\"849\" data-floorplan-price=\"2065\" data-selenium-id=\"floorplan-19-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto | C5</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto | C5</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473317\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-20\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-20-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/c7(1).png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto | C7 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473317\" data-image-modal=\"modal-body-6473317\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473317\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/c7(1).png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/c7(1).png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/c7(1).png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/c7(1).png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/c7(1).png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/c7(1).png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/c7(1).png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/c7(1).png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/c7(1).png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-20\" class=\"property-title h4\" lang=\"\">\n Aalto | C7\n </h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">2 chambre / 2 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">844 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$2,135.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-%7c-c7\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto | C7\" data-floorplan-size=\"2\" data-floorplan-sqft=\"844\" data-floorplan-price=\"2135 -2160\" data-selenium-id=\"floorplan-20-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto | C7</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto | C7</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473276\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-21\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-21-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/c3.png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto II | C3 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473276\" data-image-modal=\"modal-body-6473276\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473276\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/c3.png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/c3.png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/c3.png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/c3.png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/c3.png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/c3.png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/c3.png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/c3.png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/c3.png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-21\" class=\"property-title h4\" lang=\"\">\n Aalto II | C3\n </h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">2 chambre / 2 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">875 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$2,295.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-ii-%7c-c3\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto II | C3\" data-floorplan-size=\"2\" data-floorplan-sqft=\"875\" data-floorplan-price=\"2295 -2330\" data-selenium-id=\"floorplan-21-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto II | C3</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto II | C3</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473275\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-22\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-22-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/c2.png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto II | C2 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473275\" data-image-modal=\"modal-body-6473275\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473275\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/c2.png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/c2.png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/c2.png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/c2.png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/c2.png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/c2.png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/c2.png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/c2.png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/c2.png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-22\" class=\"property-title h4\" lang=\"\">\n Aalto II | C2\n </h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">2 chambre / 2 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">875 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$2,310.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-ii-%7c-c2\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto II | C2\" data-floorplan-size=\"2\" data-floorplan-sqft=\"875\" data-floorplan-price=\"2310\" data-selenium-id=\"floorplan-22-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto II | C2</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto II | C2</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473273\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-23\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-23-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/c1.png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto II | C1 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473273\" data-image-modal=\"modal-body-6473273\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473273\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/c1.png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/c1.png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/c1.png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/c1.png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/c1.png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/c1.png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/c1.png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/c1.png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/c1.png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-23\" class=\"property-title h4\" lang=\"\">Aalto II | C1</h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">2 chambre / 2 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">987 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$2,345.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-ii-%7c-c1\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto II | C1\" data-floorplan-size=\"2\" data-floorplan-sqft=\"987\" data-floorplan-price=\"2345 -2350\" data-selenium-id=\"floorplan-23-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto II | C1</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto II | C1</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473288\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-24\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-24-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/d6.png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto II | D6 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473288\" data-image-modal=\"modal-body-6473288\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473288\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/d6.png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/d6.png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/d6.png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/d6.png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/d6.png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/d6.png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/d6.png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/d6.png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/d6.png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-24\" class=\"property-title h4\" lang=\"\">Aalto II | D6</h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">2 chambre / 2 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">914 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$2,380.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-ii-%7c-d6\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto II | D6\" data-floorplan-size=\"2\" data-floorplan-sqft=\"914\" data-floorplan-price=\"2380\" data-selenium-id=\"floorplan-24-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto II | D6</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto II | D6</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473286\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-25\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-25-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/d4.png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto II | D4 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473286\" data-image-modal=\"modal-body-6473286\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473286\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/d4.png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/d4.png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/d4.png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/d4.png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/d4.png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/d4.png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/d4.png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/d4.png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/d4.png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-25\" class=\"property-title h4\" lang=\"\">Aalto II | D4</h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">2 chambre / 2 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">963 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$2,410.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-ii-%7c-d4\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto II | D4\" data-floorplan-size=\"2\" data-floorplan-sqft=\"963\" data-floorplan-price=\"2410\" data-selenium-id=\"floorplan-25-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto II | D4</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto II | D4</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473285\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-26\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-26-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/d3.png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto II | D3 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473285\" data-image-modal=\"modal-body-6473285\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473285\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/d3.png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/d3.png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/d3.png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/d3.png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/d3.png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/d3.png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/d3.png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/d3.png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/d3.png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-26\" class=\"property-title h4\" lang=\"\">Aalto II | D3</h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">2 chambre / 2 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">1,016 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$2,460.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-ii-%7c-d3\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto II | D3\" data-floorplan-size=\"2\" data-floorplan-sqft=\"1016\" data-floorplan-price=\"2460\" data-selenium-id=\"floorplan-26-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto II | D3</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto II | D3</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <div id=\"fp-container-6473283\" class=\"col-12 col-md-6 col-lg-4 d-flex flex-column justify-content-start mb-4 fp-container\" lang=\"\">\n <div class=\"floor-plan-card h-100\" lang=\"\">\n <!-- Gallery Section -->\n <div class=\"gallery-section p-3\" lang=\"\">\n \n\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-floorplan-gallery-27\" class=\"photogallery carousel slide\" data-gallery-type=\"default\" data-ride=\"carousel\" data-interval=\"false\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" data-max-width=\"1140\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" lang=\"\">\n\n\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-floorplan-gallery-27-slide-1\" lang=\"\">\n <div class=\"item h-100\" lang=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/144684/d1.png?RCStandardCampaignId_2384767=1649042\" role=\"button\" title=\"Appuyez pour agrandir l'image\" class=\"modal-button w-100 h-100 show-floorplans-image-button btn btn-link p-0\" lang=\"\" data-prevent-lightbox=\"off\" aria-label=\"Aalto II | D1 Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6473283\" data-image-modal=\"modal-body-6473283\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6473283\" data-target=\"#fp-modal\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" lang=\"\">1 de 1</div>\n\n <picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_316/s3/2/144684/d1.png\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_256,dpr_2/s3/2/144684/d1.png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_256/s3/2/144684/d1.png\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_296,dpr_2/s3/2/144684/d1.png 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_296/s3/2/144684/d1.png\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_476,dpr_2/s3/2/144684/d1.png 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_476/s3/2/144684/d1.png\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_510,dpr_2/s3/2/144684/d1.png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_510/s3/2/144684/d1.png\" class=\"img-fluid\" alt=\"\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n </div>\n</section>\n\n \n \n \n\n\n \n </div>\n\n <!-- Video Buttons -->\n <div class=\"btn-group-custom\" lang=\"\">\n \n </div>\n\n <!-- Property Details -->\n <div class=\"details-section\" lang=\"\">\n <h2 id=\"fp-header-27\" class=\"property-title h4\" lang=\"\">Aalto II | D1</h2>\n <div class=\"property-details\" lang=\"\">\n\n\n <div class=\"property-details\" lang=\"\">\n <span lang=\"\">2 chambre / 2 SdB</span>\n <span class=\"dot-separator\" lang=\"\">●</span>\n <span lang=\"\">1,068 pc</span>\n </div>\n </div>\n </div>\n\n <!-- Pricing Section -->\n <div class=\"pricing-section\" lang=\"\">\n <div class=\"pricing-container\" lang=\"\">\n <div class=\"pricing-details bg-light mb-2\" lang=\"\">\n <span class=\"pricing-title\" lang=\"\">à partir de</span>\n\n <div lang=\"\">\n <span class=\"pricing-amount\" lang=\"\">$2,485.00</span>\n <span class=\"pricing-period\" lang=\"\">/mois</span>\n </div>\n \n\n </div>\n\n <!-- Cost Calculator Section -->\n </div>\n </div>\n\n <!-- Specials Badge -->\n <div class=\"extras-section mt-2\" lang=\"\">\n <div class=\"specials-badge\" lang=\"\"></div>\n </div> \n\n\n <!-- CTA Button -->\n <div class=\"cta-section mt-3\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/floorplans/aalto-ii-%7c-d1\" class=\"btn-block track-apply floorplan-action-button btn btn-primary\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"Aalto II | D1\" data-floorplan-size=\"2\" data-floorplan-sqft=\"1068\" data-floorplan-price=\"2485\" data-selenium-id=\"floorplan-27-apply-btn\" lang=\"\">vérifier la disponibilité<span class=\"sr-only\" lang=\"\"> for Aalto II | D1</span>\n </a>\n </div>\n\n <!-- Available Tours -->\n <div class=\"tour-section text-center\" lang=\"\">\n <a href=\"https://www.aaltosuites.ca/scheduletour\" class=\"schedule-link\" lang=\"\">Planifier une visite<span class=\"sr-only\" lang=\"\"> for Aalto II | D1</span></a>\n </div>\n\n <!-- Smart Nudge Inline Message -->\n \n <!-- Smart Nudge Directional Popover -->\n </div>\n </div>\n <!-- Page-level Smart Nudge Directional Popovers (IPM type 5, Frontdesk type 6) -->\n <!-- Image modal -->\n\n\n\n\n\n <!-- end modal -->\n <!-- Required JavaScript for modal functionality -->\n \n \n <!-- Smart Nudge Widgets JavaScript -->\n\n </div>\n </div>\n\t\t<div class=\"tab-pane fade\" id=\"mapView\" lang=\"\">Vue cartographique</div>\n\t</div>\n</div>\n<!-- Optimized Floor Plans Layout End -->\n\n\n\t\n\t\n\n\n\n </div>\n </div>\n </div>\n <div class=\"row\" lang=\"\">\n <div class=\"col-12 mt-3\" data-selenium-id=\"FloorplansBottomNarrative\" lang=\"\">\n \n\n\n\n </div>\n </div>\n \n \n \n <!-- Video modal -->\n\n <!-- 3D Tour modal -->\n <!--Inclusive fees modal-->\n\n \n \n \n \n \n \n \n \n\n </div></div><div class=\"row\" lang=\"\"><div class=\"justify-content-start align-items-stretch flex-column d-flex text-left pt-4 col-12 col-lg-12\" lang=\"\">\n\n \n\n <div class=\"ysi-socialmedia-widget ysi-socialmedia-wrapper ysi-socialmedia-share horizontal text-right small\" lang=\"\">\n <ul class=\"ysi-socialmedia-icons\" data-selenium-id=\"socialshare01\" lang=\"\">\n </ul>\n\n </div>\n <div class=\"ysi-socialmedia-widget ysi-socialmedia-popover-wrapper d-none\" lang=\"\">\n <ul class=\"ysi-socialmedia-popover-icons list-inline text-center list-inline\" lang=\"\">\n </ul>\n\n </div>\n</div></div><div class=\"row\" lang=\"\"><div class=\"justify-content-start align-items-stretch flex-column d-flex text-left col-12 col-lg-12\" lang=\"\"></div></div></div></div></div></div></main>\n\n \n \n\n\n\n\n \n \n\n\n\n\n <yardi-widget-craigslist></yardi-widget-craigslist>\n \n\n\n\n \n\n\n\n\n \n\n\n \n \n \n \n \n \n <link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/photogallery-default-widget.558563.134292782880000000.css\" media=\"all\">\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/modal-widget.558563.134292782880000000.css\" media=\"all\">\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/ysi.datepicker.558563.134292782880000000.css\" media=\"all\">\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/floorplans-optimized-layout-widget.558563.134292782880000000.css\" media=\"all\">\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/floorplans-filter.558563.134292782880000000.css\" media=\"all\">\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/floorplan-updated-layout-widget.558563.134292782880000000.css\" media=\"all\">\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/floorplans-optimized-image-modal.558563.134292782880000000.css\" media=\"all\">\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/prequal-widget.558563.134292782880000000.css\" media=\"all\">\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/office-hours-layout1-widget.558563.134292782880000000.css\" media=\"all\">\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/address-widget.558563.134292782880000000.css\" media=\"all\">\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n \n\n \n\n \n\n <!--\n <yardi-add-sass path=\"widgets/go-to-top\" async=\"true\" />\n-->\n\n<div id=\"goToTop\" role=\"complementary\" aria-labelledby=\"gototoparialabel\" lang=\"\">\n <button data-selenium-id=\"btngototop\" class=\"btn btn-dark border-0 widget-left fadeOut\" lang=\"\"><svg width=\"16px\" height=\"26px\" fill=\"currentColor\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z\"></path></svg><span class=\"sr-only\" id=\"gototoparialabel\" lang=\"\">Go to top</span></button>\n</div>\n\n\n \n\n\n \n \n \n \n \n\n \n\n \n<div id=\"help-widget\" class=\"w-100 widget-right\" role=\"complementary\" aria-label=\"Front desk - how can we help you?\" lang=\"\">\n \n\n\n\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/help-widget-default.558563.134292782880000000.css\" media=\"all\">\n\n\n<!---START: Layout horizontal--->\n<!---NOTE: .frontdesk-animation is used for animation. Remove class if you want to remove animation--->\n\n<div id=\"frontDesk-widget-horizontal\" class=\"frontDesk-widget-horizontal horizontal position-fixed d-flex frontdesk-animation\" lang=\"\">\n\t<button id=\"btnFrontDesk\" type=\"button\" class=\"btn btn-primary hide-frontDesk-widget bell animation-bell\" aria-expanded=\"false\" data-selenium-id=\"showHidefrontDeskWidget\" lang=\"\" aria-label=\"Show Front Desk\">\n\t\t<span class=\"d-block bounce-dot\" lang=\"\"></span>\n <span class=\"btn-bell d-inline-block\" lang=\"\">\n <span class=\"fas fa-concierge-bell\" aria-hidden=\"true\" lang=\"\"></span>\n <span class=\"sr-only\" lang=\"\">Front desk options </span>\n </span>\n\t</button>\n\t<div id=\"frontDesk-widget-wrapper\" class=\"frontDesk-widget-wrapper close-widget\" lang=\"\">\n <!-- Email Us - modal -->\n <button id=\"email-us-btn\" data-modal-url=\"/contactus?IsDialog=1&IsFrontDesk=true\" type=\"button\" class=\"btn btn-primary email-us-btn widget-btns trigger-popup\" data-selenium-id=\"emailUs\" data-toggle=\"tooltip\" data-placement=\"top\" data-animation=\"true\" data-title=\"Envoyez-nous un courriel\" lang=\"\" data-original-title=\"Envoyez-nous un courriel\" tabindex=\"-1\" disabled=\"disabled\" aria-hidden=\"true\"><svg focusable=\"false\" aria-hidden=\"true\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" stroke-width=\"2\"><g stroke-width=\"2\" transform=\"translate(0, 0)\"><polyline data-cap=\"butt\" data-color=\"color-2\" points=\"1.614 3.558 12 13 22.385 3.559\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"2\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\"></polyline> <rect x=\"1\" y=\"3\" width=\"22\" height=\"18\" rx=\"2\" ry=\"2\" fill=\"none\" stroke=\"#ffffff\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-width=\"2\" stroke-linejoin=\"miter\"></rect></g></svg><span class=\"sr-only\" lang=\"\">Envoyez-nous un courriel</span></button>\n\n <!-- Call Us - mobile -->\n <a id=\"call-us-btn-phone\" href=\"tel:(844) 467-3195\" role=\"button\" class=\"btn btn-primary click-to-call-href click-to-call-title call-us-btn widget-btns d-inline-block d-md-none\" data-selenium-id=\"callUsPhone\" data-toggle=\"tooltip\" data-placement=\"top\" data-animation=\"true\" data-title=\"Call Us at (819) 809-9131\" lang=\"\" data-original-title=\"Call Us at (844) 467-3195\" title=\"Call Us at (844) 467-3195\" tabindex=\"-1\" aria-hidden=\"true\"><svg focusable=\"false\" aria-hidden=\"true\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 48 48\" stroke-width=\"4\"><g stroke-width=\"4\" transform=\"translate(0, 0)\"><path d=\"M31.041,28.94l-3.423,4.279A36.116,36.116,0,0,1,14.782,20.384l4.279-3.423a2.908,2.908,0,0,0,.84-3.45L16,4.728a2.908,2.908,0,0,0-3.39-1.635L5.186,5.019A2.925,2.925,0,0,0,3.028,8.25,43.142,43.142,0,0,0,39.751,44.973a2.925,2.925,0,0,0,3.23-2.158l1.926-7.425A2.91,2.91,0,0,0,43.273,32l-8.782-3.9A2.907,2.907,0,0,0,31.041,28.94Z\" fill=\"none\" stroke=\"#ffffff\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-width=\"4\" stroke-linejoin=\"miter\"></path></g></svg><span class=\"sr-only\" lang=\"\">APPELEZ-NOUS</span></a>\n <!-- Call Us - desktop -->\n <button id=\"call-us-btn\" aria-label=\"Call Us\" type=\"button\" class=\"btn btn-primary click-to-call-title call-us-btn widget-btns trigger-popup d-none d-md-inline-block\" data-selenium-id=\"callUsDesktop\" data-toggle=\"tooltip\" data-placement=\"top\" data-animation=\"true\" data-title=\"Call Us at (819) 809-9131\" lang=\"\" data-original-title=\"Call Us at (844) 467-3195\" title=\"Call Us at (844) 467-3195\" tabindex=\"-1\" disabled=\"disabled\" aria-hidden=\"true\"><svg focusable=\"false\" aria-hidden=\"true\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 48 48\" stroke-width=\"4\"><g stroke-width=\"4\" transform=\"translate(0, 0)\"><path d=\"M31.041,28.94l-3.423,4.279A36.116,36.116,0,0,1,14.782,20.384l4.279-3.423a2.908,2.908,0,0,0,.84-3.45L16,4.728a2.908,2.908,0,0,0-3.39-1.635L5.186,5.019A2.925,2.925,0,0,0,3.028,8.25,43.142,43.142,0,0,0,39.751,44.973a2.925,2.925,0,0,0,3.23-2.158l1.926-7.425A2.91,2.91,0,0,0,43.273,32l-8.782-3.9A2.907,2.907,0,0,0,31.041,28.94Z\" fill=\"none\" stroke=\"#ffffff\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-width=\"4\" stroke-linejoin=\"miter\"></path></g></svg></button>\n \n\n\n\n\n\n <!-- Schedule tour -->\n <button id=\"schedule-a-tour-btn\" data-modal-url=\"/scheduletour?IsDialog=true\" type=\"button\" class=\"btn btn-primary schedule-a-tour-btn widget-btns trigger-popup\" data-selenium-id=\"scheduleTour\" data-toggle=\"tooltip\" data-placement=\"top\" data-animation=\"true\" data-title=\"Planifier une visite\" lang=\"\" data-original-title=\"Planifier une visite\" tabindex=\"-1\" disabled=\"disabled\" aria-hidden=\"true\"><svg focusable=\"false\" aria-hidden=\"true\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" stroke-width=\"2\"><g stroke-width=\"2\" transform=\"translate(0, 0)\"><rect data-color=\"color-2\" x=\"5\" y=\"12\" width=\"2\" height=\"1\" fill=\"none\" stroke=\"#ffffff\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-width=\"2\" stroke-linejoin=\"miter\"></rect> <rect data-color=\"color-2\" x=\"11\" y=\"12\" width=\"2\" height=\"1\" fill=\"none\" stroke=\"#ffffff\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-width=\"2\" stroke-linejoin=\"miter\"></rect> <rect data-color=\"color-2\" x=\"5\" y=\"17\" width=\"2\" height=\"1\" fill=\"none\" stroke=\"#ffffff\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-width=\"2\" stroke-linejoin=\"miter\"></rect> <rect data-color=\"color-2\" x=\"11\" y=\"17\" width=\"2\" height=\"1\" fill=\"none\" stroke=\"#ffffff\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-width=\"2\" stroke-linejoin=\"miter\"></rect> <rect data-color=\"color-2\" x=\"17\" y=\"12\" width=\"2\" height=\"1\" fill=\"none\" stroke=\"#ffffff\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-width=\"2\" stroke-linejoin=\"miter\"></rect> <rect data-color=\"color-2\" data-stroke=\"none\" x=\"5\" y=\"12\" width=\"2\" height=\"1\" fill=\"#ffffff\"></rect> <rect data-color=\"color-2\" data-stroke=\"none\" x=\"11\" y=\"12\" width=\"2\" height=\"1\" fill=\"#ffffff\"></rect> <rect data-color=\"color-2\" data-stroke=\"none\" x=\"5\" y=\"17\" width=\"2\" height=\"1\" fill=\"#ffffff\"></rect> <rect data-color=\"color-2\" data-stroke=\"none\" x=\"11\" y=\"17\" width=\"2\" height=\"1\" fill=\"#ffffff\"></rect> <rect data-color=\"color-2\" data-stroke=\"none\" x=\"17\" y=\"12\" width=\"2\" height=\"1\" fill=\"#ffffff\"></rect> <rect x=\"1\" y=\"3\" width=\"22\" height=\"19\" rx=\"2\" ry=\"2\" fill=\"none\" stroke=\"#ffffff\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-width=\"2\" stroke-linejoin=\"miter\"></rect> <line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\" fill=\"none\" stroke=\"#ffffff\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-width=\"2\" stroke-linejoin=\"miter\"></line> <line x1=\"18\" y1=\"1\" x2=\"18\" y2=\"4\" fill=\"none\" stroke=\"#ffffff\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-width=\"2\" stroke-linejoin=\"miter\"></line> <line x1=\"1\" y1=\"8\" x2=\"23\" y2=\"8\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"2\"></line></g></svg><span class=\"sr-only\" lang=\"\">Planifier une visite</span></button>\n\n\n </div>\n</div>\n<!---END: Layout horizontal--->\n<!--- Show/Hide aria-label for Front Desk button --->\n\n\n \n\n <!--START Modal: Contact Us / Email Us -->\n <div id=\"email-us-window\" class=\"popup-widgets-window draggable scrollable \" lang=\"\">\n <div class=\"popup-content\" lang=\"\">\n <div class=\"popup-header modal-header\" lang=\"\">\n <h2 class=\"m-0 text-truncate\" lang=\"\">Contactez-nous</h2>\n <button class=\"close\" aria-label=\"Close this dialog window\" data-selenium-id=\"close\" lang=\"\"> <span aria-hidden=\"true\" class=\"fa fa-times\" lang=\"\"></span></button>\n </div>\n <div id=\"help-widget-email-modal-body\" class=\"popup-body p-4\" lang=\"\">\n </div>\n </div>\n </div>\n <!--END Modal: Contact Us / Email Us -->\n <!--START Modal: Call Us -->\n <div id=\"call-us-window\" class=\"popup-widgets-window draggable scrollable \" lang=\"\">\n <div class=\"popup-content\" lang=\"\">\n <div class=\"popup-header modal-header\" lang=\"\">\n <h2 class=\"m-0 text-truncate\" lang=\"\">APPELEZ-NOUS</h2>\n <button class=\"close\" aria-label=\"Close this dialog window\" data-selenium-id=\"close\" lang=\"\"> <span aria-hidden=\"true\" class=\"fa fa-times\" lang=\"\"></span></button>\n </div>\n <div class=\"popup-body p-4 text-center\" lang=\"\">\n <strong class=\"text-xl mb-4 d-block\" lang=\"\">\n\n \n\n <div class=\"ysi-phone-widget ysi-phone-wrapper\" lang=\"\">\n <div class=\"d-inline-flex\" lang=\"\">\n <a data-selenium-id=\"click_to_call\" href=\"tel:(844) 467-3195\" aria-label=\"Call Aalto at +1 819-809-9131\" class=\"ysi-phone-number click-to-call-href text-decoration-none color-inherit \" lang=\"\">\n <span aria-hidden=\"true\" class=\"fa-flip-horizontal fas fa-phone mobile-phone-icon\" lang=\"\"></span>\n <span class=\"click-to-call ml-2 text-underline\" lang=\"\">(844) 467-3195</span>\n </a>\n\n </div>\n </div>\n \n</strong>\n \n \n <div class=\"ysi-office-hours-widget ysi-office-hours-wrapper\" lang=\"\">\n <div class=\"d-inline-flex\" lang=\"\">\n <div class=\"ysi-office-hours\" data-selenium-id=\"SID_footer_officeHours\" lang=\"\">\n <ul class=\"list-unstyled mb-0\" lang=\"\">\n <li class=\" \" lang=\"\">\n <span class=\"office-hours-day\" data-selenium-id=\"OHMondayFriday\" lang=\"\">Lundi<span class=\"sr-only\" lang=\"\">à</span>- Vendredi :</span>\n <span class=\"office-hours-time\" data-selenium-id=\"OHMondayFridayTime\" lang=\"\">9h<span class=\"sr-only\" lang=\"\">à</span>- 18h</span>\n</li>\n <li class=\" \" lang=\"\">\n <span class=\"office-hours-day\" data-selenium-id=\"OHSaturday\" lang=\"\">Samedi :</span>\n <span class=\"office-hours-time\" data-selenium-id=\"OHSaturdayTime\" lang=\"\">10h<span class=\"sr-only\" lang=\"\">à</span>- 17h</span>\n</li>\n <li class=\" \" lang=\"\">\n <span class=\"office-hours-day\" data-selenium-id=\"OHSunday\" lang=\"\">Dimanche :</span>\n <span class=\"office-hours-time\" data-selenium-id=\"OHSundayTime\" lang=\"\">Fermé</span>\n</li>\n </ul>\n </div>\n </div>\n </div>\n\n </div>\n <div class=\"border-top px-4 py-4 text-center\" lang=\"\">\n \n\n\n\n\n<div class=\"ysi-address-widget ysi-address-wrapper\" lang=\"\">\n <div class=\"d-inline-flex\" lang=\"\">\n <address class=\"ysi-address\">\n <a class=\"address-link color-inherit d-block\" href=\"https://maps.google.com/?q=10%20Rue%20Jos-Montferrand%20%20Gatineau,%20%20QC%20%20J8X%200A6\" target=\"_blank\" rel=\"noreferrer\" lang=\"\">\n <div itemprop=\"name\" data-selenium-id=\"address_propname\" lang=\"\">Aalto</div>\n <div itemprop=\"address\" lang=\"\">\n <div data-selenium-id=\"address_street\" lang=\"\">\n 10 Rue Jos-Montferrand\n </div>\n <div lang=\"\">\n <span data-selenium-id=\"address_city\" lang=\"\">Gatineau</span>,<span data-selenium-id=\"address_state\" lang=\"\">QC</span><span data-selenium-id=\"address_zip\" lang=\"\"> J8X 0A6</span>\n </div>\n </div>\n\t\t\t\t\t<span class=\"sr-only\" lang=\"\">S'ouvre dans un nouvel onglet</span>\n </a>\n </address>\n\n </div>\n</div>\n\n\n </div>\n </div>\n </div>\n <!--END Modal: Call Us -->\n\n\n\n <div id=\"schedule-a-tour-window\" class=\"popup-widgets-window draggable scrollable \" lang=\"\">\n <div class=\"popup-content\" lang=\"\">\n <div class=\"popup-header modal-header\" lang=\"\">\n <h2 class=\"m-0 text-truncate\" lang=\"\">Planifier une visite</h2>\n <button class=\"close\" aria-label=\"Close this dialog window\" data-selenium-id=\"close\" lang=\"\"> <span aria-hidden=\"true\" class=\"fa fa-times\" lang=\"\"></span></button>\n </div>\n <div id=\"help-widget-schedule-a-tour-modal-body\" class=\"popup-body\" lang=\"\">\n <!-- Modal content loaded here -->\n </div>\n </div>\n </div>\n\n</div>\n \n \n \n \n\n \n <!-- Nudge positioning -->\n \n \n <!-- ScheduleTourEnabled -->\n <link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/ysi.datepicker.558563.134292782880000000.css\" media=\"all\">\n <link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/schedule-a-tour.558563.134292782880000000.css\" media=\"all\">\n <link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/help-widget-schedule-a-tour.558563.134292782880000000.css\" media=\"all\">\n \n \n\n\n \n \n <link href=\"https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/intlTelInput.558563.134292782880000000.css\" rel=\"stylesheet\" type=\"text/css\">\n\n\n \n\n \n <yardi-widget-siteeditorscript></yardi-widget-siteeditorscript>\n\n\n<div height=\"1\" width=\"1\" style=\"position: absolute; top: 0px; left: 0px; border-width: medium; border-style: none; border-color: currentcolor; border-image: none; visibility: hidden;\" data-original-tag=\"iframe\"></div>\n</body></html>"}} | |
| \ No newline at end of file | ||
modified
tests/fixtures/aalto/expected.json
+26 −82
@@ -1,5 +1,5 @@ | ||
| 1 | 1 | { |
| 2 | − "count": 28, | |
| 2 | + "count": 24, | |
| 3 | 3 | "listings": [ |
| 4 | 4 | { |
| 5 | 5 | "uid": "aalto:aalto-a10", |
@@ -58,9 +58,9 @@ | ||
| 58 | 58 | "n_amenities": 0 |
| 59 | 59 | }, |
| 60 | 60 | { |
| 61 | − "uid": "aalto:aalto-a5", | |
| 61 | + "uid": "aalto:aalto-a5-accessible", | |
| 62 | 62 | "url": "https://www.aaltosuites.ca/floorplans", |
| 63 | − "title": "Aalto | A5", | |
| 63 | + "title": "Aalto | A5 | Accessible", | |
| 64 | 64 | "address": "10, rue Jos-Montferrand, Gatineau", |
| 65 | 65 | "sector": "Hull", |
| 66 | 66 | "city": "Gatineau", |
@@ -79,30 +79,30 @@ | ||
| 79 | 79 | "sector": "Hull", |
| 80 | 80 | "city": "Gatineau", |
| 81 | 81 | "unit_type": "3½", |
| 82 | − "price": 1875.0, | |
| 82 | + "price": 1860.0, | |
| 83 | 83 | "availability": "", |
| 84 | 84 | "area_sqft": 620.0, |
| 85 | 85 | "n_images": 1, |
| 86 | 86 | "n_amenities": 0 |
| 87 | 87 | }, |
| 88 | 88 | { |
| 89 | − "uid": "aalto:aalto-a7", | |
| 89 | + "uid": "aalto:aalto-a7-accessible", | |
| 90 | 90 | "url": "https://www.aaltosuites.ca/floorplans", |
| 91 | − "title": "Aalto | A7", | |
| 91 | + "title": "Aalto | A7 | Accessible", | |
| 92 | 92 | "address": "10, rue Jos-Montferrand, Gatineau", |
| 93 | 93 | "sector": "Hull", |
| 94 | 94 | "city": "Gatineau", |
| 95 | 95 | "unit_type": "3½", |
| 96 | − "price": 1840.0, | |
| 96 | + "price": 1700.0, | |
| 97 | 97 | "availability": "", |
| 98 | 98 | "area_sqft": 607.0, |
| 99 | 99 | "n_images": 1, |
| 100 | 100 | "n_amenities": 0 |
| 101 | 101 | }, |
| 102 | 102 | { |
| 103 | − "uid": "aalto:aalto-a8", | |
| 103 | + "uid": "aalto:aalto-a8-accessible", | |
| 104 | 104 | "url": "https://www.aaltosuites.ca/floorplans", |
| 105 | − "title": "Aalto | A8", | |
| 105 | + "title": "Aalto | A8 | Accessible", | |
| 106 | 106 | "address": "10, rue Jos-Montferrand, Gatineau", |
| 107 | 107 | "sector": "Hull", |
| 108 | 108 | "city": "Gatineau", |
@@ -114,14 +114,14 @@ | ||
| 114 | 114 | "n_amenities": 0 |
| 115 | 115 | }, |
| 116 | 116 | { |
| 117 | − "uid": "aalto:aalto-a9", | |
| 117 | + "uid": "aalto:aalto-a9-accessible", | |
| 118 | 118 | "url": "https://www.aaltosuites.ca/floorplans", |
| 119 | − "title": "Aalto | A9", | |
| 119 | + "title": "Aalto | A9 | Accessible", | |
| 120 | 120 | "address": "10, rue Jos-Montferrand, Gatineau", |
| 121 | 121 | "sector": "Hull", |
| 122 | 122 | "city": "Gatineau", |
| 123 | 123 | "unit_type": "3½", |
| 124 | − "price": 1840.0, | |
| 124 | + "price": 1690.0, | |
| 125 | 125 | "availability": "", |
| 126 | 126 | "area_sqft": 609.0, |
| 127 | 127 | "n_images": 1, |
@@ -135,26 +135,12 @@ | ||
| 135 | 135 | "sector": "Hull", |
| 136 | 136 | "city": "Gatineau", |
| 137 | 137 | "unit_type": "3½", |
| 138 | − "price": 1980.0, | |
| 138 | + "price": 1880.0, | |
| 139 | 139 | "availability": "", |
| 140 | 140 | "area_sqft": 735.0, |
| 141 | 141 | "n_images": 1, |
| 142 | 142 | "n_amenities": 0 |
| 143 | 143 | }, |
| 144 | − { | |
| 145 | − "uid": "aalto:aalto-c5", | |
| 146 | − "url": "https://www.aaltosuites.ca/floorplans", | |
| 147 | − "title": "Aalto | C5", | |
| 148 | − "address": "10, rue Jos-Montferrand, Gatineau", | |
| 149 | − "sector": "Hull", | |
| 150 | − "city": "Gatineau", | |
| 151 | − "unit_type": "4½", | |
| 152 | − "price": 2065.0, | |
| 153 | − "availability": "", | |
| 154 | − "area_sqft": 849.0, | |
| 155 | − "n_images": 1, | |
| 156 | − "n_amenities": 0 | |
| 157 | − }, | |
| 158 | 144 | { |
| 159 | 145 | "uid": "aalto:aalto-c7", |
| 160 | 146 | "url": "https://www.aaltosuites.ca/floorplans", |
@@ -163,7 +149,7 @@ | ||
| 163 | 149 | "sector": "Hull", |
| 164 | 150 | "city": "Gatineau", |
| 165 | 151 | "unit_type": "4½", |
| 166 | − "price": 2135.0, | |
| 152 | + "price": 2145.0, | |
| 167 | 153 | "availability": "", |
| 168 | 154 | "area_sqft": 844.0, |
| 169 | 155 | "n_images": 1, |
@@ -184,14 +170,14 @@ | ||
| 184 | 170 | "n_amenities": 0 |
| 185 | 171 | }, |
| 186 | 172 | { |
| 187 | − "uid": "aalto:aalto-ii-a2", | |
| 173 | + "uid": "aalto:aalto-ii-a2-accessible", | |
| 188 | 174 | "url": "https://www.aaltosuites.ca/floorplans", |
| 189 | − "title": "Aalto II | A2", | |
| 175 | + "title": "Aalto II | A2 | Accessible", | |
| 190 | 176 | "address": "10, rue Jos-Montferrand, Gatineau", |
| 191 | 177 | "sector": "Hull", |
| 192 | 178 | "city": "Gatineau", |
| 193 | 179 | "unit_type": "3½", |
| 194 | − "price": 1810.0, | |
| 180 | + "price": 1660.0, | |
| 195 | 181 | "availability": "", |
| 196 | 182 | "area_sqft": 550.0, |
| 197 | 183 | "n_images": 1, |
@@ -211,20 +197,6 @@ | ||
| 211 | 197 | "n_images": 1, |
| 212 | 198 | "n_amenities": 0 |
| 213 | 199 | }, |
| 214 | − { | |
| 215 | − "uid": "aalto:aalto-ii-a5", | |
| 216 | − "url": "https://www.aaltosuites.ca/floorplans", | |
| 217 | − "title": "Aalto II | A5", | |
| 218 | − "address": "10, rue Jos-Montferrand, Gatineau", | |
| 219 | − "sector": "Hull", | |
| 220 | − "city": "Gatineau", | |
| 221 | − "unit_type": "3½", | |
| 222 | − "price": 1855.0, | |
| 223 | − "availability": "", | |
| 224 | − "area_sqft": 527.0, | |
| 225 | − "n_images": 1, | |
| 226 | − "n_amenities": 0 | |
| 227 | − }, | |
| 228 | 200 | { |
| 229 | 201 | "uid": "aalto:aalto-ii-a6", |
| 230 | 202 | "url": "https://www.aaltosuites.ca/floorplans", |
@@ -317,65 +289,37 @@ | ||
| 317 | 289 | "sector": "Hull", |
| 318 | 290 | "city": "Gatineau", |
| 319 | 291 | "unit_type": "4½", |
| 320 | − "price": 2295.0, | |
| 292 | + "price": 2230.0, | |
| 321 | 293 | "availability": "", |
| 322 | 294 | "area_sqft": 875.0, |
| 323 | 295 | "n_images": 1, |
| 324 | 296 | "n_amenities": 0 |
| 325 | 297 | }, |
| 326 | 298 | { |
| 327 | − "uid": "aalto:aalto-ii-d1", | |
| 328 | − "url": "https://www.aaltosuites.ca/floorplans", | |
| 329 | − "title": "Aalto II | D1", | |
| 330 | − "address": "10, rue Jos-Montferrand, Gatineau", | |
| 331 | − "sector": "Hull", | |
| 332 | − "city": "Gatineau", | |
| 333 | − "unit_type": "4½", | |
| 334 | − "price": 2485.0, | |
| 335 | − "availability": "", | |
| 336 | − "area_sqft": 1068.0, | |
| 337 | − "n_images": 1, | |
| 338 | − "n_amenities": 0 | |
| 339 | − }, | |
| 340 | − { | |
| 341 | − "uid": "aalto:aalto-ii-d3", | |
| 299 | + "uid": "aalto:aalto-ii-c6", | |
| 342 | 300 | "url": "https://www.aaltosuites.ca/floorplans", |
| 343 | − "title": "Aalto II | D3", | |
| 301 | + "title": "Aalto II | C6", | |
| 344 | 302 | "address": "10, rue Jos-Montferrand, Gatineau", |
| 345 | 303 | "sector": "Hull", |
| 346 | 304 | "city": "Gatineau", |
| 347 | 305 | "unit_type": "4½", |
| 348 | − "price": 2460.0, | |
| 306 | + "price": 2395.0, | |
| 349 | 307 | "availability": "", |
| 350 | − "area_sqft": 1016.0, | |
| 308 | + "area_sqft": 995.0, | |
| 351 | 309 | "n_images": 1, |
| 352 | 310 | "n_amenities": 0 |
| 353 | 311 | }, |
| 354 | 312 | { |
| 355 | − "uid": "aalto:aalto-ii-d4", | |
| 356 | − "url": "https://www.aaltosuites.ca/floorplans", | |
| 357 | − "title": "Aalto II | D4", | |
| 358 | − "address": "10, rue Jos-Montferrand, Gatineau", | |
| 359 | − "sector": "Hull", | |
| 360 | − "city": "Gatineau", | |
| 361 | − "unit_type": "4½", | |
| 362 | − "price": 2410.0, | |
| 363 | − "availability": "", | |
| 364 | − "area_sqft": 963.0, | |
| 365 | − "n_images": 1, | |
| 366 | − "n_amenities": 0 | |
| 367 | − }, | |
| 368 | − { | |
| 369 | − "uid": "aalto:aalto-ii-d6", | |
| 313 | + "uid": "aalto:aalto-ii-d1", | |
| 370 | 314 | "url": "https://www.aaltosuites.ca/floorplans", |
| 371 | − "title": "Aalto II | D6", | |
| 315 | + "title": "Aalto II | D1", | |
| 372 | 316 | "address": "10, rue Jos-Montferrand, Gatineau", |
| 373 | 317 | "sector": "Hull", |
| 374 | 318 | "city": "Gatineau", |
| 375 | 319 | "unit_type": "4½", |
| 376 | − "price": 2380.0, | |
| 320 | + "price": 2485.0, | |
| 377 | 321 | "availability": "", |
| 378 | − "area_sqft": 914.0, | |
| 322 | + "area_sqft": 1068.0, | |
| 379 | 323 | "n_images": 1, |
| 380 | 324 | "n_amenities": 0 |
| 381 | 325 | }, |
deleted
tests/fixtures/aalto/ff1e66d178eb462874f9.json
+0 −1
@@ -1 +0,0 @@ | ||
| 1 | −{"success":true,"data":{"metadata":{"title":"Aalto | Apartments in Gatineau, QC","description":"Check for available units at Aalto in Gatineau, QC. View floor plans, photos, and community amenities. Make Aalto your new home.","theme-color":"#999","keywords":"apartments, rentals, apartment guide, apartment finder, apartment search, apartment locator, apartments for rent, apartment listings","viewport":"width=device-width, initial-scale=1.0 ","referrer":"always","language":"fr-ca","author":"Aalto","favicon":"https://resource.rentcafe.com/image/upload/q_auto,f_auto,w_152,h_152/s3/2/144684/favicon%20(1).png","scrapeId":"019fe4fd-2a90-71d7-a6e4-3b96959ae028","sourceURL":"https://www.aaltosuites.ca/","url":"https://www.aaltosuites.ca/","statusCode":200,"contentType":"text/html; charset=utf-8","proxyUsed":"basic","cacheState":"hit","cachedAt":"2026-08-09T05:26:42.986Z","creditsUsed":1,"concurrencyLimited":false},"html":"<!DOCTYPE html><html lang=\"fr-ca\" style=\"--helpwidget-bottom-offset: 0px;\">\n\n<body id=\"homepage\">\n \n\n \n\n \n\n \n\n \n\n \n\n\n \n\n\n<a id=\"skip-nav\" href=\"https://www.aaltosuites.ca/#main-content\" lang=\"\">Passer au contenu principal</a>\n \n\n\n\n \n\n\n\n\n\n\n\n \n \n\n\n\n\n\n\n\n \n \n\n \n\n<main id=\"main-content\"><div class=\"contain container-fluid p-0\" lang=\"\"><div class=\"row no-gutters\" lang=\"\"><div class=\"justify-content-start align-items-stretch flex-column d-flex text-left p-0 col-12 col-lg-6 order-2 order-lg-1\" lang=\"\">\t<div class=\"ysi-picture-widget ysi-picture-wrapper w-100 h-100 w-100 h-100 w-100 h-100\" lang=\"\">\n\t<picture>\n<source media=\"(min-width: 4500px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_3106,h_3106,c_crop/q_auto,f_auto,c_fill,w_1600,ar_0.942,g_auto/s3/2/144684/zibi_aaltosuites-int.jpg\">\n<source media=\"(min-width: 3840px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_3106,h_3106,c_crop/q_auto,f_auto,c_fill,w_2250,ar_0.942,g_auto/s3/2/144684/zibi_aaltosuites-int.jpg\">\n<source media=\"(min-width: 3200px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_3106,h_3106,c_crop/q_auto,f_auto,c_fill,w_1920,ar_0.942,g_auto/s3/2/144684/zibi_aaltosuites-int.jpg\">\n<source media=\"(min-width: 2560px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_3106,h_3106,c_crop/q_auto,f_auto,c_fill,w_1600,ar_0.942,g_auto/s3/2/144684/zibi_aaltosuites-int.jpg\">\n<source media=\"(min-width: 1920px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_3106,h_3106,c_crop/q_auto,f_auto,c_fill,w_1280,ar_0.942,g_auto/s3/2/144684/zibi_aaltosuites-int.jpg\">\n<source media=\"(min-width: 1440px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_3106,h_3106,c_crop/q_auto,f_auto,c_fill,w_960,ar_0.942,g_auto/s3/2/144684/zibi_aaltosuites-int.jpg\">\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_3106,h_3106,c_crop/q_auto,f_auto,c_fill,w_720,ar_0.942,g_auto/s3/2/144684/zibi_aaltosuites-int.jpg\">\n<source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_3106,h_3106,c_crop/q_auto,f_auto,c_fill,w_600,ar_0.942,g_auto/s3/2/144684/zibi_aaltosuites-int.jpg\">\n<source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_3106,h_3106,c_crop/q_auto,f_auto,c_fill,w_992,ar_0.942,g_auto/s3/2/144684/zibi_aaltosuites-int.jpg\">\n<source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_3106,h_3106,c_crop/q_auto,f_auto,c_fill,w_768,ar_0.942,g_auto/s3/2/144684/zibi_aaltosuites-int.jpg\"><img src=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_3106,h_3106,c_crop/q_auto,f_auto,c_fill,w_576,ar_0.942,g_auto/s3/2/144684/zibi_aaltosuites-int.jpg\" class=\"w-100 h-100 img-fluid\" alt=\"A modern multi-story building with a curved facade and balconies is situated on a street corner.\" width=\"2926\" height=\"3106\">\n</picture>\n\n\n\n\t</div>\n\n</div><div class=\"py-lg-7 pl-lg-6 pr-lg-7 py-5 px-4 se-custom-bgcolor col-12 offset-0 d-flex justify-content-center align-items-center flex-column text-center col-lg-6 align-items-lg-start text-lg-left order-1 order-lg-2\" style=\"background-color:rgba(249,247,245,1) !important\" lang=\"\"> <div style=\"display:flex; align-items:center; gap:1rem; margin-bottom:2rem;\" lang=\"\">\n <div style=\"width:48px; height:1.5px; background:#528aa1;\" lang=\"\"></div>\n <span style=\"font-size:0.9rem; font-weight:500; letter-spacing:0.22em; text-transform:uppercase; color:#528aa1;\" lang=\"\">VIVRE À AALTO ET AALTO II</span>\n </div>\n <div class=\"display-3 h1\" lang=\"\"><span style=\"font-family: "Times New Roman";\" lang=\"\">Trouvez votre suite</span></div>\n \n \n <p style=\"font-size:1rem; font-weight:300; line-height:1.85; color:#424242; max-width:700px; margin-bottom:3rem;\" lang=\"\">Bienvenue à Aalto et Aalto II — les premiers immeubles résidentiels de Zibi et de véritables emblèmes sur les rives de la rivière des Outaouais. Que vous choisissiez Aalto ou Aalto II, vous profiterez du même mode de vie au bord de l’eau et d’un accès privilégié aux meilleurs attraits de la région de la capitale nationale.<br lang=\"\"><br lang=\"\">Les deux édifices offrent des suites lumineuses, allant du studio à l'appartement deux chambres plus bureau, chacune dotée d'un balcon privé et d'une vue imprenable sur la rivière. À l'intérieur, chaque détail a été pensé avec soin : comptoirs en quartz, électroménagers en acier inoxydable certifiés Energy Star, buanderie privée et finitions haut de gamme.</p><a href=\"https://www.aaltosuites.ca/floorplans\" style=\"display:inline-block; background:#5f8b9e; color:#fff; border-radius: 2px; padding:1rem 2.2rem; font-size:0.72rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; text-decoration:none; font-family:'Jost',sans-serif;\" lang=\"\">DÉCOUVRIR LES PLANS D’ÉTAGE</a></div></div></div><div class=\"cover center-center no-repeat se-custom-bgcolor container-fluid p-0\" style=\"background-color:rgba(249,247,245,1) !important\" lang=\"\"><div class=\"row no-gutters\" lang=\"\"><div class=\"py-lg-7 pl-lg-6 pr-lg-7 py-5 px-4 col-12 offset-0 d-flex text-center col-lg-6 text-lg-left justify-content-center align-items-center align-items-lg-start flex-column\" lang=\"\"> <div style=\"display:flex; align-items:center; gap:1rem; margin-bottom:2rem;\" lang=\"\">\n <div style=\"width:48px; height:1.5px; background:#528aa1;\" lang=\"\"></div>\n <span style=\"font-size:0.9rem; font-weight:500; letter-spacing:0.22em; text-transform:uppercase; color:#528aa1;\" lang=\"\">VIVRE À ZIBI</span>\n </div> <div class=\"display-3 h1\" lang=\"\"><font face=\"Times New Roman\" lang=\"\">Au cœur de tout</font></div> <p style=\"font-size:1rem; font-weight:300; line-height:1.85; color:#424242; max-width:700px; margin-bottom:3rem;\" lang=\"\">Aalto et Aalto II sont situés sur la rive nord de la rivière des Outaouais et offrent des vues spectaculaires sur la Cour suprême du Canada, le Parlement et le Musée des beaux-arts du Canada. Les immeubles se trouvent à quelques pas des centres-villes d’Ottawa et de Gatineau, tout près du parc riverain Tesasini. Grâce à un accès facile au transport en commun et aux sentiers polyvalents, un mode de vie actif et connecté s’impose naturellement.</p><a href=\"https://www.aaltosuites.ca/neighbourhood\" style=\"display:inline-block; background:#5f8b9e; color:#fff; border-radius: 2px; padding:1rem 2.2rem; font-size:0.72rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; text-decoration:none; font-family:'Jost',sans-serif;\" lang=\"\">En savoir plus</a></div><div class=\"col-12 offset-0 col-lg-6 justify-content-center align-items-center\" lang=\"\">\t<div class=\"ysi-picture-widget ysi-picture-wrapper h-100 w-100 \" lang=\"\">\n\t<picture>\n<source media=\"(min-width: 1440px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_1800,h_1800,c_crop/q_auto,f_auto,c_limit,w_1800/s3/2/144684/festibiere2024_orkestra-mxlevesque_webres-52.png\">\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_1800,h_1800,c_crop/q_auto,f_auto,c_limit,w_1440/s3/2/144684/festibiere2024_orkestra-mxlevesque_webres-52.png\">\n<source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_1800,h_1800,c_crop/q_auto,f_auto,c_limit,w_1200/s3/2/144684/festibiere2024_orkestra-mxlevesque_webres-52.png\">\n<source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_1800,h_1800,c_crop/q_auto,f_auto,c_limit,w_992/s3/2/144684/festibiere2024_orkestra-mxlevesque_webres-52.png\">\n<source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_1800,h_1800,c_crop/q_auto,f_auto,c_limit,w_768/s3/2/144684/festibiere2024_orkestra-mxlevesque_webres-52.png\"><img src=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_1800,h_1800,c_crop/q_auto,f_auto,c_limit,w_576/s3/2/144684/festibiere2024_orkestra-mxlevesque_webres-52.png\" class=\"0 object-fit-cover h-100 w-100 img-fluid\" alt=\"A modern building is situated by a body of water.\" width=\"1800\" height=\"1800\" loading=\"lazy\">\n</picture>\n\n\n\n\t</div>\n\n</div></div></div><div class=\"text-white se-custom-bgcolor container-fluid p-0\" style=\"background-color:rgba(249,247,245,1) !important\" lang=\"\"><div class=\"row no-gutters\" lang=\"\"><div class=\"order-lg-1 order-2 cover col-12 offset-0 d-flex justify-content-start align-items-stretch flex-column text-left col-lg-6\" lang=\"\">\t<div class=\"ysi-picture-widget ysi-picture-wrapper \" lang=\"\">\n\t<picture>\n<source media=\"(min-width: 1920px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_2560/s3/2/144684/zibi_aaltosuites-partyroom-2(1).jpg\">\n<source media=\"(min-width: 1440px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_1920/s3/2/144684/zibi_aaltosuites-partyroom-2(1).jpg\">\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_1440/s3/2/144684/zibi_aaltosuites-partyroom-2(1).jpg\">\n<source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_1200/s3/2/144684/zibi_aaltosuites-partyroom-2(1).jpg\">\n<source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_992/s3/2/144684/zibi_aaltosuites-partyroom-2(1).jpg\">\n<source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_768/s3/2/144684/zibi_aaltosuites-partyroom-2(1).jpg\"><img src=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_576/s3/2/144684/zibi_aaltosuites-partyroom-2(1).jpg\" class=\"0 img-fluid\" alt=\"A modern living room with a black and white color scheme.\" width=\"2560\" height=\"2560\" loading=\"lazy\">\n</picture>\n\n\n\n\t</div>\n\n</div><div class=\"order-lg-2 order-1 py-lg-6 pl-lg-6 pr-lg-7 py-5 px-4 col-12 offset-0 d-flex text-center col-lg-6 text-lg-left justify-content-center align-items-center align-items-lg-start flex-column\" lang=\"\"> <div style=\"display:flex; align-items:center; gap:1rem; margin-bottom:2rem;\" lang=\"\">\n <div style=\"width:48px; height:1.5px; background:#528aa1;\" lang=\"\"></div>\n <span style=\"font-size:0.9rem; font-weight:500; letter-spacing:0.22em; text-transform:uppercase; color:#528aa1;\" lang=\"\">Commodité</span>\n </div> <div class=\"display-3 h1\" lang=\"\"><span style=\"font-family: "Times New Roman";\" lang=\"\"><font color=\"#000000\" lang=\"\">Un quotidien rehaussé</font></span></div> <p style=\"font-size:1rem; font-weight:300; line-height:1.85; color:#424242; max-width:700px; margin-bottom:3rem;\" lang=\"\">Des commodités modernes conçues pour enrichir votre quotidien. Des espaces communs soigneusement aménagés aux installations de remise en forme axées sur le bien-être, Aalto et Aalto II offrent un équilibre harmonieux entre confort, commodité et connexion.</p><a href=\"https://www.aaltosuites.ca/amenities\" style=\"display:inline-block; background:#5f8b9e; color:#fff; border-radius: 2px; padding:1rem 2.2rem; font-size:0.72rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; text-decoration:none; font-family:'Jost',sans-serif;\" lang=\"\">En savoir plus</a></div></div></div><div class=\"center-center no-repeat text-dark bg-white container-fluid p-0\" lang=\"\"><div class=\"row no-gutters\" lang=\"\"><div class=\"community-connect order-1 py-lg-5 pl-lg-6 pb-lg-0 pr-lg-6 pt-lg-0 py-5 px-4 se-custom-bgcolor col-12 offset-0 d-flex justify-content-center align-items-center flex-column text-center col-lg-6 align-items-lg-start text-lg-left order-3 order-lg-1\" style=\"background-color:rgba(249,247,245,1) !important\" lang=\"\"> <div style=\"display:flex; align-items:center; gap:1rem; margin-bottom:2rem;\" lang=\"\">\n <div style=\"width:48px; height:1.5px; background:#528aa1;\" lang=\"\"></div>\n <span style=\"font-size:0.9rem; font-weight:500; letter-spacing:0.22em; text-transform:uppercase; color:#528aa1;\" lang=\"\">ZIBI</span>\n </div> <div class=\"display-3 h1\" lang=\"\"><span style=\"font-family: "Times New Roman";\" lang=\"\">Vivre dans une communauté connectée</span></div> <p style=\"font-size:1rem; font-weight:300; line-height:1.85; color:#424242; margin-top:2rem; margin-bottom:0rem;\" lang=\"\">Aalto et Aalto II font fièrement partie de Zibi, une communauté primée et planifiée d’envergure située à la fois à Ottawa et à Gatineau. Zibi est l’un des projets urbains les plus ambitieux du Canada, transformant un ancien site industriel en un quartier dynamique et durable où se côtoient harmonieusement espaces résidentiels, commerciaux et verts dans l’un des environnements les plus inspirants de la région de la capitale nationale.<br lang=\"\">En tant que résident de la communauté Zibi, vous profiterez d’un calendrier d’activités toujours animé : festivals extérieurs, rassemblements culturels, événements d’art public et animations de quartier qui attirent des milliers de visiteurs au bord de l’eau tout au long de l’année. Que vous souhaitiez rencontrer vos voisins, explorer les sentiers riverains ou simplement profiter de l’énergie de l’une des communautés les plus vibrantes du Canada, il y a toujours quelque chose à découvrir à Zibi.</p>\n<br lang=\"\"><br lang=\"\">\n \n \n \n <a href=\"https://zibi.ca/whats-happening/\" style=\"display:inline-block; background:#5f8b9e; color:#fff; border-radius: 2px; padding:1rem 2.2rem; font-size:0.72rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; text-decoration:none; font-family:'Jost',sans-serif;\" lang=\"\">En savoir plus</a></div><div class=\"contain center-top no-repeat m-0 p-0 col-12 offset-0 d-flex justify-content-start align-items-center flex-column text-center col-lg-6 offset-lg-0 d-lg-flex order-2\" lang=\"\">\t<div class=\"ysi-picture-widget ysi-picture-wrapper h-100 w-100 \" lang=\"\">\n\t<picture>\n<source media=\"(min-width: 1920px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_2560/s3/2/144684/zibirender2018_7_more-sky.jpg\">\n<source media=\"(min-width: 1440px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_1920/s3/2/144684/zibirender2018_7_more-sky.jpg\">\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_1440/s3/2/144684/zibirender2018_7_more-sky.jpg\">\n<source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_1200/s3/2/144684/zibirender2018_7_more-sky.jpg\">\n<source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_992/s3/2/144684/zibirender2018_7_more-sky.jpg\">\n<source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_768/s3/2/144684/zibirender2018_7_more-sky.jpg\"><img src=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_2560,h_2560,c_crop/q_auto,f_auto,c_limit,w_576/s3/2/144684/zibirender2018_7_more-sky.jpg\" class=\"0 object-fit-cover h-100 w-100 img-fluid\" alt=\"A cityscape with a river running through it.\" width=\"2560\" height=\"2560\" loading=\"lazy\">\n</picture>\n\n\n\n\t</div>\n\n</div></div></div><div class=\"px-xl-7 pt-lg-7 px-md-5 py-5 px-3 se-custom-bgcolor container-fluid p-0\" style=\"background-color:rgba(16,30,62,1) !important\" lang=\"\"><div class=\"row no-gutters\" lang=\"\"><div class=\"mb-lg-0 mb-4 justify-content-center align-items-center align-items-lg-start flex-column d-flex text-center text-lg-left col-12 col-lg-7\" lang=\"\">\n <div class=\"display-3 h1\" lang=\"\"><span style=\"font-family: "Times New Roman";\" lang=\"\"><font color=\"#ffffff\" lang=\"\">Découvrez la vie locative<br lang=\"\">au bord de l’eau</font></span></div>\n </div><div class=\"col-12 offset-0 d-flex justify-content-start align-items-center flex-column text-left col-lg-5 justify-content-lg-end align-items-lg-end flex-lg-row text-lg-center\" lang=\"\"><a href=\"https://www.aaltosuites.ca/photogallery\" style=\"display:inline-block; background:#5f8b9e; color:#fff; border-radius: 2px; padding:1rem 2.2rem; font-size:0.72rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; text-decoration:none; font-family:'Jost',sans-serif;\" lang=\"\">En savoir plus</a></div></div></div><div class=\"py-md-0 px-md-0 py-2 px-2\" lang=\"\"><div class=\"container-fluid\" lang=\"\"><div class=\"row\" lang=\"\"><div class=\"justify-content-start align-items-stretch flex-column d-flex text-left px-0 pr-md-3 col-12 col-md-5 col-lg-5\" lang=\"\"><div class=\"p-0\" lang=\"\"><div class=\"container-fluid\" lang=\"\"><div class=\"row\" lang=\"\"><div class=\"justify-content-start align-items-stretch flex-column d-flex text-left pr-1 pr-md-2 pl-0 col-6 col-lg-6\" lang=\"\">\t<div class=\"ysi-picture-widget ysi-picture-wrapper h-100 w-100 h-100 w-100 h-100 w-100\" lang=\"\">\n\t<picture>\n<source media=\"(min-width: 2560px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_10000,h_8891,c_crop/q_auto,f_auto,c_fill,w_3200,ar_0.877,g_auto/s3/2/144684/aalto_aalto%20ii_exterior(1).jpg\">\n<source media=\"(min-width: 1920px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_10000,h_8891,c_crop/q_auto,f_auto,c_fill,w_2560,ar_0.877,g_auto/s3/2/144684/aalto_aalto%20ii_exterior(1).jpg\">\n<source media=\"(min-width: 1440px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_10000,h_8891,c_crop/q_auto,f_auto,c_fill,w_1920,ar_0.877,g_auto/s3/2/144684/aalto_aalto%20ii_exterior(1).jpg\">\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_10000,h_8891,c_crop/q_auto,f_auto,c_fill,w_1440,ar_0.877,g_auto/s3/2/144684/aalto_aalto%20ii_exterior(1).jpg\">\n<source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_10000,h_8891,c_crop/q_auto,f_auto,c_fill,w_1200,ar_0.877,g_auto/s3/2/144684/aalto_aalto%20ii_exterior(1).jpg\">\n<source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_10000,h_8891,c_crop/q_auto,f_auto,c_fill,w_992,ar_0.877,g_auto/s3/2/144684/aalto_aalto%20ii_exterior(1).jpg\">\n<source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_10000,h_8891,c_crop/q_auto,f_auto,c_fill,w_768,ar_0.877,g_auto/s3/2/144684/aalto_aalto%20ii_exterior(1).jpg\"><img src=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_10000,h_8891,c_crop/q_auto,f_auto,c_fill,w_576,ar_0.877,g_auto/s3/2/144684/aalto_aalto%20ii_exterior(1).jpg\" class=\"w-100 h-100 object-fit-cover img-fluid\" alt=\"A modern multi-story building with a curved facade and balconies is situated on a street corner.\" width=\"7797\" height=\"8891\">\n</picture>\n\n\n\n\t</div>\n\n</div><div class=\"justify-content-start align-items-stretch flex-column d-flex text-left pl-1 pl-md-2 pr-0 col-6 col-lg-6\" lang=\"\">\t<div class=\"ysi-picture-widget ysi-picture-wrapper h-100 w-100 h-100 w-100 h-100 w-100\" lang=\"\">\n\t<picture>\n<source media=\"(min-width: 2560px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_6000,h_4000,c_crop/q_auto,f_auto,c_fill,w_3200,ar_0.877,g_auto/s3/2/144684/aalto%20ii_gym_1.jpg\">\n<source media=\"(min-width: 1920px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_6000,h_4000,c_crop/q_auto,f_auto,c_fill,w_2560,ar_0.877,g_auto/s3/2/144684/aalto%20ii_gym_1.jpg\">\n<source media=\"(min-width: 1440px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_6000,h_4000,c_crop/q_auto,f_auto,c_fill,w_1920,ar_0.877,g_auto/s3/2/144684/aalto%20ii_gym_1.jpg\">\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_6000,h_4000,c_crop/q_auto,f_auto,c_fill,w_1440,ar_0.877,g_auto/s3/2/144684/aalto%20ii_gym_1.jpg\">\n<source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_6000,h_4000,c_crop/q_auto,f_auto,c_fill,w_1200,ar_0.877,g_auto/s3/2/144684/aalto%20ii_gym_1.jpg\">\n<source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_6000,h_4000,c_crop/q_auto,f_auto,c_fill,w_992,ar_0.877,g_auto/s3/2/144684/aalto%20ii_gym_1.jpg\">\n<source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_6000,h_4000,c_crop/q_auto,f_auto,c_fill,w_768,ar_0.877,g_auto/s3/2/144684/aalto%20ii_gym_1.jpg\"><img src=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_6000,h_4000,c_crop/q_auto,f_auto,c_fill,w_576,ar_0.877,g_auto/s3/2/144684/aalto%20ii_gym_1.jpg\" class=\"w-100 h-100 object-fit-cover img-fluid\" alt=\"A spacious gym with a variety of exercise equipment and a view of the city skyline.\" width=\"3508\" height=\"4000\">\n</picture>\n\n\n\n\t</div>\n\n</div></div></div></div><div class=\"p-0\" lang=\"\"><div class=\"container-fluid\" lang=\"\"><div class=\"row\" lang=\"\"><div class=\"justify-content-start align-items-stretch flex-row d-flex text-left pt-2 pt-md-3 px-0 col-12 col-lg-12\" lang=\"\">\t<div class=\"ysi-picture-widget ysi-picture-wrapper h-100 w-100 h-100 w-100 h-100 w-100\" lang=\"\">\n\t<picture>\n<source media=\"(min-width: 2560px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_5000,h_2813,c_crop/q_auto,f_auto,c_fill,w_3200,ar_1.334,g_auto/s3/2/144684/int_suite_09_vf.jpg\">\n<source media=\"(min-width: 1920px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_5000,h_2813,c_crop/q_auto,f_auto,c_fill,w_2560,ar_1.334,g_auto/s3/2/144684/int_suite_09_vf.jpg\">\n<source media=\"(min-width: 1440px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_5000,h_2813,c_crop/q_auto,f_auto,c_fill,w_1920,ar_1.334,g_auto/s3/2/144684/int_suite_09_vf.jpg\">\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_5000,h_2813,c_crop/q_auto,f_auto,c_fill,w_1440,ar_1.334,g_auto/s3/2/144684/int_suite_09_vf.jpg\">\n<source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_5000,h_2813,c_crop/q_auto,f_auto,c_fill,w_1200,ar_1.334,g_auto/s3/2/144684/int_suite_09_vf.jpg\">\n<source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_5000,h_2813,c_crop/q_auto,f_auto,c_fill,w_992,ar_1.334,g_auto/s3/2/144684/int_suite_09_vf.jpg\">\n<source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_5000,h_2813,c_crop/q_auto,f_auto,c_fill,w_768,ar_1.334,g_auto/s3/2/144684/int_suite_09_vf.jpg\"><img src=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_5000,h_2813,c_crop/q_auto,f_auto,c_fill,w_576,ar_1.334,g_auto/s3/2/144684/int_suite_09_vf.jpg\" class=\"w-100 h-100 object-fit-cover img-fluid\" alt=\"A modern kitchen with a dining area and a view of the city.\" width=\"3753\" height=\"2813\">\n</picture>\n\n\n\n\t</div>\n\n</div></div></div></div></div><div class=\"justify-content-start align-items-stretch flex-column d-flex text-left px-0 pr-md-3 pt-2 pt-md-0 col-12 col-md-5 col-lg-5\" lang=\"\"><div class=\"p-0\" lang=\"\"><div class=\"container-fluid\" lang=\"\"><div class=\"row\" lang=\"\"><div class=\"justify-content-start align-items-stretch flex-column d-flex text-left pb-2 pb-md-3 px-0 col-12 col-lg-12\" lang=\"\">\t<div class=\"ysi-picture-widget ysi-picture-wrapper h-100 w-100 h-100 w-100 h-100 w-100\" lang=\"\">\n\t<picture>\n<source media=\"(min-width: 1920px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_2048,h_1532,c_crop/q_auto,f_auto,c_fill,w_2043,ar_1.334,g_auto/s3/2/144684/zibi2022-kanaalbike.jpg\">\n<source media=\"(min-width: 1440px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_2048,h_1532,c_crop/q_auto,f_auto,c_fill,w_1920,ar_1.334,g_auto/s3/2/144684/zibi2022-kanaalbike.jpg\">\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_2048,h_1532,c_crop/q_auto,f_auto,c_fill,w_1440,ar_1.334,g_auto/s3/2/144684/zibi2022-kanaalbike.jpg\">\n<source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_2048,h_1532,c_crop/q_auto,f_auto,c_fill,w_1200,ar_1.334,g_auto/s3/2/144684/zibi2022-kanaalbike.jpg\">\n<source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_2048,h_1532,c_crop/q_auto,f_auto,c_fill,w_992,ar_1.334,g_auto/s3/2/144684/zibi2022-kanaalbike.jpg\">\n<source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_2048,h_1532,c_crop/q_auto,f_auto,c_fill,w_768,ar_1.334,g_auto/s3/2/144684/zibi2022-kanaalbike.jpg\"><img src=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_2048,h_1532,c_crop/q_auto,f_auto,c_fill,w_576,ar_1.334,g_auto/s3/2/144684/zibi2022-kanaalbike.jpg\" class=\"w-100 h-100 object-fit-cover img-fluid\" alt=\"Two people riding bicycles on a path near a body of water with buildings in the background.\" width=\"2044\" height=\"1532\">\n</picture>\n\n\n\n\t</div>\n\n</div></div></div></div><div class=\"p-0\" lang=\"\"><div class=\"container-fluid\" lang=\"\"><div class=\"row\" lang=\"\"><div class=\"justify-content-start align-items-stretch flex-column d-flex text-left pr-1 pr-md-2 pl-0 col-6 col-lg-6\" lang=\"\">\t<div class=\"ysi-picture-widget ysi-picture-wrapper h-100 w-100 h-100 w-100 h-100 w-100\" lang=\"\">\n\t<picture>\n<source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_1238,h_1234,c_crop/q_auto,f_auto,c_fill,w_1082,ar_0.877,g_auto/s3/2/144684/rogers%20interzip%20(1).png\">\n<source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_1238,h_1234,c_crop/q_auto,f_auto,c_fill,w_992,ar_0.877,g_auto/s3/2/144684/rogers%20interzip%20(1).png\">\n<source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_1238,h_1234,c_crop/q_auto,f_auto,c_fill,w_768,ar_0.877,g_auto/s3/2/144684/rogers%20interzip%20(1).png\"><img src=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_1238,h_1234,c_crop/q_auto,f_auto,c_fill,w_576,ar_0.877,g_auto/s3/2/144684/rogers%20interzip%20(1).png\" class=\"w-100 h-100 object-fit-cover img-fluid\" alt=\"Two people are swinging on a wire in front of a large castle.\" width=\"1082\" height=\"1234\">\n</picture>\n\n\n\n\t</div>\n\n</div><div class=\"justify-content-start align-items-stretch flex-column d-flex text-left pl-1 pl-md-2 pr-0 col-6 col-lg-6\" lang=\"\">\t<div class=\"ysi-picture-widget ysi-picture-wrapper h-100 w-100 h-100 w-100 h-100 w-100\" lang=\"\">\n\t<picture>\n<source media=\"(min-width: 2560px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_3333,h_4166,c_crop/q_auto,f_auto,c_fill,w_3200,ar_0.877,g_auto/s3/2/144684/dscf0140%20curtis%20perry.jpg\">\n<source media=\"(min-width: 1920px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_3333,h_4166,c_crop/q_auto,f_auto,c_fill,w_2560,ar_0.877,g_auto/s3/2/144684/dscf0140%20curtis%20perry.jpg\">\n<source media=\"(min-width: 1440px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_3333,h_4166,c_crop/q_auto,f_auto,c_fill,w_1920,ar_0.877,g_auto/s3/2/144684/dscf0140%20curtis%20perry.jpg\">\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_3333,h_4166,c_crop/q_auto,f_auto,c_fill,w_1440,ar_0.877,g_auto/s3/2/144684/dscf0140%20curtis%20perry.jpg\">\n<source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_3333,h_4166,c_crop/q_auto,f_auto,c_fill,w_1200,ar_0.877,g_auto/s3/2/144684/dscf0140%20curtis%20perry.jpg\">\n<source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_3333,h_4166,c_crop/q_auto,f_auto,c_fill,w_992,ar_0.877,g_auto/s3/2/144684/dscf0140%20curtis%20perry.jpg\">\n<source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_3333,h_4166,c_crop/q_auto,f_auto,c_fill,w_768,ar_0.877,g_auto/s3/2/144684/dscf0140%20curtis%20perry.jpg\"><img src=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_3333,h_4166,c_crop/q_auto,f_auto,c_fill,w_576,ar_0.877,g_auto/s3/2/144684/dscf0140%20curtis%20perry.jpg\" class=\"w-100 h-100 object-fit-cover img-fluid\" alt=\"A group of people are dancing in front of a red brick building.\" width=\"3333\" height=\"3800\">\n</picture>\n\n\n\n\t</div>\n\n</div></div></div></div></div><div class=\"justify-content-start align-items-stretch flex-row flex-md-column d-flex text-left pt-2 pt-md-0 px-0 col-12 col-md-2 col-lg-2\" lang=\"\">\t<div class=\"ysi-picture-widget ysi-picture-wrapper h-100 w-100 h-100 w-100 h-100 w-100\" lang=\"\">\n\t<picture>\n<source media=\"(min-width: 2560px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_3200,ar_0.786,g_auto/s3/2/144684/aalto%20suites_lounge%20chairs%20with%20view_1.jpg\">\n<source media=\"(min-width: 1920px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_2560,ar_0.786,g_auto/s3/2/144684/aalto%20suites_lounge%20chairs%20with%20view_1.jpg\">\n<source media=\"(min-width: 1440px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_1920,ar_0.786,g_auto/s3/2/144684/aalto%20suites_lounge%20chairs%20with%20view_1.jpg\">\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_1440,ar_0.786,g_auto/s3/2/144684/aalto%20suites_lounge%20chairs%20with%20view_1.jpg\">\n<source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_1200,ar_0.786,g_auto/s3/2/144684/aalto%20suites_lounge%20chairs%20with%20view_1.jpg\">\n<source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_992,ar_0.786,g_auto/s3/2/144684/aalto%20suites_lounge%20chairs%20with%20view_1.jpg\">\n<source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_768,ar_0.786,g_auto/s3/2/144684/aalto%20suites_lounge%20chairs%20with%20view_1.jpg\"><img src=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_576,ar_0.786,g_auto/s3/2/144684/aalto%20suites_lounge%20chairs%20with%20view_1.jpg\" class=\"w-100 h-100 object-fit-cover pr-1 pr-md-0 pb-0 pb-md-3 img-fluid\" alt=\"A living room with a large window, a sofa, a chair, a coffee table, and a television.\" width=\"3521\" height=\"4480\">\n</picture>\n\n\n\n\t</div>\n\n\t<div class=\"ysi-picture-widget ysi-picture-wrapper h-100 w-100 h-100 w-100 h-100 w-100\" lang=\"\">\n\t<picture>\n<source media=\"(min-width: 2560px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_3200,ar_0.786,g_auto/s3/2/144684/8(3).jpg\">\n<source media=\"(min-width: 1920px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_2560,ar_0.786,g_auto/s3/2/144684/8(3).jpg\">\n<source media=\"(min-width: 1440px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_1920,ar_0.786,g_auto/s3/2/144684/8(3).jpg\">\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_1440,ar_0.786,g_auto/s3/2/144684/8(3).jpg\">\n<source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_1200,ar_0.786,g_auto/s3/2/144684/8(3).jpg\">\n<source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_992,ar_0.786,g_auto/s3/2/144684/8(3).jpg\">\n<source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_768,ar_0.786,g_auto/s3/2/144684/8(3).jpg\"><img src=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_6720,h_4480,c_crop/q_auto,f_auto,c_fill,w_576,ar_0.786,g_auto/s3/2/144684/8(3).jpg\" class=\"w-100 h-100 object-fit-cover pl-1 pl-md-0 img-fluid\" alt=\"A yoga studio with mats on the floor and a view of the city outside the windows.\" width=\"3521\" height=\"4480\">\n</picture>\n\n\n\n\t</div>\n\n</div></div></div></div></main>\n\n\n\n\n\n\n \n\n\n\n\n <yardi-widget-craigslist></yardi-widget-craigslist>\n \n\n\n\n \n\n\n\n\n \n \n\n\n\n\n \n\n\n \n \n\t\n \n \n \n \n <link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/office-hours-layout1-widget.558563.134292782880000000.css\" media=\"all\">\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/address-widget.558563.134292782880000000.css\" media=\"all\">\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n \n \n \n \n\n <!--\n <yardi-add-sass path=\"widgets/go-to-top\" async=\"true\" />\n-->\n\n<div id=\"goToTop\" role=\"complementary\" aria-labelledby=\"gototoparialabel\" lang=\"\">\n <button data-selenium-id=\"btngototop\" class=\"btn btn-dark border-0 widget-left\" lang=\"\"><svg width=\"16px\" height=\"26px\" fill=\"currentColor\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z\"></path></svg><span class=\"sr-only\" id=\"gototoparialabel\" lang=\"\">Go to top</span></button>\n</div>\n\n\n \n\n\n \n\n \n<div id=\"help-widget\" class=\"w-100 widget-right\" role=\"complementary\" aria-label=\"Front desk - how can we help you?\" lang=\"\">\n \n\n\n\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/help-widget-default.558563.134292782880000000.css\" media=\"all\">\n\n\n<!---START: Layout horizontal--->\n<!---NOTE: .frontdesk-animation is used for animation. Remove class if you want to remove animation--->\n\n<div id=\"frontDesk-widget-horizontal\" class=\"frontDesk-widget-horizontal horizontal position-fixed d-flex frontdesk-animation\" lang=\"\">\n\t<button id=\"btnFrontDesk\" type=\"button\" class=\"btn btn-primary hide-frontDesk-widget bell\" aria-expanded=\"true\" data-selenium-id=\"showHidefrontDeskWidget\" lang=\"\" aria-label=\"Hide Front Desk\">\n\t\t<span class=\"d-block bounce-dot\" lang=\"\"></span>\n <span class=\"btn-bell d-inline-block\" lang=\"\">\n <span class=\"fas fa-concierge-bell\" aria-hidden=\"true\" lang=\"\"></span>\n <span class=\"sr-only\" lang=\"\">Front desk options </span>\n </span>\n\t</button>\n\t<div id=\"frontDesk-widget-wrapper\" class=\"frontDesk-widget-wrapper open-widget\" lang=\"\">\n <!-- Email Us - modal -->\n <button id=\"email-us-btn\" data-modal-url=\"/contactus?IsDialog=1&IsFrontDesk=true\" type=\"button\" class=\"btn btn-primary email-us-btn widget-btns trigger-popup\" data-selenium-id=\"emailUs\" data-toggle=\"tooltip\" data-placement=\"top\" data-animation=\"true\" data-title=\"Envoyez-nous un courriel\" lang=\"\" data-original-title=\"Envoyez-nous un courriel\" tabindex=\"0\"><svg focusable=\"false\" aria-hidden=\"true\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" stroke-width=\"2\"><g stroke-width=\"2\" transform=\"translate(0, 0)\"><polyline data-cap=\"butt\" data-color=\"color-2\" points=\"1.614 3.558 12 13 22.385 3.559\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"2\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\"></polyline> <rect x=\"1\" y=\"3\" width=\"22\" height=\"18\" rx=\"2\" ry=\"2\" fill=\"none\" stroke=\"#ffffff\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-width=\"2\" stroke-linejoin=\"miter\"></rect></g></svg><span class=\"sr-only\" lang=\"\">Envoyez-nous un courriel</span></button>\n\n <!-- Call Us - mobile -->\n <a id=\"call-us-btn-phone\" href=\"tel:(844) 467-3195\" role=\"button\" class=\"btn btn-primary click-to-call-href click-to-call-title call-us-btn widget-btns d-inline-block d-md-none\" data-selenium-id=\"callUsPhone\" data-toggle=\"tooltip\" data-placement=\"top\" data-animation=\"true\" data-title=\"Call Us at (819) 809-9131\" lang=\"\" data-original-title=\"Call Us at (844) 467-3195\" title=\"Call Us at (844) 467-3195\" tabindex=\"0\"><svg focusable=\"false\" aria-hidden=\"true\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 48 48\" stroke-width=\"4\"><g stroke-width=\"4\" transform=\"translate(0, 0)\"><path d=\"M31.041,28.94l-3.423,4.279A36.116,36.116,0,0,1,14.782,20.384l4.279-3.423a2.908,2.908,0,0,0,.84-3.45L16,4.728a2.908,2.908,0,0,0-3.39-1.635L5.186,5.019A2.925,2.925,0,0,0,3.028,8.25,43.142,43.142,0,0,0,39.751,44.973a2.925,2.925,0,0,0,3.23-2.158l1.926-7.425A2.91,2.91,0,0,0,43.273,32l-8.782-3.9A2.907,2.907,0,0,0,31.041,28.94Z\" fill=\"none\" stroke=\"#ffffff\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-width=\"4\" stroke-linejoin=\"miter\"></path></g></svg><span class=\"sr-only\" lang=\"\">APPELEZ-NOUS</span></a>\n <!-- Call Us - desktop -->\n <button id=\"call-us-btn\" aria-label=\"Call Us\" type=\"button\" class=\"btn btn-primary click-to-call-title call-us-btn widget-btns trigger-popup d-none d-md-inline-block\" data-selenium-id=\"callUsDesktop\" data-toggle=\"tooltip\" data-placement=\"top\" data-animation=\"true\" data-title=\"Call Us at (819) 809-9131\" lang=\"\" data-original-title=\"Call Us at (844) 467-3195\" title=\"Call Us at (844) 467-3195\" tabindex=\"0\"><svg focusable=\"false\" aria-hidden=\"true\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 48 48\" stroke-width=\"4\"><g stroke-width=\"4\" transform=\"translate(0, 0)\"><path d=\"M31.041,28.94l-3.423,4.279A36.116,36.116,0,0,1,14.782,20.384l4.279-3.423a2.908,2.908,0,0,0,.84-3.45L16,4.728a2.908,2.908,0,0,0-3.39-1.635L5.186,5.019A2.925,2.925,0,0,0,3.028,8.25,43.142,43.142,0,0,0,39.751,44.973a2.925,2.925,0,0,0,3.23-2.158l1.926-7.425A2.91,2.91,0,0,0,43.273,32l-8.782-3.9A2.907,2.907,0,0,0,31.041,28.94Z\" fill=\"none\" stroke=\"#ffffff\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-width=\"4\" stroke-linejoin=\"miter\"></path></g></svg></button>\n \n\n\n\n\n\n <!-- Schedule tour -->\n <button id=\"schedule-a-tour-btn\" data-modal-url=\"/scheduletour?IsDialog=true\" type=\"button\" class=\"btn btn-primary schedule-a-tour-btn widget-btns trigger-popup\" data-selenium-id=\"scheduleTour\" data-toggle=\"tooltip\" data-placement=\"top\" data-animation=\"true\" data-title=\"Planifier une visite\" lang=\"\" data-original-title=\"Planifier une visite\" tabindex=\"0\"><svg focusable=\"false\" aria-hidden=\"true\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" stroke-width=\"2\"><g stroke-width=\"2\" transform=\"translate(0, 0)\"><rect data-color=\"color-2\" x=\"5\" y=\"12\" width=\"2\" height=\"1\" fill=\"none\" stroke=\"#ffffff\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-width=\"2\" stroke-linejoin=\"miter\"></rect> <rect data-color=\"color-2\" x=\"11\" y=\"12\" width=\"2\" height=\"1\" fill=\"none\" stroke=\"#ffffff\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-width=\"2\" stroke-linejoin=\"miter\"></rect> <rect data-color=\"color-2\" x=\"5\" y=\"17\" width=\"2\" height=\"1\" fill=\"none\" stroke=\"#ffffff\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-width=\"2\" stroke-linejoin=\"miter\"></rect> <rect data-color=\"color-2\" x=\"11\" y=\"17\" width=\"2\" height=\"1\" fill=\"none\" stroke=\"#ffffff\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-width=\"2\" stroke-linejoin=\"miter\"></rect> <rect data-color=\"color-2\" x=\"17\" y=\"12\" width=\"2\" height=\"1\" fill=\"none\" stroke=\"#ffffff\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-width=\"2\" stroke-linejoin=\"miter\"></rect> <rect data-color=\"color-2\" data-stroke=\"none\" x=\"5\" y=\"12\" width=\"2\" height=\"1\" fill=\"#ffffff\"></rect> <rect data-color=\"color-2\" data-stroke=\"none\" x=\"11\" y=\"12\" width=\"2\" height=\"1\" fill=\"#ffffff\"></rect> <rect data-color=\"color-2\" data-stroke=\"none\" x=\"5\" y=\"17\" width=\"2\" height=\"1\" fill=\"#ffffff\"></rect> <rect data-color=\"color-2\" data-stroke=\"none\" x=\"11\" y=\"17\" width=\"2\" height=\"1\" fill=\"#ffffff\"></rect> <rect data-color=\"color-2\" data-stroke=\"none\" x=\"17\" y=\"12\" width=\"2\" height=\"1\" fill=\"#ffffff\"></rect> <rect x=\"1\" y=\"3\" width=\"22\" height=\"19\" rx=\"2\" ry=\"2\" fill=\"none\" stroke=\"#ffffff\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-width=\"2\" stroke-linejoin=\"miter\"></rect> <line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\" fill=\"none\" stroke=\"#ffffff\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-width=\"2\" stroke-linejoin=\"miter\"></line> <line x1=\"18\" y1=\"1\" x2=\"18\" y2=\"4\" fill=\"none\" stroke=\"#ffffff\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-width=\"2\" stroke-linejoin=\"miter\"></line> <line x1=\"1\" y1=\"8\" x2=\"23\" y2=\"8\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"2\"></line></g></svg><span class=\"sr-only\" lang=\"\">Planifier une visite</span></button>\n\n\n </div>\n</div>\n<!---END: Layout horizontal--->\n<!--- Show/Hide aria-label for Front Desk button --->\n\n\n \n\n <!--START Modal: Contact Us / Email Us -->\n <div id=\"email-us-window\" class=\"popup-widgets-window draggable scrollable \" lang=\"\">\n <div class=\"popup-content\" lang=\"\">\n <div class=\"popup-header modal-header\" lang=\"\">\n <h2 class=\"m-0 text-truncate\" lang=\"\">Contactez-nous</h2>\n <button class=\"close\" aria-label=\"Close this dialog window\" data-selenium-id=\"close\" lang=\"\"> <span aria-hidden=\"true\" class=\"fa fa-times\" lang=\"\"></span></button>\n </div>\n <div id=\"help-widget-email-modal-body\" class=\"popup-body p-4\" lang=\"\">\n </div>\n </div>\n </div>\n <!--END Modal: Contact Us / Email Us -->\n <!--START Modal: Call Us -->\n <div id=\"call-us-window\" class=\"popup-widgets-window draggable scrollable \" lang=\"\">\n <div class=\"popup-content\" lang=\"\">\n <div class=\"popup-header modal-header\" lang=\"\">\n <h2 class=\"m-0 text-truncate\" lang=\"\">APPELEZ-NOUS</h2>\n <button class=\"close\" aria-label=\"Close this dialog window\" data-selenium-id=\"close\" lang=\"\"> <span aria-hidden=\"true\" class=\"fa fa-times\" lang=\"\"></span></button>\n </div>\n <div class=\"popup-body p-4 text-center\" lang=\"\">\n <strong class=\"text-xl mb-4 d-block\" lang=\"\">\n\n \n\n <div class=\"ysi-phone-widget ysi-phone-wrapper\" lang=\"\">\n <div class=\"d-inline-flex\" lang=\"\">\n <a data-selenium-id=\"click_to_call\" href=\"tel:(844) 467-3195\" aria-label=\"Call Aalto at +1 819-809-9131\" class=\"ysi-phone-number click-to-call-href text-decoration-none color-inherit \" lang=\"\">\n <span aria-hidden=\"true\" class=\"fa-flip-horizontal fas fa-phone mobile-phone-icon\" lang=\"\"></span>\n <span class=\"click-to-call ml-2 text-underline\" lang=\"\">(844) 467-3195</span>\n </a>\n\n </div>\n </div>\n \n</strong>\n \n \n <div class=\"ysi-office-hours-widget ysi-office-hours-wrapper\" lang=\"\">\n <div class=\"d-inline-flex\" lang=\"\">\n <div class=\"ysi-office-hours\" data-selenium-id=\"SID_footer_officeHours\" lang=\"\">\n <ul class=\"list-unstyled mb-0\" lang=\"\">\n <li class=\" \" lang=\"\">\n <span class=\"office-hours-day\" data-selenium-id=\"OHMondayFriday\" lang=\"\">Lundi<span class=\"sr-only\" lang=\"\">à</span>- Vendredi :</span>\n <span class=\"office-hours-time\" data-selenium-id=\"OHMondayFridayTime\" lang=\"\">9h<span class=\"sr-only\" lang=\"\">à</span>- 18h</span>\n</li>\n <li class=\" \" lang=\"\">\n <span class=\"office-hours-day\" data-selenium-id=\"OHSaturday\" lang=\"\">Samedi :</span>\n <span class=\"office-hours-time\" data-selenium-id=\"OHSaturdayTime\" lang=\"\">10h<span class=\"sr-only\" lang=\"\">à</span>- 17h</span>\n</li>\n <li class=\" \" lang=\"\">\n <span class=\"office-hours-day\" data-selenium-id=\"OHSunday\" lang=\"\">Dimanche :</span>\n <span class=\"office-hours-time\" data-selenium-id=\"OHSundayTime\" lang=\"\">Fermé</span>\n</li>\n </ul>\n </div>\n </div>\n </div>\n\n </div>\n <div class=\"border-top px-4 py-4 text-center\" lang=\"\">\n \n\n\n\n\n<div class=\"ysi-address-widget ysi-address-wrapper\" lang=\"\">\n <div class=\"d-inline-flex\" lang=\"\">\n <address class=\"ysi-address\">\n <a class=\"address-link color-inherit d-block\" href=\"https://maps.google.com/?q=10%20Rue%20Jos-Montferrand%20%20Gatineau,%20%20QC%20%20J8X%200A6\" target=\"_blank\" rel=\"noreferrer\" lang=\"\">\n <div itemprop=\"name\" data-selenium-id=\"address_propname\" lang=\"\">Aalto</div>\n <div itemprop=\"address\" lang=\"\">\n <div data-selenium-id=\"address_street\" lang=\"\">\n 10 Rue Jos-Montferrand\n </div>\n <div lang=\"\">\n <span data-selenium-id=\"address_city\" lang=\"\">Gatineau</span>,<span data-selenium-id=\"address_state\" lang=\"\">QC</span><span data-selenium-id=\"address_zip\" lang=\"\"> J8X 0A6</span>\n </div>\n </div>\n\t\t\t\t\t<span class=\"sr-only\" lang=\"\">S'ouvre dans un nouvel onglet</span>\n </a>\n </address>\n\n </div>\n</div>\n\n\n </div>\n </div>\n </div>\n <!--END Modal: Call Us -->\n\n\n\n <div id=\"schedule-a-tour-window\" class=\"popup-widgets-window draggable scrollable \" lang=\"\">\n <div class=\"popup-content\" lang=\"\">\n <div class=\"popup-header modal-header\" lang=\"\">\n <h2 class=\"m-0 text-truncate\" lang=\"\">Planifier une visite</h2>\n <button class=\"close\" aria-label=\"Close this dialog window\" data-selenium-id=\"close\" lang=\"\"> <span aria-hidden=\"true\" class=\"fa fa-times\" lang=\"\"></span></button>\n </div>\n <div id=\"help-widget-schedule-a-tour-modal-body\" class=\"popup-body\" lang=\"\">\n <!-- Modal content loaded here -->\n </div>\n </div>\n </div>\n\n</div>\n \n \n \n \n\n \n <!-- Nudge positioning -->\n \n \n <!-- ScheduleTourEnabled -->\n <link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/ysi.datepicker.558563.134292782880000000.css\" media=\"all\">\n <link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/schedule-a-tour.558563.134292782880000000.css\" media=\"all\">\n <link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/widgets/help-widget-schedule-a-tour.558563.134292782880000000.css\" media=\"all\">\n \n \n\n\n \n \n <link href=\"https://cdngeneralmvc.rentcafe.com/css/scss/475844/ritz/intlTelInput.558563.134292782880000000.css\" rel=\"stylesheet\" type=\"text/css\">\n\n\n \n\n \n <yardi-widget-siteeditorscript></yardi-widget-siteeditorscript>\n\n\n<div height=\"1\" width=\"1\" style=\"position: absolute; top: 0px; left: 0px; border-width: medium; border-style: none; border-color: currentcolor; border-image: none; visibility: hidden;\" data-original-tag=\"iframe\"></div>\n</body></html>"}} | |
| \ No newline at end of file | ||
modified
tests/fixtures/aalto/index.json
+10 −10
@@ -1,16 +1,16 @@ | ||
| 1 | 1 | { |
| 2 | − "ff1e66d178eb462874f9": { | |
| 3 | − "method": "POST", | |
| 4 | − "url": "https://api.firecrawl.dev/v1/scrape", | |
| 2 | + "19876247196edaa337bf": { | |
| 3 | + "method": "RENDERED", | |
| 4 | + "url": "https://www.aaltosuites.ca/", | |
| 5 | 5 | "status": 200, |
| 6 | − "content_type": "application/json; charset=utf-8", | |
| 7 | − "file": "ff1e66d178eb462874f9.json" | |
| 6 | + "content_type": "text/html", | |
| 7 | + "file": "19876247196edaa337bf.html" | |
| 8 | 8 | }, |
| 9 | − "7f32c075ca02ee9f4d34": { | |
| 10 | − "method": "POST", | |
| 11 | − "url": "https://api.firecrawl.dev/v1/scrape", | |
| 9 | + "0bc5771aff1ef3d625fa": { | |
| 10 | + "method": "RENDERED", | |
| 11 | + "url": "https://www.aaltosuites.ca/floorplans", | |
| 12 | 12 | "status": 200, |
| 13 | − "content_type": "application/json; charset=utf-8", | |
| 14 | − "file": "7f32c075ca02ee9f4d34.json" | |
| 13 | + "content_type": "text/html", | |
| 14 | + "file": "0bc5771aff1ef3d625fa.html" | |
| 15 | 15 | } |
| 16 | 16 | } |
| \ No newline at end of file | ||
added
tests/fixtures/brigil/027230656889b8e2307e.html
+3486 −0
@@ -0,0 +1,3486 @@ | ||
| 1 | +<html lang="en" style="--helpwidget-bottom-offset: 99px;"><head> | |
| 2 | + | |
| 3 | + <style> | |
| 4 | + #ot-sdk-btn-floating { | |
| 5 | + z-index: 99999 !important; /* 1 less than "Skip to main content" link, see skip-navigation-link.scss */ | |
| 6 | + } | |
| 7 | + </style> | |
| 8 | + <script async="" src="https://www.googletagmanager.com/gtm.js?id=GTM-TL4S4ZL"></script><script type="text/javascript"> | |
| 9 | + window.dataLayer = window.dataLayer || []; | |
| 10 | + function gtag() { dataLayer.push(arguments); } | |
| 11 | + </script> | |
| 12 | + <!-- OneTrust Cookies Consent Notice start --> | |
| 13 | + <script id="onetrust-script" src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" data-document-language="true" async="" type="text/javascript" charset="UTF-8" data-domain-script="019b0a3f-47cc-7952-bf04-817bd4831622"></script> | |
| 14 | + <script type="text/javascript"> | |
| 15 | + function OptanonWrapper() { | |
| 16 | + // The "Powered by OneTrust" img inside .ot-pc-footer-logo has redundant alt text | |
| 17 | + // since the wrapping anchor already has aria-label. Hide the img from the | |
| 18 | + // accessibility tree so screen readers don't announce it twice. | |
| 19 | + function fixPoweredByImage() { | |
| 20 | + var img = document.querySelector('.ot-pc-footer-logo img'); | |
| 21 | + if (img) { | |
| 22 | + img.setAttribute('aria-hidden', 'true'); | |
| 23 | + return true; | |
| 24 | + } | |
| 25 | + return false; | |
| 26 | + } | |
| 27 | + | |
| 28 | + // OneTrust accordion buttons reference ot-status-id-* in aria-labelledby but those | |
| 29 | + // elements are never rendered for toggle-style categories, leaving dangling ID refs. | |
| 30 | + // Strip any ID tokens that don't resolve to an actual DOM element. | |
| 31 | + function fixMissingAriaLabelledBy() { | |
| 32 | + var container = document.getElementById('onetrust-pc-sdk'); | |
| 33 | + if (!container) return false; | |
| 34 | + container.querySelectorAll('[aria-labelledby]').forEach(function (el) { | |
| 35 | + var ids = el.getAttribute('aria-labelledby').split(/\s+/); | |
| 36 | + var valid = ids.filter(function (id) { return id && document.getElementById(id); }); | |
| 37 | + if (valid.length !== ids.length) { | |
| 38 | + el.setAttribute('aria-labelledby', valid.join(' ')); | |
| 39 | + } | |
| 40 | + }); | |
| 41 | + return true; | |
| 42 | + } | |
| 43 | + | |
| 44 | + var imgDone = fixPoweredByImage(); | |
| 45 | + var ariaDone = fixMissingAriaLabelledBy(); | |
| 46 | + | |
| 47 | + if (!imgDone || !ariaDone) { | |
| 48 | + // Preferences panel may be lazy-injected when user first opens it | |
| 49 | + var sdk = document.getElementById('onetrust-consent-sdk') || document.body; | |
| 50 | + var observer = new MutationObserver(function () { | |
| 51 | + if (!imgDone) imgDone = fixPoweredByImage(); | |
| 52 | + if (!ariaDone) ariaDone = fixMissingAriaLabelledBy(); | |
| 53 | + if (imgDone && ariaDone) observer.disconnect(); | |
| 54 | + }); | |
| 55 | + observer.observe(sdk, { childList: true, subtree: true }); | |
| 56 | + } | |
| 57 | + } | |
| 58 | + </script> | |
| 59 | + <!-- OneTrust Cookies Consent Notice end --> | |
| 60 | + | |
| 61 | + | |
| 62 | +<meta charset="utf-8"> | |
| 63 | +<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| 64 | +<meta name="viewport" content="width=device-width, initial-scale=1.0 "> | |
| 65 | + <title>1 & 2 Bedroom Apartments Gatineau | Champlain Village Urban</title> | |
| 66 | + <meta name="description" content="Explore 1 & 2 bedroom apartments at Champlain Village Urban in Gatineau. View floor plans and visit us today!"> | |
| 67 | + <meta name="referrer" content="always"> | |
| 68 | + <meta name="keywords" content="apartments, rentals, apartment guide, apartment finder, apartment search, apartment locator, apartments for rent, apartment listings"> | |
| 69 | + <meta name="author" content="Champlain Village Urbain"> | |
| 70 | + <link rel="canonical" href="https://www.brigil.com/champlain-village-urbain/floorplans"> | |
| 71 | + | |
| 72 | + | |
| 73 | + <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin=""> | |
| 74 | + <link rel="preconnect" href="https://resource.rentcafe.com"> | |
| 75 | + | |
| 76 | + | |
| 77 | +<link rel="preload" href="https://cdngeneralmvc.rentcafe.com/common/scss/fontawesome/webfonts/ysi-fa-solid.woff2" as="font" type="font/woff2" crossorigin="anonymous"> | |
| 78 | + | |
| 79 | + <meta name="theme-color" content="#999"> | |
| 80 | + <link href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,w_152,h_152/s3/2/252329/brigil-favicon(6).png" rel="apple-touch-icon"> | |
| 81 | + <link rel="manifest" href="/manifest.json"> | |
| 82 | + <link href="https://resource.rentcafe.com/image/upload/q_auto,f_auto/s3/2/252329/brigil-favicon(6).png" type="image/x-icon" rel="shortcut icon"> | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | +<!-- Google Tag Manager --> | |
| 94 | +<script> | |
| 95 | +(function(w,d,s,l,i){ | |
| 96 | + w[l]=w[l]||[]; | |
| 97 | + w[l].push({'gtm.start': new Date().getTime(), event:'gtm.js'}); | |
| 98 | + var f=d.getElementsByTagName(s)[0], | |
| 99 | + j=d.createElement(s), | |
| 100 | + dl = l != 'dataLayer' ? '&l=' + l : ''; | |
| 101 | + j.async = true; | |
| 102 | + j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl; | |
| 103 | + f.parentNode.insertBefore(j,f); | |
| 104 | +})(window,document,'script','dataLayer','GTM-TL4S4ZL'); | |
| 105 | +</script> | |
| 106 | +<!-- End Google Tag Manager --> | |
| 107 | + | |
| 108 | + | |
| 109 | +<meta name="google-site-verification" content="Bc0Bvvgc7MLwJ3m8vVx4aVXYRPF5i1_lDItPBncbur4"> | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + <link href="https://cdngeneralmvc.rentcafe.com/css/scss/422351/brigil_prop1/brigil_prop1.569188.134323179930000000.css" rel="stylesheet" type="text/css" id="mainCSS"> | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + <script>window.ysi={callbacks:[],registerCallback:function(i){"function"==typeof i&&this.callbacks.push(i)},init:function(){ysi.MQBreakpointListener&&ysi.MQBreakpointListener.init(),ysi.main();for(var i=0;i<ysi.callbacks.length;i++)ysi.callbacks[i]();ysi.smartclasses&&ysi.smartclasses.init()},main:function(){}},document.addEventListener("DOMContentLoaded",function(i){window.location.pathname.indexOf("/index")>-1&&history.replaceState(null,"",window.location.pathname.replace("index","")+window.location.search),ysi.init()});</script><script src="https://cdn.cookielaw.org/scripttemplates/202608.1.0/otBannerSdk.js" async="" type="text/javascript"></script> | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | +<script>window.ysi.customlabels = {"French - Canada":"French","Neighborhood":"Neighbourhood","City, Post Code, Address, Property Name":"Find your home","English - United States":"English"}; </script><style id="onetrust-style">#onetrust-banner-sdk .onetrust-vendors-list-handler{cursor:pointer;color:#1f96db;font-size:inherit;font-weight:bold;text-decoration:none;margin-left:5px;white-space:normal;word-wrap:break-word;text-align:left}#onetrust-banner-sdk .onetrust-vendors-list-handler:hover{color:#1f96db}#onetrust-banner-sdk:focus{outline:2px solid #000;outline-offset:-2px}#onetrust-banner-sdk a:focus{outline:2px solid #000}#onetrust-banner-sdk #onetrust-accept-btn-handler,#onetrust-banner-sdk #onetrust-reject-all-handler,#onetrust-banner-sdk #onetrust-pc-btn-handler{outline-offset:1px}#onetrust-banner-sdk.ot-bnr-w-logo .ot-bnr-logo{height:64px;width:64px}#onetrust-banner-sdk #onetrust-policy svg,#onetrust-banner-sdk .banner-option svg{height:13px;width:13px;margin-left:1px}#onetrust-banner-sdk #onetrust-policy svg.ot-ext-lnk,#onetrust-banner-sdk .banner-option svg.ot-ext-lnk{vertical-align:middle}#onetrust-banner-sdk .ot-tcf2-vendor-count.ot-text-bold{font-weight:bold}#onetrust-banner-sdk .ot-button-order-0{order:0}#onetrust-banner-sdk .ot-button-order-1{order:1}#onetrust-banner-sdk .ot-button-order-2{order:2}#onetrust-banner-sdk #onetrust-close-btn-container svg{height:10px;width:10px;pointer-events:none}#onetrust-banner-sdk .ot-close-icon,#onetrust-pc-sdk .ot-close-icon,#ot-sync-ntfy .ot-close-icon{background-size:contain;background-repeat:no-repeat;background-position:center;height:12px;width:12px}#onetrust-banner-sdk .powered-by-logo,#onetrust-banner-sdk .ot-pc-footer-logo a,#onetrust-pc-sdk .powered-by-logo,#onetrust-pc-sdk .ot-pc-footer-logo a,#ot-sync-ntfy .powered-by-logo,#ot-sync-ntfy .ot-pc-footer-logo a{background-size:contain;background-repeat:no-repeat;background-position:center;height:25px;width:152px;display:block;text-decoration:none;font-size:.75em}#onetrust-banner-sdk .powered-by-logo:hover,#onetrust-banner-sdk .ot-pc-footer-logo a:hover,#onetrust-pc-sdk .powered-by-logo:hover,#onetrust-pc-sdk .ot-pc-footer-logo a:hover,#ot-sync-ntfy .powered-by-logo:hover,#ot-sync-ntfy .ot-pc-footer-logo a:hover{color:#565656}#onetrust-banner-sdk h3 *,#onetrust-banner-sdk h4 *,#onetrust-banner-sdk h6 *,#onetrust-banner-sdk button *,#onetrust-banner-sdk a[data-parent-id] *,#onetrust-banner-sdk p[role=heading] *,#onetrust-pc-sdk h3 *,#onetrust-pc-sdk h4 *,#onetrust-pc-sdk h6 *,#onetrust-pc-sdk button *,#onetrust-pc-sdk a[data-parent-id] *,#onetrust-pc-sdk p[role=heading] *,#ot-sync-ntfy h3 *,#ot-sync-ntfy h4 *,#ot-sync-ntfy h6 *,#ot-sync-ntfy button *,#ot-sync-ntfy a[data-parent-id] *,#ot-sync-ntfy p[role=heading] *{font-size:inherit;font-weight:inherit;color:inherit}#onetrust-banner-sdk .ot-hide,#onetrust-pc-sdk .ot-hide,#ot-sync-ntfy .ot-hide{display:none !important}#onetrust-banner-sdk button.ot-link-btn:hover,#onetrust-pc-sdk button.ot-link-btn:hover,#ot-sync-ntfy button.ot-link-btn:hover{text-decoration:underline;opacity:1}#onetrust-pc-sdk .ot-sdk-row .ot-sdk-column{padding:0}#onetrust-pc-sdk .ot-sdk-container{padding-right:0}#onetrust-pc-sdk .ot-sdk-row{flex-direction:initial;width:100%}#onetrust-pc-sdk [type=checkbox]:checked,#onetrust-pc-sdk [type=checkbox]:not(:checked){pointer-events:initial}#onetrust-pc-sdk [type=checkbox]:disabled+label::before,#onetrust-pc-sdk [type=checkbox]:disabled+label:after,#onetrust-pc-sdk [type=checkbox]:disabled+label,#onetrust-pc-sdk [type=checkbox][aria-disabled=true]+label::before,#onetrust-pc-sdk [type=checkbox][aria-disabled=true]+label:after,#onetrust-pc-sdk [type=checkbox][aria-disabled=true]+label{pointer-events:none;opacity:.8}#onetrust-pc-sdk #vendor-list-content{transform:translate3d(0, 0, 0)}#onetrust-pc-sdk li input[type=checkbox]{z-index:1}#onetrust-pc-sdk li .ot-checkbox label{z-index:2}#onetrust-pc-sdk li .ot-checkbox input[type=checkbox]{height:auto;width:auto}#onetrust-pc-sdk li .host-title a,#onetrust-pc-sdk li .ot-host-name a,#onetrust-pc-sdk li .accordion-text,#onetrust-pc-sdk li .ot-acc-txt{z-index:2;position:relative}#onetrust-pc-sdk input{margin:3px .1ex}#onetrust-pc-sdk .pc-logo,#onetrust-pc-sdk .ot-pc-logo{height:60px;width:180px;background-position:center;background-size:contain;background-repeat:no-repeat;display:inline-flex;justify-content:center;align-items:center}#onetrust-pc-sdk .pc-logo img,#onetrust-pc-sdk .ot-pc-logo img{max-height:100%;max-width:100%}#onetrust-pc-sdk .pc-logo svg,#onetrust-pc-sdk .ot-pc-logo svg{height:60px;width:180px}#onetrust-pc-sdk #close-pc-btn-handler>svg{margin:auto;display:block;height:12px;width:12px}#onetrust-pc-sdk #ot-pc-desc svg,#onetrust-pc-sdk .ot-desc-cntr svg,#onetrust-pc-sdk .ot-cat-grp svg{height:13px;width:13px;margin-left:-7px;vertical-align:middle;margin-right:5px}#onetrust-pc-sdk #ot-pc-desc svg.ot-ext-lnk{margin-right:8px}#onetrust-pc-sdk #ot-pc-desc .ot-userid-desc svg.ot-ext-lnk,#onetrust-pc-sdk #ot-pc-desc~.ot-userid-desc svg.ot-ext-lnk{margin-left:3px;margin-right:8px}#onetrust-pc-sdk .ot-host-hdr>a{display:inline-block}#onetrust-pc-sdk input[aria-disabled=true],#onetrust-banner-sdk input[aria-disabled=true]{pointer-events:none;opacity:.6}#onetrust-pc-sdk input[aria-disabled=true]+label,#onetrust-banner-sdk input[aria-disabled=true]+label{pointer-events:none;opacity:.6;cursor:not-allowed}#onetrust-pc-sdk .screen-reader-only,#onetrust-pc-sdk .ot-scrn-rdr,.ot-sdk-cookie-policy .screen-reader-only,.ot-sdk-cookie-policy .ot-scrn-rdr{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}#onetrust-pc-sdk.ot-fade-in,.onetrust-pc-dark-filter.ot-fade-in,#onetrust-banner-sdk.ot-fade-in,.ot-confirm-dialog-overlay.ot-fade-in{animation-name:onetrust-fade-in;animation-duration:400ms;animation-timing-function:ease-in-out}#onetrust-pc-sdk.ot-hide{display:none !important}.onetrust-pc-dark-filter.ot-hide{display:none !important}#ot-sdk-btn.ot-sdk-show-settings,#ot-sdk-btn.optanon-show-settings{color:#fff;background-color:#468254;height:auto;white-space:normal;word-wrap:break-word;padding:.8em 2em;font-size:.8em;line-height:1.2;cursor:pointer;-moz-transition:.1s ease;-o-transition:.1s ease;-webkit-transition:1s ease;transition:.1s ease}#ot-sdk-btn.ot-sdk-show-settings:hover,#ot-sdk-btn.optanon-show-settings:hover{color:#fff;background-color:#2c6415}#ot-sdk-btn.ot-sdk-show-settings:active,#ot-sdk-btn.optanon-show-settings:active{color:#fff;background-color:#2c6415;border:1px solid rgba(162,192,169,.5)}.onetrust-pc-dark-filter{background:rgba(0,0,0,.5);z-index:2147483646;width:100%;height:100%;overflow:hidden;position:fixed;top:0;bottom:0;left:0}@keyframes onetrust-fade-in{0%{opacity:0}100%{opacity:1}}.ot-cookie-label{text-decoration:underline}@media only screen and (min-width: 426px)and (max-width: 896px)and (orientation: landscape){#onetrust-pc-sdk p{font-size:.75em}}#onetrust-banner-sdk .banner-option-input:focus+label{outline:1px solid #000;outline-style:auto}.category-vendors-list-handler+a:focus,.category-vendors-list-handler+a:focus-visible{outline:2px solid #000}#onetrust-pc-sdk .ot-userid-title{margin-top:10px}#onetrust-pc-sdk .ot-userid-title>span,#onetrust-pc-sdk .ot-userid-timestamp>span{font-weight:700}#onetrust-pc-sdk .ot-userid-desc{font-style:italic}#onetrust-pc-sdk .ot-host-desc a{pointer-events:initial}#onetrust-pc-sdk .ot-ven-hdr>p a{position:relative;z-index:2;pointer-events:initial}#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info a,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info a{margin-right:8px}#onetrust-pc-sdk .ot-vnd-item svg.ot-ext-lnk{align-self:center}#onetrust-pc-sdk .ot-pc-footer-logo svg,#onetrust-pc-sdk .ot-pc-footer-logo img{width:136px;height:16px}#onetrust-pc-sdk .ot-pur-vdr-count{font-weight:400;font-size:.8em;padding-top:3px;display:block}#onetrust-pc-sdk p[role=heading] .ot-pur-vdr-count{font-weight:400 !important;font-size:.8em !important}#onetrust-banner-sdk #onetrust-policy .ot-optout-signal,#onetrust-pc-sdk #ot-pc-content .ot-optout-signal{border:1px solid #32ae88;border-radius:3px;padding:5px;margin-bottom:10px;background-color:#f9fffa;font-size:.85rem;line-height:2}#onetrust-banner-sdk #onetrust-policy .ot-optout-signal .ot-optout-icon,#onetrust-pc-sdk #ot-pc-content .ot-optout-signal .ot-optout-icon{display:inline;margin-right:5px}#onetrust-banner-sdk #onetrust-policy .ot-optout-signal svg,#onetrust-pc-sdk #ot-pc-content .ot-optout-signal svg{height:20px;width:30px}#onetrust-banner-sdk #onetrust-policy .ot-optout-signal svg.ot-source-sprite,#onetrust-pc-sdk #ot-pc-content .ot-optout-signal svg.ot-source-sprite{position:relative;bottom:-3px}#onetrust-banner-sdk #onetrust-policy .ot-optout-signal svg:not(.ot-source-sprite),#onetrust-pc-sdk #ot-pc-content .ot-optout-signal svg:not(.ot-source-sprite){transform:scale(0.5)}#onetrust-banner-sdk #onetrust-policy .ot-optout-signal svg:not(.ot-source-sprite) path,#onetrust-pc-sdk #ot-pc-content .ot-optout-signal svg:not(.ot-source-sprite) path{fill:#32ae88}#onetrust-consent-sdk .ot-general-modal{overflow:hidden;position:fixed;margin:0 auto;top:50%;left:50%;width:40%;padding:1.5rem;max-width:575px;min-width:575px;z-index:2147483647;border-radius:2.5px;transform:translate(-50%, -50%)}#onetrust-consent-sdk .ot-signature-health-group{margin-top:1rem;padding-left:1.25rem;padding-right:1.25rem;margin-bottom:.625rem;width:calc(100% - 2.5rem)}#onetrust-consent-sdk .ot-signature-health-group .ot-signature-health-form{gap:.5rem}#onetrust-consent-sdk .ot-signature-health .ot-signature-health-form{width:70%;gap:.35rem}#onetrust-consent-sdk .ot-signature-health .ot-signature-input{height:38px;padding:6px 10px;background-color:#fff;border:1px solid #d1d1d1;border-radius:4px;box-shadow:none;box-sizing:border-box}#onetrust-consent-sdk .ot-signature-health .ot-signature-subtitle{font-size:1.125rem}#onetrust-consent-sdk .ot-signature-health .ot-signature-group-title{font-size:1.25rem;font-weight:bold}#onetrust-consent-sdk .ot-signature-health,#onetrust-consent-sdk .ot-signature-health-group{display:flex;flex-direction:column;gap:1rem}#onetrust-consent-sdk .ot-signature-health .ot-signature-cont,#onetrust-consent-sdk .ot-signature-health-group .ot-signature-cont{display:flex;flex-direction:column;gap:.25rem}#onetrust-consent-sdk .ot-signature-health .ot-signature-paragraph,#onetrust-consent-sdk .ot-signature-health-group .ot-signature-paragraph{margin:0;line-height:20px;font-size:max(14px,.875rem)}#onetrust-consent-sdk .ot-signature-health .ot-health-signature-error,#onetrust-consent-sdk .ot-signature-health-group .ot-health-signature-error{color:#4d4d4d;font-size:min(12px,.75rem)}#onetrust-consent-sdk .ot-signature-health .ot-signature-buttons-cont,#onetrust-consent-sdk .ot-signature-health-group .ot-signature-buttons-cont{margin-top:max(.75rem,2%);gap:1rem;display:flex;justify-content:flex-end}#onetrust-consent-sdk .ot-signature-health .ot-signature-button,#onetrust-consent-sdk .ot-signature-health-group .ot-signature-button{flex:1;height:auto;color:#fff;cursor:pointer;line-height:1.2;min-width:125px;font-weight:600;font-size:.813em;border-radius:2px;padding:12px 10px;white-space:normal;word-wrap:break-word;word-break:break-word;background-color:#68b631;border:2px solid #68b631}#onetrust-consent-sdk .ot-signature-health .ot-signature-button.reject,#onetrust-consent-sdk .ot-signature-health-group .ot-signature-button.reject{background-color:#fff}#onetrust-consent-sdk .ot-input-field-cont{display:flex;flex-direction:column;gap:.5rem}#onetrust-consent-sdk .ot-input-field-cont .ot-signature-input{width:65%}#onetrust-consent-sdk .ot-signature-health-form{display:flex;flex-direction:column}#onetrust-consent-sdk .ot-signature-health-form .ot-signature-label{margin-bottom:0;line-height:20px;font-size:max(14px,.875rem)}#onetrust-consent-sdk #onetrust-sprite-svg{display:none}@media only screen and (max-width: 600px){#onetrust-consent-sdk .ot-general-modal{min-width:100%}#onetrust-consent-sdk .ot-signature-health .ot-signature-health-form{width:100%}#onetrust-consent-sdk .ot-input-field-cont .ot-signature-input{width:100%}}#onetrust-banner-sdk,#onetrust-pc-sdk,#ot-sdk-cookie-policy,#ot-sync-ntfy{font-size:16px}#onetrust-banner-sdk *,#onetrust-banner-sdk ::after,#onetrust-banner-sdk ::before,#onetrust-pc-sdk *,#onetrust-pc-sdk ::after,#onetrust-pc-sdk ::before,#ot-sdk-cookie-policy *,#ot-sdk-cookie-policy ::after,#ot-sdk-cookie-policy ::before,#ot-sync-ntfy *,#ot-sync-ntfy ::after,#ot-sync-ntfy ::before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}#onetrust-banner-sdk div,#onetrust-banner-sdk span,#onetrust-banner-sdk h1,#onetrust-banner-sdk h2,#onetrust-banner-sdk h3,#onetrust-banner-sdk h4,#onetrust-banner-sdk h5,#onetrust-banner-sdk h6,#onetrust-banner-sdk p,#onetrust-banner-sdk img,#onetrust-banner-sdk svg,#onetrust-banner-sdk button,#onetrust-banner-sdk section,#onetrust-banner-sdk a,#onetrust-banner-sdk label,#onetrust-banner-sdk input,#onetrust-banner-sdk ul,#onetrust-banner-sdk li,#onetrust-banner-sdk nav,#onetrust-banner-sdk table,#onetrust-banner-sdk thead,#onetrust-banner-sdk tr,#onetrust-banner-sdk td,#onetrust-banner-sdk tbody,#onetrust-banner-sdk .ot-main-content,#onetrust-banner-sdk .ot-toggle,#onetrust-banner-sdk #ot-content,#onetrust-banner-sdk #ot-pc-content,#onetrust-banner-sdk .checkbox,#onetrust-pc-sdk div,#onetrust-pc-sdk span,#onetrust-pc-sdk h1,#onetrust-pc-sdk h2,#onetrust-pc-sdk h3,#onetrust-pc-sdk h4,#onetrust-pc-sdk h5,#onetrust-pc-sdk h6,#onetrust-pc-sdk p,#onetrust-pc-sdk img,#onetrust-pc-sdk svg,#onetrust-pc-sdk button,#onetrust-pc-sdk section,#onetrust-pc-sdk a,#onetrust-pc-sdk label,#onetrust-pc-sdk input,#onetrust-pc-sdk ul,#onetrust-pc-sdk li,#onetrust-pc-sdk nav,#onetrust-pc-sdk table,#onetrust-pc-sdk thead,#onetrust-pc-sdk tr,#onetrust-pc-sdk td,#onetrust-pc-sdk tbody,#onetrust-pc-sdk .ot-main-content,#onetrust-pc-sdk .ot-toggle,#onetrust-pc-sdk #ot-content,#onetrust-pc-sdk #ot-pc-content,#onetrust-pc-sdk .checkbox,#ot-sdk-cookie-policy div,#ot-sdk-cookie-policy span,#ot-sdk-cookie-policy h1,#ot-sdk-cookie-policy h2,#ot-sdk-cookie-policy h3,#ot-sdk-cookie-policy h4,#ot-sdk-cookie-policy h5,#ot-sdk-cookie-policy h6,#ot-sdk-cookie-policy p,#ot-sdk-cookie-policy img,#ot-sdk-cookie-policy svg,#ot-sdk-cookie-policy button,#ot-sdk-cookie-policy section,#ot-sdk-cookie-policy a,#ot-sdk-cookie-policy label,#ot-sdk-cookie-policy input,#ot-sdk-cookie-policy ul,#ot-sdk-cookie-policy li,#ot-sdk-cookie-policy nav,#ot-sdk-cookie-policy table,#ot-sdk-cookie-policy thead,#ot-sdk-cookie-policy tr,#ot-sdk-cookie-policy td,#ot-sdk-cookie-policy tbody,#ot-sdk-cookie-policy .ot-main-content,#ot-sdk-cookie-policy .ot-toggle,#ot-sdk-cookie-policy #ot-content,#ot-sdk-cookie-policy #ot-pc-content,#ot-sdk-cookie-policy .checkbox,#ot-sync-ntfy div,#ot-sync-ntfy span,#ot-sync-ntfy h1,#ot-sync-ntfy h2,#ot-sync-ntfy h3,#ot-sync-ntfy h4,#ot-sync-ntfy h5,#ot-sync-ntfy h6,#ot-sync-ntfy p,#ot-sync-ntfy img,#ot-sync-ntfy svg,#ot-sync-ntfy button,#ot-sync-ntfy section,#ot-sync-ntfy a,#ot-sync-ntfy label,#ot-sync-ntfy input,#ot-sync-ntfy ul,#ot-sync-ntfy li,#ot-sync-ntfy nav,#ot-sync-ntfy table,#ot-sync-ntfy thead,#ot-sync-ntfy tr,#ot-sync-ntfy td,#ot-sync-ntfy tbody,#ot-sync-ntfy .ot-main-content,#ot-sync-ntfy .ot-toggle,#ot-sync-ntfy #ot-content,#ot-sync-ntfy #ot-pc-content,#ot-sync-ntfy .checkbox{font-family:inherit;font-weight:normal;-webkit-font-smoothing:auto;letter-spacing:normal;line-height:normal;padding:0;margin:0;height:auto;min-height:0;max-height:none;width:auto;min-width:0;max-width:none;border-radius:0;border:none;clear:none;float:none;position:static;bottom:auto;left:auto;right:auto;top:auto;text-align:left;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;white-space:normal;background:none;overflow:visible;vertical-align:baseline;visibility:visible;z-index:auto;box-shadow:none}#onetrust-banner-sdk img,#onetrust-pc-sdk img,#ot-sdk-cookie-policy img,#ot-sync-ntfy img{overflow:hidden !important}#onetrust-banner-sdk label:before,#onetrust-banner-sdk label:after,#onetrust-banner-sdk .checkbox:after,#onetrust-banner-sdk .checkbox:before,#onetrust-pc-sdk label:before,#onetrust-pc-sdk label:after,#onetrust-pc-sdk .checkbox:after,#onetrust-pc-sdk .checkbox:before,#ot-sdk-cookie-policy label:before,#ot-sdk-cookie-policy label:after,#ot-sdk-cookie-policy .checkbox:after,#ot-sdk-cookie-policy .checkbox:before,#ot-sync-ntfy label:before,#ot-sync-ntfy label:after,#ot-sync-ntfy .checkbox:after,#ot-sync-ntfy .checkbox:before{content:"";content:none}#onetrust-banner-sdk .ot-sdk-container,#onetrust-pc-sdk .ot-sdk-container,#ot-sdk-cookie-policy .ot-sdk-container{position:relative;width:100%;max-width:100%;margin:0 auto;padding:0 20px;box-sizing:border-box}#onetrust-banner-sdk .ot-sdk-column,#onetrust-banner-sdk .ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-column,#onetrust-pc-sdk .ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-column,#ot-sdk-cookie-policy .ot-sdk-columns{width:100%;float:left;box-sizing:border-box;padding:0;display:initial}@media(min-width: 400px){#onetrust-banner-sdk .ot-sdk-container,#onetrust-pc-sdk .ot-sdk-container,#ot-sdk-cookie-policy .ot-sdk-container{width:90%;padding:0}}@media(min-width: 550px){#onetrust-banner-sdk .ot-sdk-container,#onetrust-pc-sdk .ot-sdk-container,#ot-sdk-cookie-policy .ot-sdk-container{width:100%}#onetrust-banner-sdk .ot-sdk-column,#onetrust-banner-sdk .ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-column,#onetrust-pc-sdk .ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-column,#ot-sdk-cookie-policy .ot-sdk-columns{margin-left:4%}#onetrust-banner-sdk .ot-sdk-column:first-child,#onetrust-banner-sdk .ot-sdk-columns:first-child,#onetrust-pc-sdk .ot-sdk-column:first-child,#onetrust-pc-sdk .ot-sdk-columns:first-child,#ot-sdk-cookie-policy .ot-sdk-column:first-child,#ot-sdk-cookie-policy .ot-sdk-columns:first-child{margin-left:0}#onetrust-banner-sdk .ot-sdk-two.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-two.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-two.ot-sdk-columns{width:13.3333333333%}#onetrust-banner-sdk .ot-sdk-three.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-three.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-three.ot-sdk-columns{width:22%}#onetrust-banner-sdk .ot-sdk-four.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-four.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-four.ot-sdk-columns{width:30.6666666667%}#onetrust-banner-sdk .ot-sdk-eight.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-eight.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-eight.ot-sdk-columns{width:65.3333333333%}#onetrust-banner-sdk .ot-sdk-nine.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-nine.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-nine.ot-sdk-columns{width:74%}#onetrust-banner-sdk .ot-sdk-ten.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-ten.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-ten.ot-sdk-columns{width:82.6666666667%}#onetrust-banner-sdk .ot-sdk-eleven.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-eleven.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-eleven.ot-sdk-columns{width:91.3333333333%}#onetrust-banner-sdk .ot-sdk-twelve.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-twelve.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-twelve.ot-sdk-columns{width:100%;margin-left:0}}#onetrust-banner-sdk h1,#onetrust-banner-sdk h2,#onetrust-banner-sdk h3,#onetrust-banner-sdk h4,#onetrust-banner-sdk h5,#onetrust-banner-sdk h6,#onetrust-banner-sdk p[role=heading],#onetrust-pc-sdk h1,#onetrust-pc-sdk h2,#onetrust-pc-sdk h3,#onetrust-pc-sdk h4,#onetrust-pc-sdk h5,#onetrust-pc-sdk h6,#onetrust-pc-sdk p[role=heading],#ot-sdk-cookie-policy h1,#ot-sdk-cookie-policy h2,#ot-sdk-cookie-policy h3,#ot-sdk-cookie-policy h4,#ot-sdk-cookie-policy h5,#ot-sdk-cookie-policy h6,#ot-sdk-cookie-policy p[role=heading]{margin-top:0;font-weight:600;font-family:inherit}#onetrust-banner-sdk h1,#onetrust-pc-sdk h1,#ot-sdk-cookie-policy h1{font-size:1.5rem;line-height:1.2}#onetrust-banner-sdk h2,#onetrust-pc-sdk h2,#ot-sdk-cookie-policy h2{font-size:1.5rem;line-height:1.25}#onetrust-banner-sdk h3,#onetrust-pc-sdk h3,#ot-sdk-cookie-policy h3{font-size:1.5rem;line-height:1.3}#onetrust-banner-sdk h4,#onetrust-pc-sdk h4,#ot-sdk-cookie-policy h4{font-size:1.5rem;line-height:1.35}#onetrust-banner-sdk h5,#onetrust-pc-sdk h5,#ot-sdk-cookie-policy h5{font-size:1.5rem;line-height:1.5}#onetrust-banner-sdk h6,#onetrust-pc-sdk h6,#ot-sdk-cookie-policy h6{font-size:1.5rem;line-height:1.6}@media(min-width: 550px){#onetrust-banner-sdk h1,#onetrust-pc-sdk h1,#ot-sdk-cookie-policy h1{font-size:1.5rem}#onetrust-banner-sdk h2,#onetrust-pc-sdk h2,#ot-sdk-cookie-policy h2{font-size:1.5rem}#onetrust-banner-sdk h3,#onetrust-pc-sdk h3,#ot-sdk-cookie-policy h3{font-size:1.5rem}#onetrust-banner-sdk h4,#onetrust-pc-sdk h4,#ot-sdk-cookie-policy h4{font-size:1.5rem}#onetrust-banner-sdk h5,#onetrust-pc-sdk h5,#ot-sdk-cookie-policy h5{font-size:1.5rem}#onetrust-banner-sdk h6,#onetrust-pc-sdk h6,#ot-sdk-cookie-policy h6{font-size:1.5rem}}#onetrust-banner-sdk p:not([role=heading]),#onetrust-pc-sdk p:not([role=heading]),#ot-sdk-cookie-policy p:not([role=heading]){margin:0 0 1em 0;font-family:inherit;line-height:normal}#onetrust-banner-sdk a,#onetrust-pc-sdk a,#ot-sdk-cookie-policy a{color:#565656;text-decoration:none}#onetrust-banner-sdk a:hover,#onetrust-pc-sdk a:hover,#ot-sdk-cookie-policy a:hover{color:#565656;text-decoration:underline}#onetrust-banner-sdk .ot-sdk-button,#onetrust-banner-sdk button,#onetrust-pc-sdk .ot-sdk-button,#onetrust-pc-sdk button,#ot-sdk-cookie-policy .ot-sdk-button,#ot-sdk-cookie-policy button{margin-bottom:1rem;font-family:inherit}#onetrust-banner-sdk .ot-sdk-button,#onetrust-banner-sdk button,#onetrust-pc-sdk .ot-sdk-button,#onetrust-pc-sdk button,#ot-sdk-cookie-policy .ot-sdk-button,#ot-sdk-cookie-policy button{display:inline-block;height:38px;padding:0 30px;color:#555;text-align:center;font-size:.9em;font-weight:400;line-height:38px;letter-spacing:.01em;text-decoration:none;white-space:nowrap;background-color:rgba(0,0,0,0);border-radius:2px;border:1px solid #bbb;cursor:pointer;box-sizing:border-box}#onetrust-banner-sdk .ot-sdk-button:hover,#onetrust-banner-sdk :not(.ot-leg-btn-container):not(.ot-confirm-dialog-buttons)>button:not(.ot-link-btn):hover,#onetrust-banner-sdk :not(.ot-leg-btn-container):not(.ot-confirm-dialog-buttons)>button:not(.ot-link-btn):focus,#onetrust-pc-sdk .ot-sdk-button:hover,#onetrust-pc-sdk :not(.ot-leg-btn-container):not(.ot-confirm-dialog-buttons)>button:not(.ot-link-btn):hover,#onetrust-pc-sdk :not(.ot-leg-btn-container):not(.ot-confirm-dialog-buttons)>button:not(.ot-link-btn):focus,#ot-sdk-cookie-policy .ot-sdk-button:hover,#ot-sdk-cookie-policy :not(.ot-leg-btn-container):not(.ot-confirm-dialog-buttons)>button:not(.ot-link-btn):hover,#ot-sdk-cookie-policy :not(.ot-leg-btn-container):not(.ot-confirm-dialog-buttons)>button:not(.ot-link-btn):focus{color:#333;border-color:#888;opacity:.9}#onetrust-banner-sdk .ot-sdk-button:focus,#onetrust-banner-sdk :not(.ot-leg-btn-container)>button:focus,#onetrust-pc-sdk .ot-sdk-button:focus,#onetrust-pc-sdk :not(.ot-leg-btn-container)>button:focus,#ot-sdk-cookie-policy .ot-sdk-button:focus,#ot-sdk-cookie-policy :not(.ot-leg-btn-container)>button:focus{outline:2px solid #000}#onetrust-banner-sdk .ot-sdk-button.ot-sdk-button-primary,#onetrust-banner-sdk button.ot-sdk-button-primary,#onetrust-banner-sdk input[type=submit].ot-sdk-button-primary,#onetrust-banner-sdk input[type=reset].ot-sdk-button-primary,#onetrust-banner-sdk input[type=button].ot-sdk-button-primary,#onetrust-pc-sdk .ot-sdk-button.ot-sdk-button-primary,#onetrust-pc-sdk button.ot-sdk-button-primary,#onetrust-pc-sdk input[type=submit].ot-sdk-button-primary,#onetrust-pc-sdk input[type=reset].ot-sdk-button-primary,#onetrust-pc-sdk input[type=button].ot-sdk-button-primary,#ot-sdk-cookie-policy .ot-sdk-button.ot-sdk-button-primary,#ot-sdk-cookie-policy button.ot-sdk-button-primary,#ot-sdk-cookie-policy input[type=submit].ot-sdk-button-primary,#ot-sdk-cookie-policy input[type=reset].ot-sdk-button-primary,#ot-sdk-cookie-policy input[type=button].ot-sdk-button-primary{color:#fff;background-color:#33c3f0;border-color:#33c3f0}#onetrust-banner-sdk .ot-sdk-button.ot-sdk-button-primary:hover,#onetrust-banner-sdk button.ot-sdk-button-primary:hover,#onetrust-banner-sdk input[type=submit].ot-sdk-button-primary:hover,#onetrust-banner-sdk input[type=reset].ot-sdk-button-primary:hover,#onetrust-banner-sdk input[type=button].ot-sdk-button-primary:hover,#onetrust-banner-sdk .ot-sdk-button.ot-sdk-button-primary:focus,#onetrust-banner-sdk button.ot-sdk-button-primary:focus,#onetrust-banner-sdk input[type=submit].ot-sdk-button-primary:focus,#onetrust-banner-sdk input[type=reset].ot-sdk-button-primary:focus,#onetrust-banner-sdk input[type=button].ot-sdk-button-primary:focus,#onetrust-pc-sdk .ot-sdk-button.ot-sdk-button-primary:hover,#onetrust-pc-sdk button.ot-sdk-button-primary:hover,#onetrust-pc-sdk input[type=submit].ot-sdk-button-primary:hover,#onetrust-pc-sdk input[type=reset].ot-sdk-button-primary:hover,#onetrust-pc-sdk input[type=button].ot-sdk-button-primary:hover,#onetrust-pc-sdk .ot-sdk-button.ot-sdk-button-primary:focus,#onetrust-pc-sdk button.ot-sdk-button-primary:focus,#onetrust-pc-sdk input[type=submit].ot-sdk-button-primary:focus,#onetrust-pc-sdk input[type=reset].ot-sdk-button-primary:focus,#onetrust-pc-sdk input[type=button].ot-sdk-button-primary:focus,#ot-sdk-cookie-policy .ot-sdk-button.ot-sdk-button-primary:hover,#ot-sdk-cookie-policy button.ot-sdk-button-primary:hover,#ot-sdk-cookie-policy input[type=submit].ot-sdk-button-primary:hover,#ot-sdk-cookie-policy input[type=reset].ot-sdk-button-primary:hover,#ot-sdk-cookie-policy input[type=button].ot-sdk-button-primary:hover,#ot-sdk-cookie-policy .ot-sdk-button.ot-sdk-button-primary:focus,#ot-sdk-cookie-policy button.ot-sdk-button-primary:focus,#ot-sdk-cookie-policy input[type=submit].ot-sdk-button-primary:focus,#ot-sdk-cookie-policy input[type=reset].ot-sdk-button-primary:focus,#ot-sdk-cookie-policy input[type=button].ot-sdk-button-primary:focus{color:#fff;background-color:#1eaedb;border-color:#1eaedb}#onetrust-banner-sdk input[type=text],#onetrust-pc-sdk input[type=text],#ot-sdk-cookie-policy input[type=text]{height:38px;padding:6px 10px;background-color:#fff;border:1px solid #707070;border-radius:4px;box-shadow:none;box-sizing:border-box}#onetrust-banner-sdk input[type=text],#onetrust-pc-sdk input[type=text],#ot-sdk-cookie-policy input[type=text]{-webkit-appearance:none;-moz-appearance:none;appearance:none}#onetrust-banner-sdk input[type=text]:focus,#onetrust-pc-sdk input[type=text]:focus,#ot-sdk-cookie-policy input[type=text]:focus{border:1px solid #000;outline:0}#onetrust-banner-sdk label,#onetrust-pc-sdk label,#ot-sdk-cookie-policy label{display:block;margin-bottom:.5rem;font-weight:600}#onetrust-banner-sdk input[type=checkbox],#onetrust-pc-sdk input[type=checkbox],#ot-sdk-cookie-policy input[type=checkbox]{display:inline}#onetrust-banner-sdk ul,#onetrust-pc-sdk ul,#ot-sdk-cookie-policy ul{list-style:circle inside}#onetrust-banner-sdk ul,#onetrust-pc-sdk ul,#ot-sdk-cookie-policy ul{padding-left:0;margin-top:0}#onetrust-banner-sdk ul ul,#onetrust-pc-sdk ul ul,#ot-sdk-cookie-policy ul ul{margin:1.5rem 0 1.5rem 3rem;font-size:90%}#onetrust-banner-sdk li,#onetrust-pc-sdk li,#ot-sdk-cookie-policy li{margin-bottom:1rem}#onetrust-banner-sdk th,#onetrust-banner-sdk td,#onetrust-pc-sdk th,#onetrust-pc-sdk td,#ot-sdk-cookie-policy th,#ot-sdk-cookie-policy td{padding:12px 15px;text-align:left;border-bottom:1px solid #e1e1e1}#onetrust-banner-sdk button,#onetrust-pc-sdk button,#ot-sdk-cookie-policy button{margin-bottom:1rem;font-family:inherit}#onetrust-banner-sdk .ot-sdk-container:after,#onetrust-banner-sdk .ot-sdk-row:after,#onetrust-pc-sdk .ot-sdk-container:after,#onetrust-pc-sdk .ot-sdk-row:after,#ot-sdk-cookie-policy .ot-sdk-container:after,#ot-sdk-cookie-policy .ot-sdk-row:after{content:"";display:table;clear:both}#onetrust-banner-sdk .ot-sdk-row,#onetrust-pc-sdk .ot-sdk-row,#ot-sdk-cookie-policy .ot-sdk-row{margin:0;max-width:none;display:block}.ot-go-modal-error-msg:empty{margin:0;line-height:0}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide){background:rgba(0,0,0,.5);z-index:2147483648;width:100%;height:100%;overflow:hidden;position:fixed;top:0;left:0}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal{display:flex;flex-direction:column;overflow:hidden;position:relative;margin:5% auto;width:440px;max-width:90%;max-height:90vh;border-radius:8px;z-index:2147483649;background-color:#fff;box-shadow:0 4px 24px rgba(0,0,0,.15)}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-header{display:flex;justify-content:flex-end;align-items:center;padding:12px 16px}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-header .ot-go-modal-close{width:44px;height:44px;background-size:12px;margin:-18px -18px 0 0;border:none;display:inline-block;padding:0;background-repeat:no-repeat;background-position:center;position:absolute;top:1em;cursor:pointer}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-body{padding:0 28px 28px;overflow-y:auto}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-title{font-size:1.25em;font-weight:700;margin-bottom:12px;text-align:center}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-desc{font-size:.88em;margin:0 0 20px;line-height:1.5;text-align:center}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper{position:relative;margin-bottom:4px}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-email{width:100%;padding:10px 36px 10px 12px;border:1px solid #d8d8d8;border-radius:4px;font-size:.95em;outline:none;box-sizing:border-box;color:inherit;background-color:rgba(0,0,0,0)}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-email::placeholder{color:inherit;opacity:.6}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-error-icon{position:absolute;right:10px;top:50%;transform:translateY(-50%);width:16px;height:16px;border-radius:50%;background-color:#d93025}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-error-icon::after{content:"!";color:#fff;font-size:11px;font-weight:bold;display:flex;align-items:center;justify-content:center;height:100%}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-error-msg{color:#d93025 !important;font-size:.82em;margin:4px 0 8px}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons{display:flex;gap:12px;margin-top:20px}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel,#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit{flex:1;padding:10px 16px;border-radius:4px;font-size:.88em;font-weight:600;cursor:pointer;text-align:center;box-sizing:border-box}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel{border:1px solid;background-color:rgba(0,0,0,0)}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel:hover{background-color:rgba(0,0,0,.05)}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit{position:relative}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit:hover:not(.ot-go-btn-loading){opacity:.8}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit.ot-go-btn-loading{pointer-events:none;opacity:.85}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit .ot-go-btn-spinner{display:inline-block;width:16px;height:16px;border:2px solid rgba(255,255,255,.3);border-top-color:#fff;border-radius:50%;animation:ot-go-spin .6s linear infinite;vertical-align:middle}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state{text-align:center;padding:20px 0}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-success-shield{width:56px;height:56px;margin:0 auto 20px}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-modal-confirm-msg{font-size:.95em;color:inherit;margin-bottom:24px;line-height:1.5;padding:0 10px}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-modal-close-btn{display:block;width:100%;border-radius:4px;font-size:.88em;font-weight:600;cursor:pointer;box-sizing:border-box}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-modal-close-btn:hover{opacity:.8}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel,#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit{padding:0}@media(max-width: 500px){#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal{width:95%;margin:10% auto}.ot-go-modal-buttons{flex-direction:column;gap:0px !important;flex-direction:column-reverse !important}.ot-go-modal-buttons .ot-go-modal-cancel,.ot-go-modal-buttons .ot-go-modal-submit{width:100%;flex:none}}@keyframes ot-go-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}#onetrust-banner-sdk{box-shadow:0 0 18px rgba(0,0,0,.2)}#onetrust-banner-sdk.otFlat{position:fixed;z-index:2147483645;bottom:0;right:0;left:0;background-color:#fff;max-height:90%;overflow-x:hidden;overflow-y:auto}#onetrust-banner-sdk.otFlat.top{top:0px;bottom:auto}#onetrust-banner-sdk.otRelFont{font-size:1rem}#onetrust-banner-sdk>.ot-sdk-container{overflow:hidden}#onetrust-banner-sdk::-webkit-scrollbar{width:11px}#onetrust-banner-sdk::-webkit-scrollbar-thumb{border-radius:10px;background:#c1c1c1}#onetrust-banner-sdk{scrollbar-arrow-color:#c1c1c1;scrollbar-darkshadow-color:#c1c1c1;scrollbar-face-color:#c1c1c1;scrollbar-shadow-color:#c1c1c1}#onetrust-banner-sdk #onetrust-policy{margin:1.25em 0 .625em 2em;overflow:hidden}#onetrust-banner-sdk #onetrust-policy .ot-gv-list-handler{float:left;font-size:.82em;padding:0;margin-bottom:0;border:0;line-height:normal;height:auto;width:auto}#onetrust-banner-sdk #onetrust-policy-title{font-size:1.2em;line-height:1.3;margin-bottom:10px}#onetrust-banner-sdk #onetrust-group-container{position:relative}#onetrust-banner-sdk #onetrust-policy-text{clear:both;text-align:left;font-size:.88em;line-height:1.4}#onetrust-banner-sdk #onetrust-policy-text *{font-size:inherit;line-height:inherit}#onetrust-banner-sdk #onetrust-policy-text a{font-weight:bold}#onetrust-banner-sdk #onetrust-policy-title,#onetrust-banner-sdk #onetrust-policy-text{color:dimgray;float:left}#onetrust-banner-sdk #onetrust-button-group-parent{min-height:1px;text-align:center}#onetrust-banner-sdk #onetrust-button-group{display:inline-block}#onetrust-banner-sdk #onetrust-accept-btn-handler,#onetrust-banner-sdk #onetrust-reject-all-handler,#onetrust-banner-sdk #onetrust-pc-btn-handler{background-color:#68b631;color:#fff;border-color:#68b631;margin-right:1em;min-width:125px;height:auto;white-space:normal;word-break:break-word;word-wrap:break-word;padding:12px 10px;line-height:1.2;font-size:.813em;font-weight:600}#onetrust-banner-sdk #onetrust-pc-btn-handler.cookie-setting-link{background-color:#fff;border:none;color:#68b631;text-decoration:underline;padding-left:0;padding-right:0}#onetrust-banner-sdk .onetrust-close-btn-ui{width:44px;height:44px;background-size:12px;border:none;position:relative;margin:auto;padding:0}#onetrust-banner-sdk .banner_logo{display:none}#onetrust-banner-sdk.ot-bnr-w-logo .ot-bnr-logo{position:absolute;top:50%;transform:translateY(-50%);left:0px;margin-right:5px}#onetrust-banner-sdk.ot-bnr-w-logo #onetrust-policy{margin-left:65px}#onetrust-banner-sdk .ot-b-addl-desc{clear:both;float:left;display:block}#onetrust-banner-sdk #banner-options{float:left;display:table;margin-right:0;margin-left:1em;width:calc(100% - 1em)}#onetrust-banner-sdk .banner-option-input{cursor:pointer;width:auto;height:auto;border:none;padding:0;padding-right:3px;margin:0 0 10px;font-size:.82em;line-height:1.4}#onetrust-banner-sdk .banner-option-input *{pointer-events:none;font-size:inherit;line-height:inherit}#onetrust-banner-sdk .banner-option-input[aria-expanded=true]~.banner-option-details{display:block;height:auto}#onetrust-banner-sdk .banner-option-input[aria-expanded=true] .ot-arrow-container{transform:rotate(90deg)}#onetrust-banner-sdk .banner-option{margin-bottom:12px;margin-left:0;border:none;float:left;padding:0}#onetrust-banner-sdk .banner-option:first-child{padding-left:2px}#onetrust-banner-sdk .banner-option:not(:first-child){padding:0;border:none}#onetrust-banner-sdk .banner-option-header{cursor:pointer;display:inline-block}#onetrust-banner-sdk .banner-option-header :first-child{color:dimgray;font-weight:bold;float:left}#onetrust-banner-sdk .banner-option-header .ot-arrow-container{display:inline-block;border-top:6px solid rgba(0,0,0,0);border-bottom:6px solid rgba(0,0,0,0);border-left:6px solid dimgray;margin-left:10px;vertical-align:middle}#onetrust-banner-sdk .banner-option-details{display:none;font-size:.83em;line-height:1.5;padding:10px 0px 5px 10px;margin-right:10px;height:0px}#onetrust-banner-sdk .banner-option-details *{font-size:inherit;line-height:inherit;color:dimgray}#onetrust-banner-sdk .ot-arrow-container,#onetrust-banner-sdk .banner-option-details{transition:all 300ms ease-in 0s;-webkit-transition:all 300ms ease-in 0s;-moz-transition:all 300ms ease-in 0s;-o-transition:all 300ms ease-in 0s}#onetrust-banner-sdk .ot-dpd-container{float:left}#onetrust-banner-sdk .ot-dpd-title{margin-bottom:10px}#onetrust-banner-sdk .ot-dpd-title,#onetrust-banner-sdk .ot-dpd-desc{font-size:.88em;line-height:1.4;color:dimgray}#onetrust-banner-sdk .ot-dpd-title *,#onetrust-banner-sdk .ot-dpd-desc *{font-size:inherit;line-height:inherit}#onetrust-banner-sdk.ot-iab-2 #onetrust-policy-text *{margin-bottom:0}#onetrust-banner-sdk.ot-iab-2 .onetrust-vendors-list-handler{display:block;margin-left:0;margin-top:5px;clear:both;margin-bottom:0;padding:0;border:0;height:auto;width:auto}#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group button{display:block}#onetrust-banner-sdk.ot-close-btn-link{padding-top:25px}#onetrust-banner-sdk.ot-close-btn-link #onetrust-close-btn-container{top:15px;transform:none;right:15px}#onetrust-banner-sdk.ot-close-btn-link #onetrust-close-btn-container button{padding:0;white-space:pre-wrap;border:none;height:auto;line-height:1.5;text-decoration:underline;font-size:.69em}#onetrust-banner-sdk #onetrust-policy-text,#onetrust-banner-sdk .ot-dpd-desc,#onetrust-banner-sdk .ot-b-addl-desc{font-size:.813em;line-height:1.5}#onetrust-banner-sdk .ot-dpd-desc{margin-bottom:10px}#onetrust-banner-sdk .ot-dpd-desc>.ot-b-addl-desc{margin-top:10px;margin-bottom:10px;font-size:1em}@media only screen and (max-width: 425px){#onetrust-banner-sdk #onetrust-close-btn-container{position:absolute;top:6px;right:2px}#onetrust-banner-sdk #onetrust-policy{margin-left:0;margin-top:3em}#onetrust-banner-sdk #onetrust-button-group{display:block}#onetrust-banner-sdk #onetrust-accept-btn-handler,#onetrust-banner-sdk #onetrust-reject-all-handler,#onetrust-banner-sdk #onetrust-pc-btn-handler{width:100%}#onetrust-banner-sdk .onetrust-close-btn-ui{top:auto;transform:none}#onetrust-banner-sdk #onetrust-policy-title{display:inline;float:none}#onetrust-banner-sdk #banner-options{margin:0;padding:0;width:100%}}@media only screen and (max-width: 550px){#onetrust-button-group.ot-button-order-container #onetrust-accept-btn-handler,#onetrust-button-group.ot-button-order-container #onetrust-reject-all-handler,#onetrust-button-group.ot-button-order-container #onetrust-pc-btn-handler{margin-right:0}#onetrust-banner-sdk .has-reject-all-button div#onetrust-button-group.ot-button-order-container #onetrust-accept-btn-handler,#onetrust-banner-sdk .has-reject-all-button div#onetrust-button-group.ot-button-order-container #onetrust-reject-all-handler,#onetrust-banner-sdk .has-reject-all-button div#onetrust-button-group.ot-button-order-container #onetrust-pc-btn-handler{margin-right:0}}@media only screen and (min-width: 426px)and (max-width: 896px){#onetrust-banner-sdk #onetrust-close-btn-container{position:absolute;top:0;right:0}#onetrust-banner-sdk #onetrust-policy{margin-left:1em;margin-right:1em}#onetrust-banner-sdk .onetrust-close-btn-ui{top:10px;right:10px}#onetrust-banner-sdk:not(.ot-iab-2) #onetrust-group-container{width:95%}#onetrust-banner-sdk.ot-iab-2 #onetrust-group-container{width:100%}#onetrust-banner-sdk.ot-bnr-w-logo #onetrust-button-group-parent{padding-left:50px}#onetrust-banner-sdk #onetrust-button-group-parent{width:100%;position:relative;margin-left:0}#onetrust-banner-sdk #onetrust-button-group button{display:inline-block}#onetrust-banner-sdk #onetrust-button-group{margin-right:0;text-align:center}#onetrust-banner-sdk #onetrust-button-group.ot-button-order-container #onetrust-accept-btn-handler,#onetrust-banner-sdk #onetrust-button-group.ot-button-order-container #onetrust-reject-all-handler,#onetrust-banner-sdk #onetrust-button-group.ot-button-order-container #onetrust-pc-btn-handler{width:auto}#onetrust-banner-sdk .has-reject-all-button #onetrust-button-group.ot-button-order-container{display:inline-flex;flex-wrap:wrap}#onetrust-banner-sdk .has-reject-all-button #onetrust-button-group.ot-button-order-container #onetrust-pc-btn-handler,#onetrust-banner-sdk .has-reject-all-button #onetrust-button-group.ot-button-order-container #onetrust-reject-all-handler,#onetrust-banner-sdk .has-reject-all-button #onetrust-button-group.ot-button-order-container #onetrust-accept-btn-handler{float:none}#onetrust-banner-sdk .has-reject-all-button #onetrust-button-group.ot-button-order-container *[class*=ot-button-order-]:nth-of-type(1){margin-right:auto !important}#onetrust-banner-sdk .has-reject-all-button #onetrust-pc-btn-handler{float:left}#onetrust-banner-sdk .has-reject-all-button #onetrust-reject-all-handler,#onetrust-banner-sdk .has-reject-all-button #onetrust-accept-btn-handler{float:right}#onetrust-banner-sdk .has-reject-all-button #onetrust-button-group{width:calc(100% - 2em);margin-right:0}#onetrust-banner-sdk .has-reject-all-button #onetrust-pc-btn-handler.cookie-setting-link{padding-left:0px;text-align:left}#onetrust-banner-sdk.ot-buttons-fw .ot-sdk-three button{width:100%;text-align:center}#onetrust-banner-sdk.ot-buttons-fw #onetrust-button-group-parent button{float:none}#onetrust-banner-sdk.ot-buttons-fw #onetrust-pc-btn-handler.cookie-setting-link{text-align:center}}@media only screen and (min-width: 550px){#onetrust-banner-sdk .banner-option:not(:first-child){border-left:1px solid #d8d8d8;padding-left:25px}}@media only screen and (min-width: 425px)and (max-width: 550px){#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group,#onetrust-banner-sdk.ot-iab-2 .banner-option{width:100%}#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group #onetrust-accept-btn-handler,#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group #onetrust-reject-all-handler,#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group #onetrust-pc-btn-handler{width:100%}#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group #onetrust-accept-btn-handler,#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group #onetrust-reject-all-handler{float:left}#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group.ot-button-order-container{width:auto}}@media only screen and (min-width: 769px){#onetrust-banner-sdk #onetrust-button-group{margin-right:30%}#onetrust-banner-sdk #banner-options{margin-left:2em;margin-right:5em;margin-bottom:1.25em;width:calc(100% - 7em)}}@media only screen and (min-width: 897px)and (max-width: 1023px){#onetrust-banner-sdk.vertical-align-content #onetrust-button-group-parent{position:absolute;top:50%;left:80%;transform:translateY(-50%)}#onetrust-banner-sdk #onetrust-close-btn-container{top:50%;margin:auto;transform:translate(-50%, -50%);position:absolute;padding:0;right:0}#onetrust-banner-sdk #onetrust-close-btn-container button{position:relative;margin:0;right:-22px;top:2px}}@media only screen and (min-width: 1024px){#onetrust-banner-sdk #onetrust-close-btn-container{top:50%;margin:auto;transform:translate(-50%, -50%);position:absolute;right:0}#onetrust-banner-sdk #onetrust-close-btn-container button{right:-12px}#onetrust-banner-sdk #onetrust-policy{margin-left:2em}#onetrust-banner-sdk.vertical-align-content #onetrust-button-group-parent{position:absolute;top:50%;left:60%;transform:translateY(-50%)}#onetrust-banner-sdk .ot-optout-signal{width:50%}#onetrust-banner-sdk.ot-iab-2 #onetrust-policy-title{width:50%}#onetrust-banner-sdk.ot-iab-2 #onetrust-policy-text,#onetrust-banner-sdk.ot-iab-2 :not(.ot-dpd-desc)>.ot-b-addl-desc{margin-bottom:1em;width:50%;border-right:1px solid #d8d8d8;padding-right:1rem}#onetrust-banner-sdk.ot-iab-2 #onetrust-policy-text{margin-bottom:0;padding-bottom:1em}#onetrust-banner-sdk.ot-iab-2 :not(.ot-dpd-desc)>.ot-b-addl-desc{margin-bottom:0;padding-bottom:1em}#onetrust-banner-sdk.ot-iab-2 .ot-dpd-container{width:45%;padding-left:1rem;display:inline-block;float:none}#onetrust-banner-sdk.ot-iab-2 .ot-dpd-title{line-height:1.7}#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group-parent{left:auto;right:4%;margin-left:0}#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group button{display:block}#onetrust-banner-sdk:not(.ot-iab-2) #onetrust-button-group-parent{margin:auto;width:30%}#onetrust-banner-sdk:not(.ot-iab-2) #onetrust-group-container{width:60%}#onetrust-banner-sdk #onetrust-button-group{margin-right:auto}#onetrust-banner-sdk #onetrust-accept-btn-handler,#onetrust-banner-sdk #onetrust-reject-all-handler,#onetrust-banner-sdk #onetrust-pc-btn-handler{margin-top:1em}}@media only screen and (min-width: 890px){#onetrust-banner-sdk.ot-buttons-fw:not(.ot-iab-2) #onetrust-button-group-parent{padding-left:3%;padding-right:4%;margin-left:0}#onetrust-banner-sdk.ot-buttons-fw:not(.ot-iab-2) #onetrust-button-group{margin-right:0;margin-top:1.25em;width:100%}#onetrust-banner-sdk.ot-buttons-fw:not(.ot-iab-2) #onetrust-button-group button{width:100%;margin-bottom:5px;margin-top:5px}#onetrust-banner-sdk.ot-buttons-fw:not(.ot-iab-2) #onetrust-button-group button:last-of-type{margin-bottom:20px}}@media only screen and (min-width: 1280px){#onetrust-banner-sdk:not(.ot-iab-2) #onetrust-group-container{width:55%}#onetrust-banner-sdk:not(.ot-iab-2) #onetrust-button-group-parent{width:44%;padding-left:2%;padding-right:2%}#onetrust-banner-sdk:not(.ot-iab-2).vertical-align-content #onetrust-button-group-parent{position:absolute;left:55%}} | |
| 130 | + | |
| 131 | + #onetrust-consent-sdk #onetrust-banner-sdk { | |
| 132 | + background-color: #FFFFFF; | |
| 133 | + } | |
| 134 | + | |
| 135 | + #onetrust-consent-sdk #onetrust-policy-title, | |
| 136 | + #onetrust-consent-sdk #onetrust-policy-text, | |
| 137 | + #onetrust-consent-sdk .ot-b-addl-desc, | |
| 138 | + #onetrust-consent-sdk .ot-dpd-desc, | |
| 139 | + #onetrust-consent-sdk .ot-dpd-title, | |
| 140 | + #onetrust-consent-sdk #onetrust-policy-text *:not(.onetrust-vendors-list-handler), | |
| 141 | + #onetrust-consent-sdk .ot-dpd-desc *:not(.onetrust-vendors-list-handler), | |
| 142 | + #onetrust-consent-sdk #onetrust-banner-sdk #banner-options *, | |
| 143 | + #onetrust-banner-sdk .ot-cat-header, | |
| 144 | + #onetrust-banner-sdk .ot-optout-signal, | |
| 145 | + #onetrust-consent-sdk .ot-go-modal-title, | |
| 146 | + #onetrust-consent-sdk .ot-go-modal-desc, | |
| 147 | + #onetrust-banner-sdk .ot-go-modal-title, | |
| 148 | + #onetrust-banner-sdk .ot-go-modal-desc { | |
| 149 | + color: #000000; | |
| 150 | + } | |
| 151 | + #onetrust-consent-sdk .ot-go-modal-cancel, | |
| 152 | + #onetrust-banner-sdk .ot-go-modal-cancel | |
| 153 | + { | |
| 154 | + color: #000000 !important; | |
| 155 | + } | |
| 156 | + | |
| 157 | + #onetrust-consent-sdk .ot-go-modal-close-btn, | |
| 158 | + #onetrust-banner-sdk .ot-go-modal-close-btn, | |
| 159 | + #onetrust-consent-sdk .ot-go-modal-submit, | |
| 160 | + #onetrust-banner-sdk .ot-go-modal-submit { | |
| 161 | + color: #FFFFFF !important; | |
| 162 | + } | |
| 163 | + | |
| 164 | + #onetrust-consent-sdk .ot-go-modal-cancel, | |
| 165 | + #onetrust-banner-sdk .ot-go-modal-cancel { | |
| 166 | + border-color: #000000 !important; | |
| 167 | + } | |
| 168 | + | |
| 169 | + | |
| 170 | + #onetrust-consent-sdk .ot-go-modal-email, | |
| 171 | + #onetrust-banner-sdk .ot-go-modal-email { | |
| 172 | + border-color: #000000 !important; | |
| 173 | + background-color: rgb(255, 255, 255); | |
| 174 | + } | |
| 175 | + | |
| 176 | + #onetrust-consent-sdk .ot-go-modal-email:focus, | |
| 177 | + #onetrust-banner-sdk .ot-go-modal-email:focus { | |
| 178 | + border-color: #000000; | |
| 179 | + } | |
| 180 | + | |
| 181 | + #onetrust-consent-sdk .ot-go-modal-email::placeholder, | |
| 182 | + #onetrust-banner-sdk .ot-go-modal-email::placeholder { | |
| 183 | + color: #000000; | |
| 184 | + } | |
| 185 | + | |
| 186 | + #onetrust-consent-sdk #onetrust-banner-sdk .banner-option-details { | |
| 187 | + background-color: #E9E9E9; | |
| 188 | + } | |
| 189 | + | |
| 190 | + #onetrust-consent-sdk #onetrust-banner-sdk a[href], | |
| 191 | + #onetrust-consent-sdk #onetrust-banner-sdk a[href] font, | |
| 192 | + #onetrust-consent-sdk #onetrust-banner-sdk .ot-link-btn { | |
| 193 | + color: #000000; | |
| 194 | + } | |
| 195 | + | |
| 196 | + #onetrust-consent-sdk #onetrust-accept-btn-handler, | |
| 197 | + #onetrust-banner-sdk #onetrust-reject-all-handler, | |
| 198 | + #onetrust-banner-sdk #ot-dialog-confirm-handler, | |
| 199 | + #onetrust-consent-sdk .ot-go-modal-close-btn, | |
| 200 | + #onetrust-banner-sdk .ot-go-modal-close-btn, | |
| 201 | + #onetrust-consent-sdk .ot-go-modal-submit, | |
| 202 | + #onetrust-banner-sdk .ot-go-modal-submit { | |
| 203 | + background-color: #00467f;border-color: #00467f; | |
| 204 | + color: #FFFFFF; | |
| 205 | + } | |
| 206 | + #onetrust-consent-sdk #onetrust-banner-sdk *:focus, | |
| 207 | + #onetrust-consent-sdk #onetrust-banner-sdk:focus { | |
| 208 | + outline-color: #000000; | |
| 209 | + outline-width: 1px; | |
| 210 | + outline-style: solid; | |
| 211 | + } | |
| 212 | + #onetrust-consent-sdk #onetrust-pc-btn-handler, | |
| 213 | + #onetrust-consent-sdk #onetrust-pc-btn-handler.cookie-setting-link, | |
| 214 | + #onetrust-consent-sdk #ot-dialog-cancel-handler { | |
| 215 | + color: #000000; border-color: #000000; | |
| 216 | + background-color: #FFFFFF; | |
| 217 | + }#onetrust-banner-sdk #onetrust-policy-text a.ot-cookie-policy-link, | |
| 218 | + #onetrust-banner-sdk #onetrust-policy-text a.ot-imprint-link { | |
| 219 | + margin-left: 5px; | |
| 220 | + }#onetrust-pc-sdk .ot-go-group{border:1px solid #d8d8d8 !important;border-radius:1px;margin-bottom:15px !important;float:left;width:calc(100% - 2px)}#onetrust-pc-sdk .ot-go-section-header{float:left;padding-bottom:10px;font-size:1em;width:100%;font-weight:bold;color:#333;text-align:left;margin:0}.ot-go-modal-error-msg:empty{margin:0;line-height:0}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide){background:rgba(0,0,0,.5);z-index:2147483648;width:100%;height:100%;overflow:hidden;position:fixed;top:0;left:0}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal{display:flex;flex-direction:column;overflow:hidden;position:relative;margin:5% auto;width:440px;max-width:90%;max-height:90vh;border-radius:8px;z-index:2147483649;background-color:#fff;box-shadow:0 4px 24px rgba(0,0,0,.15)}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-header{display:flex;justify-content:flex-end;align-items:center;padding:12px 16px}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-header .ot-go-modal-close{width:44px;height:44px;background-size:12px;margin:-18px -18px 0 0;border:none;display:inline-block;padding:0;background-repeat:no-repeat;background-position:center;position:absolute;top:1em;cursor:pointer}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-body{padding:0 28px 28px;overflow-y:auto}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-title{font-size:1.25em;font-weight:700;margin-bottom:12px;text-align:center}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-desc{font-size:.88em;margin:0 0 20px;line-height:1.5;text-align:center}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper{position:relative;margin-bottom:4px}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-email{width:100%;padding:10px 36px 10px 12px;border:1px solid #d8d8d8;border-radius:4px;font-size:.95em;outline:none;box-sizing:border-box;color:inherit;background-color:rgba(0,0,0,0)}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-email::placeholder{color:inherit;opacity:.6}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-error-icon{position:absolute;right:10px;top:50%;transform:translateY(-50%);width:16px;height:16px;border-radius:50%;background-color:#d93025}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-error-icon::after{content:"!";color:#fff;font-size:11px;font-weight:bold;display:flex;align-items:center;justify-content:center;height:100%}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-error-msg{color:#d93025 !important;font-size:.82em;margin:4px 0 8px}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons{display:flex;gap:12px;margin-top:20px}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel,#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit{flex:1;padding:10px 16px;border-radius:4px;font-size:.88em;font-weight:600;cursor:pointer;text-align:center;box-sizing:border-box}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel{border:1px solid;background-color:rgba(0,0,0,0)}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel:hover{background-color:rgba(0,0,0,.05)}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit{position:relative}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit:hover:not(.ot-go-btn-loading){opacity:.8}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit.ot-go-btn-loading{pointer-events:none;opacity:.85}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit .ot-go-btn-spinner{display:inline-block;width:16px;height:16px;border:2px solid rgba(255,255,255,.3);border-top-color:#fff;border-radius:50%;animation:ot-go-spin .6s linear infinite;vertical-align:middle}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state{text-align:center;padding:20px 0}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-success-shield{width:56px;height:56px;margin:0 auto 20px}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-modal-confirm-msg{font-size:.95em;color:inherit;margin-bottom:24px;line-height:1.5;padding:0 10px}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-modal-close-btn{display:block;width:100%;border-radius:4px;font-size:.88em;font-weight:600;cursor:pointer;box-sizing:border-box}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-modal-close-btn:hover{opacity:.8}@media(max-width: 500px){#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal{width:95%;margin:10% auto}.ot-go-modal-buttons{flex-direction:column;gap:0px !important;flex-direction:column-reverse !important}.ot-go-modal-buttons .ot-go-modal-cancel,.ot-go-modal-buttons .ot-go-modal-submit{width:100%;flex:none}}@keyframes ot-go-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes ot-slide-in-left{from{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}to{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}}@keyframes ot-slide-in-right{from{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}to{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}}@keyframes ot-slide-out-left{from{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}to{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}}@keyframes ot-slide-out-right{from{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}to{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}}#onetrust-pc-sdk.otPcPanel.ot-slide-out-right{-webkit-animation-name:ot-slide-out-right;animation-name:ot-slide-out-right}#onetrust-pc-sdk.otPcPanel.ot-slide-in-left{-webkit-animation-name:ot-slide-in-left;animation-name:ot-slide-in-left}#onetrust-pc-sdk.otPcPanel.ot-slide-in-right{-webkit-animation-name:ot-slide-in-right;animation-name:ot-slide-in-right}#onetrust-pc-sdk.otPcPanel.ot-slide-out-left{-webkit-animation-name:ot-slide-out-left;animation-name:ot-slide-out-left}@media print,(prefers-reduced-motion){.ot-animated{-webkit-animation:initial !important;animation:initial !important;-webkit-transition:none !important;transition:none !important}#onetrust-pc-sdk.otPcPanel.ot-slide-out-left{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}#onetrust-pc-sdk.otPcPanel.ot-slide-out-right{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}}#onetrust-pc-sdk{--ot-footer-space: 10rem;position:fixed;display:flex;flex-direction:column;z-index:2147483647;bottom:0;left:0;background-color:#fff;max-width:min(480px,100vw);min-width:min(480px,100vw);height:100%;max-height:100vh;-webkit-box-shadow:0px 2px 10px -3px #999;-moz-box-shadow:0px 2px 10px -3px #999;box-shadow:0px 2px 10px -3px #999}#onetrust-pc-sdk>div[role=dialog]{display:flex;flex-direction:column;flex:1 1 auto;min-height:0;overflow:hidden}#onetrust-pc-sdk.otRelFont{font-size:1rem}#onetrust-pc-sdk.otPcPanel.right,#onetrust-pc-sdk.otPcPanel[dir=rtl]{right:0;left:auto}#onetrust-pc-sdk.otPcPanel.right-rtl[dir=rtl]{left:0;right:auto}#onetrust-pc-sdk.otPcPanel.ot-animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}#onetrust-pc-sdk #close-pc-btn-handler.ot-close-icon{background-color:rgba(0,0,0,0);border:none;margin-right:4px}#onetrust-pc-sdk .ot-optout-signal{margin-top:.625rem}#onetrust-pc-sdk .ot-pc-scrollbar::-webkit-scrollbar-track{margin-right:20px}#onetrust-pc-sdk .ot-pc-scrollbar::-webkit-scrollbar{width:11px}#onetrust-pc-sdk .ot-pc-scrollbar::-webkit-scrollbar-thumb{border-radius:10px;background:#d8d8d8}#onetrust-pc-sdk .ot-pc-scrollbar{scrollbar-arrow-color:#d8d8d8;scrollbar-darkshadow-color:#d8d8d8;scrollbar-face-color:#d8d8d8;scrollbar-shadow-color:#d8d8d8}#onetrust-pc-sdk.ot-ftr-stacked{--ot-footer-space: 13.125rem}#onetrust-pc-sdk.ot-ftr-stacked .ot-pc-refuse-all-handler{margin-bottom:0px}#onetrust-pc-sdk.ot-ftr-stacked .ot-pc-footer button{width:100%;max-width:none}#onetrust-pc-sdk.ot-ftr-stacked #ot-lst-cnt{max-height:84%}#onetrust-pc-sdk #ot-addtl-venlst .ot-arw-cntr,#onetrust-pc-sdk #ot-addtl-venlst .ot-plus-minus,#onetrust-pc-sdk .ot-hide-tgl{visibility:hidden}#onetrust-pc-sdk #ot-addtl-venlst .ot-arw-cntr *,#onetrust-pc-sdk #ot-addtl-venlst .ot-plus-minus *,#onetrust-pc-sdk .ot-hide-tgl *{visibility:hidden}#onetrust-pc-sdk .ot-pc-header{height:auto;min-height:2.5rem;border-bottom:1px solid #e9e9e9;padding:10px 0 10px 25px;flex:0 0 auto}#onetrust-pc-sdk .ot-pc-logo{height:40px;width:120px}#onetrust-pc-sdk .ot-close-icon{float:right;height:10px;width:10px;margin-top:10px;margin-right:5px}#onetrust-pc-sdk #ot-pc-content,#onetrust-pc-sdk #ot-pc-lst{position:relative;top:auto;bottom:auto;flex:1 1 auto;min-height:0}#onetrust-pc-sdk #ot-pc-content{padding-left:2px;padding-right:10px;margin-left:23px;margin-right:7px;width:calc(100% - 42px);overflow-y:auto}#onetrust-pc-sdk #ot-pc-lst{width:100%}#onetrust-pc-sdk .ot-pc-footer{position:relative;bottom:auto;width:100%;max-height:var(--ot-footer-space);border-top:1px solid #d8d8d8;flex:0 0 auto;overflow-y:auto}#onetrust-pc-sdk .ot-pc-footer button{margin-top:19px}#onetrust-pc-sdk .ot-button-order-0{float:left !important;margin-right:10px !important;margin-bottom:25px !important}#onetrust-pc-sdk .ot-btn-container{text-align:left;padding:0 25px}#onetrust-pc-sdk .ot-btn-container button{min-width:calc(50% - 5px)}#onetrust-pc-sdk .ot-btn-container.ot-button-order-container{height:100%;display:flex;flex-direction:column;gap:.5rem;justify-content:space-around}#onetrust-pc-sdk .ot-btn-container.ot-button-order-container .ot-pc-refuse-all-handler,#onetrust-pc-sdk .ot-btn-container.ot-button-order-container .save-preference-btn-handler,#onetrust-pc-sdk .ot-btn-container.ot-button-order-container #accept-recommended-btn-handler{width:100%;float:none !important;margin:0 !important;min-height:40px}#onetrust-pc-sdk .ot-pc-footer-logo{padding-left:25px;height:30px;background:#f4f4f4;text-align:right}#onetrust-pc-sdk .ot-pc-footer-logo a{display:inline-block;margin-top:2px;margin-right:10px}#onetrust-pc-sdk .ot-pc-footer-logo img,#onetrust-pc-sdk .ot-pc-footer-logo svg{margin-top:3px}#onetrust-pc-sdk.otPcPanel[dir=rtl] .ot-pc-footer-logo{direction:rtl}#onetrust-pc-sdk.otPcPanel[dir=rtl] .ot-pc-footer-logo a{margin-right:25px}#onetrust-pc-sdk button{display:inline-block;font-size:.75em;letter-spacing:.08em;max-width:394px;padding:12px 30px;line-height:1;word-break:break-word;word-wrap:break-word;white-space:normal;font-weight:bold;height:auto}#onetrust-pc-sdk button:hover,#onetrust-pc-sdk button:focus{color:#fff;border-color:#68b631}#onetrust-pc-sdk .ot-link-btn{padding:0;margin-bottom:0;border:0;font-weight:normal;line-height:normal;width:auto;height:auto}#onetrust-pc-sdk #accept-recommended-btn-handler{margin-right:10px;margin-bottom:25px}#onetrust-pc-sdk .ot-pc-refuse-all-handler{margin-right:5px}#onetrust-pc-sdk .ot-tgl{float:right;position:relative;z-index:1}#onetrust-pc-sdk .ot-tgl input:checked+.ot-switch .ot-switch-nob{background-color:#468254;border:1px solid #fff}#onetrust-pc-sdk .ot-tgl input:checked+.ot-switch .ot-switch-nob:before{-webkit-transform:translateX(21px);-ms-transform:translateX(21px);transform:translateX(21px);background-color:#fff}#onetrust-pc-sdk .ot-tgl input:focus+.ot-switch .ot-switch-nob{box-shadow:0 0 1px #2196f3;outline-style:auto !important;outline-width:1px !important}#onetrust-pc-sdk .ot-switch{position:relative;display:inline-block;width:45px;height:25px;margin-bottom:0}#onetrust-pc-sdk .ot-switch-nob{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#767676;border:1px solid #ddd;transition:all .2s ease-in 0s;-moz-transition:all .2s ease-in 0s;-o-transition:all .2s ease-in 0s;-webkit-transition:all .2s ease-in 0s;border-radius:20px}#onetrust-pc-sdk .ot-switch-nob:before{position:absolute;content:"";height:18px;width:18px;bottom:3px;left:2px;background-color:#fff;-webkit-transition:.4s;transition:.4s;border-radius:20px}#onetrust-pc-sdk .ot-chkbox{z-index:1}#onetrust-pc-sdk .ot-chkbox input{width:28px !important;height:28px !important}#onetrust-pc-sdk .ot-chkbox input:checked~label::before{background-color:#3860be}#onetrust-pc-sdk .ot-chkbox input+label::after{content:none;color:#fff}#onetrust-pc-sdk .ot-chkbox input:checked+label::after{content:""}#onetrust-pc-sdk .ot-chkbox input:focus+label::before{outline-style:solid;outline-width:2px;outline-style:auto}#onetrust-pc-sdk .ot-chkbox input[aria-checked=mixed]~label::before{background-color:#3860be}#onetrust-pc-sdk .ot-chkbox input[aria-checked=mixed]+label::after{content:""}#onetrust-pc-sdk .ot-chkbox label{position:relative;display:flex;align-items:center;cursor:pointer;min-height:28px}#onetrust-pc-sdk .ot-chkbox label::before,#onetrust-pc-sdk .ot-chkbox label::after{position:absolute;content:"";display:inline-block;border-radius:3px}#onetrust-pc-sdk .ot-chkbox label::before{height:18px;width:18px;border:1px solid #3860be;left:0px;left:4px;top:4px}#onetrust-pc-sdk .ot-chkbox label::after{height:5px;width:9px;border-left:3px solid;border-bottom:3px solid;transform:rotate(-45deg);-o-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);left:8px;top:8px}#onetrust-pc-sdk .ot-label-txt{display:none}#onetrust-pc-sdk .ot-chkbox input,#onetrust-pc-sdk .ot-tgl input{position:absolute;opacity:0;width:0;height:0}#onetrust-pc-sdk .ot-arw-cntr{left:5px;float:right;position:relative;pointer-events:none}#onetrust-pc-sdk .ot-arw{width:16px;height:16px;margin-left:5px;color:dimgray;display:inline-block;vertical-align:middle;-webkit-transition:all 150ms ease-in 0s;-moz-transition:all 150ms ease-in 0s;-o-transition:all 150ms ease-in 0s;transition:all 150ms ease-in 0s}#onetrust-pc-sdk input:checked~.ot-acc-hdr .ot-arw,#onetrust-pc-sdk button[aria-expanded=true]~.ot-acc-hdr .ot-arw-cntr svg{transform:rotate(90deg);-o-transform:rotate(90deg);-ms-transform:rotate(90deg);-webkit-transform:rotate(90deg)}#onetrust-pc-sdk input[type=checkbox]:focus+.ot-acc-hdr{outline:1px solid #000}#onetrust-pc-sdk .ot-acc-hdr{display:inline-block;width:100%;justify-content:flex-start !important}#onetrust-pc-sdk .ot-enbl-chr .ot-acc-hdr{justify-content:space-between}#onetrust-pc-sdk .ot-cat-item p[role=heading]{max-width:60%;line-height:1.5}#onetrust-pc-sdk .ot-enbl-chr .ot-cat-item p[role=heading]{max-width:90%}#onetrust-pc-sdk #ot-fltr-modal .ot-label-txt{display:inline-block;font-size:.85em;color:dimgray}#onetrust-pc-sdk .ot-label-status{font-size:.75em;display:none;position:relative;top:2px;padding-right:5px;float:left}#onetrust-pc-sdk .ot-plus-minus{width:20px;height:20px;font-size:1.5em;position:relative;display:inline-block;margin-right:5px;top:3px}#onetrust-pc-sdk .ot-plus-minus span{position:absolute;background:#27455c;border-radius:1px}#onetrust-pc-sdk .ot-plus-minus span:first-of-type{top:25%;bottom:25%;width:10%;left:45%}#onetrust-pc-sdk .ot-plus-minus span:last-of-type{left:25%;right:25%;height:10%;top:45%}#onetrust-pc-sdk button[aria-expanded=true]~.ot-acc-hdr .ot-arw,#onetrust-pc-sdk button[aria-expanded=true]~.ot-acc-hdr .ot-plus-minus span:first-of-type,#onetrust-pc-sdk button[aria-expanded=true]~.ot-acc-hdr .ot-plus-minus span:last-of-type{transform:rotate(90deg)}#onetrust-pc-sdk button[aria-expanded=true]~.ot-acc-hdr .ot-plus-minus span:last-of-type{left:50%;right:50%}#onetrust-pc-sdk .ot-host-item,#onetrust-pc-sdk .ot-ven-item{padding-right:0}#onetrust-pc-sdk .ot-host-item .ot-plus-minus,#onetrust-pc-sdk .ot-ven-item .ot-plus-minus{float:left;margin-right:8px;margin-top:10px}#onetrust-pc-sdk .ot-ven-item ul{list-style:none inside;font-size:100%;margin:0}#onetrust-pc-sdk .ot-ven-item ul li{margin:0 !important;padding:0;border:none !important}#onetrust-pc-sdk .ot-hide-acc>button{pointer-events:none}#onetrust-pc-sdk .ot-hide-acc .ot-plus-minus>*,#onetrust-pc-sdk .ot-hide-acc .ot-arw-cntr>*{visibility:hidden}#onetrust-pc-sdk .ot-hide-acc .ot-acc-hdr{min-height:30px}#onetrust-pc-sdk #ot-pc-title,#onetrust-pc-sdk #ot-pc-desc,#onetrust-pc-sdk #ot-category-title,#onetrust-pc-sdk .ot-cat-header,#onetrust-pc-sdk .ot-cat-item p:last-of-type:not([role=heading]){color:dimgray}#onetrust-pc-sdk #ot-pc-title{margin-top:20px;margin-bottom:10px}#onetrust-pc-sdk #ot-pc-desc,#onetrust-pc-sdk .ot-cat-item p{font-size:.79em;line-height:1.4}#onetrust-pc-sdk #ot-pc-desc *,#onetrust-pc-sdk .ot-cat-item p *{font-size:inherit;line-height:inherit}#onetrust-pc-sdk #ot-category-title,#onetrust-pc-sdk #ot-pc-title{font-size:1.125em;line-height:1.2}#onetrust-pc-sdk #ot-pc-desc{clear:both;font-size:.813em;line-height:1.5;margin-bottom:25px}#onetrust-pc-sdk #ot-pc-desc *{font-size:inherit;line-height:inherit}#onetrust-pc-sdk #ot-pc-desc a.privacy-notice-link,#onetrust-pc-sdk #ot-pc-desc a.ot-imprint-handler{margin-right:8px}#onetrust-pc-sdk #ot-pc-desc li{padding:10px 0px}#onetrust-pc-sdk #ot-pc-desc,#onetrust-pc-sdk #accept-recommended-btn-handler,#onetrust-pc-sdk #ot-pc-title,#onetrust-pc-sdk #ot-category-title,#onetrust-pc-sdk .ot-cat-header{float:left}#onetrust-pc-sdk #ot-category-title{width:100%;text-align:left}#onetrust-pc-sdk #ot-pc-title,#onetrust-pc-sdk #ot-category-title,#onetrust-pc-sdk .ot-cat-header,#onetrust-pc-sdk #ot-lst-title,#onetrust-pc-sdk .ot-ven-hdr .ot-ven-name,#onetrust-pc-sdk .ot-always-active{font-weight:bold}#onetrust-pc-sdk a{color:#656565;cursor:pointer}#onetrust-pc-sdk a:hover{color:#3860be}#onetrust-pc-sdk .ot-always-active{float:right;color:#3860be;margin-top:-2px}#onetrust-pc-sdk .ot-cat-header,#onetrust-pc-sdk .ot-always-active{font-size:.88em;line-height:1.4;position:relative}#onetrust-pc-sdk .ot-cat-item{margin-top:25px;line-height:1.1}#onetrust-pc-sdk .ot-cat-item p:last-of-type:not([role=heading]){clear:both;padding-top:15px;margin:0}#onetrust-pc-sdk .ot-acc-txt p ul,#onetrust-pc-sdk .ot-cat-item ul,#onetrust-pc-sdk li.ot-subgrp p ul{margin:0px;list-style:disc;margin-left:15px}#onetrust-pc-sdk .ot-acc-txt p ul li,#onetrust-pc-sdk .ot-cat-item ul li,#onetrust-pc-sdk li.ot-subgrp p ul li{font-size:inherit;margin:5px 0 0 0;padding:0;border:none}#onetrust-pc-sdk .ot-subgrp-cntr{display:inline-block;width:100%}#onetrust-pc-sdk .ot-subgrp-cntr .ot-tgl-cntr{float:right}#onetrust-pc-sdk .ot-subgrp-cntr .ot-tgl-cntr.ot-always-active-subgroup{width:auto}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li p,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li h5{font-size:.813em;line-height:1.5;color:dimgray}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr{display:inline-block;width:100%;vertical-align:middle}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-txt{margin:0}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li{margin:10px 0 0 0;padding:0;border:none}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li p{clear:both;float:left;padding-top:10px;margin:0}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li h5,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li p[aria-level="5"]{font-weight:bold;margin-bottom:0;float:left;position:relative;top:6px;padding-top:0}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp{margin-left:20px;overflow:hidden}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp>p ul:first-child{padding-bottom:7.5px}#onetrust-pc-sdk ul.ot-subgrps{margin:0}#onetrust-pc-sdk .ot-hlst-cntr,#onetrust-pc-sdk .ot-vlst-cntr{margin-top:3px;overflow:hidden;clear:both;padding-left:2px;padding-bottom:2px}#onetrust-pc-sdk .ot-always-active-subgroup{width:auto;padding-left:0px !important;top:3px;position:relative}#onetrust-pc-sdk .category-vendors-list-handler,#onetrust-pc-sdk .category-vendors-list-handler+a,#onetrust-pc-sdk .category-host-list-handler{color:#3860be;margin-left:0;font-size:.813em;text-decoration:none;float:left;margin-top:5px}#onetrust-pc-sdk .category-vendors-list-handler:hover,#onetrust-pc-sdk .category-vendors-list-handler+a:hover,#onetrust-pc-sdk .category-host-list-handler:hover{text-decoration-line:underline}#onetrust-pc-sdk .category-vendors-list-handler+a{clear:none}#onetrust-pc-sdk .ot-vlst-cntr svg.ot-ext-lnk,#onetrust-pc-sdk .ot-ven-hdr svg.ot-ext-lnk,#onetrust-pc-sdk .ot-host-hdr svg.ot-ext-lnk,#onetrust-pc-sdk .ot-cat-grp svg.ot-ext-lnk{display:inline-block;height:13px;width:13px;background-repeat:no-repeat;margin-left:1px;cursor:pointer;vertical-align:middle}#onetrust-pc-sdk .ot-ven-hdr svg.ot-ext-lnk{margin-bottom:-1px}#onetrust-pc-sdk .back-btn-handler{min-height:20px;font-size:1em;text-decoration:none}#onetrust-pc-sdk .back-btn-handler svg{width:12px;height:12px}#onetrust-pc-sdk .back-btn-handler:hover{opacity:.6}#onetrust-pc-sdk #ot-lst-title h3,#onetrust-pc-sdk #ot-lst-title p[aria-level="3"]{word-break:break-word;word-wrap:break-word;margin-bottom:0;color:#656565;font-weight:bold;margin-left:15px;display:inline-block;font-size:1em}#onetrust-pc-sdk #ot-lst-title{margin-top:15px;font-size:1em}#onetrust-pc-sdk #ot-pc-hdr{display:inline-block;padding-left:27px;padding-right:17px;width:calc(100% - 44px)}#onetrust-pc-sdk #ot-pc-hdr input::placeholder{color:#707070;font-style:italic}#onetrust-pc-sdk #vendor-search-handler{height:31px;width:100%;border-radius:50px;font-size:.8em;padding-right:35px;padding-left:15px;float:left;margin-left:15px}#onetrust-pc-sdk #ot-lst-cnt{transform:translate3d(0, 0, 0);position:relative;padding-left:27px;margin-right:10px;margin-top:10px;width:calc(100% - 37px);top:0;bottom:70px;height:calc(100% - 94px);overflow-y:auto;overflow-x:hidden}#onetrust-pc-sdk #ot-pc-lst .ot-tgl-cntr{right:32px;position:absolute;margin-top:10px;height:20px}#onetrust-pc-sdk #ot-pc-lst:not(.ot-enbl-chr):not(.ot-hosts-ui) .ot-tgl-cntr{right:12px}#onetrust-pc-sdk #ot-sel-blk{position:sticky;position:-webkit-sticky;width:100%;display:inline-block;top:0;overflow:hidden;z-index:3}#onetrust-pc-sdk #ot-sel-blk p{font-size:.75em;color:#6b6b6b;margin:0;display:inline-block}#onetrust-pc-sdk .ot-enbl-chr>:not(.ot-hosts-ui) .ot-sel-all{padding-right:33px}#onetrust-pc-sdk .ot-enbl-chr .ot-hosts-ui .ot-sel-all{padding-right:23px}#onetrust-pc-sdk .ot-enbl-chr .ot-accordion-layout h4~.ot-tgl+.ot-tgl,#onetrust-pc-sdk .ot-enbl-chr .ot-accordion-layout p[aria-level="4"]~.ot-tgl+.ot-tgl{right:105px}#onetrust-pc-sdk .ot-enbl-chr .ot-cat-item h5+.ot-tgl-cntr,#onetrust-pc-sdk .ot-enbl-chr .ot-cat-item p[aria-level="5"]+.ot-tgl-cntr{padding-left:31px;padding-right:13px}#onetrust-pc-sdk #ot-pc-lst:not(.ot-enbl-chr) .ot-tgl-cntr .ot-arw-cntr,#onetrust-pc-sdk #ot-pc-lst:not(.ot-enbl-chr) .ot-tgl-cntr .ot-arw-cntr *{visibility:hidden}#onetrust-pc-sdk #ot-pc-content:not(.ot-enbl-chr) .ot-pli-hdr.ot-leg-border-color span:first-child{text-align:center}#onetrust-pc-sdk #ot-pc-content:not(.ot-enbl-chr) .ot-pli-hdr.ot-leg-border-color span:last-child{text-align:right}#onetrust-pc-sdk .ot-hosts-ui:not(.ot-enbl-chr) .ot-tgl-cntr{right:23px}#onetrust-pc-sdk .ot-hosts-ui #ot-sel-blk{width:100%}#onetrust-pc-sdk .ot-lst-subhdr{display:inline-block;width:100%;margin-top:10px}#onetrust-pc-sdk .ot-lst-subhdr svg{width:30px;height:30px;position:absolute;float:left;right:-15px}#onetrust-pc-sdk .ot-search-cntr{float:left;width:82%;position:relative}#onetrust-pc-sdk .ot-fltr-cntr{float:right;right:15px;position:relative}#onetrust-pc-sdk #ot-filter-list-header{display:block;box-sizing:border-box;margin-bottom:10px;float:left;width:100%;text-decoration:none;color:#3860be;font-size:.9em;font-weight:bold;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0);padding:1px 1px 1px 15px;word-wrap:break-word;overflow-wrap:break-word}#onetrust-pc-sdk #filter-btn-handler{background-color:#3860be;border-radius:17px;display:inline-block;position:relative;width:32px;height:32px;-moz-transition:.1s ease;-o-transition:.1s ease;-webkit-transition:1s ease;transition:.1s ease;padding:0;margin:0}#onetrust-pc-sdk #filter-btn-handler:hover{opacity:.7}#onetrust-pc-sdk #filter-btn-handler svg{width:12px;margin:6px 10px 0 9px;display:block;height:12px;position:static;right:auto;top:auto}#onetrust-pc-sdk .ot-ven-link,#onetrust-pc-sdk .ot-ven-legclaim-link{color:#3860be;text-decoration:none;display:inline-block;margin-top:10px;transform:translate(0, 1%);-o-transform:translate(0, 1%);-ms-transform:translate(0, 1%);-webkit-transform:translate(0, 1%);z-index:2;position:relative;font-size:.75em}#onetrust-pc-sdk .ot-ven-link:hover,#onetrust-pc-sdk .ot-ven-legclaim-link:hover{text-decoration:underline}#onetrust-pc-sdk .ot-ven-link *,#onetrust-pc-sdk .ot-ven-legclaim-link *{font-size:inherit}#onetrust-pc-sdk .ot-ven-name{vertical-align:middle}#onetrust-pc-sdk .ot-ven-hdr,#onetrust-pc-sdk .ot-host-hdr{width:calc(100% - 165px);height:auto;float:left;text-align:left;word-break:break-word;word-wrap:break-word;vertical-align:middle;padding-bottom:2px;padding-left:2px}#onetrust-pc-sdk .ot-host-hdr{pointer-events:none;position:relative;z-index:1}#onetrust-pc-sdk .ot-host-hdr .ot-host-name{pointer-events:none}#onetrust-pc-sdk .ot-host-hdr a{pointer-events:initial}#onetrust-pc-sdk #ot-host-lst .ot-host-info{font-size:.7em;line-height:1.1}#onetrust-pc-sdk #ot-host-lst .ot-host-name,#onetrust-pc-sdk #ot-host-lst .ot-host-name a{color:dimgray;font-size:.81em;font-weight:bold;line-height:1.4;margin-bottom:5px;position:relative}#onetrust-pc-sdk #ot-host-lst .ot-host-name a,#onetrust-pc-sdk #ot-host-lst .ot-host-info a{font-size:1em}#onetrust-pc-sdk #ot-host-lst .ot-host-desc{width:100%;margin-bottom:5px}#onetrust-pc-sdk #ot-host-lst .ot-host-expand,#onetrust-pc-sdk #ot-host-lst .ot-host-desc{color:dimgray;font-size:.69em;line-height:1.4;float:left;font-weight:normal}#onetrust-pc-sdk #ot-host-lst .ot-host-hdr>a{text-decoration:underline;font-size:.69em;position:relative;z-index:2;margin-bottom:5px;line-height:1.4}#onetrust-pc-sdk #ot-host-lst .ot-host-expand{color:#3860be}#onetrust-pc-sdk #ot-host-lst .ot-host-expand *{font-size:inherit}#onetrust-pc-sdk .ot-host-opt{margin:0;font-size:inherit;display:inline-block;width:100%}#onetrust-pc-sdk .ot-host-opt .ot-host-info{border:none;font-size:.8em;color:dimgray;display:inline-block;width:calc(100% - 20px);padding:10px;margin-bottom:10px;background-color:#f8f8f8}#onetrust-pc-sdk .ot-host-opt .ot-host-info>div{overflow:auto}#onetrust-pc-sdk .ot-host-opt li>dl{font-size:.8em;margin:5px 0}#onetrust-pc-sdk .ot-host-opt li>dl>div{padding:5px 0;display:flex}#onetrust-pc-sdk .ot-host-opt li>dl>div dt{width:30%;float:left}#onetrust-pc-sdk .ot-host-opt li>dl>div dd{width:70%;float:left;word-break:break-word;word-wrap:break-word}#onetrust-pc-sdk #ot-ven-lst .ot-acc-hdr{overflow:hidden;cursor:pointer}#onetrust-pc-sdk .ot-ven-dets{border-radius:2px;margin-top:10px;background-color:#f8f8f8}#onetrust-pc-sdk .ot-ven-dets li:first-child p:first-child{border-top:none}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc:not(:first-child){border-top:1px solid #ddd !important}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc:nth-child(n+3) p{display:inline-block}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc:nth-child(n+3) p:nth-of-type(odd){width:30%}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc:nth-child(n+3) p:nth-of-type(even){width:50%;word-break:break-word;word-wrap:break-word}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc p,#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc h5{padding-top:5px;padding-bottom:5px;display:block}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc h5,#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc p[aria-level="5"]{display:inline-block}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc p:nth-last-child(-n+1){padding-bottom:10px}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc p:nth-child(-n+2):not(.disc-pur):not([role=heading]){padding-top:10px}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc .disc-pur-cont{display:inline}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc .disc-pur{position:relative;width:50% !important;word-break:break-word;word-wrap:break-word;left:calc(30% + 17px)}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc .disc-pur:nth-child(-n+1){position:static}#onetrust-pc-sdk .ot-ven-dets p,#onetrust-pc-sdk .ot-ven-dets h5,#onetrust-pc-sdk .ot-ven-dets span{font-size:.69em;text-align:left;vertical-align:middle;word-break:break-word;word-wrap:break-word;margin:0;padding-bottom:10px;padding-left:15px;color:#2e3644}#onetrust-pc-sdk .ot-ven-dets h5,#onetrust-pc-sdk .ot-ven-dets p[aria-level="5"]{padding-top:5px;line-height:1.5}#onetrust-pc-sdk .ot-ven-dets span{color:dimgray;padding:0;vertical-align:baseline}#onetrust-pc-sdk .ot-ven-dets .ot-ven-pur h5,#onetrust-pc-sdk .ot-ven-dets .ot-ven-pur p[aria-level="5"]{border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9;padding-bottom:5px;margin-bottom:5px;font-weight:bold}#onetrust-pc-sdk #no-results{text-align:center;margin-top:30px;height:calc(100% - 300px);margin-left:27px}#onetrust-pc-sdk #no-results span{font-weight:bold}#onetrust-pc-sdk #no-results p{font-size:1em;color:#2e3644;word-break:break-word;word-wrap:break-word}#onetrust-pc-sdk #ot-fltr-modal{right:13px;top:87px;height:90%;max-height:370px;display:none;-moz-transition:.2s ease;-o-transition:.2s ease;-webkit-transition:2s ease;transition:.2s ease;opacity:1;position:absolute}#onetrust-pc-sdk #ot-fltr-cnt{z-index:2147483646;background-color:#fff;position:relative;height:100%;max-width:325px;border-radius:3px;padding-right:10px;padding-bottom:5px;-webkit-box-shadow:0px 0px 12px 2px #c7c5c7;-moz-box-shadow:0px 0px 12px 2px #c7c5c7;box-shadow:0px 0px 12px 2px #c7c5c7}#onetrust-pc-sdk .ot-fltr-scrlcnt{overflow-y:auto;overflow-x:hidden;clear:both;max-height:calc(100% - 60px);border:none;padding:0;margin:0;min-width:0}#onetrust-pc-sdk #ot-anchor{border:12px solid rgba(0,0,0,0);display:none;position:absolute;z-index:2147483647;right:36px;top:75px;transform:rotate(45deg);-o-transform:rotate(45deg);-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);background-color:#fff;-webkit-box-shadow:-3px -3px 5px -2px #c7c5c7;-moz-box-shadow:-3px -3px 5px -2px #c7c5c7;box-shadow:-3px -3px 5px -2px #c7c5c7}#onetrust-pc-sdk .ot-fltr-btns{margin-left:15px}#onetrust-pc-sdk #filter-apply-handler{margin-right:15px}#onetrust-pc-sdk .ot-fltr-opt{margin-bottom:5px;margin-left:15px;min-height:20px;width:75%}#onetrust-pc-sdk .ot-fltr-opt label{padding-left:30px;margin-bottom:0}#onetrust-pc-sdk .ot-fltr-opt p{display:inline-block;margin:0;font-size:.9em;color:#2e3644}#onetrust-pc-sdk #ot-sel-blk .ot-chkbox{width:20px;height:20px;float:right}#onetrust-pc-sdk .line-through label::after,#onetrust-pc-sdk[dir=rtl] .line-through label::after{height:auto;border-left:0;transform:none;-o-transform:none;-ms-transform:none;-webkit-transform:none;left:9px;top:12px}#onetrust-pc-sdk #ot-selall-vencntr label,#onetrust-pc-sdk #ot-selall-adtlvencntr label,#onetrust-pc-sdk #ot-selall-hostcntr label,#onetrust-pc-sdk #ot-selall-licntr label,#onetrust-pc-sdk #ot-selall-gnvencntr label{position:relative;display:inline-block;margin:0}#onetrust-pc-sdk #ot-selall-vencntr input,#onetrust-pc-sdk #ot-selall-adtlvencntr input,#onetrust-pc-sdk #ot-selall-hostcntr input,#onetrust-pc-sdk #ot-selall-licntr input,#onetrust-pc-sdk #ot-selall-gnvencntr input{height:auto;width:auto;border-radius:0;font-size:initial;padding:0;float:none}#onetrust-pc-sdk #ot-ven-lst:first-child{border-top:1px solid #e2e2e2}#onetrust-pc-sdk #vdr-lst-dsc{font-size:.812em;line-height:1.5;padding:10px 15px 5px 15px}#onetrust-pc-sdk #close-pc-btn-handler{margin:0;float:right;height:44px;width:44px;background-size:10px}#onetrust-pc-sdk #close-pc-btn-handler svg{display:block}#onetrust-pc-sdk .ot-close-icon{padding:0;background-color:rgba(0,0,0,0);border:none}#onetrust-pc-sdk #clear-filters-handler{float:right;max-width:200px;margin-bottom:10px;text-decoration:none;margin-top:20px;font-weight:bold;color:#3860be;font-size:.9em;letter-spacing:normal;border:none;padding:1px;border:1px solid #3860be;padding:5px 10px}#onetrust-pc-sdk #clear-filters-handler:hover{color:#2285f7}#onetrust-pc-sdk #clear-filters-handler:focus{outline:#000 solid 1px}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item{position:relative;border-radius:1px;margin:0;padding:0;border:1px solid #d8d8d8;border-top:none;float:left;width:calc(100% - 2px)}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item:first-of-type{margin-top:10px;border-top:1px solid #d8d8d8}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item .ot-vlst-cntr:first-child{margin-top:15px}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item .ot-acc-grpdesc{font-size:.813em;line-height:1.5;padding-left:20px;padding-right:20px;width:calc(100% - 40px)}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item .ot-acc-grpdesc ul{padding-bottom:5px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-hdr{padding-top:11.5px;padding-bottom:11.5px;padding-left:20px;padding-right:15px;width:calc(100% - 35px);display:inline-block;position:relative;min-height:25px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-txt{width:100%;padding:0px}#onetrust-pc-sdk .ot-accordion-layout .ot-subgrp-cntr,#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpdesc+.ot-leg-btn-container{padding-left:20px;padding-right:16px;width:calc(100% - 36px)}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpdesc+.ot-leg-btn-container{margin-top:5px;margin-bottom:10px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpcntr{z-index:1;position:relative}#onetrust-pc-sdk .ot-accordion-layout input[type=checkbox]:checked~.ot-acc-txt.ot-acc-grpcntr{width:auto;padding-bottom:15px}#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header{float:none;font-size:.88em;color:#2e3644;margin:0;display:inline-block;height:auto;word-wrap:break-word;vertical-align:middle;min-height:inherit}#onetrust-pc-sdk .ot-accordion-layout .ot-vlst-cntr,#onetrust-pc-sdk .ot-accordion-layout .ot-hlst-cntr{padding-left:20px;width:calc(100% - 20px);display:inline-block;margin-top:0;padding-bottom:2px}#onetrust-pc-sdk .ot-accordion-layout h4~.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout h4~.ot-always-active,#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-always-active{right:16px}#onetrust-pc-sdk .ot-accordion-layout h4~.ot-tgl+.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-tgl+.ot-tgl{right:88px}#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header+.ot-arw-cntr{right:10px;margin-top:-2px;left:auto}#onetrust-pc-sdk .ot-accordion-layout h4~.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout h4~.ot-always-active,#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-always-active,#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header+.ot-arw-cntr{position:absolute;top:60%;transform:translateY(-50%)}#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-always-active{position:relative;transform:none;right:0}#onetrust-pc-sdk #ot-category-title{padding-bottom:10px}#onetrust-pc-sdk .ot-pli-hdr{color:#77808e;overflow:hidden;padding-top:7.5px;padding-bottom:7.5px;width:calc(100% - 2px);border-top-left-radius:3px;border-top-right-radius:3px}#onetrust-pc-sdk .ot-pli-hdr .ot-li-title{float:right;font-size:.813em}#onetrust-pc-sdk .ot-pli-hdr span:first-child{top:50%;transform:translateY(50%);max-width:80px}#onetrust-pc-sdk .ot-pli-hdr span:last-child{text-align:center;max-width:95px}#onetrust-pc-sdk .ot-pli-hdr.ot-leg-border-color{background-color:#f8f8f8;border:1px solid #e9e9e9}#onetrust-pc-sdk .ot-pli-hdr.ot-leg-border-color span:first-child{text-align:left;width:80px}#onetrust-pc-sdk .ot-subgrp>h5,#onetrust-pc-sdk .ot-subgrp>p[aria-level="5"],#onetrust-pc-sdk .ot-cat-header{width:calc(100% - 130px);max-width:60%}#onetrust-pc-sdk .ot-pli-hdr~.ot-cat-item .ot-subgrp>h5,#onetrust-pc-sdk .ot-pli-hdr~.ot-cat-item .ot-subgrp>p[aria-level="5"],#onetrust-pc-sdk .ot-pli-hdr~.ot-cat-item .ot-cat-header{width:calc(100% - 145px)}#onetrust-pc-sdk .ot-pli-hdr~.ot-cat-item h5+.ot-tgl-cntr,#onetrust-pc-sdk .ot-pli-hdr~.ot-cat-item p[aria-level="5"]+.ot-tgl-cntr,#onetrust-pc-sdk .ot-pli-hdr~.ot-cat-item .ot-cat-header+.ot-tgl{padding-left:28px}#onetrust-pc-sdk .ot-acc-grpcntr .ot-acc-grpdesc{margin-bottom:5px}#onetrust-pc-sdk .ot-acc-grpcntr .ot-subgrp-cntr{border-top:1px solid #e9e9e9}#onetrust-pc-sdk .ot-acc-grpcntr .ot-subgrp-cntr ul.ot-subgrps li{margin-top:5px;margin-bottom:5px}#onetrust-pc-sdk .ot-acc-hdr .ot-arw-cntr+.ot-tgl,#onetrust-pc-sdk .ot-cat-item h4+.ot-tgl,#onetrust-pc-sdk .ot-acc-txt h4+.ot-tgl-cntr,#onetrust-pc-sdk .ot-cat-item p[aria-level="4"]+.ot-tgl,#onetrust-pc-sdk .ot-acc-txt p[aria-level="4"]+.ot-tgl-cntr{padding-left:30px}#onetrust-pc-sdk .ot-sel-all-hdr,#onetrust-pc-sdk .ot-sel-all-chkbox{position:relative;display:inline-block;width:100%}#onetrust-pc-sdk .ot-sel-all-chkbox{z-index:1}#onetrust-pc-sdk .ot-li-hdr,#onetrust-pc-sdk .ot-consent-hdr{float:right;font-size:.813em;line-height:normal;text-align:center;word-break:break-word;word-wrap:break-word}#onetrust-pc-sdk .ot-li-hdr{max-width:100px;min-width:100px}#onetrust-pc-sdk .ot-consent-hdr{margin-right:5px;max-width:55px}#onetrust-pc-sdk .ot-ven-litgl+.ot-arw-cntr{margin-left:81px}#onetrust-pc-sdk .ot-sel-all{margin:0;position:relative;padding-right:13px;float:right}#onetrust-pc-sdk #ot-selall-hostcntr,#onetrust-pc-sdk #ot-selall-vencntr{right:20px;position:relative}#onetrust-pc-sdk #ot-selall-licntr{position:relative;right:79px}#onetrust-pc-sdk #ot-pc-lst #ot-ven-lst .ot-sel-all{position:relative;display:inline-block;width:20px;height:25px}#onetrust-pc-sdk #ot-pc-lst #ot-ven-lst .ot-sel-all label{position:absolute;padding:0;width:18px;height:18px}#onetrust-pc-sdk .ot-always-active-group .ot-cat-header{width:55%}#onetrust-pc-sdk .ot-leg-btn-container{display:inline-block;width:100%;margin-top:10px}#onetrust-pc-sdk .ot-leg-btn-container button{height:auto;padding:6.5px 8px;margin-bottom:0;letter-spacing:0;line-height:normal}#onetrust-pc-sdk .ot-leg-btn-container svg{display:none;height:14px;width:14px;padding-right:5px;vertical-align:sub}#onetrust-pc-sdk .ot-active-leg-btn{cursor:default;pointer-events:none}#onetrust-pc-sdk .ot-active-leg-btn svg{display:inline-block}#onetrust-pc-sdk .ot-remove-objection-handler{border:none;text-decoration:underline;padding:0;font-size:.82em;font-weight:600;line-height:1.4;padding-left:10px}#onetrust-pc-sdk .ot-obj-leg-btn-handler span{font-weight:bold;text-align:center;font-size:.91em;line-height:1.5}#onetrust-pc-sdk[dir=rtl] input~.ot-acc-hdr .ot-arw,#onetrust-pc-sdk[dir=rtl] #ot-back-arw{transform:rotate(180deg);-o-transform:rotate(180deg);-ms-transform:rotate(180deg);-webkit-transform:rotate(180deg)}#onetrust-pc-sdk[dir=rtl] input:checked~.ot-acc-hdr .ot-arw{transform:rotate(270deg);-o-transform:rotate(270deg);-ms-transform:rotate(270deg);-webkit-transform:rotate(270deg)}#onetrust-pc-sdk[dir=rtl] .ot-chkbox label::after{transform:rotate(45deg);-webkit-transform:rotate(45deg);-o-transform:rotate(45deg);-ms-transform:rotate(45deg);border-left:0;border-right:3px solid}#onetrust-pc-sdk[dir=rtl] .ot-lst-subhdr svg{right:0}#onetrust-pc-sdk .ot-ven-ctgl,#onetrust-pc-sdk .ot-ven-litgl,#onetrust-pc-sdk .ot-host-tgl,#onetrust-pc-sdk .ot-ven-gvctgl{position:relative;display:inline-block;width:20px;height:20px;margin-left:60px}#onetrust-pc-sdk .ot-ven-ctgl label,#onetrust-pc-sdk .ot-ven-litgl label,#onetrust-pc-sdk .ot-host-tgl label,#onetrust-pc-sdk .ot-ven-gvctgl label{position:absolute;margin:0}#onetrust-pc-sdk #ot-host-lst .ot-host-expand{clear:both;float:none;display:block}#onetrust-pc-sdk ul{list-style:none}#onetrust-pc-sdk ul li:not(.ot-fltr-opt){position:relative;margin:0;padding:15px 15px 15px 15px;border-bottom:1px solid #e2e2e2}#onetrust-pc-sdk ul li h3,#onetrust-pc-sdk ul li h4,#onetrust-pc-sdk ul li p[aria-level="3"],#onetrust-pc-sdk ul li p[aria-level="4"]{font-size:.75em;color:#656565;margin:0;height:auto;word-break:break-word;word-wrap:break-word}#onetrust-pc-sdk ul li p:not([role=heading]){margin:0;font-size:.7em}#onetrust-pc-sdk .ot-ven-item>button:focus,#onetrust-pc-sdk .ot-host-item>button:focus,#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item>button:focus,#onetrust-pc-sdk .ot-acc-cntr>button:focus{outline:#000 solid 2px}#onetrust-pc-sdk .ot-ven-item>button,#onetrust-pc-sdk .ot-host-item>button,#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item>button,#onetrust-pc-sdk .ot-acc-cntr>button{position:absolute;cursor:pointer;width:100%;height:100%;margin:0;top:0;left:0;z-index:1;max-width:none;border:none}#onetrust-pc-sdk .ot-ven-item>button[aria-expanded=false]~.ot-acc-txt,#onetrust-pc-sdk .ot-host-item>button[aria-expanded=false]~.ot-acc-txt,#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item>button[aria-expanded=false]~.ot-acc-txt,#onetrust-pc-sdk .ot-acc-cntr>button[aria-expanded=false]~.ot-acc-txt{margin-top:0;max-height:0;overflow:hidden;width:100%;transition:.25s ease-out;display:none}#onetrust-pc-sdk .ot-ven-item>button[aria-expanded=true]~.ot-acc-txt,#onetrust-pc-sdk .ot-host-item>button[aria-expanded=true]~.ot-acc-txt,#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item>button[aria-expanded=true]~.ot-acc-txt,#onetrust-pc-sdk .ot-acc-cntr>button[aria-expanded=true]~.ot-acc-txt{transition:.1s ease-in;width:auto;overflow:auto;display:block}#onetrust-pc-sdk .ot-host-item>button:focus{outline:0;border:2px solid #000}#onetrust-pc-sdk.ot-addtl-vendors>:not(.ot-enbl-chr) #ot-selall-licntr{right:135px}#onetrust-pc-sdk.ot-addtl-vendors>:not(.ot-enbl-chr) #ot-selall-adtlvencntr,#onetrust-pc-sdk.ot-addtl-vendors>:not(.ot-enbl-chr) #ot-selall-gnvencntr{right:40px}#onetrust-pc-sdk.ot-addtl-vendors .ot-li-hdr{margin-right:15px}#onetrust-pc-sdk.ot-addtl-vendors #ot-selall-licntr{right:115px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) #ot-sel-blk{background-color:#f9f9fc;border:1px solid #e2e2e2;width:auto;padding-bottom:5px;padding-top:5px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) .ot-sel-all{padding-right:23px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) ul li{border:1px solid #e2e2e2;margin-bottom:10px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) .ot-sel-all-chkbox{float:right;width:auto;right:3px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) .ot-tgl-cntr{right:12px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) .ot-ven-ctgl{margin-left:75px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) .ot-ven-litgl+.ot-arw-cntr{margin-left:95px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) .ot-acc-cntr>.ot-acc-hdr{padding-top:10px;padding-bottom:10px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) #ot-addtl-venlst .ot-tgl-cntr{right:32px}#onetrust-pc-sdk.ot-addtl-vendors #ot-ven-lst:first-child{border-top:none}#onetrust-pc-sdk.ot-addtl-vendors #ot-selall-vencntr{right:40px;position:absolute}#onetrust-pc-sdk #ot-selall-adtlvencntr,#onetrust-pc-sdk #ot-selall-gnvencntr{position:relative;right:20px}#onetrust-pc-sdk .ot-acc-cntr{position:relative;border-left:1px solid #e2e2e2;border-right:1px solid #e2e2e2;border-bottom:1px solid #e2e2e2}#onetrust-pc-sdk .ot-acc-cntr>.ot-acc-hdr{background-color:#f9f9fc;padding-left:15px;padding-top:5px;padding-bottom:5px;width:calc(100% - 15px)}#onetrust-pc-sdk .ot-acc-cntr>.ot-acc-hdr .ot-plus-minus{vertical-align:middle;top:auto}#onetrust-pc-sdk .ot-acc-cntr>.ot-acc-hdr .ot-arw-cntr{right:10px;left:auto}#onetrust-pc-sdk .ot-acc-cntr.ot-add-tech .ot-acc-hdr{padding:10px 0 10px 15px}#onetrust-pc-sdk .ot-acc-cntr>button[aria-expanded=true]~.ot-acc-hdr{border-bottom:1px solid #e2e2e2}#onetrust-pc-sdk .ot-acc-cntr>.ot-acc-txt{padding-left:10px;padding-right:10px;padding-top:10px;position:relative;z-index:1}#onetrust-pc-sdk .ot-acc-cntr .ot-addtl-venbox{display:none}#onetrust-pc-sdk .ot-vensec-title{font-size:.813em;vertical-align:middle;display:inline-block}#onetrust-pc-sdk.ot-close-btn-link #close-pc-btn-handler{border:none;height:auto;line-height:1.5;text-decoration:underline;font-size:.69em;background:none;right:15px;top:15px;width:auto;position:absolute;font-weight:normal}#onetrust-pc-sdk .ot-cat-header{float:left;font-weight:600;font-size:.875em;line-height:1.5;max-width:90%;vertical-align:middle}#onetrust-pc-sdk .ot-vnd-item>button:focus{outline:#000 solid 2px}#onetrust-pc-sdk .ot-vnd-item>button{position:absolute;cursor:pointer;width:100%;height:100%;margin:0;top:0;left:0;z-index:1;max-width:none;border:none}#onetrust-pc-sdk .ot-vnd-item>button[aria-expanded=false]~.ot-acc-txt{margin-top:0;max-height:0;opacity:0;overflow:hidden;width:100%;transition:.25s ease-out;display:none}#onetrust-pc-sdk .ot-vnd-item>button[aria-expanded=true]~.ot-acc-txt{transition:.1s ease-in;margin-top:10px;width:100%;overflow:auto;display:block}#onetrust-pc-sdk .ot-vnd-item>button[aria-expanded=true]~.ot-acc-grpcntr{width:auto;margin-top:0px;padding-bottom:10px}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item{position:relative;border-radius:2px;margin:0;padding:0;border:1px solid #d8d8d8;border-top:none;width:calc(100% - 2px);float:left}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item:first-of-type{margin-top:10px;border-top:1px solid #d8d8d8}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpdesc{padding-left:20px;padding-right:20px;width:calc(100% - 40px);font-size:.812em;margin-bottom:10px;margin-top:15px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpdesc>ul{padding-top:10px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpdesc>ul li{padding-top:0;line-height:1.5;padding-bottom:10px}#onetrust-pc-sdk .ot-accordion-layout div+.ot-acc-grpdesc{margin-top:5px}#onetrust-pc-sdk .ot-accordion-layout .ot-vlst-cntr:first-child{margin-top:10px}#onetrust-pc-sdk .ot-accordion-layout .ot-vlst-cntr:last-child,#onetrust-pc-sdk .ot-accordion-layout .ot-hlst-cntr:last-child{margin-bottom:5px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-hdr{padding-top:11.5px;padding-bottom:11.5px;padding-left:20px;padding-right:20px;width:calc(100% - 40px);display:inline-block}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-txt{width:100%;padding:0}#onetrust-pc-sdk .ot-accordion-layout .ot-subgrp-cntr{padding-left:20px;padding-right:15px;padding-bottom:0;width:calc(100% - 35px)}#onetrust-pc-sdk .ot-accordion-layout .ot-subgrp{padding-right:5px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpcntr{z-index:1;position:relative}#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header+.ot-arw-cntr{position:absolute;top:50%;transform:translateY(-50%);right:20px;margin-top:-2px}#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header+.ot-arw-cntr .ot-arw{width:15px;height:20px;margin-left:5px;color:dimgray}#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header{float:none;color:#2e3644;margin:0;display:inline-block;height:auto;word-wrap:break-word;min-height:inherit}#onetrust-pc-sdk .ot-accordion-layout .ot-vlst-cntr,#onetrust-pc-sdk .ot-accordion-layout .ot-hlst-cntr{padding-left:20px;width:calc(100% - 20px);display:inline-block;margin-top:0;padding-bottom:2px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-hdr{position:relative;min-height:25px}#onetrust-pc-sdk .ot-accordion-layout h4~.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout h4~.ot-always-active{position:absolute;top:50%;transform:translateY(-50%);right:20px}#onetrust-pc-sdk .ot-accordion-layout h4~.ot-tgl+.ot-tgl{right:95px}#onetrust-pc-sdk .ot-accordion-layout .category-vendors-list-handler,#onetrust-pc-sdk .ot-accordion-layout .category-vendors-list-handler+a{margin-top:5px}#onetrust-pc-sdk #ot-pc-lst{display:flex;flex-direction:column}#onetrust-pc-sdk #ot-lst-cnt{margin-top:1rem;max-height:calc(100% - 100px)}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info-cntr{border:1px solid #d8d8d8;padding:.75rem 2rem;padding-bottom:0;width:auto;margin-top:.5rem}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info{margin-bottom:1rem;padding-left:.75rem;padding-right:.75rem;display:flex;flex-direction:column}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info>div{display:flex}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info[data-vnd-info-key*=DPOEmail]{border-top:1px solid #d8d8d8;padding-top:1rem}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info[data-vnd-info-key*=DPOLink]{border-bottom:1px solid #d8d8d8;padding-bottom:1rem}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info .ot-vnd-lbl{font-weight:bold;font-size:.85em;margin-bottom:.5rem}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info .ot-vnd-cnt{margin-left:.5rem;font-weight:500;font-size:.85rem}#onetrust-pc-sdk .ot-vs-list,#onetrust-pc-sdk .ot-vnd-serv{width:auto;padding:1rem 1.25rem;padding-bottom:0}#onetrust-pc-sdk .ot-vs-list .ot-vnd-serv-hdr-cntr,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-serv-hdr-cntr{padding-bottom:.75rem;border-bottom:1px solid #d8d8d8}#onetrust-pc-sdk .ot-vs-list .ot-vnd-serv-hdr-cntr .ot-vnd-serv-hdr,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-serv-hdr-cntr .ot-vnd-serv-hdr{font-weight:600;font-size:.95em;line-height:2;margin-left:.5rem}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item{border:none;margin:0;padding:0}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item button,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item button{outline:none;border-bottom:1px solid #d8d8d8}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item button[aria-expanded=true],#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item button[aria-expanded=true]{border-bottom:none}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item:first-child,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item:first-child{margin-top:.25rem;border-top:unset}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item:last-child,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item:last-child{margin-bottom:.5rem}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item:last-child button,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item:last-child button{border-bottom:none}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info-cntr,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info-cntr{border:1px solid #d8d8d8;padding:.75rem 1.75rem;padding-bottom:0;width:auto;margin-top:.5rem}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info{margin-bottom:1rem;padding-left:.75rem;padding-right:.75rem;display:flex;flex-direction:column}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info>div,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info>div{display:flex}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info[data-vnd-info-key*=DPOEmail],#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info[data-vnd-info-key*=DPOEmail]{border-top:1px solid #d8d8d8;padding-top:1rem}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info[data-vnd-info-key*=DPOLink],#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info[data-vnd-info-key*=DPOLink]{border-bottom:1px solid #d8d8d8;padding-bottom:1rem}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info .ot-vnd-lbl,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info .ot-vnd-lbl{font-weight:bold;font-size:.85em;margin-bottom:.5rem}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info .ot-vnd-cnt,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info .ot-vnd-cnt{margin-left:.5rem;font-weight:500;font-size:.85rem}#onetrust-pc-sdk .ot-vs-list.ot-vnd-subgrp-cnt,#onetrust-pc-sdk .ot-vnd-serv.ot-vnd-subgrp-cnt{padding-left:40px}#onetrust-pc-sdk .ot-vs-list.ot-vnd-subgrp-cnt .ot-vnd-serv-hdr-cntr .ot-vnd-serv-hdr,#onetrust-pc-sdk .ot-vnd-serv.ot-vnd-subgrp-cnt .ot-vnd-serv-hdr-cntr .ot-vnd-serv-hdr{font-size:.8em}#onetrust-pc-sdk .ot-vs-list.ot-vnd-subgrp-cnt .ot-cat-header,#onetrust-pc-sdk .ot-vnd-serv.ot-vnd-subgrp-cnt .ot-cat-header{font-size:.8em}#onetrust-pc-sdk .ot-subgrp-cntr .ot-vnd-serv{margin-bottom:1rem;padding:1rem .95rem}#onetrust-pc-sdk .ot-subgrp-cntr .ot-vnd-serv .ot-vnd-serv-hdr-cntr{padding-bottom:.75rem;border-bottom:1px solid #d8d8d8}#onetrust-pc-sdk .ot-subgrp-cntr .ot-vnd-serv .ot-vnd-serv-hdr-cntr .ot-vnd-serv-hdr{font-weight:700;font-size:.8em;line-height:20px;margin-left:.82rem}#onetrust-pc-sdk .ot-subgrp-cntr .ot-cat-header{font-weight:700;font-size:.8em;line-height:20px}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-vnd-serv .ot-vnd-lst-cont .ot-accordion-layout .ot-acc-hdr div.ot-chkbox{margin-left:.82rem}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr{padding:.7rem 0;margin:0;display:flex;width:100%;align-items:center;justify-content:space-between}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr div:first-child,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr div:first-child,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr div:first-child,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr div:first-child,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr div:first-child,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr div:first-child,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr div:first-child{margin-left:.5rem}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr div:last-child,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr div:last-child,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr div:last-child,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr div:last-child,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr div:last-child,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr div:last-child,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr div:last-child{margin-right:.5rem;margin-left:.5rem}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-always-active,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-always-active,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-always-active,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-always-active,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-always-active,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-always-active,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-always-active{position:relative;right:unset;top:unset;transform:unset}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-plus-minus,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-plus-minus,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-plus-minus,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-plus-minus,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-plus-minus,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-plus-minus,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-plus-minus{top:0}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-arw-cntr,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-arw-cntr,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-arw-cntr,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-arw-cntr,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-arw-cntr,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-arw-cntr,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-arw-cntr{float:none;top:unset;right:unset;transform:unset;margin-top:-2px;position:relative}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-cat-header,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-cat-header,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-cat-header,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-cat-header,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-cat-header,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-cat-header,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-cat-header{flex:1;margin:0 .5rem}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-tgl,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-tgl,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-tgl,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-tgl,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-tgl,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-tgl,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-tgl{position:relative;transform:none;right:0;top:0;float:none}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-chkbox,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-chkbox,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-chkbox,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-chkbox,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-chkbox{position:relative;margin:0 .5rem}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-chkbox label,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-chkbox label,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-chkbox label,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox label,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-chkbox label,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox label,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-chkbox label{padding:0}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-chkbox label::before,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-chkbox label::before,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-chkbox label::before,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox label::before,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-chkbox label::before,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox label::before,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-chkbox label::before{position:relative}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-chkbox input,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-chkbox input,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-chkbox input,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox input,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-chkbox input,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox input,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-chkbox input{position:absolute;cursor:pointer;width:100%;height:100%;opacity:0;margin:0;top:0;left:0;z-index:1}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp .ot-acc-hdr h5.ot-cat-header,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp .ot-acc-hdr h4.ot-cat-header,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp .ot-acc-hdr p[aria-level="5"].ot-cat-header,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp .ot-acc-hdr p[aria-level="4"].ot-cat-header{margin:0}#onetrust-pc-sdk .ot-vs-config .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp h5,#onetrust-pc-sdk .ot-vs-config .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp p[aria-level="5"]{top:0;line-height:20px}#onetrust-pc-sdk .ot-vs-list{display:flex;flex-direction:column;padding:0;margin:.5rem 4px}#onetrust-pc-sdk .ot-vs-selc-all{display:flex;padding:0;float:unset;align-items:center;justify-content:flex-start}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf{justify-content:flex-end}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf.ot-caret-conf .ot-sel-all-chkbox{margin-right:48px}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf .ot-sel-all-chkbox{margin:0;padding:0;margin-right:14px;justify-content:flex-end}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf #ot-selall-vencntr.ot-chkbox,#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf #ot-selall-vencntr.ot-tgl{display:inline-block;right:unset;width:auto;height:auto;float:none}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf #ot-selall-vencntr label{width:45px;height:25px}#onetrust-pc-sdk .ot-vs-selc-all .ot-sel-all-chkbox{margin-right:11px;margin-left:.75rem;display:flex;align-items:center}#onetrust-pc-sdk .ot-vs-selc-all .sel-all-hdr{margin:0 1.25rem;font-size:.812em;line-height:normal;text-align:center;word-break:break-word;word-wrap:break-word}#onetrust-pc-sdk .ot-vnd-list-cnt #ot-selall-vencntr.ot-chkbox{float:unset;right:0}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf.ot-caret-conf .ot-sel-all-chkbox{margin-right:.5rem}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf .ot-sel-all-chkbox{margin-right:15px}#onetrust-pc-sdk #ot-sel-blk .ot-chkbox{right:unset}#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-tgl{padding:0}#onetrust-pc-sdk .ot-vs-list{margin-top:.5rem}#onetrust-pc-sdk .ot-pgph-link{font-size:.813em;margin-top:5px;position:relative}#onetrust-pc-sdk .ot-pgph-link.ot-pgph-link-subgroup{margin-bottom:1rem;clear:both;display:block}#onetrust-pc-sdk .ot-pgph-contr{margin:0 2.5rem}#onetrust-pc-sdk .ot-pgph-title{font-size:1.18rem;margin-bottom:2rem}#onetrust-pc-sdk .ot-pgph-desc{font-size:1rem;font-weight:400;margin-bottom:2rem;line-height:1.5rem}#onetrust-pc-sdk .ot-pgph-desc:not(:last-child):after{content:"";width:96%;display:block;margin:0 auto;padding-bottom:2rem;border-bottom:1px solid #e9e9e9}@media(min-width: 768px){#onetrust-pc-sdk.ot-tgl-with-label .ot-label-status{display:inline}#onetrust-pc-sdk.ot-tgl-with-label #ot-pc-lst .ot-label-status{display:none}}@media only screen and (max-width: 600px){#onetrust-pc-sdk{max-width:100%;min-width:100%}#onetrust-pc-sdk .ot-ftr-stacked button{width:100%}#onetrust-pc-sdk #ot-lst-cnt,#onetrust-pc-sdk #ot-pc-hdr{margin-top:0;padding:0 5px 0 10px;width:calc(100% - 25px)}#onetrust-pc-sdk .ot-btn-container.ot-button-order-container{height:100%;display:flex;flex-direction:column;justify-content:space-around}#onetrust-pc-sdk .ot-btn-container.ot-button-order-container .ot-pc-refuse-all-handler,#onetrust-pc-sdk .ot-btn-container.ot-button-order-container .save-preference-btn-handler,#onetrust-pc-sdk .ot-btn-container.ot-button-order-container #accept-recommended-btn-handler{width:100%;float:none !important;margin:0 !important}}@media only screen and (max-width: 425px){#onetrust-pc-sdk.otPcPanel{left:0;min-width:100%;height:100%;top:0;border-radius:0}#onetrust-pc-sdk #ot-host-lst .ot-chkbox{margin-left:0}#onetrust-pc-sdk #ot-pc-content{margin:0 10px 0 20px}#onetrust-pc-sdk p{font-size:.7em}#onetrust-pc-sdk .ot-tgl-cntr{width:auto}#onetrust-pc-sdk #vendor-search-handler{font-size:1em}#onetrust-pc-sdk #ot-lst-cnt{height:calc(100% - 95px)}#onetrust-pc-sdk .ot-switch+p{max-width:80%}#onetrust-pc-sdk button{letter-spacing:.01em}#onetrust-pc-sdk .save-preference-btn-handler{margin-top:0}#onetrust-pc-sdk .ot-search-cntr{width:75%}}@media only screen and (max-width: 320px){#onetrust-pc-sdk #ot-fltr-cnt{margin-left:15px}}@media only screen and (max-width: 896px)and (max-height: 425px)and (orientation: landscape){#onetrust-pc-sdk{left:0;top:0;min-width:100%;height:100%;border-radius:0}#onetrust-pc-sdk .ot-pc-header{height:auto;min-height:20px}#onetrust-pc-sdk .ot-pc-header .ot-pc-logo{max-height:30px}#onetrust-pc-sdk .ot-pc-footer{max-height:90px;height:100%}#onetrust-pc-sdk .ot-pc-footer .ot-btn-container{overflow-y:auto;overflow-x:hidden;max-height:calc(100% - 30px)}#onetrust-pc-sdk #ot-pc-content,#onetrust-pc-sdk #ot-pc-lst{bottom:auto;height:auto !important}#onetrust-pc-sdk.ot-ftr-stacked #ot-pc-content{bottom:auto}#onetrust-pc-sdk button{letter-spacing:.02em}#onetrust-pc-sdk #ot-anchor{left:initial;right:50px}#onetrust-pc-sdk #ot-lst-title{margin-top:12px}#onetrust-pc-sdk #ot-lst-title *{font-size:inherit}#onetrust-pc-sdk #ot-pc-hdr input{margin-right:0;padding-right:45px}#onetrust-pc-sdk .ot-switch+p{max-width:85%}#onetrust-pc-sdk #ot-lst-cnt{max-height:none;overflow:initial}#onetrust-pc-sdk #ot-lst-cnt.no-results{height:auto}#onetrust-pc-sdk input{font-size:1em !important}#onetrust-pc-sdk p{font-size:.6em}#onetrust-pc-sdk #ot-pc-lst{overflow:auto}#onetrust-pc-sdk #ot-fltr-modal{width:100%;height:100%;max-height:none;top:0}#onetrust-pc-sdk #ot-sel-blk{position:static}#onetrust-pc-sdk #ot-fltr-cnt{height:250px;width:100%}#onetrust-pc-sdk.ot-shw-fltr #ot-anchor{display:none !important}#onetrust-pc-sdk.ot-shw-fltr #ot-pc-lst{height:100% !important;overflow:hidden;top:0px}#onetrust-pc-sdk.ot-shw-fltr #ot-fltr-cnt{margin:0;height:100%;padding:10px;top:0;width:calc(100% - 20px);position:absolute;right:0;left:0;max-width:none}#onetrust-pc-sdk.ot-shw-fltr .ot-fltr-scrlcnt{max-height:calc(100% - 65px)}}@media screen and (max-height: 450px){#onetrust-pc-sdk .ot-pc-header{max-height:15vh;overflow:hidden}#onetrust-pc-sdk .ot-pc-footer{max-height:min(var(--ot-footer-space),30vh) !important;overflow-y:auto;scrollbar-gutter:stable;box-sizing:border-box}#onetrust-pc-sdk .ot-pc-footer .ot-btn-container{overflow-y:visible !important;max-height:none !important}#onetrust-pc-sdk #ot-pc-content{flex:1 1 auto;min-height:20vh}} | |
| 221 | + #onetrust-consent-sdk #onetrust-pc-sdk, | |
| 222 | + #onetrust-consent-sdk #ot-search-cntr, | |
| 223 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-switch.ot-toggle, | |
| 224 | + #onetrust-consent-sdk #onetrust-pc-sdk ot-grp-hdr1 .checkbox, | |
| 225 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-title:after | |
| 226 | + ,#onetrust-consent-sdk #onetrust-pc-sdk #ot-sel-blk, | |
| 227 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-fltr-cnt, | |
| 228 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-anchor { | |
| 229 | + background-color: #FFFFFF; | |
| 230 | + } | |
| 231 | + | |
| 232 | + #onetrust-consent-sdk #onetrust-pc-sdk h3, | |
| 233 | + #onetrust-consent-sdk #onetrust-pc-sdk h4, | |
| 234 | + #onetrust-consent-sdk #onetrust-pc-sdk h5, | |
| 235 | + #onetrust-consent-sdk #onetrust-pc-sdk h6, | |
| 236 | + #onetrust-consent-sdk #onetrust-pc-sdk p, | |
| 237 | + #onetrust-consent-sdk #onetrust-pc-sdk span[id^="ot-header-id"], | |
| 238 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pvcy-txt, | |
| 239 | + #onetrust-consent-sdk #onetrust-pc-sdk #privacy-text, | |
| 240 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-ven-lst .ot-ven-opts p, | |
| 241 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-desc, | |
| 242 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-title, | |
| 243 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-title-mobile, | |
| 244 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-li-title, | |
| 245 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-sel-all-hdr span, | |
| 246 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-host-lst .ot-host-info, | |
| 247 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-fltr-modal #modal-header, | |
| 248 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-checkbox label span, | |
| 249 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst #ot-sel-blk p, | |
| 250 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst #ot-lst-title h3, | |
| 251 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst #ot-lst-title p[aria-level="3"], | |
| 252 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst .back-btn-handler p, | |
| 253 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst .ot-ven-name, | |
| 254 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst #ot-ven-lst .consent-category, | |
| 255 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-leg-btn-container .ot-inactive-leg-btn, | |
| 256 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-label-status, | |
| 257 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-chkbox label span, | |
| 258 | + #onetrust-consent-sdk #onetrust-pc-sdk #clear-filters-handler, | |
| 259 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-optout-signal, | |
| 260 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-title, | |
| 261 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-desc | |
| 262 | + { | |
| 263 | + color: #000000; | |
| 264 | + } | |
| 265 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-cancel | |
| 266 | + { | |
| 267 | + color: #000000 !important; | |
| 268 | + } | |
| 269 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-close-btn, | |
| 270 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-submit | |
| 271 | + { | |
| 272 | + color: #FFFFFF !important; | |
| 273 | + } | |
| 274 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-cancel | |
| 275 | + { | |
| 276 | + border-color: #000000 !important; | |
| 277 | + } | |
| 278 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-email | |
| 279 | + { | |
| 280 | + border-color: #000000 !important; | |
| 281 | + background-color: rgb(255, 255, 255); | |
| 282 | + } | |
| 283 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-email:focus | |
| 284 | + { | |
| 285 | + border-color: #000000; | |
| 286 | + } | |
| 287 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-email::placeholder | |
| 288 | + { | |
| 289 | + color: #000000; | |
| 290 | + } | |
| 291 | + #onetrust-consent-sdk #onetrust-pc-sdk .privacy-notice-link, | |
| 292 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-pgph-link, | |
| 293 | + #onetrust-consent-sdk #onetrust-pc-sdk .category-vendors-list-handler, | |
| 294 | + #onetrust-consent-sdk #onetrust-pc-sdk .category-vendors-list-handler + a, | |
| 295 | + #onetrust-consent-sdk #onetrust-pc-sdk .category-host-list-handler, | |
| 296 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-ven-link, | |
| 297 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-ven-legclaim-link, | |
| 298 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-host-lst .ot-host-name a, | |
| 299 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-host-lst .ot-acc-hdr .ot-host-expand, | |
| 300 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-host-lst .ot-host-info a, | |
| 301 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-content #ot-pc-desc .ot-link-btn, | |
| 302 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info a, | |
| 303 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info a, | |
| 304 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-desc a | |
| 305 | + { | |
| 306 | + color: #000000; | |
| 307 | + } | |
| 308 | + #onetrust-consent-sdk #onetrust-pc-sdk .category-vendors-list-handler:hover { text-decoration: underline;} | |
| 309 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-acc-grpcntr.ot-acc-txt, | |
| 310 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-acc-txt .ot-subgrp-tgl .ot-switch.ot-toggle | |
| 311 | + { | |
| 312 | + background-color: #F8F8F8; | |
| 313 | + } | |
| 314 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-host-lst .ot-host-info, | |
| 315 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-acc-txt .ot-ven-dets | |
| 316 | + { | |
| 317 | + background-color: #F8F8F8; | |
| 318 | + } | |
| 319 | + #onetrust-consent-sdk #onetrust-pc-sdk | |
| 320 | + button:not(#clear-filters-handler):not(.ot-close-icon):not(#filter-btn-handler):not(.ot-remove-objection-handler):not(.ot-obj-leg-btn-handler):not([aria-expanded]):not(.ot-link-btn):not(.ot-go-modal-cancel):not(.ot-go-modal-close), | |
| 321 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-leg-btn-container .ot-active-leg-btn { | |
| 322 | + background-color: #00467f;border-color: #00467f; | |
| 323 | + color: #FFFFFF; | |
| 324 | + } | |
| 325 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-active-menu { | |
| 326 | + border-color: #00467f; | |
| 327 | + } | |
| 328 | + | |
| 329 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-leg-btn-container .ot-remove-objection-handler{ | |
| 330 | + background-color: transparent; | |
| 331 | + border: 1px solid transparent; | |
| 332 | + } | |
| 333 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-leg-btn-container .ot-inactive-leg-btn { | |
| 334 | + background-color: #FFFFFF; | |
| 335 | + color: #4D4D4D; border-color: #4D4D4D; | |
| 336 | + }#onetrust-consent-sdk #onetrust-pc-sdk .ot-tgl input:checked+.ot-switch .ot-switch-nob { | |
| 337 | + background-color: #468254; | |
| 338 | + } | |
| 339 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-switch-nob { | |
| 340 | + background-color: #767676; | |
| 341 | + } | |
| 342 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-tgl input:focus + .ot-switch, .ot-switch .ot-switch-nob, .ot-switch .ot-switch-nob:before, | |
| 343 | + #onetrust-pc-sdk .ot-checkbox input[type="checkbox"]:focus + label::before, | |
| 344 | + #onetrust-pc-sdk .ot-chkbox input[type="checkbox"]:focus + label::before { | |
| 345 | + outline-color: #000000; | |
| 346 | + outline-width: 1px; | |
| 347 | + outline-offset: 1px; | |
| 348 | + } | |
| 349 | + #onetrust-pc-sdk .ot-host-item > button:focus, #onetrust-pc-sdk .ot-ven-item > button:focus { | |
| 350 | + border: 1px solid #000000; | |
| 351 | + } | |
| 352 | + #onetrust-consent-sdk #onetrust-pc-sdk *:focus, | |
| 353 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-vlst-cntr > a:focus { | |
| 354 | + outline: 1px solid #000000; | |
| 355 | + outline-offset: 1px; | |
| 356 | + }#ot-sdk-btn-floating .ot-floating-button__front {background-color: #00467f !important;}.ot-sdk-cookie-policy{font-family:inherit;font-size:16px}.ot-sdk-cookie-policy.otRelFont{font-size:1rem}.ot-sdk-cookie-policy h3,.ot-sdk-cookie-policy h4,.ot-sdk-cookie-policy h6,.ot-sdk-cookie-policy p,.ot-sdk-cookie-policy li,.ot-sdk-cookie-policy a,.ot-sdk-cookie-policy th,.ot-sdk-cookie-policy #cookie-policy-description,.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group,.ot-sdk-cookie-policy #cookie-policy-title{color:dimgray}.ot-sdk-cookie-policy #cookie-policy-description{margin-bottom:1em}.ot-sdk-cookie-policy h4{font-size:1.2em}.ot-sdk-cookie-policy h6{font-size:1em;margin-top:2em}.ot-sdk-cookie-policy th{min-width:75px}.ot-sdk-cookie-policy a,.ot-sdk-cookie-policy a:hover{background:#fff}.ot-sdk-cookie-policy thead{background-color:#f6f6f4;font-weight:bold}.ot-sdk-cookie-policy .ot-mobile-border{display:none}.ot-sdk-cookie-policy section{margin-bottom:2em}.ot-sdk-cookie-policy table{border-collapse:inherit}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy{font-family:inherit;font-size:1rem}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h3,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h4,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h6,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy p,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy li,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy th,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-description,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-title{color:dimgray}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-description{margin-bottom:1em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-subgroup{margin-left:1.5em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-description,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group-desc,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-table-header,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy span,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td{font-size:.9em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td span,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td a{font-size:inherit}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group{font-size:1em;margin-bottom:.6em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-title{margin-bottom:1.2em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy>section{margin-bottom:1em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy th{min-width:75px}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a:hover{background:#fff}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy thead{background-color:#f6f6f4;font-weight:bold}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-mobile-border{display:none}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy section{margin-bottom:2em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-subgroup ul li{list-style:disc;margin-left:1.5em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-subgroup ul li h4{display:inline-block}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table{border-collapse:inherit;margin:auto;border:1px solid #d7d7d7;border-radius:5px;border-spacing:initial;width:100%;overflow:hidden}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table th,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table td{border-bottom:1px solid #d7d7d7;border-right:1px solid #d7d7d7}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr:last-child td{border-bottom:0px}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr th:last-child,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr td:last-child{border-right:0px}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table .ot-host,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table .ot-cookies-type{width:25%}.ot-sdk-cookie-policy[dir=rtl]{text-align:left}#ot-sdk-cookie-policy h3{font-size:1.5em}@media only screen and (max-width: 530px){.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) table,.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) thead,.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tbody,.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) th,.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) td,.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tr{display:block}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) thead tr{position:absolute;top:-9999px;left:-9999px}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tr{margin:0 0 1em 0}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tr:nth-child(odd),.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tr:nth-child(odd) a{background:#f6f6f4}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) td{border:none;border-bottom:1px solid #eee;position:relative;padding-left:50%}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) td:before{position:absolute;height:100%;left:6px;width:40%;padding-right:10px}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) .ot-mobile-border{display:inline-block;background-color:#e4e4e4;position:absolute;height:100%;top:0;left:45%;width:2px}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) td:before{content:attr(data-label);font-weight:bold}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) li{word-break:break-word;word-wrap:break-word}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table{overflow:hidden}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table td{border:none;border-bottom:1px solid #d7d7d7}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy thead,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy tbody,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy th,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy tr{display:block}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table .ot-host,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table .ot-cookies-type{width:auto}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy tr{margin:0 0 1em 0}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td:before{height:100%;width:40%;padding-right:10px}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td:before{content:attr(data-label);font-weight:bold}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy li{word-break:break-word;word-wrap:break-word}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy thead tr{position:absolute;top:-9999px;left:-9999px;z-index:-9999}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr:last-child td{border-bottom:1px solid #d7d7d7;border-right:0px}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr:last-child td:last-child{border-bottom:0px}} | |
| 357 | + | |
| 358 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h5, | |
| 359 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h6, | |
| 360 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy li, | |
| 361 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy p, | |
| 362 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a, | |
| 363 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy span, | |
| 364 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td, | |
| 365 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-description { | |
| 366 | + color: #696969; | |
| 367 | + } | |
| 368 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy th { | |
| 369 | + color: #696969; | |
| 370 | + } | |
| 371 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group { | |
| 372 | + color: #696969; | |
| 373 | + } | |
| 374 | + | |
| 375 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-title { | |
| 376 | + color: #696969; | |
| 377 | + } | |
| 378 | + | |
| 379 | + | |
| 380 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table th { | |
| 381 | + background-color: #F8F8F8; | |
| 382 | + } | |
| 383 | + | |
| 384 | + .ot-floating-button__front{background-image:url('https://cdn.cookielaw.org/logos/4e85079a-4e3a-4ba5-a0ac-b85ac51e9d47/8af65b67-6f9c-4e8b-ba65-66a5ba202e28/07fc66da-1dcf-4ee3-bcc3-3d076d98b1b9/ot_persistent_cookie_transparent.png')} | |
| 385 | + @keyframes slide-down-custom { | |
| 386 | + 0% { | |
| 387 | + bottom: 993px !important; | |
| 388 | + } | |
| 389 | + 100% { | |
| 390 | + bottom: 0px; | |
| 391 | + } | |
| 392 | + } | |
| 393 | + @-webkit-keyframes slide-down-custom { | |
| 394 | + 0% { | |
| 395 | + bottom: 993px !important; | |
| 396 | + } | |
| 397 | + 100% { | |
| 398 | + bottom: 0px; | |
| 399 | + } | |
| 400 | + } | |
| 401 | + @-moz-keyframes slide-down-custom { | |
| 402 | + 0% { | |
| 403 | + bottom: 993px !important; | |
| 404 | + } | |
| 405 | + 100% { | |
| 406 | + bottom: 0px; | |
| 407 | + } | |
| 408 | + } | |
| 409 | + #ot-sdk-btn-floating.ot-floating-button{position:fixed;bottom:10px;opacity:0;width:50px;height:50px;line-height:15px;cursor:pointer;background-color:rgba(0,0,0,0);transition:all 300ms ease;z-index:2147483646;animation:otFloatingBtnIntro 800ms ease 0ms 1 forwards}#ot-sdk-btn-floating.ot-floating-button.ot-hide{display:none}#ot-sdk-btn-floating.ot-floating-button::before,#ot-sdk-btn-floating.ot-floating-button::after{text-transform:none;line-height:1;user-select:none;pointer-events:none;position:absolute;transform:scale(0);opacity:0;transition:all 300ms ease;display:block;height:auto}#ot-sdk-btn-floating.ot-floating-button::before{content:"";border:5px solid rgba(0,0,0,0);z-index:1001;top:50%;border-left-width:0;border-right-color:#333;right:calc(0em - 5px);transform:translate(10px, -50%)}#ot-sdk-btn-floating.ot-floating-button::after{content:attr(data-title);position:absolute;text-align:center;top:50%;left:calc(100% + 5px);transform:translate(10px, -50%);font-size:.75rem;min-width:3em;max-width:21em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding:5px;border-radius:.3ch;box-shadow:0 1em 2em -0.5em rgba(0,0,0,.35);background:#333;color:#fff;z-index:2147483645}#ot-sdk-btn-floating.ot-floating-button:hover::before,#ot-sdk-btn-floating.ot-floating-button:hover::after{opacity:1}#ot-sdk-btn-floating.ot-floating-button:hover::before{transform:translate(0.5em, -50%) scale(1)}#ot-sdk-btn-floating.ot-floating-button:hover::after{transform:translate(0.5em, -50%) scale(1)}#ot-sdk-btn-floating.ot-floating-button.ot-pc-open .ot-floating-button__front{transform:rotateY(-180deg)}#ot-sdk-btn-floating.ot-floating-button.ot-pc-open .ot-floating-button__back{transform:rotateY(0)}#ot-sdk-btn-floating .ot-floating-button__front,#ot-sdk-btn-floating .ot-floating-button__back{position:absolute;width:100%;height:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:#6aaae4;border-radius:10px;box-shadow:0 4px 8px 0 rgba(0,0,0,.2);transition:transform .6s;transform-style:preserve-3d}#ot-sdk-btn-floating .ot-floating-button__front{background-color:#6aaae4;transform:rotateY(0)}#ot-sdk-btn-floating .ot-floating-button__front.custom-persistent-icon{background-position:center center;background-repeat:no-repeat;background-size:100%;border-radius:100px}#ot-sdk-btn-floating .ot-floating-button__front svg:not(.ot-source-sprite){width:30px;height:37px}#ot-sdk-btn-floating .ot-floating-button__front svg.ot-source-sprite{width:50px;height:50px}#ot-sdk-btn-floating .ot-floating-button__back{background-color:#fff;transform:rotateY(-180deg)}#ot-sdk-btn-floating .ot-floating-button__back.custom-persistent-icon{background-position:center center;background-repeat:no-repeat;background-size:100%;border-radius:100px}#ot-sdk-btn-floating .ot-floating-button__back svg{width:24px;height:24px}#ot-sdk-btn-floating.ot-floating-button button{padding:0;background-color:rgba(0,0,0,0);border:0;width:100%;height:100%;cursor:pointer}#ot-sdk-btn-floating.ot-floating-button button>*{pointer-events:none}#ot-sdk-btn-floating .ot-optout-ntfy{position:absolute;top:50%;left:calc(100% + 10px);transform:translateY(-50%) scale(0);opacity:0;display:flex;align-items:center;gap:8px;font-size:.85rem;white-space:nowrap;padding:10px 16px;border-radius:6px;border:1px solid #d4d4d4;background:#fff;color:#333;z-index:2147483645;pointer-events:none;transition:all 300ms ease}#ot-sdk-btn-floating .ot-optout-ntfy.ot-hide{display:none}#ot-sdk-btn-floating .ot-optout-ntfy.ot-ntfy-show{opacity:1;transform:translateY(-50%) scale(1)}#ot-sdk-btn-floating .ot-optout-ntfy .ot-optout-ntfy-icon{display:inline-block;width:12px;height:12px;min-width:12px;background-color:#3d8539;border-radius:2px}#ot-sdk-btn-floating .ot-optout-ntfy .ot-optout-ntfy-icon.ot-optout-not-honored{display:inline-block;width:12px;height:12px;background-color:rgba(0,0,0,0);border:1px solid #d4d4d4;border-left:2px solid #3d8539;border-radius:0}#ot-sdk-btn-floating .ot-optout-ntfy .ot-optout-ntfy-txt{font-weight:400;line-height:1.4}#ot-sdk-btn-floating.ot-floating-button.ot-ntfy-active::before,#ot-sdk-btn-floating.ot-floating-button.ot-ntfy-active::after{display:none}@keyframes otFloatingBtnIntro{0%{opacity:0;left:-75px}100%{opacity:1;left:1%}}@keyframes otFloatingBtnImageIntro{0%{opacity:0;transform:scale(0) rotate(-270deg)}100%{opacity:100%;transform:scale(0.95) rotate(0deg)}}</style><script src="https://cdngeneralmvc.rentcafe.com/common/js/smartclasses/accordion.134322934460000000.js"></script><link href="https://cdngeneralmvc.rentcafe.com/css/scss/422351/brigil_prop1/smartclasses/accordion.134322934460000000.css" rel="stylesheet"><script src="https://cdngeneralmvc.rentcafe.com/common/js/smartclasses/scrollto.134322934460000000.js"></script><script src="https://cdngeneralmvc.rentcafe.com/common/js/smartclasses/slider.134322934460000000.js"></script><link href="https://cdngeneralmvc.rentcafe.com/css/scss/422351/brigil_prop1/smartclasses/slider.134322934460000000.css" rel="stylesheet"></head> | |
| 410 | + | |
| 411 | +<body id="innerpage"> | |
| 412 | + | |
| 413 | + | |
| 414 | +<!-- Google Tag Manager (noscript) --> | |
| 415 | +<noscript> | |
| 416 | + <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TL4S4ZL" height="0" width="0" style="display:none;visibility:hidden" customlabelreplaced=""> | |
| 417 | + </iframe> | |
| 418 | +</noscript> | |
| 419 | +<!-- End Google Tag Manager (noscript) --> | |
| 420 | + | |
| 421 | + | |
| 422 | + | |
| 423 | + | |
| 424 | + | |
| 425 | + | |
| 426 | + | |
| 427 | + <style>#acsWidget{position:fixed;z-index:1038;bottom:15px;padding:0;margin:0;background:transparent;border:none;left:15px}#acsWidget.widget-right{left:auto;right:11px}</style> | |
| 428 | + | |
| 429 | + | |
| 430 | + <!-- Accessibility Button --> | |
| 431 | + <div id="acsWidget" role="complementary" class="widget-left" style="bottom:60px;background-color:transparent!important;" customlabelreplaced=""> | |
| 432 | + <button id="acsBtn" data-acs-applied="" type="button" class="accessibility-button btn mt-3 m-0 p-0 border-0 " data-toggle="modal" data-target="#acsModal" style="background-color:transparent!important;background-image:none;box-shadow:none;" aria-label="Open Accessibility Options" customlabelreplaced=""> | |
| 433 | + <svg class="rounded-circle" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="56px" height="56px" viewBox="0 0 64 64"> | |
| 434 | + <rect x="4" y="4" width="56" height="56" rx="100" ry="100" fill="#000000"></rect> | |
| 435 | + <g transform="translate(12.5 12.5) scale(0.6)"> | |
| 436 | + <circle data-color="color-2" cx="32" cy="8" r="6" fill="#ffffff"></circle> | |
| 437 | + <path d="M55.5,16H8.5a2.5,2.5,0,0,0,0,5L24,22V59a3,3,0,0,0,6,0l1-21h2l1,21a3,3,0,0,0,6,0V22l15.5-1a2.5,2.5,0,0,0,0-5Z" fill="#ffffff"></path> | |
| 438 | + </g> | |
| 439 | + </svg> | |
| 440 | + <span id="acsCheck" class="nu nu-check text-xs rounded-circle d-none" style="background-color: #000000 !important; box-shadow: 0 0 0px 4px #000000 !important" customlabelreplaced=""></span> | |
| 441 | + </button> | |
| 442 | + </div> | |
| 443 | + <style> | |
| 444 | + /* Only apply hover effect to stand-alone button (.accessibility-button), not help widget */ | |
| 445 | + #acsBtn.accessibility-button svg:hover { | |
| 446 | + box-shadow: 0 0 0px 3px #000000 !important; | |
| 447 | + } | |
| 448 | + #acsModal .modal-header, .closeModal .modal-header { | |
| 449 | + background-color: #000000 !important; | |
| 450 | + } | |
| 451 | + #acsModal .modal-footer.customColor, .closeModal .modal-footer.customColor { | |
| 452 | + background-color: #000000 !important; | |
| 453 | + } | |
| 454 | + </style> | |
| 455 | + | |
| 456 | + | |
| 457 | + <style>a#skip-nav{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}a#skip-nav:focus,a#skip-nav:active{position:fixed;bottom:10px;left:10px;width:auto;height:auto;text-decoration:underline;background:white;padding:5px 20px 10px;z-index:100000}</style> | |
| 458 | + | |
| 459 | + | |
| 460 | +<a id="skip-nav" href="#main-content" customlabelreplaced="">Skip to main content</a> | |
| 461 | + | |
| 462 | + | |
| 463 | + | |
| 464 | + | |
| 465 | + | |
| 466 | + | |
| 467 | + | |
| 468 | + | |
| 469 | + | |
| 470 | + | |
| 471 | + | |
| 472 | + | |
| 473 | + | |
| 474 | + <nav id="ysi-mobile-navbar" aria-label="main navigation" class="ysi-navbar-mobile navbar w-100 d-xl-none navbar-light bg-white" style="width: 100%; " aria-hidden="true"> | |
| 475 | + <button id="nav-btn" class="navbar-toggler collapsed " style=" " type="button" data-toggle="collapse" data-target="#navbarMobileCollapse" aria-controls="navbarMobileCollapse" aria-expanded="false" aria-label="Toggle navigation" aria-haspopup="true" customlabelreplaced=""> | |
| 476 | + <svg class="ysi-svg-icon ysi-svg-icon-bars" width="1em" height="1em" viewBox="0 0 256 256"><path d="m 24,66 h 208 c 4,0 8,-4 8,-8 V 38 c 0,-4 -4,-8 -8,-8 H 24 c -4,0 -8,4 -8,8 v 20 c 0,4 4,8 8,8 z m 0,80 h 208 c 4,0 8,-4 8,-8 v -20 c 0,-4 -4,-8 -8,-8 H 24 c -4,0 -8,4 -8,8 v 20 c 0,4 4,8 8,8 z m 0,80 h 208 c 4,0 8,-4 8,-8 v -20 c 0,-4 -4,-8 -8,-8 H 24 c -4,0 -8,4 -8,8 v 20 c 0,4 4,8 8,8 z"></path></svg> | |
| 477 | + <svg class="ysi-svg-icon ysi-svg-icon-times" width="1em" height="1em" viewBox="0 0 256 256"><rect transform="rotate(45, 128, 128)" width="244" height="44.8" x="6" y="108" rx="12" ry="12"></rect><rect transform="rotate(-45, 128, 128)" width="244" height="44.8" x="6" y="108" rx="12" ry="12"></rect></svg> | |
| 478 | + </button> | |
| 479 | + <style>#mobile-logo221 img{box-sizing:content-box}@media (min-width: 992px){#mobile-logo221 img{width:446px}}</style><div class="ysi-logo-widget ysi-logo-wrapper" data-widget-order="1" customlabelreplaced="" aria-hidden="true"><a href="/champlain-village-urbain" class="d-inline-block" customlabelreplaced=""><picture id="mobile-logo221"> | |
| 480 | + | |
| 481 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_3840,h_646,c_crop/q_auto,f_auto,c_fit,w_297,h_50,dpr_2/s3/2/252329/brigil-logo_champlain_bleu%201.png 2x"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_3840,h_646,c_crop/q_auto,f_auto,c_limit,w_297,h_50/s3/2/252329/brigil-logo_champlain_bleu%201.png" class="w-100 h-100 d-inline-block img-fluid" alt="The image shows the word "brigil" in large, bold letters." title="Logo" width="297" height="49"> | |
| 482 | +</picture> | |
| 483 | +</a></div> | |
| 484 | + | |
| 485 | + | |
| 486 | + <div class="navbar-right pr-2" customlabelreplaced=""> | |
| 487 | + | |
| 488 | + | |
| 489 | + <div class="dropdown ysi-translate-widget ysi-translate-dropdown px-2 " customlabelreplaced=""> | |
| 490 | + <a data-selenium-id="translate" class="dropdown-toggle color-inherit text-decoration-none" href="#" onclick="elementLanguageFocus()" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" customlabelreplaced=""> | |
| 491 | + <span aria-hidden="true" class="fas fa-globe-americas" customlabelreplaced=""></span> <span class="sr-only" customlabelreplaced="">Language</span> | |
| 492 | + </a> | |
| 493 | + <ul class="dropdown-menu dropdown-menu-right" customlabelreplaced=""> | |
| 494 | + | |
| 495 | + <li customlabelreplaced=""> | |
| 496 | + <a data-selenium-id="lang-1" class="dropdown-item px-3 language-drowndown-item" href="javascript:getPack('en-us')" aria-label="English Language" customlabelreplaced=""> | |
| 497 | + <span class="ml-2" customlabelreplaced="">English</span> | |
| 498 | + </a> | |
| 499 | + </li> | |
| 500 | + <li customlabelreplaced=""> | |
| 501 | + <a data-selenium-id="lang-1" class="dropdown-item px-3 language-drowndown-item" href="javascript:getPack('fr-ca')" aria-label="French Language" customlabelreplaced=""> | |
| 502 | + <span class="ml-2" customlabelreplaced="">French</span> | |
| 503 | + </a> | |
| 504 | + </li> | |
| 505 | + </ul> | |
| 506 | + </div> | |
| 507 | + <input type="hidden" id="translate-request-verification-token" name="translate-request-verification-token" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ0FkYkBTilZTyBqOZxXdvnFjTcUDvUyvEdzZneGZ_hHd_ava2f1GBi-2k83j4N3uEEuulEFqpAeP_YCF15magJolKzfnKkJf_FF3xyFPl7SJHdpHL4AkP1xaoxsMLfclwA"> | |
| 508 | + | |
| 509 | + | |
| 510 | + | |
| 511 | + | |
| 512 | + | |
| 513 | + | |
| 514 | + <div class="dropdown ysi-login-link-widget ysi-login-dropdown d-inline" style="max-width: max-content;" customlabelreplaced="" aria-hidden="true"> | |
| 515 | + | |
| 516 | + <a data-selenium-id="loginlinks" class="dropdown-toggle color-inherit text-decoration-none " href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" style="" customlabelreplaced=""> | |
| 517 | + <svg class="ysi-svg-icon ysi-svg-icon-user" width="1em" height="1em" viewBox="0 0 256 256"><path d="m 128,128 c 35.35,0 64,-28.7 64,-64 C 192,28.7 163.4,0 128,0 92.7,0 64,28.7 64,64 c 0,35.4 28.65,64 64,64 z m 44.8,16 h -8.4 c -11.1,5.1 -23.5,8 -36.5,8 -13,0 -25.3,-2.9 -36.5,-8 H 83.2 C 46.1,144 16,174.1 16,211.2 V 232 c 0,13.3 10.8,24 24,24 h 176 c 13.3,0 24,-10.8 24,-24 V 211.2 C 240,174.1 209.9,144 172.8,144 Z"></path></svg> | |
| 518 | + <span class="sr-only" customlabelreplaced="">Login</span> | |
| 519 | + </a> | |
| 520 | + | |
| 521 | + <div class="dropdown-menu dropdown-menu-right" customlabelreplaced=""> | |
| 522 | + | |
| 523 | + | |
| 524 | + | |
| 525 | + <ul class="dropdown-list list-unstyled mb-0" customlabelreplaced=""> | |
| 526 | + <li customlabelreplaced=""> | |
| 527 | + <a data-selenium-id="residentlogin" class="dropdown-item track-resident-login" href="https://brigil.securecafe.com/residentservices/champlain-village-urbain/userlogin.aspx?dropdownlangid=999&PropLeadSource_1975507=portal" rel="noopener" target="_Blank" customlabelreplaced=""> Resident <span class="sr-only" customlabelreplaced="">Login Opens in a new tab</span> </a> | |
| 528 | + </li> | |
| 529 | + | |
| 530 | + <li customlabelreplaced=""> | |
| 531 | + <a data-selenium-id="applicantlogin" class="dropdown-item track-applicant-login" href="https://brigil.securecafe.com/onlineleasing/champlain-village-urbain/guestlogin.aspx?dropdownlangid=999&PropLeadSource_1975507=portal" rel="noopener" target="_Blank" customlabelreplaced=""> Applicant <span class="sr-only" customlabelreplaced="">Login Opens in a new tab</span> </a> | |
| 532 | + </li> | |
| 533 | + | |
| 534 | + </ul> | |
| 535 | + </div> | |
| 536 | + </div> | |
| 537 | + | |
| 538 | + | |
| 539 | + | |
| 540 | + | |
| 541 | + <style>.mobile-only .click-to-call{display:none}</style> | |
| 542 | + | |
| 543 | + <div class="ysi-phone-widget ysi-phone-wrapper mobile-only d-inline ml-2 text-primary" customlabelreplaced=""> | |
| 544 | + <div class="d-inline-flex" customlabelreplaced=""> | |
| 545 | + <a data-selenium-id="click_to_call" onclick="fireGaPhone()" href="tel:+1 819-303-5616" aria-label="Call Champlain Village Urbain at +1 819-303-5616" class="ysi-phone-number click-to-call-href color-inherit " customlabelreplaced=""> | |
| 546 | + <svg class="ysi-svg-icon mobile-phone-icon" width="1em" height="1em" viewBox="0 0 256 256"><path d="M 9.3,12.3 61.3,0.3 c 5.6,-1.3 11.5,1.6 13.7,6.9 L 99,63.3 c 2.1,4.9 0.7,10.6 -3.4,14 L 65.3,102 c 18,38.3 49.4,70.2 88.6,88.6 l 24.8,-30.3 c 3.4,-4.1 9.1,-5.5 14,-3.4 l 56,24 c 5.3,2.3 8.3,8.1 7,13.8 L 243.7,246.7 C 242.4,252.1 237.6,256 232,256 103.9,256 0,152.3 0,24 0,18.4 3.8,13.6 9.3,12.3 Z"></path></svg> | |
| 547 | + <span class="click-to-call" customlabelreplaced="">+1 819-303-5616</span> | |
| 548 | + </a> | |
| 549 | + | |
| 550 | + </div> | |
| 551 | + </div> | |
| 552 | + <script> | |
| 553 | + function fireGaPhone() { | |
| 554 | + if (typeof gtag != 'undefined') { | |
| 555 | + var myPage = location.pathname.replace("/", ""); | |
| 556 | + if (myPage == "") { myPage = "index"; } | |
| 557 | + if (true ) { | |
| 558 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 559 | + gtag('event', 'phone_call', { 'property_name': propertyName, 'page_name': document.title, 'page_url': window.location.href, 'header_phone_number': '+1 819-303-5616'}); | |
| 560 | + } | |
| 561 | + gtag('event', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 562 | + gtag('rc.send', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 563 | + } | |
| 564 | + } | |
| 565 | + </script> | |
| 566 | + | |
| 567 | + </div> | |
| 568 | + <div class="collapse navbar-collapse" id="navbarMobileCollapse" customlabelreplaced=""> | |
| 569 | + <ul class="nav navbar-nav pt-3 custom-scroll" customlabelreplaced=""> | |
| 570 | + <li class="nav-item" customlabelreplaced=""> | |
| 571 | + <a onclick="fireGA4menu(this)" data-selenium-id="mobile_amenitiesaspx_MenuLink" href="/champlain-village-urbain/amenities" class="nav-link" customlabelreplaced=""> | |
| 572 | + Amenities </a> | |
| 573 | + </li> | |
| 574 | + <li class="nav-item" customlabelreplaced=""> | |
| 575 | + <a onclick="fireGA4menu(this)" data-selenium-id="mobile_mapsanddirectionsaspx_MenuLink" href="/champlain-village-urbain/mapsanddirections" class="nav-link" customlabelreplaced=""> | |
| 576 | + Neighbourhood </a> | |
| 577 | + </li> | |
| 578 | + <li class="dropdown nav-item show" customlabelreplaced=""> | |
| 579 | + <a id="navbar-dropdown-menu-mobile-1" href="#" data-selenium-id="https://resource.rentcafe.com/image/upload/s3/2/252329/2026-08-19_champlain_brochure_9x12-sans plans-v11_preliminaire_web (1).pdfaspx_MenuLink" ioi="true" class="nav-link dropdown-toggle" role="button" aria-haspopup="true" customlabelreplaced="">Brochures</a> | |
| 580 | + <ul class="dropdown-menu show" aria-labelledby="navbar-dropdown-menu-mobile-1" customlabelreplaced=""> | |
| 581 | + <li class="" customlabelreplaced=""> | |
| 582 | + <a onclick="fireGA4menu(this)" class="dropdown-item" data-selenium-id="mobile_https://resource.rentcafe.com/image/upload/s3/2/252329/2026-08-19_champlain_brochure_9x12-sans plans-v11_preliminaire_web (1).pdfaspx_ActualMenuLink" ioi="true" href="https://resource.rentcafe.com/image/upload/s3/2/252329/2026-08-19_champlain_brochure_9x12-sans plans-v11_preliminaire_web (1).pdf" customlabelreplaced=""> | |
| 583 | + The Project </a> | |
| 584 | + </li> | |
| 585 | + | |
| 586 | + <li class="" customlabelreplaced=""> | |
| 587 | + <a onclick="fireGA4menu(this)" class="dropdown-item" data-selenium-id="mobile_https://resource.rentcafe.com/image/upload/s3/2/252329/2026-06-25_champlain_plan-b3_8x11.pdfaspx_MenuLink" ioi="true" href="https://resource.rentcafe.com/image/upload/s3/2/252329/2026-06-25_champlain_plan-b3_8x11.pdf" target="_blank" customlabelreplaced=""> | |
| 588 | + 60 Imp. Du Griffon <span class="sr-only" customlabelreplaced="">opens in a new tab</span> </a> | |
| 589 | + </li> | |
| 590 | + <li class="" customlabelreplaced=""> | |
| 591 | + <a onclick="fireGA4menu(this)" class="dropdown-item" data-selenium-id="mobile_https://resource.rentcafe.com/image/upload/s3/2/252329/2026-06-25_champlain_plan-t1_8x11.pdfaspx_MenuLink" ioi="true" href="https://resource.rentcafe.com/image/upload/s3/2/252329/2026-06-25_champlain_plan-t1_8x11.pdf" target="_blank" customlabelreplaced=""> | |
| 592 | + 50 Imp. Du Griffon <span class="sr-only" customlabelreplaced="">opens in a new tab</span> </a> | |
| 593 | + </li> | |
| 594 | + <li class="" customlabelreplaced=""> | |
| 595 | + <a onclick="fireGA4menu(this)" class="dropdown-item" data-selenium-id="mobile_https://resource.rentcafe.com/image/upload/s3/2/252329/2026-06-25_champlain_plan-b5_8x11.pdfaspx_MenuLink" ioi="true" href="https://resource.rentcafe.com/image/upload/s3/2/252329/2026-06-25_champlain_plan-b5_8x11.pdf" target="_blank" customlabelreplaced=""> | |
| 596 | + 40 Imp. Du Griffon <span class="sr-only" customlabelreplaced="">opens in a new tab</span> </a> | |
| 597 | + </li> | |
| 598 | + <li class="" customlabelreplaced=""> | |
| 599 | + <a onclick="fireGA4menu(this)" class="dropdown-item" data-selenium-id="mobile_https://resource.rentcafe.com/image/upload/s3/2/252329/2026-02-23_champlain_plan-b4_8x11 (3).pdfaspx_MenuLink" ioi="true" href="https://resource.rentcafe.com/image/upload/s3/2/252329/2026-02-23_champlain_plan-b4_8x11 (3).pdf" target="_blank" customlabelreplaced=""> | |
| 600 | + 10, 20 & 30 Imp. Du Griffon <span class="sr-only" customlabelreplaced="">opens in a new tab</span> </a> | |
| 601 | + </li> | |
| 602 | + </ul> | |
| 603 | + </li> | |
| 604 | + <li class="nav-item active" customlabelreplaced=""> | |
| 605 | + <a onclick="fireGA4menu(this)" data-selenium-id="mobile_floorplansaspx_MenuLink" href="/champlain-village-urbain/floorplans" aria-current="page" class="nav-link" customlabelreplaced=""> | |
| 606 | + Units & Pricing </a> | |
| 607 | + </li> | |
| 608 | + <li class="nav-item" customlabelreplaced=""> | |
| 609 | + <a onclick="fireGA4menu(this)" data-selenium-id="mobile_photogalleryaspx_MenuLink" href="/champlain-village-urbain/photogallery" class="nav-link" customlabelreplaced=""> | |
| 610 | + Gallery </a> | |
| 611 | + </li> | |
| 612 | + </ul> | |
| 613 | + </div> | |
| 614 | + </nav> | |
| 615 | +<script> | |
| 616 | + function fireGA4menu(item) { | |
| 617 | + if (typeof gtag !== 'undefined') { | |
| 618 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 619 | + var destination = item.getAttribute('href'); | |
| 620 | + gtag('event', 'menu_link', { | |
| 621 | + 'property_name': propertyName, 'button_label': item.innerText, 'page_name': document.title, 'page_url': window.location.href, | |
| 622 | + 'destination_url': window.location.host + destination | |
| 623 | + }); | |
| 624 | + } | |
| 625 | + } | |
| 626 | +</script> | |
| 627 | + | |
| 628 | + | |
| 629 | + | |
| 630 | +<script> | |
| 631 | +window.addEventListener("load", () => { | |
| 632 | + document.querySelectorAll('button.navbar-toggler[aria-expanded]').forEach((hamburger) => { | |
| 633 | + const update = () => { | |
| 634 | + hamburger.setAttribute( | |
| 635 | + "aria-label", | |
| 636 | + hamburger.getAttribute("aria-expanded") === "true" | |
| 637 | + ? "Close navigation" | |
| 638 | + : "Toggle navigation" | |
| 639 | + ); | |
| 640 | + }; | |
| 641 | + | |
| 642 | + update(); | |
| 643 | + | |
| 644 | + new MutationObserver(update).observe(hamburger, { | |
| 645 | + attributes: true, | |
| 646 | + attributeFilter: ["aria-expanded"], | |
| 647 | + }); | |
| 648 | + }); | |
| 649 | +}); | |
| 650 | +</script> | |
| 651 | + | |
| 652 | + | |
| 653 | + | |
| 654 | + <header><div class="topbar py-0 px-5 text-primary bg-secondary ysi-row d-none d-xl-flex" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""> | |
| 655 | + <div class="justify-content-start align-items-center flex-row d-flex text-left p-0 col-12 col-lg-4" customlabelreplaced=""> | |
| 656 | + | |
| 657 | + <div class="mr-2" style="font-size: 18px;" customlabelreplaced="">Communities by</div> | |
| 658 | + | |
| 659 | + <div class="ysi-picture-widget ysi-picture-wrapper " customlabelreplaced=""> | |
| 660 | + <a href="https://brigil.com/specials-and-promotions" class="" title="The image shows the word "brigil" in large, bold letters., Opens in new tab" aria-label="The image shows the word "brigil" in large, bold letters., Opens in new tab" target="_blank" rel="noopener" customlabelreplaced=""><picture><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_232,h_96,c_crop/q_auto,f_auto,c_lfill,w_231,ar_2.416,g_auto/s3/2/252329/layer_1%20(12).png" class="w-100 h-100 max-height-24 img-fluid" alt="The image shows the word "brigil" in large, bold letters." title="Commercial"> | |
| 661 | +</picture> | |
| 662 | +</a> | |
| 663 | + | |
| 664 | + | |
| 665 | + | |
| 666 | + </div> | |
| 667 | + | |
| 668 | +</div> | |
| 669 | + <div class="justify-content-end align-items-center flex-row d-flex text-right p-0 col-12 col-lg-8" customlabelreplaced=""> | |
| 670 | + | |
| 671 | + <div class="d-flex flex-row align-items-center justify-content-end" customlabelreplaced=""> | |
| 672 | + <a href="https://www.brigil.com/specials-and-promotions" class="nav-link text-decoration-none letter-spacing-1" target="_blank" customlabelreplaced="">For Rent</a> | |
| 673 | + <a href="https://www.brigil.com/specials-and-promotions#forsales" class="nav-link text-decoration-none letter-spacing-1" target="_blank" customlabelreplaced="">For Sale</a> | |
| 674 | + <a href="https://www.brigil.com/commercial-development" class="nav-link text-decoration-none letter-spacing-1" target="_blank" customlabelreplaced="">Commercial</a> | |
| 675 | + <a href="https://batisseurcitoyen.brigil.com/en" class="link-en nav-link text-decoration-none letter-spacing-1" target="_blank" customlabelreplaced="">About Brigil</a> | |
| 676 | + <a href="https://batisseurcitoyen.brigil.com/" class="link-fr nav-link text-decoration-none letter-spacing-1" target="_blank" customlabelreplaced="">About Brigil</a> | |
| 677 | + <a href="https://www.brigil.com/contactus" class="nav-link text-decoration-none letter-spacing-1" target="_blank" customlabelreplaced="">Contact Us</a> | |
| 678 | + </div> | |
| 679 | + | |
| 680 | + </div> | |
| 681 | + </div></div></div><div data-offset-top="259" id="stickyTopSentinel0" class="stickytopsentinel" style="position: absolute; left: 0px; width: 1px; height: 1px; z-index: 0;"></div><div class="sticky-top py-3 px-5 text-primary bg-white ysi-row w-100 d-none d-xl-flex" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""><div class="justify-content-start align-items-center flex-row d-flex text-left p-0 col-12 col-lg-1" customlabelreplaced=""><style>#logo174 img{box-sizing:content-box}@media (min-width: 992px){#logo174 img{width:446px}}</style><div class="ysi-logo-widget ysi-logo-wrapper " data-widget-order="1" customlabelreplaced="" aria-hidden="false"><a href="/champlain-village-urbain" class="d-inline-block" customlabelreplaced=""><picture id="logo174"> | |
| 682 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_3840,h_646,c_crop/q_auto,f_auto,c_fit,w_446,h_75,dpr_2/s3/2/252329/brigil-logo_champlain_bleu%201.png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_3840,h_646,c_crop/q_auto,f_auto,c_limit,w_446,h_75/s3/2/252329/brigil-logo_champlain_bleu%201.png"> | |
| 683 | + | |
| 684 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_3840,h_646,c_crop/q_auto,f_auto,c_fit,w_297,h_50,dpr_2/s3/2/252329/brigil-logo_champlain_bleu%201.png 2x"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_3840,h_646,c_crop/q_auto,f_auto,c_limit,w_297,h_50/s3/2/252329/brigil-logo_champlain_bleu%201.png" class="w-100 h-100 d-inline-block img-fluid" alt="The image shows the word "brigil" in large, bold letters." title="Logo" width="297" height="49"> | |
| 685 | +</picture> | |
| 686 | +</a></div> | |
| 687 | + | |
| 688 | +</div><div class="justify-content-start align-items-center flex-row d-flex text-left pl-xl-4 col-12 col-lg-7" customlabelreplaced=""> <style> | |
| 689 | + #navbarCollapse .nav.navbar-nav { | |
| 690 | + background-color: #ffffff; | |
| 691 | + } | |
| 692 | + </style> | |
| 693 | + <nav id="ysi-navbar" aria-label="main navigation" class="ysi-navbar navbar navbar-expand navbar-light" style="" aria-hidden="false"> | |
| 694 | + <div class="navbar-collapse collapse navbar-z-index " style="width: 100%; " id="navbarCollapse" customlabelreplaced=""> | |
| 695 | + <ul class="nav navbar-nav " customlabelreplaced=""> | |
| 696 | + <li class="nav-item m-auto" customlabelreplaced=""> | |
| 697 | + <a onclick="fireGA4menu(this)" data-selenium-id="amenitiesaspx_MenuLink" href="/champlain-village-urbain/amenities" class="nav-link" customlabelreplaced=""> | |
| 698 | + Amenities </a> | |
| 699 | + </li> | |
| 700 | + <li class="nav-item m-auto" customlabelreplaced=""> | |
| 701 | + <a onclick="fireGA4menu(this)" data-selenium-id="mapsanddirectionsaspx_MenuLink" href="/champlain-village-urbain/mapsanddirections" class="nav-link" customlabelreplaced=""> | |
| 702 | + Neighbourhood </a> | |
| 703 | + </li> | |
| 704 | + <li class="dropdown nav-item m-auto" customlabelreplaced=""> | |
| 705 | + <a id="navbar-dropdown-menu-1" data-selenium-id="https://resource.rentcafe.com/image/upload/s3/2/252329/2026-08-19_champlain_brochure_9x12-sans plans-v11_preliminaire_web (1).pdfaspx_MenuLink" ioi="true" class="nav-link dropdown-toggle" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" customlabelreplaced="">Brochures </a> | |
| 706 | + <!-- Submenu items --> | |
| 707 | + <ul class="dropdown-menu" aria-labelledby="navbar-dropdown-menu-1" customlabelreplaced=""> | |
| 708 | + <li class="" customlabelreplaced=""> | |
| 709 | + <a onclick="fireGA4menu(this)" class="dropdown-item" data-selenium-id="https://resource.rentcafe.com/image/upload/s3/2/252329/2026-08-19_champlain_brochure_9x12-sans plans-v11_preliminaire_web (1).pdfaspx_ActualMenuLink" ioi="true" href="https://resource.rentcafe.com/image/upload/s3/2/252329/2026-08-19_champlain_brochure_9x12-sans plans-v11_preliminaire_web (1).pdf" customlabelreplaced=""> | |
| 710 | + The Project </a> | |
| 711 | + </li> | |
| 712 | + <li class="" customlabelreplaced=""> | |
| 713 | + <a onclick="fireGA4menu(this)" class="dropdown-item" data-selenium-id="https://resource.rentcafe.com/image/upload/s3/2/252329/2026-06-25_champlain_plan-b3_8x11.pdfaspx_MenuLink" ioi="true" href="https://resource.rentcafe.com/image/upload/s3/2/252329/2026-06-25_champlain_plan-b3_8x11.pdf" target="_blank" customlabelreplaced=""> | |
| 714 | + 60 Imp. Du Griffon <span class="sr-only" customlabelreplaced="">opens in a new tab</span> </a> | |
| 715 | + </li> | |
| 716 | + <li class="" customlabelreplaced=""> | |
| 717 | + <a onclick="fireGA4menu(this)" class="dropdown-item" data-selenium-id="https://resource.rentcafe.com/image/upload/s3/2/252329/2026-06-25_champlain_plan-t1_8x11.pdfaspx_MenuLink" ioi="true" href="https://resource.rentcafe.com/image/upload/s3/2/252329/2026-06-25_champlain_plan-t1_8x11.pdf" target="_blank" customlabelreplaced=""> | |
| 718 | + 50 Imp. Du Griffon <span class="sr-only" customlabelreplaced="">opens in a new tab</span> </a> | |
| 719 | + </li> | |
| 720 | + <li class="" customlabelreplaced=""> | |
| 721 | + <a onclick="fireGA4menu(this)" class="dropdown-item" data-selenium-id="https://resource.rentcafe.com/image/upload/s3/2/252329/2026-06-25_champlain_plan-b5_8x11.pdfaspx_MenuLink" ioi="true" href="https://resource.rentcafe.com/image/upload/s3/2/252329/2026-06-25_champlain_plan-b5_8x11.pdf" target="_blank" customlabelreplaced=""> | |
| 722 | + 40 Imp. Du Griffon <span class="sr-only" customlabelreplaced="">opens in a new tab</span> </a> | |
| 723 | + </li> | |
| 724 | + <li class="" customlabelreplaced=""> | |
| 725 | + <a onclick="fireGA4menu(this)" class="dropdown-item" data-selenium-id="https://resource.rentcafe.com/image/upload/s3/2/252329/2026-02-23_champlain_plan-b4_8x11 (3).pdfaspx_MenuLink" ioi="true" href="https://resource.rentcafe.com/image/upload/s3/2/252329/2026-02-23_champlain_plan-b4_8x11 (3).pdf" target="_blank" customlabelreplaced=""> | |
| 726 | + 10, 20 & 30 Imp. Du Griffon <span class="sr-only" customlabelreplaced="">opens in a new tab</span> </a> | |
| 727 | + </li> | |
| 728 | + </ul> | |
| 729 | + <!-- END: Submenu items --> | |
| 730 | + </li> | |
| 731 | + <li class="nav-item active m-auto" customlabelreplaced=""> | |
| 732 | + <a onclick="fireGA4menu(this)" data-selenium-id="floorplansaspx_MenuLink" href="/champlain-village-urbain/floorplans" aria-current="page" class="nav-link" customlabelreplaced=""> | |
| 733 | + Units & Pricing </a> | |
| 734 | + </li> | |
| 735 | + <li class="nav-item m-auto" customlabelreplaced=""> | |
| 736 | + <a onclick="fireGA4menu(this)" data-selenium-id="photogalleryaspx_MenuLink" href="/champlain-village-urbain/photogallery" class="nav-link" customlabelreplaced=""> | |
| 737 | + Gallery </a> | |
| 738 | + </li> | |
| 739 | + </ul> | |
| 740 | + </div> | |
| 741 | + </nav> | |
| 742 | + | |
| 743 | +<script> | |
| 744 | + function fireGA4menu(item) { | |
| 745 | + if (typeof gtag !== 'undefined') { | |
| 746 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 747 | + var destination = item.getAttribute('href'); | |
| 748 | + gtag('event', 'menu_link', { | |
| 749 | + 'property_name': propertyName, 'button_label': item.innerText, 'page_name': document.title, 'page_url': window.location.href, | |
| 750 | + 'destination_url': window.location.host + destination | |
| 751 | + }); | |
| 752 | + } | |
| 753 | + } | |
| 754 | +</script> | |
| 755 | + | |
| 756 | + | |
| 757 | + | |
| 758 | +<script> | |
| 759 | +window.addEventListener("load", () => { | |
| 760 | + document.querySelectorAll('button.navbar-toggler[aria-expanded]').forEach((hamburger) => { | |
| 761 | + const update = () => { | |
| 762 | + hamburger.setAttribute( | |
| 763 | + "aria-label", | |
| 764 | + hamburger.getAttribute("aria-expanded") === "true" | |
| 765 | + ? "Close navigation" | |
| 766 | + : "Toggle navigation" | |
| 767 | + ); | |
| 768 | + }; | |
| 769 | + | |
| 770 | + update(); | |
| 771 | + | |
| 772 | + new MutationObserver(update).observe(hamburger, { | |
| 773 | + attributes: true, | |
| 774 | + attributeFilter: ["aria-expanded"], | |
| 775 | + }); | |
| 776 | + }); | |
| 777 | +}); | |
| 778 | +</script> | |
| 779 | + | |
| 780 | +</div><div class="p-0 col-12 offset-0 d-flex text-left col-lg-4 justify-content-end align-items-center flex-row" customlabelreplaced=""> | |
| 781 | + | |
| 782 | + <style>.mobile-only .click-to-call{display:none}</style> | |
| 783 | + | |
| 784 | + <div class="ysi-phone-widget ysi-phone-wrapper" customlabelreplaced=""> | |
| 785 | + <div class="d-inline-flex" customlabelreplaced=""> | |
| 786 | + <a data-selenium-id="click_to_call" onclick="fireGaPhone()" href="tel:+1 819-303-5616" aria-label="Call Champlain Village Urbain at +1 819-303-5616" class="ysi-phone-number click-to-call-href text-decoration-none color-inherit " customlabelreplaced=""> | |
| 787 | + <span aria-hidden="true" class="fa-flip-horizontal fas fa-phone mobile-phone-icon" customlabelreplaced=""></span> | |
| 788 | + <span class="click-to-call ml-2 text-underline" customlabelreplaced="">+1 819-303-5616</span> | |
| 789 | + </a> | |
| 790 | + | |
| 791 | + </div> | |
| 792 | + </div> | |
| 793 | + <script> | |
| 794 | + function fireGaPhone() { | |
| 795 | + if (typeof gtag != 'undefined') { | |
| 796 | + var myPage = location.pathname.replace("/", ""); | |
| 797 | + if (myPage == "") { myPage = "index"; } | |
| 798 | + if (true ) { | |
| 799 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 800 | + gtag('event', 'phone_call', { 'property_name': propertyName, 'page_name': document.title, 'page_url': window.location.href, 'header_phone_number': '+1 819-303-5616'}); | |
| 801 | + } | |
| 802 | + gtag('event', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 803 | + gtag('rc.send', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 804 | + } | |
| 805 | + } | |
| 806 | + </script> | |
| 807 | + | |
| 808 | + | |
| 809 | + <div class="dropdown ysi-translate-widget ysi-translate-dropdown px-2 d-none d-lg-flex" customlabelreplaced=""> | |
| 810 | + <a data-selenium-id="translate" class="dropdown-toggle color-inherit " href="#" onclick="elementLanguageFocus()" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" customlabelreplaced=""> | |
| 811 | + <span aria-hidden="true" class="fas fa-globe-americas" customlabelreplaced=""></span> <span class="" customlabelreplaced="">Language</span> | |
| 812 | + </a> | |
| 813 | + <ul class="dropdown-menu " customlabelreplaced=""> | |
| 814 | + | |
| 815 | + <li customlabelreplaced=""> | |
| 816 | + <a data-selenium-id="lang-1" class="dropdown-item px-3 language-drowndown-item" href="javascript:getPack('en-us')" aria-label="English Language" customlabelreplaced=""> | |
| 817 | + <span class="ml-2" customlabelreplaced="">English</span> | |
| 818 | + </a> | |
| 819 | + </li> | |
| 820 | + <li customlabelreplaced=""> | |
| 821 | + <a data-selenium-id="lang-1" class="dropdown-item px-3 language-drowndown-item" href="javascript:getPack('fr-ca')" aria-label="French Language" customlabelreplaced=""> | |
| 822 | + <span class="ml-2" customlabelreplaced="">French</span> | |
| 823 | + </a> | |
| 824 | + </li> | |
| 825 | + </ul> | |
| 826 | + </div> | |
| 827 | + <input type="hidden" id="translate-request-verification-token" name="translate-request-verification-token" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ0FkYkBTilZTyBqOZxXdvnFjTcUDvUyvEdzZneGZ_hHd_ava2f1GBi-2k83j4N3uEEuulEFqpAeP_YCF15magJolKzfnKkJf_FF3xyFPl7SJHdpHL4AkP1xaoxsMLfclwA"> | |
| 828 | + | |
| 829 | +<!-- English Plan A Visit Action Button --> | |
| 830 | +<div class="ysi-button-widget ysi-button-wrapper" customlabelreplaced=""> | |
| 831 | + <a href="https://calendly.com/village-champlain-by-brigil/champlain-on-site-appointment" class="link-en" target="_blank" customlabelreplaced=""> | |
| 832 | + <button class="btn btn-reach-animated-icon rounded-pill-btn btn-action w-100 letter-spacing-1 pl-4 pr-xl-6" customlabelreplaced=""> | |
| 833 | + Plan a visit <span class="ml-2 nu nu-arrow-right" customlabelreplaced=""></span> | |
| 834 | + </button> | |
| 835 | + </a> | |
| 836 | +</div> | |
| 837 | + | |
| 838 | + <!-- French Plan A Visit Action Button --> | |
| 839 | +<div class="ysi-button-widget ysi-button-wrapper" customlabelreplaced=""> | |
| 840 | + <a href="https://calendly.com/village-champlain-par-brigil/champlain-visite-sur-place" class="link-fr" target="_blank" customlabelreplaced=""> | |
| 841 | + <button class="btn btn-reach-animated-icon rounded-pill-btn btn-action w-100 letter-spacing-1 pl-4 pr-xl-6" customlabelreplaced=""> | |
| 842 | + Planifiez une visite <span class="ml-2 nu nu-arrow-right" customlabelreplaced=""></span> | |
| 843 | + </button> | |
| 844 | + </a> | |
| 845 | +</div> | |
| 846 | + | |
| 847 | + | |
| 848 | + <div class="dropdown ysi-login-link-widget ysi-login-dropdown" style="max-width: max-content;" customlabelreplaced="" aria-hidden="true"> | |
| 849 | + | |
| 850 | + <a data-selenium-id="loginlinks" class="dropdown-toggle btn " style="" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" customlabelreplaced=""> | |
| 851 | + <span customlabelreplaced="">Login</span> | |
| 852 | + </a> | |
| 853 | + | |
| 854 | + <div class="dropdown-menu dropdown-menu-right" customlabelreplaced=""> | |
| 855 | + | |
| 856 | + | |
| 857 | + | |
| 858 | + <ul class="dropdown-list list-unstyled mb-0" customlabelreplaced=""> | |
| 859 | + <li customlabelreplaced=""> | |
| 860 | + <a data-selenium-id="residentlogin" class="dropdown-item track-resident-login" href="https://brigil.securecafe.com/residentservices/champlain-village-urbain/userlogin.aspx?dropdownlangid=999&PropLeadSource_1975507=portal" rel="noopener" target="_Blank" customlabelreplaced=""> Resident <span class="sr-only" customlabelreplaced="">Login Opens in a new tab</span> </a> | |
| 861 | + </li> | |
| 862 | + | |
| 863 | + <li customlabelreplaced=""> | |
| 864 | + <a data-selenium-id="applicantlogin" class="dropdown-item track-applicant-login" href="https://brigil.securecafe.com/onlineleasing/champlain-village-urbain/guestlogin.aspx?dropdownlangid=999&PropLeadSource_1975507=portal" rel="noopener" target="_Blank" customlabelreplaced=""> Applicant <span class="sr-only" customlabelreplaced="">Login Opens in a new tab</span> </a> | |
| 865 | + </li> | |
| 866 | + | |
| 867 | + </ul> | |
| 868 | + </div> | |
| 869 | + </div> | |
| 870 | + | |
| 871 | +</div></div></div></div><div class="py-2 px-5 text-primary bg-secondary ysi-row d-flex d-xl-none" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""> | |
| 872 | + <div class="justify-content-center align-items-center flex-row d-flex text-left col-12" customlabelreplaced=""> | |
| 873 | + <a href="https://brigil.com/specials-and-promotions" target="_blank" customlabelreplaced=""> | |
| 874 | + <div class="d-flex justify-content-center" customlabelreplaced=""> | |
| 875 | + <span class="nu nu-arrow-left mr-2" customlabelreplaced=""></span><div class="mr-2" customlabelreplaced="">More communities by</div> | |
| 876 | + </div> | |
| 877 | + </a> | |
| 878 | + <div class="ysi-picture-widget ysi-picture-wrapper " customlabelreplaced=""> | |
| 879 | + <a href="https://brigil.com/specials-and-promotions" class="" title="The image shows the word "brigil" in large, bold letters., Opens in new tab" aria-label="The image shows the word "brigil" in large, bold letters., Opens in new tab" target="_blank" rel="noopener" customlabelreplaced=""><picture><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_232,h_96,c_crop/q_auto,f_auto,c_lfill,w_231,ar_2.416,g_auto/s3/2/252329/layer_1%20(12).png" class="w-100 h-100 max-height-24 img-fluid" alt="The image shows the word "brigil" in large, bold letters."> | |
| 880 | +</picture> | |
| 881 | +</a> | |
| 882 | + | |
| 883 | + | |
| 884 | + | |
| 885 | + </div> | |
| 886 | + | |
| 887 | +</div> | |
| 888 | + </div></div></div></header> | |
| 889 | + <!--do not remove--> | |
| 890 | + <main id="main-content"><div class="bg-white container-fluid p-0" customlabelreplaced=""><div class="row no-gutters" customlabelreplaced=""><div class="py-0 col-12 offset-0 d-flex justify-content-start align-items-stretch flex-column text-left col-lg-12" customlabelreplaced=""><div class="position-relative mb-lg-6 mb-4 px-lg-5 pt-lg-0 px-3 pt-4 container-fluid p-0" customlabelreplaced=""><div class="row no-gutters" customlabelreplaced=""><div class="h-sm-60vh h-md-100vh offset-0 d-flex justify-content-start align-items-stretch flex-column text-left col-lg-12" customlabelreplaced=""> <div class="ysi-picture-widget ysi-picture-wrapper h-100 w-100 " customlabelreplaced=""> | |
| 891 | + <picture> | |
| 892 | +<source media="(min-width: 1440px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1920,h_1080,c_crop/q_auto,f_auto,c_limit,w_1920/s3/2/252329/champlain-amenities-hero-new.gif"> | |
| 893 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1920,h_1080,c_crop/q_auto,f_auto,c_limit,w_1440/s3/2/252329/champlain-amenities-hero-new.gif"> | |
| 894 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1920,h_1080,c_crop/q_auto,f_auto,c_limit,w_1200/s3/2/252329/champlain-amenities-hero-new.gif"> | |
| 895 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1920,h_1080,c_crop/q_auto,f_auto,c_limit,w_992/s3/2/252329/champlain-amenities-hero-new.gif"> | |
| 896 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1920,h_1080,c_crop/q_auto,f_auto,c_limit,w_768/s3/2/252329/champlain-amenities-hero-new.gif"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1920,h_1080,c_crop/q_auto,f_auto,c_limit,w_576/s3/2/252329/champlain-amenities-hero-new.gif" class="h-100 w-100 object-fit-cover img-fluid" alt="A modern kitchen with a bowl of vegetables on the counter." width="1920" height="1080"> | |
| 897 | +</picture> | |
| 898 | + | |
| 899 | + | |
| 900 | + | |
| 901 | + </div> | |
| 902 | + | |
| 903 | +</div><div class="flex-wrap bottom-0 position-absolute ml-md-4 ml-0 py-lg-5 px-lg-5 py-3 px-3 text-white col-11 offset-0 d-flex col-md-7 col-lg-5 justify-content-start justify-content-md-start justify-content-lg-start align-items-start align-items-md-start align-items-lg-start flex-row flex-md-row flex-lg-row" customlabelreplaced=""> | |
| 904 | + <div class="font-base text-3x w-100 font-weight-medium" customlabelreplaced=""> | |
| 905 | + Find Your Home at Champlain | |
| 906 | + </div> | |
| 907 | + <p class="my-4 w-100" customlabelreplaced=""> | |
| 908 | +Every apartment at Champlain Urban Village has been meticulously crafted to bring lasting comfort. From the abundant natural light that fills each units to the expansive layouts that offer space to move, create, and unwind — living at Champlain feels naturally inviting. Featuring high-end finishes and carefully selected materials, each apartment brings together refinement, warmth, and timeless elegance. | |
| 909 | + </p> | |
| 910 | + | |
| 911 | + | |
| 912 | + | |
| 913 | +<div class="ysi-button-widget ysi-button-wrapper" customlabelreplaced=""> | |
| 914 | + <a data-selenium-id="i-m-subarea01_brigil_prop1_floorplans_row_1_column_2_1778168270338_button_1778203433261" class="btn units-btn pr-5 pr-lg-6 mr-3 btn-reach-animated-icon btn-white letter-spacing-1 scrollto-smartclass scrollto-smartclass-target-Inclusions btn-light" href="/champlain-village-urbain/" style="" customlabelreplaced=""> | |
| 915 | + <span aria-hidden="true" class="fas fa-arrow-down mr-2" style="" data-content="" customlabelreplaced=""></span> | |
| 916 | + Inclusions | |
| 917 | + </a> | |
| 918 | +</div> | |
| 919 | + | |
| 920 | + | |
| 921 | +<div class="ysi-button-widget ysi-button-wrapper" customlabelreplaced=""> | |
| 922 | + <a data-selenium-id="i-m-subarea01_brigil_prop1_floorplans_row_1_column_2_1778168270338_button_1778203578601" class="btn units-btn pr-5 pr-lg-6 mt-0 btn btn-outline-white btn-reach-animated-icon letter-spacing-1 scrollto-smartclass scrollto-smartclass-target-Units btn-light" style="" customlabelreplaced=""> | |
| 923 | + <span aria-hidden="true" class="fas fa-arrow-down mr-2" style="" data-content="" customlabelreplaced=""></span> | |
| 924 | + Plans | |
| 925 | + </a> | |
| 926 | +</div></div></div></div><div class="cover center-center no-repeat py-lg-6 px-lg-5 py-4 px-3 bg-secondary container-fluid p-0" customlabelreplaced=""><div class="row card-row no-gutters" customlabelreplaced=""><div class="mb-lg-0 mb-4 text-primary col-12 offset-0 d-flex text-left col-lg-6 text-lg-left justify-content-between justify-content-lg-between align-items-stretch flex-column" customlabelreplaced=""> <p class="text-xl" customlabelreplaced="">Discover our unit plans</p> | |
| 927 | + <div customlabelreplaced=""> | |
| 928 | + | |
| 929 | +<div class="display-3 my-0 py-2 border-top border-primary border-2 font-weight-bold" customlabelreplaced="">5 Blocks</div> | |
| 930 | +<div class="display-3 my-0 py-2 border-top border-primary border-2 font-weight-bold" customlabelreplaced="">1 Tower</div> | |
| 931 | +<div class="display-3 my-0 py-2 border-top border-primary border-2 font-weight-bold" customlabelreplaced="">1-3 Bedrooms</div> | |
| 932 | +<div class="display-3 my-0 py-2 border-top border-bottom border-primary border-2 font-weight-bold" customlabelreplaced="">High-end amenities</div> | |
| 933 | + | |
| 934 | +</div> | |
| 935 | +</div><div class="col-lg-6 col-12 justify-content-center align-items-center" customlabelreplaced=""> <div class="ysi-picture-widget ysi-picture-wrapper w-100 " customlabelreplaced=""> | |
| 936 | + <picture> | |
| 937 | +<source media="(min-width: 2560px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_3200/s3/2/252329/champlain_tower1_view1_final_2025-04-24%203%20(1).png"> | |
| 938 | +<source media="(min-width: 1920px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_2560/s3/2/252329/champlain_tower1_view1_final_2025-04-24%203%20(1).png"> | |
| 939 | +<source media="(min-width: 1440px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1920/s3/2/252329/champlain_tower1_view1_final_2025-04-24%203%20(1).png"> | |
| 940 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1440/s3/2/252329/champlain_tower1_view1_final_2025-04-24%203%20(1).png"> | |
| 941 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/252329/champlain_tower1_view1_final_2025-04-24%203%20(1).png"> | |
| 942 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_992/s3/2/252329/champlain_tower1_view1_final_2025-04-24%203%20(1).png"> | |
| 943 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_768/s3/2/252329/champlain_tower1_view1_final_2025-04-24%203%20(1).png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/252329/champlain_tower1_view1_final_2025-04-24%203%20(1).png" class="w-100 img-fluid" alt="A round wooden table with a bowl on it is in the center of a room with a large window." loading="lazy"> | |
| 944 | +</picture> | |
| 945 | + | |
| 946 | + | |
| 947 | + | |
| 948 | + </div> | |
| 949 | + | |
| 950 | +</div></div></div><div class="cover center-center no-repeat px-lg-5 pb-lg-6 px-3 pb-4 bg-secondary container-fluid p-0" customlabelreplaced=""><div class="row no-gutters" customlabelreplaced=""><div class="order-lg-1 order-2 col-12 offset-0 col-lg-8 justify-content-center align-items-center" customlabelreplaced=""> <div class="ysi-picture-widget ysi-picture-wrapper w-100 " customlabelreplaced=""> | |
| 951 | + <picture> | |
| 952 | +<source media="(min-width: 1920px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2408,h_1600,c_crop/q_auto,f_auto,c_limit,w_2408/s3/2/252329/champlain_bloc5_view1_final_2025-04-24%203.png"> | |
| 953 | +<source media="(min-width: 1440px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2408,h_1600,c_crop/q_auto,f_auto,c_limit,w_1920/s3/2/252329/champlain_bloc5_view1_final_2025-04-24%203.png"> | |
| 954 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2408,h_1600,c_crop/q_auto,f_auto,c_limit,w_1440/s3/2/252329/champlain_bloc5_view1_final_2025-04-24%203.png"> | |
| 955 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2408,h_1600,c_crop/q_auto,f_auto,c_limit,w_1200/s3/2/252329/champlain_bloc5_view1_final_2025-04-24%203.png"> | |
| 956 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2408,h_1600,c_crop/q_auto,f_auto,c_limit,w_992/s3/2/252329/champlain_bloc5_view1_final_2025-04-24%203.png"> | |
| 957 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2408,h_1600,c_crop/q_auto,f_auto,c_limit,w_768/s3/2/252329/champlain_bloc5_view1_final_2025-04-24%203.png"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_2408,h_1600,c_crop/q_auto,f_auto,c_limit,w_576/s3/2/252329/champlain_bloc5_view1_final_2025-04-24%203.png" class="w-100 img-fluid" alt="A living room with a couch, a chair, a table, and a rug." width="2408" height="1600" loading="lazy"> | |
| 958 | +</picture> | |
| 959 | + | |
| 960 | + | |
| 961 | + | |
| 962 | + </div> | |
| 963 | + | |
| 964 | +</div><div class="order-lg-2 order-1 px-lg-5 pb-lg-0 pb-5 text-primary col-12 offset-0 col-lg-4 justify-content-center align-items-center" customlabelreplaced=""> | |
| 965 | + <div class="font-base text-3x font-weight-medium" customlabelreplaced=""> | |
| 966 | + A Space to Live, Work & Unwind | |
| 967 | + </div> | |
| 968 | + <p class="my-4" customlabelreplaced=""> | |
| 969 | +Taking inspiration from best practices in urban densification, design, and lifestyle improvement, Champlain Urban Village brings you luxury apartments shaped to support a modern way of living. Open layouts create generous room for focus and productivity, while spacious balconies form a quiet threshold between indoors and out, extending the living space outward.</p> | |
| 970 | + | |
| 971 | + | |
| 972 | +<p customlabelreplaced="">Within each residence, a careful balance of materials, textures, and proportions defines a refined apartment living experience. Finishes are selected not only for their visual appeal, but for the way they interact with light and space, allowing each home to feel cohesive, thoughtfully composed, and distinctly modern. | |
| 973 | + </p> | |
| 974 | + </div></div></div><div class="scrollto-smartclass-name-Inclusions scrollto-smartclass cover center-center no-repeat px-lg-5 px-3 bg-secondary container-fluid p-0" customlabelreplaced=""><div class="row card-row no-gutters" customlabelreplaced=""><div class="col-lg-8 col-12 justify-content-center align-items-center" customlabelreplaced=""> <div class="w-100" customlabelreplaced="" lang=""><a role="button" href="#BuildingFeatures" class="py-4 w-100 text-3x border-bottom border-primary accordion-smartclass-trigger accordion-smartclass-trigger-BuildingFeatures accordion-smartclass-icon-chevron accordion-smartclass-open accordion-smartclass-group-homeFeatures text-decoration-none" customlabelreplaced="" lang="" aria-expanded="true"><span customlabelreplaced="">Building Features</span><b class="nu nu-icon-chevron ml-3" aria-hidden="true"></b></a></div> | |
| 975 | + <div id="BuildingFeatures" class="p-4 w-100 accordion-smartclass accordion-smartclass-title-BuildingFeatures accordion-smartclass-icon-chevron accordion-smartclass-open accordion-smartclass-group-homeFeatures collapse show" customlabelreplaced="" lang="" role="region" aria-labelledby="Toggle-BuildingFeatures"> | |
| 976 | + <ul class="list-unstyled w-100 features-list pt-4" customlabelreplaced="" lang=""> | |
| 977 | + <li class="h5" customlabelreplaced="" lang=""><span customlabelreplaced="">Rooftop terrace</span></li> | |
| 978 | + <li class="h5" customlabelreplaced="" lang=""><span customlabelreplaced="">Fitness centre</span></li> | |
| 979 | + <li class="h5" customlabelreplaced="" lang=""><span customlabelreplaced="">Pool table</span></li> | |
| 980 | + <li class="h5" customlabelreplaced="" lang=""><span customlabelreplaced="">Common space</span></li> | |
| 981 | + <li class="h5" customlabelreplaced="" lang=""><span customlabelreplaced="">Communal kitchen</span></li> | |
| 982 | + <li class="h5" customlabelreplaced="" lang=""><span customlabelreplaced="">Additional parking available</span></li> | |
| 983 | + <li class="h5" customlabelreplaced="" lang=""><span customlabelreplaced="">Lobby</span></li> | |
| 984 | + <li class="h5" customlabelreplaced="" lang=""><span customlabelreplaced="">On-site community manager</span></li> | |
| 985 | + <li class="h5" customlabelreplaced="" lang=""><span customlabelreplaced="">Elevators</span></li> | |
| 986 | + <li class="h5" customlabelreplaced="" lang=""><span customlabelreplaced="">Secure access to buildings with a key fob</span></li> | |
| 987 | + <li class="h5" customlabelreplaced="" lang=""><span customlabelreplaced="">Security cameras and intercom system</span></li> | |
| 988 | +</ul> | |
| 989 | + </div> <div class="w-100" customlabelreplaced="" lang=""><a role="button" href="#InsuitFeatures" data-toggle="collapse" class="py-4 w-100 text-3x border-bottom border-primary accordion-smartclass-trigger accordion-smartclass-trigger-InsuitFeatures accordion-smartclass-icon-chevron accordion-smartclass-group-homeFeatures text-decoration-none collapsed" customlabelreplaced="" lang="" aria-expanded="false"><span customlabelreplaced="">In-suite Features</span><b class="nu nu-icon-chevron ml-3" aria-hidden="true"></b></a></div> | |
| 990 | + <div id="InsuitFeatures" class="p-4 w-100 accordion-smartclass accordion-smartclass-title-InsuitFeatures accordion-smartclass-icon-chevron collapse accordion-smartclass-group-homeFeatures" customlabelreplaced="" lang="" role="region" aria-labelledby="Toggle-InsuitFeatures"> | |
| 991 | + <ul class="list-unstyled w-100 features-list pt-4" customlabelreplaced="" lang=""> | |
| 992 | + <li class="h5" customlabelreplaced=""><span customlabelreplaced="">Stainless-steel refrigerator</span></li> | |
| 993 | + <li class="h5" customlabelreplaced=""><span customlabelreplaced="">Stainless-steel stove</span></li> | |
| 994 | + <li class="h5" customlabelreplaced=""><span customlabelreplaced="">Stainless-steel dishwasher</span></li> | |
| 995 | + <li class="h5" customlabelreplaced=""><span customlabelreplaced="">Stackable washer and dryer</span></li> | |
| 996 | + <li class="h5" customlabelreplaced=""><span customlabelreplaced="">High-speed internet</span></li> | |
| 997 | + <li class="h5" customlabelreplaced=""><span customlabelreplaced="">Spacious balconies (selected units)</span></li> | |
| 998 | + <li class="h5" customlabelreplaced=""><span customlabelreplaced="">Electric fireplace in the living room (selected units)</span></li> | |
| 999 | + <li class="h5" customlabelreplaced=""><span customlabelreplaced="">Panoramic windows (selected units)</span></li> | |
| 1000 | + <li class="h5" customlabelreplaced=""><span customlabelreplaced="">Private terrace for the penthouses (selected units)</span></li> | |
| 1001 | + <li class="h5" customlabelreplaced=""><span customlabelreplaced="">Outdoor electric vehicle charging station</span></li> | |
| 1002 | + <li class="h5" customlabelreplaced=""><span customlabelreplaced="">Roller shades for windows</span></li> | |
| 1003 | + <li class="h5" customlabelreplaced=""><span customlabelreplaced="">Quartz countertops</span></li> | |
| 1004 | + <li class="h5" customlabelreplaced=""><span customlabelreplaced="">Glass shower (selected units)</span></li> | |
| 1005 | + <li class="h5" customlabelreplaced=""><span customlabelreplaced="">Heating thermostat</span></li> | |
| 1006 | + <li class="h5" customlabelreplaced=""><span customlabelreplaced="">Air conditioning thermostat</span></li> | |
| 1007 | + <li class="h5" customlabelreplaced=""><span customlabelreplaced="">High-end light fixtures, faucets, doors and moulding</span></li> | |
| 1008 | + <li class="h5" customlabelreplaced=""><span customlabelreplaced="">Ceramic backsplash</span></li> | |
| 1009 | + <li class="h5" customlabelreplaced=""><span customlabelreplaced="">Storage lockers ($)</span></li> | |
| 1010 | +</ul> | |
| 1011 | + </div> | |
| 1012 | + </div><div class="mt-lg-0 mt-4 col-12 offset-0 col-lg-4 justify-content-center align-items-center" customlabelreplaced=""> <div class="ysi-picture-widget ysi-picture-wrapper w-100 " customlabelreplaced=""> | |
| 1013 | + <picture> | |
| 1014 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1186,h_1574,c_crop/q_auto,f_auto,c_limit,w_1186/s3/2/252329/dsc09602_3_4_5_6interiornalist01%203.png"> | |
| 1015 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1186,h_1574,c_crop/q_auto,f_auto,c_limit,w_992/s3/2/252329/dsc09602_3_4_5_6interiornalist01%203.png"> | |
| 1016 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1186,h_1574,c_crop/q_auto,f_auto,c_limit,w_768/s3/2/252329/dsc09602_3_4_5_6interiornalist01%203.png"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1186,h_1574,c_crop/q_auto,f_auto,c_limit,w_576/s3/2/252329/dsc09602_3_4_5_6interiornalist01%203.png" class="w-100 img-fluid" alt="A living room with a white couch and a large window." width="1186" height="1574" loading="lazy"> | |
| 1017 | +</picture> | |
| 1018 | + | |
| 1019 | + | |
| 1020 | + | |
| 1021 | + </div> | |
| 1022 | + | |
| 1023 | +</div></div></div><div class="initialized slider-smartclass-dots-hide slider-smartclass-cancel-lg slider-smartclass-gap-10 slider-smartclass-size-md-2 slider-smartclass-size-1 slider-smartclass cover center-center no-repeat py-lg-6 px-lg-5 py-4 px-3 bg-secondary container-fluid p-0" id="Slider-124" customlabelreplaced=""><div class="row card-row no-gutters inactive initialized" customlabelreplaced=""> | |
| 1024 | + | |
| 1025 | + | |
| 1026 | + | |
| 1027 | + | |
| 1028 | +<div class="overlay-20 overlay-row aspect-ratio-5-4-portrait cover center-center no-repeat py-4 px-4 text-white col-12 offset-0 d-flex col-lg-4 justify-content-between align-items-start flex-column" style="background-image:url('https://resource.rentcafe.com/image/upload/q_auto,f_auto/s3/2/252329/Group%202147207223.png')" customlabelreplaced="" data-index="0"> | |
| 1029 | + <div class="text-3x font-weight-medium" customlabelreplaced="">A Quiet Haven</div> | |
| 1030 | + <p customlabelreplaced="">Available in one-, two-, or three-bedroom layouts, each residence is thoughtfully proportioned to offer a calm and comfortable private setting.</p></div><div class="overlay-20 overlay-row aspect-ratio-5-4-portrait cover center-center no-repeat py-4 px-4 text-white col-12 offset-0 d-flex col-lg-4 justify-content-between align-items-start flex-column" style="background-image:url('https://resource.rentcafe.com/image/upload/q_auto,f_auto/s3/2/252329/DSC09847_48_49_50_51Interiornalisés01%202.png')" customlabelreplaced="" data-index="1"> | |
| 1031 | + <div class="text-3x font-weight-medium" customlabelreplaced="">Elevated by Design </div> | |
| 1032 | + <p customlabelreplaced="">Move into a space that feels like a professionally styled home, featuring architectural tray ceilings, expansive layouts, and sophisticated details.</p></div><div class="overlay-20 overlay-row aspect-ratio-5-4-portrait cover center-center no-repeat py-4 px-4 text-white col-12 offset-0 d-flex col-lg-4 justify-content-between align-items-start flex-column" data-ysi-lazyload="url('https://resource.rentcafe.com/image/upload/q_auto,f_auto/s3/2/252329/DSC09662_3_4_5_6Interiornalist01%202.png')" customlabelreplaced="" data-index="2"> | |
| 1033 | + <div class="text-3x font-weight-medium" customlabelreplaced="">Spatial Harmony</div> | |
| 1034 | + <p customlabelreplaced="">Our open design brings continuity to the main living areas, where spaces transition naturally from one to another.</p></div></div><script> | |
| 1035 | +ysi.registerCallback(function(){ | |
| 1036 | +const e=document.querySelector("#Slider-124>.row"), | |
| 1037 | +makeSlider=(e,t)=>{if(e.querySelector(".slider-inner"))return;const o="offsetLeft",l="scrollLeft",n="offsetWidth",i="classList",r="dataset",a="addEventListener",s="createElement",c="setAttribute",h="toggleAttribute",u="style",d="transform",f="translate3d",p="transition",m="remove",g="add",w="append",v="includes",x="length",y="slider-smartclass",b="gap",M="size",E="onscrollend"in window,T="ontouchstart"in document.documentElement;let L,S,A,C,O,R,k,P=!1,z=null,B=e[l],H=e.querySelectorAll(":scope > *"),I=[],N=!1,W=null,q=[];e.closest("[class*='"+y+"']").className.split(" ").forEach(e=>{e.startsWith(y+"-")&&(e=e.startsWith(y+"--")?e.replace(y+"--",""):e.replace(y+"-","")).split("--").forEach(e=>{q.push(e)})});let X,D,Q,U=q.includes("loop"),Y=0,j=!1,F=!1,G=0,J=0,K=0,V=0,Z=0,$=0,_=0,ee=0,te=0,oe=0,le=0,ne=0,ie=!1,re=!1,ae=0,se=Array(H[x]);if(e[n]||e.offsetHeight||e.getClientRects()[x])e.dataset.sliderAwaitingLayout&&delete e.dataset.sliderAwaitingLayout;else{if("true"===e.dataset.sliderAwaitingLayout)return;if("undefined"!=typeof ResizeObserver){e.dataset.sliderAwaitingLayout="true";var ce=new ResizeObserver(function(o){o.forEach(function(o){(o.contentRect.width>0||o.contentRect.height>0)&&(ce.disconnect(),delete e.dataset.sliderAwaitingLayout,e.querySelector(".slider-inner")||makeSlider(e,t))})});return void ce.observe(e)}}H.forEach(t=>{t[n]||t.offsetHeight||t.getClientRects()[x]||e.parentNode.insertBefore(t,e.nextSibling)}),H=e.querySelectorAll(":scope > *");const he=e=>{let t=!0===D.autoscrollonce&&Xe()&&(U?e===H[x]:0===e);if(U){if(F)return;let t=(0-Y/100)%H[x];t<0&&(t+=H[x]);let o=(e-t)%H[x]*100,l=Y;Y-=o,0!==o&&ke(Y,l,"ease-in-out")}else O=e,N=!0,B=H[e][o],L.scrollTo({behavior:"smooth",left:B,top:0}),ze(e);!D.autoscroll||P||D[Q].cancel||t||We()},ue=e=>{let t=document[s]("BUTTON");return t[i][g]("carousel-control-"+e,"gallery-"+e),t[c]("aria-label",("prev"===e?"Previous":"Next")+" Slide"),t[a]("click",t=>{t.target.hasAttribute("aria-disabled")||he(U?"prev"===e?I[0]-1:I[0]+1:"prev"===e?Math.max(0,I[0]-1):Math.min(I[0]+1,H[x]-1))}),t},de=()=>{N=!1},fe=e=>e.touches&&e.touches[0]?e.touches[0].pageX:e.changedTouches&&e.changedTouches[0]?e.changedTouches[0].pageX:e.pageX,pe=e=>T&&e.touches&&e.touches[0]?e.touches[0].clientY:e.clientY,me=()=>{let e=Math.ceil(Number(D&&D[Q]&&D[Q][M])||1);return Math.min(Math.max(e,1),H[x]||1)},ge=()=>L.getBoundingClientRect().width,we=(e,t)=>{e&&(e[u][p]=t)},ve=(e,t)=>{e&&(e[u][d]=f+"("+t+"px, 0, 0)")},xe=e=>{e&&(e[u].position="absolute",e[u].left="0",e[u].top="0",e[u].width=oe+"px",e[u].setProperty("height",le+"px","important"),e[u].flex="none",e[u][p]="none",e[u].visibility="")},ye=()=>{for(let e=0;e<se[x];e++)se[e]&&(se[e][m](),se[e]=null)},be=()=>{if(re=!1,L[u].overflow="",L[u].minHeight="",L[u].height="",!D||!D[Q])return;let e="0 0 calc(100%/"+D[Q][M]+" - "+D[Q][b]+"px * "+(Math.ceil(D[Q][M])-1)+" / "+D[Q][M]+")";L[u][b]=D[Q][b]+"px",H.forEach(t=>{t[u].position="",t[u].left="",t[u].top="",t[u].width="",t[u].removeProperty("height"),t[u].flex=e,t[u][p]="",t[u][d]="",t[u].visibility=""})},Me=e=>{H.forEach((t,o)=>{let l=Pe(e,o);t[u][d]=He(l+"% + "+D[Q][b]*l/100+"px")}),ye()},Ee=(e,t,o)=>{let l=100*o;ye(),be(),Y=G-l,ke(Y,t,"ease-out"),ze(e)},Te=e=>{ye(),be(),ke(G,e,"ease-out")},Le=()=>{ee=(()=>{if(I[x])return I[0];let e=H[x];if(!e)return 0;let t=Math.round((0-Y/100)%e);return t<0&&(t+=e),t%e})(),G=Y,(()=>{let e=H[0],t=H[x]>1?H[1]:e;oe=e[n]||e.getBoundingClientRect().width,te=H[x]>1?t[o]-e[o]:oe,te||(te=oe),ne=L.offsetHeight||L.getBoundingClientRect().height,le=0,H.forEach(e=>{let t=e.offsetHeight||e.getBoundingClientRect().height;t>le&&(le=t)}),le||(le=ne)})(),_=ge(),L[u].scrollSnapType="none",(()=>{let e=me(),t=ee,o=H[x],l=te,n=ne||L.offsetHeight;L[u].overflow="hidden",L[u].position="relative",L[u].minHeight=n+"px",L[u].height=n+"px",L[u][b]="0",ye(),H.forEach((n,i)=>{let r=(i-t+o)%o,a=r<e?r:r-o;xe(n),ve(n,a*l)}),re=!0})()},Se=e=>{P||U&&F||"mousedown"===e.type&&0!==e.button||"touchstart"===e.type&&1!==e.touches.length||(P=!0,N=!1,U?(J=fe(e),K=pe(e),V=Z=$=0,X=void 0,j=!1,ie=!0,setTimeout(function(){ie=!1},250)):(L[u].scrollSnapType="none",ae=fe(e)))},Ae=()=>{if(P||re){if(U){if(!re)return P=!1,X=void 0,void(z=null);let e=H[x],t=me(),o=_||ge(),l=30,n=G-(te?100*V/te:0);if(Math.abs(V)>=l&&j){let l=V>0?Math.ceil(t*V/o):Math.floor(t*V/o);if(0!==l){Ee(((ee+l)%e+e)%e,n,l)}else Te(n)}else{let l=V>0?Math.ceil(t*V/o)-1:Math.floor(t*V/o)+1;if(0!==l){Ee(((ee+l)%e+e)%e,n,l)}else Te(n)}}else(()=>{for(let e=0;e<H[x];e++){let t=H[e];if("left"===z&&t[o]>L[l]||"right"===z&&t[o]+t[n]>L[l]){B=t[o],L.scrollTo({behavior:"smooth",left:B,top:0});break}}})();z=null,P=!1}},Ce=()=>{(P||re)&&Ae()},Oe=e=>{if(!(e=>!!P&&("mousemove"===e.type&&1!==e.buttons||!("touchmove"!==e.type||e.touches&&0!==e.touches.length))&&(Ae(),!0))(e)&&P)if(U){if(F)return;if(V=J-fe(e),Z=K-pe(e),(()=>{if(void 0!==X)return;let e=Math.abs(V),t=Math.abs(Z);e<8&&t<8||(e>t?(X=!0,Le()):(X=!1,P=!1))})(),!P||!re)return;let t=_||ge();V>t&&(V=t),V<-t&&(V=-t),j=V<0&&V<=$||V>0&&V>=$,$=V,(()=>{let e=me(),t=te,o=H[x],l=ee,n=V<0?-e:e,r=new Set;for(let n=0;n<Math.min(e,o);n++){let e=(l+n+o)%o;r.add(e),we(H[e],"none"),ve(H[e],n*t-V)}for(let a=0;a<Math.min(e,o);a++){let e=(l+a+n+o)%o,s=H[e];r.has(e)&&(se[e]||(se[e]=H[e].cloneNode(!0),se[e][i][g]("isClone"),xe(se[e]),L[w](se[e])),s=se[e]),we(s,"none"),ve(s,(a+n)*t-V)}})(),e.cancelable&&e.preventDefault()}else{if("touchmove"===e.type&&1!==e.touches.length)return;let t=fe(e),o=t-ae;if(ae=t,0===o)return;L[u].scrollSnapType="none",z=o<0?"left":"right",L[l]-=o,e.cancelable&&e.preventDefault()}},Re=()=>{B===L[l]&&(L[u].scrollSnapType="")},ke=(e,t,o)=>{if(e===t)return ye(),Me(e),void(F=!1);Be();let l=e<t?-2:0;F=!0,H.forEach((n,r)=>{let s=Pe(e,r),c=s-e+t,h=se[r]?se[r]:n.cloneNode(!0),f=s+100*l*H[x],v=f-e+t;n[u][p]="none",n[u][d]=He(c+"% + "+D[Q][b]*c/100+"px"),L[w](h),h[u][d]=He(v+"% + "+D[Q][b]*v/100+"px"),h[i][g]("isClone"),se[r]=h,L.offsetHeight,n[u][p]=d+" 0.3s "+o,n[a]("transitionend",()=>{n[u][p]="",F=!1},{once:!0}),n[u][d]=He(s+"% + "+D[Q][b]*s/100+"px"),h[u][p]=d+" 0.3s "+o,h[a]("transitionend",()=>{h[u][p]="",h[m]()},{once:!0}),h[u][d]=He(f+"% + "+D[Q][b]*f/100+"px"),se[r]=null})},Pe=(e,t)=>{Be();let o=(e=>{let t=0,o=Be();return e<100*(L[n]/o-H[x])?t=Math.ceil(0-e/H[x]/100):e>0&&(t=Math.floor(o*e/(H[x]*o)/100)),t})(e),l=(e=>{let t=0,o=Be();return L[n],e/100+H[x]<D[Q][M]?t=D[Q][M]<H[x]&&D[Q][M]>H[x]-1?Math.floor((0-e/100-1)%H[x]+1):Math.floor(0-e/100-1)%H[x]:e>0&&(t=H[x]-o*e/100%(H[x]*o)/o-1),t})(e);return Y<100*(D[Q][M]-H[x])?e+=t<l?100*o*H[x]:100*(o-1)*H[x]:Y>0&&(e-=t<=l?100*o*H[x]:100*(o+1)*H[x]),e},ze=e=>{U||(A&&A[h]("aria-disabled",0===e),C&&C[h]("aria-disabled",I[v](S[x]-1)));for(let e=0;e<S[x];e++)S[e][i][m]("active");if(!U)for(;e&&S[e]&&!S[e].offsetParent;)e--;S[e][i][g]("active");for(let t=0;t<H[x];t++)H[t][i].toggle("active",t===e)},Be=()=>{let e=H[x]>1?H[1]:H[0];return e?e[o]:0},He=e=>"translate3d(calc("+e+"), 0, 0)",Ie=e=>{let t=Be(),l=t?100*e[o]/t:0;return e[u][d]&&e[u][d][v](f)&&(l+=parseInt(e[u][d].replace("calc(","").split(f+"(")[1])),l},Ne=()=>{D.autoscroll&&!0!==D[Q].cancel&&We()},We=()=>{clearTimeout(W),W=setTimeout(()=>{H[x]>D[Q][M]&&(U?he(I[0]+1):Xe()?he(0):he(Math.min(I[0]+1,H[x]-1)))},D.hasOwnProperty("interval")?1e3*D.interval:1e4)},qe=()=>{clearTimeout(W)},Xe=()=>U?I[0]===H[x]-1:L[n]+L.scrollLeft>=H.length*(H[0][n]-2)+(H.length-1)*D[Q].gap;L=document.createElement("div"),L.className="slider-inner",e[w](L),A=ue("prev"),C=ue("next"),e[w](A,C),(()=>{let t=[];H.forEach((e,o)=>{t[o]=0});let o={root:e,threshold:function(e){for(var t=[],o=0;o<=e;o++)t.push(o/e);return t}(20)},l=new IntersectionObserver((e,o)=>{let l=D[Q][M],n=l==parseInt(l)?.5:(l-parseInt(l))/2;if(e.forEach(e=>{let o=parseInt(e.target[r].index)||0;e.intersectionRatio>=1-n?I[v](o)||I.push(o):I=I.filter(e=>e!==o),t[o]=Math.round(20*e.intersectionRatio)/20}),U?I.sort(function(e,t){let o=Ie(H[e]),l=Ie(H[t]);return o<l?-1:o>l?1:0}):I.sort(function(e,t){return e-t}),!N)for(let e=0;e<I[x];e++)if(t[I[e]]>=1-n){ze(I[e]);break}I[x]&&(I[0]===O&&(N=!1,O=null),!E&&N&&(clearTimeout(R),R=setTimeout(function(){Re(),N=!1},500)))},o);k=document[s]("UL"),k[c]("role","tablist"),k[i][g]("carousel-indicators","gallery-dots");for(let e=0;e<H[x];e++){l.observe(H[e]),H[e][r].index=e;let t=document[s]("LI");t[c]("role","tab"),t[a]("click",t=>{he(e)}),k.appendChild(t)}S=k.children,e[w](k)})(),ysi.MQBreakpointListener&&(D=(()=>{let e=[];e.xs={min:0,gap:0,size:1,arrows:!0,dots:!0};let t=1,o=0,l=!1,n=null,i=!0,r=!0,a={xs:{min:0},sm:{min:576},md:{min:768},lg:{min:992},xl:{min:1200},"2xl":{min:1440},"3xl":{min:1920},"4xl":{min:2560}},s="xs";return["xs","sm","md","lg","xl","2xl","3xl","4xl"].forEach(c=>{["cancel","size","gap","arrows","dots"].forEach(h=>{q.forEach(u=>{let d=u.split("-");if("xs"===c&&1===d[x]&&d[0]===h&&"cancel"===h||"xs"===c&&2===d[x]&&d[0]===h&&"cancel"!==h||""!==c&&2===d[x]&&d[0]===h&&"cancel"===h&&d[1]===c||""!==c&&3===d[x]&&d[0]===h&&"cancel"!==h&&d[1]===c){let u;if("xs"!==c&&(e[s].max=a[c].min-.01),u="cancel"==h||(2==d[x]?d[1]:d[2]),"size"===h&&(t=u),"gap"===h&&(o=u),"show"!==u&&"hide"!==u||("arrows"===h&&(i=u),"dots"===h&&(r=u)),"cancel"===h&&(l=u),e.hasOwnProperty(c)||(e[c]={},a[c].hasOwnProperty("min")&&(e[c].min=a[c].min)),l)return e[c].cancel=l,n=c,e;e[c].size=t,e[c].gap=o,e[c].arrows=i,e[c].dots=r}})}),e.hasOwnProperty(c)&&(s=c)}),q.forEach(t=>{if(t.startsWith("autoscroll")){e.autoscroll=!0,t.startsWith("autoscroll-once")&&(e.autoscrollonce=!0);let o=t.substring(t.lastIndexOf("-")+1);o===parseInt(o).toString()&&(e.interval=o)}}),e})(),ysi.MQBreakpointListener.registerCallback(function(o){let l=o.split("-");Q=l[2];let n=["xs","sm","md","lg","xl","2xl","3xl","4xl"];for(let e=n.indexOf(Q);e>=0;e--)if(D.hasOwnProperty(n[e])){Q=n[e];break}if(D.hasOwnProperty(Q))if(!0===D[Q].cancel){for(qe(),e[i][m]("active"),e[i][g]("inactive"),t&&(L[u][b]="",H.forEach(e=>{e[u].flex=""})),U&&(Y=0,H.forEach(e=>{e[u][d]=""})),e[w](...H);L.lastElementChild;)L.removeChild(L.lastElementChild);L[m](),A[m](),C[m](),k[m](),F=!1}else{if(t){let e="0 0 calc(100%/"+D[Q][M]+" - "+D[Q][b]+"px * "+(Math.ceil(D[Q][M])-1)+" / "+D[Q][M]+")",t=H[x]-Math.floor(D[Q][M])+1;if(L[u][b]=D[Q][b]+"px",H.forEach(t=>{t[u].flex=e}),!U)for(let e=0;e<S[x];e++)S[e][u].display=e<t?"":"none"}if(k[u].display="hide"===D[Q].dots||D[Q][M]>=H[x]?"none":"",A[u].display=C[u].display="hide"===D[Q].arrows||D[Q][M]>=H[x]?"none":"",U){let e=100*(H.length-I[0]);H.forEach((t,o)=>{o<I[0]&&(t[u][d]=He(e+"% + "+D[Q][b]*e/100+"px"))})}e[i].contains("active")||(e[i][g]("active"),e[i][m]("inactive"),L[w](...H),e[w](L,A,C,k),F=!1,Ne())}},!0)),D.autoscroll||(L[a]("touchstart",de),U?(L[a]("touchstart",Se,{passive:!0}),L[a]("mousedown",Se),window[a]("touchmove",Oe,{passive:!1}),window[a]("mousemove",Oe),window[a]("touchend",Ae),window[a]("mouseup",Ae),L[u].touchAction="pan-y"):(L[a]("mousedown",Se),L[a]("touchstart",Se,{passive:!0}),window[a]("mousemove",Oe),window[a]("touchmove",Oe,{passive:!1}),window[a]("mouseup",Ae),window[a]("touchend",Ae),L[u].touchAction="pan-y"),window[a]("touchcancel",Ce),window[a]("pointerup",Ce),window[a]("pointercancel",Ce),window[a]("blur",Ce)),E&&L[a]("scrollend",Re),e[i][g]("initialized")}; | |
| 1038 | +if(!e.querySelector(".slider-inner"))makeSlider(e,false); | |
| 1039 | +}); | |
| 1040 | +</script><style>@media (max-width: 991.99px) { [class*='slider-smartclass-']{padding:0}[class*='slider-smartclass-']>.row{margin:0}#Slider-124>.row:has(.slider-inner){position:relative;display:block !important;} | |
| 1041 | +#Slider-124>.row:not(:has(.slider-inner)), | |
| 1042 | +#Slider-124>.row .slider-inner{position:relative;display:flex;overflow-x:scroll;overflow-y:hidden;padding:0!important;flex-direction:row;white-space:nowrap;width:100%;margin-left:0;margin-right:0;scroll-snap-type:x mandatory;flex-wrap:nowrap!important;justify-content:start!important;-webkit-user-select-x:none;user-select:none}[class*='slider-smartclass-'] .slider-inner ~ .gallery-dots{flex-wrap:wrap;justify-content:center;text-align:center;padding:.125rem 5%;left:0;right:0;visibility:unset;display:flex;position:relative;z-index:unset;width:100%;bottom:unset;top:unset;}[class*='slider-smartclass-'] .slider-inner ~ .gallery-dots li{cursor:pointer}#Slider-124>.row:not(:has(.slider-inner))>*,#Slider-124>.row > .slider-inner>* {flex-direction:column;white-space:normal;scroll-snap-align:start;z-index:1;position:relative}#Slider-124>.row img{pointer-events:none}[class*='slider-smartclass-'] .slider-inner ~ .carousel-control-next,[class*='slider-smartclass-'] .slider-inner ~ .carousel-control-prev{position:absolute;flex:0;height:min-content;background:0 0;transition:opacity .6s;border:none;cursor:pointer;z-index:2;top:calc(50% - 14px - .125rem);transform:translateY(-50%)}[class*='slider-smartclass-'] .slider-inner ~ .carousel-control-next:before,[class*='slider-smartclass-'] .slider-inner ~ .carousel-control-prev:before{font-family:'Font Awesome 5';font-weight:900;font-size:36px;line-height:initial;color:#fff;text-shadow:0 0 10px rgba(0,0,0,0.8);content:"\f137"}[class*='slider-smartclass-'] .slider-inner ~ .carousel-control-next:before{content:"\f138"}[class*='slider-smartclass-'] .slider-inner ~ .carousel-control-next[aria-disabled],[class*='slider-smartclass-'] .slider-inner ~ .carousel-control-prev[aria-disabled]{opacity:.5;cursor:default;pointer-events:none}@media (scripting: enabled) { #Slider-124>.row:not(:has(.slider-inner)){overflow: hidden}}#Slider-124>.row:has(.slider-inner),#Slider-124>.row .slider-inner{scrollbar-width:none}#Slider-124>.row:has(.slider-inner)::-webkit-scrollbar,#Slider-124>.row .slider-inner::-webkit-scrollbar{display:none}#Slider-124>.row:not(:has(.slider-inner))>*,#Slider-124>.row .slider-inner>* {max-width: none}#Slider-124>.row .slider-inner > .h-100 {height:auto !important}#Slider-124>.row:not(:has(.slider-inner))>*, | |
| 1043 | +#Slider-124>.row .slider-inner>* {overflow:hidden}@media (min-width: 0px) and (max-width: 767.99px) {#Slider-124>.row .slider-inner:not(:has(> :nth-child(2))) ~ .carousel-control-next,#Slider-124>.row .slider-inner:not(:has(> :nth-child(2))) ~ .carousel-control-previous,#Slider-124>.row .slider-inner:not(:has(> :nth-child(2))) ~ .carousel-indicators,#Slider-124>.row .carousel-indicators li:nth-last-child(-n+0) { display: none; }#Slider-124>.row + .carousel-indicators{display:none}}@media (min-width: 0px) {#Slider-124>.row:not(:has(.slider-inner))>*,#Slider-124>.row .slider-inner>* {flex: 0 0 calc(100%/1 - 10px * 0)}#Slider-124>.row:not(:has(.slider-inner)),#Slider-124>.row .slider-inner {gap: 10px}}@media (min-width: 768px) and (max-width: 991.99px) {#Slider-124>.row .slider-inner:not(:has(> :nth-child(3))) ~ .carousel-control-next,#Slider-124>.row .slider-inner:not(:has(> :nth-child(3))) ~ .carousel-control-previous,#Slider-124>.row .slider-inner:not(:has(> :nth-child(3))) ~ .carousel-indicators,#Slider-124>.row .carousel-indicators li:nth-last-child(-n+1) { display: none; }#Slider-124>.row + .carousel-indicators{display:none}}@media (min-width: 768px) {#Slider-124>.row:not(:has(.slider-inner))>*,#Slider-124>.row .slider-inner>* {flex: 0 0 calc(100%/2 - 10px * 0.5)}#Slider-124>.row:not(:has(.slider-inner)),#Slider-124>.row .slider-inner {gap: 10px}}@media (min-width: 992px) {#Slider-124>.row .slider-inner:not(:has(> :nth-child(3))) ~ .carousel-control-next,#Slider-124>.row .slider-inner:not(:has(> :nth-child(3))) ~ .carousel-control-previous,#Slider-124>.row .slider-inner:not(:has(> :nth-child(3))) ~ .carousel-indicators,#Slider-124>.row .carousel-indicators li:nth-last-child(-n+1) { display: none; }#Slider-124>.row + .carousel-indicators{display:none}}@media (min-width: 992px) {#Slider-124>.row:not(:has(.slider-inner))>*,#Slider-124>.row .slider-inner>* {flex: 0 0 calc(100%/2 - 10px * 0.5)}#Slider-124>.row:not(:has(.slider-inner)),#Slider-124>.row .slider-inner {gap: 10px}}}@media (min-width: 992px) { #Slider-124>.row .carousel-control-wrapper, | |
| 1044 | +#Slider-124>.row .carousel-indicators { display: none }}</style></div><div class="cover center-center no-repeat pt-lg-5 pt-4 container-fluid p-0" customlabelreplaced=""><div class="row no-gutters" customlabelreplaced=""><div class="col-lg-12 col-12 justify-content-center align-items-center" customlabelreplaced=""></div></div></div><div class="scrollto-smartclass-name-Units scrollto-smartclass pt-lg-6 pt-4" customlabelreplaced=""><div class="container" customlabelreplaced=""><div class="row" customlabelreplaced=""><div class="pb-3 col-12 offset-0 d-flex justify-content-start align-items-stretch flex-column text-center col-lg-12 text-lg-center" customlabelreplaced=""><h1 class="page-heading" data-selenium-id="SID_h1Tag" customlabelreplaced="">1 & 2 Bedroom Apartments in Gatineau</h1></div></div></div></div><div class="pb-lg-6 pb-4" customlabelreplaced=""><div class="container" customlabelreplaced=""><div class="row" customlabelreplaced=""><div class="justify-content-start align-items-stretch flex-column d-flex text-left col-12 col-lg-12" customlabelreplaced=""> | |
| 1045 | + | |
| 1046 | + | |
| 1047 | + | |
| 1048 | + | |
| 1049 | + | |
| 1050 | + <div class="row" customlabelreplaced=""> | |
| 1051 | + <div class="col-12 mb-3" data-selenium-id="FloorplansTopNarrative" customlabelreplaced=""> | |
| 1052 | + | |
| 1053 | + | |
| 1054 | +At Champlain Village, every detail of our residences has been crafted with balance, beauty, and functionality in mind. Our collection of apartment rentals offers a variety of layouts designed to match your lifestyle, whether you prefer the intimacy of a one-bedroom retreat or the spaciousness of a larger residence. | |
| 1055 | + | |
| 1056 | + </div> | |
| 1057 | + </div> | |
| 1058 | + | |
| 1059 | + <div class="row" customlabelreplaced=""> | |
| 1060 | + <div class="col-12 page-content-floorplans floorplans-layout-tab" customlabelreplaced=""> | |
| 1061 | + | |
| 1062 | + | |
| 1063 | + | |
| 1064 | + <div id="fp-container" customlabelreplaced=""> | |
| 1065 | + | |
| 1066 | + | |
| 1067 | + | |
| 1068 | + | |
| 1069 | + | |
| 1070 | + | |
| 1071 | +<!-- Optimized Floor Plans Layout Start --> | |
| 1072 | +<div class="page-content-floorplans optimized mt-3 pagebreak-before" customlabelreplaced=""> | |
| 1073 | + | |
| 1074 | + <!-- views menu --> | |
| 1075 | + | |
| 1076 | + <div class="tab-content" customlabelreplaced=""> | |
| 1077 | + <div class="tab-pane fade show active" id="gridView" customlabelreplaced=""> | |
| 1078 | + | |
| 1079 | + <!-- START: filters --> | |
| 1080 | + <div id="floorplans-filter" class="border-bottom mb-5" customlabelreplaced=""> | |
| 1081 | + <form class="form-row row" id="aptsearch" method="post" action="/availableunits"> | |
| 1082 | + <input type="hidden" id="request-verification-token" name="request-verification-token" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ0FkYkBTilZTyBqOZxXdvnFjTcUDvUyvEdzZneGZ_hHd_ava2f1GBi-2k83j4N3uEEuulEFqpAeP_YCF15magJolKzfnKkJf_FF3xyFPl7SJHdpHL4AkP1xaoxsMLfclwA"> | |
| 1083 | + <!-- Beds dropdown --> | |
| 1084 | + <div class="form-group col-6 col-sm-6 col-md" customlabelreplaced=""> | |
| 1085 | + <div id="beds-dropdown" class="dropdown floating-label floating-label-sm" customlabelreplaced=""> | |
| 1086 | + <button class="btn btn-sm dropdown-toggle pr-5" type="button" id="beds-dropdown-toggle" data-toggle="dropdown" data-persist="true" aria-expanded="false" customlabelreplaced=""><span>Bedrooms</span> </button> | |
| 1087 | + <div class="p-3 dropdown-menu text-sm" aria-labelledby="beds-dropdown-toggle" customlabelreplaced=""> | |
| 1088 | + <fieldset> | |
| 1089 | + <legend class="sr-only" customlabelreplaced="">Choose your desired number of bedrooms</legend> | |
| 1090 | + <div class="checkbox" customlabelreplaced=""> | |
| 1091 | + <input id="1-beds-checkbox" type="checkbox" value="1" name="bedrooms" class="beds-checkbox mr-2"> | |
| 1092 | + <label for="1-beds-checkbox" customlabelreplaced=""> | |
| 1093 | + 1 Bedroom | |
| 1094 | + </label> | |
| 1095 | + </div> | |
| 1096 | + <div class="checkbox" customlabelreplaced=""> | |
| 1097 | + <input id="2-beds-checkbox" type="checkbox" value="2" name="bedrooms" class="beds-checkbox mr-2"> | |
| 1098 | + <label for="2-beds-checkbox" customlabelreplaced=""> | |
| 1099 | + 2 Bedrooms | |
| 1100 | + </label> | |
| 1101 | + </div> | |
| 1102 | + </fieldset> | |
| 1103 | + <div customlabelreplaced=""> | |
| 1104 | + <button id="beds-clear" type="button" class="float-left d-none btn btn-link font-base text-muted text-capitalize btn-sm" customlabelreplaced="">Clear</button> | |
| 1105 | + <button id="beds-done" type="button" class="float-right btn btn-link font-base text-black text-capitalize btn-sm" customlabelreplaced="">Done</button> | |
| 1106 | + </div> | |
| 1107 | + </div> | |
| 1108 | + </div> | |
| 1109 | + </div> | |
| 1110 | + <!-- Baths dropdown --> | |
| 1111 | + <div class="form-group col-6 col-sm-6 col-md" customlabelreplaced=""> | |
| 1112 | + <div id="baths-dropdown" class="dropdown floating-label floating-label-sm" customlabelreplaced=""> | |
| 1113 | + <button class="btn btn-sm dropdown-toggle pr-5" type="button" id="baths-dropdown-toggle" data-toggle="dropdown" data-persist="true" aria-expanded="false" customlabelreplaced=""><span>Bathrooms</span> </button> | |
| 1114 | + <div class="p-3 dropdown-menu text-sm" aria-labelledby="baths-dropdown-toggle" customlabelreplaced=""> | |
| 1115 | + <fieldset> | |
| 1116 | + <legend class="sr-only" customlabelreplaced="">Choose your desired number of bathrooms</legend> | |
| 1117 | + <div class="checkbox" customlabelreplaced=""> | |
| 1118 | + <input id="1-baths-checkbox" type="checkbox" value="1" name="bathrooms" class="baths-checkbox mr-2"> | |
| 1119 | + <label for="1-baths-checkbox" customlabelreplaced=""> | |
| 1120 | + 1 Bathroom | |
| 1121 | + </label> | |
| 1122 | + </div> | |
| 1123 | + </fieldset> | |
| 1124 | + <div id="baths-error" class="dropdown-error" customlabelreplaced=""></div> | |
| 1125 | + <div customlabelreplaced=""> | |
| 1126 | + <button id="baths-clear" type="button" class="d-none float-left btn btn-sm btn-link font-base text-muted text-capitalize" customlabelreplaced="">Clear</button> | |
| 1127 | + <button id="baths-done" type="button" class="float-right btn btn-sm btn-link font-base text-black text-capitalize" customlabelreplaced="">Done</button> | |
| 1128 | + </div> | |
| 1129 | + </div> | |
| 1130 | + </div> | |
| 1131 | + </div> | |
| 1132 | + <!-- Unit size dropdown --> | |
| 1133 | + <div class="form-group col-12 col-sm-6 col-md" customlabelreplaced=""> | |
| 1134 | + <div id="unit-size-dropdown" class="dropdown floating-label floating-label-sm" customlabelreplaced=""> | |
| 1135 | + <button class="btn btn-sm dropdown-toggle pr-5" type="button" id="unit-size-dropdown-toggle" data-toggle="dropdown" data-persist="true" aria-expanded="false" customlabelreplaced=""> | |
| 1136 | + <span customlabelreplaced="">Unit Size</span> | |
| 1137 | + </button> | |
| 1138 | + <div class="p-3 dropdown-menu dropdown-menu-right text-sm" aria-labelledby="unit-size-dropdown-toggle" customlabelreplaced=""> | |
| 1139 | + <div class="range" customlabelreplaced=""> | |
| 1140 | + <div class="field" customlabelreplaced=""> | |
| 1141 | + <div class="input-group-sm" customlabelreplaced=""> | |
| 1142 | + <div class="floating-label floating-label-sm" customlabelreplaced=""> | |
| 1143 | + <label for="min-unit-size" customlabelreplaced="">Min</label> | |
| 1144 | + <input aria-describedby="unit-size-error" aria-label="minimum square Feet" id="min-unit-size" class="form-control form-control-sm" name="min-unit-size" type="number" data-max="995" data-min="0" data-arealabel="Sq. Ft." min="0" step="100" placeholder="Min"> | |
| 1145 | + </div> | |
| 1146 | + <div class="input-group-append" customlabelreplaced=""> | |
| 1147 | + <span class="input-group-text" customlabelreplaced="">Sq. Ft.</span> | |
| 1148 | + </div> | |
| 1149 | + </div> | |
| 1150 | + </div> | |
| 1151 | + <div class="p-2" customlabelreplaced=""> to </div> | |
| 1152 | + <div class="field" customlabelreplaced=""> | |
| 1153 | + <div class="input-group-sm" customlabelreplaced=""> | |
| 1154 | + <div class="floating-label floating-label-sm" customlabelreplaced=""> | |
| 1155 | + <label for="max-unit-size" customlabelreplaced="">Max</label> | |
| 1156 | + <input aria-describedby="unit-size-error" aria-label="maximum square Feet" id="max-unit-size" class="form-control form-control-sm" name="max-unit-size" type="number" data-max="995" data-min="0" data-arealabel="Sq. Ft." min="0" step="100" placeholder="Max"> | |
| 1157 | + </div> | |
| 1158 | + <div class="input-group-append" customlabelreplaced=""> | |
| 1159 | + <span class="input-group-text" customlabelreplaced="">Sq. Ft.</span> | |
| 1160 | + </div> | |
| 1161 | + </div> | |
| 1162 | + </div> | |
| 1163 | + </div> | |
| 1164 | + <div id="unit-size-error" aria-hidden="true" class="dropdown-error" customlabelreplaced=""></div> | |
| 1165 | + <div customlabelreplaced=""> | |
| 1166 | + <button id="unit-size-clear" type="button" class="d-none float-left btn btn-sm btn-link font-base text-muted text-capitalize" customlabelreplaced="">Clear</button> | |
| 1167 | + <button id="unit-size-done" type="button" class="float-right btn btn-sm btn-link font-base text-black text-capitalize" customlabelreplaced="">Done</button> | |
| 1168 | + </div> | |
| 1169 | + </div> | |
| 1170 | + </div> | |
| 1171 | + </div> | |
| 1172 | + <!-- Rent dropdown --> | |
| 1173 | + <div class="form-group col-12 col-sm-6 col-md" customlabelreplaced=""> | |
| 1174 | + <div id="rent-dropdown" class="dropdown floating-label floating-label-sm" data-currency="$" customlabelreplaced=""> | |
| 1175 | + <button id="rent-dropdown-toggle" class="btn btn-sm dropdown-toggle pr-5" type="button" data-toggle="dropdown" data-persist="true" aria-expanded="false" customlabelreplaced=""> | |
| 1176 | + <span customlabelreplaced="">Price Range </span> | |
| 1177 | + </button> | |
| 1178 | + <div class="p-3 dropdown-menu dropdown-menu-right text-sm" aria-labelledby="rent-dropdown-toggle" customlabelreplaced=""> | |
| 1179 | + <div class="range" customlabelreplaced=""> | |
| 1180 | + <div class="field" customlabelreplaced=""> | |
| 1181 | + <div class="input-group-sm" customlabelreplaced=""> | |
| 1182 | + <div class="input-group-prepend" customlabelreplaced=""> | |
| 1183 | + <span class="input-group-text" customlabelreplaced="">$</span> | |
| 1184 | + </div> | |
| 1185 | + <div class="floating-label floating-label-sm" customlabelreplaced=""> | |
| 1186 | + <label for="min-rent" customlabelreplaced="">Min</label> | |
| 1187 | + <input aria-describedby="rent-error" aria-label="Minimum Price" id="min-rent" class="form-control form-control-sm" name="min-rent" type="number" data-max="2920" data-min="1560" min="0" step="100" placeholder="Min"> | |
| 1188 | + </div> | |
| 1189 | + </div> | |
| 1190 | + </div> | |
| 1191 | + <div class="p-2" customlabelreplaced=""> to </div> | |
| 1192 | + <div class="field" customlabelreplaced=""> | |
| 1193 | + <div class="input-group-sm" customlabelreplaced=""> | |
| 1194 | + <div class="input-group-prepend" customlabelreplaced=""> | |
| 1195 | + <span class="input-group-text" customlabelreplaced="">$</span> | |
| 1196 | + </div> | |
| 1197 | + <div class="floating-label floating-label-sm" customlabelreplaced=""> | |
| 1198 | + <label for="max-rent" customlabelreplaced="">Max</label> | |
| 1199 | + <input aria-describedby="rent-error" aria-label="Maximum Price" id="max-rent" class="form-control form-control-sm" name="max-rent" type="number" data-max="2920" data-min="1560" min="0" step="100" placeholder="Max"> | |
| 1200 | + </div> | |
| 1201 | + </div> | |
| 1202 | + </div> | |
| 1203 | + </div> | |
| 1204 | + <div id="rent-error" aria-hidden="true" class="dropdown-error" role="alert" customlabelreplaced=""></div> | |
| 1205 | + <div customlabelreplaced=""> | |
| 1206 | + <button id="rent-clear" type="button" class="d-none float-left btn btn-sm btn-link font-base text-muted text-capitalize" customlabelreplaced="">Clear</button> | |
| 1207 | + <button id="rent-done" type="button" class="float-right btn btn-sm btn-link font-base text-black text-capitalize" customlabelreplaced="">Done</button> | |
| 1208 | + </div> | |
| 1209 | + </div> | |
| 1210 | + </div> | |
| 1211 | + </div> | |
| 1212 | + <!-- Move-in date --> | |
| 1213 | + <div class="form-group input-group col-12 col-sm-6 col-md filter-input floating-label floating-label-sm" customlabelreplaced=""> | |
| 1214 | + <label for="move-in-date" customlabelreplaced="">Move-In Date</label> | |
| 1215 | + <input type="text" class="form-control form-control-sm" id="move-in-date" name="move-in-date" value="" placeholder="dd/MM/yyyy" customlabelreplaced=""> | |
| 1216 | + <div class="input-group-append" customlabelreplaced=""> | |
| 1217 | + <button class="btn btn-light btn-sm border" id="move-in-date-button" type="button" aria-label="Open calendar" customlabelreplaced=""><span aria-hidden="true" class="fa fa-calendar text-muted" customlabelreplaced=""></span></button> | |
| 1218 | + </div> | |
| 1219 | + <input type="hidden" name="showAvailability" id="showAvailability" value="0"> | |
| 1220 | + </div> | |
| 1221 | + <!-- Apartment number --> | |
| 1222 | + <input name="__RequestVerificationToken" type="hidden" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ0FkYkBTilZTyBqOZxXdvnFjTcUDvUyvEdzZneGZ_hHd_ava2f1GBi-2k83j4N3uEEuulEFqpAeP_YCF15magJolKzfnKkJf_FF3xyFPl7SJHdpHL4AkP1xaoxsMLfclwA"></form> | |
| 1223 | + </div> | |
| 1224 | + <!-- END: filters --> | |
| 1225 | + | |
| 1226 | + | |
| 1227 | + <div id="floorplans-container" class="row align-items-stretch" role="alert" aria-live="assertive" customlabelreplaced=""> | |
| 1228 | + | |
| 1229 | + | |
| 1230 | +<!-- Hidden input for layout type (false = optimized) --> | |
| 1231 | +<input type="hidden" id="UseUpdatedFloorPlanLayout" name="UseUpdatedFloorPlanLayout" value="false"> | |
| 1232 | + | |
| 1233 | + | |
| 1234 | + | |
| 1235 | + <div id="fp-container-6743029" class=" col-sm-6 col-lg-4 fp-container pb-4 mb-2 col-12 " translate-content="" customlabelreplaced=""> | |
| 1236 | + <div class="" customlabelreplaced=""> | |
| 1237 | + <div class="card text-center h-100 " customlabelreplaced=""> | |
| 1238 | + <div class="card-header bg-transparent border-bottom-0 pt-4 pb-0" customlabelreplaced=""> | |
| 1239 | + <h2 id="fp-header-0" class="card-title h4 font-weight-bold text-capitalize" customlabelreplaced=""> | |
| 1240 | + 1 Bedroom | |
| 1241 | + </h2> | |
| 1242 | + | |
| 1243 | + <ul class="list-unstyled list-inline mb-2 text-sm" customlabelreplaced=""> | |
| 1244 | + | |
| 1245 | + | |
| 1246 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1247 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bed text-dark text-md mr-1" customlabelreplaced=""></span>1 <span customlabelreplaced="">Bed</span></div> | |
| 1248 | + </li> | |
| 1249 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1250 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bathroom text-dark text-md mr-1" customlabelreplaced=""></span>1 <span customlabelreplaced="">Bath</span></div> | |
| 1251 | + </li> | |
| 1252 | + </ul> | |
| 1253 | + | |
| 1254 | + | |
| 1255 | + | |
| 1256 | + </div> | |
| 1257 | + <div class="card-img fp-thumb px-3 d-flex justify-content-center align-items-center" customlabelreplaced=""> | |
| 1258 | + <a class="modal-button mw-100 mh-100 show-floorplans-image-button btn btn-link p-0" aria-label="1 Bedroom Floor plan image, opens a dialog" href="javascript:void(0)" aria-controls="fp-modal" data-screen="modal-content-6743029" data-image-modal="modal-body-6743029" data-toggle="modal" data-imagemodal-label="fp-modalLabel6743029" data-target="#fp-modal" onclick="(function(){document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6743029')})();" customlabelreplaced=""> | |
| 1259 | + <div class="ysi-picture-widget ysi-picture-wrapper " customlabelreplaced=""> | |
| 1260 | + <picture> | |
| 1261 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/20bonnerenommee_type_1cc(1).png"> | |
| 1262 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540,h_260/s3/2/252329/20bonnerenommee_type_1cc(1).png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/20bonnerenommee_type_1cc(1).png" class="card-img-top px-1 img-fluid" alt="A floor plan of a house with a balcony, kitchen, and two bathrooms." width="489" height="260"> | |
| 1263 | +</picture> | |
| 1264 | + | |
| 1265 | + | |
| 1266 | + | |
| 1267 | + </div> | |
| 1268 | + | |
| 1269 | + | |
| 1270 | + </a> | |
| 1271 | + </div> | |
| 1272 | + <div class="card-body" customlabelreplaced=""> | |
| 1273 | + <div class="p-2 fieldset bg-light border rounded d-flex flex-column align-items-center justify-content-center mb-2" customlabelreplaced=""> | |
| 1274 | +<p class="legend" customlabelreplaced=""></p> | |
| 1275 | + | |
| 1276 | + | |
| 1277 | + <div class="d-flex align-items-center" customlabelreplaced=""> | |
| 1278 | + <span class="font-weight-bold mb-1 text-md" customlabelreplaced=""> | |
| 1279 | + <span class="text-sm text-muted" customlabelreplaced=""></span> | |
| 1280 | + Call for details | |
| 1281 | + <span class="text-sm text-muted" customlabelreplaced=""></span> | |
| 1282 | + </span> | |
| 1283 | + | |
| 1284 | + </div> | |
| 1285 | + | |
| 1286 | + | |
| 1287 | + | |
| 1288 | + | |
| 1289 | + | |
| 1290 | + </div> | |
| 1291 | + | |
| 1292 | + <div class="row" customlabelreplaced=""> | |
| 1293 | + <div class="btn btn-outline-dark btn-block modal-button w-100" style="visibility:hidden;" customlabelreplaced=""> | |
| 1294 | + <wbr> </div> | |
| 1295 | + <div class="col-12 my-2 " customlabelreplaced=""> | |
| 1296 | + <a href="#myContactModal" role="button" class="btn btn-primary btn-block btn-block track-dialog dialog-button floorplan-action-button" data-floorplan-name="1 Bedroom" data-modal-url="/champlain-village-urbain/contactus?IsDialog=1" data-selenium-id="floorplan-0-contact-btn" onclick="setGA4Cookie('GT', '1 Bedroom', '1', '0', '0', '1600', '1600');" customlabelreplaced=""> | |
| 1297 | + Contact Us <span class="sr-only" customlabelreplaced=""> for 1 Bedroom , opens a dialog</span> | |
| 1298 | + </a> | |
| 1299 | + </div> | |
| 1300 | + | |
| 1301 | + <div class="col-12" customlabelreplaced=""> | |
| 1302 | + <div class="btn-group dropup w-100" customlabelreplaced=""> | |
| 1303 | + <a id="guided-tour-btn-0" href="javascript:void(0);" class="btn btn-outline-dark btn-block floorplan-action-button" onclick="setGA4Cookie('GT', '1 Bedroom', '1', '0', '0', '1600', '1600'); ysi.floorplanOptimized.tourPageRedirect('/champlain-village-urbain/scheduletour?tourType=GT&floorplan=1 Bedroom&beds=1')" data-floorplan-name="1 Bedroom" customlabelreplaced=""> | |
| 1304 | + Guided Tour <span class="sr-only" customlabelreplaced=""> for 1 Bedroom</span> | |
| 1305 | + </a> | |
| 1306 | + </div> | |
| 1307 | + </div> | |
| 1308 | + </div> | |
| 1309 | + | |
| 1310 | + </div> | |
| 1311 | + | |
| 1312 | + </div> | |
| 1313 | + </div> | |
| 1314 | + </div> | |
| 1315 | + <div id="fp-container-5837919" class=" col-sm-6 col-lg-4 fp-container pb-4 mb-2 col-12 " translate-content="" customlabelreplaced=""> | |
| 1316 | + <div class="" customlabelreplaced=""> | |
| 1317 | + <div class="card text-center h-100 " customlabelreplaced=""> | |
| 1318 | + <div class="card-header bg-transparent border-bottom-0 pt-4 pb-0" customlabelreplaced=""> | |
| 1319 | + <h2 id="fp-header-1" class="card-title h4 font-weight-bold text-capitalize" customlabelreplaced=""> | |
| 1320 | + 2 Bedrooms* | |
| 1321 | + </h2> | |
| 1322 | + | |
| 1323 | + <ul class="list-unstyled list-inline mb-2 text-sm" customlabelreplaced=""> | |
| 1324 | + | |
| 1325 | + | |
| 1326 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1327 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bed text-dark text-md mr-1" customlabelreplaced=""></span>2 <span customlabelreplaced="">Bed</span></div> | |
| 1328 | + </li> | |
| 1329 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1330 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bathroom text-dark text-md mr-1" customlabelreplaced=""></span>1 <span customlabelreplaced="">Bath</span></div> | |
| 1331 | + </li> | |
| 1332 | + <li class="list-inline-item w-100" customlabelreplaced=""> | |
| 1333 | + <div class="d-flex align-items-center justify-content-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-area font-weight-medium text-dark text-md mr-1" customlabelreplaced=""></span>517-<span class="sr-only" customlabelreplaced="">to</span>623 Sq. Ft.</div> | |
| 1334 | + </li> | |
| 1335 | + </ul> | |
| 1336 | + | |
| 1337 | + | |
| 1338 | + | |
| 1339 | + </div> | |
| 1340 | + <div class="card-img fp-thumb px-3 d-flex justify-content-center align-items-center" customlabelreplaced=""> | |
| 1341 | + <a class="modal-button mw-100 mh-100 show-floorplans-image-button btn btn-link p-0" aria-label="2 Bedrooms* Floor plan image, opens a dialog" href="javascript:void(0)" aria-controls="fp-modal" data-screen="modal-content-5837919" data-image-modal="modal-body-5837919" data-toggle="modal" data-imagemodal-label="fp-modalLabel5837919" data-target="#fp-modal" onclick="(function(){document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel5837919')})();" customlabelreplaced=""> | |
| 1342 | + <div class="ysi-picture-widget ysi-picture-wrapper " customlabelreplaced=""> | |
| 1343 | + <picture> | |
| 1344 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/20bonnerenommee_type_2cc(1).png"> | |
| 1345 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540,h_260/s3/2/252329/20bonnerenommee_type_2cc(1).png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/20bonnerenommee_type_2cc(1).png" class="card-img-top px-1 img-fluid" alt="A floor plan of a house with a bureau, kitchen, bathroom, bedroom, and balcony." width="500" height="260"> | |
| 1346 | +</picture> | |
| 1347 | + | |
| 1348 | + | |
| 1349 | + | |
| 1350 | + </div> | |
| 1351 | + | |
| 1352 | + | |
| 1353 | + </a> | |
| 1354 | + </div> | |
| 1355 | + <div class="card-body" customlabelreplaced=""> | |
| 1356 | + <div class="p-2 fieldset bg-light border rounded d-flex flex-column align-items-center justify-content-center mb-2" customlabelreplaced=""> | |
| 1357 | +<p class="legend" customlabelreplaced=""></p> | |
| 1358 | + | |
| 1359 | + | |
| 1360 | + <div class="d-flex align-items-center" customlabelreplaced=""> | |
| 1361 | + <span class="font-weight-bold mb-1 text-md" customlabelreplaced=""> | |
| 1362 | + <span class="text-sm text-muted" customlabelreplaced="">Starting at</span> | |
| 1363 | + $1,560.00 | |
| 1364 | + <span class="text-sm text-muted" customlabelreplaced="">/Month</span> | |
| 1365 | + </span> | |
| 1366 | + | |
| 1367 | + </div> | |
| 1368 | + | |
| 1369 | + | |
| 1370 | + | |
| 1371 | + | |
| 1372 | + | |
| 1373 | + </div> | |
| 1374 | + | |
| 1375 | + <div class="row" customlabelreplaced=""> | |
| 1376 | + <div class="col-12 mb-2" customlabelreplaced=""> | |
| 1377 | + <a class="btn btn-outline-dark btn-block modal-button w-100 mr-3 show-floorplans-video-button floorplan-action-button" href="javascript:void(0);" data-target="#floorplans-video-modal" data-selenium-id="FloorplanViewVideo1" data-video-link="<div> | |
| 1378 | + <iframe src="https://player.vimeo.com/video/1181223986?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479" title="Champlain - 1 bedroom + den" allowfullscreen=""> | |
| 1379 | + </iframe> | |
| 1380 | +</div>" data-floorplan-name="2 Bedrooms*" customlabelreplaced="" data-video-initialized="true"> | |
| 1381 | + <span aria-hidden="true" class="fas fa-video" customlabelreplaced=""></span> Video | |
| 1382 | + <span class="sr-only" customlabelreplaced=""> for 2 Bedrooms*, opens a dialog</span> | |
| 1383 | + </a> | |
| 1384 | + </div> | |
| 1385 | + <div class="col-12 my-2 " customlabelreplaced=""> | |
| 1386 | + <a href="#myContactModal" role="button" class="btn btn-primary btn-block btn-block track-dialog dialog-button floorplan-action-button" data-floorplan-name="2 Bedrooms*" data-modal-url="/champlain-village-urbain/contactus?IsDialog=1" data-selenium-id="floorplan-1-contact-btn" onclick="setGA4Cookie('GT', '2 Bedrooms*', '2', '517', '623', '1560', '1560');" customlabelreplaced=""> | |
| 1387 | + Contact Us <span class="sr-only" customlabelreplaced=""> for 2 Bedrooms* , opens a dialog</span> | |
| 1388 | + </a> | |
| 1389 | + </div> | |
| 1390 | + | |
| 1391 | + <div class="col-12" customlabelreplaced=""> | |
| 1392 | + <div class="btn-group dropup w-100" customlabelreplaced=""> | |
| 1393 | + <a id="guided-tour-btn-1" href="javascript:void(0);" class="btn btn-outline-dark btn-block floorplan-action-button" onclick="setGA4Cookie('GT', '2 Bedrooms*', '2', '517', '623', '1560', '1560'); ysi.floorplanOptimized.tourPageRedirect('/champlain-village-urbain/scheduletour?tourType=GT&floorplan=2 Bedrooms*&beds=2')" data-floorplan-name="2 Bedrooms*" customlabelreplaced=""> | |
| 1394 | + Guided Tour <span class="sr-only" customlabelreplaced=""> for 2 Bedrooms*</span> | |
| 1395 | + </a> | |
| 1396 | + </div> | |
| 1397 | + </div> | |
| 1398 | + </div> | |
| 1399 | + | |
| 1400 | + </div> | |
| 1401 | + | |
| 1402 | + </div> | |
| 1403 | + </div> | |
| 1404 | + </div> | |
| 1405 | + <div id="fp-container-5837920" class=" col-sm-6 col-lg-4 fp-container pb-4 mb-2 col-12 " translate-content="" customlabelreplaced=""> | |
| 1406 | + <div class="" customlabelreplaced=""> | |
| 1407 | + <div class="card text-center h-100 " customlabelreplaced=""> | |
| 1408 | + <div class="card-header bg-transparent border-bottom-0 pt-4 pb-0" customlabelreplaced=""> | |
| 1409 | + <h2 id="fp-header-2" class="card-title h4 font-weight-bold text-capitalize" customlabelreplaced=""> | |
| 1410 | + 2 Bedrooms | |
| 1411 | + </h2> | |
| 1412 | + | |
| 1413 | + <ul class="list-unstyled list-inline mb-2 text-sm" customlabelreplaced=""> | |
| 1414 | + | |
| 1415 | + | |
| 1416 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1417 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bed text-dark text-md mr-1" customlabelreplaced=""></span>2 <span customlabelreplaced="">Bed</span></div> | |
| 1418 | + </li> | |
| 1419 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1420 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bathroom text-dark text-md mr-1" customlabelreplaced=""></span>1 <span customlabelreplaced="">Bath</span></div> | |
| 1421 | + </li> | |
| 1422 | + <li class="list-inline-item w-100" customlabelreplaced=""> | |
| 1423 | + <div class="d-flex align-items-center justify-content-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-area font-weight-medium text-dark text-md mr-1" customlabelreplaced=""></span>735-<span class="sr-only" customlabelreplaced="">to</span>840 Sq. Ft.</div> | |
| 1424 | + </li> | |
| 1425 | + </ul> | |
| 1426 | + | |
| 1427 | + | |
| 1428 | + | |
| 1429 | + </div> | |
| 1430 | + <div class="card-img fp-thumb px-3 d-flex justify-content-center align-items-center" customlabelreplaced=""> | |
| 1431 | + <a class="modal-button mw-100 mh-100 show-floorplans-image-button btn btn-link p-0" aria-label="2 Bedrooms Floor plan image, opens a dialog" href="javascript:void(0)" aria-controls="fp-modal" data-screen="modal-content-5837920" data-image-modal="modal-body-5837920" data-toggle="modal" data-imagemodal-label="fp-modalLabel5837920" data-target="#fp-modal" onclick="(function(){document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel5837920')})();" customlabelreplaced=""> | |
| 1432 | + <div class="ysi-picture-widget ysi-picture-wrapper " customlabelreplaced=""> | |
| 1433 | + <picture> | |
| 1434 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/30bonnerenommee_type_2cc%20(2b).png"> | |
| 1435 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540,h_260/s3/2/252329/30bonnerenommee_type_2cc%20(2b).png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/30bonnerenommee_type_2cc%20(2b).png" class="card-img-top px-1 img-fluid" alt="2 bed 2 bath at Champlain Village Urbain Apartments , Gatineau" title="2 bed 2 bath" width="435" height="260"> | |
| 1436 | +</picture> | |
| 1437 | + | |
| 1438 | + | |
| 1439 | + | |
| 1440 | + </div> | |
| 1441 | + | |
| 1442 | + | |
| 1443 | + </a> | |
| 1444 | + </div> | |
| 1445 | + <div class="card-body" customlabelreplaced=""> | |
| 1446 | + <div class="p-2 fieldset bg-light border rounded d-flex flex-column align-items-center justify-content-center mb-2" customlabelreplaced=""> | |
| 1447 | +<p class="legend" customlabelreplaced=""></p> | |
| 1448 | + | |
| 1449 | + | |
| 1450 | + <div class="d-flex align-items-center" customlabelreplaced=""> | |
| 1451 | + <span class="font-weight-bold mb-1 text-md" customlabelreplaced=""> | |
| 1452 | + <span class="text-sm text-muted" customlabelreplaced="">Starting at</span> | |
| 1453 | + $1,700.00 | |
| 1454 | + <span class="text-sm text-muted" customlabelreplaced="">/Month</span> | |
| 1455 | + </span> | |
| 1456 | + | |
| 1457 | + </div> | |
| 1458 | + | |
| 1459 | + | |
| 1460 | + | |
| 1461 | + | |
| 1462 | + | |
| 1463 | + </div> | |
| 1464 | + | |
| 1465 | + <div class="row" customlabelreplaced=""> | |
| 1466 | + <div class="col-12 mb-2" customlabelreplaced=""> | |
| 1467 | + <a class="btn btn-outline-dark btn-block modal-button w-100 mr-3 show-floorplans-video-button floorplan-action-button" href="javascript:void(0);" data-target="#floorplans-video-modal" data-selenium-id="FloorplanViewVideo2" data-video-link="<div> | |
| 1468 | + <iframe src="https://player.vimeo.com/video/1181224200?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479" title="Champlain - 2 bedroom" allowfullscreen=""> | |
| 1469 | + </iframe> | |
| 1470 | +</div>" data-floorplan-name="2 Bedrooms" customlabelreplaced="" data-video-initialized="true"> | |
| 1471 | + <span aria-hidden="true" class="fas fa-video" customlabelreplaced=""></span> Video | |
| 1472 | + <span class="sr-only" customlabelreplaced=""> for 2 Bedrooms, opens a dialog</span> | |
| 1473 | + </a> | |
| 1474 | + </div> | |
| 1475 | + <div class="col-12 my-2 " customlabelreplaced=""> | |
| 1476 | + <a href="#myContactModal" role="button" class="btn btn-primary btn-block btn-block track-dialog dialog-button floorplan-action-button" data-floorplan-name="2 Bedrooms" data-modal-url="/champlain-village-urbain/contactus?IsDialog=1" data-selenium-id="floorplan-2-contact-btn" onclick="setGA4Cookie('GT', '2 Bedrooms', '2', '735', '840', '1700', '1700');" customlabelreplaced=""> | |
| 1477 | + Contact Us <span class="sr-only" customlabelreplaced=""> for 2 Bedrooms , opens a dialog</span> | |
| 1478 | + </a> | |
| 1479 | + </div> | |
| 1480 | + | |
| 1481 | + <div class="col-12" customlabelreplaced=""> | |
| 1482 | + <div class="btn-group dropup w-100" customlabelreplaced=""> | |
| 1483 | + <a id="guided-tour-btn-2" href="javascript:void(0);" class="btn btn-outline-dark btn-block floorplan-action-button" onclick="setGA4Cookie('GT', '2 Bedrooms', '2', '735', '840', '1700', '1700'); ysi.floorplanOptimized.tourPageRedirect('/champlain-village-urbain/scheduletour?tourType=GT&floorplan=2 Bedrooms&beds=2')" data-floorplan-name="2 Bedrooms" customlabelreplaced=""> | |
| 1484 | + Guided Tour <span class="sr-only" customlabelreplaced=""> for 2 Bedrooms</span> | |
| 1485 | + </a> | |
| 1486 | + </div> | |
| 1487 | + </div> | |
| 1488 | + </div> | |
| 1489 | + | |
| 1490 | + </div> | |
| 1491 | + | |
| 1492 | + </div> | |
| 1493 | + </div> | |
| 1494 | + </div> | |
| 1495 | + <div id="fp-container-6235168" class=" col-sm-6 col-lg-4 fp-container pb-4 mb-2 col-12 " translate-content="" customlabelreplaced=""> | |
| 1496 | + <div class="" customlabelreplaced=""> | |
| 1497 | + <div class="card text-center h-100 " customlabelreplaced=""> | |
| 1498 | + <div class="card-header bg-transparent border-bottom-0 pt-4 pb-0" customlabelreplaced=""> | |
| 1499 | + <h2 id="fp-header-3" class="card-title h4 font-weight-bold text-capitalize" customlabelreplaced=""> | |
| 1500 | + 3 Bedrooms* | |
| 1501 | + </h2> | |
| 1502 | + | |
| 1503 | + <ul class="list-unstyled list-inline mb-2 text-sm" customlabelreplaced=""> | |
| 1504 | + | |
| 1505 | + | |
| 1506 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1507 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bed text-dark text-md mr-1" customlabelreplaced=""></span>2 <span customlabelreplaced="">Bed</span></div> | |
| 1508 | + </li> | |
| 1509 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1510 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bathroom text-dark text-md mr-1" customlabelreplaced=""></span>1 <span customlabelreplaced="">Bath</span></div> | |
| 1511 | + </li> | |
| 1512 | + <li class="list-inline-item w-100" customlabelreplaced=""> | |
| 1513 | + <div class="d-flex align-items-center justify-content-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-area font-weight-medium text-dark text-md mr-1" customlabelreplaced=""></span>603-<span class="sr-only" customlabelreplaced="">to</span>623 Sq. Ft.</div> | |
| 1514 | + </li> | |
| 1515 | + </ul> | |
| 1516 | + | |
| 1517 | + | |
| 1518 | + | |
| 1519 | + </div> | |
| 1520 | + <div class="card-img fp-thumb px-3 d-flex justify-content-center align-items-center" customlabelreplaced=""> | |
| 1521 | + <a class="modal-button mw-100 mh-100 show-floorplans-image-button btn btn-link p-0" aria-label="3 Bedrooms* Floor plan image, opens a dialog" href="javascript:void(0)" aria-controls="fp-modal" data-screen="modal-content-6235168" data-image-modal="modal-body-6235168" data-toggle="modal" data-imagemodal-label="fp-modalLabel6235168" data-target="#fp-modal" onclick="(function(){document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6235168')})();" customlabelreplaced=""> | |
| 1522 | + <div class="ysi-picture-widget ysi-picture-wrapper " customlabelreplaced=""> | |
| 1523 | + <picture> | |
| 1524 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/60impassedugriffon_type_3cc.png"> | |
| 1525 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540,h_260/s3/2/252329/60impassedugriffon_type_3cc.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/60impassedugriffon_type_3cc.png" class="card-img-top px-1 img-fluid" alt="A floor plan of a house with a living room, dining room, kitchen, and bathrooms." width="406" height="260" loading="lazy"> | |
| 1526 | +</picture> | |
| 1527 | + | |
| 1528 | + | |
| 1529 | + | |
| 1530 | + </div> | |
| 1531 | + | |
| 1532 | + | |
| 1533 | + </a> | |
| 1534 | + </div> | |
| 1535 | + <div class="card-body" customlabelreplaced=""> | |
| 1536 | + <div class="p-2 fieldset bg-light border rounded d-flex flex-column align-items-center justify-content-center mb-2" customlabelreplaced=""> | |
| 1537 | +<p class="legend" customlabelreplaced=""></p> | |
| 1538 | + | |
| 1539 | + | |
| 1540 | + <div class="d-flex align-items-center" customlabelreplaced=""> | |
| 1541 | + <span class="font-weight-bold mb-1 text-md" customlabelreplaced=""> | |
| 1542 | + <span class="text-sm text-muted" customlabelreplaced=""></span> | |
| 1543 | + Call for details | |
| 1544 | + <span class="text-sm text-muted" customlabelreplaced=""></span> | |
| 1545 | + </span> | |
| 1546 | + | |
| 1547 | + </div> | |
| 1548 | + | |
| 1549 | + | |
| 1550 | + | |
| 1551 | + | |
| 1552 | + | |
| 1553 | + </div> | |
| 1554 | + | |
| 1555 | + <div class="row" customlabelreplaced=""> | |
| 1556 | + <div class="col-12 mb-2" customlabelreplaced=""> | |
| 1557 | + <a class="btn btn-outline-dark btn-block modal-button w-100 mr-3 show-floorplans-video-button floorplan-action-button" href="javascript:void(0);" data-target="#floorplans-video-modal" data-selenium-id="FloorplanViewVideo3" data-video-link="<div> | |
| 1558 | + <iframe src="https://player.vimeo.com/video/1181224312?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479" title="Champlain - Penthouse" allowfullscreen=""> | |
| 1559 | + </iframe> | |
| 1560 | +</div>" data-floorplan-name="3 Bedrooms*" customlabelreplaced="" data-video-initialized="true"> | |
| 1561 | + <span aria-hidden="true" class="fas fa-video" customlabelreplaced=""></span> Video | |
| 1562 | + <span class="sr-only" customlabelreplaced=""> for 3 Bedrooms*, opens a dialog</span> | |
| 1563 | + </a> | |
| 1564 | + </div> | |
| 1565 | + <div class="col-12 my-2 " customlabelreplaced=""> | |
| 1566 | + <a href="#myContactModal" role="button" class="btn btn-primary btn-block btn-block track-dialog dialog-button floorplan-action-button" data-floorplan-name="3 Bedrooms*" data-modal-url="/champlain-village-urbain/contactus?IsDialog=1" data-selenium-id="floorplan-3-contact-btn" onclick="setGA4Cookie('GT', '3 Bedrooms*', '2', '603', '623', '2230', '2230');" customlabelreplaced=""> | |
| 1567 | + Contact Us <span class="sr-only" customlabelreplaced=""> for 3 Bedrooms* , opens a dialog</span> | |
| 1568 | + </a> | |
| 1569 | + </div> | |
| 1570 | + | |
| 1571 | + <div class="col-12" customlabelreplaced=""> | |
| 1572 | + <div class="btn-group dropup w-100" customlabelreplaced=""> | |
| 1573 | + <a id="guided-tour-btn-3" href="javascript:void(0);" class="btn btn-outline-dark btn-block floorplan-action-button" onclick="setGA4Cookie('GT', '3 Bedrooms*', '2', '603', '623', '2230', '2230'); ysi.floorplanOptimized.tourPageRedirect('/champlain-village-urbain/scheduletour?tourType=GT&floorplan=3 Bedrooms*&beds=2')" data-floorplan-name="3 Bedrooms*" customlabelreplaced=""> | |
| 1574 | + Guided Tour <span class="sr-only" customlabelreplaced=""> for 3 Bedrooms*</span> | |
| 1575 | + </a> | |
| 1576 | + </div> | |
| 1577 | + </div> | |
| 1578 | + </div> | |
| 1579 | + | |
| 1580 | + </div> | |
| 1581 | + | |
| 1582 | + </div> | |
| 1583 | + </div> | |
| 1584 | + </div> | |
| 1585 | + <div id="fp-container-6743205" class=" col-sm-6 col-lg-4 fp-container pb-4 mb-2 col-12 " translate-content="" customlabelreplaced=""> | |
| 1586 | + <div class="" customlabelreplaced=""> | |
| 1587 | + <div class="card text-center h-100 " customlabelreplaced=""> | |
| 1588 | + <div class="card-header bg-transparent border-bottom-0 pt-4 pb-0" customlabelreplaced=""> | |
| 1589 | + <h2 id="fp-header-4" class="card-title h4 font-weight-bold text-capitalize" customlabelreplaced=""> | |
| 1590 | + Penthouse 2 Beds* + Loft | |
| 1591 | + </h2> | |
| 1592 | + | |
| 1593 | + <ul class="list-unstyled list-inline mb-2 text-sm" customlabelreplaced=""> | |
| 1594 | + | |
| 1595 | + | |
| 1596 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1597 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bed text-dark text-md mr-1" customlabelreplaced=""></span>2 <span customlabelreplaced="">Bed</span></div> | |
| 1598 | + </li> | |
| 1599 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1600 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bathroom text-dark text-md mr-1" customlabelreplaced=""></span>1 <span customlabelreplaced="">Bath</span></div> | |
| 1601 | + </li> | |
| 1602 | + </ul> | |
| 1603 | + | |
| 1604 | + | |
| 1605 | + | |
| 1606 | + </div> | |
| 1607 | + <div class="card-img fp-thumb px-3 d-flex justify-content-center align-items-center" customlabelreplaced=""> | |
| 1608 | + <a class="modal-button mw-100 mh-100 show-floorplans-image-button btn btn-link p-0" aria-label="Penthouse 2 Beds* + Loft Floor plan image, opens a dialog" href="javascript:void(0)" aria-controls="fp-modal" data-screen="modal-content-6743205" data-image-modal="modal-body-6743205" data-toggle="modal" data-imagemodal-label="fp-modalLabel6743205" data-target="#fp-modal" onclick="(function(){document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6743205')})();" customlabelreplaced=""> | |
| 1609 | + <div class="ysi-picture-widget ysi-picture-wrapper " customlabelreplaced=""> | |
| 1610 | + <picture> | |
| 1611 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/2024-06-11_champlain_tour2_plans_miniatures_outlines-penthouse.png"> | |
| 1612 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540,h_260/s3/2/252329/2024-06-11_champlain_tour2_plans_miniatures_outlines-penthouse.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/2024-06-11_champlain_tour2_plans_miniatures_outlines-penthouse.png" class="card-img-top px-1 img-fluid" alt="A floor plan of a house with a living room, kitchen, and two bedrooms." width="576" height="202" loading="lazy"> | |
| 1613 | +</picture> | |
| 1614 | + | |
| 1615 | + | |
| 1616 | + | |
| 1617 | + </div> | |
| 1618 | + | |
| 1619 | + | |
| 1620 | + </a> | |
| 1621 | + </div> | |
| 1622 | + <div class="card-body" customlabelreplaced=""> | |
| 1623 | + <div class="p-2 fieldset bg-light border rounded d-flex flex-column align-items-center justify-content-center mb-2" customlabelreplaced=""> | |
| 1624 | +<p class="legend" customlabelreplaced=""></p> | |
| 1625 | + | |
| 1626 | + | |
| 1627 | + <div class="d-flex align-items-center" customlabelreplaced=""> | |
| 1628 | + <span class="font-weight-bold mb-1 text-md" customlabelreplaced=""> | |
| 1629 | + <span class="text-sm text-muted" customlabelreplaced="">Starting at</span> | |
| 1630 | + $2,650.00 | |
| 1631 | + <span class="text-sm text-muted" customlabelreplaced="">/Month</span> | |
| 1632 | + </span> | |
| 1633 | + | |
| 1634 | + </div> | |
| 1635 | + | |
| 1636 | + | |
| 1637 | + | |
| 1638 | + | |
| 1639 | + | |
| 1640 | + </div> | |
| 1641 | + | |
| 1642 | + <div class="row" customlabelreplaced=""> | |
| 1643 | + <div class="btn btn-outline-dark btn-block modal-button w-100" style="visibility:hidden;" customlabelreplaced=""> | |
| 1644 | + <wbr> </div> | |
| 1645 | + <div class="col-12 my-2 " customlabelreplaced=""> | |
| 1646 | + <a href="#myContactModal" role="button" class="btn btn-primary btn-block btn-block track-dialog dialog-button floorplan-action-button" data-floorplan-name="Penthouse 2 Beds* + Loft" data-modal-url="/champlain-village-urbain/contactus?IsDialog=1" data-selenium-id="floorplan-4-contact-btn" onclick="setGA4Cookie('GT', 'Penthouse 2 Beds* + Loft', '2', '0', '0', '2650', '2650');" customlabelreplaced=""> | |
| 1647 | + Contact Us <span class="sr-only" customlabelreplaced=""> for Penthouse 2 Beds* + Loft , opens a dialog</span> | |
| 1648 | + </a> | |
| 1649 | + </div> | |
| 1650 | + | |
| 1651 | + <div class="col-12" customlabelreplaced=""> | |
| 1652 | + <div class="btn-group dropup w-100" customlabelreplaced=""> | |
| 1653 | + <a id="guided-tour-btn-4" href="javascript:void(0);" class="btn btn-outline-dark btn-block floorplan-action-button" onclick="setGA4Cookie('GT', 'Penthouse 2 Beds* + Loft', '2', '0', '0', '2650', '2650'); ysi.floorplanOptimized.tourPageRedirect('/champlain-village-urbain/scheduletour?tourType=GT&floorplan=Penthouse 2 Beds* + Loft&beds=2')" data-floorplan-name="Penthouse 2 Beds* + Loft" customlabelreplaced=""> | |
| 1654 | + Guided Tour <span class="sr-only" customlabelreplaced=""> for Penthouse 2 Beds* + Loft</span> | |
| 1655 | + </a> | |
| 1656 | + </div> | |
| 1657 | + </div> | |
| 1658 | + </div> | |
| 1659 | + | |
| 1660 | + </div> | |
| 1661 | + | |
| 1662 | + </div> | |
| 1663 | + </div> | |
| 1664 | + </div> | |
| 1665 | + <div id="fp-container-5837921" class=" col-sm-6 col-lg-4 fp-container pb-4 mb-2 col-12 " translate-content="" customlabelreplaced=""> | |
| 1666 | + <div class="" customlabelreplaced=""> | |
| 1667 | + <div class="card text-center h-100 " customlabelreplaced=""> | |
| 1668 | + <div class="card-header bg-transparent border-bottom-0 pt-4 pb-0" customlabelreplaced=""> | |
| 1669 | + <h2 id="fp-header-5" class="card-title h4 font-weight-bold text-capitalize" customlabelreplaced=""> | |
| 1670 | + Penthouse 2 Beds + Loft | |
| 1671 | + </h2> | |
| 1672 | + | |
| 1673 | + <ul class="list-unstyled list-inline mb-2 text-sm" customlabelreplaced=""> | |
| 1674 | + | |
| 1675 | + | |
| 1676 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1677 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bed text-dark text-md mr-1" customlabelreplaced=""></span>2 <span customlabelreplaced="">Bed</span></div> | |
| 1678 | + </li> | |
| 1679 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1680 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bathroom text-dark text-md mr-1" customlabelreplaced=""></span>1 <span customlabelreplaced="">Bath</span></div> | |
| 1681 | + </li> | |
| 1682 | + <li class="list-inline-item w-100" customlabelreplaced=""> | |
| 1683 | + <div class="d-flex align-items-center justify-content-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-area font-weight-medium text-dark text-md mr-1" customlabelreplaced=""></span>735-<span class="sr-only" customlabelreplaced="">to</span>995 Sq. Ft.</div> | |
| 1684 | + </li> | |
| 1685 | + </ul> | |
| 1686 | + | |
| 1687 | + | |
| 1688 | + | |
| 1689 | + </div> | |
| 1690 | + <div class="card-img fp-thumb px-3 d-flex justify-content-center align-items-center" customlabelreplaced=""> | |
| 1691 | + <a class="modal-button mw-100 mh-100 show-floorplans-image-button btn btn-link p-0" aria-label="Penthouse 2 Beds + Loft Floor plan image, opens a dialog" href="javascript:void(0)" aria-controls="fp-modal" data-screen="modal-content-5837921" data-image-modal="modal-body-5837921" data-toggle="modal" data-imagemodal-label="fp-modalLabel5837921" data-target="#fp-modal" onclick="(function(){document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel5837921')})();" customlabelreplaced=""> | |
| 1692 | + <div class="ysi-picture-widget ysi-picture-wrapper " customlabelreplaced=""> | |
| 1693 | + <picture> | |
| 1694 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/30bonnerenommee_type_ph_2b_1b.png"> | |
| 1695 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540,h_260/s3/2/252329/30bonnerenommee_type_ph_2b_1b.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/30bonnerenommee_type_ph_2b_1b.png" class="card-img-top px-1 img-fluid" alt="2 bed 1 bath A at Champlain Village Urbain Apartments , Gatineau, J9H 0K9" title="2 bed 1 bath A" width="576" height="202" loading="lazy"> | |
| 1696 | +</picture> | |
| 1697 | + | |
| 1698 | + | |
| 1699 | + | |
| 1700 | + </div> | |
| 1701 | + | |
| 1702 | + | |
| 1703 | + </a> | |
| 1704 | + </div> | |
| 1705 | + <div class="card-body" customlabelreplaced=""> | |
| 1706 | + <div class="p-2 fieldset bg-light border rounded d-flex flex-column align-items-center justify-content-center mb-2" customlabelreplaced=""> | |
| 1707 | +<p class="legend" customlabelreplaced=""></p> | |
| 1708 | + | |
| 1709 | + | |
| 1710 | + <div class="d-flex align-items-center" customlabelreplaced=""> | |
| 1711 | + <span class="font-weight-bold mb-1 text-md" customlabelreplaced=""> | |
| 1712 | + <span class="text-sm text-muted" customlabelreplaced="">Starting at</span> | |
| 1713 | + $2,920.00 | |
| 1714 | + <span class="text-sm text-muted" customlabelreplaced="">/Month</span> | |
| 1715 | + </span> | |
| 1716 | + | |
| 1717 | + </div> | |
| 1718 | + | |
| 1719 | + | |
| 1720 | + | |
| 1721 | + | |
| 1722 | + | |
| 1723 | + </div> | |
| 1724 | + | |
| 1725 | + <div class="row" customlabelreplaced=""> | |
| 1726 | + <div class="btn btn-outline-dark btn-block modal-button w-100" style="visibility:hidden;" customlabelreplaced=""> | |
| 1727 | + <wbr> </div> | |
| 1728 | + <div class="col-12 my-2 " customlabelreplaced=""> | |
| 1729 | + <a href="#myContactModal" role="button" class="btn btn-primary btn-block btn-block track-dialog dialog-button floorplan-action-button" data-floorplan-name="Penthouse 2 Beds + Loft" data-modal-url="/champlain-village-urbain/contactus?IsDialog=1" data-selenium-id="floorplan-5-contact-btn" onclick="setGA4Cookie('GT', 'Penthouse 2 Beds + Loft', '2', '735', '995', '2920', '2920');" customlabelreplaced=""> | |
| 1730 | + Contact Us <span class="sr-only" customlabelreplaced=""> for Penthouse 2 Beds + Loft , opens a dialog</span> | |
| 1731 | + </a> | |
| 1732 | + </div> | |
| 1733 | + | |
| 1734 | + <div class="col-12" customlabelreplaced=""> | |
| 1735 | + <div class="btn-group dropup w-100" customlabelreplaced=""> | |
| 1736 | + <a id="guided-tour-btn-5" href="javascript:void(0);" class="btn btn-outline-dark btn-block floorplan-action-button" onclick="setGA4Cookie('GT', 'Penthouse 2 Beds + Loft', '2', '735', '995', '2920', '2920'); ysi.floorplanOptimized.tourPageRedirect('/champlain-village-urbain/scheduletour?tourType=GT&floorplan=Penthouse 2 Beds + Loft&beds=2')" data-floorplan-name="Penthouse 2 Beds + Loft" customlabelreplaced=""> | |
| 1737 | + Guided Tour <span class="sr-only" customlabelreplaced=""> for Penthouse 2 Beds + Loft</span> | |
| 1738 | + </a> | |
| 1739 | + </div> | |
| 1740 | + </div> | |
| 1741 | + </div> | |
| 1742 | + | |
| 1743 | + </div> | |
| 1744 | + | |
| 1745 | + </div> | |
| 1746 | + </div> | |
| 1747 | + </div> | |
| 1748 | + <input type="hidden" name="leasingtype" id="leasingtype" value="conventional"> | |
| 1749 | + <!-- Image modal --> | |
| 1750 | + | |
| 1751 | + | |
| 1752 | + | |
| 1753 | + | |
| 1754 | +<div class="modal fade fp-modal" id="fp-modal" role="dialog" aria-labelledby="fp-modalLabel6743029" aria-hidden="true" customlabelreplaced=""> | |
| 1755 | + <div class="modal-dialog modal-fullscreen" role="document" customlabelreplaced=""> | |
| 1756 | + <div id="modal-content-6743029" class="modal-content" customlabelreplaced=""> | |
| 1757 | + <div class="modal-header" customlabelreplaced=""> | |
| 1758 | + <h2 class="h3 m-0" id="fp-modalLabel6743029" customlabelreplaced="">1 Bedroom</h2> | |
| 1759 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" customlabelreplaced=""> | |
| 1760 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 1761 | + </button> | |
| 1762 | + </div> | |
| 1763 | + <div id="modal-body-6743029" class="modal-body px-0 pt-0 pb-2" customlabelreplaced=""> | |
| 1764 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" customlabelreplaced=""> | |
| 1765 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" customlabelreplaced=""> | |
| 1766 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" customlabelreplaced=""> | |
| 1767 | + <li class="list-inline-item" customlabelreplaced="">1 Bed</li> | |
| 1768 | + <li class="list-inline-item" customlabelreplaced="">1 Bath</li> | |
| 1769 | + </ul> | |
| 1770 | + </div> | |
| 1771 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" customlabelreplaced=""> | |
| 1772 | + <div class="d-inline-block position-relative" customlabelreplaced=""> | |
| 1773 | + <span class="text-dark font-weight-medium text-2x" customlabelreplaced="">Call for details</span> | |
| 1774 | + | |
| 1775 | + </div> | |
| 1776 | + </div> | |
| 1777 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" customlabelreplaced=""> | |
| 1778 | + <a href="#myContactModal" aria-label=" Contact Us for 1 Bedroom , opens a dialog" class="btn btn-primary ml-3 track-dialog dialog-button" data-floorplan-name="1 Bedroom" data-modal-url="/champlain-village-urbain/contactus?IsDialog=1" data-selenium-id="floorplan-0-contact-btn" customlabelreplaced=""> | |
| 1779 | + Contact Us | |
| 1780 | + </a> | |
| 1781 | + </div> | |
| 1782 | + </div> | |
| 1783 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6743029-0" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 1784 | + | |
| 1785 | + <div class="carousel-inner" aria-live="assertive" customlabelreplaced=""> | |
| 1786 | + | |
| 1787 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6743029-0-1" tabindex="0" customlabelreplaced=""> | |
| 1788 | + | |
| 1789 | + <div class="item" customlabelreplaced=""> | |
| 1790 | + | |
| 1791 | + <picture> | |
| 1792 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/252329/20bonnerenommee_type_1cc(1).png"> | |
| 1793 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/252329/20bonnerenommee_type_1cc(1).png"> | |
| 1794 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/252329/20bonnerenommee_type_1cc(1).png"> | |
| 1795 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/252329/20bonnerenommee_type_1cc(1).png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/252329/20bonnerenommee_type_1cc(1).png" class="img-fluid" alt="A floor plan of a house with a balcony, kitchen, and two bathrooms." loading="lazy"> | |
| 1796 | +</picture> | |
| 1797 | + | |
| 1798 | + | |
| 1799 | + </div> | |
| 1800 | + | |
| 1801 | + | |
| 1802 | + </div> | |
| 1803 | + </div> | |
| 1804 | + | |
| 1805 | + | |
| 1806 | + | |
| 1807 | + </section> | |
| 1808 | + </div> | |
| 1809 | + </div> | |
| 1810 | + <div id="modal-content-5837919" class="modal-content" customlabelreplaced=""> | |
| 1811 | + <div class="modal-header" customlabelreplaced=""> | |
| 1812 | + <h2 class="h3 m-0" id="fp-modalLabel5837919" customlabelreplaced="">2 Bedrooms*</h2> | |
| 1813 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" customlabelreplaced=""> | |
| 1814 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 1815 | + </button> | |
| 1816 | + </div> | |
| 1817 | + <div id="modal-body-5837919" class="modal-body px-0 pt-0 pb-2" customlabelreplaced=""> | |
| 1818 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" customlabelreplaced=""> | |
| 1819 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" customlabelreplaced=""> | |
| 1820 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" customlabelreplaced=""> | |
| 1821 | + <li class="list-inline-item" customlabelreplaced="">2 Beds</li> | |
| 1822 | + <li class="list-inline-item" customlabelreplaced="">1 Bath</li> | |
| 1823 | + <li class="list-inline-item" customlabelreplaced="">517-<span class="sr-only" customlabelreplaced="">to</span>623 Sq. Ft.</li> | |
| 1824 | + </ul> | |
| 1825 | + </div> | |
| 1826 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" customlabelreplaced=""> | |
| 1827 | + <div class="d-inline-block position-relative" customlabelreplaced=""> | |
| 1828 | + <span class="text-dark font-weight-medium text-2x" customlabelreplaced="">$1,560.00</span><span customlabelreplaced="">/ month</span> | |
| 1829 | + | |
| 1830 | + </div> | |
| 1831 | + </div> | |
| 1832 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" customlabelreplaced=""> | |
| 1833 | + <span customlabelreplaced="">Available On: </span> <span customlabelreplaced="">Available Now</span> | |
| 1834 | + <a href="#myContactModal" aria-label=" Contact Us for 2 Bedrooms* , opens a dialog" class="btn btn-primary ml-3 track-dialog dialog-button" data-floorplan-name="2 Bedrooms*" data-modal-url="/champlain-village-urbain/contactus?IsDialog=1" data-selenium-id="floorplan-1-contact-btn" customlabelreplaced=""> | |
| 1835 | + Contact Us | |
| 1836 | + </a> | |
| 1837 | + </div> | |
| 1838 | + </div> | |
| 1839 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-5837919-1" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 1840 | + | |
| 1841 | + <div class="carousel-inner" aria-live="assertive" customlabelreplaced=""> | |
| 1842 | + | |
| 1843 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-5837919-1-1" tabindex="0" customlabelreplaced=""> | |
| 1844 | + | |
| 1845 | + <div class="item" customlabelreplaced=""> | |
| 1846 | + | |
| 1847 | + <picture> | |
| 1848 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/252329/20bonnerenommee_type_2cc(1).png"> | |
| 1849 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/252329/20bonnerenommee_type_2cc(1).png"> | |
| 1850 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/252329/20bonnerenommee_type_2cc(1).png"> | |
| 1851 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/252329/20bonnerenommee_type_2cc(1).png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/252329/20bonnerenommee_type_2cc(1).png" class="img-fluid" alt="A floor plan of a house with a bureau, kitchen, bathroom, bedroom, and balcony." loading="lazy"> | |
| 1852 | +</picture> | |
| 1853 | + | |
| 1854 | + | |
| 1855 | + </div> | |
| 1856 | + | |
| 1857 | + | |
| 1858 | + </div> | |
| 1859 | + </div> | |
| 1860 | + | |
| 1861 | + | |
| 1862 | + | |
| 1863 | + </section> | |
| 1864 | + </div> | |
| 1865 | + </div> | |
| 1866 | + <div id="modal-content-5837920" class="modal-content" customlabelreplaced=""> | |
| 1867 | + <div class="modal-header" customlabelreplaced=""> | |
| 1868 | + <h2 class="h3 m-0" id="fp-modalLabel5837920" customlabelreplaced="">2 Bedrooms</h2> | |
| 1869 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" customlabelreplaced=""> | |
| 1870 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 1871 | + </button> | |
| 1872 | + </div> | |
| 1873 | + <div id="modal-body-5837920" class="modal-body px-0 pt-0 pb-2" customlabelreplaced=""> | |
| 1874 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" customlabelreplaced=""> | |
| 1875 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" customlabelreplaced=""> | |
| 1876 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" customlabelreplaced=""> | |
| 1877 | + <li class="list-inline-item" customlabelreplaced="">2 Beds</li> | |
| 1878 | + <li class="list-inline-item" customlabelreplaced="">1 Bath</li> | |
| 1879 | + <li class="list-inline-item" customlabelreplaced="">735-<span class="sr-only" customlabelreplaced="">to</span>840 Sq. Ft.</li> | |
| 1880 | + </ul> | |
| 1881 | + </div> | |
| 1882 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" customlabelreplaced=""> | |
| 1883 | + <div class="d-inline-block position-relative" customlabelreplaced=""> | |
| 1884 | + <span class="text-dark font-weight-medium text-2x" customlabelreplaced="">$1,700.00</span><span customlabelreplaced="">/ month</span> | |
| 1885 | + | |
| 1886 | + </div> | |
| 1887 | + </div> | |
| 1888 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" customlabelreplaced=""> | |
| 1889 | + <span customlabelreplaced="">Available On: </span> <span customlabelreplaced="">Available Now</span> | |
| 1890 | + <a href="#myContactModal" aria-label=" Contact Us for 2 Bedrooms , opens a dialog" class="btn btn-primary ml-3 track-dialog dialog-button" data-floorplan-name="2 Bedrooms" data-modal-url="/champlain-village-urbain/contactus?IsDialog=1" data-selenium-id="floorplan-2-contact-btn" customlabelreplaced=""> | |
| 1891 | + Contact Us | |
| 1892 | + </a> | |
| 1893 | + </div> | |
| 1894 | + </div> | |
| 1895 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-5837920-2" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 1896 | + | |
| 1897 | + <div class="carousel-inner" aria-live="assertive" customlabelreplaced=""> | |
| 1898 | + | |
| 1899 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-5837920-2-1" tabindex="0" customlabelreplaced=""> | |
| 1900 | + | |
| 1901 | + <div class="item" customlabelreplaced=""> | |
| 1902 | + | |
| 1903 | + <picture> | |
| 1904 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/252329/30bonnerenommee_type_2cc%20(2b).png"> | |
| 1905 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/252329/30bonnerenommee_type_2cc%20(2b).png"> | |
| 1906 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/252329/30bonnerenommee_type_2cc%20(2b).png"> | |
| 1907 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/252329/30bonnerenommee_type_2cc%20(2b).png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/252329/30bonnerenommee_type_2cc%20(2b).png" class="img-fluid" alt="2 bed 2 bath at Champlain Village Urbain Apartments , Gatineau" title="2 bed 2 bath" loading="lazy"> | |
| 1908 | +</picture> | |
| 1909 | + | |
| 1910 | + | |
| 1911 | + </div> | |
| 1912 | + | |
| 1913 | + | |
| 1914 | + </div> | |
| 1915 | + </div> | |
| 1916 | + | |
| 1917 | + | |
| 1918 | + | |
| 1919 | + </section> | |
| 1920 | + </div> | |
| 1921 | + </div> | |
| 1922 | + <div id="modal-content-6235168" class="modal-content" customlabelreplaced=""> | |
| 1923 | + <div class="modal-header" customlabelreplaced=""> | |
| 1924 | + <h2 class="h3 m-0" id="fp-modalLabel6235168" customlabelreplaced="">3 Bedrooms*</h2> | |
| 1925 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" customlabelreplaced=""> | |
| 1926 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 1927 | + </button> | |
| 1928 | + </div> | |
| 1929 | + <div id="modal-body-6235168" class="modal-body px-0 pt-0 pb-2" customlabelreplaced=""> | |
| 1930 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" customlabelreplaced=""> | |
| 1931 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" customlabelreplaced=""> | |
| 1932 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" customlabelreplaced=""> | |
| 1933 | + <li class="list-inline-item" customlabelreplaced="">2 Beds</li> | |
| 1934 | + <li class="list-inline-item" customlabelreplaced="">1 Bath</li> | |
| 1935 | + <li class="list-inline-item" customlabelreplaced="">603-<span class="sr-only" customlabelreplaced="">to</span>623 Sq. Ft.</li> | |
| 1936 | + </ul> | |
| 1937 | + </div> | |
| 1938 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" customlabelreplaced=""> | |
| 1939 | + <div class="d-inline-block position-relative" customlabelreplaced=""> | |
| 1940 | + <span class="text-dark font-weight-medium text-2x" customlabelreplaced="">Call for details</span> | |
| 1941 | + | |
| 1942 | + </div> | |
| 1943 | + </div> | |
| 1944 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" customlabelreplaced=""> | |
| 1945 | + <a href="#myContactModal" aria-label=" Contact Us for 3 Bedrooms* , opens a dialog" class="btn btn-primary ml-3 track-dialog dialog-button" data-floorplan-name="3 Bedrooms*" data-modal-url="/champlain-village-urbain/contactus?IsDialog=1" data-selenium-id="floorplan-3-contact-btn" customlabelreplaced=""> | |
| 1946 | + Contact Us | |
| 1947 | + </a> | |
| 1948 | + </div> | |
| 1949 | + </div> | |
| 1950 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6235168-3" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 1951 | + | |
| 1952 | + <div class="carousel-inner" aria-live="assertive" customlabelreplaced=""> | |
| 1953 | + | |
| 1954 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6235168-3-1" tabindex="0" customlabelreplaced=""> | |
| 1955 | + | |
| 1956 | + <div class="item" customlabelreplaced=""> | |
| 1957 | + | |
| 1958 | + <picture> | |
| 1959 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/252329/60impassedugriffon_type_3cc.png"> | |
| 1960 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/252329/60impassedugriffon_type_3cc.png"> | |
| 1961 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/252329/60impassedugriffon_type_3cc.png"> | |
| 1962 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/252329/60impassedugriffon_type_3cc.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/252329/60impassedugriffon_type_3cc.png" class="img-fluid" alt="A floor plan of a house with a living room, dining room, kitchen, and bathrooms." loading="lazy"> | |
| 1963 | +</picture> | |
| 1964 | + | |
| 1965 | + | |
| 1966 | + </div> | |
| 1967 | + | |
| 1968 | + | |
| 1969 | + </div> | |
| 1970 | + </div> | |
| 1971 | + | |
| 1972 | + | |
| 1973 | + | |
| 1974 | + </section> | |
| 1975 | + </div> | |
| 1976 | + </div> | |
| 1977 | + <div id="modal-content-6743205" class="modal-content" customlabelreplaced=""> | |
| 1978 | + <div class="modal-header" customlabelreplaced=""> | |
| 1979 | + <h2 class="h3 m-0" id="fp-modalLabel6743205" customlabelreplaced="">Penthouse 2 Beds* + Loft</h2> | |
| 1980 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" customlabelreplaced=""> | |
| 1981 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 1982 | + </button> | |
| 1983 | + </div> | |
| 1984 | + <div id="modal-body-6743205" class="modal-body px-0 pt-0 pb-2" customlabelreplaced=""> | |
| 1985 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" customlabelreplaced=""> | |
| 1986 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" customlabelreplaced=""> | |
| 1987 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" customlabelreplaced=""> | |
| 1988 | + <li class="list-inline-item" customlabelreplaced="">2 Beds</li> | |
| 1989 | + <li class="list-inline-item" customlabelreplaced="">1 Bath</li> | |
| 1990 | + </ul> | |
| 1991 | + </div> | |
| 1992 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" customlabelreplaced=""> | |
| 1993 | + <div class="d-inline-block position-relative" customlabelreplaced=""> | |
| 1994 | + <span class="text-dark font-weight-medium text-2x" customlabelreplaced="">$2,650.00</span><span customlabelreplaced="">/ month</span> | |
| 1995 | + | |
| 1996 | + </div> | |
| 1997 | + </div> | |
| 1998 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" customlabelreplaced=""> | |
| 1999 | + <span customlabelreplaced="">Available On: </span> <span customlabelreplaced="">Available Now</span> | |
| 2000 | + <a href="#myContactModal" aria-label=" Contact Us for Penthouse 2 Beds* + Loft , opens a dialog" class="btn btn-primary ml-3 track-dialog dialog-button" data-floorplan-name="Penthouse 2 Beds* + Loft" data-modal-url="/champlain-village-urbain/contactus?IsDialog=1" data-selenium-id="floorplan-4-contact-btn" customlabelreplaced=""> | |
| 2001 | + Contact Us | |
| 2002 | + </a> | |
| 2003 | + </div> | |
| 2004 | + </div> | |
| 2005 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6743205-4" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 2006 | + | |
| 2007 | + <div class="carousel-inner" aria-live="assertive" customlabelreplaced=""> | |
| 2008 | + | |
| 2009 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6743205-4-1" tabindex="0" customlabelreplaced=""> | |
| 2010 | + | |
| 2011 | + <div class="item" customlabelreplaced=""> | |
| 2012 | + | |
| 2013 | + <picture> | |
| 2014 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/252329/2024-06-11_champlain_tour2_plans_miniatures_outlines-penthouse.png"> | |
| 2015 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/252329/2024-06-11_champlain_tour2_plans_miniatures_outlines-penthouse.png"> | |
| 2016 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/252329/2024-06-11_champlain_tour2_plans_miniatures_outlines-penthouse.png"> | |
| 2017 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/252329/2024-06-11_champlain_tour2_plans_miniatures_outlines-penthouse.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/252329/2024-06-11_champlain_tour2_plans_miniatures_outlines-penthouse.png" class="img-fluid" alt="A floor plan of a house with a living room, kitchen, and two bedrooms." loading="lazy"> | |
| 2018 | +</picture> | |
| 2019 | + | |
| 2020 | + | |
| 2021 | + </div> | |
| 2022 | + | |
| 2023 | + | |
| 2024 | + </div> | |
| 2025 | + </div> | |
| 2026 | + | |
| 2027 | + | |
| 2028 | + | |
| 2029 | + </section> | |
| 2030 | + </div> | |
| 2031 | + </div> | |
| 2032 | + <div id="modal-content-5837921" class="modal-content" customlabelreplaced=""> | |
| 2033 | + <div class="modal-header" customlabelreplaced=""> | |
| 2034 | + <h2 class="h3 m-0" id="fp-modalLabel5837921" customlabelreplaced="">Penthouse 2 Beds + Loft</h2> | |
| 2035 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" customlabelreplaced=""> | |
| 2036 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 2037 | + </button> | |
| 2038 | + </div> | |
| 2039 | + <div id="modal-body-5837921" class="modal-body px-0 pt-0 pb-2" customlabelreplaced=""> | |
| 2040 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" customlabelreplaced=""> | |
| 2041 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" customlabelreplaced=""> | |
| 2042 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" customlabelreplaced=""> | |
| 2043 | + <li class="list-inline-item" customlabelreplaced="">2 Beds</li> | |
| 2044 | + <li class="list-inline-item" customlabelreplaced="">1 Bath</li> | |
| 2045 | + <li class="list-inline-item" customlabelreplaced="">735-<span class="sr-only" customlabelreplaced="">to</span>995 Sq. Ft.</li> | |
| 2046 | + </ul> | |
| 2047 | + </div> | |
| 2048 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" customlabelreplaced=""> | |
| 2049 | + <div class="d-inline-block position-relative" customlabelreplaced=""> | |
| 2050 | + <span class="text-dark font-weight-medium text-2x" customlabelreplaced="">$2,920.00</span><span customlabelreplaced="">/ month</span> | |
| 2051 | + | |
| 2052 | + </div> | |
| 2053 | + </div> | |
| 2054 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" customlabelreplaced=""> | |
| 2055 | + <span customlabelreplaced="">Available On: </span> <span customlabelreplaced="">30/11/2026</span> | |
| 2056 | + <a href="#myContactModal" aria-label=" Contact Us for Penthouse 2 Beds + Loft , opens a dialog" class="btn btn-primary ml-3 track-dialog dialog-button" data-floorplan-name="Penthouse 2 Beds + Loft" data-modal-url="/champlain-village-urbain/contactus?IsDialog=1" data-selenium-id="floorplan-5-contact-btn" customlabelreplaced=""> | |
| 2057 | + Contact Us | |
| 2058 | + </a> | |
| 2059 | + </div> | |
| 2060 | + </div> | |
| 2061 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-5837921-5" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 2062 | + | |
| 2063 | + <div class="carousel-inner" aria-live="assertive" customlabelreplaced=""> | |
| 2064 | + | |
| 2065 | + <button type="button" class="carousel-control-prev gallery-prev" data-target="#FPImagecarousel-5837921-5" data-slide="prev" aria-label="Previous Image" data-selenium-id="CarouserlBtnPrevious" customlabelreplaced=""></button> | |
| 2066 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-5837921-5-1" customlabelreplaced=""> | |
| 2067 | + | |
| 2068 | + <div class="item" customlabelreplaced=""> | |
| 2069 | + | |
| 2070 | + <picture> | |
| 2071 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/252329/30bonnerenommee_type_ph_2b_1b.png"> | |
| 2072 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/252329/30bonnerenommee_type_ph_2b_1b.png"> | |
| 2073 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/252329/30bonnerenommee_type_ph_2b_1b.png"> | |
| 2074 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/252329/30bonnerenommee_type_ph_2b_1b.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/252329/30bonnerenommee_type_ph_2b_1b.png" class="img-fluid" alt="2 bed 1 bath A at Champlain Village Urbain Apartments , Gatineau, J9H 0K9" title="2 bed 1 bath A" loading="lazy"> | |
| 2075 | +</picture> | |
| 2076 | + | |
| 2077 | + | |
| 2078 | + </div> | |
| 2079 | + | |
| 2080 | + | |
| 2081 | + </div> | |
| 2082 | + <div role="tabpanel" class="carousel-item " id="FPImagecarousel-5837921-5-2" customlabelreplaced=""> | |
| 2083 | + | |
| 2084 | + <div class="item" customlabelreplaced=""> | |
| 2085 | + | |
| 2086 | + <picture> | |
| 2087 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/252329/20bonnerenommee_type_ph_2b_1b.png"> | |
| 2088 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/252329/20bonnerenommee_type_ph_2b_1b.png"> | |
| 2089 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/252329/20bonnerenommee_type_ph_2b_1b.png"> | |
| 2090 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/252329/20bonnerenommee_type_ph_2b_1b.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/252329/20bonnerenommee_type_ph_2b_1b.png" class="img-fluid" alt="2 bed 1 bath B at Champlain Village Urbain Apartments , Gatineau, QC, J9H 0K9" title="2 bed 1 bath B" loading="lazy"> | |
| 2091 | +</picture> | |
| 2092 | + | |
| 2093 | + | |
| 2094 | + </div> | |
| 2095 | + | |
| 2096 | + | |
| 2097 | + </div> | |
| 2098 | + <button type="button" class="carousel-control-next gallery-next" data-target="#FPImagecarousel-5837921-5" data-slide="next" aria-label="Next Image" data-selenium-id="CarouserlBtnNext" customlabelreplaced=""></button> | |
| 2099 | + </div> | |
| 2100 | + | |
| 2101 | + | |
| 2102 | + <ol role="tablist" class="carousel-indicators gallery-dots mt-2"> | |
| 2103 | + <li role="presentation" class="active" customlabelreplaced=""> | |
| 2104 | + <button type="button" role="tab" data-target="#FPImagecarousel-5837921-5" aria-label="Image Slide 1" tabindex="0" data-slide-to="0" aria-selected="true" aria-controls="FPImagecarousel-5837921-5-1" customlabelreplaced=""> | |
| 2105 | + </button> | |
| 2106 | + </li> | |
| 2107 | + <li role="presentation" class="" customlabelreplaced=""> | |
| 2108 | + <button type="button" role="tab" data-target="#FPImagecarousel-5837921-5" aria-label="Image Slide 2" tabindex="-1" data-slide-to="1" aria-selected="false" aria-controls="FPImagecarousel-5837921-5-2" customlabelreplaced=""> | |
| 2109 | + </button> | |
| 2110 | + </li> | |
| 2111 | + </ol> | |
| 2112 | + | |
| 2113 | + </section> | |
| 2114 | + </div> | |
| 2115 | + </div> | |
| 2116 | + | |
| 2117 | + </div> | |
| 2118 | +</div> | |
| 2119 | + <!-- end modal --> | |
| 2120 | + <script> | |
| 2121 | + function setGA4Cookie(tour, fpname, size, minSqft, maxSqft, minRent, maxRent) { | |
| 2122 | + var obj = new Object(); | |
| 2123 | + obj.tourType = tour; | |
| 2124 | + obj.fpName = fpname; | |
| 2125 | + obj.fpSize = size + ' Bed(s)'; | |
| 2126 | + obj.sqft = (minSqft === maxSqft) ? maxSqft : minSqft + '-' + maxSqft; | |
| 2127 | + obj.price = (minRent === maxRent) ? maxRent : minRent + '-' + maxRent; | |
| 2128 | + ysi.cookie.create('ga4cookie', JSON.stringify(obj)); | |
| 2129 | + } | |
| 2130 | + </script> | |
| 2131 | + | |
| 2132 | + </div> | |
| 2133 | + </div> | |
| 2134 | + <div class="tab-pane fade" id="mapView" customlabelreplaced=""> | |
| 2135 | + Map View | |
| 2136 | + </div> | |
| 2137 | + </div> | |
| 2138 | +</div> | |
| 2139 | +<!-- Optimized Floor Plans Layout End --> | |
| 2140 | + | |
| 2141 | + | |
| 2142 | + | |
| 2143 | + | |
| 2144 | + | |
| 2145 | + | |
| 2146 | + | |
| 2147 | + </div> | |
| 2148 | + </div> | |
| 2149 | + </div> | |
| 2150 | + <div class="row" customlabelreplaced=""> | |
| 2151 | + <div class="col-12 mt-3" data-selenium-id="FloorplansBottomNarrative" customlabelreplaced=""> | |
| 2152 | + | |
| 2153 | + | |
| 2154 | +Studio, 1, and 2-Bedrooms Designed for Modern Sophistication | |
| 2155 | +<ul customlabelreplaced=""> | |
| 2156 | + <li customlabelreplaced="">Open-concept designs that create light-filled, airy interiors</li> | |
| 2157 | + <li customlabelreplaced="">Expansive windows framing scenic Gatineau surroundings</li> | |
| 2158 | + <li customlabelreplaced="">Contemporary kitchens with sleek finishes and modern appliances</li> | |
| 2159 | + <li customlabelreplaced="">Generous storage and private balconies for added convenience</li> | |
| 2160 | +</ul> | |
| 2161 | +More than just places to live, our floor plans are backdrops for the life you’re building. From entertaining friends to enjoying quiet evenings, your home at Champlain Village adapts to every moment.<br customlabelreplaced=""> | |
| 2162 | +Browse our floor plans & pricing today and find the unit that’s right for you. | |
| 2163 | + | |
| 2164 | + </div> | |
| 2165 | + </div> | |
| 2166 | + <div class="modal fade" id="myContactModal" role="dialog" aria-labelledby="myContactModalTitle" aria-modal="true" aria-hidden="true" customlabelreplaced=""> | |
| 2167 | + <div class="modal-dialog" customlabelreplaced=""> | |
| 2168 | + <div class="modal-content" customlabelreplaced=""> | |
| 2169 | + <div class="modal-header" customlabelreplaced=""> | |
| 2170 | + <h2 id="myContactModalTitle" class="h3 m-0" customlabelreplaced="">Get Notified</h2> | |
| 2171 | + <button type="button" class="close" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""><svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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></button> | |
| 2172 | + </div> | |
| 2173 | + <!-- Modal body --> | |
| 2174 | + <div id="modalbodycontact" class="modal-body" customlabelreplaced=""> | |
| 2175 | + </div> | |
| 2176 | + </div> | |
| 2177 | + </div> | |
| 2178 | + </div> | |
| 2179 | + <div class="modal fade" id="PreQualify" role="dialog" aria-labelledby="PreQualifyLabel" aria-hidden="true" customlabelreplaced=""> | |
| 2180 | + <div class="modal-dialog modal-lg" customlabelreplaced=""> | |
| 2181 | + <div class="modal-content" customlabelreplaced=""> | |
| 2182 | + <div class="modal-header" customlabelreplaced=""> | |
| 2183 | + <h2 class="h3 m-0" id="PreQualifyLabel" customlabelreplaced="">Pre-Qualify Now</h2> | |
| 2184 | + <button type="button" class="close" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""> | |
| 2185 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 2186 | + </button> | |
| 2187 | + </div> | |
| 2188 | + <div id="PrequalBody" class="modal-body" customlabelreplaced=""> | |
| 2189 | + | |
| 2190 | + <div class="modal-dialog modal-lg" role="document" customlabelreplaced=""> | |
| 2191 | + <div class="modal-content" customlabelreplaced=""> | |
| 2192 | + <div class="modal-body" customlabelreplaced=""> | |
| 2193 | + </div> | |
| 2194 | + </div> | |
| 2195 | + </div> | |
| 2196 | + | |
| 2197 | + </div> | |
| 2198 | + </div> | |
| 2199 | + </div> | |
| 2200 | + </div> | |
| 2201 | + <div class="modal fade true-cost-cal " id="myLeaseCostModal" role="dialog" aria-labelledby="leasecostmodalid" aria-hidden="true" customlabelreplaced=""> | |
| 2202 | + <div class="modal-dialog modal-fullscreen" customlabelreplaced=""> | |
| 2203 | + <div class="modal-content modal-calc-content" customlabelreplaced=""> | |
| 2204 | + <div class="modal-header" customlabelreplaced=""> | |
| 2205 | + <h3 class="modal-title font-weight-bold" id="leasecostmodalid" customlabelreplaced=""> | |
| 2206 | + | |
| 2207 | +Lease Cost Calculator Result | |
| 2208 | +</h3> | |
| 2209 | + <button type="button" class="close" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""><svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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></button> | |
| 2210 | + </div> | |
| 2211 | + <!-- Modal body --> | |
| 2212 | + <div id="myLeaseCostModalBody" class="modal-body modal-calc-body pt-0" customlabelreplaced=""> | |
| 2213 | + </div> | |
| 2214 | + </div> | |
| 2215 | + </div> | |
| 2216 | + </div> | |
| 2217 | + <!-- Video modal --> | |
| 2218 | +<div class="modal fade modal-dialog-gallery modal-dialog-gallery-video" id="floorplans-video-modal" role="dialog" aria-modal="true" aria-hidden="true" aria-labelledby="floorplans-video-modal-header" customlabelreplaced=""> | |
| 2219 | + <div class="modal-dialog modal-xl" customlabelreplaced=""> | |
| 2220 | + <div class="modal-content" customlabelreplaced=""> | |
| 2221 | + <div class="modal-header" customlabelreplaced=""> | |
| 2222 | + <h2 class="h3 m-0" id="floorplans-video-modal-header" customlabelreplaced="">Floor Plan Video</h2> | |
| 2223 | + <button type="button" class="close" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""><svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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></button> | |
| 2224 | + </div> | |
| 2225 | + <div id="floorplans-video-modal-body" class="modal-body" customlabelreplaced=""> | |
| 2226 | + <div class="embed-container" customlabelreplaced=""> | |
| 2227 | + <div id="floorplans-video-embed" class="embed-responsive embed-responsive-16by9 embed-body" customlabelreplaced=""> | |
| 2228 | + <!-- embedded video loaded here --> | |
| 2229 | + </div> | |
| 2230 | + </div> | |
| 2231 | + </div> | |
| 2232 | + </div> | |
| 2233 | + </div> | |
| 2234 | +</div> | |
| 2235 | + <!-- 3D Tour modal --> | |
| 2236 | +<div class="modal fade" id="floorplans-3dtour-modal" role="dialog" aria-modal="true" aria-hidden="true" aria-labelledby="floorplans-3dtour-modal-header" customlabelreplaced=""> | |
| 2237 | + <div class="modal-dialog modal-xl" customlabelreplaced=""> | |
| 2238 | + <div class="modal-content" customlabelreplaced=""> | |
| 2239 | + <div class="modal-header" customlabelreplaced=""> | |
| 2240 | + <h2 class="h3 m-0" id="floorplans-3dtour-modal-header" customlabelreplaced="">3D Tour</h2> | |
| 2241 | + <button type="button" class="close" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""><svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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></button> | |
| 2242 | + </div> | |
| 2243 | + <div id="floorplans-3dtour-modal-body" class="modal-body" customlabelreplaced=""> | |
| 2244 | + <div class="embed-container" customlabelreplaced=""> | |
| 2245 | + <div id="floorplans-3dtour-embed" class="embed-responsive embed-body" customlabelreplaced=""> | |
| 2246 | + <!-- embedded 3D tour loaded here --> | |
| 2247 | + </div> | |
| 2248 | + </div> | |
| 2249 | + </div> | |
| 2250 | + </div> | |
| 2251 | + </div> | |
| 2252 | +</div> <!--Inclusive fees modal--> | |
| 2253 | + | |
| 2254 | + | |
| 2255 | + | |
| 2256 | + | |
| 2257 | + | |
| 2258 | + | |
| 2259 | + | |
| 2260 | + <script> | |
| 2261 | + function GASubmitTrack(propertyName, calledFrom) { | |
| 2262 | + //add form type to ga4 cookie | |
| 2263 | + if (true ) { | |
| 2264 | + var ga4Cookie = ysi.cookie.read("ga4cookie"); | |
| 2265 | + if (ga4Cookie) { | |
| 2266 | + var jsonObj = JSON.parse(ga4Cookie); | |
| 2267 | + jsonObj.formType = calledFrom; | |
| 2268 | + ysi.cookie.create('ga4cookie', JSON.stringify(jsonObj)); | |
| 2269 | + | |
| 2270 | + } | |
| 2271 | + } | |
| 2272 | + if (typeof gtag != 'undefined') { | |
| 2273 | + var text = ""; | |
| 2274 | + switch (calledFrom) { | |
| 2275 | + case "availabilityalert": | |
| 2276 | + text = "Off"; | |
| 2277 | + break; | |
| 2278 | + case "scheduletour": | |
| 2279 | + text = "Schedule a Tour"; | |
| 2280 | + break; | |
| 2281 | + default: | |
| 2282 | + text = "Contact Us Submit"; | |
| 2283 | + break; | |
| 2284 | + } | |
| 2285 | + gtag('event', 'Contact Us', { 'event_category': 'Contact Us', 'event_action': text, 'event_label': propertyName }); | |
| 2286 | + gtag('rc.send', 'Contact Us', { 'event_category': 'Contact Us', 'event_action': text, 'event_label': propertyName }); | |
| 2287 | + } | |
| 2288 | + } | |
| 2289 | + | |
| 2290 | + </script> | |
| 2291 | + | |
| 2292 | + </div></div></div></div><div class="d-none pt-4 row" customlabelreplaced=""><div class="justify-content-start align-items-stretch flex-column d-flex text-left col-12 col-lg-12" customlabelreplaced=""></div></div><div class="row" customlabelreplaced=""><div class="justify-content-start align-items-stretch flex-column d-flex text-left col-12 col-lg-12" customlabelreplaced=""></div></div></div></div></div></main> | |
| 2293 | + <!--do not remove--> | |
| 2294 | + | |
| 2295 | + <footer><div class="py-6 px-3 text-white bg-primary ysi-row hover-underline-wrapper link-white-fade-wrapper" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""><div class="justify-content-start align-items-start flex-column d-flex text-left pb-5 pb-lg-0 col-12 col-lg-3 col-xl-3 footer-border" customlabelreplaced=""><div class="mb-4" customlabelreplaced=""> | |
| 2296 | + <h4 class="font-base text-white font-weight-bold" customlabelreplaced=""> | |
| 2297 | + Contact Us | |
| 2298 | + </h4> | |
| 2299 | + </div> | |
| 2300 | + | |
| 2301 | + | |
| 2302 | + | |
| 2303 | + | |
| 2304 | +<div class="ysi-address-widget ysi-address-wrapper mb-4 text-white vertical" customlabelreplaced=""> | |
| 2305 | + <div class="d-inline-flex" customlabelreplaced=""> | |
| 2306 | + <div class="mr-2" customlabelreplaced=""> | |
| 2307 | + <span aria-hidden="true" class=" " customlabelreplaced=""></span> | |
| 2308 | + </div> | |
| 2309 | + <address class="ysi-address"> | |
| 2310 | + <a class="address-link color-inherit d-block" href="https://www.google.com/maps?cid=1282306467969122818" target="_blank" rel="noreferrer" customlabelreplaced=""> | |
| 2311 | + <div itemprop="name" data-selenium-id="address_propname" customlabelreplaced="">Champlain Village Urbain</div> | |
| 2312 | + <div itemprop="address" customlabelreplaced=""> | |
| 2313 | + <div data-selenium-id="address_street" customlabelreplaced=""> | |
| 2314 | + 20 de la Bonne-Renommée | |
| 2315 | + </div> | |
| 2316 | + <div customlabelreplaced=""> | |
| 2317 | + <span data-selenium-id="address_city" customlabelreplaced="">Gatineau</span>, <span data-selenium-id="address_state" customlabelreplaced="">QC</span><span data-selenium-id="address_zip" customlabelreplaced=""> J9H 0K9</span> | |
| 2318 | + </div> | |
| 2319 | + </div> | |
| 2320 | + <span class="sr-only" customlabelreplaced="">Opens in a new tab</span> | |
| 2321 | + </a> | |
| 2322 | + </address> | |
| 2323 | + | |
| 2324 | + </div> | |
| 2325 | +</div> | |
| 2326 | + | |
| 2327 | + | |
| 2328 | + | |
| 2329 | + <style>.mobile-only .click-to-call{display:none}</style> | |
| 2330 | + | |
| 2331 | + <div class="ysi-phone-widget ysi-phone-wrapper " customlabelreplaced=""> | |
| 2332 | + <div class="d-inline-flex" customlabelreplaced=""> | |
| 2333 | + <a data-selenium-id="click_to_call" onclick="fireGaPhone()" href="tel:+1 819-303-5616" aria-label="Call Champlain Village Urbain at +1 819-303-5616" class="ysi-phone-number click-to-call-href text-decoration-none color-inherit ml-0 text-decoration-none text-white" customlabelreplaced=""> | |
| 2334 | + <span aria-hidden="true" class="fa-flip-horizontal " customlabelreplaced=""></span> | |
| 2335 | + <span data-selenium-id="click_to_call_span" class="click-to-call ml-2 text-underline" customlabelreplaced="">+1 819-303-5616</span> | |
| 2336 | + </a> | |
| 2337 | + | |
| 2338 | + </div> | |
| 2339 | + </div> | |
| 2340 | + <script> | |
| 2341 | + function fireGaPhone() { | |
| 2342 | + if (typeof gtag != 'undefined') { | |
| 2343 | + var myPage = location.pathname.replace("/", ""); | |
| 2344 | + if (myPage == "") { myPage = "index"; } | |
| 2345 | + if (true ) { | |
| 2346 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 2347 | + gtag('event', 'phone_call', { 'property_name': propertyName, 'page_name': document.title, 'page_url': window.location.href, 'header_phone_number': '+1 819-303-5616'}); | |
| 2348 | + } | |
| 2349 | + gtag('event', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 2350 | + gtag('rc.send', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 2351 | + } | |
| 2352 | + } | |
| 2353 | + </script> | |
| 2354 | +<div class="mb-5" customlabelreplaced=""> | |
| 2355 | + <a href="mailto:location@brigil.com" class="text-decoration-none font-base text-white" customlabelreplaced=""> | |
| 2356 | + location@brigil.com | |
| 2357 | + </a></div> | |
| 2358 | + | |
| 2359 | + <style>ul.ysi-socialmedia-popover-icons li a,ul.ysi-socialmedia-popover-icons p a,.ysi-socialmedia-widget li a,.ysi-socialmedia-widget p a{margin:1px 0}ul.ysi-socialmedia-icons li a,ul.ysi-socialmedia-icons p a,.ysi-socialmedia-widget li a,.ysi-socialmedia-widget p a{margin:0}ul.ysi-socialmedia-icons,ul.ysi-socialmedia-popover-icons,.ysi-socialmedia-widget{margin-bottom:0}ul.ysi-socialmedia-icons li a,ul.ysi-socialmedia-icons p a,ul.ysi-socialmedia-popover-icons li a,ul.ysi-socialmedia-popover-icons p a,.ysi-socialmedia-widget li a,.ysi-socialmedia-widget p a{width:40px;height:40px;display:inline-block;line-height:2.2;color:#fff;font-size:1.2rem;text-align:center}ul.ysi-socialmedia-icons li a.facebook_icon,ul.ysi-socialmedia-icons p a.facebook_icon,ul.ysi-socialmedia-popover-icons li a.facebook_icon,ul.ysi-socialmedia-popover-icons p a.facebook_icon,.ysi-socialmedia-widget li a.facebook_icon,.ysi-socialmedia-widget p a.facebook_icon{background:#3b5998;-moz-transition:background-color 1s 0.001s,color 1s;-o-transition:background-color 1s 0.001s,color 1s;-webkit-transition:background-color 1s 0.001s,color 1s;transition:background-color 1s 0.001s,color 1s}ul.ysi-socialmedia-icons li a.facebook_icon:hover,ul.ysi-socialmedia-icons p a.facebook_icon:hover,ul.ysi-socialmedia-popover-icons li a.facebook_icon:hover,ul.ysi-socialmedia-popover-icons p a.facebook_icon:hover,.ysi-socialmedia-widget li a.facebook_icon:hover,.ysi-socialmedia-widget p a.facebook_icon:hover{background:#4565ab}ul.ysi-socialmedia-icons li a.twitter_icon,ul.ysi-socialmedia-icons p a.twitter_icon,ul.ysi-socialmedia-popover-icons li a.twitter_icon,ul.ysi-socialmedia-popover-icons p a.twitter_icon,.ysi-socialmedia-widget li a.twitter_icon,.ysi-socialmedia-widget p a.twitter_icon{background:#2CAAE1;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.twitter_icon:hover,ul.ysi-socialmedia-icons p a.twitter_icon:hover,ul.ysi-socialmedia-popover-icons li a.twitter_icon:hover,ul.ysi-socialmedia-popover-icons p a.twitter_icon:hover,.ysi-socialmedia-widget li a.twitter_icon:hover,.ysi-socialmedia-widget p a.twitter_icon:hover{background:#2fb4ed}ul.ysi-socialmedia-icons li a.pinterest_icon,ul.ysi-socialmedia-icons p a.pinterest_icon,ul.ysi-socialmedia-popover-icons li a.pinterest_icon,ul.ysi-socialmedia-popover-icons p a.pinterest_icon,.ysi-socialmedia-widget li a.pinterest_icon,.ysi-socialmedia-widget p a.pinterest_icon{background:#C13238;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.pinterest_icon:hover,ul.ysi-socialmedia-icons p a.pinterest_icon:hover,ul.ysi-socialmedia-popover-icons li a.pinterest_icon:hover,ul.ysi-socialmedia-popover-icons p a.pinterest_icon:hover,.ysi-socialmedia-widget li a.pinterest_icon:hover,.ysi-socialmedia-widget p a.pinterest_icon:hover{background:#cc353a}ul.ysi-socialmedia-icons li a.instagram_icon,ul.ysi-socialmedia-icons p a.instagram_icon,ul.ysi-socialmedia-popover-icons li a.instagram_icon,ul.ysi-socialmedia-popover-icons p a.instagram_icon,.ysi-socialmedia-widget li a.instagram_icon,.ysi-socialmedia-widget p a.instagram_icon{background:#49709b;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.instagram_icon:hover,ul.ysi-socialmedia-icons p a.instagram_icon:hover,ul.ysi-socialmedia-popover-icons li a.instagram_icon:hover,ul.ysi-socialmedia-popover-icons p a.instagram_icon:hover,.ysi-socialmedia-widget li a.instagram_icon:hover,.ysi-socialmedia-widget p a.instagram_icon:hover{background:#608bba}ul.ysi-socialmedia-icons li a.linkedin_icon,ul.ysi-socialmedia-icons p a.linkedin_icon,ul.ysi-socialmedia-popover-icons li a.linkedin_icon,ul.ysi-socialmedia-popover-icons p a.linkedin_icon,.ysi-socialmedia-widget li a.linkedin_icon,.ysi-socialmedia-widget p a.linkedin_icon{background:#005a87;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.linkedin_icon:hover,ul.ysi-socialmedia-icons p a.linkedin_icon:hover,ul.ysi-socialmedia-popover-icons li a.linkedin_icon:hover,ul.ysi-socialmedia-popover-icons p a.linkedin_icon:hover,.ysi-socialmedia-widget li a.linkedin_icon:hover,.ysi-socialmedia-widget p a.linkedin_icon:hover{background:#0472a5}ul.ysi-socialmedia-icons li a.youtube_icon,ul.ysi-socialmedia-icons p a.youtube_icon,ul.ysi-socialmedia-popover-icons li a.youtube_icon,ul.ysi-socialmedia-popover-icons p a.youtube_icon,.ysi-socialmedia-widget li a.youtube_icon,.ysi-socialmedia-widget p a.youtube_icon{background:#c9322b;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.youtube_icon:hover,ul.ysi-socialmedia-icons p a.youtube_icon:hover,ul.ysi-socialmedia-popover-icons li a.youtube_icon:hover,ul.ysi-socialmedia-popover-icons p a.youtube_icon:hover,.ysi-socialmedia-widget li a.youtube_icon:hover,.ysi-socialmedia-widget p a.youtube_icon:hover{background:#dd3830}ul.ysi-socialmedia-icons li a.yelp_icon,ul.ysi-socialmedia-icons p a.yelp_icon,ul.ysi-socialmedia-popover-icons li a.yelp_icon,ul.ysi-socialmedia-popover-icons p a.yelp_icon,.ysi-socialmedia-widget li a.yelp_icon,.ysi-socialmedia-widget p a.yelp_icon{background:#DE3C43;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.yelp_icon:hover,ul.ysi-socialmedia-icons p a.yelp_icon:hover,ul.ysi-socialmedia-popover-icons li a.yelp_icon:hover,ul.ysi-socialmedia-popover-icons p a.yelp_icon:hover,.ysi-socialmedia-widget li a.yelp_icon:hover,.ysi-socialmedia-widget p a.yelp_icon:hover{background:#ea3f45}ul.ysi-socialmedia-icons li a.snapchat_icon,ul.ysi-socialmedia-icons p a.snapchat_icon,ul.ysi-socialmedia-popover-icons li a.snapchat_icon,ul.ysi-socialmedia-popover-icons p a.snapchat_icon,.ysi-socialmedia-widget li a.snapchat_icon,.ysi-socialmedia-widget p a.snapchat_icon{background:#E0E237;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.snapchat_icon:hover,ul.ysi-socialmedia-icons p a.snapchat_icon:hover,ul.ysi-socialmedia-popover-icons li a.snapchat_icon:hover,ul.ysi-socialmedia-popover-icons p a.snapchat_icon:hover,.ysi-socialmedia-widget li a.snapchat_icon:hover,.ysi-socialmedia-widget p a.snapchat_icon:hover{background:#efef39}ul.ysi-socialmedia-icons li a.more-social-icons,ul.ysi-socialmedia-icons p a.more-social-icons,ul.ysi-socialmedia-popover-icons li a.more-social-icons,ul.ysi-socialmedia-popover-icons p a.more-social-icons,.ysi-socialmedia-widget li a.more-social-icons,.ysi-socialmedia-widget p a.more-social-icons{background:#6e6e6e;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.more-social-icons:hover,ul.ysi-socialmedia-icons p a.more-social-icons:hover,ul.ysi-socialmedia-popover-icons li a.more-social-icons:hover,ul.ysi-socialmedia-popover-icons p a.more-social-icons:hover,.ysi-socialmedia-widget li a.more-social-icons:hover,.ysi-socialmedia-widget p a.more-social-icons:hover{background:#888888}.ysi-socialmedia-widget ul{padding-left:0;list-style:none}.ysi-socialmedia-widget p{margin-bottom:0}.ysi-socialmedia-widget.icon-white ul li a,.ysi-socialmedia-widget.icon-white p a{color:#fff;background:none}.ysi-socialmedia-widget.icon-white ul li a:hover,.ysi-socialmedia-widget.icon-white p a:hover{color:#f8f9fa;background:none}.ysi-socialmedia-widget.icon-light ul li a,.ysi-socialmedia-widget.icon-light p a{color:#f8f9fa;background:none}.ysi-socialmedia-widget.icon-light ul li a:hover,.ysi-socialmedia-widget.icon-light p a:hover{color:#fff;background:none}.ysi-socialmedia-widget.icon-dark ul li a,.ysi-socialmedia-widget.icon-dark p a{color:#343a40;background:none}.ysi-socialmedia-widget.icon-dark ul li a:hover,.ysi-socialmedia-widget.icon-dark p a:hover{color:#2D3D4D;background:none}.ysi-socialmedia-widget.icon-primary ul li a,.ysi-socialmedia-widget.icon-primary p a{color:#2D3D4D;background:none}.ysi-socialmedia-widget.icon-primary ul li a:hover,.ysi-socialmedia-widget.icon-primary p a:hover{color:#2D3D4D;background:none}.ysi-socialmedia-widget.icon-secondary ul li a,.ysi-socialmedia-widget.icon-secondary p a{color:#E6E4D7;background:none}.ysi-socialmedia-widget.icon-secondary ul li a:hover,.ysi-socialmedia-widget.icon-secondary p a:hover{color:#E6E4D7;background:none}.ysi-socialmedia-widget.background-light ul li a,.ysi-socialmedia-widget.background-light p a{background-color:#f8f9fa}.ysi-socialmedia-widget.background-light ul li a:hover,.ysi-socialmedia-widget.background-light p a:hover{background-color:#f8f9fa}.ysi-socialmedia-widget.background-dark ul li a,.ysi-socialmedia-widget.background-dark p a{background-color:#000}.ysi-socialmedia-widget.background-dark ul li a:hover,.ysi-socialmedia-widget.background-dark p a:hover{background-color:#000}.ysi-socialmedia-widget.background-primary ul li a,.ysi-socialmedia-widget.background-primary p a{background-color:#2D3D4D}.ysi-socialmedia-widget.background-primary ul li a:hover,.ysi-socialmedia-widget.background-primary p a:hover{background-color:#2D3D4D}.ysi-socialmedia-widget.background-secondary ul li a,.ysi-socialmedia-widget.background-secondary p a{background-color:#E6E4D7}.ysi-socialmedia-widget.background-secondary ul li a:hover,.ysi-socialmedia-widget.background-secondary p a:hover{background-color:#E6E4D7}.ysi-socialmedia-widget.rounded ul li a,.ysi-socialmedia-widget.rounded p a{border-radius:50px}.ysi-socialmedia-widget.square ul li a,.ysi-socialmedia-widget.square p a{border-radius:0px}.ysi-socialmedia-widget.regular ul li a,.ysi-socialmedia-widget.regular p a{font-size:1.2rem;width:45px;height:45px}.ysi-socialmedia-widget.large ul li a,.ysi-socialmedia-widget.large p a{font-size:2.5rem;width:60px;height:60px;line-height:1.5}.ysi-socialmedia-widget.horizontal ul,.ysi-socialmedia-widget.horizontal p{line-height:10px}.ysi-socialmedia-widget.horizontal ul li,.ysi-socialmedia-widget.horizontal p li{display:inline-block}.ysi-socialmedia-widget.vertical ul li,.ysi-socialmedia-widget.vertical p{margin:3px 0}.ysi-socialmedia-widget.outline-light ul li a,.ysi-socialmedia-widget.outline-light p a{border:1px solid #f8f9fa;background:none}.ysi-socialmedia-widget.outline-light ul li a:hover,.ysi-socialmedia-widget.outline-light p a:hover{border:1px solid #fff;background:none}.ysi-socialmedia-widget.outline-dark ul li a,.ysi-socialmedia-widget.outline-dark p a{border:1px solid #343a40;background:none;color:#343a40}.ysi-socialmedia-widget.outline-dark ul li a:hover,.ysi-socialmedia-widget.outline-dark p a:hover{border:1px solid #343a40;background:none;color:#343a40}.ysi-socialmedia-widget.outline-primary ul li a,.ysi-socialmedia-widget.outline-primary p a{border:1px solid #2D3D4D}.ysi-socialmedia-widget.outline-primary ul li a:hover,.ysi-socialmedia-widget.outline-primary p a:hover{border:1px solid #2D3D4D}.ysi-socialmedia-widget.outline-secondary ul li a,.ysi-socialmedia-widget.outline-secondary p a{border:1px solid #E6E4D7}.ysi-socialmedia-widget.outline-secondary ul li a:hover,.ysi-socialmedia-widget.outline-secondary p a:hover{border:1px solid #E6E4D7}.ysi-socialmedia-widget.left,.ysi-socialmedia-widget.right{position:fixed;z-index:5;top:0;padding:0 3px}.ysi-socialmedia-widget.left{left:0}.ysi-socialmedia-widget.right{right:0}.ysi-socialmedia-share.horizontal ul{float:inherit}.ysi-socialmedia-share.horizontal ul li{float:inherit;margin-left:0.25rem}.ysi-socialmedia-share.horizontal ul li a.more-social-icons{height:20px;line-height:1;margin:0;background:#c7c7c7;color:#6e6e6e}.ysi-socialmedia-follow.horizontal{line-height:0}.ysi-socialmedia-follow.horizontal ul.ysi-socialmedia-icons{display:inline-flex}.ysi-socialmedia-follow.horizontal ul.ysi-socialmedia-icons li{margin-right:0.4rem}.ysi-socialmedia-follow.horizontal ul.ysi-socialmedia-icons li a,.ysi-socialmedia-follow.horizontal ul.ysi-socialmedia-popover-icons li a{width:auto;height:auto;line-height:initial}ul.ysi-socialmedia-icons li a.ysi-share,ul.ysi-socialmedia-popover-icons li a.ysi-share,.ysi-socialmedia-share p a.ysi-share{font:11px/18px 'Helvetica Neue', Arial, sans-serif;color:#fff;background:#6e6e6e;height:20px;line-height:18px;padding:1px 8px 1px 6px;border:none;border-radius:3px;outline:0;width:unset;height:unset}ul.ysi-socialmedia-icons li a.ysi-share:hover,ul.ysi-socialmedia-popover-icons li a.ysi-share:hover,.ysi-socialmedia-share p a.ysi-share:hover{text-decoration:none}ul.ysi-socialmedia-icons li a.ysi-share i,ul.ysi-socialmedia-popover-icons li a.ysi-share i,.ysi-socialmedia-share p a.ysi-share i{margin-right:.3em;font-size:1.2em}ul.ysi-socialmedia-icons li a.ysi-share.facebook,ul.ysi-socialmedia-popover-icons li a.ysi-share.facebook,.ysi-socialmedia-share p a.ysi-share.facebook{background:#4267b2}ul.ysi-socialmedia-icons li a.ysi-share.facebook:hover,ul.ysi-socialmedia-popover-icons li a.ysi-share.facebook:hover,.ysi-socialmedia-share p a.ysi-share.facebook:hover{background:#365899}ul.ysi-socialmedia-icons li a.ysi-share.twitter,ul.ysi-socialmedia-popover-icons li a.ysi-share.twitter,.ysi-socialmedia-share p a.ysi-share.twitter{background:#1b95e0}ul.ysi-socialmedia-icons li a.ysi-share.twitter:hover,ul.ysi-socialmedia-popover-icons li a.ysi-share.twitter:hover,.ysi-socialmedia-share p a.ysi-share.twitter:hover{background:#0c7abf}ul.ysi-socialmedia-icons li a.ysi-share.twitter i,ul.ysi-socialmedia-popover-icons li a.ysi-share.twitter i,.ysi-socialmedia-share p a.ysi-share.twitter i{font-size:inherit}ul.ysi-socialmedia-icons li a.ysi-share.pinterest,ul.ysi-socialmedia-popover-icons li a.ysi-share.pinterest,.ysi-socialmedia-share p a.ysi-share.pinterest{background:#C13238}ul.ysi-socialmedia-icons li a.ysi-share.pinterest i,ul.ysi-socialmedia-popover-icons li a.ysi-share.pinterest i,.ysi-socialmedia-share p a.ysi-share.pinterest i{font-size:inherit}ul.ysi-socialmedia-icons li a.ysi-share.linkedin,ul.ysi-socialmedia-popover-icons li a.ysi-share.linkedin,.ysi-socialmedia-share p a.ysi-share.linkedin{background:#005a87}@media (max-width: 991.98px){.d-md-none-down{display:none !important}}</style> | |
| 2360 | + | |
| 2361 | + <div class="ysi-socialmedia-widget ysi-socialmedia-wrapper ysi-socialmedia-link footer-social-media-icons horizontal icon-primary rounded background-light rounded small " customlabelreplaced=""> | |
| 2362 | + <ul class="ysi-socialmedia-icons" data-selenium-id="footersocialmediainner" customlabelreplaced=""> | |
| 2363 | + <li class="social-media-facebook " customlabelreplaced=""> | |
| 2364 | + <a href="https://www.facebook.com/BRIGIL/" target="_blank" aria-label="Facebook, opens in new tab" rel="noopener" data-selenium-id="SM_FaceBookIcon" class="facebook_icon" customlabelreplaced=""> | |
| 2365 | + <span aria-hidden="true" class="nu nu-secondary_facebook_logo fab fa-facebook-f" customlabelreplaced=""></span> | |
| 2366 | + </a> | |
| 2367 | + </li> | |
| 2368 | + <li class="social-media-linkedin " customlabelreplaced=""> | |
| 2369 | + <a href="https://www.linkedin.com/company/brigil" target="_blank" aria-label="LinkedIn, opens in new tab" rel="noopener" data-selenium-id="SM_LinkedInIcon" class="linkedin_icon" customlabelreplaced=""> | |
| 2370 | + <span aria-hidden="true" class="fab fa-linkedin" customlabelreplaced=""></span> | |
| 2371 | + </a> | |
| 2372 | + </li> | |
| 2373 | + <li class="social-media-instagram " customlabelreplaced=""> | |
| 2374 | + <a href="https://instagram.com/brigilhomes" target="_blank" aria-label="Instagram, opens in new tab" rel="noopener" data-selenium-id="SM_InstagramIcon" class="instagram_icon" customlabelreplaced=""> | |
| 2375 | + <span aria-hidden="true" class="fab fa-instagram" customlabelreplaced=""></span> | |
| 2376 | + </a> | |
| 2377 | + </li> | |
| 2378 | + <li class="social-media-youtube " customlabelreplaced=""> | |
| 2379 | + <a href="https://www.youtube.com/@brigil8001" target="_blank" aria-label="Youtube, opens in new tab" rel="noopener" data-selenium-id="SM_YoutubeIcon" class="youtube_icon" customlabelreplaced=""> | |
| 2380 | + <span aria-hidden="true" class="fab fa-youtube" customlabelreplaced=""></span> | |
| 2381 | + </a> | |
| 2382 | + </li> | |
| 2383 | + </ul> | |
| 2384 | + | |
| 2385 | + </div> | |
| 2386 | + <div class="ysi-socialmedia-widget ysi-socialmedia-popover-wrapper d-none" customlabelreplaced=""> | |
| 2387 | + <ul class="ysi-socialmedia-popover-icons list-inline text-center list-inline" customlabelreplaced=""> | |
| 2388 | + </ul> | |
| 2389 | + | |
| 2390 | + </div> | |
| 2391 | + <div class="ysi-picture-widget ysi-picture-wrapper mt-5 mt-lg-0 footer-logo w-50" customlabelreplaced=""> | |
| 2392 | + <a href="/" class="" customlabelreplaced=""><picture> | |
| 2393 | +<source media="(min-width: 2560px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_lfill,w_800,g_auto/s3/themes/brigil_prop1/images/CompanyLogo_Light.png"> | |
| 2394 | +<source media="(min-width: 1920px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_lfill,w_640,g_auto/s3/themes/brigil_prop1/images/CompanyLogo_Light.png"> | |
| 2395 | +<source media="(min-width: 1440px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_lfill,w_480,g_auto/s3/themes/brigil_prop1/images/CompanyLogo_Light.png"> | |
| 2396 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_lfill,w_360,g_auto/s3/themes/brigil_prop1/images/CompanyLogo_Light.png"> | |
| 2397 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_lfill,w_300,g_auto/s3/themes/brigil_prop1/images/CompanyLogo_Light.png"> | |
| 2398 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_992/s3/themes/brigil_prop1/images/CompanyLogo_Light.png"> | |
| 2399 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_768/s3/themes/brigil_prop1/images/CompanyLogo_Light.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/themes/brigil_prop1/images/CompanyLogo_Light.png" class="mt-4 mt-lg-6 img-fluid" alt="" loading="lazy"> | |
| 2400 | +</picture> | |
| 2401 | +</a> | |
| 2402 | + | |
| 2403 | + | |
| 2404 | + | |
| 2405 | + </div> | |
| 2406 | + | |
| 2407 | +</div><div class="justify-content-start align-items-start flex-column d-flex text-left py-5 py-lg-0 col-12 col-lg-3 footer-border text-decoration-none useful-footer-links" customlabelreplaced=""> | |
| 2408 | + <h4 class="font-base text-white mb-4 font-weight-bold" customlabelreplaced=""> | |
| 2409 | + Useful Links | |
| 2410 | + </h4> | |
| 2411 | + | |
| 2412 | + | |
| 2413 | + <ul class="list-unstyled" customlabelreplaced=""> | |
| 2414 | + <li customlabelreplaced=""><a class="color-inherit" target="_blank" href="https://batisseurcitoyen.brigil.com/" customlabelreplaced="">About Us <span class="sr-only" customlabelreplaced="">opens in new tab</span></a></li> | |
| 2415 | + <li customlabelreplaced=""><a class="color-inherit" target="_blank" href="https://www.brigil.com/specials-and-promotions" customlabelreplaced="">For Rent <span class="sr-only" customlabelreplaced="">opens in new tab</span></a></li> | |
| 2416 | + <li customlabelreplaced=""><a class="color-inherit" target="_blank" href="https://www.brigil.com/specials-and-promotions#forsales" customlabelreplaced="">For Sale <span class="sr-only" customlabelreplaced="">opens in new tab</span></a></li> | |
| 2417 | + <li customlabelreplaced=""><a class="color-inherit" target="_blank" href="https://www.brigil.com/commercial-development" customlabelreplaced="">Commercial <span class="sr-only" customlabelreplaced="">opens in new tab</span></a></li> | |
| 2418 | + <li customlabelreplaced=""><a class="color-inherit" target="_blank" href="https://www.brigil.com/faq" customlabelreplaced="">FAQ <span class="sr-only" customlabelreplaced="">opens in new tab</span></a></li> | |
| 2419 | + <li customlabelreplaced=""><a class="color-inherit" target="_blank" href="https://www.brigil.com/privacy-and-personal-information-protection-policy" customlabelreplaced="">Personal Information Protection Policy <span class="sr-only" customlabelreplaced="">opens in new tab</span></a></li> | |
| 2420 | + <li customlabelreplaced=""><a class="color-inherit" target="_blank" href="https://www.brigil.com/cookie-policy" customlabelreplaced="">Cookie Policy <span class="sr-only" customlabelreplaced="">opens in new tab</span></a></li> | |
| 2421 | + | |
| 2422 | + | |
| 2423 | + </ul> | |
| 2424 | + <div id="additionalmenuid-1594-8854" style="display: none;" customlabelreplaced="">1594</div> | |
| 2425 | +</div><div class="justify-content-start align-items-start flex-column d-flex text-left pt-5 pt-lg-0 col-12 col-lg-6 col-xl-6 communities-footer-links" customlabelreplaced=""> | |
| 2426 | + <h4 class="font-base text-white mb-4 font-weight-bold" customlabelreplaced=""> | |
| 2427 | + Our Communities | |
| 2428 | + </h4> | |
| 2429 | + | |
| 2430 | + | |
| 2431 | + <ul class="list-unstyled" customlabelreplaced=""> | |
| 2432 | + <li customlabelreplaced=""><a class="color-inherit" href="/le-columbia" customlabelreplaced="">Le Columbia </a></li> | |
| 2433 | + <li customlabelreplaced=""><a class="color-inherit" href="/domaine-du-vieux-port/default" customlabelreplaced="">Domaine du Vieux-Port </a></li> | |
| 2434 | + <li customlabelreplaced=""><a class="color-inherit" href="/chateau-golf" customlabelreplaced="">Château Golf </a></li> | |
| 2435 | + <li customlabelreplaced=""><a class="color-inherit" href="/champlain-village-urbain" customlabelreplaced="">Champlain Village Urbain </a></li> | |
| 2436 | + <li customlabelreplaced=""><a class="color-inherit" href="/ruisseaux-lepine-i/default" customlabelreplaced="">Ruisseaux Lépine </a></li> | |
| 2437 | + <li customlabelreplaced=""><a class="color-inherit" href="/ruisseaux-lepine-ii/default" customlabelreplaced="">Ruisseaux Lépine II </a></li> | |
| 2438 | + <li customlabelreplaced=""><a class="color-inherit" href="/horizon-condo" customlabelreplaced="">Horizon </a></li> | |
| 2439 | + <li customlabelreplaced=""><a class="color-inherit" href="/aura-rivermead/default.aspx" customlabelreplaced="">Aura – Rivermead </a></li> | |
| 2440 | + <li customlabelreplaced=""><a class="color-inherit" href="/canevas" customlabelreplaced="">Canevas </a></li> | |
| 2441 | + <li customlabelreplaced=""><a class="color-inherit" href="/plateau-du-parc/default.aspx" customlabelreplaced="">Plateau du Parc </a></li> | |
| 2442 | + <li customlabelreplaced=""><a class="color-inherit" href="/jardins-mcconnell/default.aspx" customlabelreplaced="">Jardins McConnell </a></li> | |
| 2443 | + <li customlabelreplaced=""><a class="color-inherit" href="/the-dale" customlabelreplaced="">The Dale </a></li> | |
| 2444 | + <li customlabelreplaced=""><a class="color-inherit" href="/929-richmond" customlabelreplaced="">929 Richmond </a></li> | |
| 2445 | + <li customlabelreplaced=""><a class="color-inherit" href="/baseline-rd" customlabelreplaced="">Baseline </a></li> | |
| 2446 | + <li customlabelreplaced=""><a class="color-inherit" href="/petries-landing-i" customlabelreplaced="">Petrie’s Landing I </a></li> | |
| 2447 | + <li customlabelreplaced=""><a class="color-inherit" href="/petries-landing-ii" customlabelreplaced="">Petrie’s Landing II </a></li> | |
| 2448 | + <li customlabelreplaced=""><a class="color-inherit" href="/center-park-st/default" customlabelreplaced="">Center Park </a></li> | |
| 2449 | + <li customlabelreplaced=""><a class="color-inherit" href="/460-st-laurent/default" customlabelreplaced="">460 St-Laurent </a></li> | |
| 2450 | + <li customlabelreplaced=""><a class="color-inherit" href="/kanata-lakes-av" customlabelreplaced="">Kanata Lakes </a></li> | |
| 2451 | + | |
| 2452 | + | |
| 2453 | + </ul> | |
| 2454 | + <div id="additionalmenuid-1193-8967" style="display: none;" customlabelreplaced="">1193</div> | |
| 2455 | +</div></div></div></div><div class="px-5 py-4 text-white bg-primary ysi-row hover-underline-wrapper link-white-fade-wrapper" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""> | |
| 2456 | + <div class="justify-content-center align-items-center flex-column d-flex text-center col-12" customlabelreplaced=""> | |
| 2457 | + | |
| 2458 | +<div class="ysi-copyright" customlabelreplaced=""> | |
| 2459 | + <svg role="img" alt="Equal housing opportunity" aria-labelledby="svgeho" focusable="false" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="1em" height=".884em" viewBox="0 0 15.2 10.72"> | |
| 2460 | + <title id="svgeho">Equal housing opportunity</title> | |
| 2461 | + <defs><style> | |
| 2462 | + .cls-1 { | |
| 2463 | + fill-rule: evenodd; | |
| 2464 | + } | |
| 2465 | + </style></defs> | |
| 2466 | + <path class="cls-1" d="M7.54,0,0,3.72V5.46H.84V10.7H14.19V5.46h1V3.72Zm5,9.12H2.48V4.34l5.06-2.6,5,2.6Z"></path> | |
| 2467 | + <polygon class="cls-1" points="9.85 6.02 5.18 6.02 5.18 4.34 9.85 4.34 9.85 6.02 9.85 6.02"></polygon> | |
| 2468 | + <polygon class="cls-1" points="9.85 8.44 5.18 8.44 5.18 6.76 9.85 6.76 9.85 8.44 9.85 8.44"></polygon> | |
| 2469 | + </svg> | |
| 2470 | + <span id="footerText" data-selenium-id="customCopyrightText" customlabelreplaced="">© 2026 by Brigil.</span> | |
| 2471 | + <span customlabelreplaced=""> | <span customlabelreplaced="">Powered by RentCafe </span>(© <span customlabelreplaced="">2026 </span> Yardi Systems, Inc.<span customlabelreplaced=""> All Rights Reserved.</span>)</span> | |
| 2472 | +</div> | |
| 2473 | +</div> | |
| 2474 | + </div></div></div></footer> | |
| 2475 | + | |
| 2476 | + | |
| 2477 | + | |
| 2478 | + | |
| 2479 | + | |
| 2480 | + | |
| 2481 | + <yardi-widget-craigslist></yardi-widget-craigslist> | |
| 2482 | + | |
| 2483 | +<script> | |
| 2484 | +ysi.registerCallback(function () { | |
| 2485 | + if (typeof ClickTrack != "undefined") { | |
| 2486 | + ClickTrack._PageDisplayName = 'SG9tZSNTeXN0ZW0uUmFuZG9t-ER%2btLH5xchE%3d'; | |
| 2487 | + ClickTrack.SiteSection = 'PropertyPortal' ; | |
| 2488 | + ClickTrack._CCDisplayName = ''; | |
| 2489 | + ClickTrack.CCQS = ''; | |
| 2490 | + ClickTrack._ULI = ''; | |
| 2491 | + ClickTrack._Property = 'MTk3NTUwNyNTeXN0ZW0uUmFuZG9t-pNVo2khL8s0%3d'; | |
| 2492 | + ClickTrack.isPreview = ''; | |
| 2493 | + | |
| 2494 | + | |
| 2495 | + ClickTrack.init(); | |
| 2496 | + } | |
| 2497 | + | |
| 2498 | + ysi.clicktrack && ysi.clicktrack.CheckAndPassCTUserAndVisit('securecafe.com','securecafeapplicant.com','rentcafe.com'); | |
| 2499 | +}); | |
| 2500 | +</script> | |
| 2501 | + | |
| 2502 | + | |
| 2503 | + | |
| 2504 | + | |
| 2505 | + | |
| 2506 | +<input type="hidden" id="dni-request-verification-token" name="dni-request-verification-token" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ0FkYkBTilZTyBqOZxXdvnFjTcUDvUyvEdzZneGZ_hHd_ava2f1GBi-2k83j4N3uEEuulEFqpAeP_YCF15magJolKzfnKkJf_FF3xyFPl7SJHdpHL4AkP1xaoxsMLfclwA"> | |
| 2507 | +<script> | |
| 2508 | + | |
| 2509 | + var leadAttrSecureCafe = "securecafe.com"; | |
| 2510 | + var leadAttrReactOle = "securecafeapplicant.com"; | |
| 2511 | + var leadAttrRentCafe = "rentcafe.com"; | |
| 2512 | + | |
| 2513 | + function leadAttrHrefMatchesOleDomains(href) { | |
| 2514 | + if (!href) return false; | |
| 2515 | + var h = href.trim().toLowerCase(); | |
| 2516 | + var d0 = leadAttrSecureCafe.toLowerCase(); | |
| 2517 | + var d1 = leadAttrReactOle.toLowerCase(); | |
| 2518 | + var d2 = leadAttrRentCafe.toLowerCase(); | |
| 2519 | + return (d0.length && h.indexOf(d0) > -1) || (d1.length && h.indexOf(d1) > -1) || (d2.length && h.indexOf(d2) > -1); | |
| 2520 | + } | |
| 2521 | + | |
| 2522 | + function leadAttrHrefIsReactOleHostedUrl(href) { | |
| 2523 | + if (!href) return false; | |
| 2524 | + var h = href.trim().toLowerCase(); | |
| 2525 | + var d1 = leadAttrReactOle.toLowerCase(); | |
| 2526 | + var d2 = leadAttrRentCafe.toLowerCase(); | |
| 2527 | + return (d1.length && h.indexOf(d1) > -1) || (d2.length && h.indexOf(d2) > -1); | |
| 2528 | + } | |
| 2529 | + | |
| 2530 | + ysi.registerCallback(function () { | |
| 2531 | + | |
| 2532 | + if (!ysi.cookie.read('PropLeadSource_' + 1975507)) { | |
| 2533 | + if ('' === 'True') { | |
| 2534 | + ysi.cookie.create("PropLeadSource_" + 1975507, 'rentcafe',30); | |
| 2535 | + } else { | |
| 2536 | + ysi.cookie.create("PropLeadSource_" + 1975507, 'portal', 30); | |
| 2537 | + } | |
| 2538 | + } | |
| 2539 | + | |
| 2540 | + if (typeof RCTPCampaign != "undefined") { | |
| 2541 | + | |
| 2542 | + console.log("Initializing RCTP Campaign"); | |
| 2543 | + | |
| 2544 | + RCTPCampaign.PId = "1975507"; | |
| 2545 | + RCTPCampaign.UrlPattern = "/champlain-village-urbain"; | |
| 2546 | + RCTPCampaign.UseMVCDNI = "1"; | |
| 2547 | + RCTPCampaign.init(); | |
| 2548 | + | |
| 2549 | + RCTPCampaign.DoExecuteAfterCampaignLoad(function () { | |
| 2550 | + if (RCTPCampaign.CampaignDetails.CampaignID != "0" && RCTPCampaign.CampaignDetails.CampaignID != "") { | |
| 2551 | + | |
| 2552 | + console.log("RC Campaign Type - " + RCTPCampaign.CampaignDetails.CampaignType); | |
| 2553 | + console.log("RC Campaign Id - " + RCTPCampaign.CampaignDetails.CampaignID); | |
| 2554 | + if (RCTPCampaign.CampaignDetails.CampaignType == "StandardCampaign") | |
| 2555 | + { | |
| 2556 | + ysi.cookie.create("RCStandardCampaignId_" + 1975507, RCTPCampaign.CampaignDetails.CampaignID); | |
| 2557 | + } | |
| 2558 | + else | |
| 2559 | + { | |
| 2560 | + ysi.cookie.create("RCDynamicCampaignId_" + 1975507, RCTPCampaign.CampaignDetails.CampaignID); | |
| 2561 | + } | |
| 2562 | + document.querySelectorAll('.click-to-call').forEach(function(dots) { | |
| 2563 | + dots.innerHTML = RCTPCampaign.CampaignDetails.Phone; | |
| 2564 | + }); | |
| 2565 | + document.querySelectorAll('.click-to-call-href').forEach(function(dots) { | |
| 2566 | + dots.href = "tel:" + RCTPCampaign.CampaignDetails.Phone; | |
| 2567 | + }); | |
| 2568 | + document.querySelectorAll('.click_to_call_href_nudge').forEach(function(dots) { | |
| 2569 | + dots.href = "tel:" + RCTPCampaign.CampaignDetails.Phone; | |
| 2570 | + }); | |
| 2571 | + document.querySelectorAll('.click-to-call-title').forEach(function(dots) { | |
| 2572 | + dots.title = "Call Us at " + RCTPCampaign.CampaignDetails.Phone; | |
| 2573 | + dots.setAttribute("data-original-title","Call Us at " + RCTPCampaign.CampaignDetails.Phone); | |
| 2574 | + }); | |
| 2575 | + | |
| 2576 | + if ( RCTPCampaign.CampaignDetails.CampaignID != "0" && RCTPCampaign.CampaignDetails.CampaignID != "" ) { | |
| 2577 | + document.querySelectorAll('a:not(.donottrack)').forEach( | |
| 2578 | + function (el) { | |
| 2579 | + var href = el.getAttribute('href'); | |
| 2580 | + if (href) { | |
| 2581 | + if (leadAttrHrefMatchesOleDomains(href)) { | |
| 2582 | + el.href = RCTPCampaign.AppendCrossDomainParamsInURL(href) | |
| 2583 | + } | |
| 2584 | + } | |
| 2585 | + }); | |
| 2586 | + } | |
| 2587 | + | |
| 2588 | + | |
| 2589 | + } | |
| 2590 | + | |
| 2591 | + | |
| 2592 | + }); | |
| 2593 | + | |
| 2594 | + | |
| 2595 | + } | |
| 2596 | + | |
| 2597 | + | |
| 2598 | + if (ysi.cookie.read('PropLeadSource_' + 1975507)) | |
| 2599 | + { | |
| 2600 | + | |
| 2601 | + var propleadsource=ysi.cookie.read('PropLeadSource_' + 1975507) | |
| 2602 | + document.querySelectorAll('a:not(.donottrack)').forEach( | |
| 2603 | + function (el) { | |
| 2604 | + var href = el.getAttribute('href'); | |
| 2605 | + if (href) { | |
| 2606 | + if (leadAttrHrefMatchesOleDomains(href) && !leadAttrHrefIsReactOleHostedUrl(href)) { | |
| 2607 | + if (href.indexOf("PropLeadSource") === -1) | |
| 2608 | + { | |
| 2609 | + if (href.indexOf("?") == -1) { | |
| 2610 | + href = href + "?"; | |
| 2611 | + } else { | |
| 2612 | + href = href + "&"; | |
| 2613 | + } | |
| 2614 | + href = href + 'PropLeadSource_' + 1975507 + "=" + propleadsource; | |
| 2615 | + el.setAttribute('href', href); | |
| 2616 | + } | |
| 2617 | + } | |
| 2618 | + } | |
| 2619 | + }); | |
| 2620 | + } | |
| 2621 | + }); | |
| 2622 | + | |
| 2623 | +</script> | |
| 2624 | + | |
| 2625 | + <script> | |
| 2626 | + // Set visited timestamp, regardless of whether a nudge is on this page | |
| 2627 | + let visited = localStorage.getItem('timestamp'); | |
| 2628 | + if (!visited) { | |
| 2629 | + localStorage.setItem('timestamp', new Date().getTime()); | |
| 2630 | + } | |
| 2631 | + | |
| 2632 | + let innerPage = document.getElementById("innerpage"); | |
| 2633 | + // We check if device uses common breakpoint 767px, has touch capabilities, or supports DocumentTouch interface (supported by some older mobile browsers) | |
| 2634 | + let isMobileorTablet = window.matchMedia('(max-width: 767px)').mactches || ('ontouchstart' in window) || (window.DocumentTouch && document instanceof window.DocumentTouch); | |
| 2635 | + if (innerPage && !isMobileorTablet) { | |
| 2636 | + | |
| 2637 | + console.log('Not mobile or tablet'); | |
| 2638 | + let mainEle = document.querySelector("main"); | |
| 2639 | + let bannerImg = mainEle.previousElementSibling; | |
| 2640 | + | |
| 2641 | + | |
| 2642 | + if (bannerImg.classList.contains("fixed-background") && !bannerImg.classList.contains("ysi-innerpage-banner")) { | |
| 2643 | + console.log("No Banner Image Widget") | |
| 2644 | + bannerImg.classList.add("center-top"); | |
| 2645 | + let nudgeEle = document.getElementById("nudgeTop"); | |
| 2646 | + let menuEle = document.querySelector(".sticky-top"); | |
| 2647 | + | |
| 2648 | + function updateBackgroundPosition() { | |
| 2649 | + /* | |
| 2650 | + *We use the height of the nudge to correct | |
| 2651 | + *the position of the banner image when set to parallax | |
| 2652 | + */ | |
| 2653 | + let menuHeight = menuEle.offsetHeight; | |
| 2654 | + let nudgeHeight = nudgeEle.offsetHeight; | |
| 2655 | + bannerImg.style.backgroundPositionY = (nudgeHeight + menuHeight) + 'px'; | |
| 2656 | + } | |
| 2657 | + | |
| 2658 | + // Update background position | |
| 2659 | + updateBackgroundPosition(); | |
| 2660 | + | |
| 2661 | + // Update if window resized | |
| 2662 | + //window.addEventListener("resize", updateBackgroundPosition); | |
| 2663 | + | |
| 2664 | + // We chech for changes in the nudge widget | |
| 2665 | + let resizeObserver = new ResizeObserver(() => { | |
| 2666 | + updateBackgroundPosition(); | |
| 2667 | + }); | |
| 2668 | + | |
| 2669 | + resizeObserver.observe(nudgeEle); | |
| 2670 | + | |
| 2671 | + // We remove the classes that cause bg image to blow out | |
| 2672 | + bannerImg.classList.remove("cover", "center-center") | |
| 2673 | + }; | |
| 2674 | + | |
| 2675 | + } | |
| 2676 | + </script> | |
| 2677 | + | |
| 2678 | + | |
| 2679 | + | |
| 2680 | + | |
| 2681 | + | |
| 2682 | +<script> | |
| 2683 | + ysi.SiteId = 'NDIyMzUx-5yLDe6o3IUc%3d'; | |
| 2684 | + ysi.registerCallback(function () { | |
| 2685 | + ysi.SiteId='NDIyMzUx-5yLDe6o3IUc%3d'; | |
| 2686 | + if (window.location.search ) { | |
| 2687 | + if (window.location.search.includes("touchpoint")) { | |
| 2688 | + if (!ysi.cookie.read('Propleadtouchpoint_' + 1975507)) { | |
| 2689 | + var urlParams = new URLSearchParams(window.location.search); | |
| 2690 | + urlParams.forEach(function (value, key) { | |
| 2691 | + if (key == "touchpoint" && value.length > 0) { | |
| 2692 | + ysi.cookie.create("Propleadtouchpoint_" + 1975507, value, 0.0138889); | |
| 2693 | + } | |
| 2694 | + }); | |
| 2695 | + } | |
| 2696 | + } | |
| 2697 | + if (window.location.search.includes("conversationguid")) { | |
| 2698 | + | |
| 2699 | + var urlParams = new URLSearchParams(window.location.search); | |
| 2700 | + urlParams.forEach(function (value, key) { | |
| 2701 | + if (key == "conversationguid" && value.length > 0 && value.length != "undefined") { | |
| 2702 | + var conversationguidval = value; | |
| 2703 | + ysi.cookie.create("cgid", conversationguidval, 0.0138889); | |
| 2704 | + } | |
| 2705 | + }); | |
| 2706 | + } | |
| 2707 | + | |
| 2708 | + if (window.location.search.includes("ccpid")) { | |
| 2709 | + if (!ysi.cookie.read('ccpid_' + 1975507)) { | |
| 2710 | + var urlParams = new URLSearchParams(window.location.search); | |
| 2711 | + urlParams.forEach(function (value, key) { | |
| 2712 | + if (key == "ccpid" && value.length > 0) { | |
| 2713 | + ysi.cookie.create("ccpid_" + 1975507, value, 0.0138889); | |
| 2714 | + } | |
| 2715 | + }); | |
| 2716 | + } | |
| 2717 | + } | |
| 2718 | + | |
| 2719 | + } | |
| 2720 | + }); | |
| 2721 | + | |
| 2722 | + | |
| 2723 | +</script> | |
| 2724 | + | |
| 2725 | + | |
| 2726 | + | |
| 2727 | + | |
| 2728 | + | |
| 2729 | + | |
| 2730 | + | |
| 2731 | + | |
| 2732 | + | |
| 2733 | + | |
| 2734 | + <link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/422351/brigil_prop1/widgets/photogallery-default-widget.569188.134322951295348276.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/422351/brigil_prop1/widgets/photogallery-default-widget.569188.134322951295348276.css"></noscript> | |
| 2735 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/422351/brigil_prop1/widgets/modal-widget.569188.134322951295348276.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/422351/brigil_prop1/widgets/modal-widget.569188.134322951295348276.css"></noscript> | |
| 2736 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/422351/brigil_prop1/ysi.datepicker.569188.134322951295348276.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/422351/brigil_prop1/ysi.datepicker.569188.134322951295348276.css"></noscript> | |
| 2737 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/422351/brigil_prop1/widgets/floorplans-optimized-layout-widget.569188.134322951295348276.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/422351/brigil_prop1/widgets/floorplans-optimized-layout-widget.569188.134322951295348276.css"></noscript> | |
| 2738 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/422351/brigil_prop1/widgets/floorplans-filter.569188.134322951295348276.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/422351/brigil_prop1/widgets/floorplans-filter.569188.134322951295348276.css"></noscript> | |
| 2739 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/422351/brigil_prop1/widgets/floorplans-optimized-image-modal.569188.134322951295348276.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/422351/brigil_prop1/widgets/floorplans-optimized-image-modal.569188.134322951295348276.css"></noscript> | |
| 2740 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/422351/brigil_prop1/widgets/prequal-widget.569188.134322951295348276.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/422351/brigil_prop1/widgets/prequal-widget.569188.134322951295348276.css"></noscript> | |
| 2741 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/422351/brigil_prop1/widgets/accessibility-options.569188.134322951295348276.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/422351/brigil_prop1/widgets/accessibility-options.569188.134322951295348276.css"></noscript> | |
| 2742 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/422351/brigil_prop1/widgets/address-widget.569188.134322951295348276.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/422351/brigil_prop1/widgets/address-widget.569188.134322951295348276.css"></noscript> | |
| 2743 | + | |
| 2744 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.bsn.134322934430000000.js"></script> | |
| 2745 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.lib.134322934460000000.js"></script> | |
| 2746 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.smartclasses.134322934470000000.js"></script> | |
| 2747 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/siteeditor-preview.134322934220000000.js"></script> | |
| 2748 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/incompatible-browser.134322934150000000.js" nomodule="nomodule"></script> | |
| 2749 | +<script src="https://cdngeneralmvc.rentcafe.com/admin/admin-area.js" defer="defer"></script> | |
| 2750 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.bootstrap.carousel.134322934410000000.js"></script> | |
| 2751 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/focus-scroll-visible.134322934300000000.js"></script> | |
| 2752 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/socialmedia-widget.134322934400000000.js"></script> | |
| 2753 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/floating-label-dropdown.134322934290000000.js"></script> | |
| 2754 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/form-contact-session.134322934300000000.js"></script> | |
| 2755 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.datepicker.134322934440000000.js"></script> | |
| 2756 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.modal.134322934460000000.js"></script> | |
| 2757 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/login-links-dropdown.134322934320000000.js"></script> | |
| 2758 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/menu.134322934340000000.js"></script> | |
| 2759 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/floorplans-widget.134322934300000000.js"></script> | |
| 2760 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/contactus.134322934260000000.js"></script> | |
| 2761 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/contactmodal-widget.134322934250000000.js"></script> | |
| 2762 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/servertranslation.134322934220000000.js"></script> | |
| 2763 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/floorplan-optimized-image-modals.134322934300000000.js"></script> | |
| 2764 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/floorplan-optimized-layout-widget.134322934300000000.js"></script> | |
| 2765 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/recaptcha-widget.134322934370000000.js"></script> | |
| 2766 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/modal-widget.134322934340000000.js"></script> | |
| 2767 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/prequal-widget.134322934360000000.js"></script> | |
| 2768 | +<script src="https://t.rentcafe.com/rctv1.4.min.js"></script> | |
| 2769 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/clicktrack-widget.134322934250000000.js"></script> | |
| 2770 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/leadattributionanddni.134322934320000000.js"></script> | |
| 2771 | +<script>document.addEventListener("click", function (e) { | |
| 2772 | + const trigger = e.target.closest('[class*="scrollto-smartclass-target-"]'); | |
| 2773 | + if (!trigger) return; | |
| 2774 | + | |
| 2775 | + // Find the target class name | |
| 2776 | + const targetClass = Array.from(trigger.classList).find(c => | |
| 2777 | + c.includes("scrollto-smartclass-target-") | |
| 2778 | + ); | |
| 2779 | + if (!targetClass) return; | |
| 2780 | + | |
| 2781 | + const id = targetClass.split("scrollto-smartclass-target-")[1].split("--")[0]; | |
| 2782 | + const target = document.querySelector(".scrollto-smartclass-name-" + id); | |
| 2783 | + | |
| 2784 | + if (!target) return; | |
| 2785 | + | |
| 2786 | + // STOP the original scrollIntoView | |
| 2787 | + e.preventDefault(); | |
| 2788 | + e.stopImmediatePropagation(); | |
| 2789 | + | |
| 2790 | + // Apply custom offset scroll (5vh) | |
| 2791 | + const offset = window.innerHeight * 0.1; | |
| 2792 | + const elementPosition = target.getBoundingClientRect().top + window.pageYOffset; | |
| 2793 | + const offsetPosition = elementPosition - offset; | |
| 2794 | + | |
| 2795 | + window.scrollTo({ | |
| 2796 | + top: offsetPosition, | |
| 2797 | + behavior: "smooth" | |
| 2798 | + }); | |
| 2799 | +}, true); // <-- use capture phase to override original listener</script> | |
| 2800 | + | |
| 2801 | + <script>ysi.serviceworker={register:function(){if("serviceWorker"in navigator){let e=document.getElementById("mainCSS"),r=e?encodeURI(e.getAttribute("href")):"",i=r?r.substr(r.indexOf(".")+1,r.lastIndexOf(".")-r.indexOf(".")-1):"",s=document.querySelectorAll("[data-name=property-logo]")[0],t=s?"PICTURE"===s.tagName?s.getElementsByTagName("img")[0].src:s.src:"",o="/serviceworker.js?version="+i+"&css="+r+"&logo="+(t=t?encodeURI(t):"")+"&serviceworker=1";navigator.serviceWorker.register(o)}}},ysi.serviceworker&&ysi.serviceworker.register();</script> | |
| 2802 | + | |
| 2803 | + | |
| 2804 | + | |
| 2805 | + | |
| 2806 | + | |
| 2807 | + | |
| 2808 | + | |
| 2809 | + | |
| 2810 | + | |
| 2811 | + | |
| 2812 | + | |
| 2813 | + | |
| 2814 | + | |
| 2815 | + | |
| 2816 | + | |
| 2817 | + | |
| 2818 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.localstorage.134322934460000000.js"></script> | |
| 2819 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/adwords_gadid.134322934040000000.js"></script> | |
| 2820 | + | |
| 2821 | + | |
| 2822 | + <!-- | |
| 2823 | + <yardi-add-sass path="widgets/go-to-top" async="true" /> | |
| 2824 | +--> | |
| 2825 | + | |
| 2826 | +<div id="goToTop" role="complementary" aria-labelledby="gototoparialabel" customlabelreplaced=""> | |
| 2827 | + <button data-selenium-id="btngototop" class="btn btn-dark border-0 widget-left" customlabelreplaced=""><svg width="16px" height="26px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z"></path></svg><span class="sr-only" id="gototoparialabel" customlabelreplaced="">Go to top</span></button> | |
| 2828 | +</div> | |
| 2829 | + | |
| 2830 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/go-to-top.134322934300000000.js" defer="defer"></script> | |
| 2831 | + | |
| 2832 | + | |
| 2833 | + <!--Accessibility Modal --> | |
| 2834 | + <div class="modal hide fade" id="acsModal" role="dialog" aria-labelledby="acsModalTitle" aria-modal="true" aria-hidden="true" customlabelreplaced=""> | |
| 2835 | + <div class="modal-dialog modal-dialog-scrollable modal-left" role="document" customlabelreplaced=""> | |
| 2836 | + <div class="modal-content" customlabelreplaced=""> | |
| 2837 | + <div class="modal-header" customlabelreplaced=""> | |
| 2838 | + <span class="modal-title" id="acsModalTitle" role="heading" aria-level="2" customlabelreplaced=""> | |
| 2839 | + Accessibility Options | |
| 2840 | + </span> | |
| 2841 | + <button id="acsClose" type="button" class="close acs-Close" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""> | |
| 2842 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 2843 | + </button> | |
| 2844 | + </div> | |
| 2845 | + <div class="modal-body" id="acsOptions" customlabelreplaced=""> | |
| 2846 | + <!--Color Adjustments Container --> | |
| 2847 | + <div class="acs-adjustment-container" id="colorAdjustment" data-ysi-acs-container="colorContainer" customlabelreplaced=""> | |
| 2848 | + <div class="acs-category-title" role="heading" aria-level="3" customlabelreplaced="">Color Adjustment</div> | |
| 2849 | + <div class="acs-adjustments-group" customlabelreplaced=""> | |
| 2850 | + <button type="button" class="acs-adjustment acs-color-choice " aria-pressed="false" data-ysi-acs-color-adjustment="" data-ysi-acs-light-contrast="" data-ysi-acs-color="light" customlabelreplaced=""> | |
| 2851 | + <div class="acs-adjustment-content" customlabelreplaced=""> | |
| 2852 | + <svg class="acs-adjustment-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="48px" height="48px" viewBox="0 0 48 48"> | |
| 2853 | + <g stroke-width="2" transform="translate(0, 0)"> | |
| 2854 | + <line data-color="color-2" fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" x1="2" y1="24" x2="6" y2="24" stroke-linejoin="miter"></line> | |
| 2855 | + <line data-color="color-2" fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" x1="8.444" y1="8.444" x2="11.272" y2="11.272" stroke-linejoin="miter"></line> | |
| 2856 | + <line data-color="color-2" fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" x1="24" y1="2" x2="24" y2="6" stroke-linejoin="miter"></line> | |
| 2857 | + <line data-color="color-2" fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" x1="39.556" y1="8.444" x2="36.728" y2="11.272" stroke-linejoin="miter"></line> | |
| 2858 | + <line data-color="color-2" fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" x1="46" y1="24" x2="42" y2="24" stroke-linejoin="miter"></line> | |
| 2859 | + <line data-color="color-2" fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" x1="39.556" y1="39.556" x2="36.728" y2="36.728" stroke-linejoin="miter"></line> | |
| 2860 | + <line data-color="color-2" fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" x1="24" y1="46" x2="24" y2="42" stroke-linejoin="miter"></line> | |
| 2861 | + <line data-color="color-2" fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" x1="8.444" y1="39.556" x2="11.272" y2="36.728" stroke-linejoin="miter"></line> | |
| 2862 | + <circle fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" cx="24" cy="24" r="12" stroke-linejoin="miter"></circle> | |
| 2863 | + </g> | |
| 2864 | + </svg> | |
| 2865 | + <span class="acs-adjustment-title" customlabelreplaced="">Light Contrast</span> | |
| 2866 | + </div> | |
| 2867 | + </button> | |
| 2868 | + <button type="button" class="acs-adjustment acs-color-choice " aria-pressed="false" data-ysi-acs-color-adjustment="" data-ysi-acs-dark-contrast="" data-ysi-acs-color="dark" customlabelreplaced=""> | |
| 2869 | + <div class="acs-adjustment-content" customlabelreplaced=""> | |
| 2870 | + <svg class="acs-adjustment-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="32px" height="32px" viewBox="0 0 32 32"> | |
| 2871 | + <g transform="translate(0, 0)"> | |
| 2872 | + <path fill="#444444" d="M29.7,18.5c-1.2,0.3-2.3,0.5-3.5,0.5C18.9,19,13,13.1,13,5.8c0-1.1,0.2-2.3,0.5-3.5c0.1-0.3,0-0.7-0.3-1 | |
| 2873 | + C13,1,12.6,0.9,12.2,1C5.6,2.8,1,8.9,1,15.7C1,24.2,7.8,31,16.3,31c6.9,0,12.9-4.6,14.7-11.2c0.1-0.3,0-0.7-0.3-1 | |
| 2874 | + S30.1,18.4,29.7,18.5z"></path> | |
| 2875 | + </g> | |
| 2876 | + </svg> | |
| 2877 | + <span class="acs-adjustment-title" customlabelreplaced="">Dark Contrast</span> | |
| 2878 | + </div> | |
| 2879 | + </button> | |
| 2880 | + <button type="button" class="acs-adjustment acs-color-choice " aria-pressed="false" data-ysi-acs-color-adjustment="" data-ysi-acs-monochrome="" data-ysi-acs-color="monochrome" customlabelreplaced=""> | |
| 2881 | + <div class="acs-adjustment-content" customlabelreplaced=""> | |
| 2882 | + <svg class="acs-adjustment-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="32px" height="32px" viewBox="0 0 32 32"> | |
| 2883 | + <g transform="translate(0, 0)"> | |
| 2884 | + <rect y="1" width="11" height="30" fill="#444444"></rect> | |
| 2885 | + <rect x="17" y="1" width="7" height="30" fill="#444444" opacity="0.7" data-color="color-2"></rect> | |
| 2886 | + <rect x="30" y="1" width="2" height="30" fill="#444444" opacity="0.4"></rect> | |
| 2887 | + </g> | |
| 2888 | + </svg> | |
| 2889 | + <span class="acs-adjustment-title" customlabelreplaced="">Monochrome</span> | |
| 2890 | + </div> | |
| 2891 | + </button> | |
| 2892 | + <button type="button" class="acs-adjustment acs-color-choice " aria-pressed="false" data-ysi-acs-color-adjustment="" data-ysi-acs-high-saturation="" data-ysi-acs-color="high-saturation" customlabelreplaced=""> | |
| 2893 | + <div class="acs-adjustment-content" customlabelreplaced=""> | |
| 2894 | + <svg class="acs-adjustment-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="32px" height="32px" viewBox="0 0 32 32"> | |
| 2895 | + <g transform="translate(0, 0)"> | |
| 2896 | + <path fill="#444444" d="M27.3,4.7c-3-3-7-4.7-11.3-4.7S7.7,1.7,4.7,4.7c-6.2,6.2-6.2,16.4,0,22.6c3,3,7,4.7,11.3,4.7 | |
| 2897 | + s8.3-1.7,11.3-4.7C33.6,21.1,33.6,10.9,27.3,4.7z M6.1,6.1C8.7,3.5,12.3,2,16,2c3.4,0,6.6,1.2,9.2,3.4L5.4,25.2 | |
| 2898 | + C0.7,19.7,0.9,11.3,6.1,6.1z"></path> | |
| 2899 | + </g> | |
| 2900 | + </svg> | |
| 2901 | + <span class="acs-adjustment-title" customlabelreplaced="">High Saturation</span> | |
| 2902 | + </div> | |
| 2903 | + </button> | |
| 2904 | + <button type="button" class="acs-adjustment acs-color-choice " aria-pressed="false" data-ysi-acs-color-adjustment="" data-ysi-acs-low-saturation="" data-ysi-acs-color="low-saturation" customlabelreplaced=""> | |
| 2905 | + <div class="acs-adjustment-content" customlabelreplaced=""> | |
| 2906 | + <svg class="acs-adjustment-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="32px" height="32px" viewBox="0 0 32 32"> | |
| 2907 | + <g stroke-width="2" transform="translate(0, 0)"> | |
| 2908 | + <path data-color="color-2" data-stroke="none" d="M26.607,5.393,5.393,26.607A15,15,0,0,0,26.607,5.393Z" fill="#444444" opacity="0.5"></path> | |
| 2909 | + <line data-cap="butt" x1="26.607" y1="5.393" x2="5.393" y2="26.607" fill="none" stroke="#444444" stroke-miterlimit="10" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter"></line> | |
| 2910 | + <circle cx="16" cy="16" r="15" fill="none" stroke="#444444" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></circle> | |
| 2911 | + </g> | |
| 2912 | + </svg> | |
| 2913 | + <span class="acs-adjustment-title" customlabelreplaced="">Low Saturation</span> | |
| 2914 | + </div> | |
| 2915 | + </button> | |
| 2916 | + <button type="button" class="acs-adjustment acs-color-choice " aria-pressed="false" data-ysi-acs-color-adjustment="" data-ysi-acs-invert-colors="" data-ysi-acs-color="invert-colors" customlabelreplaced=""> | |
| 2917 | + <div class="acs-adjustment-content" customlabelreplaced=""> | |
| 2918 | + <svg class="acs-adjustment-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="32px" height="32px" viewBox="0 0 32 32"> | |
| 2919 | + <g transform="translate(0, 0)"> | |
| 2920 | + <polygon data-color="color-2" fill="#444444" points="7,14 9,14 9,11 12,11 12,9 9,9 9,6 7,6 7,9 4,9 4,11 7,11 "></polygon> | |
| 2921 | + <path fill="#444444" d="M31,2H1C0.448,2,0,2.448,0,3v26c0,0.552,0.448,1,1,1h30c0.552,0,1-0.448,1-1V3C32,2.448,31.552,2,31,2z | |
| 2922 | + M28,23h-8v-2h8V23z M2.154,28H2V4h27.846L2.154,28z"></path> | |
| 2923 | + </g> | |
| 2924 | + </svg> | |
| 2925 | + <span class="acs-adjustment-title" customlabelreplaced="">Invert Colors</span> | |
| 2926 | + </div> | |
| 2927 | + </button> | |
| 2928 | + </div> | |
| 2929 | + <!-- --> | |
| 2930 | + </div> | |
| 2931 | + <!-- Text Adjustment Container --> | |
| 2932 | + <div class="acs-adjustment-container" id="textAdjustment" data-ysi-acs-container="textContainer" customlabelreplaced=""> | |
| 2933 | + <div class="acs-category-title" role="heading" aria-level="3" customlabelreplaced="">Text Adjustment</div> | |
| 2934 | + <div class="acs-adjustments-group" customlabelreplaced=""> | |
| 2935 | + <button id="textSizing" aria-pressed="" data-ysi-acs-text-scaling="" data-ysi-text-adjustment="acs-default" type="button" class="acs-adjustment acs-text-enlarge-choice " data-toggle="tooltip" data-placement="right" data-animation="true" data-title="Click button to cycle between regular, large, and extra large text sizes. " customlabelreplaced="" data-original-title="Click button to cycle between regular, large, and extra large text sizes. "><div class="acs-adjustment-content" customlabelreplaced=""> | |
| 2936 | + <svg class="acs-adjustment-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="32px" height="32px" viewBox="0 0 32 32"><g transform="translate(0, 0)"><path d="M14,19.438V3h3.558a2,2,0,0,1,1.9,1.368L20,6h2V0H2V6H4l.544-1.632A2,2,0,0,1,6.442,3H10V19.438a2,2,0,0,1-1.515,1.941L6,22v2H18V22l-2.485-.621A2,2,0,0,1,14,19.438Z" fill="#444444"></path><polygon points="24 12 21 12 21 9 19 9 19 12 16 12 16 14 19 14 19 17 21 17 21 14 24 14 24 12" fill="#444444" data-color="color-2"></polygon></g></svg> | |
| 2937 | + <span class="acs-adjustment-title" customlabelreplaced="">Enlarge Text</span> | |
| 2938 | + <span class="acs-adjustment-description" customlabelreplaced=""></span> | |
| 2939 | + <div class="d-flex w-100 h-10" customlabelreplaced=""><span class="w-50 h-60 badge-pill border-2 acs-indicator " data-ysi-acs-indicator-large="" customlabelreplaced=""></span><span class="w-50 h-60 ml-1 badge-pill border-2 acs-indicator " data-ysi-acs-indicator-extra-large="" customlabelreplaced=""></span></div> | |
| 2940 | + </div></button> | |
| 2941 | + </div> | |
| 2942 | + </div> | |
| 2943 | + </div> | |
| 2944 | + <div class="modal-footer flex-column customColor" customlabelreplaced=""> | |
| 2945 | + <button id="resetAcs" type="button" class="btn btn-sm" style="background-color: #000000" customlabelreplaced="">Reset Accessibility Widget</button> | |
| 2946 | + <button id="acsHide" type="button" class="accessibility-button btn btn-sm mt-2" data-target="#closeModalToggle" data-toggle="modal" style="background-color: #000000" customlabelreplaced="">Remove Accessibility Widget</button> | |
| 2947 | + <span class="acs-powered-by m-0 pt-3" customlabelreplaced="">Powered by RentCafe</span> | |
| 2948 | + </div> | |
| 2949 | + </div> | |
| 2950 | + </div> | |
| 2951 | + </div> | |
| 2952 | + <!-- Second modal --> | |
| 2953 | + <div class="modal hide fade closeModal" role="dialog" aria-modal="true" id="closeModalToggle" aria-hidden="true" aria-labelledby="closeModalTitle" tabindex="-1" customlabelreplaced=""> | |
| 2954 | + <div class="modal-dialog modal-dialog-centered modal-left" customlabelreplaced=""> | |
| 2955 | + <div class="modal-content" customlabelreplaced=""> | |
| 2956 | + <div class="modal-header" customlabelreplaced=""> | |
| 2957 | + <span class="modal-title" id="closeModalTitle" customlabelreplaced="">Are you sure you want to remove the accessibility widget?</span> | |
| 2958 | + <button type="button" class="close acs-Close" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""> | |
| 2959 | + <svg width="14px" height="22px" fill="#000" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 2960 | + </button> | |
| 2961 | + </div> | |
| 2962 | + <div class="modal-body" id="confirmModal" customlabelreplaced=""> | |
| 2963 | + This will reset any color adjustments you made and remove the accessibility widget from the website. The accessibility widget can be restored by completely closing and reopening the browser. | |
| 2964 | + </div> | |
| 2965 | + <div class="modal-footer justify-content-end" customlabelreplaced=""> | |
| 2966 | + <button class="accessibility-button btn btn-sm btn-underline mr-sm-3" data-target="#acsModal" data-toggle="modal" customlabelreplaced="">Cancel</button> | |
| 2967 | + <button class="btn btn-sm" data-dismiss="modal" id="closeAccs" customlabelreplaced="">Confirm</button> | |
| 2968 | + | |
| 2969 | + </div> | |
| 2970 | + </div> | |
| 2971 | + </div> | |
| 2972 | + </div> | |
| 2973 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/accessibility-options-widget.134322934240000000.js"></script> | |
| 2974 | + | |
| 2975 | + | |
| 2976 | + | |
| 2977 | + | |
| 2978 | + <style> | |
| 2979 | + :root { | |
| 2980 | + --helpwidget-background-color: #2d3d4d; | |
| 2981 | + --helpwidget-outline-color: #ffffff; | |
| 2982 | + } | |
| 2983 | + </style> | |
| 2984 | +<div id="help-widget" class="w-100 widget-right" role="complementary" aria-label="Front desk - how can we help you?" customlabelreplaced=""> | |
| 2985 | + <input type="hidden" name="propertyid" id="propertyid" value="1975507"> | |
| 2986 | + | |
| 2987 | + | |
| 2988 | + <script> | |
| 2989 | + | |
| 2990 | + function callusGA4trackM() { | |
| 2991 | + if (typeof gtag != 'undefined') { | |
| 2992 | + gtag('event', 'phone_call', { 'property_name': document.querySelector('meta[name="author"]').content, 'page_name': document.title, 'page_url': window.location.href, 'header_phone_number': '(819) 303-5616'}); | |
| 2993 | + } | |
| 2994 | + } | |
| 2995 | + | |
| 2996 | + </script> | |
| 2997 | + | |
| 2998 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/422351/brigil_prop1/widgets/help-widget-default.569188.134322951295348276.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/422351/brigil_prop1/widgets/help-widget-default.569188.134322951295348276.css"></noscript> | |
| 2999 | + | |
| 3000 | + | |
| 3001 | +<!---START: Layout horizontal---> | |
| 3002 | +<!---NOTE: .frontdesk-animation is used for animation. Remove class if you want to remove animation---> | |
| 3003 | + | |
| 3004 | +<div id="frontDesk-widget-horizontal" class="frontDesk-widget-horizontal horizontal position-fixed d-flex frontdesk-animation" customlabelreplaced=""> | |
| 3005 | + <button id="btnFrontDesk" type="button" class="btn btn-primary hide-frontDesk-widget bell animation-bell" aria-expanded="false" data-selenium-id="showHidefrontDeskWidget" customlabelreplaced="" aria-label="Show Front Desk"> | |
| 3006 | + <span class="d-block bounce-dot" customlabelreplaced=""></span> | |
| 3007 | + <span class="btn-bell d-inline-block" customlabelreplaced=""> | |
| 3008 | + <span class="fas fa-concierge-bell" aria-hidden="true" customlabelreplaced=""></span> | |
| 3009 | + <span class="sr-only" customlabelreplaced="">Front desk options </span> | |
| 3010 | + </span> | |
| 3011 | + </button> | |
| 3012 | + <div id="frontDesk-widget-wrapper" class="frontDesk-widget-wrapper close-widget" customlabelreplaced=""> | |
| 3013 | + <!-- Email Us - modal --> | |
| 3014 | + <button id="email-us-btn" data-modal-url="/champlain-village-urbain/contactus?IsDialog=1&IsFrontDesk=true" type="button" class="btn btn-primary email-us-btn widget-btns trigger-popup" data-selenium-id="emailUs" data-toggle="tooltip" data-placement="top" data-animation="true" data-title="Email Us" customlabelreplaced="" data-original-title="Email Us" tabindex="-1" disabled="disabled" aria-hidden="true"><svg focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px" height="24px" viewBox="0 0 24 24" stroke-width="2"><g stroke-width="2" transform="translate(0, 0)"><polyline data-cap="butt" data-color="color-2" points="1.614 3.558 12 13 22.385 3.559" fill="none" stroke="#ffffff" stroke-miterlimit="10" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter"></polyline> <rect x="1" y="3" width="22" height="18" rx="2" ry="2" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect></g></svg><span class="sr-only" customlabelreplaced="">Email Us</span></button> | |
| 3015 | + | |
| 3016 | + <!-- Call Us - mobile --> | |
| 3017 | + <a id="call-us-btn-phone" href="tel:(819) 303-5616" onclick="callusGA4trackM();" class="btn btn-primary click-to-call-href click-to-call-title call-us-btn widget-btns d-inline-block d-md-none" data-selenium-id="callUsPhone" data-toggle="tooltip" data-placement="top" data-animation="true" data-title="Call Us at (819) 303-5616" customlabelreplaced="" data-original-title="Call Us at (819) 303-5616" tabindex="-1" aria-hidden="true"><svg focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px" height="24px" viewBox="0 0 48 48" stroke-width="4"><g stroke-width="4" transform="translate(0, 0)"><path d="M31.041,28.94l-3.423,4.279A36.116,36.116,0,0,1,14.782,20.384l4.279-3.423a2.908,2.908,0,0,0,.84-3.45L16,4.728a2.908,2.908,0,0,0-3.39-1.635L5.186,5.019A2.925,2.925,0,0,0,3.028,8.25,43.142,43.142,0,0,0,39.751,44.973a2.925,2.925,0,0,0,3.23-2.158l1.926-7.425A2.91,2.91,0,0,0,43.273,32l-8.782-3.9A2.907,2.907,0,0,0,31.041,28.94Z" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="4" stroke-linejoin="miter"></path></g></svg><span class="sr-only" customlabelreplaced="">Call Us</span></a> | |
| 3018 | + <!-- Call Us - desktop --> | |
| 3019 | + <button id="call-us-btn" aria-label="Call Us" type="button" class="btn btn-primary click-to-call-title call-us-btn widget-btns trigger-popup d-none d-md-inline-block" data-selenium-id="callUsDesktop" data-toggle="tooltip" data-placement="top" data-animation="true" data-title="Call Us at (819) 303-5616" customlabelreplaced="" data-original-title="Call Us at (819) 303-5616" tabindex="-1" disabled="disabled" aria-hidden="true"><svg focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px" height="24px" viewBox="0 0 48 48" stroke-width="4"><g stroke-width="4" transform="translate(0, 0)"><path d="M31.041,28.94l-3.423,4.279A36.116,36.116,0,0,1,14.782,20.384l4.279-3.423a2.908,2.908,0,0,0,.84-3.45L16,4.728a2.908,2.908,0,0,0-3.39-1.635L5.186,5.019A2.925,2.925,0,0,0,3.028,8.25,43.142,43.142,0,0,0,39.751,44.973a2.925,2.925,0,0,0,3.23-2.158l1.926-7.425A2.91,2.91,0,0,0,43.273,32l-8.782-3.9A2.907,2.907,0,0,0,31.041,28.94Z" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="4" stroke-linejoin="miter"></path></g></svg></button> | |
| 3020 | + | |
| 3021 | + | |
| 3022 | + | |
| 3023 | + | |
| 3024 | + | |
| 3025 | + | |
| 3026 | + | |
| 3027 | + | |
| 3028 | + </div> | |
| 3029 | +</div> | |
| 3030 | +<!---END: Layout horizontal---> | |
| 3031 | +<!--- Show/Hide aria-label for Front Desk button ---> | |
| 3032 | +<script> | |
| 3033 | +(function (d) { | |
| 3034 | + "use strict"; | |
| 3035 | + function updateBtnFrontDeskAriaLabel(btn) { | |
| 3036 | + if (!btn || btn.id !== "btnFrontDesk") return; | |
| 3037 | + var expanded = btn.getAttribute("aria-expanded"); | |
| 3038 | + btn.setAttribute("aria-label", expanded === "true" ? "Hide Front Desk" : "Show Front Desk"); | |
| 3039 | + } | |
| 3040 | + function init() { | |
| 3041 | + var btn = d.getElementById("btnFrontDesk"); | |
| 3042 | + if (!btn) return; | |
| 3043 | + updateBtnFrontDeskAriaLabel(btn); | |
| 3044 | + if (window.MutationObserver) { | |
| 3045 | + var observer = new MutationObserver(function () { updateBtnFrontDeskAriaLabel(btn); }); | |
| 3046 | + observer.observe(btn, { attributes: true, attributeFilter: ["aria-expanded"] }); | |
| 3047 | + } | |
| 3048 | + } | |
| 3049 | + if (d.readyState === "loading") d.addEventListener("DOMContentLoaded", init); | |
| 3050 | + else init(); | |
| 3051 | +})(document); | |
| 3052 | +</script> | |
| 3053 | + | |
| 3054 | + <style> | |
| 3055 | + :root { | |
| 3056 | + --helpwidget-window-x-offset: 0px; | |
| 3057 | + --helpwidget-window-y-offset: 0px; | |
| 3058 | + } | |
| 3059 | + </style> | |
| 3060 | + | |
| 3061 | + <!--START Modal: Contact Us / Email Us --> | |
| 3062 | + <div id="email-us-window" class="popup-widgets-window draggable scrollable " customlabelreplaced=""> | |
| 3063 | + <div class="popup-content" customlabelreplaced=""> | |
| 3064 | + <div class="popup-header modal-header" customlabelreplaced=""> | |
| 3065 | + <h2 class="m-0 text-truncate" customlabelreplaced="">Contact Us </h2> | |
| 3066 | + <button class="close" aria-label="Close this dialog window" data-selenium-id="close" customlabelreplaced=""> <span aria-hidden="true" class="fa fa-times" customlabelreplaced=""></span></button> | |
| 3067 | + </div> | |
| 3068 | + <div id="help-widget-email-modal-body" class="popup-body p-4" customlabelreplaced=""> | |
| 3069 | + </div> | |
| 3070 | + </div> | |
| 3071 | + </div> | |
| 3072 | + <!--END Modal: Contact Us / Email Us --> | |
| 3073 | + <!--START Modal: Call Us --> | |
| 3074 | + <div id="call-us-window" class="popup-widgets-window draggable scrollable " customlabelreplaced=""> | |
| 3075 | + <div class="popup-content" customlabelreplaced=""> | |
| 3076 | + <div class="popup-header modal-header" customlabelreplaced=""> | |
| 3077 | + <h2 class="m-0 text-truncate" customlabelreplaced="">Call Us</h2> | |
| 3078 | + <button class="close" aria-label="Close this dialog window" data-selenium-id="close" customlabelreplaced=""> <span aria-hidden="true" class="fa fa-times" customlabelreplaced=""></span></button> | |
| 3079 | + </div> | |
| 3080 | + <div class="popup-body p-4 text-center" customlabelreplaced=""> | |
| 3081 | + <strong class="text-xl mb-4 d-block" customlabelreplaced=""> | |
| 3082 | + | |
| 3083 | + <style>.mobile-only .click-to-call{display:none}</style> | |
| 3084 | + | |
| 3085 | + <div class="ysi-phone-widget ysi-phone-wrapper" customlabelreplaced=""> | |
| 3086 | + <div class="d-inline-flex" customlabelreplaced=""> | |
| 3087 | + <a data-selenium-id="click_to_call" onclick="fireGaPhone()" href="tel:+1 819-303-5616" aria-label="Call Champlain Village Urbain at +1 819-303-5616" class="ysi-phone-number click-to-call-href text-decoration-none color-inherit " customlabelreplaced=""> | |
| 3088 | + <span aria-hidden="true" class="fa-flip-horizontal fas fa-phone mobile-phone-icon" customlabelreplaced=""></span> | |
| 3089 | + <span class="click-to-call ml-2 text-underline" customlabelreplaced="">+1 819-303-5616</span> | |
| 3090 | + </a> | |
| 3091 | + | |
| 3092 | + </div> | |
| 3093 | + </div> | |
| 3094 | + <script> | |
| 3095 | + function fireGaPhone() { | |
| 3096 | + if (typeof gtag != 'undefined') { | |
| 3097 | + var myPage = location.pathname.replace("/", ""); | |
| 3098 | + if (myPage == "") { myPage = "index"; } | |
| 3099 | + if (true ) { | |
| 3100 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 3101 | + gtag('event', 'phone_call', { 'property_name': propertyName, 'page_name': document.title, 'page_url': window.location.href, 'header_phone_number': '+1 819-303-5616'}); | |
| 3102 | + } | |
| 3103 | + gtag('event', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 3104 | + gtag('rc.send', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 3105 | + } | |
| 3106 | + } | |
| 3107 | + </script> | |
| 3108 | +</strong> | |
| 3109 | + | |
| 3110 | + | |
| 3111 | + <div class="ysi-office-hours-widget ysi-office-hours-wrapper" customlabelreplaced=""> | |
| 3112 | + <div class="d-inline-flex" customlabelreplaced=""> | |
| 3113 | + <div class="ysi-office-hours" data-selenium-id="SID_footer_officeHours" customlabelreplaced=""> | |
| 3114 | + <ul class="list-unstyled mb-0" customlabelreplaced=""> | |
| 3115 | + <li class=" " customlabelreplaced=""> | |
| 3116 | + <span class="office-hours-day" data-selenium-id="OHMonday" customlabelreplaced="">Monday: </span> | |
| 3117 | + <span class="office-hours-time" data-selenium-id="OHMondayTime" customlabelreplaced="">10 AM <span class="sr-only" customlabelreplaced="">to</span> - 6 PM</span> | |
| 3118 | +</li> | |
| 3119 | + <li class=" " customlabelreplaced=""> | |
| 3120 | + <span class="office-hours-day" data-selenium-id="OHTuesday" customlabelreplaced="">Tuesday: </span> | |
| 3121 | + <span class="office-hours-time" data-selenium-id="OHTuesdayTime" customlabelreplaced="">10 AM <span class="sr-only" customlabelreplaced="">to</span> - 6 PM</span> | |
| 3122 | +</li> | |
| 3123 | + <li class=" " customlabelreplaced=""> | |
| 3124 | + <span class="office-hours-day" data-selenium-id="OHWednesday" customlabelreplaced="">Wednesday: </span> | |
| 3125 | + <span class="office-hours-time" data-selenium-id="OHWednesdayTime" customlabelreplaced="">10 AM <span class="sr-only" customlabelreplaced="">to</span> - 6 PM</span> | |
| 3126 | +</li> | |
| 3127 | + <li class=" " customlabelreplaced=""> | |
| 3128 | + <span class="office-hours-day" data-selenium-id="OHThursday" customlabelreplaced="">Thursday: </span> | |
| 3129 | + <span class="office-hours-time" data-selenium-id="OHThursdayTime" customlabelreplaced="">10 AM <span class="sr-only" customlabelreplaced="">to</span> - 6 PM</span> | |
| 3130 | +</li> | |
| 3131 | + <li class=" " customlabelreplaced=""> | |
| 3132 | + <span class="office-hours-day" data-selenium-id="OHFriday" customlabelreplaced="">Friday: </span> | |
| 3133 | + <span class="office-hours-time" data-selenium-id="OHFridayTime" customlabelreplaced="">10 AM <span class="sr-only" customlabelreplaced="">to</span> - 6 PM</span> | |
| 3134 | +</li> | |
| 3135 | + <li class=" " customlabelreplaced=""> | |
| 3136 | + <span class="office-hours-day" data-selenium-id="OHSaturday" customlabelreplaced="">Saturday: </span> | |
| 3137 | + <span class="office-hours-time" data-selenium-id="OHSaturdayTime" customlabelreplaced="">11 AM <span class="sr-only" customlabelreplaced="">to</span> - 5 PM</span> | |
| 3138 | +</li> | |
| 3139 | + <li class=" " customlabelreplaced=""> | |
| 3140 | + <span class="office-hours-day" data-selenium-id="OHSunday" customlabelreplaced="">Sunday: </span> | |
| 3141 | + <span class="office-hours-time" data-selenium-id="OHSundayTime" customlabelreplaced="">11 AM <span class="sr-only" customlabelreplaced="">to</span> - 5 PM</span> | |
| 3142 | +</li> | |
| 3143 | + </ul> | |
| 3144 | + </div> | |
| 3145 | + </div> | |
| 3146 | + </div> | |
| 3147 | + | |
| 3148 | + </div> | |
| 3149 | + <div class="border-top px-4 py-4 text-center" customlabelreplaced=""> | |
| 3150 | + | |
| 3151 | + | |
| 3152 | + | |
| 3153 | + | |
| 3154 | + | |
| 3155 | +<div class="ysi-address-widget ysi-address-wrapper vertical" customlabelreplaced=""> | |
| 3156 | + <div class="d-inline-flex" customlabelreplaced=""> | |
| 3157 | + <address class="ysi-address"> | |
| 3158 | + <a class="address-link color-inherit d-block" href="https://www.google.com/maps?cid=1282306467969122818" target="_blank" rel="noreferrer" customlabelreplaced=""> | |
| 3159 | + <div itemprop="name" data-selenium-id="address_propname" customlabelreplaced="">Champlain Village Urbain</div> | |
| 3160 | + <div itemprop="address" customlabelreplaced=""> | |
| 3161 | + <div data-selenium-id="address_street" customlabelreplaced=""> | |
| 3162 | + 20 de la Bonne-Renommée | |
| 3163 | + </div> | |
| 3164 | + <div customlabelreplaced=""> | |
| 3165 | + <span data-selenium-id="address_city" customlabelreplaced="">Gatineau</span>, <span data-selenium-id="address_state" customlabelreplaced="">QC</span><span data-selenium-id="address_zip" customlabelreplaced=""> J9H 0K9</span> | |
| 3166 | + </div> | |
| 3167 | + </div> | |
| 3168 | + <span class="sr-only" customlabelreplaced="">Opens in a new tab</span> | |
| 3169 | + </a> | |
| 3170 | + </address> | |
| 3171 | + | |
| 3172 | + </div> | |
| 3173 | +</div> | |
| 3174 | + | |
| 3175 | + | |
| 3176 | + </div> | |
| 3177 | + </div> | |
| 3178 | + </div> | |
| 3179 | + <!--END Modal: Call Us --> | |
| 3180 | + | |
| 3181 | + | |
| 3182 | + <input type="hidden" name="urlpattern" id="helpwidget-urlpattern" value="/champlain-village-urbain"> | |
| 3183 | + <!-- START Modal: RentCafe Conversations --> | |
| 3184 | + <div id="rentcafe-conversations-window" class="popup-widgets-window draggable scrollable " customlabelreplaced=""> | |
| 3185 | + <div class="popup-content" customlabelreplaced=""> | |
| 3186 | + <div class="popup-header modal-header" customlabelreplaced=""> | |
| 3187 | + <h2 class="rentcafe-conversations-title m-0 text-truncate" customlabelreplaced="">Chat With Us</h2> | |
| 3188 | + <button id="rentcafe-conversations-menu" class="menu d-none" aria-label="Show menu for this dialog window" customlabelreplaced=""><i class="fas fa-ellipsis-h" aria-hidden="true" customlabelreplaced=""></i></button> | |
| 3189 | + <button class="close" aria-label="Close this dialog window" data-selenium-id="close" customlabelreplaced=""> <span aria-hidden="true" class="fa fa-times" customlabelreplaced=""></span></button> | |
| 3190 | + </div> | |
| 3191 | + <div id="rentcafe-conversations-modal-body" class="popup-body p-4" customlabelreplaced=""> | |
| 3192 | + </div> | |
| 3193 | + </div> | |
| 3194 | + </div> | |
| 3195 | + | |
| 3196 | + | |
| 3197 | +</div> | |
| 3198 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.modal.134322934460000000.js"></script> | |
| 3199 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/recaptcha-widget.134322934370000000.js"></script> | |
| 3200 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/contactus.134322934260000000.js"></script> | |
| 3201 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/contactmodal-widget.134322934250000000.js"></script> | |
| 3202 | +<script> | |
| 3203 | + | |
| 3204 | + | |
| 3205 | + function textGA4track(eventName) { | |
| 3206 | + if (typeof gtag != 'undefined') { | |
| 3207 | + gtag('event', eventName, { 'property_name': document.querySelector('meta[name="author"]').content, 'page_url': window.location.href, 'page_name': document.title, 'form_name': 'text_us', 'button_label': 'text_us' }); | |
| 3208 | + } | |
| 3209 | + } | |
| 3210 | + | |
| 3211 | + let chatBtn = document.querySelector('#rentcafe-conversations-webchat-btn'); | |
| 3212 | + if (chatBtn) { | |
| 3213 | + chatBtn.addEventListener('click', function () { | |
| 3214 | + if (typeof gtag != 'undefined') { | |
| 3215 | + gtag('event', 'rentcafe_chatbot', { | |
| 3216 | + 'property_name': document.querySelector('meta[name="author"]').content, | |
| 3217 | + 'page_url': window.location.href, | |
| 3218 | + 'page_name': document.title, | |
| 3219 | + 'form_name': 'chat', | |
| 3220 | + 'button_label': 'chat_with_us' | |
| 3221 | + }); | |
| 3222 | + } | |
| 3223 | + }); | |
| 3224 | + } | |
| 3225 | + | |
| 3226 | + let textUsBtn = document.querySelector('#text-us-btn'); | |
| 3227 | + if (textUsBtn) { | |
| 3228 | + textUsBtn.addEventListener('click', function () { | |
| 3229 | + textGA4track('front_desk'); | |
| 3230 | + }); | |
| 3231 | + } | |
| 3232 | + | |
| 3233 | + let rccTextUsBtn = document.querySelector('#rentcafe-conversations-sms-btn'); | |
| 3234 | + if (rccTextUsBtn) { | |
| 3235 | + rccTextUsBtn.addEventListener('click', function () { | |
| 3236 | + textGA4track('rentcafe_chatbot'); | |
| 3237 | + }); | |
| 3238 | + } | |
| 3239 | + | |
| 3240 | + let emailUsBtn = document.querySelector('#email-us-btn'); | |
| 3241 | + if (emailUsBtn) { | |
| 3242 | + emailUsBtn.addEventListener('click', function () { | |
| 3243 | + if (typeof gtag != 'undefined') { | |
| 3244 | + gtag('event', 'open_modal', { | |
| 3245 | + 'property_name': document.querySelector('meta[name="author"]').content, | |
| 3246 | + 'page_url': window.location.href, | |
| 3247 | + 'page_name': document.title, | |
| 3248 | + 'form_name': 'contact_us', | |
| 3249 | + 'button_label': 'email_us' | |
| 3250 | + }); | |
| 3251 | + } | |
| 3252 | + }); | |
| 3253 | + } | |
| 3254 | + | |
| 3255 | + // Desktop Call Us button | |
| 3256 | + let callUsDbtn = document.querySelector('#call-us-btn'); | |
| 3257 | + if (callUsDbtn) { | |
| 3258 | + callUsDbtn.addEventListener('click', function() { | |
| 3259 | + if (typeof gtag !== 'undefined') { | |
| 3260 | + gtag('event', 'open_modal', { | |
| 3261 | + 'property_name': document.querySelector('meta[name="author"]').content, | |
| 3262 | + 'page_url': window.location.href, | |
| 3263 | + 'page_name': document.title, | |
| 3264 | + 'form_name': 'call_us', | |
| 3265 | + 'button_label': 'call_us' | |
| 3266 | + }); | |
| 3267 | + } | |
| 3268 | + }); | |
| 3269 | + } | |
| 3270 | + | |
| 3271 | + // Schedule A Tour button | |
| 3272 | + let scheduleTourBtn = document.querySelector('#schedule-a-tour-btn'); | |
| 3273 | + if (scheduleTourBtn) { | |
| 3274 | + scheduleTourBtn.addEventListener('click', function() { | |
| 3275 | + if (typeof gtag !== 'undefined') { | |
| 3276 | + gtag('event', 'open_modal', { | |
| 3277 | + 'property_name': document.querySelector('meta[name="author"]').content, | |
| 3278 | + 'page_url': window.location.href, | |
| 3279 | + 'page_name': document.title, | |
| 3280 | + 'form_name': 'schedule_a_tour', | |
| 3281 | + 'button_label': 'schedule_a_tour' | |
| 3282 | + }); | |
| 3283 | + } | |
| 3284 | + }); | |
| 3285 | + } | |
| 3286 | + | |
| 3287 | +</script> | |
| 3288 | + <script data-rcc_conversations="widget" data-src="https://webchat.omni.cafe/webchatjs/a2477826-581d-4db2-afcf-ef0753e76312/app.js?nocache=1&gaTracking=&buttonbgcolor=2d3d4d&buttontextcolor=ffffff&chatheader=0&embed=false" id="rccAppScript" defer=""></script> | |
| 3289 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/help-widget-rcc.134322934300000000.js"></script> | |
| 3290 | + <script> | |
| 3291 | + ysi.RCCSMSChannelUuid = ''; | |
| 3292 | + ysi.RCCDniUuids = JSON.parse("{\u00228889208942\u0022:\u0022d57f7ce4-6368-4876-a000-846796e18d48\u0022,\u00228662850412\u0022:\u0022\u0022,\u00228669936481\u0022:\u0022\u0022,\u00228339188341\u0022:\u0022\u0022,\u00228444930206\u0022:\u0022\u0022,\u00228557841959\u0022:\u0022\u0022,\u00228668278457\u0022:\u0022\u0022,\u00228774545065\u0022:\u0022\u0022,\u00228334051729\u0022:\u0022\u0022,\u00228447943935\u0022:\u0022\u0022,\u00228336104688\u0022:\u0022\u0022,\u00228554493307\u0022:\u0022\u0022,\u00228556434151\u0022:\u0022\u0022,\u00228669719224\u0022:\u0022\u0022,\u00228335887762\u0022:\u0022\u0022}"); | |
| 3293 | + </script> | |
| 3294 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/help-widget.134322934310000000.js"></script> | |
| 3295 | + <!-- Nudge positioning --> | |
| 3296 | + <script> | |
| 3297 | + ysi.helpWidgetOverlapNudge = false; | |
| 3298 | + </script> | |
| 3299 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/help-widget-nudge-positioning.134322934300000000.js"></script> | |
| 3300 | + | |
| 3301 | + | |
| 3302 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/intltelinput.134322934150000000.js"></script> | |
| 3303 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/inttelphoneinput.134322934160000000.js"></script> | |
| 3304 | + <link href="https://cdngeneralmvc.rentcafe.com/css/scss/422351/brigil_prop1/intlTelInput.569188.134322951295348276.css" rel="stylesheet" type="text/css"> | |
| 3305 | +<link data-href="https://cdngeneralmvc.rentcafe.com/css/scss/422351/brigil_prop1/overlayscrollbar.569188.134322951295348276.css" rel="stylesheet" type="text/css" id="overlayScrollbarStyle"> | |
| 3306 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.scrollbars.134322934460000000.js"></script> | |
| 3307 | +<script data-src="https://cdngeneralmvc.rentcafe.com/common/js/overlayscrollbars.134322934200000000.js" data-delayload="true" id="overlayScrollbarScript" data-callback="load"></script> <script type="application/ld+json"> | |
| 3308 | +{ | |
| 3309 | + "@context": "https://www.schema.org", | |
| 3310 | + "@type": [ | |
| 3311 | + "LocalBusiness", | |
| 3312 | + "ApartmentComplex" | |
| 3313 | + ], | |
| 3314 | + "url": "https://www.brigil.com/champlain-village-urbain/", | |
| 3315 | + "logo": "https://resource.rentcafe.com/image/upload/q_auto,f_auto/s3/2/252329/brigil-logo_champlain_bleu 1.png", | |
| 3316 | + "image": "https://resource.rentcafe.com/image/upload/q_auto,f_auto/s3/2/252329/p1942889_champlain_village_urbain_community_thumbnail.jpg", | |
| 3317 | + "priceRange": "$$", | |
| 3318 | + "petsAllowed": true, | |
| 3319 | + "accommodationFloorPlan": [ | |
| 3320 | + { | |
| 3321 | + "@type": "FloorPlan", | |
| 3322 | + "name": "1 Bedroom", | |
| 3323 | + "numberOfBedrooms": 1, | |
| 3324 | + "numberOfFullBathrooms": 1.0, | |
| 3325 | + "floorSize": { | |
| 3326 | + "@type": "QuantitativeValue", | |
| 3327 | + "minValue": 0.0, | |
| 3328 | + "maxValue": 0.0 | |
| 3329 | + } | |
| 3330 | + }, | |
| 3331 | + { | |
| 3332 | + "@type": "FloorPlan", | |
| 3333 | + "name": "2 Bedrooms*", | |
| 3334 | + "numberOfBedrooms": 2, | |
| 3335 | + "numberOfFullBathrooms": 1.0, | |
| 3336 | + "floorSize": { | |
| 3337 | + "@type": "QuantitativeValue", | |
| 3338 | + "minValue": 517.0, | |
| 3339 | + "maxValue": 623.0 | |
| 3340 | + } | |
| 3341 | + }, | |
| 3342 | + { | |
| 3343 | + "@type": "FloorPlan", | |
| 3344 | + "name": "2 Bedrooms", | |
| 3345 | + "numberOfBedrooms": 2, | |
| 3346 | + "numberOfFullBathrooms": 1.0, | |
| 3347 | + "floorSize": { | |
| 3348 | + "@type": "QuantitativeValue", | |
| 3349 | + "minValue": 735.0, | |
| 3350 | + "maxValue": 840.0 | |
| 3351 | + } | |
| 3352 | + }, | |
| 3353 | + { | |
| 3354 | + "@type": "FloorPlan", | |
| 3355 | + "name": "3 Bedrooms*", | |
| 3356 | + "numberOfBedrooms": 2, | |
| 3357 | + "numberOfFullBathrooms": 1.0, | |
| 3358 | + "floorSize": { | |
| 3359 | + "@type": "QuantitativeValue", | |
| 3360 | + "minValue": 603.0, | |
| 3361 | + "maxValue": 623.0 | |
| 3362 | + } | |
| 3363 | + }, | |
| 3364 | + { | |
| 3365 | + "@type": "FloorPlan", | |
| 3366 | + "name": "Penthouse 2 Beds* + Loft", | |
| 3367 | + "numberOfBedrooms": 2, | |
| 3368 | + "numberOfFullBathrooms": 1.0, | |
| 3369 | + "floorSize": { | |
| 3370 | + "@type": "QuantitativeValue", | |
| 3371 | + "minValue": 0.0, | |
| 3372 | + "maxValue": 0.0 | |
| 3373 | + } | |
| 3374 | + }, | |
| 3375 | + { | |
| 3376 | + "@type": "FloorPlan", | |
| 3377 | + "name": "Penthouse 2 Beds + Loft", | |
| 3378 | + "numberOfBedrooms": 2, | |
| 3379 | + "numberOfFullBathrooms": 1.0, | |
| 3380 | + "floorSize": { | |
| 3381 | + "@type": "QuantitativeValue", | |
| 3382 | + "minValue": 735.0, | |
| 3383 | + "maxValue": 995.0 | |
| 3384 | + } | |
| 3385 | + } | |
| 3386 | + ], | |
| 3387 | + "sameAs": [ | |
| 3388 | + "https://www.facebook.com/BRIGIL/", | |
| 3389 | + "https://www.linkedin.com/company/brigil", | |
| 3390 | + "https://instagram.com/brigilhomes", | |
| 3391 | + "https://www.youtube.com/@brigil8001" | |
| 3392 | + ], | |
| 3393 | + "openingHoursSpecification": [ | |
| 3394 | + { | |
| 3395 | + "@type": "OpeningHoursSpecification", | |
| 3396 | + "dayOfWeek": [ | |
| 3397 | + "Monday" | |
| 3398 | + ], | |
| 3399 | + "opens": "10:00:00", | |
| 3400 | + "closes": "18:00:00" | |
| 3401 | + }, | |
| 3402 | + { | |
| 3403 | + "@type": "OpeningHoursSpecification", | |
| 3404 | + "dayOfWeek": [ | |
| 3405 | + "Tuesday" | |
| 3406 | + ], | |
| 3407 | + "opens": "10:00:00", | |
| 3408 | + "closes": "18:00:00" | |
| 3409 | + }, | |
| 3410 | + { | |
| 3411 | + "@type": "OpeningHoursSpecification", | |
| 3412 | + "dayOfWeek": [ | |
| 3413 | + "Wednesday" | |
| 3414 | + ], | |
| 3415 | + "opens": "10:00:00", | |
| 3416 | + "closes": "18:00:00" | |
| 3417 | + }, | |
| 3418 | + { | |
| 3419 | + "@type": "OpeningHoursSpecification", | |
| 3420 | + "dayOfWeek": [ | |
| 3421 | + "Thursday" | |
| 3422 | + ], | |
| 3423 | + "opens": "10:00:00", | |
| 3424 | + "closes": "18:00:00" | |
| 3425 | + }, | |
| 3426 | + { | |
| 3427 | + "@type": "OpeningHoursSpecification", | |
| 3428 | + "dayOfWeek": [ | |
| 3429 | + "Friday" | |
| 3430 | + ], | |
| 3431 | + "opens": "10:00:00", | |
| 3432 | + "closes": "18:00:00" | |
| 3433 | + }, | |
| 3434 | + { | |
| 3435 | + "@type": "OpeningHoursSpecification", | |
| 3436 | + "dayOfWeek": [ | |
| 3437 | + "Saturday" | |
| 3438 | + ], | |
| 3439 | + "opens": "11:00:00", | |
| 3440 | + "closes": "17:00:00" | |
| 3441 | + }, | |
| 3442 | + { | |
| 3443 | + "@type": "OpeningHoursSpecification", | |
| 3444 | + "dayOfWeek": [ | |
| 3445 | + "Sunday" | |
| 3446 | + ], | |
| 3447 | + "opens": "11:00:00", | |
| 3448 | + "closes": "17:00:00" | |
| 3449 | + } | |
| 3450 | + ], | |
| 3451 | + "name": "Champlain Village Urbain", | |
| 3452 | + "address": { | |
| 3453 | + "@type": "PostalAddress", | |
| 3454 | + "addressLocality": "Gatineau", | |
| 3455 | + "addressRegion": "QC", | |
| 3456 | + "addressCountry": "CA", | |
| 3457 | + "postalCode": "J9H 0K9", | |
| 3458 | + "streetAddress": "20 de la Bonne-Renommée" | |
| 3459 | + }, | |
| 3460 | + "telephone": "(819) 576-2069", | |
| 3461 | + "hasMap": "https://www.google.com/maps?cid=1282306467969122818" | |
| 3462 | +}</script> | |
| 3463 | + | |
| 3464 | + | |
| 3465 | + <yardi-widget-siteeditorscript></yardi-widget-siteeditorscript> | |
| 3466 | + | |
| 3467 | + | |
| 3468 | +<script>(function(){function c(){var b=a.contentDocument||(a.contentWindow&&a.contentWindow.document);if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'a31d89730dd40d87',t:'MTc4Nzg1OTUxMA=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script><iframe height="1" width="1" style="position: absolute; top: 0px; left: 0px; border-width: medium; border-style: none; border-color: currentcolor; border-image: none; visibility: hidden;"></iframe> | |
| 3469 | + | |
| 3470 | +<script></script> | |
| 3471 | + | |
| 3472 | + | |
| 3473 | +<div id="onetrust-consent-sdk" data-nosnippet="true"><div class="onetrust-pc-dark-filter ot-fade-in" style="z-index:2147483645;"></div><div id="onetrust-banner-sdk" class="otFlat bottom ot-wo-title vertical-align-content" tabindex="0" aria-label="You must interact with the banner to dismiss it." style="bottom: 0px;"><div role="dialog" aria-modal="true" aria-label="You must interact with the banner to dismiss it."><div class="ot-sdk-container"><div class="ot-sdk-row"><div id="onetrust-group-container" class="ot-sdk-eight ot-sdk-columns"><div class="banner_logo"></div><div id="onetrust-policy"><div id="onetrust-policy-text">We use cookies and similar technologies (“Cookies”) as described in our Cookies Notice to collect information that helps us personalize your experience, record and analyze how you use our sites and services, and for targeted marketing. This information may also be collected by or shared with third parties. You can manage the use of Cookies in [Cookies Settings]. By clicking [Accept All] you consent to our use of Cookies.<a class="ot-cookie-policy-link" href="https://resources.yardi.com/legal/cookie-notice/" aria-label="More information about your privacy, opens in a new tab" rel="noopener noreferrer" target="_blank">Cookie Notice</a></div></div></div><div id="onetrust-button-group-parent" class="ot-sdk-three ot-sdk-columns has-reject-all-button"><div id="onetrust-button-group"><button id="onetrust-pc-btn-handler" aria-label="Cookies Settings, Opens the preference center dialog" aria-haspopup="dialog">Cookies Settings</button> <button id="onetrust-reject-all-handler">Reject All</button> <button id="onetrust-accept-btn-handler">Accept All Cookies</button></div></div></div></div><!-- Close Button --><div id="onetrust-close-btn-container"></div><!-- Close Button END--></div><div class="ot-force-consent-live-region ot-sr-only" aria-live="assertive" aria-atomic="true" style="position: absolute; width: 1px; height: 1px; padding: 0px; margin: -1px; overflow: hidden; clip: rect(0px, 0px, 0px, 0px); white-space: nowrap; border: 0px;"></div></div><div id="onetrust-pc-sdk" class="otPcPanel ot-hide ot-fade-in" lang="en"><div role="dialog" aria-modal="true" style="height: 100%;" aria-label="Privacy Preference Center"><!-- PC Header --><div class="ot-pc-header"><div class="ot-pc-logo"><img alt="OneTrust Company Logo" src="https://cdn.cookielaw.org/logos/4e85079a-4e3a-4ba5-a0ac-b85ac51e9d47/221d7757-1dc9-428d-971d-642d2cbb865a/d0529638-efff-446e-aa23-ea449b9acaa8/blank.png"></div></div><div id="ot-pc-content" class="ot-pc-scrollbar"><div class="ot-optout-signal ot-hide"><div class="ot-optout-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true"></svg></div><span id="ot-pc-gpc-txt"></span></div><h2 id="ot-pc-title">Privacy Preference Center</h2><div id="ot-pc-desc">Cookies are small data files that are placed on your computer or mobile device when you visit a website or use an online service. Cookies are widely used by organizations (like Yardi) in order to make their websites or services work, or to function more efficiently, as well as to provide reporting information. There are two types of cookies: session cookies and persistent cookies. Session cookies are stored in temporary memory, not retained after an end-user's browsing session ends and do not obtain information from the end-user's device. On the other hand, persistent cookies persist on your device in the browser's subfolder and are activated again once you visit the site that created the particular cookie and remains for the duration period set within the cookie's file. | |
| 3474 | +<br><br> | |
| 3475 | +Cookies set by the website or service operator are called "first party cookies." Cookies set by parties other than the website or service operator are called "third party cookies." Third party cookies typically enable certain third-party features or functionality to be provided on or through websites or services (such as, advertising, interactive content and analytics). The parties that set these third-party cookies can recognize an individual's computer both when they visit the website or use the service in question and also when they visit certain other websites. Click on the different category headings to find out more and change our default settings. | |
| 3476 | + <br><a href="/privacypolicy" class="privacy-notice-link" rel="noopener noreferrer" target="_blank" aria-label="More information about your privacy, opens in a new tab">Cookie Notice</a></div><button id="accept-recommended-btn-handler" ot-button-order="0">Allow All</button><section class="ot-sdk-row ot-cat-grp"><h3 id="ot-category-title"> Manage Consent Preferences</h3><div class="ot-accordion-layout ot-cat-item ot-vs-config" data-optanongroupid="C0001"><button ot-accordion="true" aria-expanded="false" aria-controls="ot-desc-id-C0001" aria-labelledby="ot-header-id-C0001 ot-status-id-C0001"></button><!-- Accordion header --><div class="ot-acc-hdr ot-always-active-group"><div class="ot-plus-minus"><span></span><span></span></div><h4 class="ot-cat-header" id="ot-header-id-C0001">Essential Website Cookies</h4><div id="ot-status-id-C0001" class="ot-always-active">Always Active</div></div><!-- accordion detail --><div class="ot-acc-grpcntr ot-acc-txt"><p class="ot-acc-grpdesc ot-category-desc" id="ot-desc-id-C0001">These cookies are strictly necessary to provide you with services available through our Sites and to use some of the Sites’ features, such as access to secure areas.</p><div class="ot-hlst-cntr"><button class="ot-link-btn category-host-list-handler" dir="ltr" aria-label="Essential Website Cookies - Cookie Details button opens Cookie List menu" data-parent-id="C0001">Cookies Details</button></div></div></div><div class="ot-accordion-layout ot-cat-item ot-vs-config" data-optanongroupid="C0004"><button ot-accordion="true" aria-expanded="false" aria-controls="ot-desc-id-C0004" aria-labelledby="ot-header-id-C0004"></button><!-- Accordion header --><div class="ot-acc-hdr"><div class="ot-plus-minus"><span></span><span></span></div><h4 class="ot-cat-header" id="ot-header-id-C0004">Targeting/Advertising Cookies</h4><div class="ot-tgl"><input type="checkbox" name="ot-group-id-C0004" id="ot-group-id-C0004" role="switch" class="category-switch-handler" data-optanongroupid="C0004" aria-labelledby="ot-header-id-C0004"> <label class="ot-switch" for="ot-group-id-C0004"><span class="ot-switch-nob"></span> <span class="ot-label-txt">Targeting/Advertising Cookies</span></label> </div></div><!-- accordion detail --><div class="ot-acc-grpcntr ot-acc-txt"><p class="ot-acc-grpdesc ot-category-desc" id="ot-desc-id-C0004">These cookies are used to make advertising messages more relevant to you. They perform functions like preventing the same ad from continuously reappearing, ensuring that ads are properly displayed for advertisers, and in some cases selecting advertisements that are based on your interests.</p><div class="ot-hlst-cntr"><button class="ot-link-btn category-host-list-handler" dir="ltr" aria-label="Targeting/Advertising Cookies - Cookie Details button opens Cookie List menu" data-parent-id="C0004">Cookies Details</button></div></div></div><div class="ot-accordion-layout ot-cat-item ot-vs-config" data-optanongroupid="C0002"><button ot-accordion="true" aria-expanded="false" aria-controls="ot-desc-id-C0002" aria-labelledby="ot-header-id-C0002"></button><!-- Accordion header --><div class="ot-acc-hdr"><div class="ot-plus-minus"><span></span><span></span></div><h4 class="ot-cat-header" id="ot-header-id-C0002">Performance and Functionality Cookies</h4><div class="ot-tgl"><input type="checkbox" name="ot-group-id-C0002" id="ot-group-id-C0002" role="switch" class="category-switch-handler" data-optanongroupid="C0002" aria-labelledby="ot-header-id-C0002"> <label class="ot-switch" for="ot-group-id-C0002"><span class="ot-switch-nob"></span> <span class="ot-label-txt">Performance and Functionality Cookies</span></label> </div></div><!-- accordion detail --><div class="ot-acc-grpcntr ot-acc-txt"><p class="ot-acc-grpdesc ot-category-desc" id="ot-desc-id-C0002">These cookies are used to enhance the performance and functionality of our Sites; to manage your preferences; to analyze and personalize your use of, or to generally help us better understand how our Sites are being used. We think that these cookies will improve your experience when using the Sites but are not essential. However, without these cookies, certain functionality (like videos) may become unavailable.</p><div class="ot-hlst-cntr"><button class="ot-link-btn category-host-list-handler" dir="ltr" aria-label="Performance and Functionality Cookies - Cookie Details button opens Cookie List menu" data-parent-id="C0002">Cookies Details</button></div></div></div><!-- Non Accordion Group --><!-- Accordion Group section starts --><!-- Accordion Group section ends --></section></div><section id="ot-pc-lst" class="ot-hide ot-pc-scrollbar"><div id="ot-pc-hdr"><div id="ot-lst-title"><button class="ot-link-btn back-btn-handler" aria-label="Back"><svg id="ot-back-arw" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 444.531 444.531" xml:space="preserve"><title>Back Button</title><g><path fill="#656565" d="M213.13,222.409L351.88,83.653c7.05-7.043,10.567-15.657,10.567-25.841c0-10.183-3.518-18.793-10.567-25.835 | |
| 3477 | + l-21.409-21.416C323.432,3.521,314.817,0,304.637,0s-18.791,3.521-25.841,10.561L92.649,196.425 | |
| 3478 | + c-7.044,7.043-10.566,15.656-10.566,25.841s3.521,18.791,10.566,25.837l186.146,185.864c7.05,7.043,15.66,10.564,25.841,10.564 | |
| 3479 | + s18.795-3.521,25.834-10.564l21.409-21.412c7.05-7.039,10.567-15.604,10.567-25.697c0-10.085-3.518-18.746-10.567-25.978 | |
| 3480 | + L213.13,222.409z"></path></g></svg></button><h3>Cookie List</h3></div><div class="ot-lst-subhdr"><div class="ot-search-cntr"><p role="status" class="ot-scrn-rdr"></p><input id="vendor-search-handler" type="text" name="vendor-search-handler" placeholder="Search…" aria-label="Cookie list search"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 -30 110 110" aria-hidden="true"><title>Search Icon</title><path fill="#2e3644" d="M55.146,51.887L41.588,37.786c3.486-4.144,5.396-9.358,5.396-14.786c0-12.682-10.318-23-23-23s-23,10.318-23,23 | |
| 3481 | + s10.318,23,23,23c4.761,0,9.298-1.436,13.177-4.162l13.661,14.208c0.571,0.593,1.339,0.92,2.162,0.92 | |
| 3482 | + c0.779,0,1.518-0.297,2.079-0.837C56.255,54.982,56.293,53.08,55.146,51.887z M23.984,6c9.374,0,17,7.626,17,17s-7.626,17-17,17 | |
| 3483 | + s-17-7.626-17-17S14.61,6,23.984,6z"></path></svg></div><div class="ot-fltr-cntr"><button id="filter-btn-handler" aria-label="Filter Cookie List" aria-haspopup="true" aria-expanded="false"><svg role="presentation" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 402.577 402.577" xml:space="preserve"><title>Filter Icon</title><g><path fill="#fff" d="M400.858,11.427c-3.241-7.421-8.85-11.132-16.854-11.136H18.564c-7.993,0-13.61,3.715-16.846,11.136 | |
| 3484 | + c-3.234,7.801-1.903,14.467,3.999,19.985l140.757,140.753v138.755c0,4.955,1.809,9.232,5.424,12.854l73.085,73.083 | |
| 3485 | + c3.429,3.614,7.71,5.428,12.851,5.428c2.282,0,4.66-0.479,7.135-1.43c7.426-3.238,11.14-8.851,11.14-16.845V172.166L396.861,31.413 | |
| 3486 | + C402.765,25.895,404.093,19.231,400.858,11.427z"></path></g></svg></button></div><div id="ot-anchor"></div><section id="ot-fltr-modal"><div id="ot-fltr-cnt"><button id="clear-filters-handler">Clear</button><fieldset class="ot-fltr-scrlcnt ot-pc-scrollbar"><legend id="ot-filter-list-header"></legend><ul class="ot-fltr-opts"><li class="ot-fltr-opt"><div class="ot-chkbox"><input id="chkbox-id" type="checkbox" class="category-filter-handler"> <label for="chkbox-id"><span class="ot-label-txt">checkbox label</span></label> <span class="ot-label-status">label</span></div></li></ul><div class="ot-fltr-btns"><button id="filter-apply-handler">Apply</button> <button id="filter-cancel-handler">Cancel</button></div></fieldset></div></section></div></div><section id="ot-lst-cnt" class="ot-pc-scrollbar"><div id="ot-sel-blk"><div class="ot-sel-all"><div class="ot-sel-all-hdr"><span class="ot-consent-hdr">Consent</span> <span class="ot-li-hdr">Leg.Interest</span></div><div class="ot-sel-all-chkbox"><div class="ot-chkbox" id="ot-selall-hostcntr"><input id="select-all-hosts-groups-handler" type="checkbox"> <label for="select-all-hosts-groups-handler"><span class="ot-label-txt">checkbox label</span></label> <span class="ot-label-status">label</span></div><div class="ot-chkbox" id="ot-selall-vencntr"><input id="select-all-vendor-groups-handler" type="checkbox"> <label for="select-all-vendor-groups-handler"><span class="ot-label-txt">checkbox label</span></label> <span class="ot-label-status">label</span></div><div class="ot-chkbox" id="ot-selall-licntr"><input id="select-all-vendor-leg-handler" type="checkbox"> <label for="select-all-vendor-leg-handler"><span class="ot-label-txt">checkbox label</span></label> <span class="ot-label-status">label</span></div></div></div></div><div class="ot-sdk-row"><div class="ot-sdk-column"><ul id="ot-host-lst"></ul></div></div></section></section><!-- Footer buttons and logo --><div class="ot-pc-footer ot-pc-scrollbar"><div class="ot-btn-container"><button class="ot-pc-refuse-all-handler" ot-button-order="1">Reject All</button> <button class="save-preference-btn-handler onetrust-close-btn-handler" ot-button-order="2">Confirm My Choices</button></div><div class="ot-pc-footer-logo"><a href="https://www.onetrust.com/solutions/consent-and-preferences/" target="_blank" rel="noopener noreferrer" aria-label="Powered by OneTrust Opens in a new Tab"><img alt="Powered by Onetrust" src="https://cdn.cookielaw.org/logos/static/powered_by_logo.svg" title="Powered by OneTrust Opens in a new Tab" aria-hidden="true"></a></div></div><!-- Cookie subgroup container --><!-- Vendor list link --><!-- Cookie lost link --><!-- Toggle HTML element --><!-- Checkbox HTML --><!-- Arrow SVG element --><!-- plus minus--><!-- Accordion basic element --><span class="ot-scrn-rdr" aria-atomic="true" aria-live="polite"></span><!-- Vendor Service container and item template --></div><iframe class="ot-text-resize" sandbox="allow-same-origin" title="onetrust-text-resize" style="position: absolute; top: -50000px; width: 100em;" aria-hidden="true"></iframe></div><div id="ot-sdk-btn-floating" class="ot-floating-button ot-hide" data-title="Cookies Settings"><div class="ot-floating-button__front custom-persistent-icon"><button type="button" class="ot-floating-button__open" aria-label="Cookies Settings" aria-haspopup="dialog"></button></div><div class="ot-floating-button__back custom-persistent-icon"><button type="button" class="ot-floating-button__close" aria-label="Close Preferences" aria-hidden="true" style="display: none;"><!--?xml version="1.0" encoding="UTF-8"?--> <svg role="presentation" tabindex="-1" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg"><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="Banner_02" class="ot-floating-button__svg-fill" transform="translate(-318.000000, -725.000000)" fill="#292B2E" fill-rule="nonzero"><g id="Group-2" transform="translate(305.000000, 712.000000)"><g id="icon/16px/white/close"><polygon id="Line1" points="13.3333333 14.9176256 35.0823744 36.6666667 36.6666667 35.0823744 14.9176256 13.3333333"></polygon><polygon id="Line2" transform="translate(25.000000, 25.000000) scale(-1, 1) translate(-25.000000, -25.000000) " points="13.3333333 14.9176256 35.0823744 36.6666667 36.6666667 35.0823744 14.9176256 13.3333333"></polygon></g></g></g></g></svg></button></div></div></div></body></html> | |
| \ No newline at end of file | ||
added
tests/fixtures/brigil/04f917101932b7d1449f.html
+3456 −0
@@ -0,0 +1,3456 @@ | ||
| 1 | +<html lang="en" style="--vw: 14.64px; --helpwidget-bottom-offset: 118px; scroll-padding-top: 234px;"><head> | |
| 2 | + | |
| 3 | + <style> | |
| 4 | + #ot-sdk-btn-floating { | |
| 5 | + z-index: 99999 !important; /* 1 less than "Skip to main content" link, see skip-navigation-link.scss */ | |
| 6 | + } | |
| 7 | + </style> | |
| 8 | + <script async="" src="https://tags.srv.stackadapt.com/events.js"></script><script async="" src="https://www.googletagmanager.com/gtm.js?id=GTM-TL4S4ZL"></script><script type="text/javascript"> | |
| 9 | + window.dataLayer = window.dataLayer || []; | |
| 10 | + function gtag() { dataLayer.push(arguments); } | |
| 11 | + </script> | |
| 12 | + <!-- OneTrust Cookies Consent Notice start --> | |
| 13 | + <script id="onetrust-script" src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" data-document-language="true" async="" type="text/javascript" charset="UTF-8" data-domain-script="019b0a3f-47cc-7952-bf04-817bd4831622"></script> | |
| 14 | + <script type="text/javascript"> | |
| 15 | + function OptanonWrapper() { | |
| 16 | + // The "Powered by OneTrust" img inside .ot-pc-footer-logo has redundant alt text | |
| 17 | + // since the wrapping anchor already has aria-label. Hide the img from the | |
| 18 | + // accessibility tree so screen readers don't announce it twice. | |
| 19 | + function fixPoweredByImage() { | |
| 20 | + var img = document.querySelector('.ot-pc-footer-logo img'); | |
| 21 | + if (img) { | |
| 22 | + img.setAttribute('aria-hidden', 'true'); | |
| 23 | + return true; | |
| 24 | + } | |
| 25 | + return false; | |
| 26 | + } | |
| 27 | + | |
| 28 | + // OneTrust accordion buttons reference ot-status-id-* in aria-labelledby but those | |
| 29 | + // elements are never rendered for toggle-style categories, leaving dangling ID refs. | |
| 30 | + // Strip any ID tokens that don't resolve to an actual DOM element. | |
| 31 | + function fixMissingAriaLabelledBy() { | |
| 32 | + var container = document.getElementById('onetrust-pc-sdk'); | |
| 33 | + if (!container) return false; | |
| 34 | + container.querySelectorAll('[aria-labelledby]').forEach(function (el) { | |
| 35 | + var ids = el.getAttribute('aria-labelledby').split(/\s+/); | |
| 36 | + var valid = ids.filter(function (id) { return id && document.getElementById(id); }); | |
| 37 | + if (valid.length !== ids.length) { | |
| 38 | + el.setAttribute('aria-labelledby', valid.join(' ')); | |
| 39 | + } | |
| 40 | + }); | |
| 41 | + return true; | |
| 42 | + } | |
| 43 | + | |
| 44 | + var imgDone = fixPoweredByImage(); | |
| 45 | + var ariaDone = fixMissingAriaLabelledBy(); | |
| 46 | + | |
| 47 | + if (!imgDone || !ariaDone) { | |
| 48 | + // Preferences panel may be lazy-injected when user first opens it | |
| 49 | + var sdk = document.getElementById('onetrust-consent-sdk') || document.body; | |
| 50 | + var observer = new MutationObserver(function () { | |
| 51 | + if (!imgDone) imgDone = fixPoweredByImage(); | |
| 52 | + if (!ariaDone) ariaDone = fixMissingAriaLabelledBy(); | |
| 53 | + if (imgDone && ariaDone) observer.disconnect(); | |
| 54 | + }); | |
| 55 | + observer.observe(sdk, { childList: true, subtree: true }); | |
| 56 | + } | |
| 57 | + } | |
| 58 | + </script> | |
| 59 | + <!-- OneTrust Cookies Consent Notice end --> | |
| 60 | + | |
| 61 | + | |
| 62 | +<meta charset="utf-8"> | |
| 63 | +<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| 64 | +<meta name="viewport" content="width=device-width, initial-scale=1.0 "> | |
| 65 | + <title>Property details for Champlain Bloc 2 - UAT in Gatineau, QC</title> | |
| 66 | + <meta name="description" content="Check out photos, floor plans, amenities, rental rates & availability at Champlain Bloc 2 - UAT in Gatineau, QC and submit your lease application today!"> | |
| 67 | + <meta name="referrer" content="always"> | |
| 68 | + <meta name="keywords" content=""> | |
| 69 | + <meta name="author" content="Champlain Bloc 2 - UAT"> | |
| 70 | + <link rel="canonical" href="https://www.brigil.com/champlain-bloc-2-0/default"> | |
| 71 | + | |
| 72 | + | |
| 73 | + <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin=""> | |
| 74 | + <link rel="preconnect" href="https://resource.rentcafe.com"> | |
| 75 | + | |
| 76 | + | |
| 77 | +<link rel="preload" href="https://cdngeneralmvc.rentcafe.com/common/scss/fontawesome/webfonts/ysi-fa-solid.woff2" as="font" type="font/woff2" crossorigin="anonymous"> | |
| 78 | + | |
| 79 | + <meta name="theme-color" content="#999"> | |
| 80 | + <link href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,w_152,h_152/s3/2/252329/brigil-favicon.png" rel="apple-touch-icon"> | |
| 81 | + <link rel="manifest" href="/manifest.json"> | |
| 82 | + <link href="https://resource.rentcafe.com/image/upload/q_auto,f_auto/s3/2/252329/brigil-favicon.png" type="image/x-icon" rel="shortcut icon"> | |
| 83 | + | |
| 84 | + | |
| 85 | + <!-- Google tag (gtag.js) --> <script async="" src="https://www.googletagmanager.com/gtag/js?id=G-VPZPDPV6N2"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('set', 'linker', {'domains': ['www.brigil.com', 'securecafe.com', 'rentcafe.com', 'securecafenet.com', 'securecafeapplicant.com']}); gtag('js', new Date()); gtag('config', 'G-VPZPDPV6N2'); gtag('config', 'G-FLK5J6Y89X');</script> | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | +<!-- Google Tag Manager --> | |
| 94 | +<script> | |
| 95 | +(function(w,d,s,l,i){ | |
| 96 | + w[l]=w[l]||[]; | |
| 97 | + w[l].push({'gtm.start': new Date().getTime(), event:'gtm.js'}); | |
| 98 | + var f=d.getElementsByTagName(s)[0], | |
| 99 | + j=d.createElement(s), | |
| 100 | + dl=l!='dataLayer'?'&l='+l:''; | |
| 101 | + j.async=true; | |
| 102 | + j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl; | |
| 103 | + f.parentNode.insertBefore(j,f); | |
| 104 | +})(window,document,'script','dataLayer','GTM-TL4S4ZL'); | |
| 105 | +</script> | |
| 106 | +<!-- End Google Tag Manager --> | |
| 107 | + | |
| 108 | + | |
| 109 | +<script>!function(s,a,e,v,n,t,z){if(s.saq)return;n=s.saq=function(){n.callMethod?n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!s._saq)s._saq=n;n.push=n;n.loaded=!0;n.version='1.0';n.queue=[];t=a.createElement(e);t.async=!0;t.src=v;z=a.getElementsByTagName(e)[0];z.parentNode.insertBefore(t,z)}(window,document,'script','https://tags.srv.stackadapt.com/events.js');saq('ts', 'EFvi46X5uHLaQKX7qNrypQ');</script> | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + <link href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/brigil_corp1.558856.134323087888225674.css" rel="stylesheet" type="text/css" id="mainCSS"> | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + <style>brigil_corp1_/css/scss/399463/brigil_corp1/widgets/google-font-local-fallback-widget.558856.134323087888225674.css:nodata</style> | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + <script>window.ysi={callbacks:[],registerCallback:function(i){"function"==typeof i&&this.callbacks.push(i)},init:function(){ysi.MQBreakpointListener&&ysi.MQBreakpointListener.init(),ysi.main();for(var i=0;i<ysi.callbacks.length;i++)ysi.callbacks[i]();ysi.smartclasses&&ysi.smartclasses.init()},main:function(){}},document.addEventListener("DOMContentLoaded",function(i){window.location.pathname.indexOf("/index")>-1&&history.replaceState(null,"",window.location.pathname.replace("index","")+window.location.search),ysi.init()});</script><script src="https://cdn.cookielaw.org/scripttemplates/202608.1.0/otBannerSdk.js" async="" type="text/javascript"></script><style id="onetrust-style">#onetrust-banner-sdk .onetrust-vendors-list-handler{cursor:pointer;color:#1f96db;font-size:inherit;font-weight:bold;text-decoration:none;margin-left:5px;white-space:normal;word-wrap:break-word;text-align:left}#onetrust-banner-sdk .onetrust-vendors-list-handler:hover{color:#1f96db}#onetrust-banner-sdk:focus{outline:2px solid #000;outline-offset:-2px}#onetrust-banner-sdk a:focus{outline:2px solid #000}#onetrust-banner-sdk #onetrust-accept-btn-handler,#onetrust-banner-sdk #onetrust-reject-all-handler,#onetrust-banner-sdk #onetrust-pc-btn-handler{outline-offset:1px}#onetrust-banner-sdk.ot-bnr-w-logo .ot-bnr-logo{height:64px;width:64px}#onetrust-banner-sdk #onetrust-policy svg,#onetrust-banner-sdk .banner-option svg{height:13px;width:13px;margin-left:1px}#onetrust-banner-sdk #onetrust-policy svg.ot-ext-lnk,#onetrust-banner-sdk .banner-option svg.ot-ext-lnk{vertical-align:middle}#onetrust-banner-sdk .ot-tcf2-vendor-count.ot-text-bold{font-weight:bold}#onetrust-banner-sdk .ot-button-order-0{order:0}#onetrust-banner-sdk .ot-button-order-1{order:1}#onetrust-banner-sdk .ot-button-order-2{order:2}#onetrust-banner-sdk #onetrust-close-btn-container svg{height:10px;width:10px;pointer-events:none}#onetrust-banner-sdk .ot-close-icon,#onetrust-pc-sdk .ot-close-icon,#ot-sync-ntfy .ot-close-icon{background-size:contain;background-repeat:no-repeat;background-position:center;height:12px;width:12px}#onetrust-banner-sdk .powered-by-logo,#onetrust-banner-sdk .ot-pc-footer-logo a,#onetrust-pc-sdk .powered-by-logo,#onetrust-pc-sdk .ot-pc-footer-logo a,#ot-sync-ntfy .powered-by-logo,#ot-sync-ntfy .ot-pc-footer-logo a{background-size:contain;background-repeat:no-repeat;background-position:center;height:25px;width:152px;display:block;text-decoration:none;font-size:.75em}#onetrust-banner-sdk .powered-by-logo:hover,#onetrust-banner-sdk .ot-pc-footer-logo a:hover,#onetrust-pc-sdk .powered-by-logo:hover,#onetrust-pc-sdk .ot-pc-footer-logo a:hover,#ot-sync-ntfy .powered-by-logo:hover,#ot-sync-ntfy .ot-pc-footer-logo a:hover{color:#565656}#onetrust-banner-sdk h3 *,#onetrust-banner-sdk h4 *,#onetrust-banner-sdk h6 *,#onetrust-banner-sdk button *,#onetrust-banner-sdk a[data-parent-id] *,#onetrust-banner-sdk p[role=heading] *,#onetrust-pc-sdk h3 *,#onetrust-pc-sdk h4 *,#onetrust-pc-sdk h6 *,#onetrust-pc-sdk button *,#onetrust-pc-sdk a[data-parent-id] *,#onetrust-pc-sdk p[role=heading] *,#ot-sync-ntfy h3 *,#ot-sync-ntfy h4 *,#ot-sync-ntfy h6 *,#ot-sync-ntfy button *,#ot-sync-ntfy a[data-parent-id] *,#ot-sync-ntfy p[role=heading] *{font-size:inherit;font-weight:inherit;color:inherit}#onetrust-banner-sdk .ot-hide,#onetrust-pc-sdk .ot-hide,#ot-sync-ntfy .ot-hide{display:none !important}#onetrust-banner-sdk button.ot-link-btn:hover,#onetrust-pc-sdk button.ot-link-btn:hover,#ot-sync-ntfy button.ot-link-btn:hover{text-decoration:underline;opacity:1}#onetrust-pc-sdk .ot-sdk-row .ot-sdk-column{padding:0}#onetrust-pc-sdk .ot-sdk-container{padding-right:0}#onetrust-pc-sdk .ot-sdk-row{flex-direction:initial;width:100%}#onetrust-pc-sdk [type=checkbox]:checked,#onetrust-pc-sdk [type=checkbox]:not(:checked){pointer-events:initial}#onetrust-pc-sdk [type=checkbox]:disabled+label::before,#onetrust-pc-sdk [type=checkbox]:disabled+label:after,#onetrust-pc-sdk [type=checkbox]:disabled+label,#onetrust-pc-sdk [type=checkbox][aria-disabled=true]+label::before,#onetrust-pc-sdk [type=checkbox][aria-disabled=true]+label:after,#onetrust-pc-sdk [type=checkbox][aria-disabled=true]+label{pointer-events:none;opacity:.8}#onetrust-pc-sdk #vendor-list-content{transform:translate3d(0, 0, 0)}#onetrust-pc-sdk li input[type=checkbox]{z-index:1}#onetrust-pc-sdk li .ot-checkbox label{z-index:2}#onetrust-pc-sdk li .ot-checkbox input[type=checkbox]{height:auto;width:auto}#onetrust-pc-sdk li .host-title a,#onetrust-pc-sdk li .ot-host-name a,#onetrust-pc-sdk li .accordion-text,#onetrust-pc-sdk li .ot-acc-txt{z-index:2;position:relative}#onetrust-pc-sdk input{margin:3px .1ex}#onetrust-pc-sdk .pc-logo,#onetrust-pc-sdk .ot-pc-logo{height:60px;width:180px;background-position:center;background-size:contain;background-repeat:no-repeat;display:inline-flex;justify-content:center;align-items:center}#onetrust-pc-sdk .pc-logo img,#onetrust-pc-sdk .ot-pc-logo img{max-height:100%;max-width:100%}#onetrust-pc-sdk .pc-logo svg,#onetrust-pc-sdk .ot-pc-logo svg{height:60px;width:180px}#onetrust-pc-sdk #close-pc-btn-handler>svg{margin:auto;display:block;height:12px;width:12px}#onetrust-pc-sdk #ot-pc-desc svg,#onetrust-pc-sdk .ot-desc-cntr svg,#onetrust-pc-sdk .ot-cat-grp svg{height:13px;width:13px;margin-left:-7px;vertical-align:middle;margin-right:5px}#onetrust-pc-sdk #ot-pc-desc svg.ot-ext-lnk{margin-right:8px}#onetrust-pc-sdk #ot-pc-desc .ot-userid-desc svg.ot-ext-lnk,#onetrust-pc-sdk #ot-pc-desc~.ot-userid-desc svg.ot-ext-lnk{margin-left:3px;margin-right:8px}#onetrust-pc-sdk .ot-host-hdr>a{display:inline-block}#onetrust-pc-sdk input[aria-disabled=true],#onetrust-banner-sdk input[aria-disabled=true]{pointer-events:none;opacity:.6}#onetrust-pc-sdk input[aria-disabled=true]+label,#onetrust-banner-sdk input[aria-disabled=true]+label{pointer-events:none;opacity:.6;cursor:not-allowed}#onetrust-pc-sdk .screen-reader-only,#onetrust-pc-sdk .ot-scrn-rdr,.ot-sdk-cookie-policy .screen-reader-only,.ot-sdk-cookie-policy .ot-scrn-rdr{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}#onetrust-pc-sdk.ot-fade-in,.onetrust-pc-dark-filter.ot-fade-in,#onetrust-banner-sdk.ot-fade-in,.ot-confirm-dialog-overlay.ot-fade-in{animation-name:onetrust-fade-in;animation-duration:400ms;animation-timing-function:ease-in-out}#onetrust-pc-sdk.ot-hide{display:none !important}.onetrust-pc-dark-filter.ot-hide{display:none !important}#ot-sdk-btn.ot-sdk-show-settings,#ot-sdk-btn.optanon-show-settings{color:#fff;background-color:#468254;height:auto;white-space:normal;word-wrap:break-word;padding:.8em 2em;font-size:.8em;line-height:1.2;cursor:pointer;-moz-transition:.1s ease;-o-transition:.1s ease;-webkit-transition:1s ease;transition:.1s ease}#ot-sdk-btn.ot-sdk-show-settings:hover,#ot-sdk-btn.optanon-show-settings:hover{color:#fff;background-color:#2c6415}#ot-sdk-btn.ot-sdk-show-settings:active,#ot-sdk-btn.optanon-show-settings:active{color:#fff;background-color:#2c6415;border:1px solid rgba(162,192,169,.5)}.onetrust-pc-dark-filter{background:rgba(0,0,0,.5);z-index:2147483646;width:100%;height:100%;overflow:hidden;position:fixed;top:0;bottom:0;left:0}@keyframes onetrust-fade-in{0%{opacity:0}100%{opacity:1}}.ot-cookie-label{text-decoration:underline}@media only screen and (min-width: 426px)and (max-width: 896px)and (orientation: landscape){#onetrust-pc-sdk p{font-size:.75em}}#onetrust-banner-sdk .banner-option-input:focus+label{outline:1px solid #000;outline-style:auto}.category-vendors-list-handler+a:focus,.category-vendors-list-handler+a:focus-visible{outline:2px solid #000}#onetrust-pc-sdk .ot-userid-title{margin-top:10px}#onetrust-pc-sdk .ot-userid-title>span,#onetrust-pc-sdk .ot-userid-timestamp>span{font-weight:700}#onetrust-pc-sdk .ot-userid-desc{font-style:italic}#onetrust-pc-sdk .ot-host-desc a{pointer-events:initial}#onetrust-pc-sdk .ot-ven-hdr>p a{position:relative;z-index:2;pointer-events:initial}#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info a,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info a{margin-right:8px}#onetrust-pc-sdk .ot-vnd-item svg.ot-ext-lnk{align-self:center}#onetrust-pc-sdk .ot-pc-footer-logo svg,#onetrust-pc-sdk .ot-pc-footer-logo img{width:136px;height:16px}#onetrust-pc-sdk .ot-pur-vdr-count{font-weight:400;font-size:.8em;padding-top:3px;display:block}#onetrust-pc-sdk p[role=heading] .ot-pur-vdr-count{font-weight:400 !important;font-size:.8em !important}#onetrust-banner-sdk #onetrust-policy .ot-optout-signal,#onetrust-pc-sdk #ot-pc-content .ot-optout-signal{border:1px solid #32ae88;border-radius:3px;padding:5px;margin-bottom:10px;background-color:#f9fffa;font-size:.85rem;line-height:2}#onetrust-banner-sdk #onetrust-policy .ot-optout-signal .ot-optout-icon,#onetrust-pc-sdk #ot-pc-content .ot-optout-signal .ot-optout-icon{display:inline;margin-right:5px}#onetrust-banner-sdk #onetrust-policy .ot-optout-signal svg,#onetrust-pc-sdk #ot-pc-content .ot-optout-signal svg{height:20px;width:30px}#onetrust-banner-sdk #onetrust-policy .ot-optout-signal svg.ot-source-sprite,#onetrust-pc-sdk #ot-pc-content .ot-optout-signal svg.ot-source-sprite{position:relative;bottom:-3px}#onetrust-banner-sdk #onetrust-policy .ot-optout-signal svg:not(.ot-source-sprite),#onetrust-pc-sdk #ot-pc-content .ot-optout-signal svg:not(.ot-source-sprite){transform:scale(0.5)}#onetrust-banner-sdk #onetrust-policy .ot-optout-signal svg:not(.ot-source-sprite) path,#onetrust-pc-sdk #ot-pc-content .ot-optout-signal svg:not(.ot-source-sprite) path{fill:#32ae88}#onetrust-consent-sdk .ot-general-modal{overflow:hidden;position:fixed;margin:0 auto;top:50%;left:50%;width:40%;padding:1.5rem;max-width:575px;min-width:575px;z-index:2147483647;border-radius:2.5px;transform:translate(-50%, -50%)}#onetrust-consent-sdk .ot-signature-health-group{margin-top:1rem;padding-left:1.25rem;padding-right:1.25rem;margin-bottom:.625rem;width:calc(100% - 2.5rem)}#onetrust-consent-sdk .ot-signature-health-group .ot-signature-health-form{gap:.5rem}#onetrust-consent-sdk .ot-signature-health .ot-signature-health-form{width:70%;gap:.35rem}#onetrust-consent-sdk .ot-signature-health .ot-signature-input{height:38px;padding:6px 10px;background-color:#fff;border:1px solid #d1d1d1;border-radius:4px;box-shadow:none;box-sizing:border-box}#onetrust-consent-sdk .ot-signature-health .ot-signature-subtitle{font-size:1.125rem}#onetrust-consent-sdk .ot-signature-health .ot-signature-group-title{font-size:1.25rem;font-weight:bold}#onetrust-consent-sdk .ot-signature-health,#onetrust-consent-sdk .ot-signature-health-group{display:flex;flex-direction:column;gap:1rem}#onetrust-consent-sdk .ot-signature-health .ot-signature-cont,#onetrust-consent-sdk .ot-signature-health-group .ot-signature-cont{display:flex;flex-direction:column;gap:.25rem}#onetrust-consent-sdk .ot-signature-health .ot-signature-paragraph,#onetrust-consent-sdk .ot-signature-health-group .ot-signature-paragraph{margin:0;line-height:20px;font-size:max(14px,.875rem)}#onetrust-consent-sdk .ot-signature-health .ot-health-signature-error,#onetrust-consent-sdk .ot-signature-health-group .ot-health-signature-error{color:#4d4d4d;font-size:min(12px,.75rem)}#onetrust-consent-sdk .ot-signature-health .ot-signature-buttons-cont,#onetrust-consent-sdk .ot-signature-health-group .ot-signature-buttons-cont{margin-top:max(.75rem,2%);gap:1rem;display:flex;justify-content:flex-end}#onetrust-consent-sdk .ot-signature-health .ot-signature-button,#onetrust-consent-sdk .ot-signature-health-group .ot-signature-button{flex:1;height:auto;color:#fff;cursor:pointer;line-height:1.2;min-width:125px;font-weight:600;font-size:.813em;border-radius:2px;padding:12px 10px;white-space:normal;word-wrap:break-word;word-break:break-word;background-color:#68b631;border:2px solid #68b631}#onetrust-consent-sdk .ot-signature-health .ot-signature-button.reject,#onetrust-consent-sdk .ot-signature-health-group .ot-signature-button.reject{background-color:#fff}#onetrust-consent-sdk .ot-input-field-cont{display:flex;flex-direction:column;gap:.5rem}#onetrust-consent-sdk .ot-input-field-cont .ot-signature-input{width:65%}#onetrust-consent-sdk .ot-signature-health-form{display:flex;flex-direction:column}#onetrust-consent-sdk .ot-signature-health-form .ot-signature-label{margin-bottom:0;line-height:20px;font-size:max(14px,.875rem)}#onetrust-consent-sdk #onetrust-sprite-svg{display:none}@media only screen and (max-width: 600px){#onetrust-consent-sdk .ot-general-modal{min-width:100%}#onetrust-consent-sdk .ot-signature-health .ot-signature-health-form{width:100%}#onetrust-consent-sdk .ot-input-field-cont .ot-signature-input{width:100%}}#onetrust-banner-sdk,#onetrust-pc-sdk,#ot-sdk-cookie-policy,#ot-sync-ntfy{font-size:16px}#onetrust-banner-sdk *,#onetrust-banner-sdk ::after,#onetrust-banner-sdk ::before,#onetrust-pc-sdk *,#onetrust-pc-sdk ::after,#onetrust-pc-sdk ::before,#ot-sdk-cookie-policy *,#ot-sdk-cookie-policy ::after,#ot-sdk-cookie-policy ::before,#ot-sync-ntfy *,#ot-sync-ntfy ::after,#ot-sync-ntfy ::before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}#onetrust-banner-sdk div,#onetrust-banner-sdk span,#onetrust-banner-sdk h1,#onetrust-banner-sdk h2,#onetrust-banner-sdk h3,#onetrust-banner-sdk h4,#onetrust-banner-sdk h5,#onetrust-banner-sdk h6,#onetrust-banner-sdk p,#onetrust-banner-sdk img,#onetrust-banner-sdk svg,#onetrust-banner-sdk button,#onetrust-banner-sdk section,#onetrust-banner-sdk a,#onetrust-banner-sdk label,#onetrust-banner-sdk input,#onetrust-banner-sdk ul,#onetrust-banner-sdk li,#onetrust-banner-sdk nav,#onetrust-banner-sdk table,#onetrust-banner-sdk thead,#onetrust-banner-sdk tr,#onetrust-banner-sdk td,#onetrust-banner-sdk tbody,#onetrust-banner-sdk .ot-main-content,#onetrust-banner-sdk .ot-toggle,#onetrust-banner-sdk #ot-content,#onetrust-banner-sdk #ot-pc-content,#onetrust-banner-sdk .checkbox,#onetrust-pc-sdk div,#onetrust-pc-sdk span,#onetrust-pc-sdk h1,#onetrust-pc-sdk h2,#onetrust-pc-sdk h3,#onetrust-pc-sdk h4,#onetrust-pc-sdk h5,#onetrust-pc-sdk h6,#onetrust-pc-sdk p,#onetrust-pc-sdk img,#onetrust-pc-sdk svg,#onetrust-pc-sdk button,#onetrust-pc-sdk section,#onetrust-pc-sdk a,#onetrust-pc-sdk label,#onetrust-pc-sdk input,#onetrust-pc-sdk ul,#onetrust-pc-sdk li,#onetrust-pc-sdk nav,#onetrust-pc-sdk table,#onetrust-pc-sdk thead,#onetrust-pc-sdk tr,#onetrust-pc-sdk td,#onetrust-pc-sdk tbody,#onetrust-pc-sdk .ot-main-content,#onetrust-pc-sdk .ot-toggle,#onetrust-pc-sdk #ot-content,#onetrust-pc-sdk #ot-pc-content,#onetrust-pc-sdk .checkbox,#ot-sdk-cookie-policy div,#ot-sdk-cookie-policy span,#ot-sdk-cookie-policy h1,#ot-sdk-cookie-policy h2,#ot-sdk-cookie-policy h3,#ot-sdk-cookie-policy h4,#ot-sdk-cookie-policy h5,#ot-sdk-cookie-policy h6,#ot-sdk-cookie-policy p,#ot-sdk-cookie-policy img,#ot-sdk-cookie-policy svg,#ot-sdk-cookie-policy button,#ot-sdk-cookie-policy section,#ot-sdk-cookie-policy a,#ot-sdk-cookie-policy label,#ot-sdk-cookie-policy input,#ot-sdk-cookie-policy ul,#ot-sdk-cookie-policy li,#ot-sdk-cookie-policy nav,#ot-sdk-cookie-policy table,#ot-sdk-cookie-policy thead,#ot-sdk-cookie-policy tr,#ot-sdk-cookie-policy td,#ot-sdk-cookie-policy tbody,#ot-sdk-cookie-policy .ot-main-content,#ot-sdk-cookie-policy .ot-toggle,#ot-sdk-cookie-policy #ot-content,#ot-sdk-cookie-policy #ot-pc-content,#ot-sdk-cookie-policy .checkbox,#ot-sync-ntfy div,#ot-sync-ntfy span,#ot-sync-ntfy h1,#ot-sync-ntfy h2,#ot-sync-ntfy h3,#ot-sync-ntfy h4,#ot-sync-ntfy h5,#ot-sync-ntfy h6,#ot-sync-ntfy p,#ot-sync-ntfy img,#ot-sync-ntfy svg,#ot-sync-ntfy button,#ot-sync-ntfy section,#ot-sync-ntfy a,#ot-sync-ntfy label,#ot-sync-ntfy input,#ot-sync-ntfy ul,#ot-sync-ntfy li,#ot-sync-ntfy nav,#ot-sync-ntfy table,#ot-sync-ntfy thead,#ot-sync-ntfy tr,#ot-sync-ntfy td,#ot-sync-ntfy tbody,#ot-sync-ntfy .ot-main-content,#ot-sync-ntfy .ot-toggle,#ot-sync-ntfy #ot-content,#ot-sync-ntfy #ot-pc-content,#ot-sync-ntfy .checkbox{font-family:inherit;font-weight:normal;-webkit-font-smoothing:auto;letter-spacing:normal;line-height:normal;padding:0;margin:0;height:auto;min-height:0;max-height:none;width:auto;min-width:0;max-width:none;border-radius:0;border:none;clear:none;float:none;position:static;bottom:auto;left:auto;right:auto;top:auto;text-align:left;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;white-space:normal;background:none;overflow:visible;vertical-align:baseline;visibility:visible;z-index:auto;box-shadow:none}#onetrust-banner-sdk img,#onetrust-pc-sdk img,#ot-sdk-cookie-policy img,#ot-sync-ntfy img{overflow:hidden !important}#onetrust-banner-sdk label:before,#onetrust-banner-sdk label:after,#onetrust-banner-sdk .checkbox:after,#onetrust-banner-sdk .checkbox:before,#onetrust-pc-sdk label:before,#onetrust-pc-sdk label:after,#onetrust-pc-sdk .checkbox:after,#onetrust-pc-sdk .checkbox:before,#ot-sdk-cookie-policy label:before,#ot-sdk-cookie-policy label:after,#ot-sdk-cookie-policy .checkbox:after,#ot-sdk-cookie-policy .checkbox:before,#ot-sync-ntfy label:before,#ot-sync-ntfy label:after,#ot-sync-ntfy .checkbox:after,#ot-sync-ntfy .checkbox:before{content:"";content:none}#onetrust-banner-sdk .ot-sdk-container,#onetrust-pc-sdk .ot-sdk-container,#ot-sdk-cookie-policy .ot-sdk-container{position:relative;width:100%;max-width:100%;margin:0 auto;padding:0 20px;box-sizing:border-box}#onetrust-banner-sdk .ot-sdk-column,#onetrust-banner-sdk .ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-column,#onetrust-pc-sdk .ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-column,#ot-sdk-cookie-policy .ot-sdk-columns{width:100%;float:left;box-sizing:border-box;padding:0;display:initial}@media(min-width: 400px){#onetrust-banner-sdk .ot-sdk-container,#onetrust-pc-sdk .ot-sdk-container,#ot-sdk-cookie-policy .ot-sdk-container{width:90%;padding:0}}@media(min-width: 550px){#onetrust-banner-sdk .ot-sdk-container,#onetrust-pc-sdk .ot-sdk-container,#ot-sdk-cookie-policy .ot-sdk-container{width:100%}#onetrust-banner-sdk .ot-sdk-column,#onetrust-banner-sdk .ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-column,#onetrust-pc-sdk .ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-column,#ot-sdk-cookie-policy .ot-sdk-columns{margin-left:4%}#onetrust-banner-sdk .ot-sdk-column:first-child,#onetrust-banner-sdk .ot-sdk-columns:first-child,#onetrust-pc-sdk .ot-sdk-column:first-child,#onetrust-pc-sdk .ot-sdk-columns:first-child,#ot-sdk-cookie-policy .ot-sdk-column:first-child,#ot-sdk-cookie-policy .ot-sdk-columns:first-child{margin-left:0}#onetrust-banner-sdk .ot-sdk-two.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-two.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-two.ot-sdk-columns{width:13.3333333333%}#onetrust-banner-sdk .ot-sdk-three.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-three.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-three.ot-sdk-columns{width:22%}#onetrust-banner-sdk .ot-sdk-four.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-four.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-four.ot-sdk-columns{width:30.6666666667%}#onetrust-banner-sdk .ot-sdk-eight.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-eight.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-eight.ot-sdk-columns{width:65.3333333333%}#onetrust-banner-sdk .ot-sdk-nine.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-nine.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-nine.ot-sdk-columns{width:74%}#onetrust-banner-sdk .ot-sdk-ten.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-ten.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-ten.ot-sdk-columns{width:82.6666666667%}#onetrust-banner-sdk .ot-sdk-eleven.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-eleven.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-eleven.ot-sdk-columns{width:91.3333333333%}#onetrust-banner-sdk .ot-sdk-twelve.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-twelve.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-twelve.ot-sdk-columns{width:100%;margin-left:0}}#onetrust-banner-sdk h1,#onetrust-banner-sdk h2,#onetrust-banner-sdk h3,#onetrust-banner-sdk h4,#onetrust-banner-sdk h5,#onetrust-banner-sdk h6,#onetrust-banner-sdk p[role=heading],#onetrust-pc-sdk h1,#onetrust-pc-sdk h2,#onetrust-pc-sdk h3,#onetrust-pc-sdk h4,#onetrust-pc-sdk h5,#onetrust-pc-sdk h6,#onetrust-pc-sdk p[role=heading],#ot-sdk-cookie-policy h1,#ot-sdk-cookie-policy h2,#ot-sdk-cookie-policy h3,#ot-sdk-cookie-policy h4,#ot-sdk-cookie-policy h5,#ot-sdk-cookie-policy h6,#ot-sdk-cookie-policy p[role=heading]{margin-top:0;font-weight:600;font-family:inherit}#onetrust-banner-sdk h1,#onetrust-pc-sdk h1,#ot-sdk-cookie-policy h1{font-size:1.5rem;line-height:1.2}#onetrust-banner-sdk h2,#onetrust-pc-sdk h2,#ot-sdk-cookie-policy h2{font-size:1.5rem;line-height:1.25}#onetrust-banner-sdk h3,#onetrust-pc-sdk h3,#ot-sdk-cookie-policy h3{font-size:1.5rem;line-height:1.3}#onetrust-banner-sdk h4,#onetrust-pc-sdk h4,#ot-sdk-cookie-policy h4{font-size:1.5rem;line-height:1.35}#onetrust-banner-sdk h5,#onetrust-pc-sdk h5,#ot-sdk-cookie-policy h5{font-size:1.5rem;line-height:1.5}#onetrust-banner-sdk h6,#onetrust-pc-sdk h6,#ot-sdk-cookie-policy h6{font-size:1.5rem;line-height:1.6}@media(min-width: 550px){#onetrust-banner-sdk h1,#onetrust-pc-sdk h1,#ot-sdk-cookie-policy h1{font-size:1.5rem}#onetrust-banner-sdk h2,#onetrust-pc-sdk h2,#ot-sdk-cookie-policy h2{font-size:1.5rem}#onetrust-banner-sdk h3,#onetrust-pc-sdk h3,#ot-sdk-cookie-policy h3{font-size:1.5rem}#onetrust-banner-sdk h4,#onetrust-pc-sdk h4,#ot-sdk-cookie-policy h4{font-size:1.5rem}#onetrust-banner-sdk h5,#onetrust-pc-sdk h5,#ot-sdk-cookie-policy h5{font-size:1.5rem}#onetrust-banner-sdk h6,#onetrust-pc-sdk h6,#ot-sdk-cookie-policy h6{font-size:1.5rem}}#onetrust-banner-sdk p:not([role=heading]),#onetrust-pc-sdk p:not([role=heading]),#ot-sdk-cookie-policy p:not([role=heading]){margin:0 0 1em 0;font-family:inherit;line-height:normal}#onetrust-banner-sdk a,#onetrust-pc-sdk a,#ot-sdk-cookie-policy a{color:#565656;text-decoration:none}#onetrust-banner-sdk a:hover,#onetrust-pc-sdk a:hover,#ot-sdk-cookie-policy a:hover{color:#565656;text-decoration:underline}#onetrust-banner-sdk .ot-sdk-button,#onetrust-banner-sdk button,#onetrust-pc-sdk .ot-sdk-button,#onetrust-pc-sdk button,#ot-sdk-cookie-policy .ot-sdk-button,#ot-sdk-cookie-policy button{margin-bottom:1rem;font-family:inherit}#onetrust-banner-sdk .ot-sdk-button,#onetrust-banner-sdk button,#onetrust-pc-sdk .ot-sdk-button,#onetrust-pc-sdk button,#ot-sdk-cookie-policy .ot-sdk-button,#ot-sdk-cookie-policy button{display:inline-block;height:38px;padding:0 30px;color:#555;text-align:center;font-size:.9em;font-weight:400;line-height:38px;letter-spacing:.01em;text-decoration:none;white-space:nowrap;background-color:rgba(0,0,0,0);border-radius:2px;border:1px solid #bbb;cursor:pointer;box-sizing:border-box}#onetrust-banner-sdk .ot-sdk-button:hover,#onetrust-banner-sdk :not(.ot-leg-btn-container):not(.ot-confirm-dialog-buttons)>button:not(.ot-link-btn):hover,#onetrust-banner-sdk :not(.ot-leg-btn-container):not(.ot-confirm-dialog-buttons)>button:not(.ot-link-btn):focus,#onetrust-pc-sdk .ot-sdk-button:hover,#onetrust-pc-sdk :not(.ot-leg-btn-container):not(.ot-confirm-dialog-buttons)>button:not(.ot-link-btn):hover,#onetrust-pc-sdk :not(.ot-leg-btn-container):not(.ot-confirm-dialog-buttons)>button:not(.ot-link-btn):focus,#ot-sdk-cookie-policy .ot-sdk-button:hover,#ot-sdk-cookie-policy :not(.ot-leg-btn-container):not(.ot-confirm-dialog-buttons)>button:not(.ot-link-btn):hover,#ot-sdk-cookie-policy :not(.ot-leg-btn-container):not(.ot-confirm-dialog-buttons)>button:not(.ot-link-btn):focus{color:#333;border-color:#888;opacity:.9}#onetrust-banner-sdk .ot-sdk-button:focus,#onetrust-banner-sdk :not(.ot-leg-btn-container)>button:focus,#onetrust-pc-sdk .ot-sdk-button:focus,#onetrust-pc-sdk :not(.ot-leg-btn-container)>button:focus,#ot-sdk-cookie-policy .ot-sdk-button:focus,#ot-sdk-cookie-policy :not(.ot-leg-btn-container)>button:focus{outline:2px solid #000}#onetrust-banner-sdk .ot-sdk-button.ot-sdk-button-primary,#onetrust-banner-sdk button.ot-sdk-button-primary,#onetrust-banner-sdk input[type=submit].ot-sdk-button-primary,#onetrust-banner-sdk input[type=reset].ot-sdk-button-primary,#onetrust-banner-sdk input[type=button].ot-sdk-button-primary,#onetrust-pc-sdk .ot-sdk-button.ot-sdk-button-primary,#onetrust-pc-sdk button.ot-sdk-button-primary,#onetrust-pc-sdk input[type=submit].ot-sdk-button-primary,#onetrust-pc-sdk input[type=reset].ot-sdk-button-primary,#onetrust-pc-sdk input[type=button].ot-sdk-button-primary,#ot-sdk-cookie-policy .ot-sdk-button.ot-sdk-button-primary,#ot-sdk-cookie-policy button.ot-sdk-button-primary,#ot-sdk-cookie-policy input[type=submit].ot-sdk-button-primary,#ot-sdk-cookie-policy input[type=reset].ot-sdk-button-primary,#ot-sdk-cookie-policy input[type=button].ot-sdk-button-primary{color:#fff;background-color:#33c3f0;border-color:#33c3f0}#onetrust-banner-sdk .ot-sdk-button.ot-sdk-button-primary:hover,#onetrust-banner-sdk button.ot-sdk-button-primary:hover,#onetrust-banner-sdk input[type=submit].ot-sdk-button-primary:hover,#onetrust-banner-sdk input[type=reset].ot-sdk-button-primary:hover,#onetrust-banner-sdk input[type=button].ot-sdk-button-primary:hover,#onetrust-banner-sdk .ot-sdk-button.ot-sdk-button-primary:focus,#onetrust-banner-sdk button.ot-sdk-button-primary:focus,#onetrust-banner-sdk input[type=submit].ot-sdk-button-primary:focus,#onetrust-banner-sdk input[type=reset].ot-sdk-button-primary:focus,#onetrust-banner-sdk input[type=button].ot-sdk-button-primary:focus,#onetrust-pc-sdk .ot-sdk-button.ot-sdk-button-primary:hover,#onetrust-pc-sdk button.ot-sdk-button-primary:hover,#onetrust-pc-sdk input[type=submit].ot-sdk-button-primary:hover,#onetrust-pc-sdk input[type=reset].ot-sdk-button-primary:hover,#onetrust-pc-sdk input[type=button].ot-sdk-button-primary:hover,#onetrust-pc-sdk .ot-sdk-button.ot-sdk-button-primary:focus,#onetrust-pc-sdk button.ot-sdk-button-primary:focus,#onetrust-pc-sdk input[type=submit].ot-sdk-button-primary:focus,#onetrust-pc-sdk input[type=reset].ot-sdk-button-primary:focus,#onetrust-pc-sdk input[type=button].ot-sdk-button-primary:focus,#ot-sdk-cookie-policy .ot-sdk-button.ot-sdk-button-primary:hover,#ot-sdk-cookie-policy button.ot-sdk-button-primary:hover,#ot-sdk-cookie-policy input[type=submit].ot-sdk-button-primary:hover,#ot-sdk-cookie-policy input[type=reset].ot-sdk-button-primary:hover,#ot-sdk-cookie-policy input[type=button].ot-sdk-button-primary:hover,#ot-sdk-cookie-policy .ot-sdk-button.ot-sdk-button-primary:focus,#ot-sdk-cookie-policy button.ot-sdk-button-primary:focus,#ot-sdk-cookie-policy input[type=submit].ot-sdk-button-primary:focus,#ot-sdk-cookie-policy input[type=reset].ot-sdk-button-primary:focus,#ot-sdk-cookie-policy input[type=button].ot-sdk-button-primary:focus{color:#fff;background-color:#1eaedb;border-color:#1eaedb}#onetrust-banner-sdk input[type=text],#onetrust-pc-sdk input[type=text],#ot-sdk-cookie-policy input[type=text]{height:38px;padding:6px 10px;background-color:#fff;border:1px solid #707070;border-radius:4px;box-shadow:none;box-sizing:border-box}#onetrust-banner-sdk input[type=text],#onetrust-pc-sdk input[type=text],#ot-sdk-cookie-policy input[type=text]{-webkit-appearance:none;-moz-appearance:none;appearance:none}#onetrust-banner-sdk input[type=text]:focus,#onetrust-pc-sdk input[type=text]:focus,#ot-sdk-cookie-policy input[type=text]:focus{border:1px solid #000;outline:0}#onetrust-banner-sdk label,#onetrust-pc-sdk label,#ot-sdk-cookie-policy label{display:block;margin-bottom:.5rem;font-weight:600}#onetrust-banner-sdk input[type=checkbox],#onetrust-pc-sdk input[type=checkbox],#ot-sdk-cookie-policy input[type=checkbox]{display:inline}#onetrust-banner-sdk ul,#onetrust-pc-sdk ul,#ot-sdk-cookie-policy ul{list-style:circle inside}#onetrust-banner-sdk ul,#onetrust-pc-sdk ul,#ot-sdk-cookie-policy ul{padding-left:0;margin-top:0}#onetrust-banner-sdk ul ul,#onetrust-pc-sdk ul ul,#ot-sdk-cookie-policy ul ul{margin:1.5rem 0 1.5rem 3rem;font-size:90%}#onetrust-banner-sdk li,#onetrust-pc-sdk li,#ot-sdk-cookie-policy li{margin-bottom:1rem}#onetrust-banner-sdk th,#onetrust-banner-sdk td,#onetrust-pc-sdk th,#onetrust-pc-sdk td,#ot-sdk-cookie-policy th,#ot-sdk-cookie-policy td{padding:12px 15px;text-align:left;border-bottom:1px solid #e1e1e1}#onetrust-banner-sdk button,#onetrust-pc-sdk button,#ot-sdk-cookie-policy button{margin-bottom:1rem;font-family:inherit}#onetrust-banner-sdk .ot-sdk-container:after,#onetrust-banner-sdk .ot-sdk-row:after,#onetrust-pc-sdk .ot-sdk-container:after,#onetrust-pc-sdk .ot-sdk-row:after,#ot-sdk-cookie-policy .ot-sdk-container:after,#ot-sdk-cookie-policy .ot-sdk-row:after{content:"";display:table;clear:both}#onetrust-banner-sdk .ot-sdk-row,#onetrust-pc-sdk .ot-sdk-row,#ot-sdk-cookie-policy .ot-sdk-row{margin:0;max-width:none;display:block}.ot-go-modal-error-msg:empty{margin:0;line-height:0}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide){background:rgba(0,0,0,.5);z-index:2147483648;width:100%;height:100%;overflow:hidden;position:fixed;top:0;left:0}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal{display:flex;flex-direction:column;overflow:hidden;position:relative;margin:5% auto;width:440px;max-width:90%;max-height:90vh;border-radius:8px;z-index:2147483649;background-color:#fff;box-shadow:0 4px 24px rgba(0,0,0,.15)}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-header{display:flex;justify-content:flex-end;align-items:center;padding:12px 16px}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-header .ot-go-modal-close{width:44px;height:44px;background-size:12px;margin:-18px -18px 0 0;border:none;display:inline-block;padding:0;background-repeat:no-repeat;background-position:center;position:absolute;top:1em;cursor:pointer}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-body{padding:0 28px 28px;overflow-y:auto}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-title{font-size:1.25em;font-weight:700;margin-bottom:12px;text-align:center}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-desc{font-size:.88em;margin:0 0 20px;line-height:1.5;text-align:center}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper{position:relative;margin-bottom:4px}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-email{width:100%;padding:10px 36px 10px 12px;border:1px solid #d8d8d8;border-radius:4px;font-size:.95em;outline:none;box-sizing:border-box;color:inherit;background-color:rgba(0,0,0,0)}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-email::placeholder{color:inherit;opacity:.6}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-error-icon{position:absolute;right:10px;top:50%;transform:translateY(-50%);width:16px;height:16px;border-radius:50%;background-color:#d93025}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-error-icon::after{content:"!";color:#fff;font-size:11px;font-weight:bold;display:flex;align-items:center;justify-content:center;height:100%}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-error-msg{color:#d93025 !important;font-size:.82em;margin:4px 0 8px}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons{display:flex;gap:12px;margin-top:20px}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel,#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit{flex:1;padding:10px 16px;border-radius:4px;font-size:.88em;font-weight:600;cursor:pointer;text-align:center;box-sizing:border-box}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel{border:1px solid;background-color:rgba(0,0,0,0)}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel:hover{background-color:rgba(0,0,0,.05)}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit{position:relative}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit:hover:not(.ot-go-btn-loading){opacity:.8}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit.ot-go-btn-loading{pointer-events:none;opacity:.85}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit .ot-go-btn-spinner{display:inline-block;width:16px;height:16px;border:2px solid rgba(255,255,255,.3);border-top-color:#fff;border-radius:50%;animation:ot-go-spin .6s linear infinite;vertical-align:middle}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state{text-align:center;padding:20px 0}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-success-shield{width:56px;height:56px;margin:0 auto 20px}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-modal-confirm-msg{font-size:.95em;color:inherit;margin-bottom:24px;line-height:1.5;padding:0 10px}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-modal-close-btn{display:block;width:100%;border-radius:4px;font-size:.88em;font-weight:600;cursor:pointer;box-sizing:border-box}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-modal-close-btn:hover{opacity:.8}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel,#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit{padding:0}@media(max-width: 500px){#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal{width:95%;margin:10% auto}.ot-go-modal-buttons{flex-direction:column;gap:0px !important;flex-direction:column-reverse !important}.ot-go-modal-buttons .ot-go-modal-cancel,.ot-go-modal-buttons .ot-go-modal-submit{width:100%;flex:none}}@keyframes ot-go-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}#onetrust-banner-sdk{box-shadow:0 0 18px rgba(0,0,0,.2)}#onetrust-banner-sdk.otFlat{position:fixed;z-index:2147483645;bottom:0;right:0;left:0;background-color:#fff;max-height:90%;overflow-x:hidden;overflow-y:auto}#onetrust-banner-sdk.otFlat.top{top:0px;bottom:auto}#onetrust-banner-sdk.otRelFont{font-size:1rem}#onetrust-banner-sdk>.ot-sdk-container{overflow:hidden}#onetrust-banner-sdk::-webkit-scrollbar{width:11px}#onetrust-banner-sdk::-webkit-scrollbar-thumb{border-radius:10px;background:#c1c1c1}#onetrust-banner-sdk{scrollbar-arrow-color:#c1c1c1;scrollbar-darkshadow-color:#c1c1c1;scrollbar-face-color:#c1c1c1;scrollbar-shadow-color:#c1c1c1}#onetrust-banner-sdk #onetrust-policy{margin:1.25em 0 .625em 2em;overflow:hidden}#onetrust-banner-sdk #onetrust-policy .ot-gv-list-handler{float:left;font-size:.82em;padding:0;margin-bottom:0;border:0;line-height:normal;height:auto;width:auto}#onetrust-banner-sdk #onetrust-policy-title{font-size:1.2em;line-height:1.3;margin-bottom:10px}#onetrust-banner-sdk #onetrust-group-container{position:relative}#onetrust-banner-sdk #onetrust-policy-text{clear:both;text-align:left;font-size:.88em;line-height:1.4}#onetrust-banner-sdk #onetrust-policy-text *{font-size:inherit;line-height:inherit}#onetrust-banner-sdk #onetrust-policy-text a{font-weight:bold}#onetrust-banner-sdk #onetrust-policy-title,#onetrust-banner-sdk #onetrust-policy-text{color:dimgray;float:left}#onetrust-banner-sdk #onetrust-button-group-parent{min-height:1px;text-align:center}#onetrust-banner-sdk #onetrust-button-group{display:inline-block}#onetrust-banner-sdk #onetrust-accept-btn-handler,#onetrust-banner-sdk #onetrust-reject-all-handler,#onetrust-banner-sdk #onetrust-pc-btn-handler{background-color:#68b631;color:#fff;border-color:#68b631;margin-right:1em;min-width:125px;height:auto;white-space:normal;word-break:break-word;word-wrap:break-word;padding:12px 10px;line-height:1.2;font-size:.813em;font-weight:600}#onetrust-banner-sdk #onetrust-pc-btn-handler.cookie-setting-link{background-color:#fff;border:none;color:#68b631;text-decoration:underline;padding-left:0;padding-right:0}#onetrust-banner-sdk .onetrust-close-btn-ui{width:44px;height:44px;background-size:12px;border:none;position:relative;margin:auto;padding:0}#onetrust-banner-sdk .banner_logo{display:none}#onetrust-banner-sdk.ot-bnr-w-logo .ot-bnr-logo{position:absolute;top:50%;transform:translateY(-50%);left:0px;margin-right:5px}#onetrust-banner-sdk.ot-bnr-w-logo #onetrust-policy{margin-left:65px}#onetrust-banner-sdk .ot-b-addl-desc{clear:both;float:left;display:block}#onetrust-banner-sdk #banner-options{float:left;display:table;margin-right:0;margin-left:1em;width:calc(100% - 1em)}#onetrust-banner-sdk .banner-option-input{cursor:pointer;width:auto;height:auto;border:none;padding:0;padding-right:3px;margin:0 0 10px;font-size:.82em;line-height:1.4}#onetrust-banner-sdk .banner-option-input *{pointer-events:none;font-size:inherit;line-height:inherit}#onetrust-banner-sdk .banner-option-input[aria-expanded=true]~.banner-option-details{display:block;height:auto}#onetrust-banner-sdk .banner-option-input[aria-expanded=true] .ot-arrow-container{transform:rotate(90deg)}#onetrust-banner-sdk .banner-option{margin-bottom:12px;margin-left:0;border:none;float:left;padding:0}#onetrust-banner-sdk .banner-option:first-child{padding-left:2px}#onetrust-banner-sdk .banner-option:not(:first-child){padding:0;border:none}#onetrust-banner-sdk .banner-option-header{cursor:pointer;display:inline-block}#onetrust-banner-sdk .banner-option-header :first-child{color:dimgray;font-weight:bold;float:left}#onetrust-banner-sdk .banner-option-header .ot-arrow-container{display:inline-block;border-top:6px solid rgba(0,0,0,0);border-bottom:6px solid rgba(0,0,0,0);border-left:6px solid dimgray;margin-left:10px;vertical-align:middle}#onetrust-banner-sdk .banner-option-details{display:none;font-size:.83em;line-height:1.5;padding:10px 0px 5px 10px;margin-right:10px;height:0px}#onetrust-banner-sdk .banner-option-details *{font-size:inherit;line-height:inherit;color:dimgray}#onetrust-banner-sdk .ot-arrow-container,#onetrust-banner-sdk .banner-option-details{transition:all 300ms ease-in 0s;-webkit-transition:all 300ms ease-in 0s;-moz-transition:all 300ms ease-in 0s;-o-transition:all 300ms ease-in 0s}#onetrust-banner-sdk .ot-dpd-container{float:left}#onetrust-banner-sdk .ot-dpd-title{margin-bottom:10px}#onetrust-banner-sdk .ot-dpd-title,#onetrust-banner-sdk .ot-dpd-desc{font-size:.88em;line-height:1.4;color:dimgray}#onetrust-banner-sdk .ot-dpd-title *,#onetrust-banner-sdk .ot-dpd-desc *{font-size:inherit;line-height:inherit}#onetrust-banner-sdk.ot-iab-2 #onetrust-policy-text *{margin-bottom:0}#onetrust-banner-sdk.ot-iab-2 .onetrust-vendors-list-handler{display:block;margin-left:0;margin-top:5px;clear:both;margin-bottom:0;padding:0;border:0;height:auto;width:auto}#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group button{display:block}#onetrust-banner-sdk.ot-close-btn-link{padding-top:25px}#onetrust-banner-sdk.ot-close-btn-link #onetrust-close-btn-container{top:15px;transform:none;right:15px}#onetrust-banner-sdk.ot-close-btn-link #onetrust-close-btn-container button{padding:0;white-space:pre-wrap;border:none;height:auto;line-height:1.5;text-decoration:underline;font-size:.69em}#onetrust-banner-sdk #onetrust-policy-text,#onetrust-banner-sdk .ot-dpd-desc,#onetrust-banner-sdk .ot-b-addl-desc{font-size:.813em;line-height:1.5}#onetrust-banner-sdk .ot-dpd-desc{margin-bottom:10px}#onetrust-banner-sdk .ot-dpd-desc>.ot-b-addl-desc{margin-top:10px;margin-bottom:10px;font-size:1em}@media only screen and (max-width: 425px){#onetrust-banner-sdk #onetrust-close-btn-container{position:absolute;top:6px;right:2px}#onetrust-banner-sdk #onetrust-policy{margin-left:0;margin-top:3em}#onetrust-banner-sdk #onetrust-button-group{display:block}#onetrust-banner-sdk #onetrust-accept-btn-handler,#onetrust-banner-sdk #onetrust-reject-all-handler,#onetrust-banner-sdk #onetrust-pc-btn-handler{width:100%}#onetrust-banner-sdk .onetrust-close-btn-ui{top:auto;transform:none}#onetrust-banner-sdk #onetrust-policy-title{display:inline;float:none}#onetrust-banner-sdk #banner-options{margin:0;padding:0;width:100%}}@media only screen and (max-width: 550px){#onetrust-button-group.ot-button-order-container #onetrust-accept-btn-handler,#onetrust-button-group.ot-button-order-container #onetrust-reject-all-handler,#onetrust-button-group.ot-button-order-container #onetrust-pc-btn-handler{margin-right:0}#onetrust-banner-sdk .has-reject-all-button div#onetrust-button-group.ot-button-order-container #onetrust-accept-btn-handler,#onetrust-banner-sdk .has-reject-all-button div#onetrust-button-group.ot-button-order-container #onetrust-reject-all-handler,#onetrust-banner-sdk .has-reject-all-button div#onetrust-button-group.ot-button-order-container #onetrust-pc-btn-handler{margin-right:0}}@media only screen and (min-width: 426px)and (max-width: 896px){#onetrust-banner-sdk #onetrust-close-btn-container{position:absolute;top:0;right:0}#onetrust-banner-sdk #onetrust-policy{margin-left:1em;margin-right:1em}#onetrust-banner-sdk .onetrust-close-btn-ui{top:10px;right:10px}#onetrust-banner-sdk:not(.ot-iab-2) #onetrust-group-container{width:95%}#onetrust-banner-sdk.ot-iab-2 #onetrust-group-container{width:100%}#onetrust-banner-sdk.ot-bnr-w-logo #onetrust-button-group-parent{padding-left:50px}#onetrust-banner-sdk #onetrust-button-group-parent{width:100%;position:relative;margin-left:0}#onetrust-banner-sdk #onetrust-button-group button{display:inline-block}#onetrust-banner-sdk #onetrust-button-group{margin-right:0;text-align:center}#onetrust-banner-sdk #onetrust-button-group.ot-button-order-container #onetrust-accept-btn-handler,#onetrust-banner-sdk #onetrust-button-group.ot-button-order-container #onetrust-reject-all-handler,#onetrust-banner-sdk #onetrust-button-group.ot-button-order-container #onetrust-pc-btn-handler{width:auto}#onetrust-banner-sdk .has-reject-all-button #onetrust-button-group.ot-button-order-container{display:inline-flex;flex-wrap:wrap}#onetrust-banner-sdk .has-reject-all-button #onetrust-button-group.ot-button-order-container #onetrust-pc-btn-handler,#onetrust-banner-sdk .has-reject-all-button #onetrust-button-group.ot-button-order-container #onetrust-reject-all-handler,#onetrust-banner-sdk .has-reject-all-button #onetrust-button-group.ot-button-order-container #onetrust-accept-btn-handler{float:none}#onetrust-banner-sdk .has-reject-all-button #onetrust-button-group.ot-button-order-container *[class*=ot-button-order-]:nth-of-type(1){margin-right:auto !important}#onetrust-banner-sdk .has-reject-all-button #onetrust-pc-btn-handler{float:left}#onetrust-banner-sdk .has-reject-all-button #onetrust-reject-all-handler,#onetrust-banner-sdk .has-reject-all-button #onetrust-accept-btn-handler{float:right}#onetrust-banner-sdk .has-reject-all-button #onetrust-button-group{width:calc(100% - 2em);margin-right:0}#onetrust-banner-sdk .has-reject-all-button #onetrust-pc-btn-handler.cookie-setting-link{padding-left:0px;text-align:left}#onetrust-banner-sdk.ot-buttons-fw .ot-sdk-three button{width:100%;text-align:center}#onetrust-banner-sdk.ot-buttons-fw #onetrust-button-group-parent button{float:none}#onetrust-banner-sdk.ot-buttons-fw #onetrust-pc-btn-handler.cookie-setting-link{text-align:center}}@media only screen and (min-width: 550px){#onetrust-banner-sdk .banner-option:not(:first-child){border-left:1px solid #d8d8d8;padding-left:25px}}@media only screen and (min-width: 425px)and (max-width: 550px){#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group,#onetrust-banner-sdk.ot-iab-2 .banner-option{width:100%}#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group #onetrust-accept-btn-handler,#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group #onetrust-reject-all-handler,#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group #onetrust-pc-btn-handler{width:100%}#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group #onetrust-accept-btn-handler,#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group #onetrust-reject-all-handler{float:left}#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group.ot-button-order-container{width:auto}}@media only screen and (min-width: 769px){#onetrust-banner-sdk #onetrust-button-group{margin-right:30%}#onetrust-banner-sdk #banner-options{margin-left:2em;margin-right:5em;margin-bottom:1.25em;width:calc(100% - 7em)}}@media only screen and (min-width: 897px)and (max-width: 1023px){#onetrust-banner-sdk.vertical-align-content #onetrust-button-group-parent{position:absolute;top:50%;left:80%;transform:translateY(-50%)}#onetrust-banner-sdk #onetrust-close-btn-container{top:50%;margin:auto;transform:translate(-50%, -50%);position:absolute;padding:0;right:0}#onetrust-banner-sdk #onetrust-close-btn-container button{position:relative;margin:0;right:-22px;top:2px}}@media only screen and (min-width: 1024px){#onetrust-banner-sdk #onetrust-close-btn-container{top:50%;margin:auto;transform:translate(-50%, -50%);position:absolute;right:0}#onetrust-banner-sdk #onetrust-close-btn-container button{right:-12px}#onetrust-banner-sdk #onetrust-policy{margin-left:2em}#onetrust-banner-sdk.vertical-align-content #onetrust-button-group-parent{position:absolute;top:50%;left:60%;transform:translateY(-50%)}#onetrust-banner-sdk .ot-optout-signal{width:50%}#onetrust-banner-sdk.ot-iab-2 #onetrust-policy-title{width:50%}#onetrust-banner-sdk.ot-iab-2 #onetrust-policy-text,#onetrust-banner-sdk.ot-iab-2 :not(.ot-dpd-desc)>.ot-b-addl-desc{margin-bottom:1em;width:50%;border-right:1px solid #d8d8d8;padding-right:1rem}#onetrust-banner-sdk.ot-iab-2 #onetrust-policy-text{margin-bottom:0;padding-bottom:1em}#onetrust-banner-sdk.ot-iab-2 :not(.ot-dpd-desc)>.ot-b-addl-desc{margin-bottom:0;padding-bottom:1em}#onetrust-banner-sdk.ot-iab-2 .ot-dpd-container{width:45%;padding-left:1rem;display:inline-block;float:none}#onetrust-banner-sdk.ot-iab-2 .ot-dpd-title{line-height:1.7}#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group-parent{left:auto;right:4%;margin-left:0}#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group button{display:block}#onetrust-banner-sdk:not(.ot-iab-2) #onetrust-button-group-parent{margin:auto;width:30%}#onetrust-banner-sdk:not(.ot-iab-2) #onetrust-group-container{width:60%}#onetrust-banner-sdk #onetrust-button-group{margin-right:auto}#onetrust-banner-sdk #onetrust-accept-btn-handler,#onetrust-banner-sdk #onetrust-reject-all-handler,#onetrust-banner-sdk #onetrust-pc-btn-handler{margin-top:1em}}@media only screen and (min-width: 890px){#onetrust-banner-sdk.ot-buttons-fw:not(.ot-iab-2) #onetrust-button-group-parent{padding-left:3%;padding-right:4%;margin-left:0}#onetrust-banner-sdk.ot-buttons-fw:not(.ot-iab-2) #onetrust-button-group{margin-right:0;margin-top:1.25em;width:100%}#onetrust-banner-sdk.ot-buttons-fw:not(.ot-iab-2) #onetrust-button-group button{width:100%;margin-bottom:5px;margin-top:5px}#onetrust-banner-sdk.ot-buttons-fw:not(.ot-iab-2) #onetrust-button-group button:last-of-type{margin-bottom:20px}}@media only screen and (min-width: 1280px){#onetrust-banner-sdk:not(.ot-iab-2) #onetrust-group-container{width:55%}#onetrust-banner-sdk:not(.ot-iab-2) #onetrust-button-group-parent{width:44%;padding-left:2%;padding-right:2%}#onetrust-banner-sdk:not(.ot-iab-2).vertical-align-content #onetrust-button-group-parent{position:absolute;left:55%}} | |
| 127 | + | |
| 128 | + #onetrust-consent-sdk #onetrust-banner-sdk { | |
| 129 | + background-color: #FFFFFF; | |
| 130 | + } | |
| 131 | + | |
| 132 | + #onetrust-consent-sdk #onetrust-policy-title, | |
| 133 | + #onetrust-consent-sdk #onetrust-policy-text, | |
| 134 | + #onetrust-consent-sdk .ot-b-addl-desc, | |
| 135 | + #onetrust-consent-sdk .ot-dpd-desc, | |
| 136 | + #onetrust-consent-sdk .ot-dpd-title, | |
| 137 | + #onetrust-consent-sdk #onetrust-policy-text *:not(.onetrust-vendors-list-handler), | |
| 138 | + #onetrust-consent-sdk .ot-dpd-desc *:not(.onetrust-vendors-list-handler), | |
| 139 | + #onetrust-consent-sdk #onetrust-banner-sdk #banner-options *, | |
| 140 | + #onetrust-banner-sdk .ot-cat-header, | |
| 141 | + #onetrust-banner-sdk .ot-optout-signal, | |
| 142 | + #onetrust-consent-sdk .ot-go-modal-title, | |
| 143 | + #onetrust-consent-sdk .ot-go-modal-desc, | |
| 144 | + #onetrust-banner-sdk .ot-go-modal-title, | |
| 145 | + #onetrust-banner-sdk .ot-go-modal-desc { | |
| 146 | + color: #000000; | |
| 147 | + } | |
| 148 | + #onetrust-consent-sdk .ot-go-modal-cancel, | |
| 149 | + #onetrust-banner-sdk .ot-go-modal-cancel | |
| 150 | + { | |
| 151 | + color: #000000 !important; | |
| 152 | + } | |
| 153 | + | |
| 154 | + #onetrust-consent-sdk .ot-go-modal-close-btn, | |
| 155 | + #onetrust-banner-sdk .ot-go-modal-close-btn, | |
| 156 | + #onetrust-consent-sdk .ot-go-modal-submit, | |
| 157 | + #onetrust-banner-sdk .ot-go-modal-submit { | |
| 158 | + color: #FFFFFF !important; | |
| 159 | + } | |
| 160 | + | |
| 161 | + #onetrust-consent-sdk .ot-go-modal-cancel, | |
| 162 | + #onetrust-banner-sdk .ot-go-modal-cancel { | |
| 163 | + border-color: #000000 !important; | |
| 164 | + } | |
| 165 | + | |
| 166 | + | |
| 167 | + #onetrust-consent-sdk .ot-go-modal-email, | |
| 168 | + #onetrust-banner-sdk .ot-go-modal-email { | |
| 169 | + border-color: #000000 !important; | |
| 170 | + background-color: rgb(255, 255, 255); | |
| 171 | + } | |
| 172 | + | |
| 173 | + #onetrust-consent-sdk .ot-go-modal-email:focus, | |
| 174 | + #onetrust-banner-sdk .ot-go-modal-email:focus { | |
| 175 | + border-color: #000000; | |
| 176 | + } | |
| 177 | + | |
| 178 | + #onetrust-consent-sdk .ot-go-modal-email::placeholder, | |
| 179 | + #onetrust-banner-sdk .ot-go-modal-email::placeholder { | |
| 180 | + color: #000000; | |
| 181 | + } | |
| 182 | + | |
| 183 | + #onetrust-consent-sdk #onetrust-banner-sdk .banner-option-details { | |
| 184 | + background-color: #E9E9E9; | |
| 185 | + } | |
| 186 | + | |
| 187 | + #onetrust-consent-sdk #onetrust-banner-sdk a[href], | |
| 188 | + #onetrust-consent-sdk #onetrust-banner-sdk a[href] font, | |
| 189 | + #onetrust-consent-sdk #onetrust-banner-sdk .ot-link-btn { | |
| 190 | + color: #000000; | |
| 191 | + } | |
| 192 | + | |
| 193 | + #onetrust-consent-sdk #onetrust-accept-btn-handler, | |
| 194 | + #onetrust-banner-sdk #onetrust-reject-all-handler, | |
| 195 | + #onetrust-banner-sdk #ot-dialog-confirm-handler, | |
| 196 | + #onetrust-consent-sdk .ot-go-modal-close-btn, | |
| 197 | + #onetrust-banner-sdk .ot-go-modal-close-btn, | |
| 198 | + #onetrust-consent-sdk .ot-go-modal-submit, | |
| 199 | + #onetrust-banner-sdk .ot-go-modal-submit { | |
| 200 | + background-color: #00467f;border-color: #00467f; | |
| 201 | + color: #FFFFFF; | |
| 202 | + } | |
| 203 | + #onetrust-consent-sdk #onetrust-banner-sdk *:focus, | |
| 204 | + #onetrust-consent-sdk #onetrust-banner-sdk:focus { | |
| 205 | + outline-color: #000000; | |
| 206 | + outline-width: 1px; | |
| 207 | + outline-style: solid; | |
| 208 | + } | |
| 209 | + #onetrust-consent-sdk #onetrust-pc-btn-handler, | |
| 210 | + #onetrust-consent-sdk #onetrust-pc-btn-handler.cookie-setting-link, | |
| 211 | + #onetrust-consent-sdk #ot-dialog-cancel-handler { | |
| 212 | + color: #000000; border-color: #000000; | |
| 213 | + background-color: #FFFFFF; | |
| 214 | + }#onetrust-banner-sdk #onetrust-policy-text a.ot-cookie-policy-link, | |
| 215 | + #onetrust-banner-sdk #onetrust-policy-text a.ot-imprint-link { | |
| 216 | + margin-left: 5px; | |
| 217 | + }#onetrust-pc-sdk .ot-go-group{border:1px solid #d8d8d8 !important;border-radius:1px;margin-bottom:15px !important;float:left;width:calc(100% - 2px)}#onetrust-pc-sdk .ot-go-section-header{float:left;padding-bottom:10px;font-size:1em;width:100%;font-weight:bold;color:#333;text-align:left;margin:0}.ot-go-modal-error-msg:empty{margin:0;line-height:0}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide){background:rgba(0,0,0,.5);z-index:2147483648;width:100%;height:100%;overflow:hidden;position:fixed;top:0;left:0}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal{display:flex;flex-direction:column;overflow:hidden;position:relative;margin:5% auto;width:440px;max-width:90%;max-height:90vh;border-radius:8px;z-index:2147483649;background-color:#fff;box-shadow:0 4px 24px rgba(0,0,0,.15)}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-header{display:flex;justify-content:flex-end;align-items:center;padding:12px 16px}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-header .ot-go-modal-close{width:44px;height:44px;background-size:12px;margin:-18px -18px 0 0;border:none;display:inline-block;padding:0;background-repeat:no-repeat;background-position:center;position:absolute;top:1em;cursor:pointer}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-body{padding:0 28px 28px;overflow-y:auto}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-title{font-size:1.25em;font-weight:700;margin-bottom:12px;text-align:center}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-desc{font-size:.88em;margin:0 0 20px;line-height:1.5;text-align:center}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper{position:relative;margin-bottom:4px}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-email{width:100%;padding:10px 36px 10px 12px;border:1px solid #d8d8d8;border-radius:4px;font-size:.95em;outline:none;box-sizing:border-box;color:inherit;background-color:rgba(0,0,0,0)}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-email::placeholder{color:inherit;opacity:.6}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-error-icon{position:absolute;right:10px;top:50%;transform:translateY(-50%);width:16px;height:16px;border-radius:50%;background-color:#d93025}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-error-icon::after{content:"!";color:#fff;font-size:11px;font-weight:bold;display:flex;align-items:center;justify-content:center;height:100%}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-error-msg{color:#d93025 !important;font-size:.82em;margin:4px 0 8px}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons{display:flex;gap:12px;margin-top:20px}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel,#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit{flex:1;padding:10px 16px;border-radius:4px;font-size:.88em;font-weight:600;cursor:pointer;text-align:center;box-sizing:border-box}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel{border:1px solid;background-color:rgba(0,0,0,0)}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel:hover{background-color:rgba(0,0,0,.05)}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit{position:relative}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit:hover:not(.ot-go-btn-loading){opacity:.8}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit.ot-go-btn-loading{pointer-events:none;opacity:.85}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit .ot-go-btn-spinner{display:inline-block;width:16px;height:16px;border:2px solid rgba(255,255,255,.3);border-top-color:#fff;border-radius:50%;animation:ot-go-spin .6s linear infinite;vertical-align:middle}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state{text-align:center;padding:20px 0}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-success-shield{width:56px;height:56px;margin:0 auto 20px}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-modal-confirm-msg{font-size:.95em;color:inherit;margin-bottom:24px;line-height:1.5;padding:0 10px}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-modal-close-btn{display:block;width:100%;border-radius:4px;font-size:.88em;font-weight:600;cursor:pointer;box-sizing:border-box}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-modal-close-btn:hover{opacity:.8}@media(max-width: 500px){#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal{width:95%;margin:10% auto}.ot-go-modal-buttons{flex-direction:column;gap:0px !important;flex-direction:column-reverse !important}.ot-go-modal-buttons .ot-go-modal-cancel,.ot-go-modal-buttons .ot-go-modal-submit{width:100%;flex:none}}@keyframes ot-go-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes ot-slide-in-left{from{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}to{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}}@keyframes ot-slide-in-right{from{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}to{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}}@keyframes ot-slide-out-left{from{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}to{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}}@keyframes ot-slide-out-right{from{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}to{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}}#onetrust-pc-sdk.otPcPanel.ot-slide-out-right{-webkit-animation-name:ot-slide-out-right;animation-name:ot-slide-out-right}#onetrust-pc-sdk.otPcPanel.ot-slide-in-left{-webkit-animation-name:ot-slide-in-left;animation-name:ot-slide-in-left}#onetrust-pc-sdk.otPcPanel.ot-slide-in-right{-webkit-animation-name:ot-slide-in-right;animation-name:ot-slide-in-right}#onetrust-pc-sdk.otPcPanel.ot-slide-out-left{-webkit-animation-name:ot-slide-out-left;animation-name:ot-slide-out-left}@media print,(prefers-reduced-motion){.ot-animated{-webkit-animation:initial !important;animation:initial !important;-webkit-transition:none !important;transition:none !important}#onetrust-pc-sdk.otPcPanel.ot-slide-out-left{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}#onetrust-pc-sdk.otPcPanel.ot-slide-out-right{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}}#onetrust-pc-sdk{--ot-footer-space: 10rem;position:fixed;display:flex;flex-direction:column;z-index:2147483647;bottom:0;left:0;background-color:#fff;max-width:min(480px,100vw);min-width:min(480px,100vw);height:100%;max-height:100vh;-webkit-box-shadow:0px 2px 10px -3px #999;-moz-box-shadow:0px 2px 10px -3px #999;box-shadow:0px 2px 10px -3px #999}#onetrust-pc-sdk>div[role=dialog]{display:flex;flex-direction:column;flex:1 1 auto;min-height:0;overflow:hidden}#onetrust-pc-sdk.otRelFont{font-size:1rem}#onetrust-pc-sdk.otPcPanel.right,#onetrust-pc-sdk.otPcPanel[dir=rtl]{right:0;left:auto}#onetrust-pc-sdk.otPcPanel.right-rtl[dir=rtl]{left:0;right:auto}#onetrust-pc-sdk.otPcPanel.ot-animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}#onetrust-pc-sdk #close-pc-btn-handler.ot-close-icon{background-color:rgba(0,0,0,0);border:none;margin-right:4px}#onetrust-pc-sdk .ot-optout-signal{margin-top:.625rem}#onetrust-pc-sdk .ot-pc-scrollbar::-webkit-scrollbar-track{margin-right:20px}#onetrust-pc-sdk .ot-pc-scrollbar::-webkit-scrollbar{width:11px}#onetrust-pc-sdk .ot-pc-scrollbar::-webkit-scrollbar-thumb{border-radius:10px;background:#d8d8d8}#onetrust-pc-sdk .ot-pc-scrollbar{scrollbar-arrow-color:#d8d8d8;scrollbar-darkshadow-color:#d8d8d8;scrollbar-face-color:#d8d8d8;scrollbar-shadow-color:#d8d8d8}#onetrust-pc-sdk.ot-ftr-stacked{--ot-footer-space: 13.125rem}#onetrust-pc-sdk.ot-ftr-stacked .ot-pc-refuse-all-handler{margin-bottom:0px}#onetrust-pc-sdk.ot-ftr-stacked .ot-pc-footer button{width:100%;max-width:none}#onetrust-pc-sdk.ot-ftr-stacked #ot-lst-cnt{max-height:84%}#onetrust-pc-sdk #ot-addtl-venlst .ot-arw-cntr,#onetrust-pc-sdk #ot-addtl-venlst .ot-plus-minus,#onetrust-pc-sdk .ot-hide-tgl{visibility:hidden}#onetrust-pc-sdk #ot-addtl-venlst .ot-arw-cntr *,#onetrust-pc-sdk #ot-addtl-venlst .ot-plus-minus *,#onetrust-pc-sdk .ot-hide-tgl *{visibility:hidden}#onetrust-pc-sdk .ot-pc-header{height:auto;min-height:2.5rem;border-bottom:1px solid #e9e9e9;padding:10px 0 10px 25px;flex:0 0 auto}#onetrust-pc-sdk .ot-pc-logo{height:40px;width:120px}#onetrust-pc-sdk .ot-close-icon{float:right;height:10px;width:10px;margin-top:10px;margin-right:5px}#onetrust-pc-sdk #ot-pc-content,#onetrust-pc-sdk #ot-pc-lst{position:relative;top:auto;bottom:auto;flex:1 1 auto;min-height:0}#onetrust-pc-sdk #ot-pc-content{padding-left:2px;padding-right:10px;margin-left:23px;margin-right:7px;width:calc(100% - 42px);overflow-y:auto}#onetrust-pc-sdk #ot-pc-lst{width:100%}#onetrust-pc-sdk .ot-pc-footer{position:relative;bottom:auto;width:100%;max-height:var(--ot-footer-space);border-top:1px solid #d8d8d8;flex:0 0 auto;overflow-y:auto}#onetrust-pc-sdk .ot-pc-footer button{margin-top:19px}#onetrust-pc-sdk .ot-button-order-0{float:left !important;margin-right:10px !important;margin-bottom:25px !important}#onetrust-pc-sdk .ot-btn-container{text-align:left;padding:0 25px}#onetrust-pc-sdk .ot-btn-container button{min-width:calc(50% - 5px)}#onetrust-pc-sdk .ot-btn-container.ot-button-order-container{height:100%;display:flex;flex-direction:column;gap:.5rem;justify-content:space-around}#onetrust-pc-sdk .ot-btn-container.ot-button-order-container .ot-pc-refuse-all-handler,#onetrust-pc-sdk .ot-btn-container.ot-button-order-container .save-preference-btn-handler,#onetrust-pc-sdk .ot-btn-container.ot-button-order-container #accept-recommended-btn-handler{width:100%;float:none !important;margin:0 !important;min-height:40px}#onetrust-pc-sdk .ot-pc-footer-logo{padding-left:25px;height:30px;background:#f4f4f4;text-align:right}#onetrust-pc-sdk .ot-pc-footer-logo a{display:inline-block;margin-top:2px;margin-right:10px}#onetrust-pc-sdk .ot-pc-footer-logo img,#onetrust-pc-sdk .ot-pc-footer-logo svg{margin-top:3px}#onetrust-pc-sdk.otPcPanel[dir=rtl] .ot-pc-footer-logo{direction:rtl}#onetrust-pc-sdk.otPcPanel[dir=rtl] .ot-pc-footer-logo a{margin-right:25px}#onetrust-pc-sdk button{display:inline-block;font-size:.75em;letter-spacing:.08em;max-width:394px;padding:12px 30px;line-height:1;word-break:break-word;word-wrap:break-word;white-space:normal;font-weight:bold;height:auto}#onetrust-pc-sdk button:hover,#onetrust-pc-sdk button:focus{color:#fff;border-color:#68b631}#onetrust-pc-sdk .ot-link-btn{padding:0;margin-bottom:0;border:0;font-weight:normal;line-height:normal;width:auto;height:auto}#onetrust-pc-sdk #accept-recommended-btn-handler{margin-right:10px;margin-bottom:25px}#onetrust-pc-sdk .ot-pc-refuse-all-handler{margin-right:5px}#onetrust-pc-sdk .ot-tgl{float:right;position:relative;z-index:1}#onetrust-pc-sdk .ot-tgl input:checked+.ot-switch .ot-switch-nob{background-color:#468254;border:1px solid #fff}#onetrust-pc-sdk .ot-tgl input:checked+.ot-switch .ot-switch-nob:before{-webkit-transform:translateX(21px);-ms-transform:translateX(21px);transform:translateX(21px);background-color:#fff}#onetrust-pc-sdk .ot-tgl input:focus+.ot-switch .ot-switch-nob{box-shadow:0 0 1px #2196f3;outline-style:auto !important;outline-width:1px !important}#onetrust-pc-sdk .ot-switch{position:relative;display:inline-block;width:45px;height:25px;margin-bottom:0}#onetrust-pc-sdk .ot-switch-nob{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#767676;border:1px solid #ddd;transition:all .2s ease-in 0s;-moz-transition:all .2s ease-in 0s;-o-transition:all .2s ease-in 0s;-webkit-transition:all .2s ease-in 0s;border-radius:20px}#onetrust-pc-sdk .ot-switch-nob:before{position:absolute;content:"";height:18px;width:18px;bottom:3px;left:2px;background-color:#fff;-webkit-transition:.4s;transition:.4s;border-radius:20px}#onetrust-pc-sdk .ot-chkbox{z-index:1}#onetrust-pc-sdk .ot-chkbox input{width:28px !important;height:28px !important}#onetrust-pc-sdk .ot-chkbox input:checked~label::before{background-color:#3860be}#onetrust-pc-sdk .ot-chkbox input+label::after{content:none;color:#fff}#onetrust-pc-sdk .ot-chkbox input:checked+label::after{content:""}#onetrust-pc-sdk .ot-chkbox input:focus+label::before{outline-style:solid;outline-width:2px;outline-style:auto}#onetrust-pc-sdk .ot-chkbox input[aria-checked=mixed]~label::before{background-color:#3860be}#onetrust-pc-sdk .ot-chkbox input[aria-checked=mixed]+label::after{content:""}#onetrust-pc-sdk .ot-chkbox label{position:relative;display:flex;align-items:center;cursor:pointer;min-height:28px}#onetrust-pc-sdk .ot-chkbox label::before,#onetrust-pc-sdk .ot-chkbox label::after{position:absolute;content:"";display:inline-block;border-radius:3px}#onetrust-pc-sdk .ot-chkbox label::before{height:18px;width:18px;border:1px solid #3860be;left:0px;left:4px;top:4px}#onetrust-pc-sdk .ot-chkbox label::after{height:5px;width:9px;border-left:3px solid;border-bottom:3px solid;transform:rotate(-45deg);-o-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);left:8px;top:8px}#onetrust-pc-sdk .ot-label-txt{display:none}#onetrust-pc-sdk .ot-chkbox input,#onetrust-pc-sdk .ot-tgl input{position:absolute;opacity:0;width:0;height:0}#onetrust-pc-sdk .ot-arw-cntr{left:5px;float:right;position:relative;pointer-events:none}#onetrust-pc-sdk .ot-arw{width:16px;height:16px;margin-left:5px;color:dimgray;display:inline-block;vertical-align:middle;-webkit-transition:all 150ms ease-in 0s;-moz-transition:all 150ms ease-in 0s;-o-transition:all 150ms ease-in 0s;transition:all 150ms ease-in 0s}#onetrust-pc-sdk input:checked~.ot-acc-hdr .ot-arw,#onetrust-pc-sdk button[aria-expanded=true]~.ot-acc-hdr .ot-arw-cntr svg{transform:rotate(90deg);-o-transform:rotate(90deg);-ms-transform:rotate(90deg);-webkit-transform:rotate(90deg)}#onetrust-pc-sdk input[type=checkbox]:focus+.ot-acc-hdr{outline:1px solid #000}#onetrust-pc-sdk .ot-acc-hdr{display:inline-block;width:100%;justify-content:flex-start !important}#onetrust-pc-sdk .ot-enbl-chr .ot-acc-hdr{justify-content:space-between}#onetrust-pc-sdk .ot-cat-item p[role=heading]{max-width:60%;line-height:1.5}#onetrust-pc-sdk .ot-enbl-chr .ot-cat-item p[role=heading]{max-width:90%}#onetrust-pc-sdk #ot-fltr-modal .ot-label-txt{display:inline-block;font-size:.85em;color:dimgray}#onetrust-pc-sdk .ot-label-status{font-size:.75em;display:none;position:relative;top:2px;padding-right:5px;float:left}#onetrust-pc-sdk .ot-plus-minus{width:20px;height:20px;font-size:1.5em;position:relative;display:inline-block;margin-right:5px;top:3px}#onetrust-pc-sdk .ot-plus-minus span{position:absolute;background:#27455c;border-radius:1px}#onetrust-pc-sdk .ot-plus-minus span:first-of-type{top:25%;bottom:25%;width:10%;left:45%}#onetrust-pc-sdk .ot-plus-minus span:last-of-type{left:25%;right:25%;height:10%;top:45%}#onetrust-pc-sdk button[aria-expanded=true]~.ot-acc-hdr .ot-arw,#onetrust-pc-sdk button[aria-expanded=true]~.ot-acc-hdr .ot-plus-minus span:first-of-type,#onetrust-pc-sdk button[aria-expanded=true]~.ot-acc-hdr .ot-plus-minus span:last-of-type{transform:rotate(90deg)}#onetrust-pc-sdk button[aria-expanded=true]~.ot-acc-hdr .ot-plus-minus span:last-of-type{left:50%;right:50%}#onetrust-pc-sdk .ot-host-item,#onetrust-pc-sdk .ot-ven-item{padding-right:0}#onetrust-pc-sdk .ot-host-item .ot-plus-minus,#onetrust-pc-sdk .ot-ven-item .ot-plus-minus{float:left;margin-right:8px;margin-top:10px}#onetrust-pc-sdk .ot-ven-item ul{list-style:none inside;font-size:100%;margin:0}#onetrust-pc-sdk .ot-ven-item ul li{margin:0 !important;padding:0;border:none !important}#onetrust-pc-sdk .ot-hide-acc>button{pointer-events:none}#onetrust-pc-sdk .ot-hide-acc .ot-plus-minus>*,#onetrust-pc-sdk .ot-hide-acc .ot-arw-cntr>*{visibility:hidden}#onetrust-pc-sdk .ot-hide-acc .ot-acc-hdr{min-height:30px}#onetrust-pc-sdk #ot-pc-title,#onetrust-pc-sdk #ot-pc-desc,#onetrust-pc-sdk #ot-category-title,#onetrust-pc-sdk .ot-cat-header,#onetrust-pc-sdk .ot-cat-item p:last-of-type:not([role=heading]){color:dimgray}#onetrust-pc-sdk #ot-pc-title{margin-top:20px;margin-bottom:10px}#onetrust-pc-sdk #ot-pc-desc,#onetrust-pc-sdk .ot-cat-item p{font-size:.79em;line-height:1.4}#onetrust-pc-sdk #ot-pc-desc *,#onetrust-pc-sdk .ot-cat-item p *{font-size:inherit;line-height:inherit}#onetrust-pc-sdk #ot-category-title,#onetrust-pc-sdk #ot-pc-title{font-size:1.125em;line-height:1.2}#onetrust-pc-sdk #ot-pc-desc{clear:both;font-size:.813em;line-height:1.5;margin-bottom:25px}#onetrust-pc-sdk #ot-pc-desc *{font-size:inherit;line-height:inherit}#onetrust-pc-sdk #ot-pc-desc a.privacy-notice-link,#onetrust-pc-sdk #ot-pc-desc a.ot-imprint-handler{margin-right:8px}#onetrust-pc-sdk #ot-pc-desc li{padding:10px 0px}#onetrust-pc-sdk #ot-pc-desc,#onetrust-pc-sdk #accept-recommended-btn-handler,#onetrust-pc-sdk #ot-pc-title,#onetrust-pc-sdk #ot-category-title,#onetrust-pc-sdk .ot-cat-header{float:left}#onetrust-pc-sdk #ot-category-title{width:100%;text-align:left}#onetrust-pc-sdk #ot-pc-title,#onetrust-pc-sdk #ot-category-title,#onetrust-pc-sdk .ot-cat-header,#onetrust-pc-sdk #ot-lst-title,#onetrust-pc-sdk .ot-ven-hdr .ot-ven-name,#onetrust-pc-sdk .ot-always-active{font-weight:bold}#onetrust-pc-sdk a{color:#656565;cursor:pointer}#onetrust-pc-sdk a:hover{color:#3860be}#onetrust-pc-sdk .ot-always-active{float:right;color:#3860be;margin-top:-2px}#onetrust-pc-sdk .ot-cat-header,#onetrust-pc-sdk .ot-always-active{font-size:.88em;line-height:1.4;position:relative}#onetrust-pc-sdk .ot-cat-item{margin-top:25px;line-height:1.1}#onetrust-pc-sdk .ot-cat-item p:last-of-type:not([role=heading]){clear:both;padding-top:15px;margin:0}#onetrust-pc-sdk .ot-acc-txt p ul,#onetrust-pc-sdk .ot-cat-item ul,#onetrust-pc-sdk li.ot-subgrp p ul{margin:0px;list-style:disc;margin-left:15px}#onetrust-pc-sdk .ot-acc-txt p ul li,#onetrust-pc-sdk .ot-cat-item ul li,#onetrust-pc-sdk li.ot-subgrp p ul li{font-size:inherit;margin:5px 0 0 0;padding:0;border:none}#onetrust-pc-sdk .ot-subgrp-cntr{display:inline-block;width:100%}#onetrust-pc-sdk .ot-subgrp-cntr .ot-tgl-cntr{float:right}#onetrust-pc-sdk .ot-subgrp-cntr .ot-tgl-cntr.ot-always-active-subgroup{width:auto}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li p,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li h5{font-size:.813em;line-height:1.5;color:dimgray}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr{display:inline-block;width:100%;vertical-align:middle}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-txt{margin:0}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li{margin:10px 0 0 0;padding:0;border:none}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li p{clear:both;float:left;padding-top:10px;margin:0}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li h5,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li p[aria-level="5"]{font-weight:bold;margin-bottom:0;float:left;position:relative;top:6px;padding-top:0}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp{margin-left:20px;overflow:hidden}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp>p ul:first-child{padding-bottom:7.5px}#onetrust-pc-sdk ul.ot-subgrps{margin:0}#onetrust-pc-sdk .ot-hlst-cntr,#onetrust-pc-sdk .ot-vlst-cntr{margin-top:3px;overflow:hidden;clear:both;padding-left:2px;padding-bottom:2px}#onetrust-pc-sdk .ot-always-active-subgroup{width:auto;padding-left:0px !important;top:3px;position:relative}#onetrust-pc-sdk .category-vendors-list-handler,#onetrust-pc-sdk .category-vendors-list-handler+a,#onetrust-pc-sdk .category-host-list-handler{color:#3860be;margin-left:0;font-size:.813em;text-decoration:none;float:left;margin-top:5px}#onetrust-pc-sdk .category-vendors-list-handler:hover,#onetrust-pc-sdk .category-vendors-list-handler+a:hover,#onetrust-pc-sdk .category-host-list-handler:hover{text-decoration-line:underline}#onetrust-pc-sdk .category-vendors-list-handler+a{clear:none}#onetrust-pc-sdk .ot-vlst-cntr svg.ot-ext-lnk,#onetrust-pc-sdk .ot-ven-hdr svg.ot-ext-lnk,#onetrust-pc-sdk .ot-host-hdr svg.ot-ext-lnk,#onetrust-pc-sdk .ot-cat-grp svg.ot-ext-lnk{display:inline-block;height:13px;width:13px;background-repeat:no-repeat;margin-left:1px;cursor:pointer;vertical-align:middle}#onetrust-pc-sdk .ot-ven-hdr svg.ot-ext-lnk{margin-bottom:-1px}#onetrust-pc-sdk .back-btn-handler{min-height:20px;font-size:1em;text-decoration:none}#onetrust-pc-sdk .back-btn-handler svg{width:12px;height:12px}#onetrust-pc-sdk .back-btn-handler:hover{opacity:.6}#onetrust-pc-sdk #ot-lst-title h3,#onetrust-pc-sdk #ot-lst-title p[aria-level="3"]{word-break:break-word;word-wrap:break-word;margin-bottom:0;color:#656565;font-weight:bold;margin-left:15px;display:inline-block;font-size:1em}#onetrust-pc-sdk #ot-lst-title{margin-top:15px;font-size:1em}#onetrust-pc-sdk #ot-pc-hdr{display:inline-block;padding-left:27px;padding-right:17px;width:calc(100% - 44px)}#onetrust-pc-sdk #ot-pc-hdr input::placeholder{color:#707070;font-style:italic}#onetrust-pc-sdk #vendor-search-handler{height:31px;width:100%;border-radius:50px;font-size:.8em;padding-right:35px;padding-left:15px;float:left;margin-left:15px}#onetrust-pc-sdk #ot-lst-cnt{transform:translate3d(0, 0, 0);position:relative;padding-left:27px;margin-right:10px;margin-top:10px;width:calc(100% - 37px);top:0;bottom:70px;height:calc(100% - 94px);overflow-y:auto;overflow-x:hidden}#onetrust-pc-sdk #ot-pc-lst .ot-tgl-cntr{right:32px;position:absolute;margin-top:10px;height:20px}#onetrust-pc-sdk #ot-pc-lst:not(.ot-enbl-chr):not(.ot-hosts-ui) .ot-tgl-cntr{right:12px}#onetrust-pc-sdk #ot-sel-blk{position:sticky;position:-webkit-sticky;width:100%;display:inline-block;top:0;overflow:hidden;z-index:3}#onetrust-pc-sdk #ot-sel-blk p{font-size:.75em;color:#6b6b6b;margin:0;display:inline-block}#onetrust-pc-sdk .ot-enbl-chr>:not(.ot-hosts-ui) .ot-sel-all{padding-right:33px}#onetrust-pc-sdk .ot-enbl-chr .ot-hosts-ui .ot-sel-all{padding-right:23px}#onetrust-pc-sdk .ot-enbl-chr .ot-accordion-layout h4~.ot-tgl+.ot-tgl,#onetrust-pc-sdk .ot-enbl-chr .ot-accordion-layout p[aria-level="4"]~.ot-tgl+.ot-tgl{right:105px}#onetrust-pc-sdk .ot-enbl-chr .ot-cat-item h5+.ot-tgl-cntr,#onetrust-pc-sdk .ot-enbl-chr .ot-cat-item p[aria-level="5"]+.ot-tgl-cntr{padding-left:31px;padding-right:13px}#onetrust-pc-sdk #ot-pc-lst:not(.ot-enbl-chr) .ot-tgl-cntr .ot-arw-cntr,#onetrust-pc-sdk #ot-pc-lst:not(.ot-enbl-chr) .ot-tgl-cntr .ot-arw-cntr *{visibility:hidden}#onetrust-pc-sdk #ot-pc-content:not(.ot-enbl-chr) .ot-pli-hdr.ot-leg-border-color span:first-child{text-align:center}#onetrust-pc-sdk #ot-pc-content:not(.ot-enbl-chr) .ot-pli-hdr.ot-leg-border-color span:last-child{text-align:right}#onetrust-pc-sdk .ot-hosts-ui:not(.ot-enbl-chr) .ot-tgl-cntr{right:23px}#onetrust-pc-sdk .ot-hosts-ui #ot-sel-blk{width:100%}#onetrust-pc-sdk .ot-lst-subhdr{display:inline-block;width:100%;margin-top:10px}#onetrust-pc-sdk .ot-lst-subhdr svg{width:30px;height:30px;position:absolute;float:left;right:-15px}#onetrust-pc-sdk .ot-search-cntr{float:left;width:82%;position:relative}#onetrust-pc-sdk .ot-fltr-cntr{float:right;right:15px;position:relative}#onetrust-pc-sdk #ot-filter-list-header{display:block;box-sizing:border-box;margin-bottom:10px;float:left;width:100%;text-decoration:none;color:#3860be;font-size:.9em;font-weight:bold;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0);padding:1px 1px 1px 15px;word-wrap:break-word;overflow-wrap:break-word}#onetrust-pc-sdk #filter-btn-handler{background-color:#3860be;border-radius:17px;display:inline-block;position:relative;width:32px;height:32px;-moz-transition:.1s ease;-o-transition:.1s ease;-webkit-transition:1s ease;transition:.1s ease;padding:0;margin:0}#onetrust-pc-sdk #filter-btn-handler:hover{opacity:.7}#onetrust-pc-sdk #filter-btn-handler svg{width:12px;margin:6px 10px 0 9px;display:block;height:12px;position:static;right:auto;top:auto}#onetrust-pc-sdk .ot-ven-link,#onetrust-pc-sdk .ot-ven-legclaim-link{color:#3860be;text-decoration:none;display:inline-block;margin-top:10px;transform:translate(0, 1%);-o-transform:translate(0, 1%);-ms-transform:translate(0, 1%);-webkit-transform:translate(0, 1%);z-index:2;position:relative;font-size:.75em}#onetrust-pc-sdk .ot-ven-link:hover,#onetrust-pc-sdk .ot-ven-legclaim-link:hover{text-decoration:underline}#onetrust-pc-sdk .ot-ven-link *,#onetrust-pc-sdk .ot-ven-legclaim-link *{font-size:inherit}#onetrust-pc-sdk .ot-ven-name{vertical-align:middle}#onetrust-pc-sdk .ot-ven-hdr,#onetrust-pc-sdk .ot-host-hdr{width:calc(100% - 165px);height:auto;float:left;text-align:left;word-break:break-word;word-wrap:break-word;vertical-align:middle;padding-bottom:2px;padding-left:2px}#onetrust-pc-sdk .ot-host-hdr{pointer-events:none;position:relative;z-index:1}#onetrust-pc-sdk .ot-host-hdr .ot-host-name{pointer-events:none}#onetrust-pc-sdk .ot-host-hdr a{pointer-events:initial}#onetrust-pc-sdk #ot-host-lst .ot-host-info{font-size:.7em;line-height:1.1}#onetrust-pc-sdk #ot-host-lst .ot-host-name,#onetrust-pc-sdk #ot-host-lst .ot-host-name a{color:dimgray;font-size:.81em;font-weight:bold;line-height:1.4;margin-bottom:5px;position:relative}#onetrust-pc-sdk #ot-host-lst .ot-host-name a,#onetrust-pc-sdk #ot-host-lst .ot-host-info a{font-size:1em}#onetrust-pc-sdk #ot-host-lst .ot-host-desc{width:100%;margin-bottom:5px}#onetrust-pc-sdk #ot-host-lst .ot-host-expand,#onetrust-pc-sdk #ot-host-lst .ot-host-desc{color:dimgray;font-size:.69em;line-height:1.4;float:left;font-weight:normal}#onetrust-pc-sdk #ot-host-lst .ot-host-hdr>a{text-decoration:underline;font-size:.69em;position:relative;z-index:2;margin-bottom:5px;line-height:1.4}#onetrust-pc-sdk #ot-host-lst .ot-host-expand{color:#3860be}#onetrust-pc-sdk #ot-host-lst .ot-host-expand *{font-size:inherit}#onetrust-pc-sdk .ot-host-opt{margin:0;font-size:inherit;display:inline-block;width:100%}#onetrust-pc-sdk .ot-host-opt .ot-host-info{border:none;font-size:.8em;color:dimgray;display:inline-block;width:calc(100% - 20px);padding:10px;margin-bottom:10px;background-color:#f8f8f8}#onetrust-pc-sdk .ot-host-opt .ot-host-info>div{overflow:auto}#onetrust-pc-sdk .ot-host-opt li>dl{font-size:.8em;margin:5px 0}#onetrust-pc-sdk .ot-host-opt li>dl>div{padding:5px 0;display:flex}#onetrust-pc-sdk .ot-host-opt li>dl>div dt{width:30%;float:left}#onetrust-pc-sdk .ot-host-opt li>dl>div dd{width:70%;float:left;word-break:break-word;word-wrap:break-word}#onetrust-pc-sdk #ot-ven-lst .ot-acc-hdr{overflow:hidden;cursor:pointer}#onetrust-pc-sdk .ot-ven-dets{border-radius:2px;margin-top:10px;background-color:#f8f8f8}#onetrust-pc-sdk .ot-ven-dets li:first-child p:first-child{border-top:none}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc:not(:first-child){border-top:1px solid #ddd !important}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc:nth-child(n+3) p{display:inline-block}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc:nth-child(n+3) p:nth-of-type(odd){width:30%}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc:nth-child(n+3) p:nth-of-type(even){width:50%;word-break:break-word;word-wrap:break-word}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc p,#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc h5{padding-top:5px;padding-bottom:5px;display:block}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc h5,#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc p[aria-level="5"]{display:inline-block}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc p:nth-last-child(-n+1){padding-bottom:10px}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc p:nth-child(-n+2):not(.disc-pur):not([role=heading]){padding-top:10px}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc .disc-pur-cont{display:inline}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc .disc-pur{position:relative;width:50% !important;word-break:break-word;word-wrap:break-word;left:calc(30% + 17px)}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc .disc-pur:nth-child(-n+1){position:static}#onetrust-pc-sdk .ot-ven-dets p,#onetrust-pc-sdk .ot-ven-dets h5,#onetrust-pc-sdk .ot-ven-dets span{font-size:.69em;text-align:left;vertical-align:middle;word-break:break-word;word-wrap:break-word;margin:0;padding-bottom:10px;padding-left:15px;color:#2e3644}#onetrust-pc-sdk .ot-ven-dets h5,#onetrust-pc-sdk .ot-ven-dets p[aria-level="5"]{padding-top:5px;line-height:1.5}#onetrust-pc-sdk .ot-ven-dets span{color:dimgray;padding:0;vertical-align:baseline}#onetrust-pc-sdk .ot-ven-dets .ot-ven-pur h5,#onetrust-pc-sdk .ot-ven-dets .ot-ven-pur p[aria-level="5"]{border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9;padding-bottom:5px;margin-bottom:5px;font-weight:bold}#onetrust-pc-sdk #no-results{text-align:center;margin-top:30px;height:calc(100% - 300px);margin-left:27px}#onetrust-pc-sdk #no-results span{font-weight:bold}#onetrust-pc-sdk #no-results p{font-size:1em;color:#2e3644;word-break:break-word;word-wrap:break-word}#onetrust-pc-sdk #ot-fltr-modal{right:13px;top:87px;height:90%;max-height:370px;display:none;-moz-transition:.2s ease;-o-transition:.2s ease;-webkit-transition:2s ease;transition:.2s ease;opacity:1;position:absolute}#onetrust-pc-sdk #ot-fltr-cnt{z-index:2147483646;background-color:#fff;position:relative;height:100%;max-width:325px;border-radius:3px;padding-right:10px;padding-bottom:5px;-webkit-box-shadow:0px 0px 12px 2px #c7c5c7;-moz-box-shadow:0px 0px 12px 2px #c7c5c7;box-shadow:0px 0px 12px 2px #c7c5c7}#onetrust-pc-sdk .ot-fltr-scrlcnt{overflow-y:auto;overflow-x:hidden;clear:both;max-height:calc(100% - 60px);border:none;padding:0;margin:0;min-width:0}#onetrust-pc-sdk #ot-anchor{border:12px solid rgba(0,0,0,0);display:none;position:absolute;z-index:2147483647;right:36px;top:75px;transform:rotate(45deg);-o-transform:rotate(45deg);-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);background-color:#fff;-webkit-box-shadow:-3px -3px 5px -2px #c7c5c7;-moz-box-shadow:-3px -3px 5px -2px #c7c5c7;box-shadow:-3px -3px 5px -2px #c7c5c7}#onetrust-pc-sdk .ot-fltr-btns{margin-left:15px}#onetrust-pc-sdk #filter-apply-handler{margin-right:15px}#onetrust-pc-sdk .ot-fltr-opt{margin-bottom:5px;margin-left:15px;min-height:20px;width:75%}#onetrust-pc-sdk .ot-fltr-opt label{padding-left:30px;margin-bottom:0}#onetrust-pc-sdk .ot-fltr-opt p{display:inline-block;margin:0;font-size:.9em;color:#2e3644}#onetrust-pc-sdk #ot-sel-blk .ot-chkbox{width:20px;height:20px;float:right}#onetrust-pc-sdk .line-through label::after,#onetrust-pc-sdk[dir=rtl] .line-through label::after{height:auto;border-left:0;transform:none;-o-transform:none;-ms-transform:none;-webkit-transform:none;left:9px;top:12px}#onetrust-pc-sdk #ot-selall-vencntr label,#onetrust-pc-sdk #ot-selall-adtlvencntr label,#onetrust-pc-sdk #ot-selall-hostcntr label,#onetrust-pc-sdk #ot-selall-licntr label,#onetrust-pc-sdk #ot-selall-gnvencntr label{position:relative;display:inline-block;margin:0}#onetrust-pc-sdk #ot-selall-vencntr input,#onetrust-pc-sdk #ot-selall-adtlvencntr input,#onetrust-pc-sdk #ot-selall-hostcntr input,#onetrust-pc-sdk #ot-selall-licntr input,#onetrust-pc-sdk #ot-selall-gnvencntr input{height:auto;width:auto;border-radius:0;font-size:initial;padding:0;float:none}#onetrust-pc-sdk #ot-ven-lst:first-child{border-top:1px solid #e2e2e2}#onetrust-pc-sdk #vdr-lst-dsc{font-size:.812em;line-height:1.5;padding:10px 15px 5px 15px}#onetrust-pc-sdk #close-pc-btn-handler{margin:0;float:right;height:44px;width:44px;background-size:10px}#onetrust-pc-sdk #close-pc-btn-handler svg{display:block}#onetrust-pc-sdk .ot-close-icon{padding:0;background-color:rgba(0,0,0,0);border:none}#onetrust-pc-sdk #clear-filters-handler{float:right;max-width:200px;margin-bottom:10px;text-decoration:none;margin-top:20px;font-weight:bold;color:#3860be;font-size:.9em;letter-spacing:normal;border:none;padding:1px;border:1px solid #3860be;padding:5px 10px}#onetrust-pc-sdk #clear-filters-handler:hover{color:#2285f7}#onetrust-pc-sdk #clear-filters-handler:focus{outline:#000 solid 1px}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item{position:relative;border-radius:1px;margin:0;padding:0;border:1px solid #d8d8d8;border-top:none;float:left;width:calc(100% - 2px)}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item:first-of-type{margin-top:10px;border-top:1px solid #d8d8d8}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item .ot-vlst-cntr:first-child{margin-top:15px}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item .ot-acc-grpdesc{font-size:.813em;line-height:1.5;padding-left:20px;padding-right:20px;width:calc(100% - 40px)}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item .ot-acc-grpdesc ul{padding-bottom:5px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-hdr{padding-top:11.5px;padding-bottom:11.5px;padding-left:20px;padding-right:15px;width:calc(100% - 35px);display:inline-block;position:relative;min-height:25px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-txt{width:100%;padding:0px}#onetrust-pc-sdk .ot-accordion-layout .ot-subgrp-cntr,#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpdesc+.ot-leg-btn-container{padding-left:20px;padding-right:16px;width:calc(100% - 36px)}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpdesc+.ot-leg-btn-container{margin-top:5px;margin-bottom:10px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpcntr{z-index:1;position:relative}#onetrust-pc-sdk .ot-accordion-layout input[type=checkbox]:checked~.ot-acc-txt.ot-acc-grpcntr{width:auto;padding-bottom:15px}#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header{float:none;font-size:.88em;color:#2e3644;margin:0;display:inline-block;height:auto;word-wrap:break-word;vertical-align:middle;min-height:inherit}#onetrust-pc-sdk .ot-accordion-layout .ot-vlst-cntr,#onetrust-pc-sdk .ot-accordion-layout .ot-hlst-cntr{padding-left:20px;width:calc(100% - 20px);display:inline-block;margin-top:0;padding-bottom:2px}#onetrust-pc-sdk .ot-accordion-layout h4~.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout h4~.ot-always-active,#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-always-active{right:16px}#onetrust-pc-sdk .ot-accordion-layout h4~.ot-tgl+.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-tgl+.ot-tgl{right:88px}#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header+.ot-arw-cntr{right:10px;margin-top:-2px;left:auto}#onetrust-pc-sdk .ot-accordion-layout h4~.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout h4~.ot-always-active,#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-always-active,#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header+.ot-arw-cntr{position:absolute;top:60%;transform:translateY(-50%)}#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-always-active{position:relative;transform:none;right:0}#onetrust-pc-sdk #ot-category-title{padding-bottom:10px}#onetrust-pc-sdk .ot-pli-hdr{color:#77808e;overflow:hidden;padding-top:7.5px;padding-bottom:7.5px;width:calc(100% - 2px);border-top-left-radius:3px;border-top-right-radius:3px}#onetrust-pc-sdk .ot-pli-hdr .ot-li-title{float:right;font-size:.813em}#onetrust-pc-sdk .ot-pli-hdr span:first-child{top:50%;transform:translateY(50%);max-width:80px}#onetrust-pc-sdk .ot-pli-hdr span:last-child{text-align:center;max-width:95px}#onetrust-pc-sdk .ot-pli-hdr.ot-leg-border-color{background-color:#f8f8f8;border:1px solid #e9e9e9}#onetrust-pc-sdk .ot-pli-hdr.ot-leg-border-color span:first-child{text-align:left;width:80px}#onetrust-pc-sdk .ot-subgrp>h5,#onetrust-pc-sdk .ot-subgrp>p[aria-level="5"],#onetrust-pc-sdk .ot-cat-header{width:calc(100% - 130px);max-width:60%}#onetrust-pc-sdk .ot-pli-hdr~.ot-cat-item .ot-subgrp>h5,#onetrust-pc-sdk .ot-pli-hdr~.ot-cat-item .ot-subgrp>p[aria-level="5"],#onetrust-pc-sdk .ot-pli-hdr~.ot-cat-item .ot-cat-header{width:calc(100% - 145px)}#onetrust-pc-sdk .ot-pli-hdr~.ot-cat-item h5+.ot-tgl-cntr,#onetrust-pc-sdk .ot-pli-hdr~.ot-cat-item p[aria-level="5"]+.ot-tgl-cntr,#onetrust-pc-sdk .ot-pli-hdr~.ot-cat-item .ot-cat-header+.ot-tgl{padding-left:28px}#onetrust-pc-sdk .ot-acc-grpcntr .ot-acc-grpdesc{margin-bottom:5px}#onetrust-pc-sdk .ot-acc-grpcntr .ot-subgrp-cntr{border-top:1px solid #e9e9e9}#onetrust-pc-sdk .ot-acc-grpcntr .ot-subgrp-cntr ul.ot-subgrps li{margin-top:5px;margin-bottom:5px}#onetrust-pc-sdk .ot-acc-hdr .ot-arw-cntr+.ot-tgl,#onetrust-pc-sdk .ot-cat-item h4+.ot-tgl,#onetrust-pc-sdk .ot-acc-txt h4+.ot-tgl-cntr,#onetrust-pc-sdk .ot-cat-item p[aria-level="4"]+.ot-tgl,#onetrust-pc-sdk .ot-acc-txt p[aria-level="4"]+.ot-tgl-cntr{padding-left:30px}#onetrust-pc-sdk .ot-sel-all-hdr,#onetrust-pc-sdk .ot-sel-all-chkbox{position:relative;display:inline-block;width:100%}#onetrust-pc-sdk .ot-sel-all-chkbox{z-index:1}#onetrust-pc-sdk .ot-li-hdr,#onetrust-pc-sdk .ot-consent-hdr{float:right;font-size:.813em;line-height:normal;text-align:center;word-break:break-word;word-wrap:break-word}#onetrust-pc-sdk .ot-li-hdr{max-width:100px;min-width:100px}#onetrust-pc-sdk .ot-consent-hdr{margin-right:5px;max-width:55px}#onetrust-pc-sdk .ot-ven-litgl+.ot-arw-cntr{margin-left:81px}#onetrust-pc-sdk .ot-sel-all{margin:0;position:relative;padding-right:13px;float:right}#onetrust-pc-sdk #ot-selall-hostcntr,#onetrust-pc-sdk #ot-selall-vencntr{right:20px;position:relative}#onetrust-pc-sdk #ot-selall-licntr{position:relative;right:79px}#onetrust-pc-sdk #ot-pc-lst #ot-ven-lst .ot-sel-all{position:relative;display:inline-block;width:20px;height:25px}#onetrust-pc-sdk #ot-pc-lst #ot-ven-lst .ot-sel-all label{position:absolute;padding:0;width:18px;height:18px}#onetrust-pc-sdk .ot-always-active-group .ot-cat-header{width:55%}#onetrust-pc-sdk .ot-leg-btn-container{display:inline-block;width:100%;margin-top:10px}#onetrust-pc-sdk .ot-leg-btn-container button{height:auto;padding:6.5px 8px;margin-bottom:0;letter-spacing:0;line-height:normal}#onetrust-pc-sdk .ot-leg-btn-container svg{display:none;height:14px;width:14px;padding-right:5px;vertical-align:sub}#onetrust-pc-sdk .ot-active-leg-btn{cursor:default;pointer-events:none}#onetrust-pc-sdk .ot-active-leg-btn svg{display:inline-block}#onetrust-pc-sdk .ot-remove-objection-handler{border:none;text-decoration:underline;padding:0;font-size:.82em;font-weight:600;line-height:1.4;padding-left:10px}#onetrust-pc-sdk .ot-obj-leg-btn-handler span{font-weight:bold;text-align:center;font-size:.91em;line-height:1.5}#onetrust-pc-sdk[dir=rtl] input~.ot-acc-hdr .ot-arw,#onetrust-pc-sdk[dir=rtl] #ot-back-arw{transform:rotate(180deg);-o-transform:rotate(180deg);-ms-transform:rotate(180deg);-webkit-transform:rotate(180deg)}#onetrust-pc-sdk[dir=rtl] input:checked~.ot-acc-hdr .ot-arw{transform:rotate(270deg);-o-transform:rotate(270deg);-ms-transform:rotate(270deg);-webkit-transform:rotate(270deg)}#onetrust-pc-sdk[dir=rtl] .ot-chkbox label::after{transform:rotate(45deg);-webkit-transform:rotate(45deg);-o-transform:rotate(45deg);-ms-transform:rotate(45deg);border-left:0;border-right:3px solid}#onetrust-pc-sdk[dir=rtl] .ot-lst-subhdr svg{right:0}#onetrust-pc-sdk .ot-ven-ctgl,#onetrust-pc-sdk .ot-ven-litgl,#onetrust-pc-sdk .ot-host-tgl,#onetrust-pc-sdk .ot-ven-gvctgl{position:relative;display:inline-block;width:20px;height:20px;margin-left:60px}#onetrust-pc-sdk .ot-ven-ctgl label,#onetrust-pc-sdk .ot-ven-litgl label,#onetrust-pc-sdk .ot-host-tgl label,#onetrust-pc-sdk .ot-ven-gvctgl label{position:absolute;margin:0}#onetrust-pc-sdk #ot-host-lst .ot-host-expand{clear:both;float:none;display:block}#onetrust-pc-sdk ul{list-style:none}#onetrust-pc-sdk ul li:not(.ot-fltr-opt){position:relative;margin:0;padding:15px 15px 15px 15px;border-bottom:1px solid #e2e2e2}#onetrust-pc-sdk ul li h3,#onetrust-pc-sdk ul li h4,#onetrust-pc-sdk ul li p[aria-level="3"],#onetrust-pc-sdk ul li p[aria-level="4"]{font-size:.75em;color:#656565;margin:0;height:auto;word-break:break-word;word-wrap:break-word}#onetrust-pc-sdk ul li p:not([role=heading]){margin:0;font-size:.7em}#onetrust-pc-sdk .ot-ven-item>button:focus,#onetrust-pc-sdk .ot-host-item>button:focus,#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item>button:focus,#onetrust-pc-sdk .ot-acc-cntr>button:focus{outline:#000 solid 2px}#onetrust-pc-sdk .ot-ven-item>button,#onetrust-pc-sdk .ot-host-item>button,#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item>button,#onetrust-pc-sdk .ot-acc-cntr>button{position:absolute;cursor:pointer;width:100%;height:100%;margin:0;top:0;left:0;z-index:1;max-width:none;border:none}#onetrust-pc-sdk .ot-ven-item>button[aria-expanded=false]~.ot-acc-txt,#onetrust-pc-sdk .ot-host-item>button[aria-expanded=false]~.ot-acc-txt,#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item>button[aria-expanded=false]~.ot-acc-txt,#onetrust-pc-sdk .ot-acc-cntr>button[aria-expanded=false]~.ot-acc-txt{margin-top:0;max-height:0;overflow:hidden;width:100%;transition:.25s ease-out;display:none}#onetrust-pc-sdk .ot-ven-item>button[aria-expanded=true]~.ot-acc-txt,#onetrust-pc-sdk .ot-host-item>button[aria-expanded=true]~.ot-acc-txt,#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item>button[aria-expanded=true]~.ot-acc-txt,#onetrust-pc-sdk .ot-acc-cntr>button[aria-expanded=true]~.ot-acc-txt{transition:.1s ease-in;width:auto;overflow:auto;display:block}#onetrust-pc-sdk .ot-host-item>button:focus{outline:0;border:2px solid #000}#onetrust-pc-sdk.ot-addtl-vendors>:not(.ot-enbl-chr) #ot-selall-licntr{right:135px}#onetrust-pc-sdk.ot-addtl-vendors>:not(.ot-enbl-chr) #ot-selall-adtlvencntr,#onetrust-pc-sdk.ot-addtl-vendors>:not(.ot-enbl-chr) #ot-selall-gnvencntr{right:40px}#onetrust-pc-sdk.ot-addtl-vendors .ot-li-hdr{margin-right:15px}#onetrust-pc-sdk.ot-addtl-vendors #ot-selall-licntr{right:115px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) #ot-sel-blk{background-color:#f9f9fc;border:1px solid #e2e2e2;width:auto;padding-bottom:5px;padding-top:5px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) .ot-sel-all{padding-right:23px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) ul li{border:1px solid #e2e2e2;margin-bottom:10px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) .ot-sel-all-chkbox{float:right;width:auto;right:3px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) .ot-tgl-cntr{right:12px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) .ot-ven-ctgl{margin-left:75px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) .ot-ven-litgl+.ot-arw-cntr{margin-left:95px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) .ot-acc-cntr>.ot-acc-hdr{padding-top:10px;padding-bottom:10px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) #ot-addtl-venlst .ot-tgl-cntr{right:32px}#onetrust-pc-sdk.ot-addtl-vendors #ot-ven-lst:first-child{border-top:none}#onetrust-pc-sdk.ot-addtl-vendors #ot-selall-vencntr{right:40px;position:absolute}#onetrust-pc-sdk #ot-selall-adtlvencntr,#onetrust-pc-sdk #ot-selall-gnvencntr{position:relative;right:20px}#onetrust-pc-sdk .ot-acc-cntr{position:relative;border-left:1px solid #e2e2e2;border-right:1px solid #e2e2e2;border-bottom:1px solid #e2e2e2}#onetrust-pc-sdk .ot-acc-cntr>.ot-acc-hdr{background-color:#f9f9fc;padding-left:15px;padding-top:5px;padding-bottom:5px;width:calc(100% - 15px)}#onetrust-pc-sdk .ot-acc-cntr>.ot-acc-hdr .ot-plus-minus{vertical-align:middle;top:auto}#onetrust-pc-sdk .ot-acc-cntr>.ot-acc-hdr .ot-arw-cntr{right:10px;left:auto}#onetrust-pc-sdk .ot-acc-cntr.ot-add-tech .ot-acc-hdr{padding:10px 0 10px 15px}#onetrust-pc-sdk .ot-acc-cntr>button[aria-expanded=true]~.ot-acc-hdr{border-bottom:1px solid #e2e2e2}#onetrust-pc-sdk .ot-acc-cntr>.ot-acc-txt{padding-left:10px;padding-right:10px;padding-top:10px;position:relative;z-index:1}#onetrust-pc-sdk .ot-acc-cntr .ot-addtl-venbox{display:none}#onetrust-pc-sdk .ot-vensec-title{font-size:.813em;vertical-align:middle;display:inline-block}#onetrust-pc-sdk.ot-close-btn-link #close-pc-btn-handler{border:none;height:auto;line-height:1.5;text-decoration:underline;font-size:.69em;background:none;right:15px;top:15px;width:auto;position:absolute;font-weight:normal}#onetrust-pc-sdk .ot-cat-header{float:left;font-weight:600;font-size:.875em;line-height:1.5;max-width:90%;vertical-align:middle}#onetrust-pc-sdk .ot-vnd-item>button:focus{outline:#000 solid 2px}#onetrust-pc-sdk .ot-vnd-item>button{position:absolute;cursor:pointer;width:100%;height:100%;margin:0;top:0;left:0;z-index:1;max-width:none;border:none}#onetrust-pc-sdk .ot-vnd-item>button[aria-expanded=false]~.ot-acc-txt{margin-top:0;max-height:0;opacity:0;overflow:hidden;width:100%;transition:.25s ease-out;display:none}#onetrust-pc-sdk .ot-vnd-item>button[aria-expanded=true]~.ot-acc-txt{transition:.1s ease-in;margin-top:10px;width:100%;overflow:auto;display:block}#onetrust-pc-sdk .ot-vnd-item>button[aria-expanded=true]~.ot-acc-grpcntr{width:auto;margin-top:0px;padding-bottom:10px}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item{position:relative;border-radius:2px;margin:0;padding:0;border:1px solid #d8d8d8;border-top:none;width:calc(100% - 2px);float:left}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item:first-of-type{margin-top:10px;border-top:1px solid #d8d8d8}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpdesc{padding-left:20px;padding-right:20px;width:calc(100% - 40px);font-size:.812em;margin-bottom:10px;margin-top:15px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpdesc>ul{padding-top:10px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpdesc>ul li{padding-top:0;line-height:1.5;padding-bottom:10px}#onetrust-pc-sdk .ot-accordion-layout div+.ot-acc-grpdesc{margin-top:5px}#onetrust-pc-sdk .ot-accordion-layout .ot-vlst-cntr:first-child{margin-top:10px}#onetrust-pc-sdk .ot-accordion-layout .ot-vlst-cntr:last-child,#onetrust-pc-sdk .ot-accordion-layout .ot-hlst-cntr:last-child{margin-bottom:5px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-hdr{padding-top:11.5px;padding-bottom:11.5px;padding-left:20px;padding-right:20px;width:calc(100% - 40px);display:inline-block}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-txt{width:100%;padding:0}#onetrust-pc-sdk .ot-accordion-layout .ot-subgrp-cntr{padding-left:20px;padding-right:15px;padding-bottom:0;width:calc(100% - 35px)}#onetrust-pc-sdk .ot-accordion-layout .ot-subgrp{padding-right:5px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpcntr{z-index:1;position:relative}#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header+.ot-arw-cntr{position:absolute;top:50%;transform:translateY(-50%);right:20px;margin-top:-2px}#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header+.ot-arw-cntr .ot-arw{width:15px;height:20px;margin-left:5px;color:dimgray}#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header{float:none;color:#2e3644;margin:0;display:inline-block;height:auto;word-wrap:break-word;min-height:inherit}#onetrust-pc-sdk .ot-accordion-layout .ot-vlst-cntr,#onetrust-pc-sdk .ot-accordion-layout .ot-hlst-cntr{padding-left:20px;width:calc(100% - 20px);display:inline-block;margin-top:0;padding-bottom:2px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-hdr{position:relative;min-height:25px}#onetrust-pc-sdk .ot-accordion-layout h4~.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout h4~.ot-always-active{position:absolute;top:50%;transform:translateY(-50%);right:20px}#onetrust-pc-sdk .ot-accordion-layout h4~.ot-tgl+.ot-tgl{right:95px}#onetrust-pc-sdk .ot-accordion-layout .category-vendors-list-handler,#onetrust-pc-sdk .ot-accordion-layout .category-vendors-list-handler+a{margin-top:5px}#onetrust-pc-sdk #ot-pc-lst{display:flex;flex-direction:column}#onetrust-pc-sdk #ot-lst-cnt{margin-top:1rem;max-height:calc(100% - 100px)}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info-cntr{border:1px solid #d8d8d8;padding:.75rem 2rem;padding-bottom:0;width:auto;margin-top:.5rem}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info{margin-bottom:1rem;padding-left:.75rem;padding-right:.75rem;display:flex;flex-direction:column}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info>div{display:flex}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info[data-vnd-info-key*=DPOEmail]{border-top:1px solid #d8d8d8;padding-top:1rem}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info[data-vnd-info-key*=DPOLink]{border-bottom:1px solid #d8d8d8;padding-bottom:1rem}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info .ot-vnd-lbl{font-weight:bold;font-size:.85em;margin-bottom:.5rem}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info .ot-vnd-cnt{margin-left:.5rem;font-weight:500;font-size:.85rem}#onetrust-pc-sdk .ot-vs-list,#onetrust-pc-sdk .ot-vnd-serv{width:auto;padding:1rem 1.25rem;padding-bottom:0}#onetrust-pc-sdk .ot-vs-list .ot-vnd-serv-hdr-cntr,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-serv-hdr-cntr{padding-bottom:.75rem;border-bottom:1px solid #d8d8d8}#onetrust-pc-sdk .ot-vs-list .ot-vnd-serv-hdr-cntr .ot-vnd-serv-hdr,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-serv-hdr-cntr .ot-vnd-serv-hdr{font-weight:600;font-size:.95em;line-height:2;margin-left:.5rem}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item{border:none;margin:0;padding:0}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item button,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item button{outline:none;border-bottom:1px solid #d8d8d8}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item button[aria-expanded=true],#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item button[aria-expanded=true]{border-bottom:none}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item:first-child,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item:first-child{margin-top:.25rem;border-top:unset}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item:last-child,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item:last-child{margin-bottom:.5rem}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item:last-child button,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item:last-child button{border-bottom:none}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info-cntr,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info-cntr{border:1px solid #d8d8d8;padding:.75rem 1.75rem;padding-bottom:0;width:auto;margin-top:.5rem}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info{margin-bottom:1rem;padding-left:.75rem;padding-right:.75rem;display:flex;flex-direction:column}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info>div,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info>div{display:flex}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info[data-vnd-info-key*=DPOEmail],#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info[data-vnd-info-key*=DPOEmail]{border-top:1px solid #d8d8d8;padding-top:1rem}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info[data-vnd-info-key*=DPOLink],#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info[data-vnd-info-key*=DPOLink]{border-bottom:1px solid #d8d8d8;padding-bottom:1rem}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info .ot-vnd-lbl,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info .ot-vnd-lbl{font-weight:bold;font-size:.85em;margin-bottom:.5rem}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info .ot-vnd-cnt,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info .ot-vnd-cnt{margin-left:.5rem;font-weight:500;font-size:.85rem}#onetrust-pc-sdk .ot-vs-list.ot-vnd-subgrp-cnt,#onetrust-pc-sdk .ot-vnd-serv.ot-vnd-subgrp-cnt{padding-left:40px}#onetrust-pc-sdk .ot-vs-list.ot-vnd-subgrp-cnt .ot-vnd-serv-hdr-cntr .ot-vnd-serv-hdr,#onetrust-pc-sdk .ot-vnd-serv.ot-vnd-subgrp-cnt .ot-vnd-serv-hdr-cntr .ot-vnd-serv-hdr{font-size:.8em}#onetrust-pc-sdk .ot-vs-list.ot-vnd-subgrp-cnt .ot-cat-header,#onetrust-pc-sdk .ot-vnd-serv.ot-vnd-subgrp-cnt .ot-cat-header{font-size:.8em}#onetrust-pc-sdk .ot-subgrp-cntr .ot-vnd-serv{margin-bottom:1rem;padding:1rem .95rem}#onetrust-pc-sdk .ot-subgrp-cntr .ot-vnd-serv .ot-vnd-serv-hdr-cntr{padding-bottom:.75rem;border-bottom:1px solid #d8d8d8}#onetrust-pc-sdk .ot-subgrp-cntr .ot-vnd-serv .ot-vnd-serv-hdr-cntr .ot-vnd-serv-hdr{font-weight:700;font-size:.8em;line-height:20px;margin-left:.82rem}#onetrust-pc-sdk .ot-subgrp-cntr .ot-cat-header{font-weight:700;font-size:.8em;line-height:20px}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-vnd-serv .ot-vnd-lst-cont .ot-accordion-layout .ot-acc-hdr div.ot-chkbox{margin-left:.82rem}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr{padding:.7rem 0;margin:0;display:flex;width:100%;align-items:center;justify-content:space-between}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr div:first-child,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr div:first-child,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr div:first-child,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr div:first-child,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr div:first-child,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr div:first-child,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr div:first-child{margin-left:.5rem}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr div:last-child,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr div:last-child,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr div:last-child,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr div:last-child,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr div:last-child,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr div:last-child,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr div:last-child{margin-right:.5rem;margin-left:.5rem}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-always-active,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-always-active,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-always-active,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-always-active,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-always-active,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-always-active,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-always-active{position:relative;right:unset;top:unset;transform:unset}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-plus-minus,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-plus-minus,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-plus-minus,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-plus-minus,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-plus-minus,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-plus-minus,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-plus-minus{top:0}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-arw-cntr,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-arw-cntr,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-arw-cntr,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-arw-cntr,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-arw-cntr,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-arw-cntr,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-arw-cntr{float:none;top:unset;right:unset;transform:unset;margin-top:-2px;position:relative}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-cat-header,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-cat-header,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-cat-header,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-cat-header,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-cat-header,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-cat-header,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-cat-header{flex:1;margin:0 .5rem}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-tgl,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-tgl,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-tgl,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-tgl,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-tgl,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-tgl,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-tgl{position:relative;transform:none;right:0;top:0;float:none}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-chkbox,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-chkbox,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-chkbox,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-chkbox,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-chkbox{position:relative;margin:0 .5rem}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-chkbox label,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-chkbox label,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-chkbox label,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox label,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-chkbox label,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox label,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-chkbox label{padding:0}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-chkbox label::before,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-chkbox label::before,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-chkbox label::before,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox label::before,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-chkbox label::before,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox label::before,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-chkbox label::before{position:relative}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-chkbox input,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-chkbox input,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-chkbox input,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox input,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-chkbox input,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox input,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-chkbox input{position:absolute;cursor:pointer;width:100%;height:100%;opacity:0;margin:0;top:0;left:0;z-index:1}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp .ot-acc-hdr h5.ot-cat-header,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp .ot-acc-hdr h4.ot-cat-header,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp .ot-acc-hdr p[aria-level="5"].ot-cat-header,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp .ot-acc-hdr p[aria-level="4"].ot-cat-header{margin:0}#onetrust-pc-sdk .ot-vs-config .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp h5,#onetrust-pc-sdk .ot-vs-config .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp p[aria-level="5"]{top:0;line-height:20px}#onetrust-pc-sdk .ot-vs-list{display:flex;flex-direction:column;padding:0;margin:.5rem 4px}#onetrust-pc-sdk .ot-vs-selc-all{display:flex;padding:0;float:unset;align-items:center;justify-content:flex-start}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf{justify-content:flex-end}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf.ot-caret-conf .ot-sel-all-chkbox{margin-right:48px}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf .ot-sel-all-chkbox{margin:0;padding:0;margin-right:14px;justify-content:flex-end}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf #ot-selall-vencntr.ot-chkbox,#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf #ot-selall-vencntr.ot-tgl{display:inline-block;right:unset;width:auto;height:auto;float:none}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf #ot-selall-vencntr label{width:45px;height:25px}#onetrust-pc-sdk .ot-vs-selc-all .ot-sel-all-chkbox{margin-right:11px;margin-left:.75rem;display:flex;align-items:center}#onetrust-pc-sdk .ot-vs-selc-all .sel-all-hdr{margin:0 1.25rem;font-size:.812em;line-height:normal;text-align:center;word-break:break-word;word-wrap:break-word}#onetrust-pc-sdk .ot-vnd-list-cnt #ot-selall-vencntr.ot-chkbox{float:unset;right:0}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf.ot-caret-conf .ot-sel-all-chkbox{margin-right:.5rem}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf .ot-sel-all-chkbox{margin-right:15px}#onetrust-pc-sdk #ot-sel-blk .ot-chkbox{right:unset}#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-tgl{padding:0}#onetrust-pc-sdk .ot-vs-list{margin-top:.5rem}#onetrust-pc-sdk .ot-pgph-link{font-size:.813em;margin-top:5px;position:relative}#onetrust-pc-sdk .ot-pgph-link.ot-pgph-link-subgroup{margin-bottom:1rem;clear:both;display:block}#onetrust-pc-sdk .ot-pgph-contr{margin:0 2.5rem}#onetrust-pc-sdk .ot-pgph-title{font-size:1.18rem;margin-bottom:2rem}#onetrust-pc-sdk .ot-pgph-desc{font-size:1rem;font-weight:400;margin-bottom:2rem;line-height:1.5rem}#onetrust-pc-sdk .ot-pgph-desc:not(:last-child):after{content:"";width:96%;display:block;margin:0 auto;padding-bottom:2rem;border-bottom:1px solid #e9e9e9}@media(min-width: 768px){#onetrust-pc-sdk.ot-tgl-with-label .ot-label-status{display:inline}#onetrust-pc-sdk.ot-tgl-with-label #ot-pc-lst .ot-label-status{display:none}}@media only screen and (max-width: 600px){#onetrust-pc-sdk{max-width:100%;min-width:100%}#onetrust-pc-sdk .ot-ftr-stacked button{width:100%}#onetrust-pc-sdk #ot-lst-cnt,#onetrust-pc-sdk #ot-pc-hdr{margin-top:0;padding:0 5px 0 10px;width:calc(100% - 25px)}#onetrust-pc-sdk .ot-btn-container.ot-button-order-container{height:100%;display:flex;flex-direction:column;justify-content:space-around}#onetrust-pc-sdk .ot-btn-container.ot-button-order-container .ot-pc-refuse-all-handler,#onetrust-pc-sdk .ot-btn-container.ot-button-order-container .save-preference-btn-handler,#onetrust-pc-sdk .ot-btn-container.ot-button-order-container #accept-recommended-btn-handler{width:100%;float:none !important;margin:0 !important}}@media only screen and (max-width: 425px){#onetrust-pc-sdk.otPcPanel{left:0;min-width:100%;height:100%;top:0;border-radius:0}#onetrust-pc-sdk #ot-host-lst .ot-chkbox{margin-left:0}#onetrust-pc-sdk #ot-pc-content{margin:0 10px 0 20px}#onetrust-pc-sdk p{font-size:.7em}#onetrust-pc-sdk .ot-tgl-cntr{width:auto}#onetrust-pc-sdk #vendor-search-handler{font-size:1em}#onetrust-pc-sdk #ot-lst-cnt{height:calc(100% - 95px)}#onetrust-pc-sdk .ot-switch+p{max-width:80%}#onetrust-pc-sdk button{letter-spacing:.01em}#onetrust-pc-sdk .save-preference-btn-handler{margin-top:0}#onetrust-pc-sdk .ot-search-cntr{width:75%}}@media only screen and (max-width: 320px){#onetrust-pc-sdk #ot-fltr-cnt{margin-left:15px}}@media only screen and (max-width: 896px)and (max-height: 425px)and (orientation: landscape){#onetrust-pc-sdk{left:0;top:0;min-width:100%;height:100%;border-radius:0}#onetrust-pc-sdk .ot-pc-header{height:auto;min-height:20px}#onetrust-pc-sdk .ot-pc-header .ot-pc-logo{max-height:30px}#onetrust-pc-sdk .ot-pc-footer{max-height:90px;height:100%}#onetrust-pc-sdk .ot-pc-footer .ot-btn-container{overflow-y:auto;overflow-x:hidden;max-height:calc(100% - 30px)}#onetrust-pc-sdk #ot-pc-content,#onetrust-pc-sdk #ot-pc-lst{bottom:auto;height:auto !important}#onetrust-pc-sdk.ot-ftr-stacked #ot-pc-content{bottom:auto}#onetrust-pc-sdk button{letter-spacing:.02em}#onetrust-pc-sdk #ot-anchor{left:initial;right:50px}#onetrust-pc-sdk #ot-lst-title{margin-top:12px}#onetrust-pc-sdk #ot-lst-title *{font-size:inherit}#onetrust-pc-sdk #ot-pc-hdr input{margin-right:0;padding-right:45px}#onetrust-pc-sdk .ot-switch+p{max-width:85%}#onetrust-pc-sdk #ot-lst-cnt{max-height:none;overflow:initial}#onetrust-pc-sdk #ot-lst-cnt.no-results{height:auto}#onetrust-pc-sdk input{font-size:1em !important}#onetrust-pc-sdk p{font-size:.6em}#onetrust-pc-sdk #ot-pc-lst{overflow:auto}#onetrust-pc-sdk #ot-fltr-modal{width:100%;height:100%;max-height:none;top:0}#onetrust-pc-sdk #ot-sel-blk{position:static}#onetrust-pc-sdk #ot-fltr-cnt{height:250px;width:100%}#onetrust-pc-sdk.ot-shw-fltr #ot-anchor{display:none !important}#onetrust-pc-sdk.ot-shw-fltr #ot-pc-lst{height:100% !important;overflow:hidden;top:0px}#onetrust-pc-sdk.ot-shw-fltr #ot-fltr-cnt{margin:0;height:100%;padding:10px;top:0;width:calc(100% - 20px);position:absolute;right:0;left:0;max-width:none}#onetrust-pc-sdk.ot-shw-fltr .ot-fltr-scrlcnt{max-height:calc(100% - 65px)}}@media screen and (max-height: 450px){#onetrust-pc-sdk .ot-pc-header{max-height:15vh;overflow:hidden}#onetrust-pc-sdk .ot-pc-footer{max-height:min(var(--ot-footer-space),30vh) !important;overflow-y:auto;scrollbar-gutter:stable;box-sizing:border-box}#onetrust-pc-sdk .ot-pc-footer .ot-btn-container{overflow-y:visible !important;max-height:none !important}#onetrust-pc-sdk #ot-pc-content{flex:1 1 auto;min-height:20vh}} | |
| 218 | + #onetrust-consent-sdk #onetrust-pc-sdk, | |
| 219 | + #onetrust-consent-sdk #ot-search-cntr, | |
| 220 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-switch.ot-toggle, | |
| 221 | + #onetrust-consent-sdk #onetrust-pc-sdk ot-grp-hdr1 .checkbox, | |
| 222 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-title:after | |
| 223 | + ,#onetrust-consent-sdk #onetrust-pc-sdk #ot-sel-blk, | |
| 224 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-fltr-cnt, | |
| 225 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-anchor { | |
| 226 | + background-color: #FFFFFF; | |
| 227 | + } | |
| 228 | + | |
| 229 | + #onetrust-consent-sdk #onetrust-pc-sdk h3, | |
| 230 | + #onetrust-consent-sdk #onetrust-pc-sdk h4, | |
| 231 | + #onetrust-consent-sdk #onetrust-pc-sdk h5, | |
| 232 | + #onetrust-consent-sdk #onetrust-pc-sdk h6, | |
| 233 | + #onetrust-consent-sdk #onetrust-pc-sdk p, | |
| 234 | + #onetrust-consent-sdk #onetrust-pc-sdk span[id^="ot-header-id"], | |
| 235 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pvcy-txt, | |
| 236 | + #onetrust-consent-sdk #onetrust-pc-sdk #privacy-text, | |
| 237 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-ven-lst .ot-ven-opts p, | |
| 238 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-desc, | |
| 239 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-title, | |
| 240 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-title-mobile, | |
| 241 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-li-title, | |
| 242 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-sel-all-hdr span, | |
| 243 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-host-lst .ot-host-info, | |
| 244 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-fltr-modal #modal-header, | |
| 245 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-checkbox label span, | |
| 246 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst #ot-sel-blk p, | |
| 247 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst #ot-lst-title h3, | |
| 248 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst #ot-lst-title p[aria-level="3"], | |
| 249 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst .back-btn-handler p, | |
| 250 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst .ot-ven-name, | |
| 251 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst #ot-ven-lst .consent-category, | |
| 252 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-leg-btn-container .ot-inactive-leg-btn, | |
| 253 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-label-status, | |
| 254 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-chkbox label span, | |
| 255 | + #onetrust-consent-sdk #onetrust-pc-sdk #clear-filters-handler, | |
| 256 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-optout-signal, | |
| 257 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-title, | |
| 258 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-desc | |
| 259 | + { | |
| 260 | + color: #000000; | |
| 261 | + } | |
| 262 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-cancel | |
| 263 | + { | |
| 264 | + color: #000000 !important; | |
| 265 | + } | |
| 266 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-close-btn, | |
| 267 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-submit | |
| 268 | + { | |
| 269 | + color: #FFFFFF !important; | |
| 270 | + } | |
| 271 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-cancel | |
| 272 | + { | |
| 273 | + border-color: #000000 !important; | |
| 274 | + } | |
| 275 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-email | |
| 276 | + { | |
| 277 | + border-color: #000000 !important; | |
| 278 | + background-color: rgb(255, 255, 255); | |
| 279 | + } | |
| 280 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-email:focus | |
| 281 | + { | |
| 282 | + border-color: #000000; | |
| 283 | + } | |
| 284 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-email::placeholder | |
| 285 | + { | |
| 286 | + color: #000000; | |
| 287 | + } | |
| 288 | + #onetrust-consent-sdk #onetrust-pc-sdk .privacy-notice-link, | |
| 289 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-pgph-link, | |
| 290 | + #onetrust-consent-sdk #onetrust-pc-sdk .category-vendors-list-handler, | |
| 291 | + #onetrust-consent-sdk #onetrust-pc-sdk .category-vendors-list-handler + a, | |
| 292 | + #onetrust-consent-sdk #onetrust-pc-sdk .category-host-list-handler, | |
| 293 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-ven-link, | |
| 294 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-ven-legclaim-link, | |
| 295 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-host-lst .ot-host-name a, | |
| 296 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-host-lst .ot-acc-hdr .ot-host-expand, | |
| 297 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-host-lst .ot-host-info a, | |
| 298 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-content #ot-pc-desc .ot-link-btn, | |
| 299 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info a, | |
| 300 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info a, | |
| 301 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-desc a | |
| 302 | + { | |
| 303 | + color: #000000; | |
| 304 | + } | |
| 305 | + #onetrust-consent-sdk #onetrust-pc-sdk .category-vendors-list-handler:hover { text-decoration: underline;} | |
| 306 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-acc-grpcntr.ot-acc-txt, | |
| 307 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-acc-txt .ot-subgrp-tgl .ot-switch.ot-toggle | |
| 308 | + { | |
| 309 | + background-color: #F8F8F8; | |
| 310 | + } | |
| 311 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-host-lst .ot-host-info, | |
| 312 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-acc-txt .ot-ven-dets | |
| 313 | + { | |
| 314 | + background-color: #F8F8F8; | |
| 315 | + } | |
| 316 | + #onetrust-consent-sdk #onetrust-pc-sdk | |
| 317 | + button:not(#clear-filters-handler):not(.ot-close-icon):not(#filter-btn-handler):not(.ot-remove-objection-handler):not(.ot-obj-leg-btn-handler):not([aria-expanded]):not(.ot-link-btn):not(.ot-go-modal-cancel):not(.ot-go-modal-close), | |
| 318 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-leg-btn-container .ot-active-leg-btn { | |
| 319 | + background-color: #00467f;border-color: #00467f; | |
| 320 | + color: #FFFFFF; | |
| 321 | + } | |
| 322 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-active-menu { | |
| 323 | + border-color: #00467f; | |
| 324 | + } | |
| 325 | + | |
| 326 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-leg-btn-container .ot-remove-objection-handler{ | |
| 327 | + background-color: transparent; | |
| 328 | + border: 1px solid transparent; | |
| 329 | + } | |
| 330 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-leg-btn-container .ot-inactive-leg-btn { | |
| 331 | + background-color: #FFFFFF; | |
| 332 | + color: #4D4D4D; border-color: #4D4D4D; | |
| 333 | + }#onetrust-consent-sdk #onetrust-pc-sdk .ot-tgl input:checked+.ot-switch .ot-switch-nob { | |
| 334 | + background-color: #468254; | |
| 335 | + } | |
| 336 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-switch-nob { | |
| 337 | + background-color: #767676; | |
| 338 | + } | |
| 339 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-tgl input:focus + .ot-switch, .ot-switch .ot-switch-nob, .ot-switch .ot-switch-nob:before, | |
| 340 | + #onetrust-pc-sdk .ot-checkbox input[type="checkbox"]:focus + label::before, | |
| 341 | + #onetrust-pc-sdk .ot-chkbox input[type="checkbox"]:focus + label::before { | |
| 342 | + outline-color: #000000; | |
| 343 | + outline-width: 1px; | |
| 344 | + outline-offset: 1px; | |
| 345 | + } | |
| 346 | + #onetrust-pc-sdk .ot-host-item > button:focus, #onetrust-pc-sdk .ot-ven-item > button:focus { | |
| 347 | + border: 1px solid #000000; | |
| 348 | + } | |
| 349 | + #onetrust-consent-sdk #onetrust-pc-sdk *:focus, | |
| 350 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-vlst-cntr > a:focus { | |
| 351 | + outline: 1px solid #000000; | |
| 352 | + outline-offset: 1px; | |
| 353 | + }#ot-sdk-btn-floating .ot-floating-button__front {background-color: #00467f !important;}.ot-sdk-cookie-policy{font-family:inherit;font-size:16px}.ot-sdk-cookie-policy.otRelFont{font-size:1rem}.ot-sdk-cookie-policy h3,.ot-sdk-cookie-policy h4,.ot-sdk-cookie-policy h6,.ot-sdk-cookie-policy p,.ot-sdk-cookie-policy li,.ot-sdk-cookie-policy a,.ot-sdk-cookie-policy th,.ot-sdk-cookie-policy #cookie-policy-description,.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group,.ot-sdk-cookie-policy #cookie-policy-title{color:dimgray}.ot-sdk-cookie-policy #cookie-policy-description{margin-bottom:1em}.ot-sdk-cookie-policy h4{font-size:1.2em}.ot-sdk-cookie-policy h6{font-size:1em;margin-top:2em}.ot-sdk-cookie-policy th{min-width:75px}.ot-sdk-cookie-policy a,.ot-sdk-cookie-policy a:hover{background:#fff}.ot-sdk-cookie-policy thead{background-color:#f6f6f4;font-weight:bold}.ot-sdk-cookie-policy .ot-mobile-border{display:none}.ot-sdk-cookie-policy section{margin-bottom:2em}.ot-sdk-cookie-policy table{border-collapse:inherit}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy{font-family:inherit;font-size:1rem}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h3,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h4,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h6,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy p,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy li,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy th,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-description,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-title{color:dimgray}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-description{margin-bottom:1em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-subgroup{margin-left:1.5em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-description,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group-desc,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-table-header,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy span,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td{font-size:.9em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td span,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td a{font-size:inherit}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group{font-size:1em;margin-bottom:.6em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-title{margin-bottom:1.2em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy>section{margin-bottom:1em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy th{min-width:75px}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a:hover{background:#fff}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy thead{background-color:#f6f6f4;font-weight:bold}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-mobile-border{display:none}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy section{margin-bottom:2em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-subgroup ul li{list-style:disc;margin-left:1.5em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-subgroup ul li h4{display:inline-block}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table{border-collapse:inherit;margin:auto;border:1px solid #d7d7d7;border-radius:5px;border-spacing:initial;width:100%;overflow:hidden}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table th,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table td{border-bottom:1px solid #d7d7d7;border-right:1px solid #d7d7d7}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr:last-child td{border-bottom:0px}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr th:last-child,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr td:last-child{border-right:0px}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table .ot-host,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table .ot-cookies-type{width:25%}.ot-sdk-cookie-policy[dir=rtl]{text-align:left}#ot-sdk-cookie-policy h3{font-size:1.5em}@media only screen and (max-width: 530px){.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) table,.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) thead,.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tbody,.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) th,.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) td,.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tr{display:block}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) thead tr{position:absolute;top:-9999px;left:-9999px}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tr{margin:0 0 1em 0}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tr:nth-child(odd),.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tr:nth-child(odd) a{background:#f6f6f4}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) td{border:none;border-bottom:1px solid #eee;position:relative;padding-left:50%}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) td:before{position:absolute;height:100%;left:6px;width:40%;padding-right:10px}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) .ot-mobile-border{display:inline-block;background-color:#e4e4e4;position:absolute;height:100%;top:0;left:45%;width:2px}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) td:before{content:attr(data-label);font-weight:bold}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) li{word-break:break-word;word-wrap:break-word}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table{overflow:hidden}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table td{border:none;border-bottom:1px solid #d7d7d7}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy thead,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy tbody,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy th,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy tr{display:block}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table .ot-host,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table .ot-cookies-type{width:auto}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy tr{margin:0 0 1em 0}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td:before{height:100%;width:40%;padding-right:10px}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td:before{content:attr(data-label);font-weight:bold}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy li{word-break:break-word;word-wrap:break-word}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy thead tr{position:absolute;top:-9999px;left:-9999px;z-index:-9999}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr:last-child td{border-bottom:1px solid #d7d7d7;border-right:0px}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr:last-child td:last-child{border-bottom:0px}} | |
| 354 | + | |
| 355 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h5, | |
| 356 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h6, | |
| 357 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy li, | |
| 358 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy p, | |
| 359 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a, | |
| 360 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy span, | |
| 361 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td, | |
| 362 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-description { | |
| 363 | + color: #696969; | |
| 364 | + } | |
| 365 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy th { | |
| 366 | + color: #696969; | |
| 367 | + } | |
| 368 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group { | |
| 369 | + color: #696969; | |
| 370 | + } | |
| 371 | + | |
| 372 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-title { | |
| 373 | + color: #696969; | |
| 374 | + } | |
| 375 | + | |
| 376 | + | |
| 377 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table th { | |
| 378 | + background-color: #F8F8F8; | |
| 379 | + } | |
| 380 | + | |
| 381 | + .ot-floating-button__front{background-image:url('https://cdn.cookielaw.org/logos/4e85079a-4e3a-4ba5-a0ac-b85ac51e9d47/8af65b67-6f9c-4e8b-ba65-66a5ba202e28/07fc66da-1dcf-4ee3-bcc3-3d076d98b1b9/ot_persistent_cookie_transparent.png')} | |
| 382 | + @keyframes slide-down-custom { | |
| 383 | + 0% { | |
| 384 | + bottom: 782px !important; | |
| 385 | + } | |
| 386 | + 100% { | |
| 387 | + bottom: 0px; | |
| 388 | + } | |
| 389 | + } | |
| 390 | + @-webkit-keyframes slide-down-custom { | |
| 391 | + 0% { | |
| 392 | + bottom: 782px !important; | |
| 393 | + } | |
| 394 | + 100% { | |
| 395 | + bottom: 0px; | |
| 396 | + } | |
| 397 | + } | |
| 398 | + @-moz-keyframes slide-down-custom { | |
| 399 | + 0% { | |
| 400 | + bottom: 782px !important; | |
| 401 | + } | |
| 402 | + 100% { | |
| 403 | + bottom: 0px; | |
| 404 | + } | |
| 405 | + } | |
| 406 | + #ot-sdk-btn-floating.ot-floating-button{position:fixed;bottom:10px;opacity:0;width:50px;height:50px;line-height:15px;cursor:pointer;background-color:rgba(0,0,0,0);transition:all 300ms ease;z-index:2147483646;animation:otFloatingBtnIntro 800ms ease 0ms 1 forwards}#ot-sdk-btn-floating.ot-floating-button.ot-hide{display:none}#ot-sdk-btn-floating.ot-floating-button::before,#ot-sdk-btn-floating.ot-floating-button::after{text-transform:none;line-height:1;user-select:none;pointer-events:none;position:absolute;transform:scale(0);opacity:0;transition:all 300ms ease;display:block;height:auto}#ot-sdk-btn-floating.ot-floating-button::before{content:"";border:5px solid rgba(0,0,0,0);z-index:1001;top:50%;border-left-width:0;border-right-color:#333;right:calc(0em - 5px);transform:translate(10px, -50%)}#ot-sdk-btn-floating.ot-floating-button::after{content:attr(data-title);position:absolute;text-align:center;top:50%;left:calc(100% + 5px);transform:translate(10px, -50%);font-size:.75rem;min-width:3em;max-width:21em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding:5px;border-radius:.3ch;box-shadow:0 1em 2em -0.5em rgba(0,0,0,.35);background:#333;color:#fff;z-index:2147483645}#ot-sdk-btn-floating.ot-floating-button:hover::before,#ot-sdk-btn-floating.ot-floating-button:hover::after{opacity:1}#ot-sdk-btn-floating.ot-floating-button:hover::before{transform:translate(0.5em, -50%) scale(1)}#ot-sdk-btn-floating.ot-floating-button:hover::after{transform:translate(0.5em, -50%) scale(1)}#ot-sdk-btn-floating.ot-floating-button.ot-pc-open .ot-floating-button__front{transform:rotateY(-180deg)}#ot-sdk-btn-floating.ot-floating-button.ot-pc-open .ot-floating-button__back{transform:rotateY(0)}#ot-sdk-btn-floating .ot-floating-button__front,#ot-sdk-btn-floating .ot-floating-button__back{position:absolute;width:100%;height:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:#6aaae4;border-radius:10px;box-shadow:0 4px 8px 0 rgba(0,0,0,.2);transition:transform .6s;transform-style:preserve-3d}#ot-sdk-btn-floating .ot-floating-button__front{background-color:#6aaae4;transform:rotateY(0)}#ot-sdk-btn-floating .ot-floating-button__front.custom-persistent-icon{background-position:center center;background-repeat:no-repeat;background-size:100%;border-radius:100px}#ot-sdk-btn-floating .ot-floating-button__front svg:not(.ot-source-sprite){width:30px;height:37px}#ot-sdk-btn-floating .ot-floating-button__front svg.ot-source-sprite{width:50px;height:50px}#ot-sdk-btn-floating .ot-floating-button__back{background-color:#fff;transform:rotateY(-180deg)}#ot-sdk-btn-floating .ot-floating-button__back.custom-persistent-icon{background-position:center center;background-repeat:no-repeat;background-size:100%;border-radius:100px}#ot-sdk-btn-floating .ot-floating-button__back svg{width:24px;height:24px}#ot-sdk-btn-floating.ot-floating-button button{padding:0;background-color:rgba(0,0,0,0);border:0;width:100%;height:100%;cursor:pointer}#ot-sdk-btn-floating.ot-floating-button button>*{pointer-events:none}#ot-sdk-btn-floating .ot-optout-ntfy{position:absolute;top:50%;left:calc(100% + 10px);transform:translateY(-50%) scale(0);opacity:0;display:flex;align-items:center;gap:8px;font-size:.85rem;white-space:nowrap;padding:10px 16px;border-radius:6px;border:1px solid #d4d4d4;background:#fff;color:#333;z-index:2147483645;pointer-events:none;transition:all 300ms ease}#ot-sdk-btn-floating .ot-optout-ntfy.ot-hide{display:none}#ot-sdk-btn-floating .ot-optout-ntfy.ot-ntfy-show{opacity:1;transform:translateY(-50%) scale(1)}#ot-sdk-btn-floating .ot-optout-ntfy .ot-optout-ntfy-icon{display:inline-block;width:12px;height:12px;min-width:12px;background-color:#3d8539;border-radius:2px}#ot-sdk-btn-floating .ot-optout-ntfy .ot-optout-ntfy-icon.ot-optout-not-honored{display:inline-block;width:12px;height:12px;background-color:rgba(0,0,0,0);border:1px solid #d4d4d4;border-left:2px solid #3d8539;border-radius:0}#ot-sdk-btn-floating .ot-optout-ntfy .ot-optout-ntfy-txt{font-weight:400;line-height:1.4}#ot-sdk-btn-floating.ot-floating-button.ot-ntfy-active::before,#ot-sdk-btn-floating.ot-floating-button.ot-ntfy-active::after{display:none}@keyframes otFloatingBtnIntro{0%{opacity:0;left:-75px}100%{opacity:1;left:1%}}@keyframes otFloatingBtnImageIntro{0%{opacity:0;transform:scale(0) rotate(-270deg)}100%{opacity:100%;transform:scale(0.95) rotate(0deg)}}</style> | |
| 407 | + | |
| 408 | + | |
| 409 | + | |
| 410 | + | |
| 411 | +<script>window.ysi.customlabels = {"City, Post Code, Address, Property Name":"Find your home","English - United States":"English","French - Canada":"French"}; </script><script src="chrome-extension://liecbddmkiiihnedobmlmillhodjkdmb/js/recordConsoleEvents.js"></script></head> | |
| 412 | +<body id="propertydetail" class="enhanced"> | |
| 413 | + | |
| 414 | + | |
| 415 | +<!-- Google Tag Manager (noscript) --> | |
| 416 | +<noscript> | |
| 417 | + <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TL4S4ZL" height="0" width="0" style="display:none;visibility:hidden" customlabelreplaced=""></iframe> | |
| 418 | +</noscript> | |
| 419 | +<!-- End Google Tag Manager (noscript) --> | |
| 420 | + | |
| 421 | + | |
| 422 | + | |
| 423 | + | |
| 424 | + | |
| 425 | + | |
| 426 | + | |
| 427 | + <style>#acsWidget{position:fixed;z-index:1038;bottom:15px;padding:0;margin:0;background:transparent;border:none;left:15px}#acsWidget.widget-right{left:auto;right:11px}</style> | |
| 428 | + | |
| 429 | + | |
| 430 | + <!-- Accessibility Button --> | |
| 431 | + <div id="acsWidget" role="complementary" class="widget-left" style="bottom:60px;background-color:transparent!important;" customlabelreplaced=""> | |
| 432 | + <button id="acsBtn" data-acs-applied="" type="button" class="accessibility-button btn mt-3 m-0 p-0 border-0 " data-toggle="modal" data-target="#acsModal" style="background-color:transparent!important;background-image:none;box-shadow:none;" aria-label="Open Accessibility Options" customlabelreplaced=""> | |
| 433 | + <svg class="rounded-circle" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="56px" height="56px" viewBox="0 0 64 64"> | |
| 434 | + <rect x="4" y="4" width="56" height="56" rx="100" ry="100"></rect> | |
| 435 | + <g transform="translate(12.5 12.5) scale(0.6)"> | |
| 436 | + <circle data-color="color-2" cx="32" cy="8" r="6" fill="#ffffff"></circle> | |
| 437 | + <path d="M55.5,16H8.5a2.5,2.5,0,0,0,0,5L24,22V59a3,3,0,0,0,6,0l1-21h2l1,21a3,3,0,0,0,6,0V22l15.5-1a2.5,2.5,0,0,0,0-5Z" fill="#ffffff"></path> | |
| 438 | + </g> | |
| 439 | + </svg> | |
| 440 | + <span id="acsCheck" class="nu nu-check text-xs rounded-circle d-none" style="background-color: !important; box-shadow: 0 0 0px 4px !important" customlabelreplaced=""></span> | |
| 441 | + </button> | |
| 442 | + </div> | |
| 443 | + <style> | |
| 444 | + /* Only apply hover effect to stand-alone button (.accessibility-button), not help widget */ | |
| 445 | + #acsBtn.accessibility-button svg:hover { | |
| 446 | + box-shadow: 0 0 0px 3px !important; | |
| 447 | + } | |
| 448 | + #acsModal .modal-header, .closeModal .modal-header { | |
| 449 | + background-color: !important; | |
| 450 | + } | |
| 451 | + #acsModal .modal-footer.customColor, .closeModal .modal-footer.customColor { | |
| 452 | + background-color: !important; | |
| 453 | + } | |
| 454 | + </style> | |
| 455 | + | |
| 456 | + | |
| 457 | + <style>a#skip-nav{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}a#skip-nav:focus,a#skip-nav:active{position:fixed;bottom:10px;left:10px;width:auto;height:auto;text-decoration:underline;background:white;padding:5px 20px 10px;z-index:100000}</style> | |
| 458 | + | |
| 459 | + | |
| 460 | +<a id="skip-nav" href="#main-content" customlabelreplaced="">Skip to main content</a> | |
| 461 | + | |
| 462 | + | |
| 463 | + | |
| 464 | + | |
| 465 | + | |
| 466 | + | |
| 467 | + | |
| 468 | + | |
| 469 | + | |
| 470 | + | |
| 471 | + | |
| 472 | + | |
| 473 | + | |
| 474 | + <nav id="ysi-mobile-navbar" aria-label="main navigation" class="ysi-navbar-mobile navbar w-100 d-xxl-none navbar-light bg-white" style="width: 100%; color: #2D3D4D; " aria-hidden="true"> | |
| 475 | + <button id="nav-btn" class="navbar-toggler collapsed " style=" color: #2D3D4D; " type="button" data-toggle="collapse" data-target="#navbarMobileCollapse" aria-controls="navbarMobileCollapse" aria-expanded="false" aria-label="Toggle navigation" aria-haspopup="true" customlabelreplaced=""> | |
| 476 | + <svg class="ysi-svg-icon ysi-svg-icon-bars" width="1em" height="1em" viewBox="0 0 256 256"><path d="m 24,66 h 208 c 4,0 8,-4 8,-8 V 38 c 0,-4 -4,-8 -8,-8 H 24 c -4,0 -8,4 -8,8 v 20 c 0,4 4,8 8,8 z m 0,80 h 208 c 4,0 8,-4 8,-8 v -20 c 0,-4 -4,-8 -8,-8 H 24 c -4,0 -8,4 -8,8 v 20 c 0,4 4,8 8,8 z m 0,80 h 208 c 4,0 8,-4 8,-8 v -20 c 0,-4 -4,-8 -8,-8 H 24 c -4,0 -8,4 -8,8 v 20 c 0,4 4,8 8,8 z"></path></svg> | |
| 477 | + <svg class="ysi-svg-icon ysi-svg-icon-times" width="1em" height="1em" viewBox="0 0 256 256"><rect transform="rotate(45, 128, 128)" width="244" height="44.8" x="6" y="108" rx="12" ry="12"></rect><rect transform="rotate(-45, 128, 128)" width="244" height="44.8" x="6" y="108" rx="12" ry="12"></rect></svg> | |
| 478 | + </button> | |
| 479 | + <style>#mobile-logo691 img{box-sizing:content-box}@media (min-width: 992px){#mobile-logo691 img{width:136px}}</style><div class="ysi-logo-widget ysi-logo-wrapper" data-widget-order="1" customlabelreplaced="" aria-hidden="true"><a href="/" class="d-inline-block" customlabelreplaced=""><picture id="mobile-logo691"> | |
| 480 | + | |
| 481 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6046,h_2444,c_crop/q_auto,f_auto,c_fit,w_99,h_40,dpr_2/s3/2/252329/brigil_logo_en_rgb.png 2x"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6046,h_2444,c_crop/q_auto,f_auto,c_limit,w_99,h_40/s3/2/252329/brigil_logo_en_rgb.png" class="d-inline-block img-fluid" alt="The image shows the word "bright" in large, bold letters." width="99" height="40"> | |
| 482 | +</picture> | |
| 483 | +</a></div> | |
| 484 | + | |
| 485 | + | |
| 486 | + <div class="navbar-right pr-2" customlabelreplaced=""> | |
| 487 | + | |
| 488 | + | |
| 489 | + <div class="dropdown ysi-translate-widget ysi-translate-dropdown px-2 " customlabelreplaced=""> | |
| 490 | + <a data-selenium-id="translate" class="dropdown-toggle color-inherit text-decoration-none" href="#" onclick="elementLanguageFocus()" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" customlabelreplaced=""> | |
| 491 | + <span aria-hidden="true" class="fas fa-globe-americas" customlabelreplaced=""></span> <span class="sr-only" customlabelreplaced="">Language</span> | |
| 492 | + </a> | |
| 493 | + <ul class="dropdown-menu dropdown-menu-right" customlabelreplaced=""> | |
| 494 | + | |
| 495 | + <li customlabelreplaced=""> | |
| 496 | + <a data-selenium-id="lang-1" class="dropdown-item px-3 language-drowndown-item" href="javascript:getPack('en-us')" aria-label="English Language" customlabelreplaced=""> | |
| 497 | + <span class="ml-2" customlabelreplaced="">English</span> | |
| 498 | + </a> | |
| 499 | + </li> | |
| 500 | + <li customlabelreplaced=""> | |
| 501 | + <a data-selenium-id="lang-1" class="dropdown-item px-3 language-drowndown-item" href="javascript:getPack('fr-ca')" aria-label="French Language" customlabelreplaced=""> | |
| 502 | + <span class="ml-2" customlabelreplaced="">French</span> | |
| 503 | + </a> | |
| 504 | + </li> | |
| 505 | + </ul> | |
| 506 | + </div> | |
| 507 | + <input type="hidden" id="translate-request-verification-token" name="translate-request-verification-token" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ1PQZpUdCwHcYEq-VnpbuH-N6EE41FP80ppj_1u48lnjg4wU2XpPm23NAze4WGggxFEWCUP20nUHNahkQNQ_zNyceUlt0a-EjZYLs4KBA54wAGoFGalkNbqvLExDDcKpxE"> | |
| 508 | + | |
| 509 | + | |
| 510 | + | |
| 511 | + | |
| 512 | + | |
| 513 | + | |
| 514 | + <div class="dropdown ysi-login-link-widget ysi-login-dropdown d-inline" style="max-width: max-content;" customlabelreplaced="" aria-hidden="true"> | |
| 515 | + | |
| 516 | + <a data-selenium-id="loginlinks" class="dropdown-toggle color-inherit text-decoration-none " href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" style="" customlabelreplaced=""> | |
| 517 | + <svg class="ysi-svg-icon ysi-svg-icon-user" width="1em" height="1em" viewBox="0 0 256 256"><path d="m 128,128 c 35.35,0 64,-28.7 64,-64 C 192,28.7 163.4,0 128,0 92.7,0 64,28.7 64,64 c 0,35.4 28.65,64 64,64 z m 44.8,16 h -8.4 c -11.1,5.1 -23.5,8 -36.5,8 -13,0 -25.3,-2.9 -36.5,-8 H 83.2 C 46.1,144 16,174.1 16,211.2 V 232 c 0,13.3 10.8,24 24,24 h 176 c 13.3,0 24,-10.8 24,-24 V 211.2 C 240,174.1 209.9,144 172.8,144 Z"></path></svg> | |
| 518 | + <span class="sr-only" customlabelreplaced="">Login</span> | |
| 519 | + </a> | |
| 520 | + | |
| 521 | + <div class="dropdown-menu dropdown-menu-right" customlabelreplaced=""> | |
| 522 | + | |
| 523 | + | |
| 524 | + | |
| 525 | + <ul class="dropdown-list list-unstyled mb-0" customlabelreplaced=""> | |
| 526 | + <li customlabelreplaced=""> | |
| 527 | + <a data-selenium-id="residentlogin" class="dropdown-item track-resident-login" href="https://brigil.securecafe.com/residentservices/apartmentsforrent/userlogin.aspx?dropdownlangid=999" rel="noopener" target="_Blank" customlabelreplaced=""> Resident <span class="sr-only" customlabelreplaced="">Login Opens in a new tab</span> </a> | |
| 528 | + </li> | |
| 529 | + | |
| 530 | + <li customlabelreplaced=""> | |
| 531 | + <a data-selenium-id="applicantlogin" class="dropdown-item track-applicant-login" href="https://brigil.securecafe.com/onlineleasing/apartmentsforrent/guestlogin.aspx?dropdownlangid=999" rel="noopener" target="_Blank" customlabelreplaced=""> Applicant <span class="sr-only" customlabelreplaced="">Login Opens in a new tab</span> </a> | |
| 532 | + </li> | |
| 533 | + | |
| 534 | + </ul> | |
| 535 | + </div> | |
| 536 | + </div> | |
| 537 | + | |
| 538 | + | |
| 539 | + | |
| 540 | + | |
| 541 | + <style>.mobile-only .click-to-call{display:none}</style> | |
| 542 | + | |
| 543 | + <div class="ysi-phone-widget ysi-phone-wrapper mobile-only d-inline ml-2 " customlabelreplaced=""> | |
| 544 | + <div class="d-inline-flex" customlabelreplaced=""> | |
| 545 | + <a data-selenium-id="click_to_call" onclick="fireGaPhone()" href="tel:+1 819-568-1771" aria-label="Call 6881530 Canada Inc (Brigil) at +1 819-568-1771" class="ysi-phone-number click-to-call-href color-inherit " customlabelreplaced=""> | |
| 546 | + <svg class="ysi-svg-icon mobile-phone-icon" width="1em" height="1em" viewBox="0 0 256 256"><path d="M 9.3,12.3 61.3,0.3 c 5.6,-1.3 11.5,1.6 13.7,6.9 L 99,63.3 c 2.1,4.9 0.7,10.6 -3.4,14 L 65.3,102 c 18,38.3 49.4,70.2 88.6,88.6 l 24.8,-30.3 c 3.4,-4.1 9.1,-5.5 14,-3.4 l 56,24 c 5.3,2.3 8.3,8.1 7,13.8 L 243.7,246.7 C 242.4,252.1 237.6,256 232,256 103.9,256 0,152.3 0,24 0,18.4 3.8,13.6 9.3,12.3 Z"></path></svg> | |
| 547 | + <span class="click-to-call" customlabelreplaced="">+1 819-568-1771</span> | |
| 548 | + </a> | |
| 549 | + | |
| 550 | + </div> | |
| 551 | + </div> | |
| 552 | + <script> | |
| 553 | + function fireGaPhone() { | |
| 554 | + if (typeof gtag != 'undefined') { | |
| 555 | + var myPage = location.pathname.replace("/", ""); | |
| 556 | + if (myPage == "") { myPage = "index"; } | |
| 557 | + if (true ) { | |
| 558 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 559 | + gtag('event', 'phone_call', { 'property_name': propertyName, 'page_name': document.title, 'page_url': window.location.href, 'header_phone_number': '+1 819-568-1771'}); | |
| 560 | + } | |
| 561 | + gtag('event', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 562 | + gtag('rc.send', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 563 | + } | |
| 564 | + } | |
| 565 | + </script> | |
| 566 | + | |
| 567 | + </div> | |
| 568 | + <div class="collapse navbar-collapse" id="navbarMobileCollapse" customlabelreplaced=""> | |
| 569 | + <ul class="nav navbar-nav pt-3 custom-scroll" customlabelreplaced=""> | |
| 570 | + <li class="nav-item" customlabelreplaced=""> | |
| 571 | + <a onclick="fireGA4menu(this)" data-selenium-id="mobile_specials-and-promotionsaspx_MenuLink" href="/specials-and-promotions" class="nav-link" customlabelreplaced=""> | |
| 572 | + For Rent </a> | |
| 573 | + </li> | |
| 574 | + <li class="nav-item" customlabelreplaced=""> | |
| 575 | + <a onclick="fireGA4menu(this)" data-selenium-id="mobile_specials-and-promotions#forsalesaspx_MenuLink" ioi="true" href="specials-and-promotions#forsales" class="nav-link" customlabelreplaced=""> | |
| 576 | + For Sale </a> | |
| 577 | + </li> | |
| 578 | + <li class="nav-item" customlabelreplaced=""> | |
| 579 | + <a onclick="fireGA4menu(this)" data-selenium-id="mobile_https://batisseurcitoyen.brigil.com/aspx_MenuLink" ioi="true" href="https://batisseurcitoyen.brigil.com/" class="nav-link" customlabelreplaced=""> | |
| 580 | + About Us </a> | |
| 581 | + </li> | |
| 582 | + <li class="nav-item" customlabelreplaced=""> | |
| 583 | + <a onclick="fireGA4menu(this)" data-selenium-id="mobile_commercialdevelopmentaspx_MenuLink" href="/commercialdevelopment" class="nav-link" customlabelreplaced=""> | |
| 584 | + Commercial </a> | |
| 585 | + </li> | |
| 586 | + <li class="nav-item" customlabelreplaced=""> | |
| 587 | + <a onclick="fireGA4menu(this)" data-selenium-id="mobile_contactusaspx_MenuLink" href="/contactus" class="nav-link" customlabelreplaced=""> | |
| 588 | + Contact Us </a> | |
| 589 | + </li> | |
| 590 | + <li class="nav-item" customlabelreplaced=""> | |
| 591 | + <a onclick="fireGA4menu(this)" data-selenium-id="mobile_searchlistingaspx_MenuLink" href="/searchlisting" class="nav-link" customlabelreplaced=""> | |
| 592 | + Our Properties </a> | |
| 593 | + </li> | |
| 594 | + </ul> | |
| 595 | + </div> | |
| 596 | + </nav> | |
| 597 | +<script> | |
| 598 | + function fireGA4menu(item) { | |
| 599 | + if (typeof gtag !== 'undefined') { | |
| 600 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 601 | + var destination = item.getAttribute('href'); | |
| 602 | + gtag('event', 'menu_link', { | |
| 603 | + 'property_name': propertyName, 'button_label': item.innerText, 'page_name': document.title, 'page_url': window.location.href, | |
| 604 | + 'destination_url': window.location.host + destination | |
| 605 | + }); | |
| 606 | + } | |
| 607 | + } | |
| 608 | +</script> | |
| 609 | + | |
| 610 | + | |
| 611 | + | |
| 612 | +<script> | |
| 613 | +window.addEventListener("load", () => { | |
| 614 | + document.querySelectorAll('button.navbar-toggler[aria-expanded]').forEach((hamburger) => { | |
| 615 | + const update = () => { | |
| 616 | + hamburger.setAttribute( | |
| 617 | + "aria-label", | |
| 618 | + hamburger.getAttribute("aria-expanded") === "true" | |
| 619 | + ? "Close navigation" | |
| 620 | + : "Toggle navigation" | |
| 621 | + ); | |
| 622 | + }; | |
| 623 | + | |
| 624 | + update(); | |
| 625 | + | |
| 626 | + new MutationObserver(update).observe(hamburger, { | |
| 627 | + attributes: true, | |
| 628 | + attributeFilter: ["aria-expanded"], | |
| 629 | + }); | |
| 630 | + }); | |
| 631 | +}); | |
| 632 | +</script> | |
| 633 | + | |
| 634 | + | |
| 635 | + | |
| 636 | + <div data-offset-top="0" id="stickyTopSentinel0" class="stickytopsentinel" style="position: absolute; left: 0px; width: 1px; height: 1px; z-index: 0; top: 0px;"></div><header class="sticky-top"><div class="py-3 px-5 text-primary bg-white ysi-row d-none d-xl-flex" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""><div class="justify-content-start align-items-center flex-row d-flex text-left col-12 col-lg-1" customlabelreplaced=""><style>#logo254 img{box-sizing:content-box}@media (min-width: 992px){#logo254 img{width:136px}}</style><div class="ysi-logo-widget ysi-logo-wrapper " data-widget-order="1" customlabelreplaced="" aria-hidden="false"><a href="/" class="d-inline-block" customlabelreplaced=""><picture id="logo254"> | |
| 637 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6046,h_2444,c_crop/q_auto,f_auto,c_fit,w_136,h_55,dpr_2/s3/2/252329/brigil_logo_en_rgb.png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6046,h_2444,c_crop/q_auto,f_auto,c_limit,w_136,h_55/s3/2/252329/brigil_logo_en_rgb.png"> | |
| 638 | + | |
| 639 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6046,h_2444,c_crop/q_auto,f_auto,c_fit,w_99,h_40,dpr_2/s3/2/252329/brigil_logo_en_rgb.png 2x"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6046,h_2444,c_crop/q_auto,f_auto,c_limit,w_99,h_40/s3/2/252329/brigil_logo_en_rgb.png" class="d-inline-block img-fluid" alt="The image shows the word "bright" in large, bold letters." width="99" height="40"> | |
| 640 | +</picture> | |
| 641 | +</a></div> | |
| 642 | + | |
| 643 | +</div><div class="col-12 offset-0 d-flex justify-content-start align-items-center flex-row text-left col-lg-8" customlabelreplaced=""> | |
| 644 | +<div class="d-flex flex-row align-items-center justify-content-start flex-wrap" customlabelreplaced=""> | |
| 645 | + | |
| 646 | + <!-- TEMPORARILY HIDDEN <a href=".mega-menu-01" class="nav-link text-decoration-none" data-selenium-id="megamenuaspx_MenuLink" customlabelreplaced="" data-toggle-selector=".mega-menu-01">For Rent | For Sale <i class="d-none fas fa-caret-down" aria-hidden="true" customlabelreplaced=""></i></a> --> | |
| 647 | + | |
| 648 | + <a href="/specials-and-promotions" class="nav-link text-decoration-none" data-selenium-id="promotionsaspx_MenuLink" customlabelreplaced="">For Rent</a> | |
| 649 | + | |
| 650 | + <a href="/specials-and-promotions#forsales" class="nav-link text-decoration-none" data-selenium-id="promotionsaspx_MenuLink" customlabelreplaced="">For Sale</a> | |
| 651 | + | |
| 652 | + <a href="/commercial-development" class="nav-link text-decoration-none" data-selenium-id="promotionsaspx_MenuLink" customlabelreplaced="">Commercial</a> | |
| 653 | + | |
| 654 | + <a href="https://batisseurcitoyen.brigil.com/en" class="nav-link text-decoration-none" target="_blank" data-selenium-id="promotionsaspx_MenuLink" customlabelreplaced="">About Us</a> | |
| 655 | + | |
| 656 | + <a href="/contactus" class="nav-link text-decoration-none" data-selenium-id="contactusaspx_MenuLink" customlabelreplaced="">Contact Us</a> | |
| 657 | + | |
| 658 | +</div> <style> | |
| 659 | + #navbarCollapse .nav.navbar-nav { | |
| 660 | + background-color: #ffffff; | |
| 661 | + } | |
| 662 | + </style> | |
| 663 | + <nav id="ysi-navbar" aria-label="main navigation" class="ysi-navbar navbar navbar-expand d-none navbar-dark" style="" aria-hidden="false"> | |
| 664 | + <div class="navbar-collapse collapse navbar-z-index " style="width: 100%; " id="navbarCollapse" customlabelreplaced=""> | |
| 665 | + <ul class="nav navbar-nav " customlabelreplaced=""> | |
| 666 | + <li class="nav-item m-auto" customlabelreplaced=""> | |
| 667 | + <a onclick="fireGA4menu(this)" data-selenium-id="specials-and-promotionsaspx_MenuLink" href="/specials-and-promotions" class="nav-link" customlabelreplaced=""> | |
| 668 | + For Rent </a> | |
| 669 | + </li> | |
| 670 | + <li class="nav-item m-auto" customlabelreplaced=""> | |
| 671 | + <a onclick="fireGA4menu(this)" data-selenium-id="specials-and-promotions#forsalesaspx_MenuLink" ioi="true" href="specials-and-promotions#forsales" class="nav-link" customlabelreplaced=""> | |
| 672 | + For Sale </a> | |
| 673 | + </li> | |
| 674 | + <li class="nav-item m-auto" customlabelreplaced=""> | |
| 675 | + <a onclick="fireGA4menu(this)" data-selenium-id="https://batisseurcitoyen.brigil.com/aspx_MenuLink" ioi="true" href="https://batisseurcitoyen.brigil.com/" class="nav-link" customlabelreplaced=""> | |
| 676 | + About Us </a> | |
| 677 | + </li> | |
| 678 | + <li class="nav-item m-auto" customlabelreplaced=""> | |
| 679 | + <a onclick="fireGA4menu(this)" data-selenium-id="commercialdevelopmentaspx_MenuLink" href="/commercialdevelopment" class="nav-link" customlabelreplaced=""> | |
| 680 | + Commercial </a> | |
| 681 | + </li> | |
| 682 | + <li class="nav-item m-auto" customlabelreplaced=""> | |
| 683 | + <a onclick="fireGA4menu(this)" data-selenium-id="contactusaspx_MenuLink" href="/contactus" class="nav-link" customlabelreplaced=""> | |
| 684 | + Contact Us </a> | |
| 685 | + </li> | |
| 686 | + <li class="nav-item m-auto" customlabelreplaced=""> | |
| 687 | + <a onclick="fireGA4menu(this)" data-selenium-id="searchlistingaspx_MenuLink" href="/searchlisting" class="nav-link" customlabelreplaced=""> | |
| 688 | + Our Properties </a> | |
| 689 | + </li> | |
| 690 | + </ul> | |
| 691 | + </div> | |
| 692 | + </nav> | |
| 693 | + | |
| 694 | +<script> | |
| 695 | + function fireGA4menu(item) { | |
| 696 | + if (typeof gtag !== 'undefined') { | |
| 697 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 698 | + var destination = item.getAttribute('href'); | |
| 699 | + gtag('event', 'menu_link', { | |
| 700 | + 'property_name': propertyName, 'button_label': item.innerText, 'page_name': document.title, 'page_url': window.location.href, | |
| 701 | + 'destination_url': window.location.host + destination | |
| 702 | + }); | |
| 703 | + } | |
| 704 | + } | |
| 705 | +</script> | |
| 706 | + | |
| 707 | + | |
| 708 | + | |
| 709 | +<script> | |
| 710 | +window.addEventListener("load", () => { | |
| 711 | + document.querySelectorAll('button.navbar-toggler[aria-expanded]').forEach((hamburger) => { | |
| 712 | + const update = () => { | |
| 713 | + hamburger.setAttribute( | |
| 714 | + "aria-label", | |
| 715 | + hamburger.getAttribute("aria-expanded") === "true" | |
| 716 | + ? "Close navigation" | |
| 717 | + : "Toggle navigation" | |
| 718 | + ); | |
| 719 | + }; | |
| 720 | + | |
| 721 | + update(); | |
| 722 | + | |
| 723 | + new MutationObserver(update).observe(hamburger, { | |
| 724 | + attributes: true, | |
| 725 | + attributeFilter: ["aria-expanded"], | |
| 726 | + }); | |
| 727 | + }); | |
| 728 | +}); | |
| 729 | +</script> | |
| 730 | + | |
| 731 | +</div><div class="col-12 offset-0 d-flex justify-content-end align-items-center flex-row text-left col-lg-3 justify-content-lg-end" customlabelreplaced=""> | |
| 732 | + | |
| 733 | + <style>.mobile-only .click-to-call{display:none}</style> | |
| 734 | + | |
| 735 | + <div class="ysi-phone-widget ysi-phone-wrapper mr-4 " customlabelreplaced=""> | |
| 736 | + <div class="d-inline-flex" customlabelreplaced=""> | |
| 737 | + <a data-selenium-id="click_to_call" onclick="fireGaPhone()" href="tel:+1 819-568-1771" aria-label="Call 6881530 Canada Inc (Brigil) at +1 819-568-1771" class="ysi-phone-number click-to-call-href text-decoration-none color-inherit text-white" customlabelreplaced=""> | |
| 738 | + <span aria-hidden="true" class="fa-flip-horizontal fas fa-phone text-primary" customlabelreplaced=""></span> | |
| 739 | + <span data-selenium-id="click_to_call_span" class="click-to-call ml-2 text-underline" customlabelreplaced="">+1 819-568-1771</span> | |
| 740 | + </a> | |
| 741 | + | |
| 742 | + </div> | |
| 743 | + </div> | |
| 744 | + <script> | |
| 745 | + function fireGaPhone() { | |
| 746 | + if (typeof gtag != 'undefined') { | |
| 747 | + var myPage = location.pathname.replace("/", ""); | |
| 748 | + if (myPage == "") { myPage = "index"; } | |
| 749 | + if (true ) { | |
| 750 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 751 | + gtag('event', 'phone_call', { 'property_name': propertyName, 'page_name': document.title, 'page_url': window.location.href, 'header_phone_number': '+1 819-568-1771'}); | |
| 752 | + } | |
| 753 | + gtag('event', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 754 | + gtag('rc.send', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 755 | + } | |
| 756 | + } | |
| 757 | + </script> | |
| 758 | + | |
| 759 | + | |
| 760 | + <div class="dropdown ysi-translate-widget ysi-translate-dropdown px-2 d-none d-lg-flex" customlabelreplaced=""> | |
| 761 | + <a data-selenium-id="translate" class="dropdown-toggle color-inherit " href="#" onclick="elementLanguageFocus()" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" customlabelreplaced=""> | |
| 762 | + <span aria-hidden="true" class="fas fa-globe-americas" customlabelreplaced=""></span> <span class="" customlabelreplaced="">Language</span> | |
| 763 | + </a> | |
| 764 | + <ul class="dropdown-menu " customlabelreplaced=""> | |
| 765 | + | |
| 766 | + <li customlabelreplaced=""> | |
| 767 | + <a data-selenium-id="lang-1" class="dropdown-item px-3 language-drowndown-item" href="javascript:getPack('en-us')" aria-label="English Language" customlabelreplaced=""> | |
| 768 | + <span class="ml-2" customlabelreplaced="">English</span> | |
| 769 | + </a> | |
| 770 | + </li> | |
| 771 | + <li customlabelreplaced=""> | |
| 772 | + <a data-selenium-id="lang-1" class="dropdown-item px-3 language-drowndown-item" href="javascript:getPack('fr-ca')" aria-label="French Language" customlabelreplaced=""> | |
| 773 | + <span class="ml-2" customlabelreplaced="">French</span> | |
| 774 | + </a> | |
| 775 | + </li> | |
| 776 | + </ul> | |
| 777 | + </div> | |
| 778 | + <input type="hidden" id="translate-request-verification-token" name="translate-request-verification-token" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ1PQZpUdCwHcYEq-VnpbuH-N6EE41FP80ppj_1u48lnjg4wU2XpPm23NAze4WGggxFEWCUP20nUHNahkQNQ_zNyceUlt0a-EjZYLs4KBA54wAGoFGalkNbqvLExDDcKpxE"> | |
| 779 | + | |
| 780 | + | |
| 781 | + | |
| 782 | + | |
| 783 | + <div class="dropdown ysi-login-link-widget ysi-login-dropdown text-uppercase" style="max-width: max-content;" customlabelreplaced="" aria-hidden="true"> | |
| 784 | + | |
| 785 | + <a data-selenium-id="loginlinks" class="dropdown-toggle btn " style="" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" customlabelreplaced=""> | |
| 786 | + <span aria-hidden="true" class="fas fa-user mr-1" customlabelreplaced=""></span> | |
| 787 | + <span customlabelreplaced="">Login</span> | |
| 788 | + </a> | |
| 789 | + | |
| 790 | + <div class="dropdown-menu dropdown-menu-right" customlabelreplaced=""> | |
| 791 | + | |
| 792 | + | |
| 793 | + | |
| 794 | + <ul class="dropdown-list list-unstyled mb-0" customlabelreplaced=""> | |
| 795 | + <li customlabelreplaced=""> | |
| 796 | + <a data-selenium-id="residentlogin" class="dropdown-item track-resident-login" href="https://brigil.securecafe.com/residentservices/apartmentsforrent/userlogin.aspx?dropdownlangid=999" rel="noopener" target="_Blank" customlabelreplaced=""> Resident <span class="sr-only" customlabelreplaced="">Login Opens in a new tab</span> </a> | |
| 797 | + </li> | |
| 798 | + | |
| 799 | + <li customlabelreplaced=""> | |
| 800 | + <a data-selenium-id="applicantlogin" class="dropdown-item track-applicant-login" href="https://brigil.securecafe.com/onlineleasing/apartmentsforrent/guestlogin.aspx?dropdownlangid=999" rel="noopener" target="_Blank" customlabelreplaced=""> Applicant <span class="sr-only" customlabelreplaced="">Login Opens in a new tab</span> </a> | |
| 801 | + </li> | |
| 802 | + | |
| 803 | + </ul> | |
| 804 | + </div> | |
| 805 | + </div> | |
| 806 | + | |
| 807 | +</div></div></div></div><div class="py-5 text-primary bg-white ysi-row position-absolute mega-menu w-100 collapse mega-menu-01" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""><div class="col-12 offset-0 d-flex justify-content-start align-items-start flex-column text-left col-lg-2" customlabelreplaced=""> | |
| 808 | + <div class="font-base py-1 h5 font-weight-bold" customlabelreplaced=""> | |
| 809 | + Residential | |
| 810 | + </div> | |
| 811 | + <a href="/for-sale/our-communities" class="py-1 text-decoration-none mb-2" data-selenium-id="forsaleaspx_MenuLink" customlabelreplaced=""><span class="nu nu-arrow-right" aria-hidden="true" customlabelreplaced=""></span> For Sale</a> | |
| 812 | + <a href="/for-rent/our-communities" class="py-1 text-decoration-none mb-2" data-selenium-id="forrentaspx_MenuLink" customlabelreplaced=""><span class="nu nu-arrow-right" aria-hidden="true" customlabelreplaced=""></span> For Rent</a> | |
| 813 | + </div><div class="communities-nav-links col-12 offset-0 d-flex justify-content-start align-items-start flex-column text-left col-lg-4" customlabelreplaced=""><div class="temp-d-none" customlabelreplaced=""> | |
| 814 | + | |
| 815 | +<div class="font-base py-1 h5 font-weight-bold" customlabelreplaced=""> | |
| 816 | + Collections | |
| 817 | + </div> | |
| 818 | + <a href="/aura" class="py-1 text-decoration-none mb-2" data-selenium-id="auracollectionaspx_MenuLink" customlabelreplaced=""><span class="nu nu-arrow-right" aria-hidden="true" customlabelreplaced=""></span> Aura Collection</a> | |
| 819 | + <a href="/horizon" class="py-1 text-decoration-none mb-2" data-selenium-id="horizoncollectionaspx_MenuLink" customlabelreplaced=""><span class="nu nu-arrow-right" aria-hidden="true" customlabelreplaced=""></span> Horizon Collection</a> | |
| 820 | + <a href="/edition" class="py-1 text-decoration-none mb-2" data-selenium-id="editioncollectionaspx_MenuLink" customlabelreplaced=""><span class="nu nu-arrow-right" aria-hidden="true" customlabelreplaced=""></span> Edition Collection</a> | |
| 821 | + <a href="/comfort" class="py-1 text-decoration-none mb-2" data-selenium-id="comfortcollectionaspx_MenuLink" customlabelreplaced=""><span class="nu nu-arrow-right" aria-hidden="true" customlabelreplaced=""></span> Comfort Collection</a> | |
| 822 | + | |
| 823 | +</div> | |
| 824 | + | |
| 825 | + <div class="font-base py-1 h5 font-weight-bold" customlabelreplaced=""> | |
| 826 | + Our Communities | |
| 827 | + </div> | |
| 828 | + | |
| 829 | + | |
| 830 | + <ul class="list-unstyled" customlabelreplaced=""> | |
| 831 | + <li customlabelreplaced=""><a class="color-inherit" href="/le-columbia" customlabelreplaced="">Le Columbia </a></li> | |
| 832 | + <li customlabelreplaced=""><a class="color-inherit" href="/domaine-du-vieux-port/default" customlabelreplaced="">Domaine du Vieux-Port </a></li> | |
| 833 | + <li customlabelreplaced=""><a class="color-inherit" href="/chateau-golf" customlabelreplaced="">Château Golf </a></li> | |
| 834 | + <li customlabelreplaced=""><a class="color-inherit" href="/champlain-village-urbain" customlabelreplaced="">Champlain Village Urbain </a></li> | |
| 835 | + <li customlabelreplaced=""><a class="color-inherit" href="/ruisseaux-lepine-i/default" customlabelreplaced="">Ruisseaux Lépine </a></li> | |
| 836 | + <li customlabelreplaced=""><a class="color-inherit" href="/ruisseaux-lepine-ii/default" customlabelreplaced="">Ruisseaux Lépine II </a></li> | |
| 837 | + <li customlabelreplaced=""><a class="color-inherit" href="/horizon-condo" customlabelreplaced="">Horizon </a></li> | |
| 838 | + <li customlabelreplaced=""><a class="color-inherit" href="/aura-rivermead/default.aspx" customlabelreplaced="">Aura – Rivermead </a></li> | |
| 839 | + <li customlabelreplaced=""><a class="color-inherit" href="/canevas" customlabelreplaced="">Canevas </a></li> | |
| 840 | + <li customlabelreplaced=""><a class="color-inherit" href="/plateau-du-parc/default.aspx" customlabelreplaced="">Plateau du Parc </a></li> | |
| 841 | + <li customlabelreplaced=""><a class="color-inherit" href="/jardins-mcconnell/default.aspx" customlabelreplaced="">Jardins McConnell </a></li> | |
| 842 | + <li customlabelreplaced=""><a class="color-inherit" href="/the-dale" customlabelreplaced="">The Dale </a></li> | |
| 843 | + <li customlabelreplaced=""><a class="color-inherit" href="/929-richmond" customlabelreplaced="">929 Richmond </a></li> | |
| 844 | + <li customlabelreplaced=""><a class="color-inherit" href="/baseline-rd" customlabelreplaced="">Baseline </a></li> | |
| 845 | + <li customlabelreplaced=""><a class="color-inherit" href="/petries-landing-i" customlabelreplaced="">Petrie’s Landing I </a></li> | |
| 846 | + <li customlabelreplaced=""><a class="color-inherit" href="/petries-landing-ii" customlabelreplaced="">Petrie’s Landing II </a></li> | |
| 847 | + <li customlabelreplaced=""><a class="color-inherit" href="/center-park-st/default" customlabelreplaced="">Center Park </a></li> | |
| 848 | + <li customlabelreplaced=""><a class="color-inherit" href="/460-st-laurent/default" customlabelreplaced="">460 St-Laurent </a></li> | |
| 849 | + <li customlabelreplaced=""><a class="color-inherit" href="/kanata-lakes-av" customlabelreplaced="">Kanata Lakes </a></li> | |
| 850 | + | |
| 851 | + | |
| 852 | + </ul> | |
| 853 | + <div id="additionalmenuid-1193-9666" style="display: none;" customlabelreplaced="">1193</div> | |
| 854 | +</div><div class="col-12 offset-0 d-flex justify-content-stretch align-items-stretch flex-column text-left col-lg-3" customlabelreplaced=""> <div class="ysi-picture-widget ysi-picture-wrapper h-100 " customlabelreplaced=""> | |
| 855 | + <a href="/for-rent/our-communities" class="" title="A modern living room with a fireplace and a dining table." aria-label="A modern living room with a fireplace and a dining table." customlabelreplaced=""><picture> | |
| 856 | +<source media="(min-width: 4500px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1287,h_1080,c_crop/q_auto,f_auto,c_lfill,w_800,h_500,g_auto/s3/2/252329/mega-menu-residential-brigil.jpg"> | |
| 857 | +<source media="(min-width: 3840px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1287,h_1080,c_crop/q_auto,f_auto,c_lfill,w_1125,h_500,g_auto/s3/2/252329/mega-menu-residential-brigil.jpg"> | |
| 858 | +<source media="(min-width: 3200px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1287,h_1080,c_crop/q_auto,f_auto,c_lfill,w_960,h_500,g_auto/s3/2/252329/mega-menu-residential-brigil.jpg"> | |
| 859 | +<source media="(min-width: 2560px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1287,h_1080,c_crop/q_auto,f_auto,c_lfill,w_800,h_500,g_auto/s3/2/252329/mega-menu-residential-brigil.jpg"> | |
| 860 | +<source media="(min-width: 1920px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1287,h_1080,c_crop/q_auto,f_auto,c_lfill,w_640,h_500,g_auto/s3/2/252329/mega-menu-residential-brigil.jpg"> | |
| 861 | +<source media="(min-width: 1440px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1287,h_1080,c_crop/q_auto,f_auto,c_lfill,w_480,h_500,g_auto/s3/2/252329/mega-menu-residential-brigil.jpg"> | |
| 862 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1287,h_1080,c_crop/q_auto,f_auto,c_lfill,w_360,h_500,g_auto/s3/2/252329/mega-menu-residential-brigil.jpg"> | |
| 863 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1287,h_1080,c_crop/q_auto,f_auto,c_lfill,w_300,h_500,g_auto/s3/2/252329/mega-menu-residential-brigil.jpg"> | |
| 864 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1287,h_1080,c_crop/q_auto,f_auto,c_limit,w_992/s3/2/252329/mega-menu-residential-brigil.jpg"> | |
| 865 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1287,h_1080,c_crop/q_auto,f_auto,c_limit,w_768/s3/2/252329/mega-menu-residential-brigil.jpg"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1287,h_1080,c_crop/q_auto,f_auto,c_limit,w_576/s3/2/252329/mega-menu-residential-brigil.jpg" class="w-100 h-100 img-fluid" alt="A modern living room with a fireplace and a dining table." title="For Rent" loading="lazy"> | |
| 866 | +</picture> | |
| 867 | +</a> | |
| 868 | + | |
| 869 | + | |
| 870 | + <div class="picture-title-and-caption" customlabelreplaced=""> | |
| 871 | + <div class="picture-title h5" customlabelreplaced="">For Rent</div> | |
| 872 | + </div> | |
| 873 | + | |
| 874 | + </div> | |
| 875 | + | |
| 876 | +</div><div class="col-12 offset-0 d-flex justify-content-stretch align-items-stretch flex-column text-left col-lg-3" customlabelreplaced=""> <div class="ysi-picture-widget ysi-picture-wrapper h-100 " customlabelreplaced=""> | |
| 877 | + <a href="/for-sale/our-communities" class="" title="A street view of a city with people walking and biking." aria-label="A street view of a city with people walking and biking." customlabelreplaced=""><picture> | |
| 878 | +<source media="(min-width: 4500px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1727,h_1080,c_crop/q_auto,f_auto,c_lfill,w_800,h_500,g_auto/s3/2/252329/mega-menu-commercial_brigil.jpg"> | |
| 879 | +<source media="(min-width: 3840px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1727,h_1080,c_crop/q_auto,f_auto,c_lfill,w_1125,h_500,g_auto/s3/2/252329/mega-menu-commercial_brigil.jpg"> | |
| 880 | +<source media="(min-width: 3200px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1727,h_1080,c_crop/q_auto,f_auto,c_lfill,w_960,h_500,g_auto/s3/2/252329/mega-menu-commercial_brigil.jpg"> | |
| 881 | +<source media="(min-width: 2560px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1727,h_1080,c_crop/q_auto,f_auto,c_lfill,w_800,h_500,g_auto/s3/2/252329/mega-menu-commercial_brigil.jpg"> | |
| 882 | +<source media="(min-width: 1920px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1727,h_1080,c_crop/q_auto,f_auto,c_lfill,w_640,h_500,g_auto/s3/2/252329/mega-menu-commercial_brigil.jpg"> | |
| 883 | +<source media="(min-width: 1440px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1727,h_1080,c_crop/q_auto,f_auto,c_lfill,w_480,h_500,g_auto/s3/2/252329/mega-menu-commercial_brigil.jpg"> | |
| 884 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1727,h_1080,c_crop/q_auto,f_auto,c_lfill,w_360,h_500,g_auto/s3/2/252329/mega-menu-commercial_brigil.jpg"> | |
| 885 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1727,h_1080,c_crop/q_auto,f_auto,c_lfill,w_300,h_500,g_auto/s3/2/252329/mega-menu-commercial_brigil.jpg"> | |
| 886 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1727,h_1080,c_crop/q_auto,f_auto,c_limit,w_992/s3/2/252329/mega-menu-commercial_brigil.jpg"> | |
| 887 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1727,h_1080,c_crop/q_auto,f_auto,c_limit,w_768/s3/2/252329/mega-menu-commercial_brigil.jpg"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1727,h_1080,c_crop/q_auto,f_auto,c_limit,w_576/s3/2/252329/mega-menu-commercial_brigil.jpg" class="w-100 h-100 img-fluid" alt="A street view of a city with people walking and biking." title="For Sale" loading="lazy"> | |
| 888 | +</picture> | |
| 889 | +</a> | |
| 890 | + | |
| 891 | + | |
| 892 | + <div class="picture-title-and-caption" customlabelreplaced=""> | |
| 893 | + <div class="picture-title h5" customlabelreplaced="">For Sale</div> | |
| 894 | + </div> | |
| 895 | + | |
| 896 | + </div> | |
| 897 | + | |
| 898 | +</div></div></div></div></header> | |
| 899 | + | |
| 900 | + <!--do not remove--> | |
| 901 | + <main id="main-content"><div class="bg-white container-fluid p-0" customlabelreplaced=""><div class="row no-gutters" customlabelreplaced=""><div class="justify-content-start align-items-stretch flex-column d-flex text-left col-12 col-lg-12" customlabelreplaced=""> | |
| 902 | + | |
| 903 | + | |
| 904 | + | |
| 905 | + | |
| 906 | + | |
| 907 | + | |
| 908 | + | |
| 909 | + | |
| 910 | + | |
| 911 | + | |
| 912 | + | |
| 913 | + | |
| 914 | + | |
| 915 | + | |
| 916 | +<style>.property-details-section:not(:has(.flex-column>*)){display:none}</style> | |
| 917 | + | |
| 918 | +<style>.photogallery{width:100%;margin:0 auto;position:relative}.photogallery:before{content:'';display:block;width:1px;height:0;padding-bottom:33%;margin-left:-1px;float:left}.photogallery:after{content:"";display:table;clear:both}.photogallery[data-has-height="true"] .carousel-item .item a,.photogallery[data-has-height="true"] .carousel-item .item .yardi-widget-picture{display:flex;width:100%;height:100%}.photogallery[data-has-height="true"] .carousel-item .item picture{display:flex;justify-content:center;align-items:center;height:100%;width:100%}.photogallery .carousel-inner{background:rgba(0,0,0,0.05)}.photogallery .carousel-item{word-wrap:break-word;text-align:center}.photogallery .carousel-item .item{display:inline-block;vertical-align:top;position:relative;overflow:hidden;width:100%}.photogallery .carousel-item .item img{transition:all .2s linear;height:100%;width:100%}@supports (object-fit: cover){.photogallery .carousel-item .item img{object-fit:cover}}.photogallery .carousel-item .item-caption{display:block;background:rgba(0,0,0,0.6);padding:.86em 25px .86em 15px;position:absolute;bottom:0;left:0;right:0;transition:transform 0.3s ease;color:#fff;font-size:0.86rem;line-height:1.6em;max-height:3.2em;overflow:hidden;z-index:2;box-sizing:content-box;width:auto !important;padding-top:0 !important;padding-bottom:0 !important;border-top:.6em solid transparent !important;border-bottom:.6em solid transparent !important}.photogallery .carousel-item .item-caption:before{content:"...";display:block;float:right;line-height:inherit;padding:1.6em 0 0;font-weight:700;height:calc(1.6em + 1px);overflow:visible}@supports (display: -webkit-box) and (-webkit-line-clamp: 2) and (-webkit-box-orient: vertical){.photogallery .carousel-item .item-caption{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.photogallery .carousel-item .item-caption:before{display:none}}.photogallery .carousel-item .item a:has(img):focus{outline-offset:-2px !important;outline-width:2px !important}.photogallery .carousel-item .item a:has(img):focus .item-caption{right:2px;bottom:2px;left:2px}@media (hover: hover){.photogallery .carousel-item .item{background:transparent}.photogallery .carousel-item img,.photogallery .carousel-item img:not(:last-child){padding-bottom:0}.photogallery .carousel-item .item a .item-caption{bottom:0;max-height:none;padding-bottom:10px;transform:translateY(101%)}.photogallery .carousel-item .item a .item-caption:after{display:none}.photogallery .carousel-item .item a:hover .item-caption,.photogallery .carousel-item .item a:focus .item-caption{transform:translateY(0)}}.photogallery .item-index{position:absolute;font-size:.93rem;top:.3em;right:.3em;background:rgba(0,0,0,0.8);color:#fff;line-height:1em;padding:.3em}@media (min-width: 576px){.photogallery .item-index{display:none}}@media (hover: hover){.photogallery.key-activated .carousel-item.active .item a .item-caption{transform:translateY(0)}}.gallery-prev,.gallery-next{position:absolute;display:block;line-height:0px;font-size:0px;cursor:pointer;background:transparent;color:transparent;top:50%;-webkit-transform:translate(0, -50%);-ms-transform:translate(0, -50%);transform:translate(0, -50%);border:none;outline:none;width:auto;bottom:auto;z-index:4;padding:15px;transition:opacity .2s;text-decoration:none}.gallery-prev:hover,.gallery-prev:focus,.gallery-next:hover,.gallery-next:focus{outline:none;background:transparent;color:transparent}.gallery-prev:hover:before,.gallery-prev:focus:before,.gallery-next:hover:before,.gallery-next:focus:before{opacity:1}.gallery-prev:before,.gallery-next:before{font-family:"Font Awesome 5";font-weight:900;font-size:36px;line-height:1;color:#fff;opacity:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-shadow:0 0 12px #000}@media (hover: hover){.gallery-prev:before,.gallery-next:before{font-size:36px}}.gallery-prev{left:1%}.gallery-prev:before{content:"\f137"}.gallery-next{right:1%}.gallery-next:before{content:"\f138"}.carousel-indicators.gallery-thumbnails>*:focus{outline:none !important;box-shadow:none !important}.carousel-indicators.gallery-thumbnails>*:focus:after{opacity:1;box-shadow:inset 0 0 0 2px #000, inset 0 0 0 4px #2491eb, inset 0 0 0 6px #fff}.carousel-indicators.gallery-thumbnails>*:focus img{opacity:1;transform:scale3d(1.05, 1.05, 1)}.carousel-indicators.gallery-thumbnails>*:focus-visible:after{box-shadow:inset 0 0 0 0px #000, inset 0 0 0 3px #2491eb, inset 0 0 0 5px #fff !important;outline:2px solid rgba(11,161,242,0.9) !important}.carousel-item a:has(img):focus{outline:none !important;box-shadow:none !important}.carousel-item a:has(img):focus:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;box-shadow:inset 0 0 0 2px #000, inset 0 0 0 4px #2491eb, inset 0 0 0 6px #fff}.carousel-item a:has(img):focus:not(:focus-visible):after{box-shadow:none !important;outline:none !important}.carousel-item a:has(img):focus-visible:after{box-shadow:inset 0 0 0 2px #000, inset 0 0 0 6px #2491eb, inset 0 0 0 8px #fff !important;outline:2px solid rgba(11,161,242,0.9) !important}.photogallery .carousel-item .item a:focus .item-caption{right:3px;bottom:3px;left:3px}.carousel-control-next:focus,.carousel-control-prev:focus{box-shadow:0 0 0 2px #2491eb, 0 0 0 3px #000, 0 0 0 2px #fff inset !important;outline:1px solid rgba(11,161,242,0.9) !important}.carousel-control-next:focus-visible,.carousel-control-prev:focus-visible{box-shadow:0 0 0 3px #2491eb, 0 0 0 5px #000, 0 0 0 2px #fff inset !important;outline:2px solid rgba(11,161,242,0.9) !important}.carousel[data-gallery-type="masonry"] .carousel-item a:focus img,.carousel[data-gallery-type="tabs"] .carousel-item a:focus img,.carousel[data-gallery-type="tiled"] .carousel-item a:focus img{transform:scale3d(1.05, 1.05, 1)}.carousel[data-transition='crossfade'] .carousel-item{transition:transform .6s ease;opacity:1;z-index:1}.carousel[data-transition='crossfade'] .carousel-item-prev,.carousel[data-transition='crossfade'] .active.carousel-item-left,.carousel[data-transition='crossfade'] .carousel-item-next,.carousel[data-transition='crossfade'] .active.carousel-item-right{transform:scale(1.001, 1.001);z-index:2}.carousel[data-transition='crossfade'] .active.landscape.carousel-item-left,.carousel[data-transition='crossfade'] .active.portrait.carousel-item-left,.carousel[data-transition='crossfade'] .active.landscape.carousel-item-right,.carousel[data-transition='crossfade'] .active.portrait.carousel-item-right{animation:.6s both reverse carouselCrossFadeIn}.carousel[data-transition='crossfade'] .carousel-item-next.carousel-item-left,.carousel[data-transition='crossfade'] .carousel-item-prev.carousel-item-right{transform:scale(1, 1);animation:.6s both carouselCrossFadeIn;z-index:3}@keyframes carouselCrossFadeIn{from{opacity:0}to{opacity:1}}.carousel[data-transition='none'] .carousel-item{transition:none}.carousel-ysi-lazyinit .carousel-control-next,.carousel-ysi-lazyinit .carousel-control-prev,.carousel-ysi-lazyinit .carousel-indicators{display:none}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel.picture-overlay:after{content:none}.carousel.picture-overlay.overlay-10,.carousel.picture-overlay.overlay-20,.carousel.picture-overlay.overlay-30,.carousel.picture-overlay.overlay-40,.carousel.picture-overlay.overlay-50,.carousel.picture-overlay.overlay-60,.carousel.picture-overlay.overlay-70,.carousel.picture-overlay.overlay-80,.carousel.picture-overlay.overlay-90{background-color:initial}.carousel.picture-overlay.overlay-10 picture:after{background-color:rgba(0,0,0,0.1)}.carousel.picture-overlay.overlay-20 picture:after{background-color:rgba(0,0,0,0.2)}.carousel.picture-overlay.overlay-30 picture:after{background-color:rgba(0,0,0,0.3)}.carousel.picture-overlay.overlay-40 picture:after{background-color:rgba(0,0,0,0.4)}.carousel.picture-overlay.overlay-50 picture:after{background-color:rgba(0,0,0,0.5)}.carousel.picture-overlay.overlay-60 picture:after{background-color:rgba(0,0,0,0.6)}.carousel.picture-overlay.overlay-70 picture:after{background-color:rgba(0,0,0,0.7)}.carousel.picture-overlay.overlay-80 picture:after{background-color:rgba(0,0,0,0.8)}.carousel.picture-overlay.overlay-90 picture:after{background-color:rgba(0,0,0,0.9)}.carousel.picture-overlay picture{position:relative;width:100%;display:contents}.carousel.picture-overlay picture:after{content:"";position:absolute;width:100%;height:100%;background:rgba(0,0,0,0.4);top:0;left:0;z-index:1;pointer-events:none}.carousel[data-gallery-type="stackedthumbnailcarousel"] .carousel-indicators.gallery-thumbnails>*:not(.active):focus:after{opacity:1;box-shadow:inset 0 0 0 2px #000, inset 0 0 0 5px #2491eb, inset 0 0 0 7px #fff !important;outline:2px solid rgba(11,161,242,0.9) !important}.photogallery .carousel .carousel-item{padding:0}.photogallery .carousel .carousel-item .item{display:flex;align-items:center;justify-content:center;position:relative;width:auto}.photogallery .carousel .carousel-item .item a{position:relative;overflow:hidden;max-height:100%}.photogallery .carousel-item .item.item-with-ratio{position:absolute;top:0;right:0;bottom:0;left:0}.photogallery .carousel-item .item.item-with-ratio a{display:inline-flex;max-width:100%;max-height:100%;align-items:center;justify-content:center}.photogallery .carousel-item .item.item-with-ratio img{flex:0 0 auto;max-width:100%;max-height:100%}.carousel-indicators.gallery-dots{bottom:unset;top:100%}.d-flex>.photogallery .carousel-indicators.gallery-dots{top:unset}.dots-on-top .carousel-indicators.gallery-dots{bottom:auto;top:0;position:absolute;padding:0 10px;display:flex;justify-content:flex-end}.container .photogallery .item img{max-height:calc(100vw - 15px - 15px);width:unset;height:unset;max-width:100%;object-fit:unset;transition:none}@media (min-width: 576px){.container .photogallery .item img{max-height:calc(540px - 15px - 15px)}}@media (min-width: 768px){.container .photogallery .item img{max-height:calc(720px - 15px - 15px)}}@media (min-width: 992px){.container .photogallery .item img{max-height:calc(960px - 15px - 15px)}}@media (min-width: 1200px){.container .photogallery .item img{max-height:calc(1140px - 15px - 15px)}}.container .photogallery .carousel-inner-wrapper:before{content:'';display:block;width:1px;height:0;padding-bottom:33.3333%;margin-left:-1px;float:left;background:transparent}.photogallery:before{float:none;display:inline;margin-left:auto;width:1px}.photogallery .carousel-inner-wrapper{vertical-align:middle;width:100%;display:inline-flex;align-items:center}.photogallery[data-gallery-type="default"]:not(.normalized) .carousel-control-prev,.photogallery[data-gallery-type="default"]:not(.normalized) .carousel-control-next{opacity:0}.photogallery[data-gallery-type="default"] .carousel-inner{transition:background .2s}.photogallery[data-gallery-type="default"]:not(.normalized) .carousel-inner{background:none}.photogallery[data-gallery-type="default"][data-has-height="true"] .carousel-item .item picture img{width:100%;height:100%;object-fit:contain}.photogallery[data-gallery-type="default"][data-has-height="true"] .carousel-item .item picture img.object-fit-cover{min-width:100%;min-height:100%;object-fit:cover}@media (min-width: 576px){.carousel[data-slide-size] .carousel-item{width:50%}.carousel[data-slide-size="1"] .carousel-item{width:100%}}@media (min-width: 768px){.carousel[data-slide-size] .carousel-item{width:33.33%}.carousel[data-slide-size="1.5"] .carousel-item,.carousel[data-slide-size="2"] .carousel-item{width:50%}.carousel[data-slide-size="1"] .carousel-item{width:100%}.carousel[data-slide-size="1.5"] .carousel-inner{width:133%}.carousel[data-slide-size="1.5"] .gallery-next{right:25.56%}.carousel[data-slide-size="2.5"] .carousel-inner,.carousel[data-slide-size="3.5"] .carousel-inner,.carousel[data-slide-size="4.5"] .carousel-inner{width:120%}.carousel[data-slide-size="2.5"] .gallery-next,.carousel[data-slide-size="3.5"] .gallery-next,.carousel[data-slide-size="4.5"] .gallery-next{right:17.5%}}@media (min-width: 992px){.carousel[data-slide-size] .carousel-item{width:20%}.carousel[data-slide-size="3.5"] .carousel-item,.carousel[data-slide-size="4"] .carousel-item{width:25%}.carousel[data-slide-size="2.5"] .carousel-item,.carousel[data-slide-size="3"] .carousel-item{width:33.33%}.carousel[data-slide-size="1.5"] .carousel-item,.carousel[data-slide-size="2"] .carousel-item{width:50%}.carousel[data-slide-size="1"] .carousel-item{width:100%}.carousel[data-slide-size="3.5"] .carousel-inner{width:114%}.carousel[data-slide-size="3.5"] .gallery-next{right:13.16%}.carousel[data-slide-size="4.5"] .carousel-inner{width:111%}.carousel[data-slide-size="4.5"] .gallery-next{right:10.81%}}.on-deck:not(.active){display:block;position:absolute;top:0}.carousel[data-gallery-type="cards"] .carousel-item .item.item-with-ratio a{display:flex;margin:auto;height:100%;max-height:100% !important;flex-direction:column;justify-content:space-between}.carousel[data-gallery-type="cards"] .item-index{display:block;position:relative;right:0;top:0 !important;background:transparent;color:inherit;padding-top:.5em !important;padding-bottom:.5em !important}.carousel[data-gallery-type="cards"] .card,.carousel[data-gallery-type="cards"] .panel-thumbnail{height:100%}.carousel[data-gallery-type="cards"] .img-info{position:relative;width:100%;background:rgba(255,255,255,0.85);transform:none;padding:0}.carousel[data-gallery-type="cards"] .carousel-inner{background:transparent}.carousel[data-gallery-type="cards"] .featured-property-card .card-img-top{padding:0 0 66%;height:0;overflow:hidden;position:relative}.carousel[data-gallery-type="cards"] .featured-property-card .card-img-top a{display:block;position:absolute;height:100%;width:100%;background:rgba(0,0,0,0.025)}.carousel[data-gallery-type="cards"] .featured-property-card .card-img-top img{position:absolute;top:50%;left:0;right:0;transform:translateY(-50%)}.carousel[data-gallery-type="cards"] .item.col{height:100%;padding-left:5px;padding-right:5px}</style> | |
| 919 | + | |
| 920 | +<style>:root{--primary-color: $primary}#innerpage main>.container-fluid.p-0:has(#rentestimatepagecontainer){overflow:unset}#rentestimatepagecontainer{--rentestimate-iframe-offset: 0;--rentestimate-clip-top: 0}#rentestimatepagecontainer iframe{width:100%;display:block;height:0;border:0;clip-path:rect(var(--rentestimate-clip-top, 0) 100% 100% 0)}#iframeheader{background:inherit;background:#fff;top:var(--rentestimate-iframe-offset, 0);position:sticky;z-index:2;box-shadow:none;transition:box-shadow .3s}#iframeheader.sticky{box-shadow:0 .125rem .25rem -.25rem #00000085}#iframeheader .sticky-show{display:none}#iframeheader.sticky .sticky-show{display:block}#iframeFooter{box-shadow:0 -.125rem .25rem -.25rem #00000085;background:#fff;top:100dvh;position:absolute;left:0;right:0;z-index:1}#iframeFooter.sticky{bottom:-1px;position:sticky;top:unset !important}#sendEstimateModal .modal-content{overflow:hidden}#sendEstimateModal .modal-header{position:relative;z-index:2}#sendEstimateModal .invalid-feedback{color:#b51f2e;font-size:0.75rem;line-height:1.25}#sendEstimateModal .sms-optin-check .form-check-label::before,#sendEstimateModal .sms-optin-check .form-check-label::after{content:none !important;display:none !important;border:0 !important;background:none !important;box-shadow:none !important;margin-top:.3rem !important;margin:0 !important;padding:0 !important;min-width:0 !important;width:0 !important;height:0 !important;position:static !important;transform:none !important;outline:none !important}#sendEstimateModal .optin-terms,#sendEstimateModal .sms-optin-check .form-check-label,#sendEstimateModal .sms-optin-check .form-check-label p,#sendEstimateModal #costestimate-smsopttext,#sendEstimateModal #costestimate-smsopttext p,#sendEstimateModal .form-group:has(.sms-optin-check)>.mb-1{font-size:0.8125rem;line-height:1.45}#sendEstimateModal .sms-optin-check .form-check-label p:last-child,#sendEstimateModal #costestimate-smsopttext p:last-child{margin-bottom:0}#sendEstimateModal .optin-terms a,#sendEstimateModal .sms-optin-check .form-check-label a,#sendEstimateModal #costestimate-smsopttext a{font-size:inherit}#sendEstimateModal .form-group.position-relative #emailIcon.check-icon{position:absolute;right:0.75rem;top:50%;transform:translateY(-50%);pointer-events:none;line-height:1}#RentEstimateModal .modal-body{height:calc(100vh - 60px);min-height:calc(100vh - 60px);display:flex;flex-direction:column;overflow:hidden;padding:0}#RentEstimateModal #rentestimatepagecontainer{height:100% !important;min-height:100% !important;display:flex !important;flex-direction:column !important;overflow:hidden !important;position:relative !important;--rentestimate-clip-top: 0 !important;--rentestimate-iframe-offset: 0 !important}#RentEstimateModal #rentestimatepagecontainer iframe{flex:1 1 auto !important;height:calc(100vh - 60px) !important;min-height:calc(100vh - 60px) !important;max-height:calc(100vh - 60px) !important;width:100% !important;border:0 !important;clip-path:none !important;display:block !important;padding-bottom:5%}@media (max-width: 991.98px){#RentEstimateModal #rentestimatepagecontainer iframe{padding-bottom:45%}}#sendEstimateDescription{background:#fff;background:oklch(from #2D3D4D 0.98 0.02 h);background-size:cover}#sendEstimateDescription.has-background-image>div{margin-top:10rem;background:#fffd}#sendEstimateDescription svg.circle-small{height:.5rem;margin:0 .5rem}.message{display:flex;align-items:flex-start;gap:10px;padding:12px 20px;margin:10px 0;border-radius:4px;font-size:16px}.sicon{font-size:40px;color:#28a745;margin-top:0.75rem;margin-right:0.5rem}.eicon{font-size:40px;color:#dc3545;margin-top:0.75rem;margin-right:0.5rem}.success{background-color:#d4edda;border:1px solid #28a745}.error{background-color:#f8d7da;border:1px solid #dc3545}.left-48px{left:-48px !important}@media screen and (max-width: 768px){.left-48px{left:0px !important}}.gap-1{gap:1rem !important}.custom-text-lightgray{color:lightgray !important}</style> | |
| 921 | + | |
| 922 | + | |
| 923 | +<div class="bg-white container-fluid p-0 ysi-row speciality_property_detail_page" customlabelreplaced=""><div class="row no-gutters" customlabelreplaced=""><div class="col-12 col-lg-12" customlabelreplaced=""><div class="px-xl-8 px-md-4 px-3" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""><div class="col-12 px-md-3 col-lg-12" customlabelreplaced=""> | |
| 924 | + <nav aria-label="breadcrumb"> | |
| 925 | + <ol class="breadcrumb mt-3 p-0"> | |
| 926 | + <li class="breadcrumb-item" customlabelreplaced=""><a href="/" customlabelreplaced="">Home </a></li> | |
| 927 | + <li class="breadcrumb-item" customlabelreplaced=""><a href="/qc/our-communities" customlabelreplaced="">QC </a></li> | |
| 928 | + <li class="breadcrumb-item" customlabelreplaced=""><a href="/qc/gatineau/our-communities" customlabelreplaced="">Gatineau </a></li> | |
| 929 | + <li class="breadcrumb-item active" aria-current="page" customlabelreplaced="">Champlain Bloc 2 - UAT</li> | |
| 930 | + </ol> | |
| 931 | + </nav> | |
| 932 | + </div></div></div></div><div class="px-xl-5 py-md-5 px-md-3 py-4 text-white bg-primary" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""><div class="col-12 col-lg-12" customlabelreplaced=""> | |
| 933 | +<!-- Address row --> | |
| 934 | +<div class="row" customlabelreplaced=""> | |
| 935 | + <div class="col-12 col-lg-9 d-flex flex-column flex-lg-row" customlabelreplaced=""> | |
| 936 | + <div class="ysi-logo-widget ysi-logo-wrapper pb-3 pb-lg-0 d-flex align-items-center justify-content-center justify-content-lg-start" data-widget-order="1" customlabelreplaced="" aria-hidden="true"><a href="/" class="d-inline-block" customlabelreplaced=""><picture id="logo707"> | |
| 937 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_200,h_200,dpr_2/s3/2/252329/companylogo(4).png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_200,h_200/s3/2/252329/companylogo(4).png"> | |
| 938 | + | |
| 939 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fit,w_200,h_200,dpr_2/s3/2/252329/companylogo(4).png 2x"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_200,h_200/s3/2/252329/companylogo(4).png" class="d-inline-block img-fluid" alt="The image shows the word "bright" in large, bold letters." width="200" height="80"> | |
| 940 | +</picture> | |
| 941 | +</a></div> | |
| 942 | + | |
| 943 | + | |
| 944 | + | |
| 945 | + <div class="ml-lg-4 d-flex flex-column justify-content-center align-items-center align-items-lg-start text-center text-lg-left header-address" customlabelreplaced=""> | |
| 946 | + <!-- Address --> | |
| 947 | + <div class="ysi-address-widget" customlabelreplaced=""> | |
| 948 | + <div class="d-inline-flex" customlabelreplaced=""> | |
| 949 | + <address class="ysi-address mb-0"> | |
| 950 | + <div itemprop="name" data-selenium-id="address_propname" customlabelreplaced="">Champlain Bloc 2 - UAT <button id="favorite-btn" class="px-2 btn btn-link text-white text-decoration-none" aria-label="Add Champlain Bloc 2 - UAT as favorite" data-property="Champlain Bloc 2 - UAT" customlabelreplaced=""><span class="nu nu-heart text-lg" aria-hidden="true" customlabelreplaced=""></span></button></div> | |
| 951 | + <div itemprop="address" customlabelreplaced="">30 de la Bonne-Renommée, Gatineau, QC J9H 0L1</div> | |
| 952 | + </address> | |
| 953 | + </div> | |
| 954 | + </div> | |
| 955 | + <!-- Address token close here --> | |
| 956 | + <!-- Phone No. widget will come here --> | |
| 957 | + | |
| 958 | + | |
| 959 | + <style>.mobile-only .click-to-call{display:none}</style> | |
| 960 | + | |
| 961 | + <div class="ysi-phone-widget ysi-phone-wrapper " customlabelreplaced=""> | |
| 962 | + <div class="d-inline-flex" customlabelreplaced=""> | |
| 963 | + <a data-selenium-id="click_to_call" onclick="fireGaPhone()" href="tel:+1 819-568-1771" aria-label="Call 6881530 Canada Inc (Brigil) at +1 819-568-1771" class="ysi-phone-number click-to-call-href click-to-call-href-p1968647 text-decoration-none color-inherit " customlabelreplaced=""> | |
| 964 | + <span aria-hidden="true" class="fa-flip-horizontal fas fa-phone" customlabelreplaced=""></span> | |
| 965 | + <span data-selenium-id="click_to_call_span" class="click-to-call click-to-call-p1968647 ml-2 text-underline" customlabelreplaced="">+1 819-568-1771</span> | |
| 966 | + </a> | |
| 967 | + | |
| 968 | + </div> | |
| 969 | + </div> | |
| 970 | + <script> | |
| 971 | + function fireGaPhone() { | |
| 972 | + if (typeof gtag != 'undefined') { | |
| 973 | + var myPage = location.pathname.replace("/", ""); | |
| 974 | + if (myPage == "") { myPage = "index"; } | |
| 975 | + if (true ) { | |
| 976 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 977 | + gtag('event', 'phone_call', { 'property_name': propertyName, 'page_name': document.title, 'page_url': window.location.href, 'header_phone_number': '+1 819-568-1771'}); | |
| 978 | + } | |
| 979 | + gtag('event', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 980 | + gtag('rc.send', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 981 | + } | |
| 982 | + } | |
| 983 | + </script> | |
| 984 | + | |
| 985 | + | |
| 986 | + | |
| 987 | + <!-- Social Media --> | |
| 988 | + <div class="social-media-block" customlabelreplaced=""> | |
| 989 | + | |
| 990 | + | |
| 991 | + | |
| 992 | + </div> | |
| 993 | + </div> | |
| 994 | + </div> | |
| 995 | + | |
| 996 | + <div class="col-12 col-lg-3 justify-content-center align-items-center flex-column d-flex text-center text-lg-left mt-2 mt-lg-0" customlabelreplaced=""> | |
| 997 | + | |
| 998 | + | |
| 999 | + <!-- Action buttons --> | |
| 1000 | + <div class="d-inline-flex py-2" customlabelreplaced=""> | |
| 1001 | + | |
| 1002 | + <button id="header-contact-us-btn" type="button" class="btn btn-white btn-round px-lg-3 px-xl-4 contact-us-btn" data-toggle="modal" data-target="#ContactUsModal" customlabelreplaced=""> Contact Us<span class="sr-only" customlabelreplaced="">opens a dialog</span> </button> | |
| 1003 | + | |
| 1004 | + <!-- Schedule tour button (mobile only) --> | |
| 1005 | + <button type="button" class="btn btn-primary btn-round px-lg-3 px-xl-4 ml-2 d-block d-md-none schedule-a-tour-btn" data-toggle="modal" data-target="#schedule-tour-window" customlabelreplaced=""> | |
| 1006 | + Schedule Tour<span class="sr-only" customlabelreplaced="">opens a dialog</span> | |
| 1007 | + </button> | |
| 1008 | + </div> | |
| 1009 | + </div> | |
| 1010 | +</div> | |
| 1011 | +<!-- Address row --></div></div></div></div><div data-offset-top="270" id="stickyTopSentinel1" class="stickytopsentinel" style="position: absolute; left: 0px; width: 1px; height: 1px; z-index: 0;"></div><div class="text-dark bg-white container-fluid p-0 ysi-row sticky-top speciality-nav" customlabelreplaced=""><div class="row no-gutters" customlabelreplaced=""><div class="px-xl-5 px-md-4 col-12 offset-0 col-lg-12" customlabelreplaced=""> | |
| 1012 | + <nav> | |
| 1013 | + <ul class="specialitymenu" customlabelreplaced=""> | |
| 1014 | + <li class="speciality-nav-item"> | |
| 1015 | + <a class="speciality-nav-link active" href="#overview">Property Overview</a> | |
| 1016 | + </li><li class="speciality-nav-item"> | |
| 1017 | + <a class="speciality-nav-link" href="#floor-plans">Floor Plans</a> | |
| 1018 | + </li><li class="speciality-nav-item"> | |
| 1019 | + <a class="speciality-nav-link" href="#neighborhood">Map</a> | |
| 1020 | + </li></ul> | |
| 1021 | + </nav> | |
| 1022 | + </div></div></div><div class="container-fluid p-0" customlabelreplaced=""><div class="row no-gutters" customlabelreplaced=""><div class="p-0 col-12 col-lg-12" customlabelreplaced=""></div></div></div><div class="scroll-section align-items-start px-xl-5 py-md-5 px-md-4 py-4" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""><div class="text-center text-md-left col-md-8 col-lg-8" customlabelreplaced=""> | |
| 1023 | + | |
| 1024 | + | |
| 1025 | + | |
| 1026 | +<div id="overview" class="property-overview property-detail-page-section" customlabelreplaced=""> | |
| 1027 | + <h1 class="mb-3" data-selenium-id="SID_h1Tag" customlabelreplaced="">Property Overview</h1> | |
| 1028 | + <div class="py-lg-3 pb-3 d-inline-flex flex-column flex-lg-row" customlabelreplaced=""> | |
| 1029 | + | |
| 1030 | + | |
| 1031 | + <div class="d-inline-flex" customlabelreplaced=""> | |
| 1032 | + <!-- Bedrooms --> | |
| 1033 | + <div class="pb-lg-2" customlabelreplaced=""> | |
| 1034 | + <span class="pr-1" customlabelreplaced="">1–2 Beds</span> | |
| 1035 | + </div> | |
| 1036 | + <div class="line-divider" customlabelreplaced=""></div> | |
| 1037 | + <!-- Bathrooms --> | |
| 1038 | + <div class="pb-lg-2" customlabelreplaced=""> | |
| 1039 | + <span class="pr-1" customlabelreplaced="">1 Bath</span> | |
| 1040 | + </div> | |
| 1041 | + </div> | |
| 1042 | + | |
| 1043 | + | |
| 1044 | + </div> | |
| 1045 | + <!-- Property overview section ends here --> | |
| 1046 | +</div> | |
| 1047 | +</div><div class="text-center text-md-left col-md-4 col-lg-4" customlabelreplaced=""> | |
| 1048 | + <h2 class="mb-3" customlabelreplaced="">Office Hours</h2> | |
| 1049 | + | |
| 1050 | + | |
| 1051 | + <div class="ysi-office-hours-widget ysi-office-hours-wrapper" customlabelreplaced=""> | |
| 1052 | + <div class="d-inline-flex" customlabelreplaced=""> | |
| 1053 | + <div class="ysi-office-hours" data-selenium-id="SID_footer_officeHours" customlabelreplaced=""> | |
| 1054 | + <ul class="list-unstyled mb-0" customlabelreplaced=""> | |
| 1055 | + <li class=" " customlabelreplaced=""> | |
| 1056 | + <span class="office-hours-day" data-selenium-id="OHMonday" customlabelreplaced="">Monday: </span> | |
| 1057 | + <span class="office-hours-time" data-selenium-id="OHMondayTime" customlabelreplaced="">9 AM <span class="sr-only" customlabelreplaced="">to</span> - 6 PM</span> | |
| 1058 | +</li> | |
| 1059 | + <li class=" " customlabelreplaced=""> | |
| 1060 | + <span class="office-hours-day" data-selenium-id="OHTuesday" customlabelreplaced="">Tuesday: </span> | |
| 1061 | + <span class="office-hours-time" data-selenium-id="OHTuesdayTime" customlabelreplaced="">9 AM <span class="sr-only" customlabelreplaced="">to</span> - 6 PM</span> | |
| 1062 | +</li> | |
| 1063 | + <li class=" " customlabelreplaced=""> | |
| 1064 | + <span class="office-hours-day" data-selenium-id="OHWednesday" customlabelreplaced="">Wednesday: </span> | |
| 1065 | + <span class="office-hours-time" data-selenium-id="OHWednesdayTime" customlabelreplaced="">9 AM <span class="sr-only" customlabelreplaced="">to</span> - 6 PM</span> | |
| 1066 | +</li> | |
| 1067 | + <li class=" " customlabelreplaced=""> | |
| 1068 | + <span class="office-hours-day" data-selenium-id="OHThursday" customlabelreplaced="">Thursday: </span> | |
| 1069 | + <span class="office-hours-time" data-selenium-id="OHThursdayTime" customlabelreplaced="">9 AM <span class="sr-only" customlabelreplaced="">to</span> - 6 PM</span> | |
| 1070 | +</li> | |
| 1071 | + <li class=" " customlabelreplaced=""> | |
| 1072 | + <span class="office-hours-day" data-selenium-id="OHFriday" customlabelreplaced="">Friday: </span> | |
| 1073 | + <span class="office-hours-time" data-selenium-id="OHFridayTime" customlabelreplaced="">9 AM <span class="sr-only" customlabelreplaced="">to</span> - 6 PM</span> | |
| 1074 | +</li> | |
| 1075 | + <li class=" " customlabelreplaced=""> | |
| 1076 | + <span class="office-hours-day" data-selenium-id="OHSaturday" customlabelreplaced="">Saturday: </span> | |
| 1077 | + <span class="office-hours-time" data-selenium-id="OHSaturdayTime" customlabelreplaced="">10 AM <span class="sr-only" customlabelreplaced="">to</span> - 5 PM</span> | |
| 1078 | +</li> | |
| 1079 | + <li class=" " customlabelreplaced=""> | |
| 1080 | + <span class="office-hours-day" data-selenium-id="OHSunday" customlabelreplaced="">Sunday: </span> | |
| 1081 | + <span class="office-hours-time" data-selenium-id="OHSundayTime" customlabelreplaced="">1 PM <span class="sr-only" customlabelreplaced="">to</span> - 5 PM</span> | |
| 1082 | +</li> | |
| 1083 | + </ul> | |
| 1084 | + </div> | |
| 1085 | + </div> | |
| 1086 | + </div> | |
| 1087 | + | |
| 1088 | + | |
| 1089 | + | |
| 1090 | + | |
| 1091 | + <!-- Schedule a tour button (desktop only) --> | |
| 1092 | + <button type="button" class="btn btn-secondary btn-block w-auto contact-us-btn mt-3 btn-xpadded btn-round d-none d-md-block schedule-a-tour-btn" data-toggle="modal" data-target="#schedule-tour-window" customlabelreplaced=""> | |
| 1093 | + Schedule Tour<span class="sr-only" customlabelreplaced="">opens a dialog</span> | |
| 1094 | + </button> | |
| 1095 | + | |
| 1096 | + | |
| 1097 | + | |
| 1098 | + | |
| 1099 | +<div class="ysi-button-widget ysi-button-wrapper" customlabelreplaced=""> | |
| 1100 | + <a data-selenium-id="ApplicantLogin" class="btn text-lg track-secureyurl-1968647 track-applicant-login btn-link" href="https://brigil.securecafe.com/onlineleasing/champlain-bloc-2-0/guestlogin.aspx?dropdownlangid=999" style="" target="_blank" rel="noopener" customlabelreplaced=""> | |
| 1101 | + Applicant Login | |
| 1102 | + <span class="sr-only" customlabelreplaced="">Login Opens in a new tab</span> | |
| 1103 | + </a> | |
| 1104 | +</div> | |
| 1105 | + | |
| 1106 | + | |
| 1107 | + | |
| 1108 | + | |
| 1109 | +<div class="ysi-button-widget ysi-button-wrapper" customlabelreplaced=""> | |
| 1110 | + <a data-selenium-id="ResidentLogin" class="btn text-lg track-secureyurl-1968647 track-resident-login btn-link" href="https://brigil.securecafe.com/residentservices/champlain-bloc-2-0/userlogin.aspx?dropdownlangid=999" style="" target="_blank" rel="noopener" customlabelreplaced=""> | |
| 1111 | + Resident Login | |
| 1112 | + <span class="sr-only" customlabelreplaced="">Login Opens in a new tab</span> | |
| 1113 | + </a> | |
| 1114 | +</div> | |
| 1115 | +</div></div></div></div><div class="scroll-section align-items-start px-xl-5 px-md-4" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""><div class="temp-d-none border-top py-md-5 py-4 col-12 offset-0 d-flex justify-content-start align-items-stretch flex-column text-center text-md-left col-lg-12" customlabelreplaced=""> | |
| 1116 | + | |
| 1117 | + | |
| 1118 | + <div id="floor-plans" class="property-detail-page-section" customlabelreplaced=""> | |
| 1119 | + <h2 class="mb-3" customlabelreplaced="">Floor Plans</h2> | |
| 1120 | + | |
| 1121 | + | |
| 1122 | + | |
| 1123 | + | |
| 1124 | + <!-- Floor plans carousel --> | |
| 1125 | + | |
| 1126 | + | |
| 1127 | +<div role="region" aria-label="Floor plans carousel" id="carousel-floor-plans" data-gallery-type="cards" class="photogallery carousel slide p-0 normalized text-dark" data-ride="carousel" data-interval="false" data-slide-size="3" customlabelreplaced="" style="z-index: 1; height: 679px;"> | |
| 1128 | + <div class="carousel-inner" customlabelreplaced=""> | |
| 1129 | + <button type="button" class="carousel-control-prev gallery-prev d-none" data-target="#carousel-floor-plans" data-slide="prev" aria-label="Previous Slide" data-selenium-id="CarouserlBtnPrevious" customlabelreplaced=""> | |
| 1130 | + </button> | |
| 1131 | + | |
| 1132 | + | |
| 1133 | +<!-- Hidden input for layout type (false = optimized) --> | |
| 1134 | +<input type="hidden" id="UseUpdatedFloorPlanLayout" name="UseUpdatedFloorPlanLayout" value="false"> | |
| 1135 | + | |
| 1136 | + | |
| 1137 | + | |
| 1138 | + <div id="fp-container-5667014" class="fp-container carousel-item active on-deck" translate-content="" customlabelreplaced="" style=""> | |
| 1139 | + <div class="item col" customlabelreplaced="" style="height: 679px;"> | |
| 1140 | + <div class="card text-center h-100 " customlabelreplaced=""> | |
| 1141 | + <div class="card-header bg-transparent border-bottom-0 pt-4 pb-0" customlabelreplaced=""> | |
| 1142 | + <h2 id="fp-header-0" class="card-title h4 font-weight-bold text-capitalize" customlabelreplaced=""> | |
| 1143 | + 1 B | |
| 1144 | + </h2> | |
| 1145 | + | |
| 1146 | + <ul class="list-unstyled list-inline mb-2 text-sm" customlabelreplaced=""> | |
| 1147 | + | |
| 1148 | + | |
| 1149 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1150 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bed text-dark text-md mr-1" customlabelreplaced=""></span>1 <span customlabelreplaced="">Bed</span></div> | |
| 1151 | + </li> | |
| 1152 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1153 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bathroom text-dark text-md mr-1" customlabelreplaced=""></span>1 <span customlabelreplaced="">Bath</span></div> | |
| 1154 | + </li> | |
| 1155 | + <li class="list-inline-item w-100" customlabelreplaced=""> | |
| 1156 | + <div class="d-flex align-items-center justify-content-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-area font-weight-medium text-dark text-md mr-1" customlabelreplaced=""></span>605 Sq. Ft.</div> | |
| 1157 | + </li> | |
| 1158 | + </ul> | |
| 1159 | + | |
| 1160 | + | |
| 1161 | + | |
| 1162 | + </div> | |
| 1163 | + <div class="card-img fp-thumb px-3 d-flex justify-content-center align-items-center" customlabelreplaced=""> | |
| 1164 | + <img alt="" title="" class="img-fluid" src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_320/s3/NoImage.jpg"> | |
| 1165 | + </div> | |
| 1166 | + <div class="card-body" customlabelreplaced=""> | |
| 1167 | + <div class="p-2 fieldset bg-light border rounded d-flex flex-column align-items-center justify-content-center mb-2" customlabelreplaced=""> | |
| 1168 | +<p class="legend" customlabelreplaced=""></p> | |
| 1169 | + | |
| 1170 | + | |
| 1171 | + <div class="d-flex align-items-center" customlabelreplaced=""> | |
| 1172 | + <span class="font-weight-bold mb-1 text-md" customlabelreplaced=""> | |
| 1173 | + <span class="text-sm text-muted" customlabelreplaced="">Starting at</span> | |
| 1174 | + $1,895.00 | |
| 1175 | + <span class="text-sm text-muted" customlabelreplaced="">/Month</span> | |
| 1176 | + </span> | |
| 1177 | + | |
| 1178 | + </div> | |
| 1179 | + | |
| 1180 | + | |
| 1181 | + | |
| 1182 | + | |
| 1183 | + | |
| 1184 | + </div> | |
| 1185 | + | |
| 1186 | + <div class="row" customlabelreplaced=""> | |
| 1187 | + <div class="btn btn-outline-dark btn-block modal-button w-100" style="visibility:hidden;" customlabelreplaced=""> | |
| 1188 | + <wbr> </div> | |
| 1189 | + <div class="col-12 my-2" customlabelreplaced=""> | |
| 1190 | + <a href="https://brigil.securecafe.com/onlineleasing/champlain-bloc-2-0/availableunits.aspx?FloorPlanID=5667014" class="btn btn-primary btn-block btn-block track-apply floorplan-action-button" name="applynow" data-leasingtype="conventional" data-floorplan-name="1 B" data-floorplan-size="1" data-floorplan-sqft="605" data-floorplan-price="1895" data-selenium-id="floorplan-0-apply-btn" customlabelreplaced=""> | |
| 1191 | + Availability <span class="sr-only" customlabelreplaced=""> for 1 B</span> | |
| 1192 | + </a> | |
| 1193 | + </div> | |
| 1194 | + | |
| 1195 | + <div class="col-12" customlabelreplaced=""> | |
| 1196 | + <div class="btn-group dropup w-100" customlabelreplaced=""> | |
| 1197 | + <button type="button" class="btn btn-outline-dark btn-block schedule-a-tour-btn" data-toggle="modal" data-target="#schedule-tour-window" customlabelreplaced=""> | |
| 1198 | + Schedule Tour<span class="sr-only" customlabelreplaced="">opens a dialog</span> | |
| 1199 | + </button> | |
| 1200 | + </div> | |
| 1201 | + </div> | |
| 1202 | + </div> | |
| 1203 | + | |
| 1204 | + </div> | |
| 1205 | + | |
| 1206 | + </div> | |
| 1207 | + </div> | |
| 1208 | + </div> | |
| 1209 | + <div id="fp-container-5667016" class="fp-container carousel-item on-deck" translate-content="" customlabelreplaced="" style="transform: translate3d(100%, 0px, 0px);"> | |
| 1210 | + <div class="item col" customlabelreplaced="" style="height: 679px;"> | |
| 1211 | + <div class="card text-center h-100 " customlabelreplaced=""> | |
| 1212 | + <div class="card-header bg-transparent border-bottom-0 pt-4 pb-0" customlabelreplaced=""> | |
| 1213 | + <h2 id="fp-header-1" class="card-title h4 font-weight-bold text-capitalize" customlabelreplaced=""> | |
| 1214 | + 2 B | |
| 1215 | + </h2> | |
| 1216 | + | |
| 1217 | + <ul class="list-unstyled list-inline mb-2 text-sm" customlabelreplaced=""> | |
| 1218 | + | |
| 1219 | + | |
| 1220 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1221 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bed text-dark text-md mr-1" customlabelreplaced=""></span>2 <span customlabelreplaced="">Bed</span></div> | |
| 1222 | + </li> | |
| 1223 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1224 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bathroom text-dark text-md mr-1" customlabelreplaced=""></span>1 <span customlabelreplaced="">Bath</span></div> | |
| 1225 | + </li> | |
| 1226 | + <li class="list-inline-item w-100" customlabelreplaced=""> | |
| 1227 | + <div class="d-flex align-items-center justify-content-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-area font-weight-medium text-dark text-md mr-1" customlabelreplaced=""></span>736-<span class="sr-only" customlabelreplaced="">to</span>840 Sq. Ft.</div> | |
| 1228 | + </li> | |
| 1229 | + </ul> | |
| 1230 | + | |
| 1231 | + | |
| 1232 | + | |
| 1233 | + </div> | |
| 1234 | + <div class="card-img fp-thumb px-3 d-flex justify-content-center align-items-center" customlabelreplaced=""> | |
| 1235 | + <img alt="" title="" class="img-fluid" src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_320/s3/NoImage.jpg"> | |
| 1236 | + </div> | |
| 1237 | + <div class="card-body" customlabelreplaced=""> | |
| 1238 | + <div class="p-2 fieldset bg-light border rounded d-flex flex-column align-items-center justify-content-center mb-2" customlabelreplaced=""> | |
| 1239 | +<p class="legend" customlabelreplaced=""></p> | |
| 1240 | + | |
| 1241 | + | |
| 1242 | + <div class="d-flex align-items-center" customlabelreplaced=""> | |
| 1243 | + <span class="font-weight-bold mb-1 text-md" customlabelreplaced=""> | |
| 1244 | + <span class="text-sm text-muted" customlabelreplaced="">Starting at</span> | |
| 1245 | + $2,145.00 | |
| 1246 | + <span class="text-sm text-muted" customlabelreplaced="">/Month</span> | |
| 1247 | + </span> | |
| 1248 | + | |
| 1249 | + </div> | |
| 1250 | + | |
| 1251 | + | |
| 1252 | + | |
| 1253 | + | |
| 1254 | + | |
| 1255 | + </div> | |
| 1256 | + | |
| 1257 | + <div class="row" customlabelreplaced=""> | |
| 1258 | + <div class="btn btn-outline-dark btn-block modal-button w-100" style="visibility:hidden;" customlabelreplaced=""> | |
| 1259 | + <wbr> </div> | |
| 1260 | + <div class="col-12 my-2" customlabelreplaced=""> | |
| 1261 | + <a href="https://brigil.securecafe.com/onlineleasing/champlain-bloc-2-0/availableunits.aspx?FloorPlanID=5667016" class="btn btn-primary btn-block btn-block track-apply floorplan-action-button" name="applynow" data-leasingtype="conventional" data-floorplan-name="2 B" data-floorplan-size="2" data-floorplan-sqft="736 -840" data-floorplan-price="2145 -2400" data-selenium-id="floorplan-1-apply-btn" customlabelreplaced=""> | |
| 1262 | + Availability <span class="sr-only" customlabelreplaced=""> for 2 B</span> | |
| 1263 | + </a> | |
| 1264 | + </div> | |
| 1265 | + | |
| 1266 | + <div class="col-12" customlabelreplaced=""> | |
| 1267 | + <div class="btn-group dropup w-100" customlabelreplaced=""> | |
| 1268 | + <button type="button" class="btn btn-outline-dark btn-block schedule-a-tour-btn" data-toggle="modal" data-target="#schedule-tour-window" customlabelreplaced=""> | |
| 1269 | + Schedule Tour<span class="sr-only" customlabelreplaced="">opens a dialog</span> | |
| 1270 | + </button> | |
| 1271 | + </div> | |
| 1272 | + </div> | |
| 1273 | + </div> | |
| 1274 | + | |
| 1275 | + </div> | |
| 1276 | + | |
| 1277 | + </div> | |
| 1278 | + </div> | |
| 1279 | + </div> | |
| 1280 | + <div id="fp-container-5667017" class="fp-container carousel-item on-deck" translate-content="" customlabelreplaced="" style="transform: translate3d(200%, 0px, 0px);"> | |
| 1281 | + <div class="item col" customlabelreplaced="" style="height: 679px;"> | |
| 1282 | + <div class="card text-center h-100 " customlabelreplaced=""> | |
| 1283 | + <div class="card-header bg-transparent border-bottom-0 pt-4 pb-0" customlabelreplaced=""> | |
| 1284 | + <h2 id="fp-header-2" class="card-title h4 font-weight-bold text-capitalize" customlabelreplaced=""> | |
| 1285 | + Penthouse | |
| 1286 | + </h2> | |
| 1287 | + | |
| 1288 | + <ul class="list-unstyled list-inline mb-2 text-sm" customlabelreplaced=""> | |
| 1289 | + | |
| 1290 | + | |
| 1291 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1292 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bed text-dark text-md mr-1" customlabelreplaced=""></span>2 <span customlabelreplaced="">Bed</span></div> | |
| 1293 | + </li> | |
| 1294 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1295 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bathroom text-dark text-md mr-1" customlabelreplaced=""></span>1 <span customlabelreplaced="">Bath</span></div> | |
| 1296 | + </li> | |
| 1297 | + <li class="list-inline-item w-100" customlabelreplaced=""> | |
| 1298 | + <div class="d-flex align-items-center justify-content-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-area font-weight-medium text-dark text-md mr-1" customlabelreplaced=""></span>995 Sq. Ft.</div> | |
| 1299 | + </li> | |
| 1300 | + </ul> | |
| 1301 | + | |
| 1302 | + | |
| 1303 | + | |
| 1304 | + </div> | |
| 1305 | + <div class="card-img fp-thumb px-3 d-flex justify-content-center align-items-center" customlabelreplaced=""> | |
| 1306 | + <img alt="" title="" class="img-fluid" src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_320/s3/NoImage.jpg"> | |
| 1307 | + </div> | |
| 1308 | + <div class="card-body" customlabelreplaced=""> | |
| 1309 | + <div class="p-2 fieldset bg-light border rounded d-flex flex-column align-items-center justify-content-center mb-2" customlabelreplaced=""> | |
| 1310 | +<p class="legend" customlabelreplaced=""></p> | |
| 1311 | + | |
| 1312 | + | |
| 1313 | + <div class="d-flex align-items-center" customlabelreplaced=""> | |
| 1314 | + <span class="font-weight-bold mb-1 text-md" customlabelreplaced=""> | |
| 1315 | + <span class="text-sm text-muted" customlabelreplaced="">Starting at</span> | |
| 1316 | + $3,050.00 | |
| 1317 | + <span class="text-sm text-muted" customlabelreplaced="">/Month</span> | |
| 1318 | + </span> | |
| 1319 | + | |
| 1320 | + </div> | |
| 1321 | + | |
| 1322 | + | |
| 1323 | + | |
| 1324 | + | |
| 1325 | + | |
| 1326 | + </div> | |
| 1327 | + | |
| 1328 | + <div class="row" customlabelreplaced=""> | |
| 1329 | + <div class="btn btn-outline-dark btn-block modal-button w-100" style="visibility:hidden;" customlabelreplaced=""> | |
| 1330 | + <wbr> </div> | |
| 1331 | + <div class="col-12 my-2" customlabelreplaced=""> | |
| 1332 | + <a href="https://brigil.securecafe.com/onlineleasing/champlain-bloc-2-0/availableunits.aspx?FloorPlanID=5667017" class="btn btn-primary btn-block btn-block track-apply floorplan-action-button" name="applynow" data-leasingtype="conventional" data-floorplan-name="Penthouse" data-floorplan-size="2" data-floorplan-sqft="995" data-floorplan-price="3050" data-selenium-id="floorplan-2-apply-btn" customlabelreplaced=""> | |
| 1333 | + Availability <span class="sr-only" customlabelreplaced=""> for Penthouse</span> | |
| 1334 | + </a> | |
| 1335 | + </div> | |
| 1336 | + | |
| 1337 | + <div class="col-12" customlabelreplaced=""> | |
| 1338 | + <div class="btn-group dropup w-100" customlabelreplaced=""> | |
| 1339 | + <button type="button" class="btn btn-outline-dark btn-block schedule-a-tour-btn" data-toggle="modal" data-target="#schedule-tour-window" customlabelreplaced=""> | |
| 1340 | + Schedule Tour<span class="sr-only" customlabelreplaced="">opens a dialog</span> | |
| 1341 | + </button> | |
| 1342 | + </div> | |
| 1343 | + </div> | |
| 1344 | + </div> | |
| 1345 | + | |
| 1346 | + </div> | |
| 1347 | + | |
| 1348 | + </div> | |
| 1349 | + </div> | |
| 1350 | + </div> | |
| 1351 | + <input type="hidden" name="leasingtype" id="leasingtype" value="conventional"> | |
| 1352 | + <script> | |
| 1353 | + function setGA4Cookie(tour, fpname, size, minSqft, maxSqft, minRent, maxRent) { | |
| 1354 | + var obj = new Object(); | |
| 1355 | + obj.tourType = tour; | |
| 1356 | + obj.fpName = fpname; | |
| 1357 | + obj.fpSize = size + ' Bed(s)'; | |
| 1358 | + obj.sqft = (minSqft === maxSqft) ? maxSqft : minSqft + '-' + maxSqft; | |
| 1359 | + obj.price = (minRent === maxRent) ? maxRent : minRent + '-' + maxRent; | |
| 1360 | + ysi.cookie.create('ga4cookie', JSON.stringify(obj)); | |
| 1361 | + } | |
| 1362 | + </script> | |
| 1363 | + | |
| 1364 | + | |
| 1365 | + <button type="button" class="carousel-control-next gallery-next d-none" data-target="#carousel-floor-plans" data-slide="next" aria-label="Next Slide" data-selenium-id="CarouserlBtnNext" customlabelreplaced=""></button> | |
| 1366 | + | |
| 1367 | + </div> | |
| 1368 | +</div> | |
| 1369 | + | |
| 1370 | + | |
| 1371 | + | |
| 1372 | + | |
| 1373 | + | |
| 1374 | + | |
| 1375 | + </div> | |
| 1376 | + | |
| 1377 | +</div></div></div></div><div class="scroll-section align-items-start px-xl-5 px-md-3" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""><div class="border-top justify-content-start align-items-stretch flex-column d-flex text-center text-md-left py-4 py-md-5 col-12 col-lg-12" customlabelreplaced=""> | |
| 1378 | +</div></div></div></div><div class="scroll-section align-items-start px-xl-5 px-md-3" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""><div class="border-top justify-content-start align-items-stretch flex-column d-flex text-center text-md-left py-4 py-md-5 col-12 col-lg-12" customlabelreplaced=""> | |
| 1379 | + | |
| 1380 | + | |
| 1381 | +<div id="neighborhood" class="property-detail-page-section" customlabelreplaced=""> | |
| 1382 | + <h2 class="mb-3" customlabelreplaced="">Map</h2> | |
| 1383 | + | |
| 1384 | + | |
| 1385 | + | |
| 1386 | + | |
| 1387 | + | |
| 1388 | + <!-- Map section --> | |
| 1389 | + <div class="page-content-map justify-content-start align-items-stretch flex-column d-flex pt-4 pb-3" customlabelreplaced=""> | |
| 1390 | + <div class="row justify-content-between mb-3" id="DirectionControls" customlabelreplaced=""> | |
| 1391 | + <!-- Get directions (hidden on mobile) --> | |
| 1392 | + <section id="divgoogleGetDirections" aria-label="Get Directions" class="d-block col-12 col-md-7 col-lg-6"> | |
| 1393 | + | |
| 1394 | + <div class="input-group form-group floating-label" customlabelreplaced=""> | |
| 1395 | + <label for="AddressFrom" customlabelreplaced="">Enter your address</label> | |
| 1396 | + <input id="AddressFrom" autocomplete="street-address" name="AddressFrom" type="text" class="form-control pr-5" value="" customlabelreplaced=""> | |
| 1397 | + <div class="input-group-append" customlabelreplaced=""> | |
| 1398 | + <button type="button" aria-label="Locate Me" id="LocateMe" class="target btn btn-light border" onclick="getLocation();" customlabelreplaced=""> | |
| 1399 | + <svg width="16px" height="16px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M461.9 0c-5.73 0-11.59 1.1-17.39 3.52L28.74 195.41c-47.97 22.39-31.98 92.75 19.19 92.75h175.91v175.91c0 30.01 24.21 47.93 48.74 47.93 17.3 0 34.75-8.9 44.01-28.74l191.9-415.78C522.06 34.89 494.14 0 461.9 0zm17.55 54.08L287.6 469.74c-3.18 6.82-8.24 10.28-15.03 10.28-5.8 0-16.76-3.33-16.76-15.94v-207.9H47.93c-11.45 0-14.64-8.83-15.49-12.63-1.1-4.93-1.27-13.98 9.7-19.1L456.82 33.04c1.71-.71 3.37-1.05 5.09-1.05 5.42 0 11.49 3.65 15.11 9.08 2.19 3.29 4.32 8.41 2.43 13.01z"></path></svg> | |
| 1400 | + </button> | |
| 1401 | + <button class="btn btn-primary px-3" name="GetDirections" id="GetDirections" aria-label="Get Directions" type="button" customlabelreplaced=""><svg class="fa-rotate-270" width="18px" height="18px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z"></path></svg></button> | |
| 1402 | + </div> | |
| 1403 | + </div> | |
| 1404 | + </section> | |
| 1405 | + <!-- Walkscore --> | |
| 1406 | + <div id="MapBtnHolder" class="col-12 col-md-5 col-lg-6 text-center text-md-right my-3 my-md-0" customlabelreplaced=""> | |
| 1407 | + <div id="walkscore-div" class="btn-group" customlabelreplaced=""> | |
| 1408 | + <a target="_blank" href="https://www.walkscore.com/score/460-Boul-Gr%C3%A9ber-Bureau-222-Gatineau-QC-J8T-6C7/lat=0/lng=0/?utm_source=rentcafe.com&utm_medium=ws_api&utm_campaign=ws_api" customlabelreplaced=""> | |
| 1409 | + <img src="https://cdn.walk.sc/images/api-logo.png" alt="Walk score"> | |
| 1410 | + <span class="walkscore-scoretext" data-selenium-id="WalkScoreText" customlabelreplaced="">4</span> | |
| 1411 | + <span class="sr-only" customlabelreplaced=""> opens in new tab</span> | |
| 1412 | + </a> | |
| 1413 | + <span id="ws_info" customlabelreplaced=""> | |
| 1414 | + <a href="https://www.redfin.com/how-walk-score-works" target="_blank" class="ml-1 px-1 d-inline-block" customlabelreplaced=""> | |
| 1415 | + <img src="https://cdn.walk.sc/images/api-more-info.gif" width="16" height="16" alt="More information about Walk Score."> | |
| 1416 | + <span class="sr-only" customlabelreplaced=""> opens in new tab</span> | |
| 1417 | + </a> | |
| 1418 | + </span> | |
| 1419 | + | |
| 1420 | + | |
| 1421 | + </div> | |
| 1422 | + </div> | |
| 1423 | + </div> | |
| 1424 | + <!-- Bird's eye view, street view --> | |
| 1425 | + <div id="map-view" class="text-center text-md-right mb-2 right-0 z-index-2" customlabelreplaced=""> | |
| 1426 | + <button id="birdsEyeModalButton" class="btn btn-light btn-sm" type="button" data-selenium-id="mapdirBirdsView" data-toggle="modal" data-target="#myViewModal" onclick="opendialog('modalbodyViews', '', ysi.mapModals.loadModalMap('MicrosoftMap', 'Bird\'s Eye View', 'birdsEyeJS', ysi.mapModals.birdsEyeJS, ysi_loadBirdsEye));" customlabelreplaced="">Bird's Eye View <span class="sr-only" customlabelreplaced=""> opens in a dialog</span></button> | |
| 1427 | + <button id="streetViewModalButton" class="btn btn-light btn-sm" type="button" data-selenium-id="mapdirStreetView" data-toggle="modal" data-target="#myViewModal" onclick="opendialog('modalbodyViews', '', ysi.mapModals.loadModalMap('gm-style', 'Google Street View', 'streetViewJS', ysi.mapModals.streetViewJS, ysi_loadStreetView));" customlabelreplaced="">Street View <span class="sr-only" customlabelreplaced=""> opens in a dialog</span></button> | |
| 1428 | + </div> | |
| 1429 | + | |
| 1430 | + | |
| 1431 | + | |
| 1432 | + | |
| 1433 | + | |
| 1434 | + | |
| 1435 | +<div id="propertyneighborhoodmap" style="flex: 1 1 100%; align-self: stretch; min-height: 480px" class="z-index-1 " aria-label="Location Map" role="document" customlabelreplaced=""></div> | |
| 1436 | + | |
| 1437 | +<script> | |
| 1438 | + ysi.registerCallback(function () { | |
| 1439 | + ysi.map.register({ | |
| 1440 | + latitude: "45.401723", | |
| 1441 | + longitude: "-75.781387", | |
| 1442 | + address: "30 de la Bonne-Renommée", | |
| 1443 | + city: "Gatineau", | |
| 1444 | + state: "QC", | |
| 1445 | + zip: "J9H 0L1", | |
| 1446 | + PropDetail: "Champlain Bloc 2 - UAT", | |
| 1447 | + video: "", | |
| 1448 | + apikey: "pk.JETON_CAVIARDE_LOUKA", | |
| 1449 | + enableDirections: false, | |
| 1450 | + mapId: "propertyneighborhoodmap" | |
| 1451 | + }); | |
| 1452 | + }); | |
| 1453 | +</script> | |
| 1454 | + | |
| 1455 | + </div> | |
| 1456 | + | |
| 1457 | + | |
| 1458 | + | |
| 1459 | + | |
| 1460 | + | |
| 1461 | +</div> | |
| 1462 | +</div></div></div></div><div class="scroll-section align-items-start px-xl-5 px-md-3" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""><div padding="" class="border-top justify-content-start align-items-stretch flex-column d-flex text-center text-md-left py-4 py-md-5 col-12 col-lg-12" customlabelreplaced=""> | |
| 1463 | + | |
| 1464 | + | |
| 1465 | + | |
| 1466 | + | |
| 1467 | +</div></div></div></div><div class="scroll-section align-items-start px-xl-8 px-md-3" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""><div class="border-top justify-content-start align-items-stretch flex-column d-flex text-center text-md-left py-4 py-md-5 col-12 col-lg-12" customlabelreplaced=""> | |
| 1468 | + | |
| 1469 | + | |
| 1470 | +</div></div></div></div><div class="scroll-section align-items-start px-xl-5 px-md-3" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""><div class="border-top justify-content-start align-items-stretch flex-column d-flex text-left py-4 py-md-5 col-12 col-lg-12" customlabelreplaced=""> | |
| 1471 | + | |
| 1472 | +</div></div></div></div><div class="scroll-section align-items-start px-xl-8 px-md-4 bg-light" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""><div class="border-top justify-content-center align-items-center align-items-md-stretch flex-column d-flex text-center text-md-left py-4 py-md-5 col-12 col-lg-12" customlabelreplaced=""> | |
| 1473 | + | |
| 1474 | + | |
| 1475 | + | |
| 1476 | + <div class="row w-100" customlabelreplaced=""> | |
| 1477 | + <div class="col-12 col-md-7 py-4 d-flex flex-column justify-content-center align-items-center align-items-md-start text-center text-md-left" customlabelreplaced=""> | |
| 1478 | + <h2 class="mb-3 mb-lg-0" customlabelreplaced="">We can't wait to meet you</h2> | |
| 1479 | + | |
| 1480 | + | |
| 1481 | + | |
| 1482 | + | |
| 1483 | + | |
| 1484 | + | |
| 1485 | + | |
| 1486 | + | |
| 1487 | + </div> | |
| 1488 | + <div class="col-12 col-md-5 justify-content-center justify-content-md-end align-items-center flex-row d-flex text-center text-md-left mt-2 mt-md-0" customlabelreplaced=""> | |
| 1489 | + <button type="button" class="btn btn-secondary btn-round px-lg-3 px-xl-4 schedule-a-tour-btn" data-toggle="modal" data-target="#schedule-tour-window" customlabelreplaced=""> | |
| 1490 | + Schedule Tour<span class="sr-only" customlabelreplaced="">opens a dialog</span> | |
| 1491 | + </button> | |
| 1492 | + </div> | |
| 1493 | + </div> | |
| 1494 | +</div></div></div></div><div class="container" customlabelreplaced=""><div class="row" customlabelreplaced=""><div class="col-12 col-lg-12" customlabelreplaced=""></div></div></div></div></div></div> | |
| 1495 | + | |
| 1496 | +<!-- Map modal (for displaying bird's eye view, street view) --> | |
| 1497 | +<div class="modal fade" id="myViewModal" role="dialog" aria-labelledby="mapsModalTitle" aria-modal="true" customlabelreplaced="" aria-hidden="true"> | |
| 1498 | + <div class="modal-dialog modal-lg" customlabelreplaced=""> | |
| 1499 | + <div class="modal-content" id="modalContent" customlabelreplaced=""> | |
| 1500 | + <div class="modal-header" customlabelreplaced=""> | |
| 1501 | + <h2 class="h3 m-0" id="mapsModalTitle" customlabelreplaced="">Bird's Eye View</h2> | |
| 1502 | + <button id="CloseModalDialogButton" type="button" class="close" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""><svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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></button> | |
| 1503 | + </div> | |
| 1504 | + <!-- Modal body --> | |
| 1505 | + <div id="modalbodyViews" class="modal-body" customlabelreplaced=""> | |
| 1506 | + <div id="myMap" style="height: 450px; width: 100%; float: left;" customlabelreplaced=""></div> | |
| 1507 | + </div> | |
| 1508 | + </div> | |
| 1509 | + </div> | |
| 1510 | +</div> | |
| 1511 | + | |
| 1512 | + | |
| 1513 | +<!-- Review modal --> | |
| 1514 | +<div class="modal fade" id="review-modal" role="dialog" aria-labelledby="review-modal-title" aria-modal="true" customlabelreplaced="" aria-hidden="true"> | |
| 1515 | + <div class="modal-dialog modal-lg" customlabelreplaced=""> | |
| 1516 | + <div class="modal-content" id="modalContent" customlabelreplaced=""> | |
| 1517 | + <div class="modal-header" customlabelreplaced=""> | |
| 1518 | + <h2 class="h3 m-0" id="review-modal-title" customlabelreplaced="">Review</h2> | |
| 1519 | + <button type="button" class="close" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""><svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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></button> | |
| 1520 | + </div> | |
| 1521 | + <!-- Modal body --> | |
| 1522 | + <div id="review-modal-body" class="modal-body" customlabelreplaced=""> | |
| 1523 | + | |
| 1524 | + </div> | |
| 1525 | + </div> | |
| 1526 | + </div> | |
| 1527 | +</div> | |
| 1528 | + | |
| 1529 | + <!-- Image modal --> | |
| 1530 | + | |
| 1531 | + | |
| 1532 | + | |
| 1533 | + | |
| 1534 | +<div class="modal fade fp-modal" id="fp-modal" role="dialog" aria-labelledby="fp-modalLabel5667014" aria-hidden="true" customlabelreplaced=""> | |
| 1535 | + <div class="modal-dialog modal-fullscreen" role="document" customlabelreplaced=""> | |
| 1536 | + <div id="modal-content-5667014" class="modal-content" customlabelreplaced=""> | |
| 1537 | + <div class="modal-header" customlabelreplaced=""> | |
| 1538 | + <h2 class="h3 m-0" id="fp-modalLabel5667014" customlabelreplaced="">1 B</h2> | |
| 1539 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" customlabelreplaced=""> | |
| 1540 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 1541 | + </button> | |
| 1542 | + </div> | |
| 1543 | + <div id="modal-body-5667014" class="modal-body px-0 pt-0 pb-2" customlabelreplaced=""> | |
| 1544 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" customlabelreplaced=""> | |
| 1545 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" customlabelreplaced=""> | |
| 1546 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" customlabelreplaced=""> | |
| 1547 | + <li class="list-inline-item" customlabelreplaced="">1 Bed</li> | |
| 1548 | + <li class="list-inline-item" customlabelreplaced="">1 Bath</li> | |
| 1549 | + <li class="list-inline-item" customlabelreplaced="">605 Sq. Ft.</li> | |
| 1550 | + </ul> | |
| 1551 | + </div> | |
| 1552 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" customlabelreplaced=""> | |
| 1553 | + <div class="d-inline-block position-relative" customlabelreplaced=""> | |
| 1554 | + <span class="text-dark font-weight-medium text-2x" customlabelreplaced="">$1,895.00</span><span customlabelreplaced="">/ month</span> | |
| 1555 | + | |
| 1556 | + </div> | |
| 1557 | + </div> | |
| 1558 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" customlabelreplaced=""> | |
| 1559 | + <span customlabelreplaced="">Available On: </span> <span customlabelreplaced="">Available Now</span> | |
| 1560 | + <a href="https://brigil.securecafe.com/onlineleasing/champlain-bloc-2-0/availableunits.aspx?FloorPlanID=5667014" class="btn btn-primary ml-3 track-apply" aria-label=" Availability for 1 B" name="applynow" data-leasingtype="conventional" data-floorplan-name="1 B" data-floorplan-size="1" data-floorplan-sqft="605" data-floorplan-price="1895" data-selenium-id="floorplan-0-apply-btn" customlabelreplaced=""> | |
| 1561 | + Availability | |
| 1562 | + </a> | |
| 1563 | + </div> | |
| 1564 | + </div> | |
| 1565 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-5667014-0" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 1566 | + | |
| 1567 | + <div class="carousel-inner" aria-live="assertive" customlabelreplaced=""> | |
| 1568 | + | |
| 1569 | + </div> | |
| 1570 | + | |
| 1571 | + | |
| 1572 | + | |
| 1573 | + </section> | |
| 1574 | + </div> | |
| 1575 | + </div> | |
| 1576 | + <div id="modal-content-5667016" class="modal-content" customlabelreplaced=""> | |
| 1577 | + <div class="modal-header" customlabelreplaced=""> | |
| 1578 | + <h2 class="h3 m-0" id="fp-modalLabel5667016" customlabelreplaced="">2 B</h2> | |
| 1579 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" customlabelreplaced=""> | |
| 1580 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 1581 | + </button> | |
| 1582 | + </div> | |
| 1583 | + <div id="modal-body-5667016" class="modal-body px-0 pt-0 pb-2" customlabelreplaced=""> | |
| 1584 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" customlabelreplaced=""> | |
| 1585 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" customlabelreplaced=""> | |
| 1586 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" customlabelreplaced=""> | |
| 1587 | + <li class="list-inline-item" customlabelreplaced="">2 Beds</li> | |
| 1588 | + <li class="list-inline-item" customlabelreplaced="">1 Bath</li> | |
| 1589 | + <li class="list-inline-item" customlabelreplaced="">736-<span class="sr-only" customlabelreplaced="">to</span>840 Sq. Ft.</li> | |
| 1590 | + </ul> | |
| 1591 | + </div> | |
| 1592 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" customlabelreplaced=""> | |
| 1593 | + <div class="d-inline-block position-relative" customlabelreplaced=""> | |
| 1594 | + <span class="text-dark font-weight-medium text-2x" customlabelreplaced="">$2,145.00<span class="sr-only" customlabelreplaced="">to</span>-$2,400.00</span><span customlabelreplaced="">/ month</span> | |
| 1595 | + | |
| 1596 | + </div> | |
| 1597 | + </div> | |
| 1598 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" customlabelreplaced=""> | |
| 1599 | + <span customlabelreplaced="">Available On: </span> <span customlabelreplaced="">Available Now</span> | |
| 1600 | + <a href="https://brigil.securecafe.com/onlineleasing/champlain-bloc-2-0/availableunits.aspx?FloorPlanID=5667016" class="btn btn-primary ml-3 track-apply" aria-label=" Availability for 2 B" name="applynow" data-leasingtype="conventional" data-floorplan-name="2 B" data-floorplan-size="2" data-floorplan-sqft="736-840" data-floorplan-price="2145-2400" data-selenium-id="floorplan-1-apply-btn" customlabelreplaced=""> | |
| 1601 | + Availability | |
| 1602 | + </a> | |
| 1603 | + </div> | |
| 1604 | + </div> | |
| 1605 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-5667016-1" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 1606 | + | |
| 1607 | + <div class="carousel-inner" aria-live="assertive" customlabelreplaced=""> | |
| 1608 | + | |
| 1609 | + </div> | |
| 1610 | + | |
| 1611 | + | |
| 1612 | + | |
| 1613 | + </section> | |
| 1614 | + </div> | |
| 1615 | + </div> | |
| 1616 | + <div id="modal-content-5667017" class="modal-content" customlabelreplaced=""> | |
| 1617 | + <div class="modal-header" customlabelreplaced=""> | |
| 1618 | + <h2 class="h3 m-0" id="fp-modalLabel5667017" customlabelreplaced="">Penthouse</h2> | |
| 1619 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" customlabelreplaced=""> | |
| 1620 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 1621 | + </button> | |
| 1622 | + </div> | |
| 1623 | + <div id="modal-body-5667017" class="modal-body px-0 pt-0 pb-2" customlabelreplaced=""> | |
| 1624 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" customlabelreplaced=""> | |
| 1625 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" customlabelreplaced=""> | |
| 1626 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" customlabelreplaced=""> | |
| 1627 | + <li class="list-inline-item" customlabelreplaced="">2 Beds</li> | |
| 1628 | + <li class="list-inline-item" customlabelreplaced="">1 Bath</li> | |
| 1629 | + <li class="list-inline-item" customlabelreplaced="">995 Sq. Ft.</li> | |
| 1630 | + </ul> | |
| 1631 | + </div> | |
| 1632 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" customlabelreplaced=""> | |
| 1633 | + <div class="d-inline-block position-relative" customlabelreplaced=""> | |
| 1634 | + <span class="text-dark font-weight-medium text-2x" customlabelreplaced="">$3,050.00</span><span customlabelreplaced="">/ month</span> | |
| 1635 | + | |
| 1636 | + </div> | |
| 1637 | + </div> | |
| 1638 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" customlabelreplaced=""> | |
| 1639 | + <span customlabelreplaced="">Available On: </span> <span customlabelreplaced="">Available Now</span> | |
| 1640 | + <a href="https://brigil.securecafe.com/onlineleasing/champlain-bloc-2-0/availableunits.aspx?FloorPlanID=5667017" class="btn btn-primary ml-3 track-apply" aria-label=" Availability for Penthouse" name="applynow" data-leasingtype="conventional" data-floorplan-name="Penthouse" data-floorplan-size="2" data-floorplan-sqft="995" data-floorplan-price="3050" data-selenium-id="floorplan-2-apply-btn" customlabelreplaced=""> | |
| 1641 | + Availability | |
| 1642 | + </a> | |
| 1643 | + </div> | |
| 1644 | + </div> | |
| 1645 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-5667017-2" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 1646 | + | |
| 1647 | + <div class="carousel-inner" aria-live="assertive" customlabelreplaced=""> | |
| 1648 | + | |
| 1649 | + </div> | |
| 1650 | + | |
| 1651 | + | |
| 1652 | + | |
| 1653 | + </section> | |
| 1654 | + </div> | |
| 1655 | + </div> | |
| 1656 | + | |
| 1657 | + </div> | |
| 1658 | +</div> | |
| 1659 | + <!-- end modal --> | |
| 1660 | + <div class="modal fade true-cost-cal p-0" id="myLeaseCostModal" role="dialog" aria-labelledby="leasecostmodalid" aria-hidden="true" customlabelreplaced=""> | |
| 1661 | + <div class="modal-dialog modal-fullscreen" customlabelreplaced=""> | |
| 1662 | + <div class="modal-content modal-calc-content" customlabelreplaced=""> | |
| 1663 | + <div class="modal-header" customlabelreplaced=""> | |
| 1664 | + <h2 class="h3 m-0" id="leasecostmodalid" customlabelreplaced=""> | |
| 1665 | + | |
| 1666 | +Lease Cost Calculator Result | |
| 1667 | +</h2> | |
| 1668 | + <button type="button" class="close" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""><svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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></button> | |
| 1669 | + </div> | |
| 1670 | + <!-- Modal body --> | |
| 1671 | + <div id="myLeaseCostModalBody" class="modal-body modal-calc-body" customlabelreplaced=""> | |
| 1672 | + <div id="leasecost-loading" class="p-3" customlabelreplaced="">Loading...</div> | |
| 1673 | + <iframe id="leasecost-iframe" src="" scrolling="no" style="width:100%;height:85vh;border:0;" title="Cost Estimate" customlabelreplaced=""></iframe> | |
| 1674 | + </div> | |
| 1675 | + </div> | |
| 1676 | + </div> | |
| 1677 | + </div> | |
| 1678 | + <!-- Video modal --> | |
| 1679 | +<div class="modal fade modal-dialog-gallery modal-dialog-gallery-video" id="floorplans-video-modal" role="dialog" aria-modal="true" aria-hidden="true" aria-labelledby="floorplans-video-modal-header" customlabelreplaced=""> | |
| 1680 | + <div class="modal-dialog modal-xl" customlabelreplaced=""> | |
| 1681 | + <div class="modal-content" customlabelreplaced=""> | |
| 1682 | + <div class="modal-header" customlabelreplaced=""> | |
| 1683 | + <h2 class="h3 m-0" id="floorplans-video-modal-header" customlabelreplaced="">Floor Plan Video</h2> | |
| 1684 | + <button type="button" class="close" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""><svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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></button> | |
| 1685 | + </div> | |
| 1686 | + <div id="floorplans-video-modal-body" class="modal-body" customlabelreplaced=""> | |
| 1687 | + <div class="embed-container" customlabelreplaced=""> | |
| 1688 | + <div id="floorplans-video-embed" class="embed-responsive embed-responsive-16by9 embed-body" customlabelreplaced=""> | |
| 1689 | + <!-- embedded video loaded here --> | |
| 1690 | + </div> | |
| 1691 | + </div> | |
| 1692 | + </div> | |
| 1693 | + </div> | |
| 1694 | + </div> | |
| 1695 | +</div> | |
| 1696 | + <!-- 3D Tour modal --> | |
| 1697 | +<div class="modal fade" id="floorplans-3dtour-modal" role="dialog" aria-modal="true" aria-hidden="true" aria-labelledby="floorplans-3dtour-modal-header" customlabelreplaced=""> | |
| 1698 | + <div class="modal-dialog modal-xl" customlabelreplaced=""> | |
| 1699 | + <div class="modal-content" customlabelreplaced=""> | |
| 1700 | + <div class="modal-header" customlabelreplaced=""> | |
| 1701 | + <h2 class="h3 m-0" id="floorplans-3dtour-modal-header" customlabelreplaced="">3D Tour</h2> | |
| 1702 | + <button type="button" class="close" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""><svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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></button> | |
| 1703 | + </div> | |
| 1704 | + <div id="floorplans-3dtour-modal-body" class="modal-body" customlabelreplaced=""> | |
| 1705 | + <div class="embed-container" customlabelreplaced=""> | |
| 1706 | + <div id="floorplans-3dtour-embed" class="embed-responsive embed-body" customlabelreplaced=""> | |
| 1707 | + <!-- embedded 3D tour loaded here --> | |
| 1708 | + </div> | |
| 1709 | + </div> | |
| 1710 | + </div> | |
| 1711 | + </div> | |
| 1712 | + </div> | |
| 1713 | +</div> <!--Inclusive fees modal--> | |
| 1714 | + | |
| 1715 | +<div class="modal fade" id="myFPInclusiveFeesModal" tabindex="-1" aria-labelledby="calculatormodelLabel" aria-hidden="true" customlabelreplaced=""> | |
| 1716 | + <div class="modal-dialog modal-lg" customlabelreplaced=""> | |
| 1717 | + <div class="modal-content" customlabelreplaced=""> | |
| 1718 | + <div class="modal-header" customlabelreplaced=""> | |
| 1719 | + <h2 class="modal-title h3 font-weight-bold" id="calculatormodelLabel" customlabelreplaced=""> | |
| 1720 | + | |
| 1721 | +Total Monthly Leasing Price | |
| 1722 | +</h2> | |
| 1723 | + <button type="button" class="close" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""><svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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></button> | |
| 1724 | + </div> | |
| 1725 | + <div class="modal-body pt-0" customlabelreplaced=""> | |
| 1726 | + <div class="row custom-bg-light py-3 pt-md-3 pb-md-0 px-md-4" customlabelreplaced=""> | |
| 1727 | + <div class="col-12 d-flex flex-row justify-content-center align-items-start " customlabelreplaced=""> | |
| 1728 | + <i class="text-md fas fa-calculator text-2x mr-4 pl-0 py-0 text-primary calc-background" customlabelreplaced=""></i> | |
| 1729 | + <p class="m-0" customlabelreplaced=""> | |
| 1730 | + | |
| 1731 | + | |
| 1732 | + | |
| 1733 | + | |
| 1734 | + </p> | |
| 1735 | + </div> | |
| 1736 | + </div> | |
| 1737 | + <div class="row" customlabelreplaced=""> | |
| 1738 | + <div class="col-12 col-sm-8 offset-sm-2 px-md-4" customlabelreplaced=""> | |
| 1739 | + <div class="mt-3 px-3" customlabelreplaced=""> | |
| 1740 | + <div class="row custom-border-bottom-dotted" customlabelreplaced=""> | |
| 1741 | + <div class="col-6 px-0" customlabelreplaced=""> | |
| 1742 | + <div class="m-0 pb-2" customlabelreplaced="">Base monthly rent </div> | |
| 1743 | + </div> | |
| 1744 | + <div class="col-6 text-right px-0" customlabelreplaced=""> | |
| 1745 | + <div class="m-0 pb-2 modal-fp-base-rent" customlabelreplaced=""></div> | |
| 1746 | + </div> | |
| 1747 | + </div> | |
| 1748 | + <div class="row custom-border-bottom-dotted" customlabelreplaced=""> | |
| 1749 | + <div class="col-6 px-0" customlabelreplaced=""> | |
| 1750 | + <div class="m-0 py-2" customlabelreplaced="">Utilities and services</div> | |
| 1751 | + </div> | |
| 1752 | + <div class="col-6 text-right px-0" customlabelreplaced=""> | |
| 1753 | + <div class="m-0 py-2 modal-fp-inclusive-rent" customlabelreplaced=""></div> | |
| 1754 | + </div> | |
| 1755 | + </div> | |
| 1756 | + <div class="row custom-border-bottom-dotted" customlabelreplaced=""> | |
| 1757 | + <div class="col-6 px-0" customlabelreplaced=""> | |
| 1758 | + <div class="m-0 py-2" customlabelreplaced=""> | |
| 1759 | + <strong customlabelreplaced="">Estimated monthly cost</strong> | |
| 1760 | + </div> | |
| 1761 | + </div> | |
| 1762 | + <div class="col-6 text-right px-0" customlabelreplaced=""> | |
| 1763 | + <div class="m-0 py-2" customlabelreplaced=""> | |
| 1764 | + <strong class="modal-fp-total-rent" customlabelreplaced=""></strong> | |
| 1765 | + </div> | |
| 1766 | + </div> | |
| 1767 | + </div> | |
| 1768 | + </div> | |
| 1769 | + </div> | |
| 1770 | + </div> | |
| 1771 | + </div> | |
| 1772 | + | |
| 1773 | + <div class="modal-footer mb-md-4 d-flex align-items-center justify-content-center" customlabelreplaced=""> | |
| 1774 | + <a href="#" class="btn btn-primary mx-auto modal-fp-rent-estimator-url" onclick="if(typeof gtag!=='undefined'){var m=this.closest('.modal');var pn=document.querySelector('meta[name=author]').content;var params={'property_name':pn,'button_label':'Customize_cost_estimate','page_name':document.title,'page_url':window.location.href,'floorplan_name':m.dataset.fpName||'','floorplan_size':(m.dataset.fpSize||'')+' Bed(s)','square_footage':m.dataset.fpSqft||'','price':m.dataset.fpPrice||''};var un=m.dataset.unitNumber||'';if(un)params.unit_number=un;gtag('event','cost_estimate',params)}" customlabelreplaced=""> | |
| 1775 | + | |
| 1776 | + | |
| 1777 | +</a> | |
| 1778 | + </div> | |
| 1779 | + </div> | |
| 1780 | + </div> | |
| 1781 | +</div><div class="modal fade p-0" id="RentEstimateModal" role="dialog" data-backdrop="static" aria-labelledby="RentEstimateModalTitle" aria-hidden="true" customlabelreplaced=""> | |
| 1782 | + <div class="modal-dialog" style="max-width: calc(100vw - 1rem); width: calc(100vw - 1rem); margin: 0.5rem auto; max-height: calc(100vh - 1rem); height: calc(100vh - 1rem); display: flex; flex-direction: column;" customlabelreplaced=""> | |
| 1783 | + <div class="modal-content" style="max-height: 100%; height: 100%; border-radius: 0.25rem; display: flex; flex-direction: column; overflow: hidden;" customlabelreplaced=""> | |
| 1784 | + <div class="modal-header" style="flex-shrink: 0;" customlabelreplaced=""> | |
| 1785 | + <div id="iframeheader" class="d-flex justify-content-between align-items-center p-3 py-2 w-100" customlabelreplaced=""> | |
| 1786 | + <div class="col-auto d-flex align-items-center p-0" customlabelreplaced=""> | |
| 1787 | + </div> | |
| 1788 | + <div class="title-wrapper d-flex align-items-center col-5 col-lg-4 p-0" customlabelreplaced=""> | |
| 1789 | + <h2 id="RentEstimateModalTitle" class="title-xl mb-0 h1" customlabelreplaced="">Cost Calculator</h2> | |
| 1790 | + </div> | |
| 1791 | + <div class="col-7 col-lg-4 justify-content-between d-flex align-items-center" customlabelreplaced=""> | |
| 1792 | + <div id="monthlyRent" class="sticky-show d-none" customlabelreplaced=""> | |
| 1793 | + <div class="text-md font-weight-bold" customlabelreplaced=""><span id="monthlyRentMin" customlabelreplaced=""></span> <span id="monthlyRentMax" customlabelreplaced=""></span></div> | |
| 1794 | + <div class="text-sm" id="baseRentVerbiageDisplay" customlabelreplaced=""></div> | |
| 1795 | + </div> | |
| 1796 | + </div> | |
| 1797 | + <div id="iframeheaderButtons" class="d-none col-4 justify-content-end d-lg-flex align-items-center p-0" customlabelreplaced=""> | |
| 1798 | + <button type="button" class="btn btn-secondary mr-1" data-toggle="modal" data-target="#sendEstimateModal" onclick="opendialog('modalbodyemail','','');if(typeof gtag!=='undefined'){var pn=document.querySelector('meta[name=author]').content;var c=document.getElementById('rentestimatepagecontainer');gtag('event','cost_estimate',{'property_name':pn,'button_label':'email_my_estimate','form_name':'email_estimate','page_name':document.title,'page_url':window.location.href,'floorplan_name':c.dataset.fpName||'','floorplan_size':(c.dataset.fpSize||'')+' Bed(s)','square_footage':c.dataset.fpSqft||'','price':c.dataset.fpPrice||'','lease_term':c&&c.dataset.fpTerm||'','unit_number':c&&c.dataset.unitNumber||''})}" customlabelreplaced=""> | |
| 1799 | + Email My Costs <span class="sr-only" customlabelreplaced=""> opens a dialog </span> | |
| 1800 | + </button> | |
| 1801 | + <a class="btn btn-primary applybtn" type="button" target="_blank" href="#" onclick="if(typeof gtag!=='undefined'){var pn=document.querySelector('meta[name=author]').content;var c=document.getElementById('rentestimatepagecontainer');gtag('event','floorplan_selection',{'property_name':pn,'button_label':'apply_now','form_name':'apply_now','page_name':document.title,'page_url':window.location.href,'floorplan_name':c.dataset.fpName||'','floorplan_size':(c.dataset.fpSize||'')+' Bed(s)','square_footage':c.dataset.fpSqft||'','price':c.dataset.fpPrice||'','lease_term':c&&c.dataset.fpTerm||''})}" customlabelreplaced=""> | |
| 1802 | + Apply Now <span class="sr-only" customlabelreplaced=""> opens in a new tab</span> | |
| 1803 | + </a> | |
| 1804 | + </div> | |
| 1805 | + <button type="button" class="close ml-auto" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""> | |
| 1806 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"> | |
| 1807 | + <path 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> | |
| 1808 | + </svg> | |
| 1809 | + </button> | |
| 1810 | + </div> | |
| 1811 | + </div> | |
| 1812 | + <div class="modal-body p-0" id="RentEstimateModalBody" style="overflow: hidden; display: flex; flex-direction: column; flex: 1 1 auto; min-height: 0; max-height: 100%;" customlabelreplaced=""> | |
| 1813 | + <div id="rentestimatepagecontainer" style="position:relative; flex: 1 1 auto; overflow: hidden; display: flex; flex-direction: column; min-height: 0; max-height: 100%;" data-property-id="252329" data-estimated-monthly-cost-label="Total Monthly Leasing Price" data-base-rent-verbiage="Base rent ^BaseRent^ &middot; ^LeaseTerm^-month term" data-summary-card-verbiage="Total monthly leasing prices include base rent, all mandatory monthly fees and any user-selected optional fees. Excludes variable or usage-based fees and required charges due at or prior to move-in or at move-out." customlabelreplaced=""> | |
| 1814 | + <input type="hidden" id="rentestimate-request-verification-token" name="request-verification-token" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ1PQZpUdCwHcYEq-VnpbuH-N6EE41FP80ppj_1u48lnjg4wU2XpPm23NAze4WGggxFEWCUP20nUHNahkQNQ_zNyceUlt0a-EjZYLs4KBA54wAGoFGalkNbqvLExDDcKpxE"> | |
| 1815 | + <input type="hidden" name="bpublishreactole" id="bpublishreactole" value="0"> | |
| 1816 | + <div id="loading" customlabelreplaced="" style="display: none;">Loading...</div> | |
| 1817 | + <iframe id="myIFrame" src="" scrolling="yes" style="flex: 1 1 auto; width: 100%; height: 100%; border: none; min-height: 0;" onload="document.getElementById('loading').style.display='none';this.dataset.loaded=true;" title="Cost Calculator" customlabelreplaced="" data-loaded="true">iframe</iframe> | |
| 1818 | + | |
| 1819 | + <div id="iframeFooter" class="d-md-none" customlabelreplaced=""> | |
| 1820 | + <div id="unitButtons" class="d-flex d-none justify-content-end align-items-end p-3 py-4" customlabelreplaced=""> | |
| 1821 | + <button class="btn btn-secondary btn-block m-0 mr-1" id="unitCalculate" customlabelreplaced=""> | |
| 1822 | + No Add-Ons | |
| 1823 | + </button> | |
| 1824 | + <button class="btn btn-primary btn-block m-0 " id="unitSelectAddOns" customlabelreplaced=""> | |
| 1825 | + Select Add-Ons | |
| 1826 | + </button> | |
| 1827 | + </div> | |
| 1828 | + <div id="learnMoreButtons" class="d-flex d-none justify-content-end align-items-end p-3 py-4" customlabelreplaced=""> | |
| 1829 | + <button class="btn btn-secondary m-0 mr-1" id="learnMoreOK" customlabelreplaced=""> | |
| 1830 | + OK | |
| 1831 | + </button> | |
| 1832 | + </div> | |
| 1833 | + <div id="situationalFeesButtons" class="d-flex d-none justify-content-end align-items-end p-3 py-4" customlabelreplaced=""> | |
| 1834 | + <button class="btn btn-secondary m-0 mr-1" id="situationalFeesOK" customlabelreplaced=""> | |
| 1835 | + OK | |
| 1836 | + </button> | |
| 1837 | + </div> | |
| 1838 | + <div id="addOnsButtons" class="d-flex d-none justify-content-end align-items-center p-3 py-4" customlabelreplaced=""> | |
| 1839 | + <button class="btn btn-secondary btn-block m-0 mr-1" id="addOnsCancel" customlabelreplaced=""> | |
| 1840 | + Cancel | |
| 1841 | + </button> | |
| 1842 | + <button class="btn btn-primary btn-block m-0 " id="addOnsCalculate" customlabelreplaced=""> | |
| 1843 | + Calculate | |
| 1844 | + </button> | |
| 1845 | + </div> | |
| 1846 | + <div id="mainButtons" class="d-flex d-none justify-content-end align-items-center p-3 py-4" customlabelreplaced=""> | |
| 1847 | + <button class="btn btn-secondary d-block w-100 m-0 mr-1" data-toggle="modal" data-target="#sendEstimateModal" onclick="opendialog('modalbodyemail','','');if(typeof gtag!=='undefined'){var pn=document.querySelector('meta[name=author]').content;var c=document.getElementById('rentestimatepagecontainer');gtag('event','cost_estimate',{'property_name':pn,'button_label':'email_my_estimate','form_name':'email_estimate','page_name':document.title,'page_url':window.location.href,'floorplan_name':c.dataset.fpName||'','floorplan_size':(c.dataset.fpSize||'')+' Bed(s)','square_footage':c.dataset.fpSqft||'','price':c.dataset.fpPrice||'','lease_term':c&&c.dataset.fpTerm||'','unit_number':c&&c.dataset.unitNumber||''})}" customlabelreplaced=""> | |
| 1848 | + Email My Costs <span class="sr-only" customlabelreplaced=""> opens a dialog </span> | |
| 1849 | + </button> | |
| 1850 | + <a class="btn btn-primary d-block w-100 m-0 applybtn" type="button" target="_blank" href="#" onclick="if(typeof gtag!=='undefined'){var pn=document.querySelector('meta[name=author]').content;var c=document.getElementById('rentestimatepagecontainer');gtag('event','floorplan_selection',{'property_name':pn,'button_label':'apply_now','form_name':'apply_now','page_name':document.title,'page_url':window.location.href,'floorplan_name':c.dataset.fpName||'','floorplan_size':(c.dataset.fpSize||'')+' Bed(s)','square_footage':c.dataset.fpSqft||'','price':c.dataset.fpPrice||'','lease_term':c&&c.dataset.fpTerm||''})}" customlabelreplaced=""> | |
| 1851 | + Apply Now <span class="sr-only" customlabelreplaced=""> opens in a new tab</span> | |
| 1852 | + </a> | |
| 1853 | + </div> | |
| 1854 | + </div> | |
| 1855 | + </div> | |
| 1856 | + </div> | |
| 1857 | + </div> | |
| 1858 | + </div> | |
| 1859 | +</div> | |
| 1860 | + | |
| 1861 | +<div class="modal fade" id="sendEstimateModal" role="dialog" data-backdrop="static" aria-labelledby="sendEstimateModalTitle" aria-hidden="true" customlabelreplaced="" data-contact-session-prefill-bound="true"> | |
| 1862 | + <div class="modal-dialog modal-lg" customlabelreplaced=""> | |
| 1863 | + <div class="modal-content" customlabelreplaced=""> | |
| 1864 | + <div class="modal-header" customlabelreplaced=""> | |
| 1865 | + <h2 id="sendEstimateModalTitle" class="h3 m-0" customlabelreplaced="">Email My Costs</h2> | |
| 1866 | + <button id="close" type="button" class="close" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""><svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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></button> | |
| 1867 | + </div> | |
| 1868 | + <!-- Modal body --> | |
| 1869 | + <div id="modalbodyemail" class="modal-body p-0" customlabelreplaced=""> | |
| 1870 | + <div class="row m-0" customlabelreplaced=""> | |
| 1871 | + <div id="sendEstimateDescription" class="col-12 col-md-5 p-0 align-content-end" customlabelreplaced=""></div> | |
| 1872 | + <div id="sendEstimateInput" class="col-12 col-md-7 px-4 px-md-5 py-4 align-content-center" customlabelreplaced=""> | |
| 1873 | + <form novalidate="" onsubmit="ysi.costestimator.sendEstimate(); return false;"> | |
| 1874 | + <p class="text-lg font-weight-bold" customlabelreplaced="">We'll send you a PDF with your costs for this unit.</p> | |
| 1875 | + | |
| 1876 | + <div class="form-row flex-nowrap mt-3" customlabelreplaced=""> | |
| 1877 | + <div class="col-6 form-group mb-3 floating-label" customlabelreplaced=""> | |
| 1878 | + <label for="costEstimateFirstName" customlabelreplaced="">First Name*</label> | |
| 1879 | + <input type="text" id="costEstimateFirstName" class="form-control" autocomplete="given-name" aria-describedby="invalidCostEstimateFirstName" required="" customlabelreplaced=""> | |
| 1880 | + <div id="invalidCostEstimateFirstName" class="invalid-feedback mt-1 d-none" aria-hidden="true" customlabelreplaced=""> | |
| 1881 | + Error: Please provide a valid First Name. | |
| 1882 | + </div> | |
| 1883 | + </div> | |
| 1884 | + <div class="col-6 form-group mb-3 floating-label" customlabelreplaced=""> | |
| 1885 | + <label for="costEstimateLastName" customlabelreplaced="">Last Name*</label> | |
| 1886 | + <input type="text" id="costEstimateLastName" class="form-control" autocomplete="family-name" aria-describedby="invalidCostEstimateLastName" required="" customlabelreplaced=""> | |
| 1887 | + <div id="invalidCostEstimateLastName" class="invalid-feedback mt-1 d-none" aria-hidden="true" customlabelreplaced=""> | |
| 1888 | + Error: Please provide a valid Last Name. | |
| 1889 | + </div> | |
| 1890 | + </div> | |
| 1891 | + </div> | |
| 1892 | + | |
| 1893 | + <div class="form-group floating-label position-relative mb-3" customlabelreplaced=""> | |
| 1894 | + <label for="costEstimateEmailAddress" customlabelreplaced="">Email Address*</label> | |
| 1895 | + <input type="email" id="costEstimateEmailAddress" class="form-control pr-5" autocomplete="email" aria-describedby="invalidCostEstimateEmail" required="" pattern="[A-Za-z0-9._%+\-]+@[A-Za-z0-9.\-]+\.[A-Za-z]{2,4}$" onkeyup="ysi.costestimator.validateEmail(this)"> | |
| 1896 | + <div id="invalidCostEstimateEmail" class="invalid-feedback mt-1 d-none" aria-hidden="true" customlabelreplaced=""> | |
| 1897 | + Error: Please provide a valid Email Address. | |
| 1898 | + </div> | |
| 1899 | + </div> | |
| 1900 | + | |
| 1901 | + <div class="form-group floating-label mb-3" customlabelreplaced=""> | |
| 1902 | + <label for="costEstimatePhone" customlabelreplaced="">Phone Number*</label> | |
| 1903 | + <input type="tel" id="costEstimatePhone" class="form-control" autocomplete="tel" aria-describedby="invalidCostEstimatePhone" required=""> | |
| 1904 | + <div id="invalidCostEstimatePhone" class="invalid-feedback mt-1 d-none" aria-hidden="true" customlabelreplaced=""> | |
| 1905 | + Error: Please provide a valid Phone Number. | |
| 1906 | + </div> | |
| 1907 | + </div> | |
| 1908 | + | |
| 1909 | + <button id="costEstimateSendEstimate" type="button" onclick="ysi.costestimator.sendEstimate()" class="submit-button btn btn-primary btn-block" data-email-button-verbiage="Email My Costs" customlabelreplaced="">Email My Costs</button> | |
| 1910 | + </form> | |
| 1911 | + <div class="mt-2" customlabelreplaced=""> | |
| 1912 | + This site is protected by reCAPTCHA. Google <a class="color-inherit" rel="nofollow" target="_blank" href="https://policies.google.com/privacy" customlabelreplaced="">Privacy Policy<span class="sr-only" customlabelreplaced=""> opens in a new tab</span></a> and <a class="color-inherit" rel="nofollow" target="_blank" href="https://policies.google.com/terms" customlabelreplaced="">Terms of Service<span class="sr-only" customlabelreplaced=""> opens in a new tab</span></a> apply | |
| 1913 | + </div> | |
| 1914 | + </div> | |
| 1915 | + <div id="sendEstimateResponse" class="col-12 col-md-7 px-4 px-md-5 py-4 align-content-center d-none" customlabelreplaced=""> | |
| 1916 | + <div id="sendEstimateResponseMessage" class="message" customlabelreplaced=""></div> | |
| 1917 | + | |
| 1918 | + <a class="applybtn btn btn-primary btn-block" type="button" target="_blank" href="#" onclick="if(typeof gtag!=='undefined'){var pn=document.querySelector('meta[name=author]').content;var c=document.getElementById('rentestimatepagecontainer');gtag('event','floorplan_selection',{'property_name':pn,'button_label':'apply_now','form_name':'apply_now','page_name':document.title,'page_url':window.location.href,'floorplan_name':c.dataset.fpName||'','floorplan_size':(c.dataset.fpSize||'')+' Bed(s)','square_footage':c.dataset.fpSqft||'','price':c.dataset.fpPrice||'','lease_term':c&&c.dataset.fpTerm||''})}" customlabelreplaced=""> | |
| 1919 | + Apply Now <span class="sr-only" customlabelreplaced=""> opens in a new tab</span> | |
| 1920 | + </a> | |
| 1921 | + <div class="mt-2" customlabelreplaced=""> | |
| 1922 | + This site is protected by reCAPTCHA. Google <a class="color-inherit" rel="nofollow" target="_blank" href="https://policies.google.com/privacy" customlabelreplaced="">Privacy Policy<span class="sr-only" customlabelreplaced=""> opens in a new tab</span></a> and <a class="color-inherit" rel="nofollow" target="_blank" href="https://policies.google.com/terms" customlabelreplaced="">Terms of Service<span class="sr-only" customlabelreplaced=""> opens in a new tab</span></a> apply | |
| 1923 | + </div> | |
| 1924 | + </div> | |
| 1925 | + </div> | |
| 1926 | + </div> | |
| 1927 | + </div> | |
| 1928 | + </div> | |
| 1929 | +</div> | |
| 1930 | + | |
| 1931 | + | |
| 1932 | +<script> | |
| 1933 | + function setGA4Cookie(tour, fpname, size, minSqft, maxSqft, minRent, maxRent) { | |
| 1934 | + var obj = new Object(); | |
| 1935 | + obj.tourType = tour; | |
| 1936 | + obj.fpName = fpname; | |
| 1937 | + obj.fpSize = size + ' Bed(s)'; | |
| 1938 | + obj.sqft = (minSqft === maxSqft) ? maxSqft : minSqft + '-' + maxSqft; | |
| 1939 | + obj.price = (minRent === maxRent) ? maxRent : minRent + '-' + maxRent; | |
| 1940 | + ysi.cookie.create('ga4cookie', JSON.stringify(obj)); | |
| 1941 | + } | |
| 1942 | +</script> | |
| 1943 | + | |
| 1944 | + | |
| 1945 | + | |
| 1946 | + | |
| 1947 | + | |
| 1948 | + | |
| 1949 | + | |
| 1950 | + | |
| 1951 | + | |
| 1952 | + | |
| 1953 | + | |
| 1954 | + | |
| 1955 | + | |
| 1956 | + | |
| 1957 | + | |
| 1958 | + | |
| 1959 | + | |
| 1960 | + | |
| 1961 | + | |
| 1962 | + | |
| 1963 | + | |
| 1964 | +<script> | |
| 1965 | + ysi.registerCallback(function () { | |
| 1966 | + if (ysi.mapModals) { | |
| 1967 | + ysi.mapModals.register({ | |
| 1968 | + latitude: "45.401723", | |
| 1969 | + longitude: "-75.781387" | |
| 1970 | + }); | |
| 1971 | + } | |
| 1972 | + }); | |
| 1973 | +</script> | |
| 1974 | +<script> | |
| 1975 | + // Function to update scroll padding top dynamically | |
| 1976 | + function updateScrollPadding() { | |
| 1977 | + const header = document.querySelector('header'); // or use your header class/id | |
| 1978 | + const html = document.documentElement; | |
| 1979 | + | |
| 1980 | + if (header) { | |
| 1981 | + const headerHeight = header.offsetHeight; | |
| 1982 | + html.style.scrollPaddingTop = `${headerHeight}px`; | |
| 1983 | + } | |
| 1984 | + } | |
| 1985 | + | |
| 1986 | + // Run on page load | |
| 1987 | + window.addEventListener('load', updateScrollPadding); | |
| 1988 | + | |
| 1989 | + // Run on window resize (e.g., responsive header height) | |
| 1990 | + window.addEventListener('resize', updateScrollPadding); | |
| 1991 | +</script> | |
| 1992 | + | |
| 1993 | + | |
| 1994 | + | |
| 1995 | + | |
| 1996 | + | |
| 1997 | + | |
| 1998 | + | |
| 1999 | + <input type="hidden" id="corpdni-request-verification-token" name="dni-request-verification-token" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ1PQZpUdCwHcYEq-VnpbuH-N6EE41FP80ppj_1u48lnjg4wU2XpPm23NAze4WGggxFEWCUP20nUHNahkQNQ_zNyceUlt0a-EjZYLs4KBA54wAGoFGalkNbqvLExDDcKpxE"> | |
| 2000 | + <input type="hidden" class="UrlPattern" name="urlPattern" value=""> | |
| 2001 | + <script> | |
| 2002 | + ysi.registerCallback(function () { | |
| 2003 | + const PropertyIds = [1968647]; | |
| 2004 | + const domain = 'securecafe.com'; | |
| 2005 | + const corptargetElement = ''; | |
| 2006 | + ysi.RCTPCampaignOnCorp.init(); | |
| 2007 | + if(corptargetElement){ | |
| 2008 | + // wait until element is available | |
| 2009 | + ysi.RCTPCampaignOnCorp.waitForElement(`#${corptargetElement?corptargetElement:'doesnotexist'}`, function(el) { | |
| 2010 | + ysi.RCTPCampaignOnCorp.ReplaceAllCampaignsParallel(PropertyIds); | |
| 2011 | + }); | |
| 2012 | + }else{ | |
| 2013 | + ysi.RCTPCampaignOnCorp.ReplaceAllCampaignsParallel(PropertyIds); | |
| 2014 | + } | |
| 2015 | + | |
| 2016 | + }); | |
| 2017 | + </script> | |
| 2018 | + | |
| 2019 | + | |
| 2020 | + <!-- Modal Schedule Tour --> | |
| 2021 | + <div class="modal fade" id="schedule-tour-window" tabindex="-1" role="dialog" aria-labelledby="ScheduleTourModalLabel" aria-hidden="true" customlabelreplaced=""> | |
| 2022 | + <div class="modal-dialog" role="document" customlabelreplaced=""> | |
| 2023 | + <div class="modal-content" customlabelreplaced=""> | |
| 2024 | + <div class="modal-header" customlabelreplaced=""> | |
| 2025 | + <h2 class="modal-title" id="ScheduleTourModalLabel" customlabelreplaced="">Schedule Tour </h2> | |
| 2026 | + <button type="button" class="close" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""> | |
| 2027 | + <span aria-hidden="true" customlabelreplaced="">×</span> | |
| 2028 | + </button> | |
| 2029 | + </div> | |
| 2030 | + <input type="hidden" name="urlPattern" id="urlPattern" value="/champlain-bloc-2-0"> | |
| 2031 | + <div id="help-widget-schedule-tour-modal-body" class="modal-body" customlabelreplaced=""> | |
| 2032 | + </div> | |
| 2033 | + </div> | |
| 2034 | + </div> | |
| 2035 | + </div> | |
| 2036 | + | |
| 2037 | + <!-- Modal Contact Us --> | |
| 2038 | + <div class="modal fade" id="ContactUsModal" tabindex="-1" role="dialog" aria-labelledby="ContactUsModalLabel" aria-hidden="true" customlabelreplaced=""> | |
| 2039 | + <div class="modal-dialog" role="document" customlabelreplaced=""> | |
| 2040 | + <div class="modal-content" customlabelreplaced=""> | |
| 2041 | + <div class="modal-header" customlabelreplaced=""> | |
| 2042 | + <h2 class="modal-title" id="ContactUsModalLabel" customlabelreplaced="">Contact Us </h2> | |
| 2043 | + <button type="button" class="close" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""> | |
| 2044 | + <span aria-hidden="true" customlabelreplaced="">×</span> | |
| 2045 | + </button> | |
| 2046 | + </div> | |
| 2047 | + <div id="contact-us-modal-body" class="modal-body" customlabelreplaced=""> | |
| 2048 | + </div> | |
| 2049 | + </div> | |
| 2050 | + </div> | |
| 2051 | + </div> | |
| 2052 | + | |
| 2053 | + <div class="modal fade" id="myContactModal" role="dialog" aria-hidden="true" customlabelreplaced=""> | |
| 2054 | + <div class="modal-dialog" customlabelreplaced=""> | |
| 2055 | + <div class="modal-content" customlabelreplaced=""> | |
| 2056 | + <div class="modal-header" customlabelreplaced=""> | |
| 2057 | + <h2 class="h3 m-0" customlabelreplaced="">Contact Us</h2> | |
| 2058 | + <button type="button" class="close" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""> | |
| 2059 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 2060 | + </button> | |
| 2061 | + </div> | |
| 2062 | + <!-- Modal body --> | |
| 2063 | + <div id="modalbodycontact" class="modal-body" customlabelreplaced=""> | |
| 2064 | + </div> | |
| 2065 | + | |
| 2066 | + </div> | |
| 2067 | + </div> | |
| 2068 | + </div> | |
| 2069 | + | |
| 2070 | + <!-- Modal Amenity Photogallery --> | |
| 2071 | + <div class="modal fade modal-dialog-gallery" id="myAmenityImages" role="dialog" aria-labelledby="AmenitiesModalTitle" customlabelreplaced="" aria-hidden="true"> | |
| 2072 | + <div class="modal-dialog modal-lg" customlabelreplaced=""> | |
| 2073 | + <div class="modal-content" customlabelreplaced=""> | |
| 2074 | + <div class="modal-header" customlabelreplaced=""> | |
| 2075 | + <h2 id="AmenitiesModalTitle" class="h3 m-0" customlabelreplaced="">Amenities Gallery</h2> | |
| 2076 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="AmenityCloseModalDialogButton" aria-label="close dialog" customlabelreplaced=""> | |
| 2077 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 2078 | + </button> | |
| 2079 | + </div> | |
| 2080 | + <div id="modalbodyGallery" class="modal-body" customlabelreplaced=""> | |
| 2081 | + </div> | |
| 2082 | + </div> | |
| 2083 | + </div> | |
| 2084 | + </div> | |
| 2085 | + <!-- Modal Floorplan Photogallery --> | |
| 2086 | + <div class="modal fade modal-dialog-gallery" id="FloorplanDetail" role="dialog" aria-labelledby="FloorplanModalTitle" customlabelreplaced="" aria-hidden="true"> | |
| 2087 | + <div class="modal-dialog modal-lg" customlabelreplaced=""> | |
| 2088 | + <div class="modal-content" customlabelreplaced=""> | |
| 2089 | + <div class="modal-header" customlabelreplaced=""> | |
| 2090 | + <h2 id="FloorplanModalTitle" class="h3 m-0" customlabelreplaced="">Floorplan Images</h2> | |
| 2091 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorplanCloseModalDialogButton" aria-label="close dialog" customlabelreplaced=""> | |
| 2092 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 2093 | + </button> | |
| 2094 | + </div> | |
| 2095 | + <div id="fpModalBodyGallery" class="modal-body" customlabelreplaced=""> | |
| 2096 | + </div> | |
| 2097 | + </div> | |
| 2098 | + </div> | |
| 2099 | + </div> | |
| 2100 | + | |
| 2101 | + | |
| 2102 | + | |
| 2103 | + | |
| 2104 | + | |
| 2105 | + | |
| 2106 | + | |
| 2107 | + | |
| 2108 | + | |
| 2109 | + | |
| 2110 | + | |
| 2111 | + | |
| 2112 | + | |
| 2113 | + | |
| 2114 | + | |
| 2115 | + | |
| 2116 | + | |
| 2117 | + | |
| 2118 | + | |
| 2119 | + | |
| 2120 | +<script> | |
| 2121 | + | |
| 2122 | + new ResizeObserver(() => { | |
| 2123 | + let vw = document.documentElement.clientWidth / 100; | |
| 2124 | + document.documentElement.style.setProperty('--vw', `${vw}px`); | |
| 2125 | + }).observe(document.documentElement); | |
| 2126 | + | |
| 2127 | + ysi.registerCallback(function () { | |
| 2128 | + ysi.urlPattern = ''; | |
| 2129 | + | |
| 2130 | + // init contact us modal | |
| 2131 | + document.querySelectorAll('.contact-us-btn').forEach(function (btn) { | |
| 2132 | + btn.addEventListener('click', function () { | |
| 2133 | + var campaignurl = ""; | |
| 2134 | + if (ysi.RCTPCampaignOnCorp) { | |
| 2135 | + campaignurl = campaignurl + ysi.RCTPCampaignOnCorp.GetCamgainURL(1968647); | |
| 2136 | + } | |
| 2137 | + opendialog('contact-us-modal-body', "/contactus?IsDialog=1&IsforCorpProperty=1&RCPropertyId=1968647" + campaignurl, ysi.modalContact.init); | |
| 2138 | + document.getElementById('ContactUsModal').getElementsByClassName('close')[0].focus(); | |
| 2139 | + }); | |
| 2140 | + }); | |
| 2141 | + | |
| 2142 | + document.querySelectorAll('.waitlist').forEach(function (btn) { | |
| 2143 | + btn.addEventListener('click', function () { | |
| 2144 | + var campaignurl = ""; | |
| 2145 | + if (ysi.RCTPCampaignOnCorp) { | |
| 2146 | + campaignurl = campaignurl + ysi.RCTPCampaignOnCorp.GetCamgainURL(1968647); | |
| 2147 | + } | |
| 2148 | + opendialog('contact-us-modal-body', "/contactus?IsDialog=1&IsforCorpProperty=1&RCPropertyId=1968647" + campaignurl, ysi.modalContact.init); | |
| 2149 | + document.getElementById('ContactUsModal').getElementsByClassName('close')[0].focus(); | |
| 2150 | + }); | |
| 2151 | + }); | |
| 2152 | + | |
| 2153 | + // init schedule a tour modal | |
| 2154 | + document.querySelectorAll('.schedule-a-tour-btn').forEach(function (btn) { | |
| 2155 | + btn.addEventListener('click', function () { | |
| 2156 | + var campaignurl = ""; | |
| 2157 | + if (ysi.RCTPCampaignOnCorp) { | |
| 2158 | + campaignurl = campaignurl + ysi.RCTPCampaignOnCorp.GetCamgainURL(1968647); | |
| 2159 | + } | |
| 2160 | + opendialog('help-widget-schedule-tour-modal-body', "/scheduletour?IsDialog=true&IsforCorpProperty=1&RCPropertyId=1968647"+campaignurl, ysi.initScheduleTour); | |
| 2161 | + document.getElementById('schedule-tour-window').getElementsByClassName('close')[0].focus(); | |
| 2162 | + }); | |
| 2163 | + }); | |
| 2164 | + | |
| 2165 | + // first, we need to reference the collapsible element | |
| 2166 | + var collapseLinks = document.querySelectorAll('.stretched-link'); | |
| 2167 | + var availabilityCard = document.querySelectorAll('.availability-card'); | |
| 2168 | + [].forEach.call(collapseLinks, function (toggleButton) { | |
| 2169 | + toggleButton.addEventListener('click', function () { | |
| 2170 | + if (this.closest(".availability-card").classList.contains("card-active")) { | |
| 2171 | + for (var j = 0; j < availabilityCard.length; j++) { | |
| 2172 | + availabilityCard[j].classList.remove("card-active"); | |
| 2173 | + } | |
| 2174 | + this.closest(".availability-card").classList.remove("card-active"); | |
| 2175 | + } | |
| 2176 | + else { | |
| 2177 | + for (var j = 0; j < availabilityCard.length; j++) { | |
| 2178 | + availabilityCard[j].classList.remove("card-active"); | |
| 2179 | + } | |
| 2180 | + this.closest(".availability-card").classList.add("card-active"); | |
| 2181 | + } | |
| 2182 | + }); | |
| 2183 | + }); | |
| 2184 | + | |
| 2185 | + // check if property is favorite | |
| 2186 | + // Favorite button defined in _PropertyDetailPageHeader.cshtml | |
| 2187 | + // Ideally, we should consolidate this and other favorite button components into a single file | |
| 2188 | + var isFavorite = ysi.cookie.read(`favorite${1968647}`); | |
| 2189 | + if (isFavorite) { | |
| 2190 | + document.querySelector('#favorite-btn').querySelector('span').classList.add("nu-heart-solid"); | |
| 2191 | + } | |
| 2192 | + document.querySelectorAll('#favorite-btn').forEach(function (btn) { | |
| 2193 | + btn.addEventListener('click', function () { | |
| 2194 | + if (btn.classList.contains('fav-active')) { | |
| 2195 | + btn.classList.remove('fav-active'); | |
| 2196 | + btn.setAttribute('aria-label', `Add ${btn.dataset.property} as favorite`); | |
| 2197 | + btn.querySelector('span').classList.remove('nu-heart-solid'); | |
| 2198 | + ysi.cookie.delete(`favorite${1968647}`); | |
| 2199 | + } | |
| 2200 | + // if heart is not solid/active, add to Favorites cookies, make solid heart, remove 'fav-active', adjust aria-label | |
| 2201 | + else { | |
| 2202 | + btn.classList.add('fav-active'); | |
| 2203 | + btn.setAttribute('aria-label', `Remove ${btn.dataset.property} from favorites`); | |
| 2204 | + btn.querySelector('span').classList.add('nu-heart-solid'); | |
| 2205 | + ysi.cookie.create(`favorite${1968647}`, '1968647'); | |
| 2206 | + } | |
| 2207 | + }); | |
| 2208 | + }); | |
| 2209 | + | |
| 2210 | + }); | |
| 2211 | + | |
| 2212 | +</script> | |
| 2213 | +<script>(function(){function c(){var b=a.contentDocument||(a.contentWindow&&a.contentWindow.document);if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'a31d885a4a0b5e1e',t:'MTc4Nzg1OTQ2NQ=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script> | |
| 2214 | + | |
| 2215 | + </div></div></div></main><iframe height="1" width="1" style="position: absolute; top: 0px; left: 0px; border-width: medium; border-style: none; border-color: currentcolor; border-image: none; visibility: hidden;"></iframe> | |
| 2216 | + | |
| 2217 | + <!--do not remove--> | |
| 2218 | + | |
| 2219 | + <footer><div class="px-lg-5 py-6 px-3 text-white bg-primary ysi-row hover-underline-wrapper link-white-fade-wrapper" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""><div class="pb-lg-0 pb-5 col-12 offset-0 d-flex justify-content-start align-items-start flex-column text-left col-lg-3 col-xl-2 footer-border" customlabelreplaced=""><div class="mb-4" customlabelreplaced=""> | |
| 2220 | + <div class="h4 font-base text-white" customlabelreplaced="" lang=""><span customlabelreplaced="">Contact Us</span></div> | |
| 2221 | + </div> | |
| 2222 | + | |
| 2223 | + | |
| 2224 | + | |
| 2225 | + | |
| 2226 | +<div class="ysi-address-widget ysi-address-wrapper mb-4 text-white vertical" customlabelreplaced=""> | |
| 2227 | + <div class="d-inline-flex" customlabelreplaced=""> | |
| 2228 | + <div class="mr-2" customlabelreplaced=""> | |
| 2229 | + <span aria-hidden="true" class=" " customlabelreplaced=""></span> | |
| 2230 | + </div> | |
| 2231 | + <address class="ysi-address"> | |
| 2232 | + <a class="address-link color-inherit d-block" href="https://maps.google.com?q=30 de la Bonne-Renommée Gatineau, QC J9H 0L1" target="_blank" rel="noreferrer" customlabelreplaced=""> | |
| 2233 | + <div itemprop="name" data-selenium-id="address_propname" customlabelreplaced="">Champlain Bloc 2 - UAT</div> | |
| 2234 | + <div itemprop="address" customlabelreplaced=""> | |
| 2235 | + <div data-selenium-id="address_street" customlabelreplaced=""> | |
| 2236 | + 30 de la Bonne-Renommée | |
| 2237 | + </div> | |
| 2238 | + <div customlabelreplaced=""> | |
| 2239 | + <span data-selenium-id="address_city" customlabelreplaced="">Gatineau</span>, <span data-selenium-id="address_state" customlabelreplaced="">QC</span><span data-selenium-id="address_zip" customlabelreplaced=""> J9H 0L1</span> | |
| 2240 | + </div> | |
| 2241 | + </div> | |
| 2242 | + <span class="sr-only" customlabelreplaced="">Opens in a new tab</span> | |
| 2243 | + </a> | |
| 2244 | + </address> | |
| 2245 | + | |
| 2246 | + </div> | |
| 2247 | +</div> | |
| 2248 | + | |
| 2249 | + | |
| 2250 | + | |
| 2251 | + <style>.mobile-only .click-to-call{display:none}</style> | |
| 2252 | + | |
| 2253 | + <div class="ysi-phone-widget ysi-phone-wrapper " customlabelreplaced=""> | |
| 2254 | + <div class="d-inline-flex" customlabelreplaced=""> | |
| 2255 | + <a data-selenium-id="click_to_call" onclick="fireGaPhone()" href="tel:+1 819-568-1771" aria-label="Call 6881530 Canada Inc (Brigil) at +1 819-568-1771" class="ysi-phone-number click-to-call-href text-decoration-none color-inherit ml-0 text-decoration-none text-white" customlabelreplaced=""> | |
| 2256 | + <span aria-hidden="true" class="fa-flip-horizontal " customlabelreplaced=""></span> | |
| 2257 | + <span data-selenium-id="click_to_call_span" class="click-to-call ml-2 text-underline" customlabelreplaced="">+1 819-568-1771</span> | |
| 2258 | + </a> | |
| 2259 | + | |
| 2260 | + </div> | |
| 2261 | + </div> | |
| 2262 | + <script> | |
| 2263 | + function fireGaPhone() { | |
| 2264 | + if (typeof gtag != 'undefined') { | |
| 2265 | + var myPage = location.pathname.replace("/", ""); | |
| 2266 | + if (myPage == "") { myPage = "index"; } | |
| 2267 | + if (true ) { | |
| 2268 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 2269 | + gtag('event', 'phone_call', { 'property_name': propertyName, 'page_name': document.title, 'page_url': window.location.href, 'header_phone_number': '+1 819-568-1771'}); | |
| 2270 | + } | |
| 2271 | + gtag('event', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 2272 | + gtag('rc.send', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 2273 | + } | |
| 2274 | + } | |
| 2275 | + </script> | |
| 2276 | +<div class="mb-5" customlabelreplaced=""> | |
| 2277 | + <a href="mailto:location@brigil.com" class="text-decoration-none font-base text-white" customlabelreplaced="" lang="">location@brigil.com</a> | |
| 2278 | + </div><ul class="mb-4 footer-social-links d-flex flex-row justify-content-start align-items-center" customlabelreplaced=""> | |
| 2279 | + <li class="mr-2 text-primary bg-third-color rounded-circle d-flex justify-content-center align-items-center" customlabelreplaced=""><a href="https://www.facebook.com/BRIGIL/" target="_blank" customlabelreplaced="" aria-label="Visit our Facebook"> <i class="fab fa-facebook-f" customlabelreplaced=""></i> </a></li> | |
| 2280 | + <li class="mr-2 text-primary bg-third-color rounded-circle d-flex justify-content-center align-items-center" customlabelreplaced=""> <a href="https://instagram.com/brigilhomes" target="_blank" customlabelreplaced="" aria-label="Visit our Instagram"> <i class="fab fa-instagram" customlabelreplaced=""></i> </a></li> | |
| 2281 | + <li class="mr-2 text-primary bg-third-color rounded-circle d-flex justify-content-center align-items-center" customlabelreplaced=""><a href="https://www.linkedin.com/company/brigil" target="_blank" customlabelreplaced="" aria-label="Visit our LinkedIn"> <i class="fab fa-linkedin" customlabelreplaced=""></i> </a></li> | |
| 2282 | + <li class="mr-2 text-primary bg-third-color rounded-circle d-flex justify-content-center align-items-center" customlabelreplaced=""><a href="https://www.youtube.com/@brigil8001" target="_blank" customlabelreplaced="" aria-label="Visit our Youtube"> <i class="fab fa-youtube" customlabelreplaced=""></i> </a></li> | |
| 2283 | +</ul></div><div class="py-lg-0 pl-md-5 pr-md-3 py-5 col-12 offset-0 d-flex justify-content-start align-items-start flex-column text-left col-lg-3 footer-border text-decoration-none useful-footer-links" customlabelreplaced=""> | |
| 2284 | + <div class="font-base text-white mb-4 h4" customlabelreplaced="" lang=""><span customlabelreplaced="">Useful Links</span></div> | |
| 2285 | + | |
| 2286 | + | |
| 2287 | + <ul class="list-unstyled" customlabelreplaced=""> | |
| 2288 | + <li customlabelreplaced=""><a class="color-inherit" target="_blank" href="https://batisseurcitoyen.brigil.com/" customlabelreplaced="">About Us <span class="sr-only" customlabelreplaced="">opens in new tab</span></a></li> | |
| 2289 | + <li customlabelreplaced=""><a class="color-inherit" href="specials-and-promotions" customlabelreplaced="">For Rent </a></li> | |
| 2290 | + <li customlabelreplaced=""><a class="color-inherit" href="specials-and-promotions#forsales" customlabelreplaced="">For Sale </a></li> | |
| 2291 | + <li customlabelreplaced=""><a class="color-inherit" href="/specials-and-promotions" customlabelreplaced="">Promotions </a></li> | |
| 2292 | + <li customlabelreplaced=""><a class="color-inherit" href="/commercial-development" customlabelreplaced="">Commercial </a></li> | |
| 2293 | + <li customlabelreplaced=""><a class="color-inherit" href="faq" customlabelreplaced="">FAQ </a></li> | |
| 2294 | + <li customlabelreplaced=""><a class="color-inherit" href="/contactus" customlabelreplaced="">Contact Us </a></li> | |
| 2295 | + <li customlabelreplaced=""><a class="color-inherit" href="/privacy-and-personal-information-protection-policy" customlabelreplaced="">Personal Information Protection Policy </a></li> | |
| 2296 | + <li customlabelreplaced=""><a class="color-inherit" href="/cookie-policy" customlabelreplaced="">Cookie Policy </a></li> | |
| 2297 | + | |
| 2298 | + | |
| 2299 | + </ul> | |
| 2300 | + <div id="additionalmenuid-1192-7794" style="display: none;" customlabelreplaced="">1192</div> | |
| 2301 | +</div><div class="pl-lg-2 pt-lg-0 pt-5 col-12 offset-0 d-flex justify-content-start align-items-start flex-column text-left col-lg-4 offset-lg-0 communities-footer-links" customlabelreplaced=""> | |
| 2302 | + <div class="h4 font-base text-white mb-4" customlabelreplaced="" lang=""><span customlabelreplaced="">Our Communities</span></div> | |
| 2303 | + | |
| 2304 | + | |
| 2305 | + <ul class="list-unstyled" customlabelreplaced=""> | |
| 2306 | + <li customlabelreplaced=""><a class="color-inherit" href="/le-columbia" customlabelreplaced="">Le Columbia </a></li> | |
| 2307 | + <li customlabelreplaced=""><a class="color-inherit" href="/domaine-du-vieux-port/default" customlabelreplaced="">Domaine du Vieux-Port </a></li> | |
| 2308 | + <li customlabelreplaced=""><a class="color-inherit" href="/chateau-golf" customlabelreplaced="">Château Golf </a></li> | |
| 2309 | + <li customlabelreplaced=""><a class="color-inherit" href="/champlain-village-urbain" customlabelreplaced="">Champlain Village Urbain </a></li> | |
| 2310 | + <li customlabelreplaced=""><a class="color-inherit" href="/ruisseaux-lepine-i/default" customlabelreplaced="">Ruisseaux Lépine </a></li> | |
| 2311 | + <li customlabelreplaced=""><a class="color-inherit" href="/ruisseaux-lepine-ii/default" customlabelreplaced="">Ruisseaux Lépine II </a></li> | |
| 2312 | + <li customlabelreplaced=""><a class="color-inherit" href="/horizon-condo" customlabelreplaced="">Horizon </a></li> | |
| 2313 | + <li customlabelreplaced=""><a class="color-inherit" href="/aura-rivermead/default.aspx" customlabelreplaced="">Aura – Rivermead </a></li> | |
| 2314 | + <li customlabelreplaced=""><a class="color-inherit" href="/canevas" customlabelreplaced="">Canevas </a></li> | |
| 2315 | + <li customlabelreplaced=""><a class="color-inherit" href="/plateau-du-parc/default.aspx" customlabelreplaced="">Plateau du Parc </a></li> | |
| 2316 | + <li customlabelreplaced=""><a class="color-inherit" href="/jardins-mcconnell/default.aspx" customlabelreplaced="">Jardins McConnell </a></li> | |
| 2317 | + <li customlabelreplaced=""><a class="color-inherit" href="/the-dale" customlabelreplaced="">The Dale </a></li> | |
| 2318 | + <li customlabelreplaced=""><a class="color-inherit" href="/929-richmond" customlabelreplaced="">929 Richmond </a></li> | |
| 2319 | + <li customlabelreplaced=""><a class="color-inherit" href="/baseline-rd" customlabelreplaced="">Baseline </a></li> | |
| 2320 | + <li customlabelreplaced=""><a class="color-inherit" href="/petries-landing-i" customlabelreplaced="">Petrie’s Landing I </a></li> | |
| 2321 | + <li customlabelreplaced=""><a class="color-inherit" href="/petries-landing-ii" customlabelreplaced="">Petrie’s Landing II </a></li> | |
| 2322 | + <li customlabelreplaced=""><a class="color-inherit" href="/center-park-st/default" customlabelreplaced="">Center Park </a></li> | |
| 2323 | + <li customlabelreplaced=""><a class="color-inherit" href="/460-st-laurent/default" customlabelreplaced="">460 St-Laurent </a></li> | |
| 2324 | + <li customlabelreplaced=""><a class="color-inherit" href="/kanata-lakes-av" customlabelreplaced="">Kanata Lakes </a></li> | |
| 2325 | + | |
| 2326 | + | |
| 2327 | + </ul> | |
| 2328 | + <div id="additionalmenuid-1193-5778" style="display: none;" customlabelreplaced="">1193</div> | |
| 2329 | +</div><div class="pt-lg-0 pl-md-5 py-5 col-12 offset-0 d-flex text-left col-lg-2 justify-content-start align-items-start flex-column" customlabelreplaced=""> | |
| 2330 | + <div class="h4 font-base text-white mb-4" customlabelreplaced="" lang=""><span customlabelreplaced="">Future Projects</span></div> | |
| 2331 | + | |
| 2332 | + | |
| 2333 | + <ul class="list-unstyled" customlabelreplaced=""> | |
| 2334 | + <li customlabelreplaced=""><a class="color-inherit" href="https://www.35laurier.com/" customlabelreplaced="">35 Laurier </a></li> | |
| 2335 | + <li customlabelreplaced=""><a class="color-inherit" href="https://resource.rentcafe.com/image/upload/s3/2/252329/2026-08-19_villagestewart_brochure_9x12_vf_web_compressed.pdf" customlabelreplaced="">Stewart Village </a></li> | |
| 2336 | + | |
| 2337 | + | |
| 2338 | + </ul> | |
| 2339 | + <div id="additionalmenuid-1675-9386" style="display: none;" customlabelreplaced="">1675</div> | |
| 2340 | +</div><div class="col-lg-2 col-12 justify-content-center align-items-center" customlabelreplaced=""> <div class="ysi-picture-widget ysi-picture-wrapper footer-logo w-50 " customlabelreplaced=""> | |
| 2341 | + <a href="https://www.brigil.com/" class="" title="The image contains the word "bright" in large white letters on a black background." aria-label="The image contains the word "bright" in large white letters on a black background." customlabelreplaced=""><picture><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_512,h_205,c_crop/q_auto,f_auto,c_limit,w_512/s3/2/252329/companylogo_light.png" class="mt-4 mt-lg-6 img-fluid" alt="The image contains the word "bright" in large white letters on a black background." width="512" height="205" loading="lazy"> | |
| 2342 | +</picture> | |
| 2343 | +</a> | |
| 2344 | + | |
| 2345 | + | |
| 2346 | + | |
| 2347 | + </div> | |
| 2348 | + | |
| 2349 | +</div></div></div></div><div class="px-5 py-4 text-white bg-primary ysi-row hover-underline-wrapper link-white-fade-wrapper" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""><div class="justify-content-center align-items-center flex-column d-flex text-center col-12 col-lg-12" customlabelreplaced=""> | |
| 2350 | + | |
| 2351 | +<div class="ysi-copyright" customlabelreplaced=""> | |
| 2352 | + <svg role="img" alt="Equal housing opportunity" aria-labelledby="svgeho" focusable="false" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="1em" height=".884em" viewBox="0 0 15.2 10.72"> | |
| 2353 | + <title id="svgeho">Equal housing opportunity</title> | |
| 2354 | + <defs><style> | |
| 2355 | + .cls-1 { | |
| 2356 | + fill-rule: evenodd; | |
| 2357 | + } | |
| 2358 | + </style></defs> | |
| 2359 | + <path class="cls-1" d="M7.54,0,0,3.72V5.46H.84V10.7H14.19V5.46h1V3.72Zm5,9.12H2.48V4.34l5.06-2.6,5,2.6Z"></path> | |
| 2360 | + <polygon class="cls-1" points="9.85 6.02 5.18 6.02 5.18 4.34 9.85 4.34 9.85 6.02 9.85 6.02"></polygon> | |
| 2361 | + <polygon class="cls-1" points="9.85 8.44 5.18 8.44 5.18 6.76 9.85 6.76 9.85 8.44 9.85 8.44"></polygon> | |
| 2362 | + </svg> | |
| 2363 | + <span id="footerText" data-selenium-id="customCopyrightText" customlabelreplaced="">© 2026 by Brigil.</span> | |
| 2364 | + <span customlabelreplaced=""> | <span customlabelreplaced="">Powered by RentCafe </span>(© <span customlabelreplaced="">2026 </span> Yardi Systems, Inc.<span customlabelreplaced=""> All Rights Reserved.</span>)</span> | |
| 2365 | +</div> | |
| 2366 | +</div></div></div></div></footer> | |
| 2367 | + | |
| 2368 | + | |
| 2369 | + | |
| 2370 | + | |
| 2371 | + | |
| 2372 | + | |
| 2373 | + | |
| 2374 | + <script> | |
| 2375 | + // Set visited timestamp, regardless of whether a nudge is on this page | |
| 2376 | + let visited = localStorage.getItem('timestamp'); | |
| 2377 | + if (!visited) { | |
| 2378 | + localStorage.setItem('timestamp', new Date().getTime()); | |
| 2379 | + } | |
| 2380 | + | |
| 2381 | + let innerPage = document.getElementById("innerpage"); | |
| 2382 | + // We check if device uses common breakpoint 767px, has touch capabilities, or supports DocumentTouch interface (supported by some older mobile browsers) | |
| 2383 | + let isMobileorTablet = window.matchMedia('(max-width: 767px)').mactches || ('ontouchstart' in window) || (window.DocumentTouch && document instanceof window.DocumentTouch); | |
| 2384 | + if (innerPage && !isMobileorTablet) { | |
| 2385 | + | |
| 2386 | + console.log('Not mobile or tablet'); | |
| 2387 | + let mainEle = document.querySelector("main"); | |
| 2388 | + let bannerImg = mainEle.previousElementSibling; | |
| 2389 | + | |
| 2390 | + | |
| 2391 | + if (bannerImg.classList.contains("fixed-background") && !bannerImg.classList.contains("ysi-innerpage-banner")) { | |
| 2392 | + console.log("No Banner Image Widget") | |
| 2393 | + bannerImg.classList.add("center-top"); | |
| 2394 | + let nudgeEle = document.getElementById("nudgeTop"); | |
| 2395 | + let menuEle = document.querySelector(".sticky-top"); | |
| 2396 | + | |
| 2397 | + function updateBackgroundPosition() { | |
| 2398 | + /* | |
| 2399 | + *We use the height of the nudge to correct | |
| 2400 | + *the position of the banner image when set to parallax | |
| 2401 | + */ | |
| 2402 | + let menuHeight = menuEle.offsetHeight; | |
| 2403 | + let nudgeHeight = nudgeEle.offsetHeight; | |
| 2404 | + bannerImg.style.backgroundPositionY = (nudgeHeight + menuHeight) + 'px'; | |
| 2405 | + } | |
| 2406 | + | |
| 2407 | + // Update background position | |
| 2408 | + updateBackgroundPosition(); | |
| 2409 | + | |
| 2410 | + // Update if window resized | |
| 2411 | + //window.addEventListener("resize", updateBackgroundPosition); | |
| 2412 | + | |
| 2413 | + // We chech for changes in the nudge widget | |
| 2414 | + let resizeObserver = new ResizeObserver(() => { | |
| 2415 | + updateBackgroundPosition(); | |
| 2416 | + }); | |
| 2417 | + | |
| 2418 | + resizeObserver.observe(nudgeEle); | |
| 2419 | + | |
| 2420 | + // We remove the classes that cause bg image to blow out | |
| 2421 | + bannerImg.classList.remove("cover", "center-center") | |
| 2422 | + }; | |
| 2423 | + | |
| 2424 | + } | |
| 2425 | + </script> | |
| 2426 | + | |
| 2427 | + | |
| 2428 | + | |
| 2429 | + | |
| 2430 | + <yardi-widget-craigslist></yardi-widget-craigslist> | |
| 2431 | + | |
| 2432 | +<script> | |
| 2433 | +ysi.registerCallback(function () { | |
| 2434 | + if (typeof ClickTrack != "undefined") { | |
| 2435 | + ClickTrack._PageDisplayName = 'ZGVmYXVsdCNTeXN0ZW0uUmFuZG9t-jXYbOXFDwuY%3d'; | |
| 2436 | + ClickTrack.SiteSection = 'CorporateILS' ; | |
| 2437 | + ClickTrack._CCDisplayName = ''; | |
| 2438 | + ClickTrack.CCQS = ''; | |
| 2439 | + ClickTrack._ULI = ''; | |
| 2440 | + ClickTrack._Property = 'MCNTeXN0ZW0uUmFuZG9t-cilC2GVJxbw%3d'; | |
| 2441 | + ClickTrack.isPreview = ''; | |
| 2442 | + | |
| 2443 | + | |
| 2444 | + ClickTrack.init(); | |
| 2445 | + } | |
| 2446 | + | |
| 2447 | + ysi.clicktrack && ysi.clicktrack.CheckAndPassCTUserAndVisit('securecafe.com','securecafeapplicant.com','rentcafe.com'); | |
| 2448 | +}); | |
| 2449 | +</script> | |
| 2450 | + | |
| 2451 | + | |
| 2452 | + | |
| 2453 | + | |
| 2454 | +<script> | |
| 2455 | + ysi.SiteId = 'Mzk5NDYz-R0xqF%2bXxhHc%3d'; | |
| 2456 | + ysi.registerCallback(function () { | |
| 2457 | + ysi.SiteId='Mzk5NDYz-R0xqF%2bXxhHc%3d'; | |
| 2458 | + if (window.location.search ) { | |
| 2459 | + if (window.location.search.includes("touchpoint")) { | |
| 2460 | + if (!ysi.cookie.read('Propleadtouchpoint_' + 252329)) { | |
| 2461 | + var urlParams = new URLSearchParams(window.location.search); | |
| 2462 | + urlParams.forEach(function (value, key) { | |
| 2463 | + if (key == "touchpoint" && value.length > 0) { | |
| 2464 | + ysi.cookie.create("Propleadtouchpoint_" + 252329, value, 0.0138889); | |
| 2465 | + } | |
| 2466 | + }); | |
| 2467 | + } | |
| 2468 | + } | |
| 2469 | + if (window.location.search.includes("conversationguid")) { | |
| 2470 | + | |
| 2471 | + var urlParams = new URLSearchParams(window.location.search); | |
| 2472 | + urlParams.forEach(function (value, key) { | |
| 2473 | + if (key == "conversationguid" && value.length > 0 && value.length != "undefined") { | |
| 2474 | + var conversationguidval = value; | |
| 2475 | + ysi.cookie.create("cgid", conversationguidval, 0.0138889); | |
| 2476 | + } | |
| 2477 | + }); | |
| 2478 | + } | |
| 2479 | + | |
| 2480 | + if (window.location.search.includes("ccpid")) { | |
| 2481 | + if (!ysi.cookie.read('ccpid_' + 252329)) { | |
| 2482 | + var urlParams = new URLSearchParams(window.location.search); | |
| 2483 | + urlParams.forEach(function (value, key) { | |
| 2484 | + if (key == "ccpid" && value.length > 0) { | |
| 2485 | + ysi.cookie.create("ccpid_" + 252329, value, 0.0138889); | |
| 2486 | + } | |
| 2487 | + }); | |
| 2488 | + } | |
| 2489 | + } | |
| 2490 | + | |
| 2491 | + } | |
| 2492 | + }); | |
| 2493 | + | |
| 2494 | + | |
| 2495 | +</script> | |
| 2496 | + | |
| 2497 | + | |
| 2498 | + | |
| 2499 | + | |
| 2500 | + | |
| 2501 | + | |
| 2502 | + | |
| 2503 | + | |
| 2504 | + | |
| 2505 | + <link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/pages/corp-site-property-detail.scss.558856.134323087888225674.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/pages/corp-site-property-detail.scss.558856.134323087888225674.css"></noscript> | |
| 2506 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/filters.scss.558856.134323087888225674.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/filters.scss.558856.134323087888225674.css"></noscript> | |
| 2507 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/ysi.datepicker.558856.134323087888225674.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/ysi.datepicker.558856.134323087888225674.css"></noscript> | |
| 2508 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/schedule-a-tour.558856.134323087888225674.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/schedule-a-tour.558856.134323087888225674.css"></noscript> | |
| 2509 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/photogallery-default-widget.558856.134323087888225674.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/photogallery-default-widget.558856.134323087888225674.css"></noscript> | |
| 2510 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/modal-widget.558856.134323087888225674.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/modal-widget.558856.134323087888225674.css"></noscript> | |
| 2511 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/amenityicons/amenity-icons.558856.134323087888225674.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/amenityicons/amenity-icons.558856.134323087888225674.css"></noscript> | |
| 2512 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/pages/corp-site-property-detail-enhanced.scss.558856.134323087888225674.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/pages/corp-site-property-detail-enhanced.scss.558856.134323087888225674.css"></noscript> | |
| 2513 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/office-hours-layout1-widget.558856.134323087888225674.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/office-hours-layout1-widget.558856.134323087888225674.css"></noscript> | |
| 2514 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/map-widget.558856.134323087888225674.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/map-widget.558856.134323087888225674.css"></noscript> | |
| 2515 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/floorplans-optimized-image-modal.558856.134323087888225674.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/floorplans-optimized-image-modal.558856.134323087888225674.css"></noscript> | |
| 2516 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/accessibility-options.558856.134323087888225674.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/accessibility-options.558856.134323087888225674.css"></noscript> | |
| 2517 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/address-widget.558856.134323087888225674.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/address-widget.558856.134323087888225674.css"></noscript> | |
| 2518 | + | |
| 2519 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.modal.134322934460000000.js"></script> | |
| 2520 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/map-widget-modals.134322934340000000.js"></script> | |
| 2521 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.bsn.134322934430000000.js"></script> | |
| 2522 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.lib.134322934460000000.js"></script> | |
| 2523 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.smartclasses.134322934470000000.js"></script> | |
| 2524 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/siteeditor-preview.134322934220000000.js"></script> | |
| 2525 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/incompatible-browser.134322934150000000.js" nomodule="nomodule"></script> | |
| 2526 | +<script src="https://cdngeneralmvc.rentcafe.com/admin/admin-area.js" defer="defer"></script> | |
| 2527 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/leadattributionanddnicorp.134322934320000000.js"></script> | |
| 2528 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/socialmedia-widget.134322934400000000.js"></script> | |
| 2529 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.bootstrap.carousel.134322934410000000.js"></script> | |
| 2530 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/focus-scroll-visible.134322934300000000.js"></script> | |
| 2531 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/map-widget-mapbox.134322934340000000.js"></script> | |
| 2532 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/form-contact-session.134322934300000000.js"></script> | |
| 2533 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/modal-widget.134322934340000000.js"></script> | |
| 2534 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/login-links-dropdown.134322934320000000.js"></script> | |
| 2535 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/menu.134322934340000000.js"></script> | |
| 2536 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/floorplans-widget.134322934300000000.js"></script> | |
| 2537 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.datepicker.134322934440000000.js"></script> | |
| 2538 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/servertranslation.134322934220000000.js"></script> | |
| 2539 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/floorplan-optimized-image-modals.134322934300000000.js"></script> | |
| 2540 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/floorplan-optimized-layout-widget.134322934300000000.js"></script> | |
| 2541 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/floating-label-dropdown.134322934290000000.js"></script> | |
| 2542 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/floating-label-dropdown-range.134322934290000000.js"></script> | |
| 2543 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/recaptcha-widget.134322934370000000.js"></script> | |
| 2544 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/contactmodal-widget.134322934250000000.js"></script> | |
| 2545 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/contactus.134322934260000000.js"></script> | |
| 2546 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/schedule-tour.134322934380000000.js"></script> | |
| 2547 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/photogallery_propertydetails-widget.134322934360000000.js"></script> | |
| 2548 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.bootstrap.carousel.lightbox.134322934410000000.js"></script> | |
| 2549 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.bootstrap.carousel.multicolumns.134322934420000000.js"></script> | |
| 2550 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/photogallery_cards-widget.134322934360000000.js" defer="defer"></script> | |
| 2551 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/corp-site-property-detail-enhanced.134322934260000000.js"></script> | |
| 2552 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/corp-site-property-detail-speciality-nav.134322934260000000.js"></script> | |
| 2553 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/rent-estimator.134322934370000000.js"></script> | |
| 2554 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/rent-estimator-modals.134322934370000000.js"></script> | |
| 2555 | +<script src="https://t.rentcafe.com/rctv1.4.min.js"></script> | |
| 2556 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/clicktrack-widget.134322934250000000.js"></script> | |
| 2557 | +<script>if (window.location.toString().indexOf("our-communities") != -1) { | |
| 2558 | +var brigilcustomphone = document.querySelectorAll('header .ysi-phone-widget.ysi-phone-wrapper.mr-4 a') | |
| 2559 | +brigilcustomphone.forEach((brigil)=>{ | |
| 2560 | + brigil.setAttribute("href", "tel:+1 819-410-3102"); | |
| 2561 | +}) | |
| 2562 | +} | |
| 2563 | + | |
| 2564 | +/* SCHEDULE TOUR FIX START */ | |
| 2565 | + | |
| 2566 | +// Select all guided-tour buttons inside #propertydetail | |
| 2567 | +document | |
| 2568 | + .querySelectorAll('#propertydetail a[id^="guided-tour-btn-"]') | |
| 2569 | + .forEach(link => { | |
| 2570 | + // Change the link text to "Schedule Tour" | |
| 2571 | + link.textContent = 'Schedule Tour'; | |
| 2572 | + | |
| 2573 | + // Remove interfering behaviors | |
| 2574 | + link.removeAttribute('href'); | |
| 2575 | + link.removeAttribute('onclick'); | |
| 2576 | + | |
| 2577 | + // On click, proxy click to the working button | |
| 2578 | + link.addEventListener('click', e => { | |
| 2579 | + e.preventDefault(); | |
| 2580 | + e.stopImmediatePropagation(); | |
| 2581 | + | |
| 2582 | + const targetButton = document.querySelector('.schedule-a-tour-btn'); | |
| 2583 | + if (targetButton) { | |
| 2584 | + targetButton.click(); // trigger the existing working button | |
| 2585 | + } | |
| 2586 | + }); | |
| 2587 | + }); | |
| 2588 | + | |
| 2589 | +const modalEl = document.getElementById('schedule-tour-window'); | |
| 2590 | +const scheduleBtn = document.querySelector('.schedule-a-tour-btn'); | |
| 2591 | + | |
| 2592 | +if (modalEl && scheduleBtn) { | |
| 2593 | + // Listen for the close button clicks | |
| 2594 | + modalEl.querySelectorAll('.close').forEach(closeBtn => { | |
| 2595 | + closeBtn.addEventListener('click', () => { | |
| 2596 | + scheduleBtn.blur(); // remove focus to prevent scrolling | |
| 2597 | + }); | |
| 2598 | + }); | |
| 2599 | + | |
| 2600 | + // Also handle clicks outside modal (backdrop) | |
| 2601 | + modalEl.addEventListener('click', (e) => { | |
| 2602 | + if (e.target === modalEl) { // clicked backdrop | |
| 2603 | + scheduleBtn.blur(); | |
| 2604 | + } | |
| 2605 | + }); | |
| 2606 | + | |
| 2607 | + // Handle Escape key | |
| 2608 | + document.addEventListener('keydown', (e) => { | |
| 2609 | + if (e.key === 'Escape' && modalEl.classList.contains('show')) { | |
| 2610 | + scheduleBtn.blur(); | |
| 2611 | + } | |
| 2612 | + }); | |
| 2613 | +} | |
| 2614 | + | |
| 2615 | +/* SCHEDULE TOUR FIX END */ | |
| 2616 | + | |
| 2617 | +/* PROPERTY DETAIL PAGE FIX START */ | |
| 2618 | + | |
| 2619 | +var el = document.querySelector('div.pb-lg-2'); | |
| 2620 | +if (el) { | |
| 2621 | + // Extract the first dollar amount | |
| 2622 | + var match = el.textContent.match(/\$[\d,]+(\.\d{2})?/); | |
| 2623 | + if (match) { | |
| 2624 | + // Convert to number and round | |
| 2625 | + var numericValue = parseFloat(match[0].replace(/[$,]/g, '')); | |
| 2626 | + var roundedPrice = Math.round(numericValue); | |
| 2627 | + | |
| 2628 | + el.textContent = 'Starting at $' + roundedPrice.toLocaleString() + ' /Month'; | |
| 2629 | + } | |
| 2630 | +} | |
| 2631 | + | |
| 2632 | + | |
| 2633 | +/* PROPERTY DETAIL PAGE FIX END */ | |
| 2634 | + | |
| 2635 | + | |
| 2636 | + | |
| 2637 | +</script> | |
| 2638 | + | |
| 2639 | + <script>ysi.serviceworker={register:function(){if("serviceWorker"in navigator){let e=document.getElementById("mainCSS"),r=e?encodeURI(e.getAttribute("href")):"",i=r?r.substr(r.indexOf(".")+1,r.lastIndexOf(".")-r.indexOf(".")-1):"",s=document.querySelectorAll("[data-name=property-logo]")[0],t=s?"PICTURE"===s.tagName?s.getElementsByTagName("img")[0].src:s.src:"",o="/serviceworker.js?version="+i+"&css="+r+"&logo="+(t=t?encodeURI(t):"")+"&serviceworker=1";navigator.serviceWorker.register(o)}}},ysi.serviceworker&&ysi.serviceworker.register();</script> | |
| 2640 | + | |
| 2641 | + | |
| 2642 | + | |
| 2643 | + | |
| 2644 | + | |
| 2645 | + | |
| 2646 | + | |
| 2647 | + | |
| 2648 | + <!-- | |
| 2649 | + <yardi-add-sass path="widgets/go-to-top" async="true" /> | |
| 2650 | +--> | |
| 2651 | + | |
| 2652 | +<div id="goToTop" role="complementary" aria-labelledby="gototoparialabel" customlabelreplaced=""> | |
| 2653 | + <button data-selenium-id="btngototop" class="btn btn-dark border-0 widget-left" customlabelreplaced=""><svg width="16px" height="26px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z"></path></svg><span class="sr-only" id="gototoparialabel" customlabelreplaced="">Go to top</span></button> | |
| 2654 | +</div> | |
| 2655 | + | |
| 2656 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/go-to-top.134322934300000000.js" defer="defer"></script> | |
| 2657 | + | |
| 2658 | + | |
| 2659 | + <!--Accessibility Modal --> | |
| 2660 | + <div class="modal hide fade" id="acsModal" role="dialog" aria-labelledby="acsModalTitle" aria-modal="true" aria-hidden="true" customlabelreplaced=""> | |
| 2661 | + <div class="modal-dialog modal-dialog-scrollable modal-left" role="document" customlabelreplaced=""> | |
| 2662 | + <div class="modal-content" customlabelreplaced=""> | |
| 2663 | + <div class="modal-header" customlabelreplaced=""> | |
| 2664 | + <span class="modal-title" id="acsModalTitle" role="heading" aria-level="2" customlabelreplaced=""> | |
| 2665 | + Accessibility Options | |
| 2666 | + </span> | |
| 2667 | + <button id="acsClose" type="button" class="close acs-Close" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""> | |
| 2668 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 2669 | + </button> | |
| 2670 | + </div> | |
| 2671 | + <div class="modal-body" id="acsOptions" customlabelreplaced=""> | |
| 2672 | + <!--Color Adjustments Container --> | |
| 2673 | + <div class="acs-adjustment-container" id="colorAdjustment" data-ysi-acs-container="colorContainer" customlabelreplaced=""> | |
| 2674 | + <div class="acs-category-title" role="heading" aria-level="3" customlabelreplaced="">Color Adjustment</div> | |
| 2675 | + <div class="acs-adjustments-group" customlabelreplaced=""> | |
| 2676 | + <button type="button" class="acs-adjustment acs-color-choice " aria-pressed="false" data-ysi-acs-color-adjustment="" data-ysi-acs-light-contrast="" data-ysi-acs-color="light" customlabelreplaced=""> | |
| 2677 | + <div class="acs-adjustment-content" customlabelreplaced=""> | |
| 2678 | + <svg class="acs-adjustment-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="48px" height="48px" viewBox="0 0 48 48"> | |
| 2679 | + <g stroke-width="2" transform="translate(0, 0)"> | |
| 2680 | + <line data-color="color-2" fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" x1="2" y1="24" x2="6" y2="24" stroke-linejoin="miter"></line> | |
| 2681 | + <line data-color="color-2" fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" x1="8.444" y1="8.444" x2="11.272" y2="11.272" stroke-linejoin="miter"></line> | |
| 2682 | + <line data-color="color-2" fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" x1="24" y1="2" x2="24" y2="6" stroke-linejoin="miter"></line> | |
| 2683 | + <line data-color="color-2" fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" x1="39.556" y1="8.444" x2="36.728" y2="11.272" stroke-linejoin="miter"></line> | |
| 2684 | + <line data-color="color-2" fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" x1="46" y1="24" x2="42" y2="24" stroke-linejoin="miter"></line> | |
| 2685 | + <line data-color="color-2" fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" x1="39.556" y1="39.556" x2="36.728" y2="36.728" stroke-linejoin="miter"></line> | |
| 2686 | + <line data-color="color-2" fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" x1="24" y1="46" x2="24" y2="42" stroke-linejoin="miter"></line> | |
| 2687 | + <line data-color="color-2" fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" x1="8.444" y1="39.556" x2="11.272" y2="36.728" stroke-linejoin="miter"></line> | |
| 2688 | + <circle fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" cx="24" cy="24" r="12" stroke-linejoin="miter"></circle> | |
| 2689 | + </g> | |
| 2690 | + </svg> | |
| 2691 | + <span class="acs-adjustment-title" customlabelreplaced="">Light Contrast</span> | |
| 2692 | + </div> | |
| 2693 | + </button> | |
| 2694 | + <button type="button" class="acs-adjustment acs-color-choice " aria-pressed="false" data-ysi-acs-color-adjustment="" data-ysi-acs-dark-contrast="" data-ysi-acs-color="dark" customlabelreplaced=""> | |
| 2695 | + <div class="acs-adjustment-content" customlabelreplaced=""> | |
| 2696 | + <svg class="acs-adjustment-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="32px" height="32px" viewBox="0 0 32 32"> | |
| 2697 | + <g transform="translate(0, 0)"> | |
| 2698 | + <path fill="#444444" d="M29.7,18.5c-1.2,0.3-2.3,0.5-3.5,0.5C18.9,19,13,13.1,13,5.8c0-1.1,0.2-2.3,0.5-3.5c0.1-0.3,0-0.7-0.3-1 | |
| 2699 | + C13,1,12.6,0.9,12.2,1C5.6,2.8,1,8.9,1,15.7C1,24.2,7.8,31,16.3,31c6.9,0,12.9-4.6,14.7-11.2c0.1-0.3,0-0.7-0.3-1 | |
| 2700 | + S30.1,18.4,29.7,18.5z"></path> | |
| 2701 | + </g> | |
| 2702 | + </svg> | |
| 2703 | + <span class="acs-adjustment-title" customlabelreplaced="">Dark Contrast</span> | |
| 2704 | + </div> | |
| 2705 | + </button> | |
| 2706 | + <button type="button" class="acs-adjustment acs-color-choice " aria-pressed="false" data-ysi-acs-color-adjustment="" data-ysi-acs-monochrome="" data-ysi-acs-color="monochrome" customlabelreplaced=""> | |
| 2707 | + <div class="acs-adjustment-content" customlabelreplaced=""> | |
| 2708 | + <svg class="acs-adjustment-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="32px" height="32px" viewBox="0 0 32 32"> | |
| 2709 | + <g transform="translate(0, 0)"> | |
| 2710 | + <rect y="1" width="11" height="30" fill="#444444"></rect> | |
| 2711 | + <rect x="17" y="1" width="7" height="30" fill="#444444" opacity="0.7" data-color="color-2"></rect> | |
| 2712 | + <rect x="30" y="1" width="2" height="30" fill="#444444" opacity="0.4"></rect> | |
| 2713 | + </g> | |
| 2714 | + </svg> | |
| 2715 | + <span class="acs-adjustment-title" customlabelreplaced="">Monochrome</span> | |
| 2716 | + </div> | |
| 2717 | + </button> | |
| 2718 | + <button type="button" class="acs-adjustment acs-color-choice " aria-pressed="false" data-ysi-acs-color-adjustment="" data-ysi-acs-high-saturation="" data-ysi-acs-color="high-saturation" customlabelreplaced=""> | |
| 2719 | + <div class="acs-adjustment-content" customlabelreplaced=""> | |
| 2720 | + <svg class="acs-adjustment-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="32px" height="32px" viewBox="0 0 32 32"> | |
| 2721 | + <g transform="translate(0, 0)"> | |
| 2722 | + <path fill="#444444" d="M27.3,4.7c-3-3-7-4.7-11.3-4.7S7.7,1.7,4.7,4.7c-6.2,6.2-6.2,16.4,0,22.6c3,3,7,4.7,11.3,4.7 | |
| 2723 | + s8.3-1.7,11.3-4.7C33.6,21.1,33.6,10.9,27.3,4.7z M6.1,6.1C8.7,3.5,12.3,2,16,2c3.4,0,6.6,1.2,9.2,3.4L5.4,25.2 | |
| 2724 | + C0.7,19.7,0.9,11.3,6.1,6.1z"></path> | |
| 2725 | + </g> | |
| 2726 | + </svg> | |
| 2727 | + <span class="acs-adjustment-title" customlabelreplaced="">High Saturation</span> | |
| 2728 | + </div> | |
| 2729 | + </button> | |
| 2730 | + <button type="button" class="acs-adjustment acs-color-choice " aria-pressed="false" data-ysi-acs-color-adjustment="" data-ysi-acs-low-saturation="" data-ysi-acs-color="low-saturation" customlabelreplaced=""> | |
| 2731 | + <div class="acs-adjustment-content" customlabelreplaced=""> | |
| 2732 | + <svg class="acs-adjustment-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="32px" height="32px" viewBox="0 0 32 32"> | |
| 2733 | + <g stroke-width="2" transform="translate(0, 0)"> | |
| 2734 | + <path data-color="color-2" data-stroke="none" d="M26.607,5.393,5.393,26.607A15,15,0,0,0,26.607,5.393Z" fill="#444444" opacity="0.5"></path> | |
| 2735 | + <line data-cap="butt" x1="26.607" y1="5.393" x2="5.393" y2="26.607" fill="none" stroke="#444444" stroke-miterlimit="10" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter"></line> | |
| 2736 | + <circle cx="16" cy="16" r="15" fill="none" stroke="#444444" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></circle> | |
| 2737 | + </g> | |
| 2738 | + </svg> | |
| 2739 | + <span class="acs-adjustment-title" customlabelreplaced="">Low Saturation</span> | |
| 2740 | + </div> | |
| 2741 | + </button> | |
| 2742 | + <button type="button" class="acs-adjustment acs-color-choice " aria-pressed="false" data-ysi-acs-color-adjustment="" data-ysi-acs-invert-colors="" data-ysi-acs-color="invert-colors" customlabelreplaced=""> | |
| 2743 | + <div class="acs-adjustment-content" customlabelreplaced=""> | |
| 2744 | + <svg class="acs-adjustment-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="32px" height="32px" viewBox="0 0 32 32"> | |
| 2745 | + <g transform="translate(0, 0)"> | |
| 2746 | + <polygon data-color="color-2" fill="#444444" points="7,14 9,14 9,11 12,11 12,9 9,9 9,6 7,6 7,9 4,9 4,11 7,11 "></polygon> | |
| 2747 | + <path fill="#444444" d="M31,2H1C0.448,2,0,2.448,0,3v26c0,0.552,0.448,1,1,1h30c0.552,0,1-0.448,1-1V3C32,2.448,31.552,2,31,2z | |
| 2748 | + M28,23h-8v-2h8V23z M2.154,28H2V4h27.846L2.154,28z"></path> | |
| 2749 | + </g> | |
| 2750 | + </svg> | |
| 2751 | + <span class="acs-adjustment-title" customlabelreplaced="">Invert Colors</span> | |
| 2752 | + </div> | |
| 2753 | + </button> | |
| 2754 | + </div> | |
| 2755 | + <!-- --> | |
| 2756 | + </div> | |
| 2757 | + <!-- Text Adjustment Container --> | |
| 2758 | + <div class="acs-adjustment-container" id="textAdjustment" data-ysi-acs-container="textContainer" customlabelreplaced=""> | |
| 2759 | + <div class="acs-category-title" role="heading" aria-level="3" customlabelreplaced="">Text Adjustment</div> | |
| 2760 | + <div class="acs-adjustments-group" customlabelreplaced=""> | |
| 2761 | + <button id="textSizing" aria-pressed="" data-ysi-acs-text-scaling="" data-ysi-text-adjustment="acs-default" type="button" class="acs-adjustment acs-text-enlarge-choice " data-toggle="tooltip" data-placement="right" data-animation="true" data-title="Click button to cycle between regular, large, and extra large text sizes. " customlabelreplaced="" data-original-title="Click button to cycle between regular, large, and extra large text sizes. "><div class="acs-adjustment-content" customlabelreplaced=""> | |
| 2762 | + <svg class="acs-adjustment-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="32px" height="32px" viewBox="0 0 32 32"><g transform="translate(0, 0)"><path d="M14,19.438V3h3.558a2,2,0,0,1,1.9,1.368L20,6h2V0H2V6H4l.544-1.632A2,2,0,0,1,6.442,3H10V19.438a2,2,0,0,1-1.515,1.941L6,22v2H18V22l-2.485-.621A2,2,0,0,1,14,19.438Z" fill="#444444"></path><polygon points="24 12 21 12 21 9 19 9 19 12 16 12 16 14 19 14 19 17 21 17 21 14 24 14 24 12" fill="#444444" data-color="color-2"></polygon></g></svg> | |
| 2763 | + <span class="acs-adjustment-title" customlabelreplaced="">Enlarge Text</span> | |
| 2764 | + <span class="acs-adjustment-description" customlabelreplaced=""></span> | |
| 2765 | + <div class="d-flex w-100 h-10" customlabelreplaced=""><span class="w-50 h-60 badge-pill border-2 acs-indicator " data-ysi-acs-indicator-large="" customlabelreplaced=""></span><span class="w-50 h-60 ml-1 badge-pill border-2 acs-indicator " data-ysi-acs-indicator-extra-large="" customlabelreplaced=""></span></div> | |
| 2766 | + </div></button> | |
| 2767 | + </div> | |
| 2768 | + </div> | |
| 2769 | + </div> | |
| 2770 | + <div class="modal-footer flex-column customColor" customlabelreplaced=""> | |
| 2771 | + <button id="resetAcs" type="button" class="btn btn-sm" style="background-color: " customlabelreplaced="">Reset Accessibility Widget</button> | |
| 2772 | + <button id="acsHide" type="button" class="accessibility-button btn btn-sm mt-2" data-target="#closeModalToggle" data-toggle="modal" style="background-color: " customlabelreplaced="">Remove Accessibility Widget</button> | |
| 2773 | + <span class="acs-powered-by m-0 pt-3" customlabelreplaced="">Powered by RentCafe</span> | |
| 2774 | + </div> | |
| 2775 | + </div> | |
| 2776 | + </div> | |
| 2777 | + </div> | |
| 2778 | + <!-- Second modal --> | |
| 2779 | + <div class="modal hide fade closeModal" role="dialog" aria-modal="true" id="closeModalToggle" aria-hidden="true" aria-labelledby="closeModalTitle" tabindex="-1" customlabelreplaced=""> | |
| 2780 | + <div class="modal-dialog modal-dialog-centered modal-left" customlabelreplaced=""> | |
| 2781 | + <div class="modal-content" customlabelreplaced=""> | |
| 2782 | + <div class="modal-header" customlabelreplaced=""> | |
| 2783 | + <span class="modal-title" id="closeModalTitle" customlabelreplaced="">Are you sure you want to remove the accessibility widget?</span> | |
| 2784 | + <button type="button" class="close acs-Close" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""> | |
| 2785 | + <svg width="14px" height="22px" fill="#000" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 2786 | + </button> | |
| 2787 | + </div> | |
| 2788 | + <div class="modal-body" id="confirmModal" customlabelreplaced=""> | |
| 2789 | + This will reset any color adjustments you made and remove the accessibility widget from the website. The accessibility widget can be restored by completely closing and reopening the browser. | |
| 2790 | + </div> | |
| 2791 | + <div class="modal-footer justify-content-end" customlabelreplaced=""> | |
| 2792 | + <button class="accessibility-button btn btn-sm btn-underline mr-sm-3" data-target="#acsModal" data-toggle="modal" customlabelreplaced="">Cancel</button> | |
| 2793 | + <button class="btn btn-sm" data-dismiss="modal" id="closeAccs" customlabelreplaced="">Confirm</button> | |
| 2794 | + | |
| 2795 | + </div> | |
| 2796 | + </div> | |
| 2797 | + </div> | |
| 2798 | + </div> | |
| 2799 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/accessibility-options-widget.134322934240000000.js"></script> | |
| 2800 | + | |
| 2801 | + | |
| 2802 | + | |
| 2803 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.localstorage.134322934460000000.js"></script> | |
| 2804 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/adwords_gadid.134322934040000000.js"></script> | |
| 2805 | + | |
| 2806 | + | |
| 2807 | + | |
| 2808 | + | |
| 2809 | + <style> | |
| 2810 | + :root { | |
| 2811 | + --helpwidget-background-color: #000000; | |
| 2812 | + --helpwidget-outline-color: #ffffff; | |
| 2813 | + } | |
| 2814 | + </style> | |
| 2815 | +<div id="help-widget" class="w-100 widget-right" role="complementary" aria-label="Front desk - how can we help you?" customlabelreplaced=""> | |
| 2816 | + <input type="hidden" name="propertyid" id="propertyid" value="1968647"> | |
| 2817 | + | |
| 2818 | + | |
| 2819 | + <script> | |
| 2820 | + | |
| 2821 | + function callusGA4trackM() { | |
| 2822 | + if (typeof gtag != 'undefined') { | |
| 2823 | + gtag('event', 'phone_call', { 'property_name': document.querySelector('meta[name="author"]').content, 'page_name': document.title, 'page_url': window.location.href, 'header_phone_number': '(819) 568-1771'}); | |
| 2824 | + } | |
| 2825 | + } | |
| 2826 | + | |
| 2827 | + </script> | |
| 2828 | + | |
| 2829 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/help-widget-default.558856.134323087888225674.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/help-widget-default.558856.134323087888225674.css"></noscript> | |
| 2830 | + | |
| 2831 | + | |
| 2832 | +<!---START: Layout horizontal---> | |
| 2833 | +<!---NOTE: .frontdesk-animation is used for animation. Remove class if you want to remove animation---> | |
| 2834 | + | |
| 2835 | +<div id="frontDesk-widget-horizontal" class="frontDesk-widget-horizontal horizontal position-fixed d-flex frontdesk-animation" customlabelreplaced=""> | |
| 2836 | + <button id="btnFrontDesk" type="button" class="btn btn-primary hide-frontDesk-widget bell" aria-expanded="true" data-selenium-id="showHidefrontDeskWidget" customlabelreplaced="" aria-label="Hide Front Desk"> | |
| 2837 | + <span class="d-block bounce-dot" customlabelreplaced=""></span> | |
| 2838 | + <span class="btn-bell d-inline-block" customlabelreplaced=""> | |
| 2839 | + <span class="fas fa-concierge-bell" aria-hidden="true" customlabelreplaced=""></span> | |
| 2840 | + <span class="sr-only" customlabelreplaced="">Front desk options </span> | |
| 2841 | + </span> | |
| 2842 | + </button> | |
| 2843 | + <div id="frontDesk-widget-wrapper" class="frontDesk-widget-wrapper open-widget" customlabelreplaced=""> | |
| 2844 | + <!-- Email Us - modal --> | |
| 2845 | + <button id="email-us-btn" data-modal-url="/contactus?IsDialog=1&IsFrontDesk=true&IsforCorpProperty=1&RCPropertyId=1968647" type="button" class="btn btn-primary email-us-btn widget-btns trigger-popup" data-selenium-id="emailUs" data-toggle="tooltip" data-placement="top" data-animation="true" data-title="Email Us" customlabelreplaced="" data-original-title="Email Us" tabindex="0"><svg focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px" height="24px" viewBox="0 0 24 24" stroke-width="2"><g stroke-width="2" transform="translate(0, 0)"><polyline data-cap="butt" data-color="color-2" points="1.614 3.558 12 13 22.385 3.559" fill="none" stroke="#ffffff" stroke-miterlimit="10" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter"></polyline> <rect x="1" y="3" width="22" height="18" rx="2" ry="2" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect></g></svg><span class="sr-only" customlabelreplaced="">Email Us</span></button> | |
| 2846 | + | |
| 2847 | + <!-- Call Us - mobile --> | |
| 2848 | + <a id="call-us-btn-phone" href="tel:(819) 568-1771" onclick="callusGA4trackM();" class="btn btn-primary click-to-call-href click-to-call-title call-us-btn widget-btns d-inline-block d-md-none" data-selenium-id="callUsPhone" data-toggle="tooltip" data-placement="top" data-animation="true" data-title="Call Us at (819) 568-1771" customlabelreplaced="" data-original-title="Call Us at (819) 568-1771" tabindex="0"><svg focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px" height="24px" viewBox="0 0 48 48" stroke-width="4"><g stroke-width="4" transform="translate(0, 0)"><path d="M31.041,28.94l-3.423,4.279A36.116,36.116,0,0,1,14.782,20.384l4.279-3.423a2.908,2.908,0,0,0,.84-3.45L16,4.728a2.908,2.908,0,0,0-3.39-1.635L5.186,5.019A2.925,2.925,0,0,0,3.028,8.25,43.142,43.142,0,0,0,39.751,44.973a2.925,2.925,0,0,0,3.23-2.158l1.926-7.425A2.91,2.91,0,0,0,43.273,32l-8.782-3.9A2.907,2.907,0,0,0,31.041,28.94Z" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="4" stroke-linejoin="miter"></path></g></svg><span class="sr-only" customlabelreplaced="">Call Us</span></a> | |
| 2849 | + <!-- Call Us - desktop --> | |
| 2850 | + <button id="call-us-btn" aria-label="Call Us" type="button" class="btn btn-primary click-to-call-title call-us-btn widget-btns trigger-popup d-none d-md-inline-block" data-selenium-id="callUsDesktop" data-toggle="tooltip" data-placement="top" data-animation="true" data-title="Call Us at (819) 568-1771" customlabelreplaced="" data-original-title="Call Us at (819) 568-1771" tabindex="0"><svg focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px" height="24px" viewBox="0 0 48 48" stroke-width="4"><g stroke-width="4" transform="translate(0, 0)"><path d="M31.041,28.94l-3.423,4.279A36.116,36.116,0,0,1,14.782,20.384l4.279-3.423a2.908,2.908,0,0,0,.84-3.45L16,4.728a2.908,2.908,0,0,0-3.39-1.635L5.186,5.019A2.925,2.925,0,0,0,3.028,8.25,43.142,43.142,0,0,0,39.751,44.973a2.925,2.925,0,0,0,3.23-2.158l1.926-7.425A2.91,2.91,0,0,0,43.273,32l-8.782-3.9A2.907,2.907,0,0,0,31.041,28.94Z" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="4" stroke-linejoin="miter"></path></g></svg></button> | |
| 2851 | + | |
| 2852 | + | |
| 2853 | + | |
| 2854 | + | |
| 2855 | + | |
| 2856 | + | |
| 2857 | + <!-- Schedule tour --> | |
| 2858 | + <button id="schedule-a-tour-btn" data-modal-url="/scheduletour?IsDialog=true&IsforCorpProperty=1&RCPropertyId=1968647" type="button" class="btn btn-primary schedule-a-tour-btn widget-btns trigger-popup" data-selenium-id="scheduleTour" data-toggle="tooltip" data-placement="top" data-animation="true" data-title="Schedule a Tour" customlabelreplaced="" data-original-title="Schedule a Tour" tabindex="0"><svg focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px" height="24px" viewBox="0 0 24 24" stroke-width="2"><g stroke-width="2" transform="translate(0, 0)"><rect data-color="color-2" x="5" y="12" width="2" height="1" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect> <rect data-color="color-2" x="11" y="12" width="2" height="1" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect> <rect data-color="color-2" x="5" y="17" width="2" height="1" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect> <rect data-color="color-2" x="11" y="17" width="2" height="1" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect> <rect data-color="color-2" x="17" y="12" width="2" height="1" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect> <rect data-color="color-2" data-stroke="none" x="5" y="12" width="2" height="1" fill="#ffffff"></rect> <rect data-color="color-2" data-stroke="none" x="11" y="12" width="2" height="1" fill="#ffffff"></rect> <rect data-color="color-2" data-stroke="none" x="5" y="17" width="2" height="1" fill="#ffffff"></rect> <rect data-color="color-2" data-stroke="none" x="11" y="17" width="2" height="1" fill="#ffffff"></rect> <rect data-color="color-2" data-stroke="none" x="17" y="12" width="2" height="1" fill="#ffffff"></rect> <rect x="1" y="3" width="22" height="19" rx="2" ry="2" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect> <line x1="6" y1="1" x2="6" y2="4" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></line> <line x1="18" y1="1" x2="18" y2="4" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></line> <line x1="1" y1="8" x2="23" y2="8" fill="none" stroke="#ffffff" stroke-miterlimit="10" stroke-width="2"></line></g></svg><span class="sr-only" customlabelreplaced="">Schedule a Tour</span></button> | |
| 2859 | + | |
| 2860 | + | |
| 2861 | + </div> | |
| 2862 | +</div> | |
| 2863 | +<!---END: Layout horizontal---> | |
| 2864 | +<!--- Show/Hide aria-label for Front Desk button ---> | |
| 2865 | +<script> | |
| 2866 | +(function (d) { | |
| 2867 | + "use strict"; | |
| 2868 | + function updateBtnFrontDeskAriaLabel(btn) { | |
| 2869 | + if (!btn || btn.id !== "btnFrontDesk") return; | |
| 2870 | + var expanded = btn.getAttribute("aria-expanded"); | |
| 2871 | + btn.setAttribute("aria-label", expanded === "true" ? "Hide Front Desk" : "Show Front Desk"); | |
| 2872 | + } | |
| 2873 | + function init() { | |
| 2874 | + var btn = d.getElementById("btnFrontDesk"); | |
| 2875 | + if (!btn) return; | |
| 2876 | + updateBtnFrontDeskAriaLabel(btn); | |
| 2877 | + if (window.MutationObserver) { | |
| 2878 | + var observer = new MutationObserver(function () { updateBtnFrontDeskAriaLabel(btn); }); | |
| 2879 | + observer.observe(btn, { attributes: true, attributeFilter: ["aria-expanded"] }); | |
| 2880 | + } | |
| 2881 | + } | |
| 2882 | + if (d.readyState === "loading") d.addEventListener("DOMContentLoaded", init); | |
| 2883 | + else init(); | |
| 2884 | +})(document); | |
| 2885 | +</script> | |
| 2886 | + | |
| 2887 | + <style> | |
| 2888 | + :root { | |
| 2889 | + --helpwidget-window-x-offset: 0px; | |
| 2890 | + --helpwidget-window-y-offset: 0px; | |
| 2891 | + } | |
| 2892 | + </style> | |
| 2893 | + | |
| 2894 | + <!--START Modal: Contact Us / Email Us --> | |
| 2895 | + <div id="email-us-window" class="popup-widgets-window draggable scrollable " customlabelreplaced=""> | |
| 2896 | + <div class="popup-content" customlabelreplaced=""> | |
| 2897 | + <div class="popup-header modal-header" customlabelreplaced=""> | |
| 2898 | + <h2 class="m-0 text-truncate" customlabelreplaced="">Contact Us </h2> | |
| 2899 | + <button class="close" aria-label="Close this dialog window" data-selenium-id="close" customlabelreplaced=""> <span aria-hidden="true" class="fa fa-times" customlabelreplaced=""></span></button> | |
| 2900 | + </div> | |
| 2901 | + <div id="help-widget-email-modal-body" class="popup-body p-4" customlabelreplaced=""> | |
| 2902 | + </div> | |
| 2903 | + </div> | |
| 2904 | + </div> | |
| 2905 | + <!--END Modal: Contact Us / Email Us --> | |
| 2906 | + <!--START Modal: Call Us --> | |
| 2907 | + <div id="call-us-window" class="popup-widgets-window draggable scrollable " customlabelreplaced=""> | |
| 2908 | + <div class="popup-content" customlabelreplaced=""> | |
| 2909 | + <div class="popup-header modal-header" customlabelreplaced=""> | |
| 2910 | + <h2 class="m-0 text-truncate" customlabelreplaced="">Call Us</h2> | |
| 2911 | + <button class="close" aria-label="Close this dialog window" data-selenium-id="close" customlabelreplaced=""> <span aria-hidden="true" class="fa fa-times" customlabelreplaced=""></span></button> | |
| 2912 | + </div> | |
| 2913 | + <div class="popup-body p-4 text-center" customlabelreplaced=""> | |
| 2914 | + <strong class="text-xl mb-4 d-block" customlabelreplaced=""> | |
| 2915 | + | |
| 2916 | + <style>.mobile-only .click-to-call{display:none}</style> | |
| 2917 | + | |
| 2918 | + <div class="ysi-phone-widget ysi-phone-wrapper" customlabelreplaced=""> | |
| 2919 | + <div class="d-inline-flex" customlabelreplaced=""> | |
| 2920 | + <a data-selenium-id="click_to_call" onclick="fireGaPhone()" href="tel:+1 819-568-1771" aria-label="Call 6881530 Canada Inc (Brigil) at +1 819-568-1771" class="ysi-phone-number click-to-call-href text-decoration-none color-inherit " customlabelreplaced=""> | |
| 2921 | + <span aria-hidden="true" class="fa-flip-horizontal fas fa-phone mobile-phone-icon" customlabelreplaced=""></span> | |
| 2922 | + <span class="click-to-call ml-2 text-underline" customlabelreplaced="">+1 819-568-1771</span> | |
| 2923 | + </a> | |
| 2924 | + | |
| 2925 | + </div> | |
| 2926 | + </div> | |
| 2927 | + <script> | |
| 2928 | + function fireGaPhone() { | |
| 2929 | + if (typeof gtag != 'undefined') { | |
| 2930 | + var myPage = location.pathname.replace("/", ""); | |
| 2931 | + if (myPage == "") { myPage = "index"; } | |
| 2932 | + if (true ) { | |
| 2933 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 2934 | + gtag('event', 'phone_call', { 'property_name': propertyName, 'page_name': document.title, 'page_url': window.location.href, 'header_phone_number': '+1 819-568-1771'}); | |
| 2935 | + } | |
| 2936 | + gtag('event', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 2937 | + gtag('rc.send', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 2938 | + } | |
| 2939 | + } | |
| 2940 | + </script> | |
| 2941 | +</strong> | |
| 2942 | + | |
| 2943 | + | |
| 2944 | + <div class="ysi-office-hours-widget ysi-office-hours-wrapper" customlabelreplaced=""> | |
| 2945 | + <div class="d-inline-flex" customlabelreplaced=""> | |
| 2946 | + <div class="ysi-office-hours" data-selenium-id="SID_footer_officeHours" customlabelreplaced=""> | |
| 2947 | + <ul class="list-unstyled mb-0" customlabelreplaced=""> | |
| 2948 | + <li class=" " customlabelreplaced=""> | |
| 2949 | + <span class="office-hours-day" data-selenium-id="OHMonday" customlabelreplaced="">Monday: </span> | |
| 2950 | + <span class="office-hours-time" data-selenium-id="OHMondayTime" customlabelreplaced="">9 AM <span class="sr-only" customlabelreplaced="">to</span> - 6 PM</span> | |
| 2951 | +</li> | |
| 2952 | + <li class=" " customlabelreplaced=""> | |
| 2953 | + <span class="office-hours-day" data-selenium-id="OHTuesday" customlabelreplaced="">Tuesday: </span> | |
| 2954 | + <span class="office-hours-time" data-selenium-id="OHTuesdayTime" customlabelreplaced="">9 AM <span class="sr-only" customlabelreplaced="">to</span> - 6 PM</span> | |
| 2955 | +</li> | |
| 2956 | + <li class=" " customlabelreplaced=""> | |
| 2957 | + <span class="office-hours-day" data-selenium-id="OHWednesday" customlabelreplaced="">Wednesday: </span> | |
| 2958 | + <span class="office-hours-time" data-selenium-id="OHWednesdayTime" customlabelreplaced="">9 AM <span class="sr-only" customlabelreplaced="">to</span> - 6 PM</span> | |
| 2959 | +</li> | |
| 2960 | + <li class=" " customlabelreplaced=""> | |
| 2961 | + <span class="office-hours-day" data-selenium-id="OHThursday" customlabelreplaced="">Thursday: </span> | |
| 2962 | + <span class="office-hours-time" data-selenium-id="OHThursdayTime" customlabelreplaced="">9 AM <span class="sr-only" customlabelreplaced="">to</span> - 6 PM</span> | |
| 2963 | +</li> | |
| 2964 | + <li class=" " customlabelreplaced=""> | |
| 2965 | + <span class="office-hours-day" data-selenium-id="OHFriday" customlabelreplaced="">Friday: </span> | |
| 2966 | + <span class="office-hours-time" data-selenium-id="OHFridayTime" customlabelreplaced="">9 AM <span class="sr-only" customlabelreplaced="">to</span> - 6 PM</span> | |
| 2967 | +</li> | |
| 2968 | + <li class=" " customlabelreplaced=""> | |
| 2969 | + <span class="office-hours-day" data-selenium-id="OHSaturday" customlabelreplaced="">Saturday: </span> | |
| 2970 | + <span class="office-hours-time" data-selenium-id="OHSaturdayTime" customlabelreplaced="">10 AM <span class="sr-only" customlabelreplaced="">to</span> - 5 PM</span> | |
| 2971 | +</li> | |
| 2972 | + <li class=" " customlabelreplaced=""> | |
| 2973 | + <span class="office-hours-day" data-selenium-id="OHSunday" customlabelreplaced="">Sunday: </span> | |
| 2974 | + <span class="office-hours-time" data-selenium-id="OHSundayTime" customlabelreplaced="">1 PM <span class="sr-only" customlabelreplaced="">to</span> - 5 PM</span> | |
| 2975 | +</li> | |
| 2976 | + </ul> | |
| 2977 | + </div> | |
| 2978 | + </div> | |
| 2979 | + </div> | |
| 2980 | + | |
| 2981 | + </div> | |
| 2982 | + <div class="border-top px-4 py-4 text-center" customlabelreplaced=""> | |
| 2983 | + | |
| 2984 | + | |
| 2985 | + | |
| 2986 | + | |
| 2987 | + | |
| 2988 | +<div class="ysi-address-widget ysi-address-wrapper vertical" customlabelreplaced=""> | |
| 2989 | + <div class="d-inline-flex" customlabelreplaced=""> | |
| 2990 | + <address class="ysi-address"> | |
| 2991 | + <a class="address-link color-inherit d-block" href="https://maps.google.com?q=30 de la Bonne-Renommée Gatineau, QC J9H 0L1" target="_blank" rel="noreferrer" customlabelreplaced=""> | |
| 2992 | + <div itemprop="name" data-selenium-id="address_propname" customlabelreplaced="">Champlain Bloc 2 - UAT</div> | |
| 2993 | + <div itemprop="address" customlabelreplaced=""> | |
| 2994 | + <div data-selenium-id="address_street" customlabelreplaced=""> | |
| 2995 | + 30 de la Bonne-Renommée | |
| 2996 | + </div> | |
| 2997 | + <div customlabelreplaced=""> | |
| 2998 | + <span data-selenium-id="address_city" customlabelreplaced="">Gatineau</span>, <span data-selenium-id="address_state" customlabelreplaced="">QC</span><span data-selenium-id="address_zip" customlabelreplaced=""> J9H 0L1</span> | |
| 2999 | + </div> | |
| 3000 | + </div> | |
| 3001 | + <span class="sr-only" customlabelreplaced="">Opens in a new tab</span> | |
| 3002 | + </a> | |
| 3003 | + </address> | |
| 3004 | + | |
| 3005 | + </div> | |
| 3006 | +</div> | |
| 3007 | + | |
| 3008 | + | |
| 3009 | + </div> | |
| 3010 | + </div> | |
| 3011 | + </div> | |
| 3012 | + <!--END Modal: Call Us --> | |
| 3013 | + | |
| 3014 | + | |
| 3015 | + <input type="hidden" name="urlpattern" id="helpwidget-urlpattern" value=""> | |
| 3016 | + <!-- START Modal: RentCafe Conversations --> | |
| 3017 | + <div id="rentcafe-conversations-window" class="popup-widgets-window draggable scrollable " customlabelreplaced=""> | |
| 3018 | + <div class="popup-content" customlabelreplaced=""> | |
| 3019 | + <div class="popup-header modal-header" customlabelreplaced=""> | |
| 3020 | + <h2 class="rentcafe-conversations-title m-0 text-truncate" customlabelreplaced="">Chat With Us</h2> | |
| 3021 | + <button id="rentcafe-conversations-menu" class="menu d-none" aria-label="Show menu for this dialog window" customlabelreplaced=""><i class="fas fa-ellipsis-h" aria-hidden="true" customlabelreplaced=""></i></button> | |
| 3022 | + <button class="close" aria-label="Close this dialog window" data-selenium-id="close" customlabelreplaced=""> <span aria-hidden="true" class="fa fa-times" customlabelreplaced=""></span></button> | |
| 3023 | + </div> | |
| 3024 | + <div id="rentcafe-conversations-modal-body" class="popup-body p-4" customlabelreplaced=""> | |
| 3025 | + </div> | |
| 3026 | + </div> | |
| 3027 | + </div> | |
| 3028 | + | |
| 3029 | + <div id="schedule-a-tour-window" class="popup-widgets-window draggable scrollable " customlabelreplaced=""> | |
| 3030 | + <div class="popup-content" customlabelreplaced=""> | |
| 3031 | + <div class="popup-header modal-header" customlabelreplaced=""> | |
| 3032 | + <h2 class="m-0 text-truncate" customlabelreplaced="">Schedule A Tour</h2> | |
| 3033 | + <button class="close" aria-label="Close this dialog window" data-selenium-id="close" customlabelreplaced=""> <span aria-hidden="true" class="fa fa-times" customlabelreplaced=""></span></button> | |
| 3034 | + </div> | |
| 3035 | + <div id="help-widget-schedule-a-tour-modal-body" class="popup-body" customlabelreplaced=""> | |
| 3036 | + <!-- Modal content loaded here --> | |
| 3037 | + </div> | |
| 3038 | + </div> | |
| 3039 | + </div> | |
| 3040 | + | |
| 3041 | +</div> | |
| 3042 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.modal.134322934460000000.js"></script> | |
| 3043 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/recaptcha-widget.134322934370000000.js"></script> | |
| 3044 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/contactus.134322934260000000.js"></script> | |
| 3045 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/contactmodal-widget.134322934250000000.js"></script> | |
| 3046 | +<script> | |
| 3047 | + | |
| 3048 | + | |
| 3049 | + function textGA4track(eventName) { | |
| 3050 | + if (typeof gtag != 'undefined') { | |
| 3051 | + gtag('event', eventName, { 'property_name': document.querySelector('meta[name="author"]').content, 'page_url': window.location.href, 'page_name': document.title, 'form_name': 'text_us', 'button_label': 'text_us' }); | |
| 3052 | + } | |
| 3053 | + } | |
| 3054 | + | |
| 3055 | + let chatBtn = document.querySelector('#rentcafe-conversations-webchat-btn'); | |
| 3056 | + if (chatBtn) { | |
| 3057 | + chatBtn.addEventListener('click', function () { | |
| 3058 | + if (typeof gtag != 'undefined') { | |
| 3059 | + gtag('event', 'rentcafe_chatbot', { | |
| 3060 | + 'property_name': document.querySelector('meta[name="author"]').content, | |
| 3061 | + 'page_url': window.location.href, | |
| 3062 | + 'page_name': document.title, | |
| 3063 | + 'form_name': 'chat', | |
| 3064 | + 'button_label': 'chat_with_us' | |
| 3065 | + }); | |
| 3066 | + } | |
| 3067 | + }); | |
| 3068 | + } | |
| 3069 | + | |
| 3070 | + let textUsBtn = document.querySelector('#text-us-btn'); | |
| 3071 | + if (textUsBtn) { | |
| 3072 | + textUsBtn.addEventListener('click', function () { | |
| 3073 | + textGA4track('front_desk'); | |
| 3074 | + }); | |
| 3075 | + } | |
| 3076 | + | |
| 3077 | + let rccTextUsBtn = document.querySelector('#rentcafe-conversations-sms-btn'); | |
| 3078 | + if (rccTextUsBtn) { | |
| 3079 | + rccTextUsBtn.addEventListener('click', function () { | |
| 3080 | + textGA4track('rentcafe_chatbot'); | |
| 3081 | + }); | |
| 3082 | + } | |
| 3083 | + | |
| 3084 | + let emailUsBtn = document.querySelector('#email-us-btn'); | |
| 3085 | + if (emailUsBtn) { | |
| 3086 | + emailUsBtn.addEventListener('click', function () { | |
| 3087 | + if (typeof gtag != 'undefined') { | |
| 3088 | + gtag('event', 'open_modal', { | |
| 3089 | + 'property_name': document.querySelector('meta[name="author"]').content, | |
| 3090 | + 'page_url': window.location.href, | |
| 3091 | + 'page_name': document.title, | |
| 3092 | + 'form_name': 'contact_us', | |
| 3093 | + 'button_label': 'email_us' | |
| 3094 | + }); | |
| 3095 | + } | |
| 3096 | + }); | |
| 3097 | + } | |
| 3098 | + | |
| 3099 | + // Desktop Call Us button | |
| 3100 | + let callUsDbtn = document.querySelector('#call-us-btn'); | |
| 3101 | + if (callUsDbtn) { | |
| 3102 | + callUsDbtn.addEventListener('click', function() { | |
| 3103 | + if (typeof gtag !== 'undefined') { | |
| 3104 | + gtag('event', 'open_modal', { | |
| 3105 | + 'property_name': document.querySelector('meta[name="author"]').content, | |
| 3106 | + 'page_url': window.location.href, | |
| 3107 | + 'page_name': document.title, | |
| 3108 | + 'form_name': 'call_us', | |
| 3109 | + 'button_label': 'call_us' | |
| 3110 | + }); | |
| 3111 | + } | |
| 3112 | + }); | |
| 3113 | + } | |
| 3114 | + | |
| 3115 | + // Schedule A Tour button | |
| 3116 | + let scheduleTourBtn = document.querySelector('#schedule-a-tour-btn'); | |
| 3117 | + if (scheduleTourBtn) { | |
| 3118 | + scheduleTourBtn.addEventListener('click', function() { | |
| 3119 | + if (typeof gtag !== 'undefined') { | |
| 3120 | + gtag('event', 'open_modal', { | |
| 3121 | + 'property_name': document.querySelector('meta[name="author"]').content, | |
| 3122 | + 'page_url': window.location.href, | |
| 3123 | + 'page_name': document.title, | |
| 3124 | + 'form_name': 'schedule_a_tour', | |
| 3125 | + 'button_label': 'schedule_a_tour' | |
| 3126 | + }); | |
| 3127 | + } | |
| 3128 | + }); | |
| 3129 | + } | |
| 3130 | + | |
| 3131 | +</script> | |
| 3132 | + <script data-rcc_conversations="widget" data-src="https://webchat.omni.cafe/webchatjs/1853b887-82f7-4cd1-be99-f6647a7826fb/app.js?nocache=1&gaTracking=G-VPZPDPV6N2&buttonbgcolor=000000&buttontextcolor=ffffff&chatheader=0&embed=false" id="rccAppScript" defer=""></script> | |
| 3133 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/help-widget-rcc.134322934300000000.js"></script> | |
| 3134 | + <script> | |
| 3135 | + ysi.RCCSMSChannelUuid = ''; | |
| 3136 | + ysi.RCCDniUuids = JSON.parse("{\u0022475969\u0022:\u0022\u0022}"); | |
| 3137 | + </script> | |
| 3138 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/help-widget.134322934310000000.js"></script> | |
| 3139 | + <!-- Nudge positioning --> | |
| 3140 | + <script> | |
| 3141 | + ysi.helpWidgetOverlapNudge = false; | |
| 3142 | + </script> | |
| 3143 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/help-widget-nudge-positioning.134322934300000000.js"></script> | |
| 3144 | + <!-- ScheduleTourEnabled --> | |
| 3145 | + <link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/ysi.datepicker.558856.134323087888225674.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/ysi.datepicker.558856.134323087888225674.css"></noscript> | |
| 3146 | + <link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/schedule-a-tour.558856.134323087888225674.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/schedule-a-tour.558856.134323087888225674.css"></noscript> | |
| 3147 | + <link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/help-widget-schedule-a-tour.558856.134323087888225674.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/help-widget-schedule-a-tour.558856.134323087888225674.css"></noscript> | |
| 3148 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.datepicker.134322934440000000.js" defer="defer"></script> | |
| 3149 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/schedule-tour.134322934380000000.js" defer="defer"></script> | |
| 3150 | + | |
| 3151 | + | |
| 3152 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/intltelinput.134322934150000000.js"></script> | |
| 3153 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/inttelphoneinput.134322934160000000.js"></script> | |
| 3154 | + <link href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/intlTelInput.558856.134323087888225674.css" rel="stylesheet" type="text/css"> | |
| 3155 | +<link data-href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/overlayscrollbar.558856.134323087888225674.css" rel="stylesheet" type="text/css" id="overlayScrollbarStyle"> | |
| 3156 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.scrollbars.134322934460000000.js"></script> | |
| 3157 | +<script data-src="https://cdngeneralmvc.rentcafe.com/common/js/overlayscrollbars.134322934200000000.js" data-delayload="true" id="overlayScrollbarScript" data-callback="load"></script> <script type="application/ld+json"> | |
| 3158 | +{ | |
| 3159 | + "@context": { | |
| 3160 | + "@vocab": "http://www.schema.org" | |
| 3161 | + }, | |
| 3162 | + "@type": [ | |
| 3163 | + "LocalBusiness", | |
| 3164 | + "ApartmentComplex" | |
| 3165 | + ], | |
| 3166 | + "url": "https://www.brigil.com/", | |
| 3167 | + "logo": "https://resource.rentcafe.com/image/upload/q_auto,f_auto/s3/2/252329/brigil_logo_en_rgb.png", | |
| 3168 | + "image": "https://resource.rentcafe.com/image/upload/q_auto,f_auto/s3/2/252329/2025-11-28_siteweb_listing_placeholder_updated2.png", | |
| 3169 | + "amenityFeature": [], | |
| 3170 | + "accommodationFloorPlan": [ | |
| 3171 | + { | |
| 3172 | + "@type": "FloorPlan", | |
| 3173 | + "name": "1 B", | |
| 3174 | + "numberOfBedrooms": 1, | |
| 3175 | + "numberOfFullBathrooms": 1.0, | |
| 3176 | + "floorSize": { | |
| 3177 | + "@type": "QuantitativeValue", | |
| 3178 | + "minValue": 605.0, | |
| 3179 | + "maxValue": 605.0 | |
| 3180 | + } | |
| 3181 | + }, | |
| 3182 | + { | |
| 3183 | + "@type": "FloorPlan", | |
| 3184 | + "name": "2 B", | |
| 3185 | + "numberOfBedrooms": 2, | |
| 3186 | + "numberOfFullBathrooms": 1.0, | |
| 3187 | + "floorSize": { | |
| 3188 | + "@type": "QuantitativeValue", | |
| 3189 | + "minValue": 736.0, | |
| 3190 | + "maxValue": 840.0 | |
| 3191 | + } | |
| 3192 | + }, | |
| 3193 | + { | |
| 3194 | + "@type": "FloorPlan", | |
| 3195 | + "name": "Penthouse", | |
| 3196 | + "numberOfBedrooms": 2, | |
| 3197 | + "numberOfFullBathrooms": 1.0, | |
| 3198 | + "floorSize": { | |
| 3199 | + "@type": "QuantitativeValue", | |
| 3200 | + "minValue": 995.0, | |
| 3201 | + "maxValue": 995.0 | |
| 3202 | + } | |
| 3203 | + } | |
| 3204 | + ], | |
| 3205 | + "openingHoursSpecification": [ | |
| 3206 | + { | |
| 3207 | + "@type": "OpeningHoursSpecification", | |
| 3208 | + "dayOfWeek": [ | |
| 3209 | + "Monday" | |
| 3210 | + ], | |
| 3211 | + "opens": "09:00:00", | |
| 3212 | + "closes": "18:00:00" | |
| 3213 | + }, | |
| 3214 | + { | |
| 3215 | + "@type": "OpeningHoursSpecification", | |
| 3216 | + "dayOfWeek": [ | |
| 3217 | + "Tuesday" | |
| 3218 | + ], | |
| 3219 | + "opens": "09:00:00", | |
| 3220 | + "closes": "18:00:00" | |
| 3221 | + }, | |
| 3222 | + { | |
| 3223 | + "@type": "OpeningHoursSpecification", | |
| 3224 | + "dayOfWeek": [ | |
| 3225 | + "Wednesday" | |
| 3226 | + ], | |
| 3227 | + "opens": "09:00:00", | |
| 3228 | + "closes": "18:00:00" | |
| 3229 | + }, | |
| 3230 | + { | |
| 3231 | + "@type": "OpeningHoursSpecification", | |
| 3232 | + "dayOfWeek": [ | |
| 3233 | + "Thursday" | |
| 3234 | + ], | |
| 3235 | + "opens": "09:00:00", | |
| 3236 | + "closes": "18:00:00" | |
| 3237 | + }, | |
| 3238 | + { | |
| 3239 | + "@type": "OpeningHoursSpecification", | |
| 3240 | + "dayOfWeek": [ | |
| 3241 | + "Friday" | |
| 3242 | + ], | |
| 3243 | + "opens": "09:00:00", | |
| 3244 | + "closes": "18:00:00" | |
| 3245 | + }, | |
| 3246 | + { | |
| 3247 | + "@type": "OpeningHoursSpecification", | |
| 3248 | + "dayOfWeek": [ | |
| 3249 | + "Saturday" | |
| 3250 | + ], | |
| 3251 | + "opens": "10:00:00", | |
| 3252 | + "closes": "17:00:00" | |
| 3253 | + }, | |
| 3254 | + { | |
| 3255 | + "@type": "OpeningHoursSpecification", | |
| 3256 | + "dayOfWeek": [ | |
| 3257 | + "Sunday" | |
| 3258 | + ], | |
| 3259 | + "opens": "13:00:00", | |
| 3260 | + "closes": "17:00:00" | |
| 3261 | + } | |
| 3262 | + ], | |
| 3263 | + "sameAs": [], | |
| 3264 | + "name": "Champlain Bloc 2 - UAT", | |
| 3265 | + "address": { | |
| 3266 | + "@type": "PostalAddress", | |
| 3267 | + "addressLocality": "Gatineau", | |
| 3268 | + "addressRegion": "QC", | |
| 3269 | + "addressCountry": "CA", | |
| 3270 | + "postalCode": "J9H 0L1", | |
| 3271 | + "streetAddress": "30 de la Bonne-Renommée" | |
| 3272 | + }, | |
| 3273 | + "telephone": "(819) 568-1771", | |
| 3274 | + "geo": { | |
| 3275 | + "@type": "GeoCoordinates", | |
| 3276 | + "latitude": "45.401723", | |
| 3277 | + "longitude": "-75.781387" | |
| 3278 | + }, | |
| 3279 | + "hasMap": "" | |
| 3280 | +}</script> | |
| 3281 | + | |
| 3282 | + | |
| 3283 | + <yardi-widget-siteeditorscript></yardi-widget-siteeditorscript> | |
| 3284 | + | |
| 3285 | + | |
| 3286 | + | |
| 3287 | + | |
| 3288 | +<script>/* =============================== | |
| 3289 | + MEGA MENU SCRIPT | |
| 3290 | +================================= */ | |
| 3291 | + | |
| 3292 | +document.addEventListener('DOMContentLoaded', function () { | |
| 3293 | + const topLevelLinks = Array.from(document.querySelectorAll('a[href^=".mega-menu"]')); | |
| 3294 | + | |
| 3295 | + topLevelLinks.forEach(function (link, index) { | |
| 3296 | + const selector = link.getAttribute('href').trim(); // e.g. ".mega-menu-01" | |
| 3297 | + if (!selector.startsWith('.')) return console.warn('href must start with a dot:', link); | |
| 3298 | + | |
| 3299 | + const menu = document.querySelector(selector); | |
| 3300 | + if (!menu) return console.warn('No menu element for selector', selector); | |
| 3301 | + | |
| 3302 | + // store mapping for reliable lookup later | |
| 3303 | + menu.dataset.toggleSelector = selector; | |
| 3304 | + link.dataset.toggleSelector = selector; | |
| 3305 | + | |
| 3306 | + // click toggles submenu | |
| 3307 | + link.addEventListener('click', function (e) { | |
| 3308 | + e.preventDefault(); | |
| 3309 | + toggleMenu(menu); | |
| 3310 | + }); | |
| 3311 | + | |
| 3312 | + // keyboard navigation on top-level links (kept from your original) | |
| 3313 | + link.addEventListener('keydown', function (e) { | |
| 3314 | + const key = e.key; | |
| 3315 | + if (key === 'ArrowRight') { | |
| 3316 | + e.preventDefault(); | |
| 3317 | + const next = topLevelLinks[index + 1] || topLevelLinks[0]; | |
| 3318 | + next.focus(); | |
| 3319 | + } | |
| 3320 | + if (key === 'ArrowLeft') { | |
| 3321 | + e.preventDefault(); | |
| 3322 | + const prev = topLevelLinks[index - 1] || topLevelLinks[topLevelLinks.length - 1]; | |
| 3323 | + prev.focus(); | |
| 3324 | + } | |
| 3325 | + if (key === 'Enter' || key === 'ArrowDown') { | |
| 3326 | + e.preventDefault(); | |
| 3327 | + openMenu(menu); | |
| 3328 | + const firstFocusable = menu.querySelector("a, button, input, [tabindex]:not([tabindex='-1'])"); | |
| 3329 | + if (firstFocusable) firstFocusable.focus(); | |
| 3330 | + } | |
| 3331 | + if (key === 'Escape') { | |
| 3332 | + closeAllMenus(); | |
| 3333 | + link.focus(); | |
| 3334 | + } | |
| 3335 | + }); | |
| 3336 | + }); | |
| 3337 | + | |
| 3338 | + // Submenu handlers (use dataset to find parent link) | |
| 3339 | + document.querySelectorAll('.mega-menu').forEach(function (menu) { | |
| 3340 | + menu.addEventListener('keydown', function (e) { | |
| 3341 | + const focusables = Array.from(menu.querySelectorAll( | |
| 3342 | + "a[href], button, input, select, textarea, [tabindex]:not([tabindex='-1'])" | |
| 3343 | + )); | |
| 3344 | + const currentIndex = focusables.indexOf(document.activeElement); | |
| 3345 | + | |
| 3346 | + if (e.key === 'ArrowDown') { | |
| 3347 | + e.preventDefault(); | |
| 3348 | + const next = focusables[currentIndex + 1] || focusables[0]; | |
| 3349 | + next && next.focus(); | |
| 3350 | + } | |
| 3351 | + if (e.key === 'ArrowUp') { | |
| 3352 | + e.preventDefault(); | |
| 3353 | + const prev = focusables[currentIndex - 1] || focusables[focusables.length - 1]; | |
| 3354 | + prev && prev.focus(); | |
| 3355 | + } | |
| 3356 | + if (e.key === 'Escape') { | |
| 3357 | + menu.classList.remove('show'); | |
| 3358 | + const parentLink = document.querySelector(`a[href="${menu.dataset.toggleSelector}"]`); | |
| 3359 | + if (parentLink) parentLink.focus(); | |
| 3360 | + } | |
| 3361 | + | |
| 3362 | + // Tab on last submenu item -> move focus to next top-level link | |
| 3363 | + if (e.key === 'Tab' && !e.shiftKey && currentIndex === focusables.length - 1) { | |
| 3364 | + e.preventDefault(); | |
| 3365 | + const parentLink = document.querySelector(`a[href="${menu.dataset.toggleSelector}"]`); | |
| 3366 | + const topLevelLinksArray = Array.from(document.querySelectorAll('a[href^=".mega-menu"]')); | |
| 3367 | + const currentTopIndex = topLevelLinksArray.indexOf(parentLink); | |
| 3368 | + let nextTopLink = topLevelLinksArray[currentTopIndex + 1] || topLevelLinksArray[0]; | |
| 3369 | + closeAllMenus(); | |
| 3370 | + nextTopLink && nextTopLink.focus(); | |
| 3371 | + } | |
| 3372 | + | |
| 3373 | + if (e.key === 'Tab' && e.shiftKey && currentIndex === 0) { | |
| 3374 | + e.preventDefault(); | |
| 3375 | + const parentLink = document.querySelector(`a[href="${menu.dataset.toggleSelector}"]`); | |
| 3376 | + closeAllMenus(); | |
| 3377 | + parentLink && parentLink.focus(); | |
| 3378 | + } | |
| 3379 | + }); | |
| 3380 | + | |
| 3381 | + menu.addEventListener('focusout', function () { | |
| 3382 | + setTimeout(function () { | |
| 3383 | + if (!menu.contains(document.activeElement)) { | |
| 3384 | + menu.classList.remove('show'); | |
| 3385 | + } | |
| 3386 | + }, 10); | |
| 3387 | + }); | |
| 3388 | + }); | |
| 3389 | + | |
| 3390 | + // click outside: close | |
| 3391 | + document.addEventListener('click', function (e) { | |
| 3392 | + document.querySelectorAll('.mega-menu.show').forEach(function (menu) { | |
| 3393 | + const toggleSelector = menu.dataset.toggleSelector; | |
| 3394 | + const toggleLink = toggleSelector ? document.querySelector(`a[href="${toggleSelector}"]`) : null; | |
| 3395 | + if (!menu.contains(e.target) && (!toggleLink || !toggleLink.contains(e.target))) { | |
| 3396 | + menu.classList.remove('show'); | |
| 3397 | + } | |
| 3398 | + }); | |
| 3399 | + }); | |
| 3400 | + | |
| 3401 | + // close on scroll (kept) | |
| 3402 | + let isScrolling; | |
| 3403 | + window.addEventListener('scroll', function () { | |
| 3404 | + clearTimeout(isScrolling); | |
| 3405 | + isScrolling = setTimeout(closeAllMenus, 100); | |
| 3406 | + }); | |
| 3407 | + | |
| 3408 | + // helpers | |
| 3409 | + function openMenu(menu) { | |
| 3410 | + closeAllMenus(); | |
| 3411 | + menu.classList.add('show'); | |
| 3412 | + } | |
| 3413 | + | |
| 3414 | + function toggleMenu(menu) { | |
| 3415 | + const isOpen = menu.classList.contains('show'); | |
| 3416 | + closeAllMenus(); | |
| 3417 | + if (!isOpen) menu.classList.add('show'); | |
| 3418 | + } | |
| 3419 | + | |
| 3420 | + function closeAllMenus() { | |
| 3421 | + document.querySelectorAll('.mega-menu.show').forEach(m => m.classList.remove('show')); | |
| 3422 | + } | |
| 3423 | +}); | |
| 3424 | + | |
| 3425 | + | |
| 3426 | +/* =============================== | |
| 3427 | + CLICK-THROUGH ON IMAGE CAPTION & TITLE | |
| 3428 | +================================= */ | |
| 3429 | + | |
| 3430 | +document | |
| 3431 | + .querySelectorAll(".collection-cards .ysi-picture-widget") | |
| 3432 | + .forEach((widget) => { | |
| 3433 | + const caption = widget.querySelector(".picture-title-and-caption"); | |
| 3434 | + const link = widget.querySelector("a"); | |
| 3435 | + | |
| 3436 | + if (caption && link) { | |
| 3437 | + caption.addEventListener("click", () => link.click()); | |
| 3438 | + } | |
| 3439 | + });</script> | |
| 3440 | + | |
| 3441 | + | |
| 3442 | + | |
| 3443 | +<div id="onetrust-consent-sdk" data-nosnippet="true"><div class="onetrust-pc-dark-filter ot-fade-in" style="z-index:2147483645;"></div><div id="onetrust-banner-sdk" class="otFlat bottom ot-wo-title vertical-align-content" tabindex="0" aria-label="You must interact with the banner to dismiss it." style="bottom: 0px;"><div role="dialog" aria-modal="true" aria-label="You must interact with the banner to dismiss it."><div class="ot-sdk-container"><div class="ot-sdk-row"><div id="onetrust-group-container" class="ot-sdk-eight ot-sdk-columns"><div class="banner_logo"></div><div id="onetrust-policy"><div id="onetrust-policy-text">We use cookies and similar technologies (“Cookies”) as described in our Cookies Notice to collect information that helps us personalize your experience, record and analyze how you use our sites and services, and for targeted marketing. This information may also be collected by or shared with third parties. You can manage the use of Cookies in [Cookies Settings]. By clicking [Accept All] you consent to our use of Cookies.<a class="ot-cookie-policy-link" href="https://resources.yardi.com/legal/cookie-notice/" aria-label="More information about your privacy, opens in a new tab" rel="noopener noreferrer" target="_blank">Cookie Notice</a></div></div></div><div id="onetrust-button-group-parent" class="ot-sdk-three ot-sdk-columns has-reject-all-button"><div id="onetrust-button-group"><button id="onetrust-pc-btn-handler" aria-label="Cookies Settings, Opens the preference center dialog" aria-haspopup="dialog">Cookies Settings</button> <button id="onetrust-reject-all-handler">Reject All</button> <button id="onetrust-accept-btn-handler">Accept All Cookies</button></div></div></div></div><!-- Close Button --><div id="onetrust-close-btn-container"></div><!-- Close Button END--></div><div class="ot-force-consent-live-region ot-sr-only" aria-live="assertive" aria-atomic="true" style="position: absolute; width: 1px; height: 1px; padding: 0px; margin: -1px; overflow: hidden; clip: rect(0px, 0px, 0px, 0px); white-space: nowrap; border: 0px;"></div></div><div id="onetrust-pc-sdk" class="otPcPanel ot-hide ot-fade-in" lang="en"><div role="dialog" aria-modal="true" style="height: 100%;" aria-label="Privacy Preference Center"><!-- PC Header --><div class="ot-pc-header"><div class="ot-pc-logo"><img alt="OneTrust Company Logo" src="https://cdn.cookielaw.org/logos/4e85079a-4e3a-4ba5-a0ac-b85ac51e9d47/221d7757-1dc9-428d-971d-642d2cbb865a/d0529638-efff-446e-aa23-ea449b9acaa8/blank.png"></div></div><div id="ot-pc-content" class="ot-pc-scrollbar"><div class="ot-optout-signal ot-hide"><div class="ot-optout-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true"></svg></div><span id="ot-pc-gpc-txt"></span></div><h2 id="ot-pc-title">Privacy Preference Center</h2><div id="ot-pc-desc">Cookies are small data files that are placed on your computer or mobile device when you visit a website or use an online service. Cookies are widely used by organizations (like Yardi) in order to make their websites or services work, or to function more efficiently, as well as to provide reporting information. There are two types of cookies: session cookies and persistent cookies. Session cookies are stored in temporary memory, not retained after an end-user's browsing session ends and do not obtain information from the end-user's device. On the other hand, persistent cookies persist on your device in the browser's subfolder and are activated again once you visit the site that created the particular cookie and remains for the duration period set within the cookie's file. | |
| 3444 | +<br><br> | |
| 3445 | +Cookies set by the website or service operator are called "first party cookies." Cookies set by parties other than the website or service operator are called "third party cookies." Third party cookies typically enable certain third-party features or functionality to be provided on or through websites or services (such as, advertising, interactive content and analytics). The parties that set these third-party cookies can recognize an individual's computer both when they visit the website or use the service in question and also when they visit certain other websites. Click on the different category headings to find out more and change our default settings. | |
| 3446 | + <br><a href="/privacypolicy" class="privacy-notice-link" rel="noopener noreferrer" target="_blank" aria-label="More information about your privacy, opens in a new tab">Cookie Notice</a></div><button id="accept-recommended-btn-handler" ot-button-order="0">Allow All</button><section class="ot-sdk-row ot-cat-grp"><h3 id="ot-category-title"> Manage Consent Preferences</h3><div class="ot-accordion-layout ot-cat-item ot-vs-config" data-optanongroupid="C0001"><button ot-accordion="true" aria-expanded="false" aria-controls="ot-desc-id-C0001" aria-labelledby="ot-header-id-C0001 ot-status-id-C0001"></button><!-- Accordion header --><div class="ot-acc-hdr ot-always-active-group"><div class="ot-plus-minus"><span></span><span></span></div><h4 class="ot-cat-header" id="ot-header-id-C0001">Essential Website Cookies</h4><div id="ot-status-id-C0001" class="ot-always-active">Always Active</div></div><!-- accordion detail --><div class="ot-acc-grpcntr ot-acc-txt"><p class="ot-acc-grpdesc ot-category-desc" id="ot-desc-id-C0001">These cookies are strictly necessary to provide you with services available through our Sites and to use some of the Sites’ features, such as access to secure areas.</p><div class="ot-hlst-cntr"><button class="ot-link-btn category-host-list-handler" dir="ltr" aria-label="Essential Website Cookies - Cookie Details button opens Cookie List menu" data-parent-id="C0001">Cookies Details</button></div></div></div><div class="ot-accordion-layout ot-cat-item ot-vs-config" data-optanongroupid="C0004"><button ot-accordion="true" aria-expanded="false" aria-controls="ot-desc-id-C0004" aria-labelledby="ot-header-id-C0004"></button><!-- Accordion header --><div class="ot-acc-hdr"><div class="ot-plus-minus"><span></span><span></span></div><h4 class="ot-cat-header" id="ot-header-id-C0004">Targeting/Advertising Cookies</h4><div class="ot-tgl"><input type="checkbox" name="ot-group-id-C0004" id="ot-group-id-C0004" role="switch" class="category-switch-handler" data-optanongroupid="C0004" aria-labelledby="ot-header-id-C0004"> <label class="ot-switch" for="ot-group-id-C0004"><span class="ot-switch-nob"></span> <span class="ot-label-txt">Targeting/Advertising Cookies</span></label> </div></div><!-- accordion detail --><div class="ot-acc-grpcntr ot-acc-txt"><p class="ot-acc-grpdesc ot-category-desc" id="ot-desc-id-C0004">These cookies are used to make advertising messages more relevant to you. They perform functions like preventing the same ad from continuously reappearing, ensuring that ads are properly displayed for advertisers, and in some cases selecting advertisements that are based on your interests.</p><div class="ot-hlst-cntr"><button class="ot-link-btn category-host-list-handler" dir="ltr" aria-label="Targeting/Advertising Cookies - Cookie Details button opens Cookie List menu" data-parent-id="C0004">Cookies Details</button></div></div></div><div class="ot-accordion-layout ot-cat-item ot-vs-config" data-optanongroupid="C0002"><button ot-accordion="true" aria-expanded="false" aria-controls="ot-desc-id-C0002" aria-labelledby="ot-header-id-C0002"></button><!-- Accordion header --><div class="ot-acc-hdr"><div class="ot-plus-minus"><span></span><span></span></div><h4 class="ot-cat-header" id="ot-header-id-C0002">Performance and Functionality Cookies</h4><div class="ot-tgl"><input type="checkbox" name="ot-group-id-C0002" id="ot-group-id-C0002" role="switch" class="category-switch-handler" data-optanongroupid="C0002" aria-labelledby="ot-header-id-C0002"> <label class="ot-switch" for="ot-group-id-C0002"><span class="ot-switch-nob"></span> <span class="ot-label-txt">Performance and Functionality Cookies</span></label> </div></div><!-- accordion detail --><div class="ot-acc-grpcntr ot-acc-txt"><p class="ot-acc-grpdesc ot-category-desc" id="ot-desc-id-C0002">These cookies are used to enhance the performance and functionality of our Sites; to manage your preferences; to analyze and personalize your use of, or to generally help us better understand how our Sites are being used. We think that these cookies will improve your experience when using the Sites but are not essential. However, without these cookies, certain functionality (like videos) may become unavailable.</p><div class="ot-hlst-cntr"><button class="ot-link-btn category-host-list-handler" dir="ltr" aria-label="Performance and Functionality Cookies - Cookie Details button opens Cookie List menu" data-parent-id="C0002">Cookies Details</button></div></div></div><!-- Non Accordion Group --><!-- Accordion Group section starts --><!-- Accordion Group section ends --></section></div><section id="ot-pc-lst" class="ot-hide ot-pc-scrollbar"><div id="ot-pc-hdr"><div id="ot-lst-title"><button class="ot-link-btn back-btn-handler" aria-label="Back"><svg id="ot-back-arw" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 444.531 444.531" xml:space="preserve"><title>Back Button</title><g><path fill="#656565" d="M213.13,222.409L351.88,83.653c7.05-7.043,10.567-15.657,10.567-25.841c0-10.183-3.518-18.793-10.567-25.835 | |
| 3447 | + l-21.409-21.416C323.432,3.521,314.817,0,304.637,0s-18.791,3.521-25.841,10.561L92.649,196.425 | |
| 3448 | + c-7.044,7.043-10.566,15.656-10.566,25.841s3.521,18.791,10.566,25.837l186.146,185.864c7.05,7.043,15.66,10.564,25.841,10.564 | |
| 3449 | + s18.795-3.521,25.834-10.564l21.409-21.412c7.05-7.039,10.567-15.604,10.567-25.697c0-10.085-3.518-18.746-10.567-25.978 | |
| 3450 | + L213.13,222.409z"></path></g></svg></button><h3>Cookie List</h3></div><div class="ot-lst-subhdr"><div class="ot-search-cntr"><p role="status" class="ot-scrn-rdr"></p><input id="vendor-search-handler" type="text" name="vendor-search-handler" placeholder="Search…" aria-label="Cookie list search"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 -30 110 110" aria-hidden="true"><title>Search Icon</title><path fill="#2e3644" d="M55.146,51.887L41.588,37.786c3.486-4.144,5.396-9.358,5.396-14.786c0-12.682-10.318-23-23-23s-23,10.318-23,23 | |
| 3451 | + s10.318,23,23,23c4.761,0,9.298-1.436,13.177-4.162l13.661,14.208c0.571,0.593,1.339,0.92,2.162,0.92 | |
| 3452 | + c0.779,0,1.518-0.297,2.079-0.837C56.255,54.982,56.293,53.08,55.146,51.887z M23.984,6c9.374,0,17,7.626,17,17s-7.626,17-17,17 | |
| 3453 | + s-17-7.626-17-17S14.61,6,23.984,6z"></path></svg></div><div class="ot-fltr-cntr"><button id="filter-btn-handler" aria-label="Filter Cookie List" aria-haspopup="true" aria-expanded="false"><svg role="presentation" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 402.577 402.577" xml:space="preserve"><title>Filter Icon</title><g><path fill="#fff" d="M400.858,11.427c-3.241-7.421-8.85-11.132-16.854-11.136H18.564c-7.993,0-13.61,3.715-16.846,11.136 | |
| 3454 | + c-3.234,7.801-1.903,14.467,3.999,19.985l140.757,140.753v138.755c0,4.955,1.809,9.232,5.424,12.854l73.085,73.083 | |
| 3455 | + c3.429,3.614,7.71,5.428,12.851,5.428c2.282,0,4.66-0.479,7.135-1.43c7.426-3.238,11.14-8.851,11.14-16.845V172.166L396.861,31.413 | |
| 3456 | + C402.765,25.895,404.093,19.231,400.858,11.427z"></path></g></svg></button></div><div id="ot-anchor"></div><section id="ot-fltr-modal"><div id="ot-fltr-cnt"><button id="clear-filters-handler">Clear</button><fieldset class="ot-fltr-scrlcnt ot-pc-scrollbar"><legend id="ot-filter-list-header"></legend><ul class="ot-fltr-opts"><li class="ot-fltr-opt"><div class="ot-chkbox"><input id="chkbox-id" type="checkbox" class="category-filter-handler"> <label for="chkbox-id"><span class="ot-label-txt">checkbox label</span></label> <span class="ot-label-status">label</span></div></li></ul><div class="ot-fltr-btns"><button id="filter-apply-handler">Apply</button> <button id="filter-cancel-handler">Cancel</button></div></fieldset></div></section></div></div><section id="ot-lst-cnt" class="ot-pc-scrollbar"><div id="ot-sel-blk"><div class="ot-sel-all"><div class="ot-sel-all-hdr"><span class="ot-consent-hdr">Consent</span> <span class="ot-li-hdr">Leg.Interest</span></div><div class="ot-sel-all-chkbox"><div class="ot-chkbox" id="ot-selall-hostcntr"><input id="select-all-hosts-groups-handler" type="checkbox"> <label for="select-all-hosts-groups-handler"><span class="ot-label-txt">checkbox label</span></label> <span class="ot-label-status">label</span></div><div class="ot-chkbox" id="ot-selall-vencntr"><input id="select-all-vendor-groups-handler" type="checkbox"> <label for="select-all-vendor-groups-handler"><span class="ot-label-txt">checkbox label</span></label> <span class="ot-label-status">label</span></div><div class="ot-chkbox" id="ot-selall-licntr"><input id="select-all-vendor-leg-handler" type="checkbox"> <label for="select-all-vendor-leg-handler"><span class="ot-label-txt">checkbox label</span></label> <span class="ot-label-status">label</span></div></div></div></div><div class="ot-sdk-row"><div class="ot-sdk-column"><ul id="ot-host-lst"></ul></div></div></section></section><!-- Footer buttons and logo --><div class="ot-pc-footer ot-pc-scrollbar"><div class="ot-btn-container"><button class="ot-pc-refuse-all-handler" ot-button-order="1">Reject All</button> <button class="save-preference-btn-handler onetrust-close-btn-handler" ot-button-order="2">Confirm My Choices</button></div><div class="ot-pc-footer-logo"><a href="https://www.onetrust.com/solutions/consent-and-preferences/" target="_blank" rel="noopener noreferrer" aria-label="Powered by OneTrust Opens in a new Tab"><img alt="Powered by Onetrust" src="https://cdn.cookielaw.org/logos/static/powered_by_logo.svg" title="Powered by OneTrust Opens in a new Tab" aria-hidden="true"></a></div></div><!-- Cookie subgroup container --><!-- Vendor list link --><!-- Cookie lost link --><!-- Toggle HTML element --><!-- Checkbox HTML --><!-- Arrow SVG element --><!-- plus minus--><!-- Accordion basic element --><span class="ot-scrn-rdr" aria-atomic="true" aria-live="polite"></span><!-- Vendor Service container and item template --></div><iframe class="ot-text-resize" sandbox="allow-same-origin" title="onetrust-text-resize" style="position: absolute; top: -50000px; width: 100em;" aria-hidden="true"></iframe></div><div id="ot-sdk-btn-floating" class="ot-floating-button ot-hide" data-title="Cookies Settings"><div class="ot-floating-button__front custom-persistent-icon"><button type="button" class="ot-floating-button__open" aria-label="Cookies Settings" aria-haspopup="dialog"></button></div><div class="ot-floating-button__back custom-persistent-icon"><button type="button" class="ot-floating-button__close" aria-label="Close Preferences" aria-hidden="true" style="display: none;"><!--?xml version="1.0" encoding="UTF-8"?--> <svg role="presentation" tabindex="-1" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg"><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="Banner_02" class="ot-floating-button__svg-fill" transform="translate(-318.000000, -725.000000)" fill="#292B2E" fill-rule="nonzero"><g id="Group-2" transform="translate(305.000000, 712.000000)"><g id="icon/16px/white/close"><polygon id="Line1" points="13.3333333 14.9176256 35.0823744 36.6666667 36.6666667 35.0823744 14.9176256 13.3333333"></polygon><polygon id="Line2" transform="translate(25.000000, 25.000000) scale(-1, 1) translate(-25.000000, -25.000000) " points="13.3333333 14.9176256 35.0823744 36.6666667 36.6666667 35.0823744 14.9176256 13.3333333"></polygon></g></g></g></g></svg></button></div></div></div><iframe id="nr-ext-rsicon" style="position: absolute; display: none; width: 50px; height: 50px; z-index: 2147483647; border-style: none; background: transparent;"></iframe></body></html> | |
| \ No newline at end of file | ||
deleted
tests/fixtures/brigil/0a60655cc2caed19605e.json
+0 −1
@@ -1 +0,0 @@ | ||
| 1 | −{"success":true,"data":{"metadata":{"language":"en","viewport":"width=device-width, initial-scale=1.0 ","referrer":"always","theme-color":"#999","description":"Check out photos, floor plans, amenities, rental rates & availability at Ruisseaux Lépine in Gatineau, QC and submit your lease application today!","title":"Property details for Ruisseaux Lépine in Gatineau, QC","keywords":"","author":"Ruisseaux Lépine","favicon":"https://resource.rentcafe.com/image/upload/q_auto,f_auto,w_152,h_152/s3/2/252329/brigil-favicon.png","scrapeId":"019fe4bb-9616-74cf-910e-c8f97eae4b2a","sourceURL":"https://www.brigil.com/apartments/qc/gatineau/ruisseaux-lepine-i/default.aspx","url":"https://www.brigil.com/apartments/qc/gatineau/ruisseaux-lepine-i/default","statusCode":200,"contentType":"text/html; charset=utf-8","proxyUsed":"basic","cacheState":"hit","cachedAt":"2026-08-09T04:04:26.173Z","creditsUsed":1,"concurrencyLimited":false},"html":"<!DOCTYPE html><html lang=\"en\" itemscope=\"\" itemtype=\"https://schema.org/FAQPage\" style=\"--vw: 19.05px; scroll-padding-top: 928px; --helpwidget-bottom-offset: 0px;\">\n<body id=\"propertydetail\" class=\"enhanced\">\n\n \n<!-- Google Tag Manager (noscript) -->\n\n<!-- End Google Tag Manager (noscript) -->\n\n \n\n \n\n \n\n \n\n \n <!-- Accessibility Button -->\n <div id=\"acsWidget\" role=\"complementary\" class=\"widget-left\" style=\"bottom:60px;background-color:transparent!important;\" customlabelreplaced=\"\">\n <button id=\"acsBtn\" data-acs-applied=\"\" type=\"button\" class=\"accessibility-button btn mt-3 m-0 p-0 border-0 \" data-toggle=\"modal\" data-target=\"#acsModal\" style=\"background-color:transparent!important;background-image:none;box-shadow:none;\" aria-label=\"Open Accessibility Options\" customlabelreplaced=\"\">\n <svg class=\"rounded-circle\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" width=\"56px\" height=\"56px\" viewBox=\"0 0 64 64\">\n <rect x=\"4\" y=\"4\" width=\"56\" height=\"56\" rx=\"100\" ry=\"100\" fill=\"#000000\"></rect>\n <g transform=\"translate(12.5 12.5) scale(0.6)\">\n <circle data-color=\"color-2\" cx=\"32\" cy=\"8\" r=\"6\" fill=\"#ffffff\"></circle>\n <path d=\"M55.5,16H8.5a2.5,2.5,0,0,0,0,5L24,22V59a3,3,0,0,0,6,0l1-21h2l1,21a3,3,0,0,0,6,0V22l15.5-1a2.5,2.5,0,0,0,0-5Z\" fill=\"#ffffff\"></path>\n </g>\n </svg>\n <span id=\"acsCheck\" class=\"nu nu-check text-xs rounded-circle d-none\" style=\"background-color: #000000 !important; box-shadow: 0 0 0px 4px #000000 !important\" customlabelreplaced=\"\"></span>\n </button>\n </div>\n \n \n\n \n\n\n<a id=\"skip-nav\" href=\"https://www.brigil.com/apartments/qc/gatineau/ruisseaux-lepine-i/default#main-content\" customlabelreplaced=\"\">Skip to main content</a>\n \n\n\n\n \n\n\n\n\n\n\n\n \n \n\n\n\n\n\n\n\n\n <div data-offset-top=\"408\" id=\"stickyTopSentinel0\" class=\"stickytopsentinel\" style=\"position: absolute; left: 0px; width: 1px; height: 1px; z-index: 0; top: 408px;\"></div>\n\n <!--do not remove-->\n <main id=\"main-content\"><div class=\"bg-white container-fluid p-0\" customlabelreplaced=\"\"><div class=\"row no-gutters\" customlabelreplaced=\"\"><div class=\"justify-content-start align-items-stretch flex-column d-flex text-left col-12 col-lg-12\" customlabelreplaced=\"\">\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<div class=\"bg-white container-fluid p-0 ysi-row speciality_property_detail_page\" customlabelreplaced=\"\"><div class=\"row no-gutters\" customlabelreplaced=\"\"><div class=\"col-12 col-lg-12\" customlabelreplaced=\"\"><div class=\"px-xl-8 px-md-4 px-3\" customlabelreplaced=\"\"><div class=\"container-fluid\" customlabelreplaced=\"\"><div class=\"row\" customlabelreplaced=\"\"><div class=\"col-12 px-md-3 col-lg-12\" customlabelreplaced=\"\">\n \n </div></div></div></div><div class=\"px-xl-5 py-md-5 px-md-3 py-4 text-white bg-primary\" customlabelreplaced=\"\"><div class=\"container-fluid\" customlabelreplaced=\"\"><div class=\"row\" customlabelreplaced=\"\"><div class=\"col-12 col-lg-12\" customlabelreplaced=\"\">\n<!-- Address row -->\n<div class=\"row\" customlabelreplaced=\"\">\n <div class=\"col-12 col-lg-9 d-flex flex-column flex-lg-row\" customlabelreplaced=\"\">\n <div class=\"ysi-logo-widget ysi-logo-wrapper pb-3 pb-lg-0 d-flex align-items-center justify-content-center justify-content-lg-start\" data-widget-order=\"1\" customlabelreplaced=\"\" aria-hidden=\"false\"><a href=\"https://www.brigil.com/\" class=\"d-inline-block\" customlabelreplaced=\"\"><picture id=\"logo629\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_1920,h_1069,c_crop/q_auto,f_auto,c_fit,w_135,h_75,dpr_2/s3/2/252329/logo_ruisseauxlepine_bleu%201.png 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_1920,h_1069,c_crop/q_auto,f_auto,c_limit,w_135,h_75/s3/2/252329/logo_ruisseauxlepine_bleu%201.png\">\n\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_1920,h_1069,c_crop/q_auto,f_auto,c_fit,w_90,h_50,dpr_2/s3/2/252329/logo_ruisseauxlepine_bleu%201.png 2x\"><img src=\"https://resource.rentcafe.com/image/upload/x_0,y_0,w_1920,h_1069,c_crop/q_auto,f_auto,c_limit,w_90,h_50/s3/2/252329/logo_ruisseauxlepine_bleu%201.png\" class=\"w-100 h-100 d-inline-block img-fluid\" alt=\"A logo for Chateau Golf is displayed.\" width=\"90\" height=\"50\">\n</picture>\n</a></div>\n\n\n\n <div class=\"ml-lg-4 d-flex flex-column justify-content-center align-items-center align-items-lg-start text-center text-lg-left header-address\" customlabelreplaced=\"\">\n <!-- Address -->\n <div class=\"ysi-address-widget\" customlabelreplaced=\"\">\n <div class=\"d-inline-flex\" customlabelreplaced=\"\">\n <address class=\"ysi-address mb-0\">\n <div itemprop=\"name\" data-selenium-id=\"address_propname\" customlabelreplaced=\"\">Ruisseaux Lépine <button id=\"favorite-btn\" class=\"px-2 btn btn-link text-white text-decoration-none\" aria-label=\"Add Ruisseaux Lépine as favorite\" data-property=\"Ruisseaux Lépine\" customlabelreplaced=\"\"><span class=\"nu nu-heart text-lg\" aria-hidden=\"true\" customlabelreplaced=\"\"></span></button></div>\n <div itemprop=\"address\" customlabelreplaced=\"\">1 - 320 Rue Élisabeth-Chauvin, Gatineau, QC J8L 0Z4</div>\n </address>\n </div>\n </div>\n <!-- Address token close here -->\n <!-- Phone No. widget will come here -->\n \n\n \n\n <div class=\"ysi-phone-widget ysi-phone-wrapper \" customlabelreplaced=\"\">\n <div class=\"d-inline-flex\" customlabelreplaced=\"\">\n <a data-selenium-id=\"click_to_call\" href=\"tel:(833) 291-8561\" aria-label=\"Call 6881530 Canada Inc (Brigil) at +1 819-303-4826\" class=\"ysi-phone-number click-to-call-href click-to-call-href-p1975503 text-decoration-none color-inherit \" customlabelreplaced=\"\">\n <span aria-hidden=\"true\" class=\"fa-flip-horizontal fas fa-phone\" customlabelreplaced=\"\"></span>\n <span data-selenium-id=\"click_to_call_span\" class=\"click-to-call click-to-call-p1975503 ml-2 text-underline\" customlabelreplaced=\"\">(833) 291-8561</span>\n </a>\n\n </div>\n </div>\n \n\n\n\n <!-- Social Media -->\n <div class=\"social-media-block\" customlabelreplaced=\"\">\n \n\n \n\n <div class=\"ysi-socialmedia-widget ysi-socialmedia-wrapper ysi-socialmedia-link horizontal icon-light text-left small\" customlabelreplaced=\"\">\n <ul class=\"ysi-socialmedia-icons\" data-selenium-id=\"socialmedia01\" customlabelreplaced=\"\">\n <li class=\"social-media-facebook \" customlabelreplaced=\"\">\n <a href=\"https://www.facebook.com/BRIGIL/\" target=\"_blank\" aria-label=\"Facebook, opens in new tab\" rel=\"noopener\" data-selenium-id=\"SM_FaceBookIcon\" class=\"facebook_icon\" customlabelreplaced=\"\">\n <span aria-hidden=\"true\" class=\"nu nu-secondary_facebook_logo fab fa-facebook-f\" customlabelreplaced=\"\"></span>\n </a>\n </li>\n <li class=\"social-media-linkedin \" customlabelreplaced=\"\">\n <a href=\"https://www.linkedin.com/company/brigil\" target=\"_blank\" aria-label=\"LinkedIn, opens in new tab\" rel=\"noopener\" data-selenium-id=\"SM_LinkedInIcon\" class=\"linkedin_icon\" customlabelreplaced=\"\">\n <span aria-hidden=\"true\" class=\"fab fa-linkedin\" customlabelreplaced=\"\"></span>\n </a>\n </li>\n <li class=\"social-media-instagram \" customlabelreplaced=\"\">\n <a href=\"https://instagram.com/brigilhomes\" target=\"_blank\" aria-label=\"Instagram, opens in new tab\" rel=\"noopener\" data-selenium-id=\"SM_InstagramIcon\" class=\"instagram_icon\" customlabelreplaced=\"\">\n <span aria-hidden=\"true\" class=\"fab fa-instagram\" customlabelreplaced=\"\"></span>\n </a>\n </li>\n <li class=\"social-media-youtube \" customlabelreplaced=\"\">\n <a href=\"https://www.youtube.com/@brigil8001\" target=\"_blank\" aria-label=\"Youtube, opens in new tab\" rel=\"noopener\" data-selenium-id=\"SM_YoutubeIcon\" class=\"youtube_icon\" customlabelreplaced=\"\">\n <span aria-hidden=\"true\" class=\"fab fa-youtube\" customlabelreplaced=\"\"></span>\n </a>\n </li>\n </ul>\n\n </div>\n <div class=\"ysi-socialmedia-widget ysi-socialmedia-popover-wrapper d-none\" customlabelreplaced=\"\">\n <ul class=\"ysi-socialmedia-popover-icons list-inline text-center list-inline\" customlabelreplaced=\"\">\n </ul>\n\n </div>\n\n </div>\n </div>\n </div>\n \n <div class=\"col-12 col-lg-3 justify-content-center align-items-center flex-column d-flex text-center text-lg-left mt-2 mt-lg-0\" customlabelreplaced=\"\">\n\n\n <!-- Action buttons -->\n <div class=\"d-inline-flex py-2\" customlabelreplaced=\"\">\n\n <button id=\"header-contact-us-btn\" type=\"button\" class=\"btn btn-white btn-round px-lg-3 px-xl-4 contact-us-btn\" data-toggle=\"modal\" data-target=\"#ContactUsModal\" customlabelreplaced=\"\"> Contact Us<span class=\"sr-only\" customlabelreplaced=\"\">opens a dialog</span> </button>\n\n </div>\n </div>\n</div>\n<!-- Address row --></div></div></div></div><div data-offset-top=\"1657\" id=\"stickyTopSentinel1\" class=\"stickytopsentinel\" style=\"position: absolute; left: 0px; width: 1px; height: 1px; z-index: 0;\"></div><div class=\"text-dark bg-white container-fluid p-0 ysi-row sticky-top speciality-nav\" customlabelreplaced=\"\"><div class=\"row no-gutters\" customlabelreplaced=\"\"><div class=\"px-xl-5 px-md-4 col-12 offset-0 col-lg-12\" customlabelreplaced=\"\">\n \n </div></div></div><div class=\"container-fluid p-0\" customlabelreplaced=\"\"><div class=\"row no-gutters\" customlabelreplaced=\"\"><div class=\"p-0 col-12 col-lg-12\" customlabelreplaced=\"\">\n\n\n\n \n\n\n\n<section role=\"region\" aria-label=\"Image carousel\" id=\"carousel-property-detail-banner\" class=\"photogallery carousel slide\" data-gallery-type=\"propertydetails\" data-ride=\"carousel\" data-interval=\"false\" data-gap=\"4\" data-enable-legacy-zoom=\"true\" data-has-height=\"true\" style=\"z-index: 1;\" data-initialized=\"true\">\n\n <div class=\"carousel-inner\" aria-live=\"assertive\" customlabelreplaced=\"\">\n\n\n <button type=\"button\" class=\"carousel-control-prev gallery-prev\" data-target=\"#carousel-property-detail-banner\" data-slide=\"prev\" aria-label=\"Previous Image\" data-selenium-id=\"CarouserlBtnPrevious\" customlabelreplaced=\"\"></button>\n\n\n \n\n\n\n <div role=\"tabpanel\" class=\"carousel-item h-100 active\" id=\"carousel-property-detail-banner-slide-1\" customlabelreplaced=\"\">\n <div class=\"item h-100\" customlabelreplaced=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/252329/brigil-communitythumbnail-ruisseaux%20l%C3%A9pine2.jpg\" role=\"button\" title=\"a modern apartment building with balconies and staircases., Press for larger image\" class=\"h-100 test-link\" customlabelreplaced=\"\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber1\" customlabelreplaced=\"\">1 of 12</div>\n\n <picture>\n<source media=\"(min-width: 2560px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_1280,ar_4.7407407407407405/s3/2/252329/brigil-communitythumbnail-ruisseaux%20lépine2.jpg\">\n<source media=\"(min-width: 1920px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_1024,ar_3.7925925925925927/s3/2/252329/brigil-communitythumbnail-ruisseaux%20lépine2.jpg\">\n<source media=\"(min-width: 1440px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_768,ar_2.8444444444444446/s3/2/252329/brigil-communitythumbnail-ruisseaux%20lépine2.jpg\">\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_576,ar_2.1333333333333333/s3/2/252329/brigil-communitythumbnail-ruisseaux%20lépine2.jpg\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_480,ar_1.776851851851852,dpr_2/s3/2/252329/brigil-communitythumbnail-ruisseaux%20lépine2.jpg 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_480,ar_1.776851851851852/s3/2/252329/brigil-communitythumbnail-ruisseaux%20lépine2.jpg\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_396,ar_1.776851851851852,dpr_2/s3/2/252329/brigil-communitythumbnail-ruisseaux%20lépine2.jpg 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_396,ar_1.776851851851852/s3/2/252329/brigil-communitythumbnail-ruisseaux%20lépine2.jpg\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_768,ar_1,dpr_2/s3/2/252329/brigil-communitythumbnail-ruisseaux%20lépine2.jpg 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_768,ar_1/s3/2/252329/brigil-communitythumbnail-ruisseaux%20lépine2.jpg\">\n<source media=\"(min-width: 420px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 420px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_576,ar_1,dpr_2/s3/2/252329/brigil-communitythumbnail-ruisseaux%20lépine2.jpg 2x\"><source media=\"(min-width: 420px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_576,ar_1/s3/2/252329/brigil-communitythumbnail-ruisseaux%20lépine2.jpg\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_420,ar_1/s3/2/252329/brigil-communitythumbnail-ruisseaux%20l%C3%A9pine2.jpg\" class=\"img-fluid\" alt=\"a modern apartment building with balconies and staircases.\" fetchpriority=\"high\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n <div role=\"tabpanel\" class=\"carousel-item h-100 \" id=\"carousel-property-detail-banner-slide-2\" customlabelreplaced=\"\">\n <div class=\"item h-100\" customlabelreplaced=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/252329/4s3a3708-1920x1080.jpg\" role=\"button\" title=\"a modern dining room with a white door and a wooden table., Press for larger image\" class=\"h-100 test-link\" customlabelreplaced=\"\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber2\" customlabelreplaced=\"\">2 of 12</div>\n\n <picture>\n<source media=\"(min-width: 2560px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_640,ar_4.7407407407407405,g_auto/s3/2/252329/4s3a3708-1920x1080.jpg\">\n<source media=\"(min-width: 1920px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_512,ar_3.7925925925925927,g_auto/s3/2/252329/4s3a3708-1920x1080.jpg\">\n<source media=\"(min-width: 1440px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_384,ar_2.8444444444444446,g_auto/s3/2/252329/4s3a3708-1920x1080.jpg\">\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_288,ar_2.1333333333333333,g_auto/s3/2/252329/4s3a3708-1920x1080.jpg\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_240,ar_1.776851851851852,g_auto,dpr_2/s3/2/252329/4s3a3708-1920x1080.jpg 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_240,ar_1.776851851851852,g_auto/s3/2/252329/4s3a3708-1920x1080.jpg\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_198,ar_1.776851851851852,g_auto,dpr_2/s3/2/252329/4s3a3708-1920x1080.jpg 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_198,ar_1.776851851851852,g_auto/s3/2/252329/4s3a3708-1920x1080.jpg\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_768,ar_1,g_auto,dpr_2/s3/2/252329/4s3a3708-1920x1080.jpg 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_768,ar_1,g_auto/s3/2/252329/4s3a3708-1920x1080.jpg\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_576,ar_1,g_auto,dpr_2/s3/2/252329/4s3a3708-1920x1080.jpg 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_576,ar_1,g_auto/s3/2/252329/4s3a3708-1920x1080.jpg\" class=\"img-fluid\" alt=\"a modern dining room with a white door and a wooden table.\" data-loading=\"lazy\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n <div role=\"tabpanel\" class=\"carousel-item h-100 \" id=\"carousel-property-detail-banner-slide-3\" customlabelreplaced=\"\">\n <div class=\"item h-100\" customlabelreplaced=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/252329/4s3a3762-2_modif_sansclim-1920x1080.jpg\" role=\"button\" title=\"a living room with a beige couch, a wooden coffee table, and a staircase in the background., Press for larger image\" class=\"h-100 test-link\" customlabelreplaced=\"\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber3\" customlabelreplaced=\"\">3 of 12</div>\n\n <picture>\n<source media=\"(min-width: 2560px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_640,ar_4.7407407407407405,g_auto/s3/2/252329/4s3a3762-2_modif_sansclim-1920x1080.jpg\">\n<source media=\"(min-width: 1920px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_512,ar_3.7925925925925927,g_auto/s3/2/252329/4s3a3762-2_modif_sansclim-1920x1080.jpg\">\n<source media=\"(min-width: 1440px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_384,ar_2.8444444444444446,g_auto/s3/2/252329/4s3a3762-2_modif_sansclim-1920x1080.jpg\">\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_288,ar_2.1333333333333333,g_auto/s3/2/252329/4s3a3762-2_modif_sansclim-1920x1080.jpg\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_240,ar_1.776851851851852,g_auto,dpr_2/s3/2/252329/4s3a3762-2_modif_sansclim-1920x1080.jpg 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_240,ar_1.776851851851852,g_auto/s3/2/252329/4s3a3762-2_modif_sansclim-1920x1080.jpg\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_198,ar_1.776851851851852,g_auto,dpr_2/s3/2/252329/4s3a3762-2_modif_sansclim-1920x1080.jpg 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_198,ar_1.776851851851852,g_auto/s3/2/252329/4s3a3762-2_modif_sansclim-1920x1080.jpg\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_768,ar_1,g_auto,dpr_2/s3/2/252329/4s3a3762-2_modif_sansclim-1920x1080.jpg 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_768,ar_1,g_auto/s3/2/252329/4s3a3762-2_modif_sansclim-1920x1080.jpg\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_576,ar_1,g_auto,dpr_2/s3/2/252329/4s3a3762-2_modif_sansclim-1920x1080.jpg 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_576,ar_1,g_auto/s3/2/252329/4s3a3762-2_modif_sansclim-1920x1080.jpg\" class=\"img-fluid\" alt=\"a living room with a beige couch, a wooden coffee table, and a staircase in the background.\" loading=\"lazy\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n <div role=\"tabpanel\" class=\"carousel-item h-100 \" id=\"carousel-property-detail-banner-slide-4\" customlabelreplaced=\"\">\n <div class=\"item h-100\" customlabelreplaced=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/252329/4s3a3737_modif-1920x1080.jpg\" role=\"button\" title=\"a living room with a grey armchair, a wooden chair, a white sofa, and a tv mounted on the wall., Press for larger image\" class=\"h-100 test-link\" customlabelreplaced=\"\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber4\" customlabelreplaced=\"\">4 of 12</div>\n\n <picture>\n<source media=\"(min-width: 2560px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_640,ar_4.7407407407407405,g_auto/s3/2/252329/4s3a3737_modif-1920x1080.jpg\">\n<source media=\"(min-width: 1920px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_512,ar_3.7925925925925927,g_auto/s3/2/252329/4s3a3737_modif-1920x1080.jpg\">\n<source media=\"(min-width: 1440px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_384,ar_2.8444444444444446,g_auto/s3/2/252329/4s3a3737_modif-1920x1080.jpg\">\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_288,ar_2.1333333333333333,g_auto/s3/2/252329/4s3a3737_modif-1920x1080.jpg\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_240,ar_1.776851851851852,g_auto,dpr_2/s3/2/252329/4s3a3737_modif-1920x1080.jpg 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_240,ar_1.776851851851852,g_auto/s3/2/252329/4s3a3737_modif-1920x1080.jpg\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_198,ar_1.776851851851852,g_auto,dpr_2/s3/2/252329/4s3a3737_modif-1920x1080.jpg 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_198,ar_1.776851851851852,g_auto/s3/2/252329/4s3a3737_modif-1920x1080.jpg\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_768,ar_1,g_auto,dpr_2/s3/2/252329/4s3a3737_modif-1920x1080.jpg 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_768,ar_1,g_auto/s3/2/252329/4s3a3737_modif-1920x1080.jpg\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_576,ar_1,g_auto,dpr_2/s3/2/252329/4s3a3737_modif-1920x1080.jpg 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_576,ar_1,g_auto/s3/2/252329/4s3a3737_modif-1920x1080.jpg\" class=\"img-fluid\" alt=\"a living room with a grey armchair, a wooden chair, a white sofa, and a tv mounted on the wall.\" loading=\"lazy\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n <div role=\"tabpanel\" class=\"carousel-item h-100 \" id=\"carousel-property-detail-banner-slide-5\" customlabelreplaced=\"\">\n <div class=\"item h-100\" customlabelreplaced=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/252329/4s3a3812-1920x1080.jpg\" role=\"button\" title=\"a modern kitchen with a stove top oven and a refrigerator., Press for larger image\" class=\"h-100 test-link\" customlabelreplaced=\"\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber5\" customlabelreplaced=\"\">5 of 12</div>\n\n <picture>\n<source media=\"(min-width: 2560px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_640,ar_4.7407407407407405,g_auto/s3/2/252329/4s3a3812-1920x1080.jpg\">\n<source media=\"(min-width: 1920px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_512,ar_3.7925925925925927,g_auto/s3/2/252329/4s3a3812-1920x1080.jpg\">\n<source media=\"(min-width: 1440px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_384,ar_2.8444444444444446,g_auto/s3/2/252329/4s3a3812-1920x1080.jpg\">\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_288,ar_2.1333333333333333,g_auto/s3/2/252329/4s3a3812-1920x1080.jpg\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_240,ar_1.776851851851852,g_auto,dpr_2/s3/2/252329/4s3a3812-1920x1080.jpg 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_240,ar_1.776851851851852,g_auto/s3/2/252329/4s3a3812-1920x1080.jpg\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_198,ar_1.776851851851852,g_auto,dpr_2/s3/2/252329/4s3a3812-1920x1080.jpg 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_198,ar_1.776851851851852,g_auto/s3/2/252329/4s3a3812-1920x1080.jpg\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_768,ar_1,g_auto,dpr_2/s3/2/252329/4s3a3812-1920x1080.jpg 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_768,ar_1,g_auto/s3/2/252329/4s3a3812-1920x1080.jpg\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_576,ar_1,g_auto,dpr_2/s3/2/252329/4s3a3812-1920x1080.jpg 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_576,ar_1,g_auto/s3/2/252329/4s3a3812-1920x1080.jpg\" class=\"img-fluid\" alt=\"a modern kitchen with a stove top oven and a refrigerator.\" loading=\"lazy\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n <div role=\"tabpanel\" class=\"carousel-item h-100 \" id=\"carousel-property-detail-banner-slide-6\" customlabelreplaced=\"\">\n <div class=\"item h-100\" customlabelreplaced=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/252329/4s3a3841-1920x1080.jpg\" role=\"button\" title=\"a white bathroom with a marble picture on the wall., Press for larger image\" class=\"h-100 test-link\" customlabelreplaced=\"\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber6\" customlabelreplaced=\"\">6 of 12</div>\n\n <picture>\n<source media=\"(min-width: 2560px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_640,ar_4.7407407407407405,g_auto/s3/2/252329/4s3a3841-1920x1080.jpg\">\n<source media=\"(min-width: 1920px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_512,ar_3.7925925925925927,g_auto/s3/2/252329/4s3a3841-1920x1080.jpg\">\n<source media=\"(min-width: 1440px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_384,ar_2.8444444444444446,g_auto/s3/2/252329/4s3a3841-1920x1080.jpg\">\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_288,ar_2.1333333333333333,g_auto/s3/2/252329/4s3a3841-1920x1080.jpg\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_240,ar_1.776851851851852,g_auto,dpr_2/s3/2/252329/4s3a3841-1920x1080.jpg 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_240,ar_1.776851851851852,g_auto/s3/2/252329/4s3a3841-1920x1080.jpg\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_198,ar_1.776851851851852,g_auto,dpr_2/s3/2/252329/4s3a3841-1920x1080.jpg 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_198,ar_1.776851851851852,g_auto/s3/2/252329/4s3a3841-1920x1080.jpg\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_768,ar_1,g_auto,dpr_2/s3/2/252329/4s3a3841-1920x1080.jpg 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_768,ar_1,g_auto/s3/2/252329/4s3a3841-1920x1080.jpg\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_576,ar_1,g_auto,dpr_2/s3/2/252329/4s3a3841-1920x1080.jpg 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_576,ar_1,g_auto/s3/2/252329/4s3a3841-1920x1080.jpg\" class=\"img-fluid\" alt=\"a white bathroom with a marble picture on the wall.\" loading=\"lazy\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n <div role=\"tabpanel\" class=\"carousel-item h-100 \" id=\"carousel-property-detail-banner-slide-7\" customlabelreplaced=\"\">\n <div class=\"item h-100\" customlabelreplaced=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/252329/4s3a3865-1920x1080.jpg\" role=\"button\" title=\"a bedroom with a large bed and a painting on the wall., Press for larger image\" class=\"h-100 test-link\" customlabelreplaced=\"\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber7\" customlabelreplaced=\"\">7 of 12</div>\n\n <picture>\n<source media=\"(min-width: 2560px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_640,ar_4.7407407407407405,g_auto/s3/2/252329/4s3a3865-1920x1080.jpg\">\n<source media=\"(min-width: 1920px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_512,ar_3.7925925925925927,g_auto/s3/2/252329/4s3a3865-1920x1080.jpg\">\n<source media=\"(min-width: 1440px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_384,ar_2.8444444444444446,g_auto/s3/2/252329/4s3a3865-1920x1080.jpg\">\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_288,ar_2.1333333333333333,g_auto/s3/2/252329/4s3a3865-1920x1080.jpg\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_240,ar_1.776851851851852,g_auto,dpr_2/s3/2/252329/4s3a3865-1920x1080.jpg 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_240,ar_1.776851851851852,g_auto/s3/2/252329/4s3a3865-1920x1080.jpg\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_198,ar_1.776851851851852,g_auto,dpr_2/s3/2/252329/4s3a3865-1920x1080.jpg 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_198,ar_1.776851851851852,g_auto/s3/2/252329/4s3a3865-1920x1080.jpg\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_768,ar_1,g_auto,dpr_2/s3/2/252329/4s3a3865-1920x1080.jpg 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_768,ar_1,g_auto/s3/2/252329/4s3a3865-1920x1080.jpg\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_576,ar_1,g_auto,dpr_2/s3/2/252329/4s3a3865-1920x1080.jpg 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_576,ar_1,g_auto/s3/2/252329/4s3a3865-1920x1080.jpg\" class=\"img-fluid\" alt=\"a bedroom with a large bed and a painting on the wall.\" loading=\"lazy\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n <div role=\"tabpanel\" class=\"carousel-item h-100 \" id=\"carousel-property-detail-banner-slide-8\" customlabelreplaced=\"\">\n <div class=\"item h-100\" customlabelreplaced=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/252329/p1942885_ruisseauxlepine_vueaerienne_still003_1_photogallery.jpg\" role=\"button\" title=\"a serene landscape with a lake, trees, and a small town in the distance., Press for larger image\" class=\"h-100 test-link\" customlabelreplaced=\"\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber8\" customlabelreplaced=\"\">8 of 12</div>\n\n <picture>\n<source media=\"(min-width: 2560px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_640,ar_4.7407407407407405,g_auto/s3/2/252329/p1942885_ruisseauxlepine_vueaerienne_still003_1_photogallery.jpg\">\n<source media=\"(min-width: 1920px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_512,ar_3.7925925925925927,g_auto/s3/2/252329/p1942885_ruisseauxlepine_vueaerienne_still003_1_photogallery.jpg\">\n<source media=\"(min-width: 1440px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_384,ar_2.8444444444444446,g_auto/s3/2/252329/p1942885_ruisseauxlepine_vueaerienne_still003_1_photogallery.jpg\">\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_288,ar_2.1333333333333333,g_auto/s3/2/252329/p1942885_ruisseauxlepine_vueaerienne_still003_1_photogallery.jpg\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_240,ar_1.776851851851852,g_auto,dpr_2/s3/2/252329/p1942885_ruisseauxlepine_vueaerienne_still003_1_photogallery.jpg 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_240,ar_1.776851851851852,g_auto/s3/2/252329/p1942885_ruisseauxlepine_vueaerienne_still003_1_photogallery.jpg\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_198,ar_1.776851851851852,g_auto,dpr_2/s3/2/252329/p1942885_ruisseauxlepine_vueaerienne_still003_1_photogallery.jpg 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_198,ar_1.776851851851852,g_auto/s3/2/252329/p1942885_ruisseauxlepine_vueaerienne_still003_1_photogallery.jpg\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_768,ar_1,g_auto,dpr_2/s3/2/252329/p1942885_ruisseauxlepine_vueaerienne_still003_1_photogallery.jpg 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_768,ar_1,g_auto/s3/2/252329/p1942885_ruisseauxlepine_vueaerienne_still003_1_photogallery.jpg\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_576,ar_1,g_auto,dpr_2/s3/2/252329/p1942885_ruisseauxlepine_vueaerienne_still003_1_photogallery.jpg 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_576,ar_1,g_auto/s3/2/252329/p1942885_ruisseauxlepine_vueaerienne_still003_1_photogallery.jpg\" class=\"img-fluid\" alt=\"a serene landscape with a lake, trees, and a small town in the distance.\" loading=\"lazy\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n <div role=\"tabpanel\" class=\"carousel-item h-100 \" id=\"carousel-property-detail-banner-slide-9\" customlabelreplaced=\"\">\n <div class=\"item h-100\" customlabelreplaced=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_charme_768_493_1_photogallery.jpg\" role=\"button\" title=\"a large mural of a woman wearing a hat is on the side of a building., Press for larger image\" class=\"h-100 test-link\" customlabelreplaced=\"\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber9\" customlabelreplaced=\"\">9 of 12</div>\n\n <picture>\n<source media=\"(min-width: 2560px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_640,ar_4.7407407407407405,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_charme_768_493_1_photogallery.jpg\">\n<source media=\"(min-width: 1920px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_512,ar_3.7925925925925927,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_charme_768_493_1_photogallery.jpg\">\n<source media=\"(min-width: 1440px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_384,ar_2.8444444444444446,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_charme_768_493_1_photogallery.jpg\">\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_288,ar_2.1333333333333333,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_charme_768_493_1_photogallery.jpg\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_240,ar_1.776851851851852,g_auto,dpr_2/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_charme_768_493_1_photogallery.jpg 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_240,ar_1.776851851851852,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_charme_768_493_1_photogallery.jpg\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_198,ar_1.776851851851852,g_auto,dpr_2/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_charme_768_493_1_photogallery.jpg 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_198,ar_1.776851851851852,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_charme_768_493_1_photogallery.jpg\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_768,ar_1,g_auto,dpr_2/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_charme_768_493_1_photogallery.jpg 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_768,ar_1,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_charme_768_493_1_photogallery.jpg\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_576,ar_1,g_auto,dpr_2/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_charme_768_493_1_photogallery.jpg 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_576,ar_1,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_charme_768_493_1_photogallery.jpg\" class=\"img-fluid\" alt=\"a large mural of a woman wearing a hat is on the side of a building.\" loading=\"lazy\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n <div role=\"tabpanel\" class=\"carousel-item h-100 \" id=\"carousel-property-detail-banner-slide-10\" customlabelreplaced=\"\">\n <div class=\"item h-100\" customlabelreplaced=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_la_riviere_2_768_493_1_photogallery.jpg\" role=\"button\" title=\"a person in a plaid shirt is rowing a wooden boat on a river., Press for larger image\" class=\"h-100 test-link\" customlabelreplaced=\"\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber10\" customlabelreplaced=\"\">10 of 12</div>\n\n <picture>\n<source media=\"(min-width: 2560px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_640,ar_4.7407407407407405,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_la_riviere_2_768_493_1_photogallery.jpg\">\n<source media=\"(min-width: 1920px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_512,ar_3.7925925925925927,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_la_riviere_2_768_493_1_photogallery.jpg\">\n<source media=\"(min-width: 1440px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_384,ar_2.8444444444444446,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_la_riviere_2_768_493_1_photogallery.jpg\">\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_288,ar_2.1333333333333333,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_la_riviere_2_768_493_1_photogallery.jpg\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_240,ar_1.776851851851852,g_auto,dpr_2/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_la_riviere_2_768_493_1_photogallery.jpg 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_240,ar_1.776851851851852,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_la_riviere_2_768_493_1_photogallery.jpg\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_198,ar_1.776851851851852,g_auto,dpr_2/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_la_riviere_2_768_493_1_photogallery.jpg 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_198,ar_1.776851851851852,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_la_riviere_2_768_493_1_photogallery.jpg\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_768,ar_1,g_auto,dpr_2/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_la_riviere_2_768_493_1_photogallery.jpg 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_768,ar_1,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_la_riviere_2_768_493_1_photogallery.jpg\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_576,ar_1,g_auto,dpr_2/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_la_riviere_2_768_493_1_photogallery.jpg 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_576,ar_1,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_la_riviere_2_768_493_1_photogallery.jpg\" class=\"img-fluid\" alt=\"a person in a plaid shirt is rowing a wooden boat on a river.\" loading=\"lazy\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n <div role=\"tabpanel\" class=\"carousel-item h-100 \" id=\"carousel-property-detail-banner-slide-11\" customlabelreplaced=\"\">\n <div class=\"item h-100\" customlabelreplaced=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_services_2_768_493_1_photogallery.jpg\" role=\"button\" title=\"a man and a woman are embracing each other in a natural outdoor setting., Press for larger image\" class=\"h-100 test-link\" customlabelreplaced=\"\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber11\" customlabelreplaced=\"\">11 of 12</div>\n\n <picture>\n<source media=\"(min-width: 2560px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_640,ar_4.7407407407407405,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_services_2_768_493_1_photogallery.jpg\">\n<source media=\"(min-width: 1920px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_512,ar_3.7925925925925927,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_services_2_768_493_1_photogallery.jpg\">\n<source media=\"(min-width: 1440px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_384,ar_2.8444444444444446,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_services_2_768_493_1_photogallery.jpg\">\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_288,ar_2.1333333333333333,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_services_2_768_493_1_photogallery.jpg\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_240,ar_1.776851851851852,g_auto,dpr_2/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_services_2_768_493_1_photogallery.jpg 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_240,ar_1.776851851851852,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_services_2_768_493_1_photogallery.jpg\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_198,ar_1.776851851851852,g_auto,dpr_2/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_services_2_768_493_1_photogallery.jpg 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_198,ar_1.776851851851852,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_services_2_768_493_1_photogallery.jpg\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_768,ar_1,g_auto,dpr_2/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_services_2_768_493_1_photogallery.jpg 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_768,ar_1,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_services_2_768_493_1_photogallery.jpg\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_576,ar_1,g_auto,dpr_2/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_services_2_768_493_1_photogallery.jpg 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_576,ar_1,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_quartier_860_552_services_2_768_493_1_photogallery.jpg\" class=\"img-fluid\" alt=\"a man and a woman are embracing each other in a natural outdoor setting.\" loading=\"lazy\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n <div role=\"tabpanel\" class=\"carousel-item h-100 \" id=\"carousel-property-detail-banner-slide-12\" customlabelreplaced=\"\">\n <div class=\"item h-100\" customlabelreplaced=\"\">\n <a href=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1200/s3/2/252329/p1942885_ruisseaux_lepine_contact_2254_1994_3_1221_1080_1_photogallery.jpg\" role=\"button\" title=\"a river flows through a forest with sunlight filtering through the trees., Press for larger image\" class=\"h-100 test-link\" customlabelreplaced=\"\">\n <div class=\"item-index\" data-selenium-id=\"ImageNumber12\" customlabelreplaced=\"\">12 of 12</div>\n\n <picture>\n<source media=\"(min-width: 2560px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_640,ar_4.7407407407407405,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_contact_2254_1994_3_1221_1080_1_photogallery.jpg\">\n<source media=\"(min-width: 1920px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_512,ar_3.7925925925925927,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_contact_2254_1994_3_1221_1080_1_photogallery.jpg\">\n<source media=\"(min-width: 1440px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_384,ar_2.8444444444444446,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_contact_2254_1994_3_1221_1080_1_photogallery.jpg\">\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_288,ar_2.1333333333333333,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_contact_2254_1994_3_1221_1080_1_photogallery.jpg\">\n<source media=\"(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_240,ar_1.776851851851852,g_auto,dpr_2/s3/2/252329/p1942885_ruisseaux_lepine_contact_2254_1994_3_1221_1080_1_photogallery.jpg 2x\"><source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_240,ar_1.776851851851852,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_contact_2254_1994_3_1221_1080_1_photogallery.jpg\">\n<source media=\"(min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_198,ar_1.776851851851852,g_auto,dpr_2/s3/2/252329/p1942885_ruisseaux_lepine_contact_2254_1994_3_1221_1080_1_photogallery.jpg 2x\"><source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_198,ar_1.776851851851852,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_contact_2254_1994_3_1221_1080_1_photogallery.jpg\">\n<source media=\"(min-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 576px) and (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_768,ar_1,g_auto,dpr_2/s3/2/252329/p1942885_ruisseaux_lepine_contact_2254_1994_3_1221_1080_1_photogallery.jpg 2x\"><source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_768,ar_1,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_contact_2254_1994_3_1221_1080_1_photogallery.jpg\">\n<source media=\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_576,ar_1,g_auto,dpr_2/s3/2/252329/p1942885_ruisseaux_lepine_contact_2254_1994_3_1221_1080_1_photogallery.jpg 2x\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_576,ar_1,g_auto/s3/2/252329/p1942885_ruisseaux_lepine_contact_2254_1994_3_1221_1080_1_photogallery.jpg\" class=\"img-fluid\" alt=\"a river flows through a forest with sunlight filtering through the trees.\" data-loading=\"lazy\">\n</picture>\n\n\n \n </a>\n </div>\n </div>\n <button type=\"button\" class=\"carousel-control-next gallery-next\" data-target=\"#carousel-property-detail-banner\" data-slide=\"next\" aria-label=\"Next Image\" data-selenium-id=\"CarouserlBtnNext\" customlabelreplaced=\"\"></button>\n </div>\n <button type=\"button\" class=\"btn btn-light d-none d-md-block btn-seeAll btn-sm\" customlabelreplaced=\"\">See All 12 Photos</button>\n</section>\n\n \n \n \n\n</div></div></div><div class=\"scroll-section align-items-start px-xl-5 py-md-5 px-md-4 py-4\" customlabelreplaced=\"\"><div class=\"container-fluid\" customlabelreplaced=\"\"><div class=\"row\" customlabelreplaced=\"\"><div class=\"text-center text-md-left col-md-8 col-lg-8\" customlabelreplaced=\"\">\n\n\n\n<div id=\"overview\" class=\"property-overview property-detail-page-section\" customlabelreplaced=\"\">\n\t<h1 class=\"mb-3\" data-selenium-id=\"SID_h1Tag\" customlabelreplaced=\"\">Property Overview</h1>\n\t<div class=\"py-lg-3 pb-3 d-inline-flex flex-column flex-lg-row\" customlabelreplaced=\"\">\n\n\t\t\n\t\t\t<div class=\"d-inline-flex\" customlabelreplaced=\"\">\n\t\t\t\t\t<!-- Bedrooms -->\n\t\t\t\t\t<div class=\"pb-lg-2\" customlabelreplaced=\"\">\n\t\t\t\t\t\t<span class=\"pr-1\" customlabelreplaced=\"\">2–3 Beds</span>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"line-divider\" customlabelreplaced=\"\"></div>\n\t\t\t\t\t<!-- Bathrooms -->\n\t\t\t\t\t<div class=\"pb-lg-2\" customlabelreplaced=\"\">\n\t\t\t\t\t\t<span class=\"pr-1\" customlabelreplaced=\"\">1 Bath</span>\n\t\t\t\t\t</div>\n\t\t\t</div>\n\t\t\n\n\t</div>\n\t\t<!-- Property description -->\n\t\t<div class=\"pr-lg-5 pr-xl-6\" customlabelreplaced=\"\">\n\t\t\t<p customlabelreplaced=\"\">Welcome to Ruisseaux Lépine<br customlabelreplaced=\"\">\n<br customlabelreplaced=\"\">\nNestled in the historic town of Buckingham, Ruisseaux Lépine offers an outstanding natural environment close to rivers, parks, and greenery. The community features a range of options, including single-family homes, townhouses and high-quality rental apartments that bring hotel living at home.<br customlabelreplaced=\"\">\n </p>\n\n<div class=\"d-flex flex-column flex-lg-row justify-content-center justify-content-lg-start align-items-center align-items-md-start\" customlabelreplaced=\"\"><a href=\"https://calendly.com/ruisseaux-lepine-a-community-by-brigil/for-rent-on-site-visit?utm_term=.lepine\" class=\"btn contact-us-btn letter-spacing-1 pl-4 btn-primary\" target=\"_blank\" customlabelreplaced=\"\">Plan a visit<span class=\"fa-solid fa-arrow-right ml-2\" customlabelreplaced=\"\"> </span></a></div>\n<!--- Start Of Promotion -->\n\n<div class=\"brochure-section-detail-page mt-6\" customlabelreplaced=\"\"><img class=\"w-100\" src=\"https://cdngeneralcf.rentcafe.com/dmslivecafe/2/252329/2026-08-07_SiteWeb_BandeauxPromo_AN4.jpg\"></div>\n<!--- End Of Promotion --><!--- Start Of Brochure -->\n\n<div class=\"p-4 align-items-center d-flex flex-column flex-lg-row justify-content-lg-start brochure-section-detail-page\" customlabelreplaced=\"\">\n<div class=\"h-100 align-items-center\" customlabelreplaced=\"\"><img alt=\"\" class=\"h-100 w-100 img-fluid py-4 pr-lg-6\" loading=\"lazy\" src=\"https://cdngeneralcf.rentcafe.com/dmslivecafe/2/252329/Ruisseaux_Lepine-Magazine_Mockup.png\"></div>\n\n<div class=\"w-lg-50\" customlabelreplaced=\"\">\n<div class=\"h2 text-2x text-primary\" customlabelreplaced=\"\">Our Illustrated Project</div>\n\n<p class=\"text-primary\" customlabelreplaced=\"\">Explore the Ruisseaux Lépine universe through our illustrated brochure. In it, you will find the details about the project, the neighbourhood and the amenities, including the different apartment models. Let yourself be persuaded to choose Ruisseaux Lépine as your new home! Click below to check out our brochure.</p>\n\n<div class=\"d-flex flex-column flex-lg-row justify-content-center justify-content-lg-start align-items-center align-items-md-start\" customlabelreplaced=\"\"><a href=\"https://resource.rentcafe.com/image/upload/s3/2/252329/brochure.pdf\" class=\"btn contact-us-btn btn-primary letter-spacing-1 pl-4\" target=\"_blank\" customlabelreplaced=\"\">View the brochure<span class=\"fa-solid fa-arrow-right ml-2\" customlabelreplaced=\"\"> </span></a></div>\n</div>\n</div>\n<!-- End of Brochure -->\n\t\t</div>\n\t<!-- Property overview section ends here -->\n</div>\n</div><div class=\"text-center text-md-left col-md-4 col-lg-4\" customlabelreplaced=\"\">\n <h2 class=\"mb-3\" customlabelreplaced=\"\">Office Hours</h2>\n \n \n <div class=\"ysi-office-hours-widget ysi-office-hours-wrapper\" customlabelreplaced=\"\">\n <div class=\"d-inline-flex\" customlabelreplaced=\"\">\n <div class=\"ysi-office-hours\" data-selenium-id=\"SID_footer_officeHours\" customlabelreplaced=\"\">\n <ul class=\"list-unstyled mb-0\" customlabelreplaced=\"\">\n <li class=\" \" customlabelreplaced=\"\">\n <span class=\"office-hours-day\" data-selenium-id=\"OHMonday\" customlabelreplaced=\"\">Monday: </span>\n <span class=\"office-hours-time\" data-selenium-id=\"OHMondayTime\" customlabelreplaced=\"\">10 AM <span class=\"sr-only\" customlabelreplaced=\"\">to</span> - 7 PM</span>\n</li>\n <li class=\" \" customlabelreplaced=\"\">\n <span class=\"office-hours-day\" data-selenium-id=\"OHTuesday\" customlabelreplaced=\"\">Tuesday: </span>\n <span class=\"office-hours-time\" data-selenium-id=\"OHTuesdayTime\" customlabelreplaced=\"\">10 AM <span class=\"sr-only\" customlabelreplaced=\"\">to</span> - 7 PM</span>\n</li>\n <li class=\" \" customlabelreplaced=\"\">\n <span class=\"office-hours-day\" data-selenium-id=\"OHWednesday\" customlabelreplaced=\"\">Wednesday: </span>\n <span class=\"office-hours-time\" data-selenium-id=\"OHWednesdayTime\" customlabelreplaced=\"\">10 AM <span class=\"sr-only\" customlabelreplaced=\"\">to</span> - 7 PM</span>\n</li>\n <li class=\" \" customlabelreplaced=\"\">\n <span class=\"office-hours-day\" data-selenium-id=\"OHThursday\" customlabelreplaced=\"\">Thursday: </span>\n <span class=\"office-hours-time\" data-selenium-id=\"OHThursdayTime\" customlabelreplaced=\"\">10 AM <span class=\"sr-only\" customlabelreplaced=\"\">to</span> - 7 PM</span>\n</li>\n <li class=\" \" customlabelreplaced=\"\">\n <span class=\"office-hours-day\" data-selenium-id=\"OHFriday\" customlabelreplaced=\"\">Friday: </span>\n <span class=\"office-hours-time\" data-selenium-id=\"OHFridayTime\" customlabelreplaced=\"\">10 AM <span class=\"sr-only\" customlabelreplaced=\"\">to</span> - 5 PM</span>\n</li>\n <li class=\" \" customlabelreplaced=\"\">\n <span class=\"office-hours-day\" data-selenium-id=\"OHSaturday\" customlabelreplaced=\"\">Saturday: </span>\n <span class=\"office-hours-time\" data-selenium-id=\"OHSaturdayTime\" customlabelreplaced=\"\">10 AM <span class=\"sr-only\" customlabelreplaced=\"\">to</span> - 5 PM</span>\n</li>\n <li class=\" \" customlabelreplaced=\"\">\n <span class=\"office-hours-day\" data-selenium-id=\"OHSunday\" customlabelreplaced=\"\">Sunday: </span>\n <span class=\"office-hours-time\" data-selenium-id=\"OHSundayTime\" customlabelreplaced=\"\">10 AM <span class=\"sr-only\" customlabelreplaced=\"\">to</span> - 5 PM</span>\n</li>\n </ul>\n </div>\n </div>\n </div>\n\n\n\n\n\n\n\n\n<div class=\"ysi-button-widget ysi-button-wrapper\" customlabelreplaced=\"\">\n <a data-selenium-id=\"ApplicantLogin\" class=\"btn text-lg track-secureyurl-1975503 track-applicant-login btn-link\" href=\"https://ruisseauxlepine-rentcafewebsite.securecafe.com/onlineleasing/ruisseaux-lepine-i/guestlogin.aspx?dropdownlangid=999&RCStandardCampaignId_1975503=1203100\" style=\"\" target=\"_blank\" rel=\"noopener\" customlabelreplaced=\"\">\n Applicant Login\n <span class=\"sr-only\" customlabelreplaced=\"\">Login Opens in a new tab</span>\n </a>\n</div>\n\n\n\n\n<div class=\"ysi-button-widget ysi-button-wrapper\" customlabelreplaced=\"\">\n <a data-selenium-id=\"ResidentLogin\" class=\"btn text-lg track-secureyurl-1975503 track-resident-login btn-link\" href=\"https://ruisseauxlepine-rentcafewebsite.securecafe.com/residentservices/ruisseaux-lepine-i/userlogin.aspx?dropdownlangid=999&RCStandardCampaignId_1975503=1203100\" style=\"\" target=\"_blank\" rel=\"noopener\" customlabelreplaced=\"\">\n Resident Login\n <span class=\"sr-only\" customlabelreplaced=\"\">Login Opens in a new tab</span>\n </a>\n</div>\n</div></div></div></div><div class=\"scroll-section align-items-start px-xl-5 px-md-4\" customlabelreplaced=\"\"><div class=\"container-fluid\" customlabelreplaced=\"\"><div class=\"row\" customlabelreplaced=\"\"><div class=\"temp-d-none border-top py-md-5 py-4 col-12 offset-0 d-flex justify-content-start align-items-stretch flex-column text-center text-md-left col-lg-12\" customlabelreplaced=\"\">\n\n\n\t<div id=\"floor-plans\" class=\"property-detail-page-section\" customlabelreplaced=\"\">\n\t\t<h2 class=\"mb-3\" customlabelreplaced=\"\">Units & Pricing</h2>\n\t\t\n\nRuisseaux Lépine offers a range of varied units — modern rentals designed to meet everyone's needs, whether you're single or a couple. Each floor plan has been designed to combine comfort, functionality and style: efficient layouts, high-quality materials, and premium finishes—multi-layer engineered or ceramic floors, smooth 9-foot ceilings, walk-in closets in some master bedrooms—for a refined living environment. Browse the different configurations and refine your selection according to your lifestyle and aspirations.\n\n\t\t<!-- Floor plans carousel -->\n\n\t\t\t\n<div role=\"region\" aria-label=\"Floor plans carousel\" id=\"carousel-floor-plans\" data-gallery-type=\"cards\" class=\"photogallery carousel slide p-0 normalized text-dark\" data-ride=\"carousel\" data-interval=\"false\" data-slide-size=\"3\" customlabelreplaced=\"\" style=\"z-index: 1; height: 840px;\">\n\t<div class=\"carousel-inner\" customlabelreplaced=\"\">\n\t\t<button type=\"button\" class=\"carousel-control-prev gallery-prev d-none\" data-target=\"#carousel-floor-plans\" data-slide=\"prev\" aria-label=\"Previous Slide\" data-selenium-id=\"CarouserlBtnPrevious\" customlabelreplaced=\"\">\n\t\t</button>\n\t\t\n\n<!-- Hidden input for layout type (false = optimized) -->\n\n\n\n\n <div id=\"fp-container-6156895\" class=\"fp-container carousel-item active on-deck\" translate-content=\"\" customlabelreplaced=\"\" style=\"\">\n <div class=\"item col\" customlabelreplaced=\"\" style=\"height: 840px;\">\n <div class=\"card text-center h-100 \" customlabelreplaced=\"\">\n <div class=\"card-header bg-transparent border-bottom-0 pt-4 pb-0\" customlabelreplaced=\"\">\n <h2 id=\"fp-header-0\" class=\"card-title h4 font-weight-bold text-capitalize\" customlabelreplaced=\"\">\n 2 Bedrooms\n </h2>\n\n <ul class=\"list-unstyled list-inline mb-2 text-sm\" customlabelreplaced=\"\">\n\n\n <li class=\"list-inline-item mr-2\" customlabelreplaced=\"\">\n <div class=\"d-flex align-items-center\" customlabelreplaced=\"\"><span aria-hidden=\"true\" class=\"nu nu-bed text-dark text-md mr-1\" customlabelreplaced=\"\"></span>2 <span customlabelreplaced=\"\">Bed</span></div>\n </li>\n <li class=\"list-inline-item mr-2\" customlabelreplaced=\"\">\n <div class=\"d-flex align-items-center\" customlabelreplaced=\"\"><span aria-hidden=\"true\" class=\"nu nu-bathroom text-dark text-md mr-1\" customlabelreplaced=\"\"></span>1 <span customlabelreplaced=\"\">Bath</span></div>\n </li>\n <li class=\"list-inline-item w-100\" customlabelreplaced=\"\">\n <div class=\"d-flex align-items-center justify-content-center\" customlabelreplaced=\"\"><span aria-hidden=\"true\" class=\"nu nu-area font-weight-medium text-dark text-md mr-1\" customlabelreplaced=\"\"></span>950-<span class=\"sr-only\" customlabelreplaced=\"\">to</span>1,210 Sq. Ft.</div>\n </li>\n </ul>\n\n\n\n </div>\n <div class=\"card-img fp-thumb px-3 d-flex justify-content-center align-items-center\" customlabelreplaced=\"\">\n <a class=\"modal-button mw-100 mh-100 show-floorplans-image-button btn btn-link p-0\" aria-label=\"2 Bedrooms Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6156895\" data-image-modal=\"modal-body-6156895\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6156895\" data-target=\"#fp-modal\" customlabelreplaced=\"\">\n \t<div class=\"ysi-picture-widget ysi-picture-wrapper \" customlabelreplaced=\"\">\n\t<picture>\n<source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/315elisabeth-chauvin_type_2cc%20%20(2b).png\">\n<source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540,h_260/s3/2/252329/315elisabeth-chauvin_type_2cc%20%20(2b).png\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/315elisabeth-chauvin_type_2cc%20%20(2b).png\" class=\"card-img-top px-1 img-fluid\" alt=\"A floor plan of a house with a kitchen, living room, dining room, and bedrooms.\" width=\"297\" height=\"260\">\n</picture>\n\n\n\n\t</div>\n\n\n </a>\n </div>\n <div class=\"card-body\" customlabelreplaced=\"\">\n <div class=\"p-2 fieldset bg-light border rounded d-flex flex-column align-items-center justify-content-center mb-2\" customlabelreplaced=\"\">\n<p class=\"legend\" customlabelreplaced=\"\"></p>\n\n\n <div class=\"d-flex align-items-center\" customlabelreplaced=\"\">\n <span class=\"font-weight-bold mb-1 text-md\" customlabelreplaced=\"\">\n <span class=\"text-sm text-muted\" customlabelreplaced=\"\">Starting at</span>\n $1,915.00\n <span class=\"text-sm text-muted\" customlabelreplaced=\"\">/Month</span>\n </span>\n\n </div>\n \n\n\n\n\n </div>\n\n <div class=\"row\" customlabelreplaced=\"\">\n <div class=\"btn btn-outline-dark btn-block modal-button w-100\" style=\"visibility:hidden;\" customlabelreplaced=\"\">\n <wbr> </div>\n <div class=\"col-12 my-2 \" customlabelreplaced=\"\">\n <a href=\"https://www.brigil.com/apartments/qc/gatineau/ruisseaux-lepine-i/default#myContactModal\" role=\"button\" class=\"btn btn-primary btn-block btn-block track-dialog dialog-button floorplan-action-button\" data-floorplan-name=\"2 Bedrooms\" data-modal-url=\"/contactus?IsDialog=1&IsforCorpProperty=1&RCPropertyId=1975503\" data-selenium-id=\"floorplan-0-contact-btn\" customlabelreplaced=\"\">\n Contact Us <span class=\"sr-only\" customlabelreplaced=\"\"> for 2 Bedrooms , opens a dialog</span>\n </a>\n </div>\n\n </div>\n\n </div>\n\n </div>\n </div>\n </div>\n <div id=\"fp-container-6156896\" class=\"fp-container carousel-item on-deck\" translate-content=\"\" customlabelreplaced=\"\" style=\"transform: translate3d(100%, 0px, 0px);\">\n <div class=\"item col\" customlabelreplaced=\"\" style=\"height: 840px;\">\n <div class=\"card text-center h-100 \" customlabelreplaced=\"\">\n <div class=\"card-header bg-transparent border-bottom-0 pt-4 pb-0\" customlabelreplaced=\"\">\n <h2 id=\"fp-header-1\" class=\"card-title h4 font-weight-bold text-capitalize\" customlabelreplaced=\"\">\n 3 Bedrooms\n </h2>\n\n <ul class=\"list-unstyled list-inline mb-2 text-sm\" customlabelreplaced=\"\">\n\n\n <li class=\"list-inline-item mr-2\" customlabelreplaced=\"\">\n <div class=\"d-flex align-items-center\" customlabelreplaced=\"\"><span aria-hidden=\"true\" class=\"nu nu-bed text-dark text-md mr-1\" customlabelreplaced=\"\"></span>3 <span customlabelreplaced=\"\">Bed</span></div>\n </li>\n <li class=\"list-inline-item mr-2\" customlabelreplaced=\"\">\n <div class=\"d-flex align-items-center\" customlabelreplaced=\"\"><span aria-hidden=\"true\" class=\"nu nu-bathroom text-dark text-md mr-1\" customlabelreplaced=\"\"></span>1 <span customlabelreplaced=\"\">Bath</span></div>\n </li>\n <li class=\"list-inline-item w-100\" customlabelreplaced=\"\">\n <div class=\"d-flex align-items-center justify-content-center\" customlabelreplaced=\"\"><span aria-hidden=\"true\" class=\"nu nu-area font-weight-medium text-dark text-md mr-1\" customlabelreplaced=\"\"></span>1,029-<span class=\"sr-only\" customlabelreplaced=\"\">to</span>1,217 Sq. Ft.</div>\n </li>\n </ul>\n\n\n\n </div>\n <div class=\"card-img fp-thumb px-3 d-flex justify-content-center align-items-center\" customlabelreplaced=\"\">\n <a class=\"modal-button mw-100 mh-100 show-floorplans-image-button btn btn-link p-0\" aria-label=\"3 Bedrooms Floor plan image, opens a dialog\" aria-controls=\"fp-modal\" data-screen=\"modal-content-6156896\" data-image-modal=\"modal-body-6156896\" data-toggle=\"modal\" data-imagemodal-label=\"fp-modalLabel6156896\" data-target=\"#fp-modal\" customlabelreplaced=\"\">\n \t<div class=\"ysi-picture-widget ysi-picture-wrapper \" customlabelreplaced=\"\">\n\t<picture>\n<source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/285elisabeth-chauvin_type_3cc%20%20(3b).png\">\n<source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540,h_260/s3/2/252329/285elisabeth-chauvin_type_3cc%20%20(3b).png\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/285elisabeth-chauvin_type_3cc%20%20(3b).png\" class=\"card-img-top px-1 img-fluid\" alt=\"A floor plan of a house with a living room, two bedrooms, a kitchen, a dining room, a hallway, and a bathroom.\" width=\"310\" height=\"260\">\n</picture>\n\n\n\n\t</div>\n\n\n </a>\n </div>\n <div class=\"card-body\" customlabelreplaced=\"\">\n <div class=\"p-2 fieldset bg-light border rounded d-flex flex-column align-items-center justify-content-center mb-2\" customlabelreplaced=\"\">\n<p class=\"legend\" customlabelreplaced=\"\"></p>\n\n\n <div class=\"d-flex align-items-center\" customlabelreplaced=\"\">\n <span class=\"font-weight-bold mb-1 text-md\" customlabelreplaced=\"\">\n <span class=\"text-sm text-muted\" customlabelreplaced=\"\">Starting at</span>\n $1,650.00\n <span class=\"text-sm text-muted\" customlabelreplaced=\"\">/Month</span>\n </span>\n\n </div>\n \n\n\n\n\n </div>\n\n <div class=\"row\" customlabelreplaced=\"\">\n <div class=\"btn btn-outline-dark btn-block modal-button w-100\" style=\"visibility:hidden;\" customlabelreplaced=\"\">\n <wbr> </div>\n <div class=\"col-12 my-2\" customlabelreplaced=\"\">\n <a href=\"https://ruisseauxlepine-rentcafewebsite.securecafe.com/onlineleasing/ruisseaux-lepine-i/availableunits.aspx?FloorPlanID=6156896\" class=\"btn btn-primary btn-block btn-block track-apply floorplan-action-button\" name=\"applynow\" data-leasingtype=\"conventional\" data-floorplan-name=\"3 Bedrooms\" data-floorplan-size=\"3\" data-floorplan-sqft=\"1029 -1217\" data-floorplan-price=\"1650\" data-selenium-id=\"floorplan-1-apply-btn\" customlabelreplaced=\"\">\n Availability <span class=\"sr-only\" customlabelreplaced=\"\"> for 3 Bedrooms</span>\n </a>\n </div>\n\n </div>\n\n </div>\n\n </div>\n </div>\n </div>\n \n \n\n\n\t\t<button type=\"button\" class=\"carousel-control-next gallery-next d-none\" data-target=\"#carousel-floor-plans\" data-slide=\"next\" aria-label=\"Next Slide\" data-selenium-id=\"CarouserlBtnNext\" customlabelreplaced=\"\"></button>\n\n\t</div>\n</div>\n\n\t\t\n\t\t\n\n\n\n\t</div>\n\n</div></div></div></div><div class=\"scroll-section align-items-start px-xl-5 px-md-3\" customlabelreplaced=\"\"><div class=\"container-fluid\" customlabelreplaced=\"\"><div class=\"row\" customlabelreplaced=\"\"><div class=\"border-top justify-content-start align-items-stretch flex-column d-flex text-center text-md-left py-4 py-md-5 col-12 col-lg-12\" customlabelreplaced=\"\">\n</div></div></div></div><div class=\"scroll-section align-items-start px-xl-5 px-md-3\" customlabelreplaced=\"\"><div class=\"container-fluid\" customlabelreplaced=\"\"><div class=\"row\" customlabelreplaced=\"\"><div class=\"border-top justify-content-start align-items-stretch flex-column d-flex text-center text-md-left py-4 py-md-5 col-12 col-lg-12\" customlabelreplaced=\"\">\n\n\n<div id=\"neighborhood\" class=\"property-detail-page-section\" customlabelreplaced=\"\">\n\t<h2 class=\"mb-3\" customlabelreplaced=\"\">Neighbourhood</h2>\n\t\n\n\n\n\n\t<!-- Map section -->\n\t<div class=\"page-content-map justify-content-start align-items-stretch flex-column d-flex pt-4 pb-3\" customlabelreplaced=\"\">\n\t\t<div class=\"row justify-content-between mb-3\" id=\"DirectionControls\" customlabelreplaced=\"\">\n\t\t\t<!-- Get directions (hidden on mobile) -->\n\t\t\t<section id=\"divgoogleGetDirections\" aria-label=\"Get Directions\" class=\"d-block col-12 col-md-7 col-lg-6\">\n\n\t\t\t\t<div class=\"input-group form-group floating-label\" customlabelreplaced=\"\">\n\t\t\t\t\t<label for=\"AddressFrom\" customlabelreplaced=\"\">Enter your address</label>\n\t\t\t\t\t<input id=\"AddressFrom\" autocomplete=\"street-address\" name=\"AddressFrom\" type=\"text\" class=\"form-control pr-5\" value=\"\" customlabelreplaced=\"\">\n\t\t\t\t\t<div class=\"input-group-append\" customlabelreplaced=\"\">\n\t\t\t\t\t\t<a aria-label=\"Locate Me\" role=\"button\" id=\"LocateMe\" class=\"target btn btn-light border\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t<svg width=\"16px\" height=\"16px\" fill=\"currentColor\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M461.9 0c-5.73 0-11.59 1.1-17.39 3.52L28.74 195.41c-47.97 22.39-31.98 92.75 19.19 92.75h175.91v175.91c0 30.01 24.21 47.93 48.74 47.93 17.3 0 34.75-8.9 44.01-28.74l191.9-415.78C522.06 34.89 494.14 0 461.9 0zm17.55 54.08L287.6 469.74c-3.18 6.82-8.24 10.28-15.03 10.28-5.8 0-16.76-3.33-16.76-15.94v-207.9H47.93c-11.45 0-14.64-8.83-15.49-12.63-1.1-4.93-1.27-13.98 9.7-19.1L456.82 33.04c1.71-.71 3.37-1.05 5.09-1.05 5.42 0 11.49 3.65 15.11 9.08 2.19 3.29 4.32 8.41 2.43 13.01z\"></path></svg>\n\t\t\t\t\t\t</a>\n\t\t\t\t\t\t<button class=\"btn btn-primary px-3\" name=\"GetDirections\" id=\"GetDirections\" aria-label=\"Get Directions\" type=\"button\" customlabelreplaced=\"\"><svg class=\"fa-rotate-270\" width=\"18px\" height=\"18px\" fill=\"currentColor\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 320 512\"><path d=\"M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z\"></path></svg></button>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t</section>\n\t\t\t<!-- Walkscore -->\n\t\t\t<div id=\"MapBtnHolder\" class=\"col-12 col-md-5 col-lg-6 text-center text-md-right my-3 my-md-0\" customlabelreplaced=\"\">\n\t\t\t\t\t<div id=\"walkscore-div\" class=\"btn-group\" customlabelreplaced=\"\">\n\t\t\t\t\t\t <a target=\"_blank\" href=\"https://www.walkscore.com/score/460-Boul-Gr%C3%A9ber-Bureau-222-Gatineau-QC-J8T-6C7/lat=0/lng=0/?utm_source=rentcafe.com&utm_medium=ws_api&utm_campaign=ws_api\" customlabelreplaced=\"\">\n <img src=\"https://cdn.walk.sc/images/api-logo.png\" alt=\"Walk score\">\n <span class=\"walkscore-scoretext\" data-selenium-id=\"WalkScoreText\" customlabelreplaced=\"\">4</span>\n <span class=\"sr-only\" customlabelreplaced=\"\"> opens in new tab</span>\n </a>\n <span id=\"ws_info\" customlabelreplaced=\"\">\n <a href=\"https://www.redfin.com/how-walk-score-works\" target=\"_blank\" class=\"ml-1 px-1 d-inline-block\" customlabelreplaced=\"\">\n <img src=\"https://cdn.walk.sc/images/api-more-info.gif\" width=\"16\" height=\"16\" alt=\"More information about Walk Score.\">\n <span class=\"sr-only\" customlabelreplaced=\"\"> opens in new tab</span>\n </a>\n </span>\n\n\n\t\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t\t<!-- Bird's eye view, street view -->\n\t\t<div id=\"map-view\" class=\"text-center text-md-right mb-2 right-0 z-index-2\" customlabelreplaced=\"\">\n\t\t\t\t<button id=\"birdsEyeModalButton\" class=\"btn btn-light btn-sm\" type=\"button\" data-selenium-id=\"mapdirBirdsView\" data-toggle=\"modal\" data-target=\"#myViewModal\" customlabelreplaced=\"\">Bird's Eye View <span class=\"sr-only\" customlabelreplaced=\"\"> opens in a dialog</span></button>\n\t\t\t\t<button id=\"streetViewModalButton\" class=\"btn btn-light btn-sm\" type=\"button\" data-selenium-id=\"mapdirStreetView\" data-toggle=\"modal\" data-target=\"#myViewModal\" customlabelreplaced=\"\">Street View <span class=\"sr-only\" customlabelreplaced=\"\"> opens in a dialog</span></button>\n\t\t</div>\n\n\n\n\n\n\n\n\t\n\n\n\n<div class=\"top-map-info mb-4 d-flex d-md-none justify-content-between align-items-center\" customlabelreplaced=\"\">\n\t<!-- Dropdown for Pins -->\n\t<div class=\"form-group col-12 col-lg-8 pr-0 pl-0 mb-0 mt-2\" customlabelreplaced=\"\">\n\t\t<div class=\"row\" customlabelreplaced=\"\">\n\t\t\t<div class=\"col-12 col-md-6\" customlabelreplaced=\"\">\n\t\t\t\t<div class=\"floating-label-group\" customlabelreplaced=\"\">\n\t\t\t\t<select id=\"pins-select\" class=\"custom-select\">\n\t\t\t\t\t<option selected=\"\" value=\"0\" customlabelreplaced=\"\">All Categories</option>\n\t\t\t\t\t\t\t\t<option value=\"Entertainment\" customlabelreplaced=\"\">Entertainment</option>\n\t\t\t\t\t\t\t\t<option value=\"Food\" customlabelreplaced=\"\">Food</option>\n\t\t\t\t\t\t\t\t<option value=\"ShopsAndService\" customlabelreplaced=\"\">Shops And Service</option>\n\t\t\t\t\t\t\t\t<option value=\"Recreation\" customlabelreplaced=\"\">Recreation</option>\n\t\t\t\t\t\t\t\t<option value=\"Banks\" customlabelreplaced=\"\">Banks</option>\n\t\t\t\t\t\t\t\t<option value=\"Schools\" customlabelreplaced=\"\">Schools</option>\n\t\t\t\t\t\t\t\t<option value=\"Groceries\" customlabelreplaced=\"\">Groceries</option>\n\t\t\t\t\t\t\t\t<option value=\"Parks\" customlabelreplaced=\"\">Parks</option>\n\t\t\t\t\t\t\t\t<option value=\"Health\" customlabelreplaced=\"\">Health</option>\n\t\t\t\t\t\t\t\t<option value=\"ParliamentofCanada\" customlabelreplaced=\"\">Parliament of Canada</option>\n\t\t\t\t</select>\n\t\t\t\t\t<label for=\"pins-select\" class=\"floating-label\" customlabelreplaced=\"\">All Categories</label>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t<div class=\"col-12 col-md-6\" customlabelreplaced=\"\">\n\t\t\t\t<div class=\"pt-2 pl-2\" customlabelreplaced=\"\">\n\t\t\t\t\t\n\t\t\t\t\t<p id=\"resultcount\" class=\"pt-1\" aria-live=\"polite\" customlabelreplaced=\"\">40 results found.</p>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n</div>\n\n\t<div id=\"infolegend-sm\" class=\"infolegend d-none d-md-block\" customlabelreplaced=\"\">\n\t\t<ul customlabelreplaced=\"\">\n\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t<button data-value=\"Entertainment\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t<div class=\"svg-circle\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 19 19\" height=\"19\" width=\"19\">\n\t\t\t<title>theatre</title>\n\t\t\t<rect fill=\"none\" x=\"0\" y=\"0\" width=\"19\" height=\"19\"></rect>\n\t\t\t<path fill=\"#000\" transform=\"translate(2 2)\" d=\"M2,1c0,0-1,0-1,1v5.1582C1,8.8885,1.354,11,4.5,11H5V8L2.5,9c0,0,0-2.5,2.5-2.5V5\n \tc0-0.7078,0.0868-1.3209,0.5-1.7754C5.8815,2.805,6.5046,1.9674,8.1562,2.7539L9,3.3027V2c0,0,0-1-1-1C7.2922,1,6.0224,2,5,2\n \tS2.7865,1,2,1z M3,3c0.5523,0,1,0.4477,1,1S3.5523,5,3,5S2,4.5523,2,4S2.4477,3,3,3z M7,4c0,0-1,0-1,1v5c0,2,1,4,4,4s4-2,4-4V5\n \tc0-1-1-1-1-1c-0.7078,0-1.9776,1-3,1S7.7865,4,7,4z M8,6c0.5523,0,1,0.4477,1,1S8.5523,8,8,8S7,7.5523,7,7S7.4477,6,8,6z M12,6\n \tc0.5523,0,1,0.4477,1,1s-0.4477,1-1,1s-1-0.4477-1-1S11.4477,6,12,6z M7.5,10H10h2.5c0,0,0,2.5-2.5,2.5S7.5,10,7.5,10z\"></path>\n\t\t</svg>\n\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\tEntertainment<span customlabelreplaced=\"\">2</span>\n\t\t\t\t\t\t\t\t</button>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t<button data-value=\"Food\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t<div class=\"svg-circle\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 19 19\" height=\"19\" width=\"19\">\n\t\t\t<title>restaurant</title>\n\t\t\t<rect fill=\"none\" x=\"0\" y=\"0\" width=\"19\" height=\"19\"></rect>\n\t\t\t<path fill=\"#000\" transform=\"translate(2 2)\" d=\"M3.5,0l-1,5.5c-0.1464,0.805,1.7815,1.181,1.75,2L4,14c-0.0384,0.9993,1,1,1,1s1.0384-0.0007,1-1L5.75,7.5\n \tc-0.0314-0.8176,1.7334-1.1808,1.75-2L6.5,0H6l0.25,4L5.5,4.5L5.25,0h-0.5L4.5,4.5L3.75,4L4,0H3.5z M12,0\n \tc-0.7364,0-1.9642,0.6549-2.4551,1.6367C9.1358,2.3731,9,4.0182,9,5v2.5c0,0.8182,1.0909,1,1.5,1L10,14c-0.0905,0.9959,1,1,1,1\n \ts1,0,1-1V0z\"></path>\n\t\t</svg>\n\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\tFood<span customlabelreplaced=\"\">9</span>\n\t\t\t\t\t\t\t\t</button>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t<button data-value=\"ShopsAndService\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t<div class=\"svg-circle\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 19 19\" height=\"19\" width=\"19\">\n\t\t\t<title>clothing-store</title>\n\t\t\t<rect fill=\"none\" x=\"0\" y=\"0\" width=\"19\" height=\"19\"></rect>\n\t\t\t<path fill=\"#000\" transform=\"translate(2 2)\" d=\"\n \tM3.5,1L0,4v3h2.9L3,14h9V7h3V4l-3.5-3H10L7.5,5L5,1H3.5z\"></path>\n\t\t</svg>\n\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\tShops And Service<span customlabelreplaced=\"\">1</span>\n\t\t\t\t\t\t\t\t</button>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t<button data-value=\"Recreation\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t<div class=\"svg-circle\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 19 19\" height=\"19\" width=\"19\">\n\t\t\t<title>bicycle</title>\n\t\t\t<rect fill=\"none\" x=\"0\" y=\"0\" width=\"19\" height=\"19\"></rect>\n\t\t\t<path fill=\"#000\" transform=\"translate(2 2)\" d=\"\n \tM7.5,2c-0.6761-0.01-0.6761,1.0096,0,1H9v1.2656l-2.8027,2.334L5.2226,4H5.5c0.6761,0.01,0.6761-1.0096,0-1h-2\n \tc-0.6761-0.01-0.6761,1.0096,0,1h0.6523L5.043,6.375C4.5752,6.1424,4.0559,6,3.5,6C1.5729,6,0,7.5729,0,9.5S1.5729,13,3.5,13\n \tS7,11.4271,7,9.5c0-0.6699-0.2003-1.2911-0.5293-1.8242L9.291,5.3262l0.4629,1.1602C8.7114,7.0937,8,8.2112,8,9.5\n \tc0,1.9271,1.5729,3.5,3.5,3.5S15,11.4271,15,9.5S13.4271,6,11.5,6c-0.2831,0-0.5544,0.0434-0.8184,0.1074L10,4.4023V2.5\n \tc0-0.2761-0.2239-0.5-0.5-0.5H7.5z M3.5,7c0.5923,0,1.1276,0.2119,1.5547,0.5527l-1.875,1.5625\n \tc-0.5109,0.4273,0.1278,1.1945,0.6406,0.7695l1.875-1.5625C5.8835,8.674,6,9.0711,6,9.5C6,10.8866,4.8866,12,3.5,12S1,10.8866,1,9.5\n \tS2.1133,7,3.5,7L3.5,7z M11.5,7C12.8866,7,14,8.1134,14,9.5S12.8866,12,11.5,12S9,10.8866,9,9.5c0-0.877,0.4468-1.6421,1.125-2.0879\n \tl0.9102,2.2734c0.246,0.6231,1.1804,0.2501,0.9297-0.3711l-0.9082-2.2695C11.2009,7.0193,11.3481,7,11.5,7L11.5,7z\"></path>\n\t\t</svg>\n\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\tRecreation<span customlabelreplaced=\"\">4</span>\n\t\t\t\t\t\t\t\t</button>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t<button data-value=\"Banks\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t<div class=\"svg-circle\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 19 19\" height=\"19\" width=\"19\">\n\t\t\t<title>bank</title>\n\t\t\t<rect fill=\"none\" x=\"0\" y=\"0\" width=\"19\" height=\"19\"></rect>\n\t\t\t<path fill=\"#000\" transform=\"translate(2 2)\" d=\"M1,3C0.446,3,0,3.446,0,4v7c0,0.554,0.446,1,1,1h13c0.554,0,1-0.446,1-1V4c0-0.554-0.446-1-1-1H1z M1,4h1.5\n \tC2.7761,4,3,4.2239,3,4.5S2.7761,5,2.5,5S2,4.7761,2,4.5L1.5,5C1.7761,5,2,5.2239,2,5.5S1.7761,6,1.5,6S1,5.7761,1,5.5V4z M7.5,4\n \tC8.8807,4,10,5.567,10,7.5l0,0C10,9.433,8.8807,11,7.5,11S5,9.433,5,7.5S6.1193,4,7.5,4z M12.5,4H14v1.5C14,5.7761,13.7761,6,13.5,6\n \tS13,5.7761,13,5.5S13.2239,5,13.5,5L13,4.5C13,4.7761,12.7761,5,12.5,5S12,4.7761,12,4.5S12.2239,4,12.5,4z M7.5,5.5\n \tc-0.323,0-0.5336,0.1088-0.6816,0.25h1.3633C8.0336,5.6088,7.823,5.5,7.5,5.5z M6.625,6C6.5795,6.091,6.5633,6.1711,6.5449,6.25\n \th1.9102C8.4367,6.1711,8.4205,6.091,8.375,6H6.625z M6.5,6.5v0.25h2V6.5H6.5z M6.5,7v0.25h2V7H6.5z M6.5,7.5v0.25h2V7.5H6.5z M6.5,8\n \tL6.25,8.25h2L8.5,8H6.5z M6,8.5c0,0,0.0353,0.1024,0.1016,0.25H8.375L8,8.5H6z M1.5,9C1.7761,9,2,9.2239,2,9.5S1.7761,10,1.5,10\n \tL2,10.5C2,10.2239,2.2239,10,2.5,10S3,10.2239,3,10.5S2.7761,11,2.5,11H1V9.5C1,9.2239,1.2239,9,1.5,9z M6.2383,9\n \tC6.2842,9.0856,6.3144,9.159,6.375,9.25h2.2676C8.7092,9.1121,8.75,9,8.75,9H6.2383z M13.5,9C13.7761,9,14,9.2239,14,9.5V11h-1.5\n \tc-0.2761,0-0.5-0.2239-0.5-0.5s0.2239-0.5,0.5-0.5s0.5,0.2239,0.5,0.5l0.5-0.5C13.2239,10,13,9.7761,13,9.5S13.2239,9,13.5,9z\n \t M6.5664,9.5c0.0786,0.0912,0.1647,0.1763,0.2598,0.25h1.4199C8.3462,9.6727,8.4338,9.5883,8.5,9.5H6.5664z\"></path>\n\t\t</svg>\n\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\tBanks<span customlabelreplaced=\"\">1</span>\n\t\t\t\t\t\t\t\t</button>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t<button data-value=\"Schools\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t<div class=\"svg-circle\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 19 19\" height=\"19\" width=\"19\"><title>school</title><rect fill=\"none\" x=\"0\" y=\"0\" width=\"19\" height=\"19\"></rect><path fill=\"#000\" transform=\"translate(2 2)\" d=\"M11,13v-1h2v-1H9.5v-1H13V9h-2V8h2V7h-2V6h2V5H9.5V4H13V3h-2V2h2V1H8v13h5v-1H11z M6,11H2V1h4V11z M6,12l-2,2l-2-2H6z\"></path></svg>\n\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\tSchools<span customlabelreplaced=\"\">7</span>\n\t\t\t\t\t\t\t\t</button>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t<button data-value=\"Groceries\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t<div class=\"svg-circle\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 19 19\" height=\"19\" width=\"19\"><title>grocery</title><rect fill=\"none\" x=\"0\" y=\"0\" width=\"19\" height=\"19\"></rect><path fill=\"#000\" transform=\"translate(2 2)\" d=\"M 13.199219 1.5 C 13.199219 1.5 11.808806 1.4588 11.253906 2 C 10.720406 2.5202 10.5 2.9177 10.5 4 L 1.1992188 4 L 2.59375 8.8144531 C 2.59725 8.8217531 2.6036219 8.8287375 2.6074219 8.8359375 C 2.8418219 9.4932375 3.4545469 9.9666406 4.1855469 9.9941406 C 4.1885469 9.9954406 4.1992187 10 4.1992188 10 L 10.699219 10 L 10.699219 10.199219 C 10.699219 10.199219 10.7 10.500391 10.5 10.900391 C 10.3 11.300391 10.200391 11.5 9.4003906 11.5 L 2.9003906 11.5 C 1.9003906 11.5 1.9003906 13 2.9003906 13 L 4.0996094 13 L 4.1992188 13 L 9.0996094 13 L 9.1992188 13 L 9.3007812 13 C 10.500781 13 11.399219 12.299609 11.699219 11.599609 C 11.999219 10.899609 12 10.300781 12 10.300781 L 12 10 L 12 4 C 12 3.4764 12.228619 3 12.699219 3 L 13.25 3 C 13.6642 3 14 2.6642 14 2.25 C 14 1.8358 13.6642 1.5 13.25 1.5 L 13.199219 1.5 z M 9.1992188 13 C 8.5992188 13 8.1992188 13.4 8.1992188 14 C 8.1992188 14.6 8.5992187 15 9.1992188 15 C 9.7992187 15 10.199219 14.6 10.199219 14 C 10.199219 13.4 9.7992188 13 9.1992188 13 z M 4.1992188 13 C 3.5992188 13 3.1992188 13.4 3.1992188 14 C 3.1992188 14.6 3.5992187 15 4.1992188 15 C 4.7992188 15 5.1992188 14.6 5.1992188 14 C 5.1992188 13.4 4.7992187 13 4.1992188 13 z \"></path></svg>\n\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\tGroceries<span customlabelreplaced=\"\">4</span>\n\t\t\t\t\t\t\t\t</button>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t<button data-value=\"Parks\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t<div class=\"svg-circle\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 19 19\" height=\"19\" width=\"19\">\n\t\t\t<title>Park</title>\n\t\t\t<rect fill=\"none\" x=\"0\" y=\"0\" width=\"19\" height=\"19\"></rect>\n\t\t\t<path fill=\"#000\" transform=\"translate(2 2)\" d=\"M14,5.75c0.0113-0.6863-0.3798-1.3159-1-1.61C12.9475,3.4906,12.4014,2.9926,11.75,3\n \tc-0.0988,0.0079-0.1962,0.0281-0.29,0.06c-0.0607-0.66-0.6449-1.1458-1.3048-1.0851C9.8965,1.9987,9.6526,2.1058,9.46,2.28l0,0\n \tc0-0.6904-0.5596-1.25-1.25-1.25S6.96,1.5896,6.96,2.28C6.96,2.28,7,2.3,7,2.33C6.4886,1.8913,5.7184,1.9503,5.2797,2.4618\n \tC5.1316,2.6345,5.0347,2.8451,5,3.07C4.8417,3.0195,4.6761,2.9959,4.51,3C3.6816,2.9931,3.0044,3.659,2.9975,4.4874\n \tC2.9958,4.6872,3.0341,4.8852,3.11,5.07C2.3175,5.2915,1.8546,6.1136,2.0761,6.9061C2.2163,7.4078,2.6083,7.7998,3.11,7.94\n \tc0.2533,0.7829,1.0934,1.2123,1.8763,0.959C5.5216,8.7258,5.9137,8.2659,6,7.71C6.183,7.8691,6.4093,7.9701,6.65,8v5L5,14h5l-1.6-1\n \tv-2c0.7381-0.8915,1.6915-1.5799,2.77-2c0.8012,0.1879,1.603-0.3092,1.7909-1.1103C12.9893,7.7686,13.0025,7.6444,13,7.52\n \tc0.0029-0.0533,0.0029-0.1067,0-0.16C13.6202,7.0659,14.0113,6.4363,14,5.75z M8.4,10.26V6.82C8.6703,7.3007,9.1785,7.5987,9.73,7.6\n \th0.28c0.0156,0.4391,0.2242,0.849,0.57,1.12C9.7643,9.094,9.0251,9.6162,8.4,10.26z\"></path>\n\t\t</svg>\n\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\tParks<span customlabelreplaced=\"\">4</span>\n\t\t\t\t\t\t\t\t</button>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t<button data-value=\"Health\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t<div class=\"svg-circle\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 19 19\" height=\"19\" width=\"19\">\n\t\t\t<title>heart</title>\n\t\t\t<rect fill=\"none\" x=\"0\" y=\"0\" width=\"19\" height=\"19\"></rect>\n\t\t\t<path fill=\"#000\" transform=\"translate(2 2)\" d=\"M13.91,6.75c-1.17,2.25-4.3,5.31-6.07,6.94c-0.1903,0.1718-0.4797,0.1718-0.67,0C5.39,12.06,2.26,9,1.09,6.75\n \tC-1.48,1.8,5-1.5,7.5,3.45C10-1.5,16.48,1.8,13.91,6.75z\"></path>\n\t\t</svg>\n\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\tHealth<span customlabelreplaced=\"\">7</span>\n\t\t\t\t\t\t\t\t</button>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t<button data-value=\"ParliamentofCanada\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t<div class=\"svg-circle\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 19 19\" height=\"19\" width=\"19\">\n\t\t\t<title>embassy</title>\n\t\t\t<rect fill=\"none\" x=\"0\" y=\"0\" width=\"19\" height=\"19\"></rect>\n\t\t\t<path fill=\"#000\" transform=\"translate(2 2)\" d=\"M6.65,2C5.43,2,4.48,3.38,4.11,3.82C4.0365,3.9102,3.9975,4.0237,4,4.14v4.4C3.9884,8.7827,4.1758,8.9889,4.4185,9.0005\n \tC4.528,9.0057,4.6355,8.9699,4.72,8.9c0.4665-0.6264,1.1589-1.0461,1.93-1.17C8.06,7.73,8.6,9,10.07,9\n \tc0.9948-0.0976,1.9415-0.4756,2.73-1.09c0.1272-0.0934,0.2016-0.2422,0.2-0.4V2.45c0.0275-0.2414-0.1459-0.4595-0.3874-0.487\n \tC12.5332,1.954,12.4527,1.9668,12.38,2c-0.6813,0.5212-1.4706,0.8834-2.31,1.06C8.6,3.08,8.12,2,6.65,2z M2.5,3\n \tc-0.5523,0-1-0.4477-1-1s0.4477-1,1-1s1,0.4477,1,1S3.0523,3,2.5,3z M3,4v9.48c0,0.2761-0.2239,0.5-0.5,0.5S2,13.7561,2,13.48V4\n \tc0-0.2761,0.2239-0.5,0.5-0.5S3,3.7239,3,4z\"></path>\n\t\t</svg>\n\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\tParliament of Canada<span customlabelreplaced=\"\">1</span>\n\t\t\t\t\t\t\t\t</button>\n\t\t\t\t\t\t\t</li>\n\t\t\t\n\n\t\t</ul>\n\t</div>\n\n<!-- Map container -->\n<div id=\"propertyneighborhoodmap\" class=\"\" style=\"flex: 1 1 100%; min-height: 480px; position: relative; overflow: hidden;\" customlabelreplaced=\"\"><div style=\"height: 100%; width: 100%; position: absolute; top: 0px; left: 0px; background-color: rgb(229, 227, 223);\"><div><button draggable=\"false\" aria-label=\"Keyboard shortcuts\" title=\"Keyboard shortcuts\" type=\"button\" style=\"background: none transparent; display: block; border-width: medium; border-style: none; border-color: currentcolor; border-image: none; margin: 0px; padding: 0px; text-transform: none; appearance: none; position: absolute; cursor: pointer; user-select: none; z-index: 1000002; outline-offset: 3px; right: 0px; bottom: 0px; transform: translateX(100%);\"></button></div><div tabindex=\"0\" aria-label=\"Map\" aria-roledescription=\"map\" role=\"region\" aria-describedby=\"F33642C6-9758-4677-ACA0-9ADB27643830\" style=\"position: absolute; height: 100%; width: 100%; padding: 0px; border-width: 0px; margin: 0px; left: 0px; top: 0px;\"><div id=\"F33642C6-9758-4677-ACA0-9ADB27643830\" style=\"display: none;\"><div class=\"LGLeeN-keyboard-shortcuts-view\"><table data-hdr=\"\"><thead><tr><th scope=\"col\" style=\"position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0px, 0px, 0px, 0px); white-space: nowrap; border: 0px; padding: 0px; margin: -1px;\">Key</th><th scope=\"col\" style=\"position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0px, 0px, 0px, 0px); white-space: nowrap; border: 0px; padding: 0px; margin: -1px;\">Action</th></tr></thead><tbody><tr><td><kbd aria-label=\"Left arrow\">←</kbd></td><td aria-label=\"Move left.\">Move left</td></tr><tr><td><kbd aria-label=\"Right arrow\">→</kbd></td><td aria-label=\"Move right.\">Move right</td></tr><tr><td><kbd aria-label=\"Up arrow\">↑</kbd></td><td aria-label=\"Move up.\">Move up</td></tr><tr><td><kbd aria-label=\"Down arrow\">↓</kbd></td><td aria-label=\"Move down.\">Move down</td></tr><tr><td><kbd>+</kbd></td><td aria-label=\"Zoom in.\">Zoom in</td></tr><tr><td><kbd>-</kbd></td><td aria-label=\"Zoom out.\">Zoom out</td></tr><tr><td><kbd>Home</kbd></td><td aria-label=\"Jump left by 75%.\">Jump left by 75%</td></tr><tr><td><kbd>End</kbd></td><td aria-label=\"Jump right by 75%.\">Jump right by 75%</td></tr><tr><td><kbd>Page Up</kbd></td><td aria-label=\"Jump up by 75%.\">Jump up by 75%</td></tr><tr><td><kbd>Page Down</kbd></td><td aria-label=\"Jump down by 75%.\">Jump down by 75%</td></tr></tbody></table></div></div></div><div class=\"gm-style\" style=\"position: absolute; z-index: 0; left: 0px; top: 0px; height: 100%; width: 100%; padding: 0px; border-width: 0px; margin: 0px;\"><div style=\"position: absolute; z-index: 0; left: 0px; top: 0px; height: 100%; width: 100%; padding: 0px; border-width: 0px; margin: 0px; cursor: url("https://maps.gstatic.com/mapfiles/openhand_8_8.cur"), default; touch-action: pan-x pan-y;\"><div style=\"z-index: 1; position: absolute; left: 50%; top: 50%; width: 100%; will-change: transform; transform: translate(0px, 0px);\"><div style=\"position: absolute; left: 0px; top: 0px; z-index: 100; width: 100%;\"><div style=\"position: absolute; left: 0px; top: 0px; z-index: 0;\"><div style=\"position: absolute; z-index: 990; transform: matrix(1, 0, 0, 1, -139, -7);\"><div style=\"position: absolute; left: 0px; top: 0px; width: 256px; height: 256px;\"><div style=\"width: 256px; height: 256px;\"></div></div><div style=\"position: absolute; left: -256px; top: 0px; width: 256px; height: 256px;\"><div style=\"width: 256px; height: 256px;\"></div></div><div style=\"position: absolute; left: -256px; top: -256px; width: 256px; height: 256px;\"><div style=\"width: 256px; height: 256px;\"></div></div><div style=\"position: absolute; left: 0px; top: -256px; width: 256px; height: 256px;\"><div style=\"width: 256px; height: 256px;\"></div></div><div style=\"position: absolute; left: 256px; top: -256px; width: 256px; height: 256px;\"><div style=\"width: 256px; height: 256px;\"></div></div><div style=\"position: absolute; left: 256px; top: 0px; width: 256px; height: 256px;\"><div style=\"width: 256px; height: 256px;\"></div></div><div style=\"position: absolute; left: -512px; top: 0px; width: 256px; height: 256px;\"><div style=\"width: 256px; height: 256px;\"></div></div><div style=\"position: absolute; left: -512px; top: -256px; width: 256px; height: 256px;\"><div style=\"width: 256px; height: 256px;\"></div></div><div style=\"position: absolute; left: 512px; top: -256px; width: 256px; height: 256px;\"><div style=\"width: 256px; height: 256px;\"></div></div><div style=\"position: absolute; left: 512px; top: 0px; width: 256px; height: 256px;\"><div style=\"width: 256px; height: 256px;\"></div></div><div style=\"position: absolute; left: -768px; top: 0px; width: 256px; height: 256px;\"><div style=\"width: 256px; height: 256px;\"></div></div><div style=\"position: absolute; left: -768px; top: -256px; width: 256px; height: 256px;\"><div style=\"width: 256px; height: 256px;\"></div></div><div style=\"position: absolute; left: 768px; top: -256px; width: 256px; height: 256px;\"><div style=\"width: 256px; height: 256px;\"></div></div><div style=\"position: absolute; left: 768px; top: 0px; width: 256px; height: 256px;\"><div style=\"width: 256px; height: 256px;\"></div></div><div style=\"position: absolute; left: -1024px; top: 0px; width: 256px; height: 256px;\"><div style=\"width: 256px; height: 256px;\"></div></div><div style=\"position: absolute; left: -1024px; top: -256px; width: 256px; height: 256px;\"><div style=\"width: 256px; height: 256px;\"></div></div><div style=\"position: absolute; left: 1024px; top: -256px; width: 256px; height: 256px;\"><div style=\"width: 256px; height: 256px;\"></div></div><div style=\"position: absolute; left: 1024px; top: 0px; width: 256px; height: 256px;\"><div style=\"width: 256px; height: 256px;\"></div></div></div></div></div><div style=\"position: absolute; left: 0px; top: 0px; z-index: 101; width: 100%;\"></div><div style=\"position: absolute; left: 0px; top: 0px; z-index: 102; width: 100%;\"></div><div style=\"position: absolute; left: 0px; top: 0px; z-index: 103; width: 100%;\"><div style=\"position: absolute; left: 0px; top: 0px; z-index: -1;\"><div style=\"position: absolute; z-index: 990; transform: matrix(1, 0, 0, 1, -139, -7);\"><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: 0px; top: 0px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: -256px; top: 0px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: -256px; top: -256px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: 0px; top: -256px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: 256px; top: -256px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: 256px; top: 0px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: -512px; top: 0px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: -512px; top: -256px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: 512px; top: -256px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: 512px; top: 0px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: -768px; top: 0px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: -768px; top: -256px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: 768px; top: -256px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: 768px; top: 0px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: -1024px; top: 0px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: -1024px; top: -256px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: 1024px; top: -256px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: 1024px; top: 0px;\"></div></div></div><div style=\"width: 26px; height: 37px; overflow: hidden; position: absolute; left: -13px; top: -37px; z-index: 0;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/api-3/images/spotlight-poi3.png\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; width: 26px; height: 37px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -239px; top: 113px; z-index: 158;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-embassy+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -30px; top: -58px; z-index: -13;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-bicycle+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -34px; top: -13px; z-index: 32;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-school+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -38px; top: -42px; z-index: 3;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-heart+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -40px; top: -37px; z-index: 8;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-restaurant+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -31px; top: -39px; z-index: 6;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-park+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -37px; top: -24px; z-index: 21;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-restaurant+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -43px; top: -27px; z-index: 18;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-bicycle+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -48px; top: -20px; z-index: 25;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-restaurant+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -23px; top: -56px; z-index: -11;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-theatre+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -34px; top: -58px; z-index: -13;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-restaurant+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -47px; top: -24px; z-index: 21;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-restaurant+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -36px; top: -26px; z-index: 19;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-restaurant+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -37px; top: -14px; z-index: 31;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-restaurant+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -33px; top: -55px; z-index: -10;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-bank+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -24px; top: -57px; z-index: -12;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-heart+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -32px; top: -52px; z-index: -7;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-heart+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -32px; top: -52px; z-index: -7;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-heart+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -30px; top: -57px; z-index: -12;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-heart+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -30px; top: -50px; z-index: -5;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-heart+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -27px; top: -13px; z-index: 32;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-restaurant+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -36px; top: -12px; z-index: 33;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-restaurant+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -35px; top: -59px; z-index: -14;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-clothing-store+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -30px; top: -48px; z-index: -3;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-heart+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -34px; top: -57px; z-index: -12;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-grocery+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -46px; top: -23px; z-index: 22;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-grocery+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -28px; top: -43px; z-index: 2;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-grocery+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -22px; top: -43px; z-index: 2;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-grocery+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -31px; top: -59px; z-index: -14;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-school+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -38px; top: -51px; z-index: -6;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-school+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -50px; top: -26px; z-index: 19;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-school+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -32px; top: -56px; z-index: -11;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-school+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -23px; top: -56px; z-index: -11;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-school+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -26px; top: -57px; z-index: -12;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-school+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -30px; top: -60px; z-index: -15;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-theatre+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -34px; top: -53px; z-index: -8;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-park+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -17px; top: -54px; z-index: -9;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-park+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -23px; top: -48px; z-index: -3;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-park+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -26px; top: -50px; z-index: -5;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-bicycle+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div><div style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; left: -22px; top: -57px; z-index: -12;\"><img alt=\"\" src=\"https://a.tiles.mapbox.com/v4/marker/pin-l-bicycle+2d3d4d.png?access_token=pk.JETON_CAVIARDE_LOUKA\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none; width: 1px; height: 1px;\"></div></div><div style=\"position: absolute; left: 0px; top: 0px; z-index: 0;\"><div style=\"position: absolute; z-index: 990; transform: matrix(1, 0, 0, 1, -139, -7); will-change: transform;\"><div style=\"position: absolute; left: 512px; top: 0px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i299!3i366!4i256!2m3!1e0!2sm!3i789555512!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=55280\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"position: absolute; left: -768px; top: 0px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i294!3i366!4i256!2m3!1e0!2sm!3i789555620!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=116518\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"position: absolute; left: -768px; top: -256px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i294!3i365!4i256!2m3!1e0!2sm!3i789555620!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=77463\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i297!3i366!4i256!2m3!1e0!2sm!3i789555680!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=125437\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"position: absolute; left: -256px; top: 0px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i296!3i366!4i256!2m3!1e0!2sm!3i789555680!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=90332\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"position: absolute; left: -256px; top: -256px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i296!3i365!4i256!2m3!1e0!2sm!3i789555644!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=20972\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"position: absolute; left: 0px; top: -256px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i297!3i365!4i256!2m3!1e0!2sm!3i789555644!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=56077\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"position: absolute; left: 256px; top: -256px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i298!3i365!4i256!2m3!1e0!2sm!3i789555512!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=112191\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"position: absolute; left: 256px; top: 0px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i298!3i366!4i256!2m3!1e0!2sm!3i789555680!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=29471\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"position: absolute; left: -512px; top: 0px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i295!3i366!4i256!2m3!1e0!2sm!3i789555680!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=55227\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"position: absolute; left: -512px; top: -256px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i295!3i365!4i256!2m3!1e0!2sm!3i789555644!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=116938\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"position: absolute; left: 512px; top: -256px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i299!3i365!4i256!2m3!1e0!2sm!3i789555512!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=16225\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"position: absolute; left: 768px; top: -256px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i300!3i365!4i256!2m3!1e0!2sm!3i789555620!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=74014\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"position: absolute; left: 768px; top: 0px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i300!3i366!4i256!2m3!1e0!2sm!3i789555620!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=113069\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"position: absolute; left: -1024px; top: 0px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i293!3i366!4i256!2m3!1e0!2sm!3i789555620!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=81413\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"position: absolute; left: -1024px; top: -256px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i293!3i365!4i256!2m3!1e0!2sm!3i789555620!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=42358\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"position: absolute; left: 1024px; top: -256px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i301!3i365!4i256!2m3!1e0!2sm!3i789555680!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=12723\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"position: absolute; left: 1024px; top: 0px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i301!3i366!4i256!2m3!1e0!2sm!3i789555680!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=51778\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"position: absolute; left: -256px; top: -512px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i296!3i364!4i256!2m3!1e0!2sm!3i789555512!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=2926\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"position: absolute; left: 0px; top: -512px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i297!3i364!4i256!2m3!1e0!2sm!3i789555512!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=38031\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"position: absolute; left: 256px; top: -512px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i298!3i364!4i256!2m3!1e0!2sm!3i789555512!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=73136\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"position: absolute; left: -512px; top: -512px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i295!3i364!4i256!2m3!1e0!2sm!3i789555620!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=73513\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"position: absolute; left: 512px; top: -512px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i299!3i364!4i256!2m3!1e0!2sm!3i789555512!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=108241\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"position: absolute; left: -768px; top: -512px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i294!3i364!4i256!2m3!1e0!2sm!3i789555620!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=38408\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"position: absolute; left: 768px; top: -512px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i300!3i364!4i256!2m3!1e0!2sm!3i789555512!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=60338\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"position: absolute; left: -1024px; top: -512px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i293!3i364!4i256!2m3!1e0!2sm!3i789555620!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=3303\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div style=\"position: absolute; left: 1024px; top: -512px; width: 256px; height: 256px; transition: opacity 200ms linear;\"><img draggable=\"false\" alt=\"\" role=\"presentation\" src=\"https://maps.googleapis.com/maps/vt?pb=!1m5!1m4!1i10!2i301!3i364!4i256!2m3!1e0!2sm!3i789555680!3m18!2sen-US!3sUS!5e18!12m5!1e68!2m2!1sset!2sRoadmap!4e2!12m3!1e37!2m1!1ssmartmaps!12m4!1e26!2m2!1sstyles!2zcy50OjMzfHMuZTpsfHAudjpvZmYscy50OjZ8cC52Om9ufHAuYzojYjVjYmU0LHMudDo1fHAuYzojZWZlZmVmLHMudDo0OXxzLmU6Z3xwLmM6IzgzYTViMCxzLnQ6NTB8cy5lOmd8cC5jOiNiZGNkZDMscy50OjUxfHMuZTpnfHAuYzojZmZmZmZmLHMudDo0MHxzLmU6Z3xwLmM6I2UzZWVkMyxzLnQ6MXxwLnY6b258cC5sOjMzLHMudDozLHMudDo0MHxzLmU6bHxwLnY6b258cC5sOjIwLHMudDozfHAubDoyMA!4e0!5m1!1e3!23i46991212!23i47054750!23i47083502&key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&token=104739\" style=\"width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div></div></div></div><div style=\"z-index: 3; position: absolute; height: 100%; width: 100%; padding: 0px; border-width: 0px; margin: 0px; left: 0px; top: 0px; touch-action: pan-x pan-y;\"><div style=\"z-index: 4; position: absolute; left: 50%; top: 50%; width: 100%; will-change: transform; transform: translate(0px, 0px);\"><div style=\"position: absolute; left: 0px; top: 0px; z-index: 104; width: 100%;\"></div><div style=\"position: absolute; left: 0px; top: 0px; z-index: 105; width: 100%;\"></div><div style=\"position: absolute; left: 0px; top: 0px; z-index: 106; width: 100%;\"><slot></slot><span id=\"A9834964-3CCD-42E2-9CAF-A121C3D2DFAA\" aria-live=\"polite\" style=\"position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0px; overflow: hidden; clip-path: inset(100%); white-space: nowrap; border: 0px;\"></span><div aria-label=\"Map Marker: Ruisseaux L&#xE9;pine\" role=\"button\" tabindex=\"0\" style=\"width: 26px; height: 37px; overflow: hidden; position: absolute; left: -13px; top: -37px; z-index: 0;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" usemap=\"#gmimap0\" style=\"width: 26px; height: 37px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"><map name=\"gmimap0\" id=\"gmimap0\"><area log=\"miw\" coords=\"13,0,4,3.5,0,12,2.75,21,13,37,23.5,21,26,12,22,3.5\" shape=\"poly\" tabindex=\"-1\" title=\"Map Marker: Ruisseaux L&#xE9;pine\" style=\"display: inline; position: absolute; left: 0px; top: 0px; cursor: pointer; touch-action: none;\"></map></div><div title=\"Parliament of Canada\" aria-label=\"Parliament of Canada\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -239px; top: 113px; z-index: 158;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"Centre Sportif de Buckingham\" aria-label=\"Centre Sportif de Buckingham\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -30px; top: -58px; z-index: -13;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"Centre la Cité\" aria-label=\"Centre la Cité\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -34px; top: -13px; z-index: 32;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"Clinique dentaire de Buckingham\" aria-label=\"Clinique dentaire de Buckingham\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -38px; top: -42px; z-index: 3;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"Rivera Pizza Buckingham\" aria-label=\"Rivera Pizza Buckingham\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -40px; top: -37px; z-index: 8;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"Parc à chien de Buckingham\" aria-label=\"Parc à chien de Buckingham\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -31px; top: -39px; z-index: 6;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"McDonald's\" aria-label=\"McDonald's\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -37px; top: -24px; z-index: 21;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"L’Atelier du Vin & Artisanats\" aria-label=\"L’Atelier du Vin & Artisanats\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -43px; top: -27px; z-index: 18;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"Restaurant et bar St-Hubert\" aria-label=\"Restaurant et bar St-Hubert\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -48px; top: -20px; z-index: 25;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"Carrefour culturel Estacade\" aria-label=\"Carrefour culturel Estacade\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -23px; top: -56px; z-index: -11;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"À Outrance\" aria-label=\"À Outrance\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -34px; top: -58px; z-index: -13;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"La Trappe à Fromage\" aria-label=\"La Trappe à Fromage\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -47px; top: -24px; z-index: 21;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"A&W\" aria-label=\"A&W\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -36px; top: -26px; z-index: 19;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"Papa Pizza\" aria-label=\"Papa Pizza\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -37px; top: -14px; z-index: 31;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"Caisse Desjardins du Coeur-des-vallées\" aria-label=\"Caisse Desjardins du Coeur-des-vallées\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -33px; top: -55px; z-index: -10;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"CLSC de Vallée-de-la-Lièvre\" aria-label=\"CLSC de Vallée-de-la-Lièvre\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -24px; top: -57px; z-index: -12;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"Coop Santé Basse-Lièvre\" aria-label=\"Coop Santé Basse-Lièvre\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -32px; top: -52px; z-index: -7;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"Hôpital vétérinaire de Buckingham\" aria-label=\"Hôpital vétérinaire de Buckingham\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -32px; top: -52px; z-index: -7;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"Hôpital de Papineau\" aria-label=\"Hôpital de Papineau\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -30px; top: -57px; z-index: -12;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"Clinique Denturologiste P.M. Lavallée | Naturadent Gatineau\" aria-label=\"Clinique Denturologiste P.M. Lavallée | Naturadent Gatineau\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -30px; top: -50px; z-index: -5;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"Restaurant Lee\" aria-label=\"Restaurant Lee\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -27px; top: -13px; z-index: 32;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"Restaurant La Destination\" aria-label=\"Restaurant La Destination\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -36px; top: -12px; z-index: 33;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"Tigre Géant\" aria-label=\"Tigre Géant\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -35px; top: -59px; z-index: -14;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"PJC Jean Coutu\" aria-label=\"PJC Jean Coutu\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -30px; top: -48px; z-index: -3;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"La Boucherie Du Village\" aria-label=\"La Boucherie Du Village\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -34px; top: -57px; z-index: -12;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"IGA Marché Masson Angers Inc.\" aria-label=\"IGA Marché Masson Angers Inc.\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -46px; top: -23px; z-index: 22;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"Maxi Gatineau Lépine\" aria-label=\"Maxi Gatineau Lépine\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -28px; top: -43px; z-index: 2;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"Metro Plus Buckingham\" aria-label=\"Metro Plus Buckingham\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -22px; top: -43px; z-index: 2;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"École Saint-Laurent\" aria-label=\"École Saint-Laurent\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -31px; top: -59px; z-index: -14;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"École primaire de Buckingham\" aria-label=\"École primaire de Buckingham\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -38px; top: -51px; z-index: -6;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"École Ruisseau\" aria-label=\"École Ruisseau\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -50px; top: -26px; z-index: 19;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"École Saint-Michel\" aria-label=\"École Saint-Michel\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -32px; top: -56px; z-index: -11;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"École secondaire Hormisdas - Gamelin\" aria-label=\"École secondaire Hormisdas - Gamelin\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -23px; top: -56px; z-index: -11;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"École du Boisé\" aria-label=\"École du Boisé\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -26px; top: -57px; z-index: -12;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"Bibliothèque Bernard-Lonergan\" aria-label=\"Bibliothèque Bernard-Lonergan\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -30px; top: -60px; z-index: -15;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"Parc Maclaren\" aria-label=\"Parc Maclaren\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -34px; top: -53px; z-index: -8;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"Parc Brady\" aria-label=\"Parc Brady\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -17px; top: -54px; z-index: -9;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"Parc du 8 octobre 1906\" aria-label=\"Parc du 8 octobre 1906\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -23px; top: -48px; z-index: -3;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"Salle de Quilles King Pin de Buckingham\" aria-label=\"Salle de Quilles King Pin de Buckingham\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -26px; top: -50px; z-index: -5;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div><div title=\"Centre Aquatique Lucien-Houle\" aria-label=\"Centre Aquatique Lucien-Houle\" role=\"button\" tabindex=\"-1\" style=\"width: 35px; height: 45px; overflow: hidden; position: absolute; cursor: pointer; touch-action: none; left: -22px; top: -57px; z-index: -12;\"><img alt=\"\" src=\"https://maps.gstatic.com/mapfiles/transparent.png\" draggable=\"false\" style=\"width: 35px; height: 45px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;\"></div></div><div style=\"position: absolute; left: 0px; top: 0px; z-index: 107; width: 100%;\"><div style=\"cursor: default; position: absolute; top: 0px; left: 0px; z-index: -264;\"><div class=\"gm-style-iw-a\" style=\"position: absolute; left: 0px; top: 0px;\"><div class=\"gm-style-iw-t\" style=\"right: 0px; bottom: 48px;\"><div role=\"dialog\" tabindex=\"-1\" class=\"gm-style-iw gm-style-iw-c\" aria-labelledby=\"AA8B8CF3-B75F-4337-9CC7-924F46D443B2\" style=\"padding-inline-end: 0px; padding-bottom: 0px; padding-top: 0px; max-width: 648px; max-height: 312px; min-width: 0px;\"><div class=\"gm-style-iw-chr\"><div class=\"gm-style-iw-ch\" id=\"AA8B8CF3-B75F-4337-9CC7-924F46D443B2\"></div><button draggable=\"false\" aria-label=\"Close\" title=\"Close\" type=\"button\" class=\"gm-ui-hover-effect\" style=\"background: none; display: block; border: 0px; margin: 0px; padding: 0px; text-transform: none; appearance: none; position: relative; cursor: pointer; user-select: none; width: 48px; height: 48px;\"><span style=\"mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M19%206.41%2017.59%205%2012%2010.59%206.41%205%205%206.41%2010.59%2012%205%2017.59%206.41%2019%2012%2013.41%2017.59%2019%2019%2017.59%2013.41%2012z%22/%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M0%200h24v24H0z%22/%3E%3C/svg%3E"); pointer-events: none; display: block; width: 24px; height: 24px; margin: 12px;\"></span></button></div><div class=\"gm-style-iw-d\" style=\"overflow: scroll; max-height: 294px;\"><div><h2 id=\"lam-prop-bubble-name\" class=\"h6 my-3 lam-prop-bubble-name\">Ruisseaux Lépine</h2> \t\t\t\t\t\t<div class=\"d-flex flex-row lam-prop-bubble\"> \t\t\t\t\t\t\t<div class=\"mr-4\"><img class=\"propthumbnail\" alt=\"Ruisseaux Lépine\" src=\"https://resource.rentcafe.com/image/upload//q_auto,f_auto,w_100,h_67,c_limit/s3/2/252329/brigil-communitythumbnail-ruisseaux%20l%C3%A9pine.jpg\"></div> \t\t\t\t\t\t\t<div> \t\t\t\t\t\t\t\t<ul class=\"list-unstyled lam-prop-info-list\"> \t\t\t\t\t\t\t\t\t<li>Bedrooms: 2-3</li> \t\t\t\t\t\t\t\t\t<li>Bathrooms: 1-1</li> \t\t\t\t\t\t\t\t\t<li class=\"font-weight-bold mt-2\">Rent: $1,650<span class=\"sr-only\">to</span> - $1,915</li> \t\t\t\t\t\t\t\t</ul> \t\t\t\t\t\t\t</div> \t\t\t\t\t\t</div><div class=\"mt-1 mb-2 ml-1\"><a id=\"propAddrLink\" href=\"https://maps.google.com/?q=1+-+320+Rue+%C3%89lisabeth-Chauvin+Gatineau+J8L+0Z4\" target=\"_blank\">1 - 320 Rue Élisabeth-Chauvin Gatineau, QC J8L 0Z4</a></div></div></div></div><div class=\"gm-style-iw-tc\"></div></div></div></div></div></div></div><div class=\"gm-style-moc\" style=\"z-index: 4; position: absolute; height: 100%; width: 100%; padding: 0px; border-width: 0px; margin: 0px; left: 0px; top: 0px; transition-property: opacity, display; transition-behavior: allow-discrete; opacity: 0; display: none;\"><p class=\"gm-style-mot\"></p></div></div><div aria-hidden=\"true\" frameborder=\"0\" tabindex=\"-1\" style=\"z-index: -1; position: absolute; width: 100%; height: 100%; top: 0px; left: 0px; border-width: medium; border-style: none; border-color: currentcolor; border-image: none; opacity: 0;\" data-original-tag=\"iframe\"></div><div style=\"pointer-events: none; width: 100%; height: 100%; box-sizing: border-box; position: absolute; z-index: 1000002; opacity: 0; border: 2px solid rgb(26, 115, 232);\"></div><div><div class=\"gmnoprint gm-style-mtc-bbw\" role=\"menubar\" style=\"margin: 10px; z-index: 0; position: absolute; cursor: pointer; left: 0px; top: 0px;\"><div class=\"gm-style-mtc\" style=\"float: left; position: relative;\"><button draggable=\"false\" aria-label=\"Show street map\" title=\"Show street map\" type=\"button\" role=\"menuitemradio\" aria-checked=\"true\" aria-haspopup=\"true\" style=\"background: none padding-box rgb(255, 255, 255); display: table-cell; border: 0px; margin: 0px; padding: 0px 17px; text-transform: none; appearance: none; position: relative; cursor: pointer; user-select: none; overflow: hidden; text-align: center; height: 40px; vertical-align: middle; color: rgb(0, 0, 0); font-family: Roboto, Arial, sans-serif; font-size: 18px; box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px; min-width: 35px; font-weight: 500;\" id=\"5C0F3D9F-482A-4981-881F-21E7A4969F50\">Map</button><ul role=\"menu\" aria-labelledby=\"5C0F3D9F-482A-4981-881F-21E7A4969F50\" style=\"background-color: rgb(255, 255, 255); list-style: none; padding: 2px; margin: 0px; z-index: -1; border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px; position: absolute; left: 0px; top: 40px; text-align: left; display: none;\"><li tabindex=\"-1\" role=\"menuitemcheckbox\" aria-label=\"Terrain\" draggable=\"false\" title=\"Show street map with terrain\" aria-checked=\"false\" class=\"ssQIHO-checkbox-menu-item\" style=\"color: rgb(0, 0, 0); font-family: Roboto, Arial, sans-serif; user-select: none; font-size: 18px; background-color: rgb(255, 255, 255); padding: 5px 8px 5px 5px; direction: ltr; text-align: left; white-space: nowrap;\"><span><span style=\"mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M0%200h24v24H0z%22/%3E%3Cpath%20d%3D%22M19%203H5c-1.11%200-2%20.9-2%202v14c0%201.1.89%202%202%202h14c1.11%200%202-.9%202-2V5c0-1.1-.89-2-2-2m-9%2014-5-5%201.41-1.41L10%2014.17l7.59-7.59L19%208z%22/%3E%3C/svg%3E"); height: 1em; width: 1em; transform: translateY(0.15em); display: none;\"></span><span style=\"mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M19%205v14H5V5zm0-2H5c-1.1%200-2%20.9-2%202v14c0%201.1.9%202%202%202h14c1.1%200%202-.9%202-2V5c0-1.1-.9-2-2-2%22/%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M0%200h24v24H0z%22/%3E%3C/svg%3E"); height: 1em; width: 1em; transform: translateY(0.15em);\"></span></span><label style=\"cursor: inherit;\">Terrain</label></li></ul></div><div class=\"gm-style-mtc\" style=\"float: left; position: relative;\"><button draggable=\"false\" aria-label=\"Show satellite imagery\" title=\"Show satellite imagery\" type=\"button\" role=\"menuitemradio\" aria-checked=\"false\" aria-haspopup=\"true\" style=\"background: none padding-box rgb(255, 255, 255); display: table-cell; border: 0px; margin: 0px; padding: 0px 17px; text-transform: none; appearance: none; position: relative; cursor: pointer; user-select: none; overflow: hidden; text-align: center; height: 40px; vertical-align: middle; color: rgb(86, 86, 86); font-family: Roboto, Arial, sans-serif; font-size: 18px; box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px; min-width: 64px;\" id=\"AAB0EDE0-EC69-4363-B879-EB33F2491850\">Satellite</button><ul role=\"menu\" aria-labelledby=\"AAB0EDE0-EC69-4363-B879-EB33F2491850\" style=\"background-color: rgb(255, 255, 255); list-style: none; padding: 2px; margin: 0px; z-index: -1; border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px; position: absolute; right: 0px; top: 40px; text-align: left; display: none;\"><li tabindex=\"-1\" role=\"menuitemcheckbox\" aria-label=\"Labels\" draggable=\"false\" title=\"Show imagery with street names\" aria-checked=\"true\" class=\"ssQIHO-checkbox-menu-item\" style=\"color: rgb(0, 0, 0); font-family: Roboto, Arial, sans-serif; user-select: none; font-size: 18px; background-color: rgb(255, 255, 255); padding: 5px 8px 5px 5px; direction: ltr; text-align: left; white-space: nowrap;\"><span><span style=\"mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M0%200h24v24H0z%22/%3E%3Cpath%20d%3D%22M19%203H5c-1.11%200-2%20.9-2%202v14c0%201.1.89%202%202%202h14c1.11%200%202-.9%202-2V5c0-1.1-.89-2-2-2m-9%2014-5-5%201.41-1.41L10%2014.17l7.59-7.59L19%208z%22/%3E%3C/svg%3E"); height: 1em; width: 1em; transform: translateY(0.15em);\"></span><span style=\"mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M19%205v14H5V5zm0-2H5c-1.1%200-2%20.9-2%202v14c0%201.1.9%202%202%202h14c1.1%200%202-.9%202-2V5c0-1.1-.9-2-2-2%22/%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M0%200h24v24H0z%22/%3E%3C/svg%3E"); height: 1em; width: 1em; transform: translateY(0.15em); display: none;\"></span></span><label style=\"cursor: inherit;\">Labels</label></li></ul></div></div></div><div></div><div></div><div></div><div><button draggable=\"false\" aria-label=\"Toggle fullscreen view\" title=\"Toggle fullscreen view\" type=\"button\" aria-pressed=\"false\" class=\"gm-control-active gm-fullscreen-control\" style=\"background: none rgb(255, 255, 255); border: 0px; margin: 10px; padding: 0px; text-transform: none; appearance: none; position: absolute; cursor: pointer; user-select: none; border-radius: 2px; height: 40px; width: 40px; box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px; overflow: hidden; top: 0px; right: 0px;\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M0%200v6h2V2h4V0zm16%200h-4v2h4v4h2V0zm0%2016h-4v2h6v-6h-2zM2%2012H0v6h6v-2H2z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 18px; width: 18px;\" width=\"18\" height=\"18\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M0%200v6h2V2h4V0zm16%200h-4v2h4v4h2V0zm0%2016h-4v2h6v-6h-2zM2%2012H0v6h6v-2H2z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 18px; width: 18px;\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23111%22%20d%3D%22M0%200v6h2V2h4V0zm16%200h-4v2h4v4h2V0zm0%2016h-4v2h6v-6h-2zM2%2012H0v6h6v-2H2z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 18px; width: 18px;\"></button></div><div></div><div></div><div></div><div></div><div><div class=\"gmnoprint gm-bundled-control gm-bundled-control-on-bottom\" draggable=\"false\" data-control-width=\"40\" data-control-height=\"112\" style=\"margin: 10px; user-select: none; position: absolute; bottom: 126px; right: 40px;\"><div class=\"gmnoprint\" data-control-width=\"40\" data-control-height=\"40\" style=\"display: none; position: absolute;\"><div style=\"background-color: rgb(255, 255, 255); box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px; border-radius: 2px; width: 40px; height: 40px;\"><button draggable=\"false\" aria-label=\"Rotate map clockwise\" title=\"Rotate map clockwise\" type=\"button\" class=\"gm-control-active\" style=\"background: none; display: none; border: 0px; margin: 0px; padding: 0px; text-transform: none; appearance: none; position: relative; cursor: pointer; user-select: none; left: 0px; top: 0px; overflow: hidden; width: 40px; height: 40px;\"><img alt=\"\" src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M0%200h24v24H0z%22/%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22m12.06%209.06%204-4-4-4-1.41%201.41%201.59%201.59h-.18c-2.3%200-4.6.88-6.35%202.64-3.52%203.51-3.52%209.21%200%2012.72%201.5%201.5%203.4%202.36%205.36%202.58v-2.02c-1.44-.21-2.84-.86-3.95-1.97-2.73-2.73-2.73-7.17%200-9.9%201.37-1.37%203.16-2.05%204.95-2.05h.17l-1.59%201.59zm8.94%203c-.19-1.74-.88-3.32-1.91-4.61l-1.43%201.43c.69.92%201.15%202%201.32%203.18zm-7.94%207.92V22c1.74-.19%203.32-.88%204.61-1.91l-1.43-1.43c-.91.68-2%201.15-3.18%201.32m4.6-2.74%201.43%201.43c1.04-1.29%201.72-2.88%201.91-4.61h-2.02c-.17%201.18-.64%202.27-1.32%203.18%22/%3E%3C/svg%3E\" style=\"width: 20px; height: 20px;\"><img alt=\"\" src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M0%200h24v24H0z%22/%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22m12.06%209.06%204-4-4-4-1.41%201.41%201.59%201.59h-.18c-2.3%200-4.6.88-6.35%202.64-3.52%203.51-3.52%209.21%200%2012.72%201.5%201.5%203.4%202.36%205.36%202.58v-2.02c-1.44-.21-2.84-.86-3.95-1.97-2.73-2.73-2.73-7.17%200-9.9%201.37-1.37%203.16-2.05%204.95-2.05h.17l-1.59%201.59zm8.94%203c-.19-1.74-.88-3.32-1.91-4.61l-1.43%201.43c.69.92%201.15%202%201.32%203.18zm-7.94%207.92V22c1.74-.19%203.32-.88%204.61-1.91l-1.43-1.43c-.91.68-2%201.15-3.18%201.32m4.6-2.74%201.43%201.43c1.04-1.29%201.72-2.88%201.91-4.61h-2.02c-.17%201.18-.64%202.27-1.32%203.18%22/%3E%3C/svg%3E\" style=\"width: 20px; height: 20px;\"><img alt=\"\" src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M0%200h24v24H0z%22/%3E%3Cpath%20fill%3D%22%23111%22%20d%3D%22m12.06%209.06%204-4-4-4-1.41%201.41%201.59%201.59h-.18c-2.3%200-4.6.88-6.35%202.64-3.52%203.51-3.52%209.21%200%2012.72%201.5%201.5%203.4%202.36%205.36%202.58v-2.02c-1.44-.21-2.84-.86-3.95-1.97-2.73-2.73-2.73-7.17%200-9.9%201.37-1.37%203.16-2.05%204.95-2.05h.17l-1.59%201.59zm8.94%203c-.19-1.74-.88-3.32-1.91-4.61l-1.43%201.43c.69.92%201.15%202%201.32%203.18zm-7.94%207.92V22c1.74-.19%203.32-.88%204.61-1.91l-1.43-1.43c-.91.68-2%201.15-3.18%201.32m4.6-2.74%201.43%201.43c1.04-1.29%201.72-2.88%201.91-4.61h-2.02c-.17%201.18-.64%202.27-1.32%203.18%22/%3E%3C/svg%3E\" style=\"width: 20px; height: 20px;\"></button><div style=\"position: relative; overflow: hidden; width: 30px; height: 1px; margin: 0px 5px; background-color: rgb(230, 230, 230); display: none;\"></div><button draggable=\"false\" aria-label=\"Rotate map counterclockwise\" title=\"Rotate map counterclockwise\" type=\"button\" class=\"gm-control-active\" style=\"background: none; display: none; border: 0px; margin: 0px; padding: 0px; text-transform: none; appearance: none; position: relative; cursor: pointer; user-select: none; left: 0px; top: 0px; overflow: hidden; width: 40px; height: 40px; transform: scaleX(-1);\"><img alt=\"\" src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M0%200h24v24H0z%22/%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22m12.06%209.06%204-4-4-4-1.41%201.41%201.59%201.59h-.18c-2.3%200-4.6.88-6.35%202.64-3.52%203.51-3.52%209.21%200%2012.72%201.5%201.5%203.4%202.36%205.36%202.58v-2.02c-1.44-.21-2.84-.86-3.95-1.97-2.73-2.73-2.73-7.17%200-9.9%201.37-1.37%203.16-2.05%204.95-2.05h.17l-1.59%201.59zm8.94%203c-.19-1.74-.88-3.32-1.91-4.61l-1.43%201.43c.69.92%201.15%202%201.32%203.18zm-7.94%207.92V22c1.74-.19%203.32-.88%204.61-1.91l-1.43-1.43c-.91.68-2%201.15-3.18%201.32m4.6-2.74%201.43%201.43c1.04-1.29%201.72-2.88%201.91-4.61h-2.02c-.17%201.18-.64%202.27-1.32%203.18%22/%3E%3C/svg%3E\" style=\"width: 20px; height: 20px;\"><img alt=\"\" src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M0%200h24v24H0z%22/%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22m12.06%209.06%204-4-4-4-1.41%201.41%201.59%201.59h-.18c-2.3%200-4.6.88-6.35%202.64-3.52%203.51-3.52%209.21%200%2012.72%201.5%201.5%203.4%202.36%205.36%202.58v-2.02c-1.44-.21-2.84-.86-3.95-1.97-2.73-2.73-2.73-7.17%200-9.9%201.37-1.37%203.16-2.05%204.95-2.05h.17l-1.59%201.59zm8.94%203c-.19-1.74-.88-3.32-1.91-4.61l-1.43%201.43c.69.92%201.15%202%201.32%203.18zm-7.94%207.92V22c1.74-.19%203.32-.88%204.61-1.91l-1.43-1.43c-.91.68-2%201.15-3.18%201.32m4.6-2.74%201.43%201.43c1.04-1.29%201.72-2.88%201.91-4.61h-2.02c-.17%201.18-.64%202.27-1.32%203.18%22/%3E%3C/svg%3E\" style=\"width: 20px; height: 20px;\"><img alt=\"\" src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M0%200h24v24H0z%22/%3E%3Cpath%20fill%3D%22%23111%22%20d%3D%22m12.06%209.06%204-4-4-4-1.41%201.41%201.59%201.59h-.18c-2.3%200-4.6.88-6.35%202.64-3.52%203.51-3.52%209.21%200%2012.72%201.5%201.5%203.4%202.36%205.36%202.58v-2.02c-1.44-.21-2.84-.86-3.95-1.97-2.73-2.73-2.73-7.17%200-9.9%201.37-1.37%203.16-2.05%204.95-2.05h.17l-1.59%201.59zm8.94%203c-.19-1.74-.88-3.32-1.91-4.61l-1.43%201.43c.69.92%201.15%202%201.32%203.18zm-7.94%207.92V22c1.74-.19%203.32-.88%204.61-1.91l-1.43-1.43c-.91.68-2%201.15-3.18%201.32m4.6-2.74%201.43%201.43c1.04-1.29%201.72-2.88%201.91-4.61h-2.02c-.17%201.18-.64%202.27-1.32%203.18%22/%3E%3C/svg%3E\" style=\"width: 20px; height: 20px;\"></button><div style=\"position: relative; overflow: hidden; width: 30px; height: 1px; margin: 0px 5px; background-color: rgb(230, 230, 230); display: none;\"></div><button draggable=\"false\" aria-label=\"Tilt map\" title=\"Tilt map\" type=\"button\" class=\"gm-tilt gm-control-active\" style=\"background: none; display: block; border: 0px; margin: 0px; padding: 0px; text-transform: none; appearance: none; position: relative; cursor: pointer; user-select: none; top: 0px; left: 0px; overflow: hidden; width: 40px; height: 40px;\"><img alt=\"\" src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2018%2016%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M0%2016h8V9H0zm10%200h8V9h-8zM0%207h8V0H0zm10-7v7h8V0z%22/%3E%3C/svg%3E\" style=\"width: 18px;\"><img alt=\"\" src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2018%2016%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M0%2016h8V9H0zm10%200h8V9h-8zM0%207h8V0H0zm10-7v7h8V0z%22/%3E%3C/svg%3E\" style=\"width: 18px;\"><img alt=\"\" src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2018%2016%22%3E%3Cpath%20fill%3D%22%23111%22%20d%3D%22M0%2016h8V9H0zm10%200h8V9h-8zM0%207h8V0H0zm10-7v7h8V0z%22/%3E%3C/svg%3E\" style=\"width: 18px;\"></button></div></div><gmp-internal-camera-control data-control-width=\"40\" data-control-height=\"40\" draggable=\"false\" class=\"gmnoprint\" style=\"position: absolute; cursor: pointer; user-select: none; left: 0px; top: 0px;\"><button draggable=\"false\" aria-label=\"Map camera controls\" title=\"Map camera controls\" type=\"button\" class=\"gm-control-active\" aria-expanded=\"false\" aria-controls=\"3788F301-6E4E-4CAD-B754-4423C61D74DE\" style=\"background: none 6px center / 28px no-repeat rgb(255, 255, 255); display: block; border: 0px; margin: 0px; padding: 0px; text-transform: none; appearance: none; position: relative; cursor: pointer; user-select: none; width: 40px; height: 40px; border-radius: 50%; box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22m12%2019.175%202.125-2.125%201.425%201.4L12%2022l-3.55-3.55%201.425-1.4zM4.825%2012l2.125%202.125-1.4%201.425L2%2012l3.55-3.55%201.4%201.425zm14.35%200L17.05%209.875l1.4-1.425L22%2012l-3.55%203.55-1.4-1.425zM12%204.825%209.875%206.95%208.45%205.55%2012%202l3.55%203.55-1.425%201.4z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\" width=\"28\" height=\"28\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22m12%2019.175%202.125-2.125%201.425%201.4L12%2022l-3.55-3.55%201.425-1.4zM4.825%2012l2.125%202.125-1.4%201.425L2%2012l3.55-3.55%201.4%201.425zm14.35%200L17.05%209.875l1.4-1.425L22%2012l-3.55%203.55-1.4-1.425zM12%204.825%209.875%206.95%208.45%205.55%2012%202l3.55%203.55-1.425%201.4z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%231a73e8%22%20d%3D%22m12%2019.175%202.125-2.125%201.425%201.4L12%2022l-3.55-3.55%201.425-1.4zM4.825%2012l2.125%202.125-1.4%201.425L2%2012l3.55-3.55%201.4%201.425zm14.35%200L17.05%209.875l1.4-1.425L22%2012l-3.55%203.55-1.4-1.425zM12%204.825%209.875%206.95%208.45%205.55%2012%202l3.55%203.55-1.425%201.4z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23d1d1d1%22%20d%3D%22m12%2019.175%202.125-2.125%201.425%201.4L12%2022l-3.55-3.55%201.425-1.4zM4.825%2012l2.125%202.125-1.4%201.425L2%2012l3.55-3.55%201.4%201.425zm14.35%200L17.05%209.875l1.4-1.425L22%2012l-3.55%203.55-1.4-1.425zM12%204.825%209.875%206.95%208.45%205.55%2012%202l3.55%203.55-1.425%201.4z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"></button><menu id=\"3788F301-6E4E-4CAD-B754-4423C61D74DE\" style=\"list-style: none; padding: 0px; display: none; position: absolute; z-index: 999999; margin: 10px; width: 140px; height: 140px; right: 100%; top: -60px;\"><li><button draggable=\"false\" aria-label=\"Move up\" title=\"Move up\" type=\"button\" class=\"gm-control-active\" style=\"background: none 6px center / 28px no-repeat rgb(255, 255, 255); display: block; border: 0px; margin: 0px; padding: 0px; text-transform: none; appearance: none; position: absolute; cursor: pointer; user-select: none; width: 40px; height: 40px; border-radius: 50%; box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px; top: 0px; left: 50%; transform: translateX(-50%);\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22m12%2010.8-4.6%204.6L6%2014l6-6%206%206-1.4%201.4z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22m12%2010.8-4.6%204.6L6%2014l6-6%206%206-1.4%201.4z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22m12%2010.8-4.6%204.6L6%2014l6-6%206%206-1.4%201.4z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23d1d1d1%22%20d%3D%22m12%2010.8-4.6%204.6L6%2014l6-6%206%206-1.4%201.4z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"></button></li><li><button draggable=\"false\" aria-label=\"Move left\" title=\"Move left\" type=\"button\" class=\"gm-control-active\" style=\"background: none 6px center / 28px no-repeat rgb(255, 255, 255); display: block; border: 0px; margin: 0px; padding: 0px; text-transform: none; appearance: none; position: absolute; cursor: pointer; user-select: none; width: 40px; height: 40px; border-radius: 50%; box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px; bottom: 50%; left: 0px; transform: translateY(50%);\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22m14%2018-6-6%206-6%201.4%201.4-4.6%204.6%204.6%204.6z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22m14%2018-6-6%206-6%201.4%201.4-4.6%204.6%204.6%204.6z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22m14%2018-6-6%206-6%201.4%201.4-4.6%204.6%204.6%204.6z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23d1d1d1%22%20d%3D%22m14%2018-6-6%206-6%201.4%201.4-4.6%204.6%204.6%204.6z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"></button></li><li><button draggable=\"false\" aria-label=\"Move right\" title=\"Move right\" type=\"button\" class=\"gm-control-active\" style=\"background: none 6px center / 28px no-repeat rgb(255, 255, 255); display: block; border: 0px; margin: 0px; padding: 0px; text-transform: none; appearance: none; position: absolute; cursor: pointer; user-select: none; width: 40px; height: 40px; border-radius: 50%; box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px; bottom: 50%; right: 0px; transform: translateY(50%);\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M12.6%2012%208%207.4%209.4%206l6%206-6%206L8%2016.6z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M12.6%2012%208%207.4%209.4%206l6%206-6%206L8%2016.6z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M12.6%2012%208%207.4%209.4%206l6%206-6%206L8%2016.6z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23d1d1d1%22%20d%3D%22M12.6%2012%208%207.4%209.4%206l6%206-6%206L8%2016.6z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"></button></li><li><button draggable=\"false\" aria-label=\"Move down\" title=\"Move down\" type=\"button\" class=\"gm-control-active\" style=\"background: none 6px center / 28px no-repeat rgb(255, 255, 255); display: block; border: 0px; margin: 0px; padding: 0px; text-transform: none; appearance: none; position: absolute; cursor: pointer; user-select: none; width: 40px; height: 40px; border-radius: 50%; box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px; bottom: 0px; left: 50%; transform: translateX(-50%);\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22m12%2015.4-6-6L7.4%208l4.6%204.6L16.6%208%2018%209.4z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22m12%2015.4-6-6L7.4%208l4.6%204.6L16.6%208%2018%209.4z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22m12%2015.4-6-6L7.4%208l4.6%204.6L16.6%208%2018%209.4z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22m12%2015.4-6-6L7.4%208l4.6%204.6L16.6%208%2018%209.4z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"></button></li><li><button draggable=\"false\" aria-label=\"Zoom in\" title=\"Zoom in\" type=\"button\" class=\"gm-control-active\" style=\"background: none 6px center / 28px no-repeat rgb(255, 255, 255); display: block; border: 0px; margin: 0px; padding: 0px; text-transform: none; appearance: none; position: absolute; cursor: pointer; user-select: none; overflow: hidden; width: 40px; height: 40px; border-radius: 50%; box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px; top: 0px; right: 0px;\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22%23666%22%20viewBox%3D%220%20-960%20960%20960%22%3E%3Cpath%20d%3D%22M440-440H200v-80h240v-240h80v240h240v80H520v240h-80z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22%23333%22%20viewBox%3D%220%20-960%20960%20960%22%3E%3Cpath%20d%3D%22M440-440H200v-80h240v-240h80v240h240v80H520v240h-80z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22%23111%22%20viewBox%3D%220%20-960%20960%20960%22%3E%3Cpath%20d%3D%22M440-440H200v-80h240v-240h80v240h240v80H520v240h-80z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22%23d1d1d1%22%20viewBox%3D%220%20-960%20960%20960%22%3E%3Cpath%20d%3D%22M440-440H200v-80h240v-240h80v240h240v80H520v240h-80z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"></button></li><li><button draggable=\"false\" aria-label=\"Zoom out\" title=\"Zoom out\" type=\"button\" class=\"gm-control-active\" style=\"background: none 6px center / 28px no-repeat rgb(255, 255, 255); display: block; border: 0px; margin: 0px; padding: 0px; text-transform: none; appearance: none; position: absolute; cursor: pointer; user-select: none; overflow: hidden; width: 40px; height: 40px; border-radius: 50%; box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px; bottom: 0px; right: 0px;\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22%23666%22%20viewBox%3D%220%20-960%20960%20960%22%3E%3Cpath%20d%3D%22M200-440v-80h560v80z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22%23333%22%20viewBox%3D%220%20-960%20960%20960%22%3E%3Cpath%20d%3D%22M200-440v-80h560v80z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22%23111%22%20viewBox%3D%220%20-960%20960%20960%22%3E%3Cpath%20d%3D%22M200-440v-80h560v80z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22%23d1d1d1%22%20viewBox%3D%220%20-960%20960%20960%22%3E%3Cpath%20d%3D%22M200-440v-80h560v80z%22/%3E%3C/svg%3E\" alt=\"\" style=\"height: 28px; width: 28px;\"></button></li></menu></gmp-internal-camera-control><button draggable=\"false\" aria-label=\"Drag Pegman onto the map to open Street View\" title=\"Drag Pegman onto the map to open Street View\" type=\"button\" class=\"gm-svpc\" dir=\"ltr\" data-control-width=\"40\" data-control-height=\"40\" style=\"background: rgb(255, 255, 255); border: 0px; margin: 0px; padding: 0px; text-transform: none; appearance: none; position: absolute; cursor: pointer; user-select: none; --pegman-scaleX: 1; box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px; border-radius: 2px; width: 40px; height: 40px; left: 0px; top: 72px;\"><div style=\"position: absolute; left: 50%; top: 50%; transform: scaleX(var(--pegman-scaleX));\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2023%2038%22%3E%3Cpath%20d%3D%22M16.6%2038.1h-5.5l-.2-2.9-.2%202.9H5.2L5%2025.3l-.8%202a1.53%201.53%200%2001-1.9.9l-1.2-.4a1.58%201.58%200%2001-1-1.9v-.1c.3-.9%203.1-11.2%203.1-11.2a2.66%202.66%200%20012.3-2l.6-.5a6.93%206.93%200%20014.7-12%206.8%206.8%200%20014.9%202%207%207%200%20012%204.9%206.65%206.65%200%2001-2.2%205l.7.5a2.78%202.78%200%20012.4%202s2.9%2011.2%202.9%2011.3a1.53%201.53%200%2001-.9%201.9l-1.3.4a1.63%201.63%200%2001-1.9-.9l-.7-1.8zm-3.6-2h1.7l.2-15.8%201.9-.3%202.4%206.3.3-.1c-.2-.8-.8-3.2-2.8-10.9a.63.63%200%2000-.6-.5h-.6l-1.1-.9h-1.9l-.3-2a4.83%204.83%200%20003.5-4.7A4.78%204.78%200%200011%202.3h-.2a4.9%204.9%200%2000-1.4%209.6l-.3%202H7.2l-1%20.9h-.6a.74.74%200%2000-.6.5c-2%207.5-2.7%2010-3%2010.9l.3.1L4.8%2020l1.9.3.2%2015.8h1.6l.6-8.4a1.52%201.52%200%20011.5-1.4%201.5%201.5%200%20011.5%201.4zm6.6-9.7%22%20style%3D%22isolation%3Aisolate%22%20fill%3D%22%23333%22%20opacity%3D%22.7%22/%3E%3Cpath%20d%3D%22m5.9%2013.6%201.1-.9h7.8l1.2.9%22%20fill%3D%22%23ce592c%22/%3E%3Cellipse%20cx%3D%2210.9%22%20cy%3D%2213.1%22%20rx%3D%222.7%22%20ry%3D%22.3%22%20style%3D%22isolation%3Aisolate%22%20fill%3D%22%23ce592c%22%20opacity%3D%22.5%22/%3E%3Cpath%20d%3D%22m20.6%2026.1-2.9-11.3a1.71%201.71%200%2000-1.6-1.2H5.7a1.69%201.69%200%2000-1.5%201.3L1.1%2026.2a.61.61%200%2000.3.7l1.1.4a.61.61%200%2000.7-.3l2.7-6.7.2%2016.8h3.6l.6-9.3a.47.47%200%2001.44-.5h.06c.4%200%20.4.2.5.5l.6%209.3h3.6l.2-16.8%202.5%206.6a.52.52%200%2000.66.31l1.2-.40000000000001a.57.57%200%2000.5-.7Z%22%20fill%3D%22%23fdbf2d%22/%3E%3Cpath%20d%3D%22m7%2013.6%203.9%206.7%203.9-6.7%22%20style%3D%22isolation%3Aisolate%22%20fill%3D%22%23cf572e%22%20opacity%3D%22.6%22/%3E%3Ccircle%20cx%3D%2210.9%22%20cy%3D%227%22%20r%3D%225.9%22%20fill%3D%22%23fdbf2d%22/%3E%3C/svg%3E\" alt=\"Street View Pegman Control\" style=\"height: 30px; width: 30px; position: absolute; transform: translate(-50%, -50%); pointer-events: none;\" width=\"30\" height=\"30\"><img src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2038%22%3E%3Cpath%20d%3D%22m22%2026.6-2.9-11.3a2.78%202.78%200%2000-2.4-2l-.7-.5a6.82%206.82%200%20002.2-5%206.9%206.9%200%2000-13.8%200%207%207%200%20002.2%205.1l-.6.5a2.55%202.55%200%2000-2.3%202s-3%2011.1-3%2011.2v.1a1.58%201.58%200%20001%201.9l1.2.4a1.63%201.63%200%20001.9-.9l.8-2%20.2%2012.8h11.3l.2-12.6.7%201.8a1.54%201.54%200%20001.5%201%201.09%201.09%200%2000.5-.1l1.3-.4a1.85%201.85%200%2000.7-2Zm-1.2.9-1.2.4a.61.61%200%2001-.7-.3L16.4%2021l-.2%2016.8H6.8L6.6%2021l-2.7%206.7a.52.52%200%2001-.66.31l-1.1-.4a.52.52%200%2001-.31-.66l3.1-11.3a1.69%201.69%200%20011.5-1.3h.2l1-.9h2.3a5.9%205.9%200%20113.2%200h2.3l1.1.9h.2a1.71%201.71%200%20011.6%201.2l2.9%2011.3a.84.84%200%2001-.4.7Z%22%20fill%3D%22%23333%22%20fill-opacity%3D%22.2%22/%3E%26quot%3B%3C/svg%3E\" alt=\"Pegman is on top of the Map\" style=\"height: 30px; width: 30px; position: absolute; transform: translate(-50%, -50%); pointer-events: none; display: none;\"><img alt=\"Street View Pegman Control\" src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2040%2050%22%3E%3Cpath%20d%3D%22m34-30.4-2.9-11.3a2.78%202.78%200%2000-2.4-2l-.7-.5a6.82%206.82%200%20002.2-5%206.9%206.9%200%2000-13.8%200%207%207%200%20002.2%205.1l-.6.5a2.55%202.55%200%2000-2.3%202s-3%2011.1-3%2011.2v.1a1.58%201.58%200%20001%201.9l1.2.4a1.63%201.63%200%20001.9-.9l.8-2%20.2%2012.8h11.3l.2-12.6.7%201.8a1.54%201.54%200%20001.5%201%201.09%201.09%200%2000.5-.1l1.3-.4a1.85%201.85%200%2000.7-2Zm-1.2.9-1.2.4a.61.61%200%2001-.7-.3L28.4-36l-.2%2016.8h-9.4L18.6-36l-2.7%206.7a.52.52%200%2001-.66.31l-1.1-.4a.52.52%200%2001-.31-.66l3.1-11.3a1.69%201.69%200%20011.5-1.3h.2l1-.9h2.3a5.9%205.9%200%20113.2%200h2.3l1.1.9h.2a1.71%201.71%200%20011.6%201.2l2.9%2011.3a.84.84%200%2001-.4.7ZM34%2029.6l-2.9-11.3a2.78%202.78%200%2000-2.4-2l-.7-.5a6.82%206.82%200%20002.2-5%206.9%206.9%200%2000-13.8%200%207%207%200%20002.2%205.1l-.6.5a2.55%202.55%200%2000-2.3%202s-3%2011.1-3%2011.2v.1a1.58%201.58%200%20001%201.9l1.2.4a1.63%201.63%200%20001.9-.9l.8-2%20.2%2012.8h11.3l.2-12.6.7%201.8a1.54%201.54%200%20001.5%201%201.09%201.09%200%2000.5-.1l1.3-.4a1.85%201.85%200%2000.7-2Zm-1.2.9-1.2.4a.61.61%200%2001-.7-.3L28.4%2024l-.2%2016.8h-9.4L18.6%2024l-2.7%206.7a.52.52%200%2001-.66.31l-1.1-.4a.52.52%200%2001-.31-.66l3.1-11.3a1.69%201.69%200%20011.5-1.3h.2l1-.9h2.3a5.9%205.9%200%20113.2%200h2.3l1.1.9h.2a1.71%201.71%200%20011.6%201.2l2.9%2011.3a.84.84%200%2001-.4.7Z%22%20fill%3D%22%23333%22%20fill-opacity%3D%22.2%22/%3E%3Cpath%20d%3D%22M15.4%2038.8h-4a1.64%201.64%200%2001-1.4-1.1l-3.1-8a.9.9%200%2001-.5.1l-1.4.1a1.62%201.62%200%2001-1.6-1.4L2.3%2015.4l1.6-1.3a6.87%206.87%200%2001-3-4.6A7.14%207.14%200%20012%204%207.6%207.6%200%20016.7.9%207.14%207.14%200%200112.2%202a7.28%207.28%200%20012.3%209.6l2.1-.1.1%201c0%20.2.1.5.1.8a2.41%202.41%200%20011%201s1.9%203.2%202.8%204.9c.7%201.2%202.1%204.2%202.8%205.9a2.1%202.1%200%2001-.8%202.6l-.6.4a1.63%201.63%200%2001-1.5.2l-.6-.3a8.93%208.93%200%2000.5%201.3%207.91%207.91%200%20001.8%202.6l.6.3v4.6l-4.5-.1a7.32%207.32%200%2001-2.5-1.5zm-10-19.2%203.5%209.8%202.9%207.5h1.6V35l-1.9-9.4%203.1%205.4a8.24%208.24%200%20003.8%203.8h2.1v-1.4a14%2014%200%2001-2.2-3.1%2044.55%2044.55%200%2001-2.2-8L14.8%2016l3.2%205.6c.6%201.1%202.1%203.6%202.8%204.9l.6-.4c-.8-1.6-2.1-4.6-2.8-5.8-.9-1.7-2.8-4.9-2.8-4.9a.54.54%200%2000-.4-.3l-.7-.1-.1-.7a4.33%204.33%200%2000-.1-.5l-5.3.3%202.2-1.9a4.3%204.3%200%2000.9-1%205.17%205.17%200%2000.8-4%205.67%205.67%200%2000-2.2-3.4%205.09%205.09%200%2000-4-.8%205.67%205.67%200%2000-3.4%202.2%205.17%205.17%200%2000-.8%204%205.67%205.67%200%20002.2%203.4%203.13%203.13%200%20001%20.5l1.6.6-3.2%202.6%201%2011.5h.4z%22%20fill%3D%22%23333%22/%3E%3Cpath%20d%3D%22m3.35%2015.9%201.1%2012.5a.39.39%200%2000.36.42h.14l1.4-.1a.66.66%200%2000.5-.4l-.2-3.8-3.3-8.6Z%22%20fill%3D%22%23fdbf2d%22/%3E%3Cpath%20d%3D%22m5.2%2028.8%201.1-.1a.66.66%200%2000.5-.4l-.2-3.8-1.2-3.1Z%22%20fill%3D%22%23ce592b%22%20fill-opacity%3D%22.25%22/%3E%3Cpath%20d%3D%22m21.4%2035.70000000000001-3.8-1.2-2.7-7.8L12%2015.5l3.4-2.9c.2%202.4%202.2%2014.1%203.7%2017.1%200%200%201.3%202.6%202.3%203.1zM13%2027.6l-2-.3%202.5%2010.1.9.4v-2.9%22%20fill%3D%22%23e5892b%22/%3E%3Cpath%20d%3D%22M17.8%2025.4c-.4-1.5-.7-3.1-1.1-4.8-.1-.4-.1-.7-.2-1.1l-1.1-2-1.7-1.6s.9%205%202.4%207.1a19.12%2019.12%200%20001.7%202.4Z%22%20style%3D%22isolation%3Aisolate%22%20fill%3D%22%23cf572e%22%20opacity%3D%22.6%22/%3E%3Cpath%20d%3D%22M14.4%2037.8h-3a.43.43%200%2001-.4-.4l-3-7.8-1.7-4.8-3-9%208.9-.4s2.9%2011.3%204.3%2014.4c1.9%204.1%203.1%204.7%205%205.8h-3.2s-4.1-1.2-5.9-7.7a.59.59%200%2000-.6-.4.62.62%200%2000-.3.7s.5%202.4.9%203.6a34.87%2034.87%200%20002%206%22%20fill%3D%22%23fdbf2d%22/%3E%3Cpath%20d%3D%22m15.4%2012.7-3.3%202.9-8.9.4%203.3-2.7%22%20fill%3D%22%23ce592b%22/%3E%3Cpath%20d%3D%22m9.1%2021.1%201.4-6.2-5.9.5%22%20style%3D%22isolation%3Aisolate%22%20fill%3D%22%23cf572e%22%20opacity%3D%22.6%22/%3E%3Cpath%20d%3D%22M12%2013.5a4.75%204.75%200%2001-2.6%201.1c-1.5.3-2.9.2-2.9%200s1.1-.6%202.7-1%22%20fill%3D%22%23bb3d19%22/%3E%3Ccircle%20cx%3D%227.92%22%20cy%3D%228.19%22%20r%3D%226.3%22%20fill%3D%22%23fdbf2d%22/%3E%3Cpath%20d%3D%22M4.7%2013.6a6.21%206.21%200%20008.4-1.9v-.1a8.89%208.89%200%2001-8.4%202%22%20fill%3D%22%23ce592b%22%20fill-opacity%3D%22.25%22/%3E%3Cpath%20d%3D%22m21.2%2027.2.6-.4a1.09%201.09%200%2000.4-1.3c-.7-1.5-2.1-4.6-2.8-5.8-.9-1.7-2.8-4.9-2.8-4.9a1.6%201.6%200%2000-2.17-.65l-.23.15a1.68%201.68%200%2000-.4%202.1s2.3%203.9%203.1%205.3c.6%201%202.1%203.7%202.9%205.1a.94.94%200%20001.24.49z%22%20fill%3D%22%23fdbf2d%22/%3E%3Cpath%20d%3D%22M19.4%2019.8c-.9-1.7-2.8-4.9-2.8-4.9a1.6%201.6%200%2000-2.17-.65l-.23.15-.3.3c1.1%201.5%202.9%203.8%203.9%205.4%201.1%201.8%202.9%205%203.8%206.7l.1-.1a1.09%201.09%200%2000.4-1.3%2057.67%2057.67%200%2000-2.7-5.6Z%22%20fill%3D%22%23ce592b%22%20fill-opacity%3D%22.25%22/%3E%3C/svg%3E\" style=\"display: none; height: 40px; width: 40px; position: absolute; transform: translate(-60%, -45%); pointer-events: none;\"></div></button></div></div><div><div style=\"margin: 0px 5px; z-index: 1000000; position: absolute; left: 0px; bottom: 0px;\"><a target=\"_blank\" rel=\"noopener\" title=\"Open this area in Google Maps (opens a new window)\" aria-label=\"Open this area in Google Maps (opens a new window)\" href=\"https://maps.google.com/maps?ll=45.657286,-75.39496&z=10&t=m&hl=en-US&gl=US&mapclient=apiv3\" style=\"display: inline;\"><div style=\"width: 66px; height: 26px;\"><img alt=\"Google\" src=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2069%2029%22%3E%3Cg%20fill%3D%22%23474747%22%20stroke%3D%22%23474747%22%20stroke-width%3D%221.5%22%20opacity%3D%22.9%22%3E%3Cpath%20d%3D%22m17.4706%207.33616.5412-.54112-.5519-.53011c-1.3636-1.30974-3.2017-2.31971-5.7591-2.31971-4.6137%200-8.50262%203.75517-8.50262%208.39578%200%204.6407%203.88892%208.3958%208.50262%208.3958%202.4704%200%204.3765-.8188%205.8732-2.3679%201.5695-1.5729%202.0216-3.7363%202.0216-5.4119%200-.5232-.044-1.0254-.1295-1.4529l-.1206-.6029h-8.3947v3.5942h4.8301c-.1724.5966-.4321%201.0286-.7491%201.3461-.6288.6214-1.5823%201.3094-3.331%201.3094-2.65245%200-4.73598-2.1312-4.73598-4.8099%200-2.67861%202.08353-4.80981%204.73598-4.80981%201.4362%200%202.4752.5607%203.257%201.29229l.5298.49574.513-.51303z%22/%3E%3Cpath%20d%3D%22M24.8656%2020.7286c3.089%200%205.6036-2.4192%205.6036-5.6692%200-3.2681-2.5162-5.66931-5.6036-5.66931-3.0873%200-5.6035%202.40121-5.6035%205.66931%200%203.25%202.5145%205.6692%205.6035%205.6692Zm0-7.9004c1.014%200%201.9766.837%201.9766%202.2312%200%201.3805-.9653%202.2311-1.9766%202.2311-1.0099%200-1.9765-.8574-1.9765-2.2311%200-1.3874.9639-2.2312%201.9765-2.2312Z%22/%3E%3Cpath%20d%3D%22M35.7511%2017.2905h-.0042c-1.0099%200-1.9766-.8574-1.9766-2.2311%200-1.3874.964-2.2312%201.9766-2.2312%201.0139%200%201.9765.837%201.9765%202.2312%200%201.3845-.968%202.2367-1.9723%202.2311Zm-.0124%203.4381c3.089%200%205.6035-2.4192%205.6035-5.6692%200-3.2681-2.5162-5.66931-5.6035-5.66931-3.0874%200-5.6036%202.40121-5.6036%205.66931%200%203.2508%202.5236%205.6692%205.6036%205.6692Z%22/%3E%3Cpath%20d%3D%22M51.953%2010.4357v-.74997h-3.5531v.12253c-.55-.26178-1.2022-.42639-1.9191-.42639-2.8837%200-5.464%202.51793-5.464%205.69393%200%202.1269%201.164%203.9479%202.8033%204.9137l-.0658.0273-1.8806.7802-.6929.2874.2876.6928c.6228%201.5004%202.2776%203.3697%205.0535%203.3697%201.4105%200%202.787-.4145%203.814-1.4093%201.0332-1.0009%201.6171-2.4965%201.6171-4.4653zm-7.2194%209.9844-.0002-.0005c.5552.2005%201.1446.309%201.7474.309.6808%200%201.3058-.1467%201.841-.3891-.0876.3891-.2417.671-.4252.8682-.2812.3022-.7202.5011-1.3747.5011-.91190000000001%200-1.5201-.6476-1.7883-1.2887Zm1.9361-7.5919c.9722%200%201.878.8483%201.878%202.2558%200%201.3796-.8956%202.2147-1.878%202.2147-1.0428%200-1.993-.8738-1.993-2.2147%200-1.3754.9595-2.2558%201.993-2.2558Zm9.069-7.60739v-.75h-3.6599V20.4412h3.6599z%22/%3E%3Cpath%20d%3D%22m63.9128%2016.0614-.6183-.4122-.4179.6145c-.4562.6709-1.0102%201.0432-1.8025%201.0432-.4306%200-.7595-.0981-1.0197-.2622-.07-.0441-.1383-.0951-.2046-.1536l5.6999-2.3625.6825-.283L65.9596%2013.5589l-.219-.5514c-.4528-1.2075-1.8899-3.60918-4.9128-3.60918-2.9833%200-5.3244%202.36358-5.3244%205.66928%200%203.1475%202.3222%205.6693%205.5625%205.6693%202.6043%200%204.1111-1.5991%204.7283-2.5156l.421-.625L65.5882%2017.1783zm-2.5667-3.2103-1.9353.8015c.3795-.5743%201.0107-.8572%201.4909-.8572.1653%200%20.3136.0207.4444.0557Z%22/%3E%3C/g%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M11.7008%2019.9868c-4.21304%200-7.75262-3.4328-7.75262-7.6458%200-4.21297%203.53958-7.64578%207.75262-7.64578%202.3323%200%203.9912.91159%205.2395%202.11061l-1.47%201.47003c-.8952-.83767-2.1106-1.49467-3.7695-1.49467-3.07972%200-5.48598%202.48016-5.48598%205.55981%200%203.0797%202.40626%205.5599%205.48598%205.5599%201.9956%200%203.1289-.8048%203.8598-1.5275.5995-.5996.9855-1.4537%201.1333-2.628h-4.9931v-2.0942h7.0298c.0739.3695.115.8212.115%201.3058%200%201.5685-.427%203.5067-1.8067%204.8864-1.3469%201.3961-3.0551%202.1434-5.3381%202.1434m18.0184-4.9274c0%202.8333-2.1763%204.9192-4.8536%204.9192-2.6772%200-4.8535-2.0859-4.8535-4.9192%200-2.8498%202.1763-4.9193%204.8535-4.9193%202.6773%200%204.8536%202.0695%204.8536%204.9193m-2.127%200c0-1.7739-1.2648-2.9812-2.7266-2.9812s-2.7265%201.2155-2.7265%202.9812c0%201.7492%201.2647%202.9811%202.7265%202.9811s2.7266-1.2237%202.7266-2.9811m13%200c0%202.8333-2.1763%204.9192-4.8535%204.9192-2.6691%200-4.8536-2.0859-4.8536-4.9192%200-2.8498%202.1763-4.9193%204.8536-4.9193%202.6772%200%204.8535%202.0695%204.8535%204.9193m-2.1188%200c0-1.7739-1.2647-2.9812-2.7265-2.9812s-2.7266%201.2155-2.7266%202.9812c0%201.7492%201.2648%202.9811%202.7266%202.9811%201.4618.0082%202.7265-1.2237%202.7265-2.9811m12.7296-4.6237v8.8366c0%203.6382-2.1435%205.1246-4.6811%205.1246-2.3899%200-3.8188-1.6014-4.3609-2.9072l1.8807-.7802c.3367.8048%201.158%201.7493%202.4802%201.7493%201.626%200%202.628-1.0101%202.628-2.8908v-.7063h-.074c-.4845.5995-1.4207%201.1169-2.5951%201.1169-2.4637%200-4.714-2.1434-4.714-4.9028%200-2.7758%202.2585-4.9439%204.714-4.9439%201.1744%200%202.1106.5256%202.5951%201.1004h.074v-.7966zm-1.9053%204.6483c0-1.7328-1.158-3.0058-2.628-3.0058-1.4947%200-2.743%201.2647-2.743%203.0058%200%201.7164%201.2483%202.9647%202.743%202.9647%201.47%200%202.628-1.2483%202.628-2.9647m5.691-9.86319V19.6912h-2.1599V5.22081zm8.5081%2011.46459%201.6754%201.1169c-.5421.8049-1.8478%202.1846-4.1063%202.1846-2.8004%200-4.8125-2.1599-4.8125-4.9193%200-2.9237%202.0367-4.9193%204.5744-4.9193%202.554%200%203.8023%202.0285%204.213%203.129l.2217.5584-6.5782%202.7266c.501.9855%201.2894%201.4946%202.3898%201.4946%201.1005%200%201.8643-.5502%202.4227-1.3715m-5.1656-1.7739%204.4019-1.8231c-.2464-.616-.9691-1.043-1.8314-1.043-1.1005%200-2.628.9691-2.5705%202.8661%22/%3E%3C/svg%3E\" draggable=\"false\" style=\"position: absolute; left: 0px; top: 0px; width: 66px; height: 26px; user-select: none; border: 0px; padding: 0px; margin: 0px;\" width=\"66\" height=\"26\"></div></a></div></div><div></div><div><div style=\"display: inline-flex; position: absolute; right: 0px; bottom: 0px;\"><div class=\"gmnoprint\" style=\"z-index: 1000001;\"><div draggable=\"false\" class=\"gm-style-cc\" style=\"user-select: none; position: relative; height: 14px; line-height: 14px;\"><div style=\"opacity: 0.7; width: 100%; height: 100%; position: absolute;\"><div style=\"width: 1px;\"></div><div style=\"background-color: rgb(245, 245, 245); width: auto; height: 100%; margin-left: 1px;\"></div></div><div style=\"position: relative; padding-right: 6px; padding-left: 6px; box-sizing: border-box; font-family: Roboto, Arial, sans-serif; font-size: 10px; color: rgb(0, 0, 0); white-space: nowrap; direction: ltr; text-align: right; vertical-align: middle; display: inline-block;\"><button draggable=\"false\" aria-label=\"Keyboard shortcuts\" title=\"Keyboard shortcuts\" type=\"button\" style=\"background: none; display: inline-block; border: 0px; margin: 0px; padding: 0px; text-transform: none; appearance: none; position: relative; cursor: pointer; user-select: none; color: rgb(0, 0, 0); font-family: inherit; line-height: inherit;\">Keyboard shortcuts</button></div></div></div><div class=\"gmnoprint\" style=\"z-index: 1000001;\"><div draggable=\"false\" class=\"gm-style-cc\" style=\"user-select: none; position: relative; height: 14px; line-height: 14px;\"><div style=\"opacity: 0.7; width: 100%; height: 100%; position: absolute;\"><div style=\"width: 1px;\"></div><div style=\"background-color: rgb(245, 245, 245); width: auto; height: 100%; margin-left: 1px;\"></div></div><div style=\"position: relative; padding-right: 6px; padding-left: 6px; box-sizing: border-box; font-family: Roboto, Arial, sans-serif; font-size: 10px; color: rgb(0, 0, 0); white-space: nowrap; direction: ltr; text-align: right; vertical-align: middle; display: inline-block;\"><button draggable=\"false\" aria-label=\"Map Data\" title=\"Map Data\" type=\"button\" style=\"background: none; border: 0px; margin: 0px; padding: 0px; text-transform: none; appearance: none; position: relative; cursor: pointer; user-select: none; color: rgb(0, 0, 0); font-family: inherit; line-height: inherit; display: none;\">Map Data</button><span style=\"\">Map data ©2026 Google</span></div></div></div><div class=\"gmnoscreen\"><div style=\"font-family: Roboto, Arial, sans-serif; font-size: 11px; color: rgb(0, 0, 0); direction: ltr; text-align: right; background-color: rgb(245, 245, 245);\">Map data ©2026 Google</div></div><button draggable=\"false\" aria-label=\"Map Scale: 5 km per 47 pixels\" title=\"Map Scale: 5 km per 47 pixels\" type=\"button\" class=\"gm-style-cc\" aria-describedby=\"3063AFBC-995A-4B8B-BFE5-B65A1A6FE764\" style=\"background: none; display: none; border: 0px; margin: 0px; padding: 0px; text-transform: none; appearance: none; position: relative; cursor: pointer; user-select: none; height: 14px; line-height: 14px;\"><div style=\"opacity: 0.7; width: 100%; height: 100%; position: absolute;\"><div style=\"width: 1px;\"></div><div style=\"background-color: rgb(245, 245, 245); width: auto; height: 100%; margin-left: 1px;\"></div></div><div style=\"position: relative; padding-right: 6px; padding-left: 6px; box-sizing: border-box; font-family: Roboto, Arial, sans-serif; font-size: 10px; color: rgb(0, 0, 0); white-space: nowrap; direction: ltr; text-align: right; vertical-align: middle; display: inline-block;\"><span style=\"color: rgb(0, 0, 0);\">5 km </span><div style=\"position: relative; display: inline-block; height: 8px; bottom: -1px; width: 51px;\"><div style=\"width: 100%; height: 4px; position: absolute; left: 0px; top: 0px;\"></div><div style=\"width: 4px; height: 8px; left: 0px; top: 0px;\"></div><div style=\"width: 4px; height: 8px; position: absolute; right: 0px; bottom: 0px;\"></div><div style=\"position: absolute; background-color: rgb(0, 0, 0); height: 2px; left: 1px; bottom: 1px; right: 1px;\"></div><div style=\"position: absolute; width: 2px; height: 6px; left: 1px; top: 1px; background-color: rgb(0, 0, 0);\"></div><div style=\"width: 2px; height: 6px; position: absolute; background-color: rgb(0, 0, 0); bottom: 1px; right: 1px;\"></div></div></div><span id=\"3063AFBC-995A-4B8B-BFE5-B65A1A6FE764\" style=\"display: none;\">Click to toggle between metric and imperial units</span></button><div class=\"gmnoprint gm-style-cc\" draggable=\"false\" style=\"z-index: 1000001; user-select: none; position: relative; height: 14px; line-height: 14px;\"><div style=\"opacity: 0.7; width: 100%; height: 100%; position: absolute;\"><div style=\"width: 1px;\"></div><div style=\"background-color: rgb(245, 245, 245); width: auto; height: 100%; margin-left: 1px;\"></div></div><div style=\"position: relative; padding-right: 6px; padding-left: 6px; box-sizing: border-box; font-family: Roboto, Arial, sans-serif; font-size: 10px; color: rgb(0, 0, 0); white-space: nowrap; direction: ltr; text-align: right; vertical-align: middle; display: inline-block;\"><a aria-label=\"Terms (opens in new tab)\" href=\"https://www.google.com/intl/en-US_US/help/terms_maps.html\" target=\"_blank\" rel=\"noopener\" style=\"text-decoration: none; cursor: pointer; color: rgb(0, 0, 0);\">Terms</a></div></div><div draggable=\"false\" class=\"gm-style-cc\" style=\"user-select: none; position: relative; height: 14px; line-height: 14px;\"><div style=\"opacity: 0.7; width: 100%; height: 100%; position: absolute;\"><div style=\"width: 1px;\"></div><div style=\"background-color: rgb(245, 245, 245); width: auto; height: 100%; margin-left: 1px;\"></div></div><div style=\"position: relative; padding-right: 6px; padding-left: 6px; box-sizing: border-box; font-family: Roboto, Arial, sans-serif; font-size: 10px; color: rgb(0, 0, 0); white-space: nowrap; direction: ltr; text-align: right; vertical-align: middle; display: inline-block;\"><a target=\"_blank\" rel=\"noopener\" title=\"Report errors in the road map or imagery to Google\" dir=\"ltr\" href=\"https://www.google.com/maps/@45.6572863,-75.39496,10z/data=!10m1!1e1!12b1?source=apiv3&rapsrc=apiv3\" style=\"font-family: Roboto, Arial, sans-serif; font-size: 10px; text-decoration: none; position: relative; color: rgb(0, 0, 0);\">Report a map error</a></div></div></div></div></div></div></div>\n\n\t<!-- Category locations list -->\n<div class=\"mb-2 expand_setting d-none \" id=\"locations\" customlabelreplaced=\"\">\n\t\t<h2 class=\"sr-only\" customlabelreplaced=\"\">Category Locations List</h2>\n\t\t<div class=\"mapnav_container\" customlabelreplaced=\"\">\n\t\t\t<div id=\"mapnav_text\" customlabelreplaced=\"\">\n\t\t\t\t<!-- Tabs Content -->\n\t\t\t\t<div id=\"all-categories\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t<div class=\"loc_category\" id=\"Entertainment\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t<h3 class=\"h4 font-weight-bold maplist-header\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\tEntertainment\n\t\t\t\t\t\t\t\t\t</h3>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<ul class=\"maplist-items\" id=\"Entertainment_list\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tBibliothèque Bernard-Lonergan\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tCarrefour culturel Estacade\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t</ul>\n\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t<div class=\"loc_category\" id=\"Food\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t<h3 class=\"h4 font-weight-bold maplist-header\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\tFood\n\t\t\t\t\t\t\t\t\t</h3>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<ul class=\"maplist-items\" id=\"Food_list\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tÀ Outrance\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tA&W\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tLa Trappe à Fromage\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tMcDonald's\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tPapa Pizza\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tRestaurant et bar St-Hubert\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tRestaurant La Destination\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tRestaurant Lee\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tRivera Pizza Buckingham\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t\t\t\t<button class=\"btn btn-link p-0 btn-sm mb-4 show-more-btn\" aria-controls=\"Food_list\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\tShow More <span class=\"sr-only\" customlabelreplaced=\"\"> Food locations </span>\n\t\t\t\t\t\t\t\t\t\t</button>\n\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t<div class=\"loc_category\" id=\"ShopsAndService\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t<h3 class=\"h4 font-weight-bold maplist-header\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\tShops And Service\n\t\t\t\t\t\t\t\t\t</h3>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<ul class=\"maplist-items\" id=\"ShopsAndService_list\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tTigre Géant\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t</ul>\n\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t<div class=\"loc_category\" id=\"Recreation\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t<h3 class=\"h4 font-weight-bold maplist-header\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\tRecreation\n\t\t\t\t\t\t\t\t\t</h3>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<ul class=\"maplist-items\" id=\"Recreation_list\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tCentre Aquatique Lucien-Houle\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tCentre Sportif de Buckingham\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tL’Atelier du Vin & Artisanats\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tSalle de Quilles King Pin de Buckingham\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t</ul>\n\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t<div class=\"loc_category\" id=\"Banks\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t<h3 class=\"h4 font-weight-bold maplist-header\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\tBanks\n\t\t\t\t\t\t\t\t\t</h3>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<ul class=\"maplist-items\" id=\"Banks_list\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tCaisse Desjardins du Coeur-des-vallées\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t</ul>\n\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t<div class=\"loc_category\" id=\"Schools\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t<h3 class=\"h4 font-weight-bold maplist-header\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\tSchools\n\t\t\t\t\t\t\t\t\t</h3>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<ul class=\"maplist-items\" id=\"Schools_list\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tCentre la Cité\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tÉcole du Boisé\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tÉcole primaire de Buckingham\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tÉcole Ruisseau\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tÉcole Saint-Laurent\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tÉcole Saint-Michel\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tÉcole secondaire Hormisdas - Gamelin\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t\t\t\t<button class=\"btn btn-link p-0 btn-sm mb-4 show-more-btn\" aria-controls=\"Schools_list\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\tShow More <span class=\"sr-only\" customlabelreplaced=\"\"> Schools locations </span>\n\t\t\t\t\t\t\t\t\t\t</button>\n\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t<div class=\"loc_category\" id=\"Groceries\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t<h3 class=\"h4 font-weight-bold maplist-header\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\tGroceries\n\t\t\t\t\t\t\t\t\t</h3>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<ul class=\"maplist-items\" id=\"Groceries_list\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tIGA Marché Masson Angers Inc.\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tLa Boucherie Du Village\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tMaxi Gatineau Lépine\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tMetro Plus Buckingham\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t</ul>\n\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t<div class=\"loc_category\" id=\"Parks\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t<h3 class=\"h4 font-weight-bold maplist-header\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\tParks\n\t\t\t\t\t\t\t\t\t</h3>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<ul class=\"maplist-items\" id=\"Parks_list\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tParc à chien de Buckingham\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tParc Brady\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tParc du 8 octobre 1906\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tParc Maclaren\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t</ul>\n\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t<div class=\"loc_category\" id=\"Health\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t<h3 class=\"h4 font-weight-bold maplist-header\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\tHealth\n\t\t\t\t\t\t\t\t\t</h3>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<ul class=\"maplist-items\" id=\"Health_list\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tClinique dentaire de Buckingham\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tClinique Denturologiste P.M. Lavallée | Naturadent Gatineau\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tCLSC de Vallée-de-la-Lièvre\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tCoop Santé Basse-Lièvre\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tHôpital de Papineau\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tHôpital vétérinaire de Buckingham\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tPJC Jean Coutu\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t\t\t\t<button class=\"btn btn-link p-0 btn-sm mb-4 show-more-btn\" aria-controls=\"Health_list\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\tShow More <span class=\"sr-only\" customlabelreplaced=\"\"> Health locations </span>\n\t\t\t\t\t\t\t\t\t\t</button>\n\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t<div class=\"loc_category\" id=\"ParliamentofCanada\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t<h3 class=\"h4 font-weight-bold maplist-header\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\tParliament of Canada\n\t\t\t\t\t\t\t\t\t</h3>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<ul class=\"maplist-items\" id=\"ParliamentofCanada_list\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t<li customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a role=\"button\" customlabelreplaced=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tParliament of Canada\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t</ul>\n\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\n<div class=\"row-fluid\" id=\"googledirections\" customlabelreplaced=\"\"></div>\n\n\n\n\n\n\n\n\n\n\n\t</div>\n\n\t\n\n\n\n</div>\n</div></div></div></div><div class=\"scroll-section align-items-start px-xl-5 px-md-3\" customlabelreplaced=\"\"><div class=\"container-fluid\" customlabelreplaced=\"\"><div class=\"row\" customlabelreplaced=\"\"><div padding=\"\" class=\"border-top justify-content-start align-items-stretch flex-column d-flex text-center text-md-left py-4 py-md-5 col-12 col-lg-12\" customlabelreplaced=\"\">\n\n\t<div id=\"amenities\" class=\"property-detail-page-section w-100\" customlabelreplaced=\"\">\n\t\t<h2 class=\"mb-3\" customlabelreplaced=\"\">Amenities</h2>\n\t\t\n\nAt Ruisseaux Lépine, comfort and simplicity await you from day one. Each apartment offers hotel living at home with high-end features—stainless steel appliances, in-suite washer/dryer, electric fireplace, large storage area, generous balcony, quartz countertops, ceramic backsplashes, glass shower—for a functional, elegant and modern interior.\n\n\n\t\t\n\n\n\t\t\n\n\n\n\n\n\n\n <ul class=\"nav nav-tabs justify-content-md-center align-items-center w-100\" id=\"amenities-tab\" role=\"tablist\" customlabelreplaced=\"\">\n <li class=\"nav-item text-uppercase m-0\" role=\"presentation\" customlabelreplaced=\"\">\n <a class=\"nav-link active d-inline-block show\" id=\"community-amenities-tab\" role=\"tab\" data-toggle=\"tab\" href=\"https://www.brigil.com/apartments/qc/gatineau/ruisseaux-lepine-i/default#community-amenities\" aria-controls=\"community-amenities\" aria-selected=\"true\" customlabelreplaced=\"\">\n <span class=\"d-none d-lg-inline-block\" customlabelreplaced=\"\">Community Amenities</span>\n <span class=\"d-inline-block d-lg-none\" customlabelreplaced=\"\">Community</span>\n </a>\n </li>\n <li class=\"nav-item text-uppercase m-0\" role=\"presentation\" customlabelreplaced=\"\">\n <a class=\"nav-link d-inline-block\" id=\"apartment-amenities-tab\" role=\"tab\" data-toggle=\"tab\" href=\"https://www.brigil.com/apartments/qc/gatineau/ruisseaux-lepine-i/default#apartment-amenities\" aria-controls=\"apartment-amenities\" aria-selected=\"false\" customlabelreplaced=\"\" tabindex=\"-1\">\n <span class=\"d-none d-lg-inline-block\" customlabelreplaced=\"\">Apartment Amenities</span>\n <span class=\"d-inline-block d-lg-none\" customlabelreplaced=\"\">Apartment</span>\n </a>\n </li>\n </ul>\n <div id=\"amenitiesListBlock\" class=\"w-100 tab-content p-0 p-lg-4 mb-4 border border-top-0\" customlabelreplaced=\"\">\n <div class=\"tab-pane active community-amenities show\" id=\"community-amenities\" role=\"tabpanel\" aria-labelledby=\"community-amenities-tab\" customlabelreplaced=\"\" tabindex=\"0\">\n\n <div class=\"row\" id=\"CommunityAmenities\" customlabelreplaced=\"\">\n <div class=\"col-lg-6 title-style-default text-left mt-lg-2 mb-lg-4 w-100 p-3\" customlabelreplaced=\"\">\n <ul class=\"list-unstyled ysi-amenity-list\" customlabelreplaced=\"\">\n <li class=\"p-0 py-md-2 pl-md-2 pr-md-3 mb-2 mb-lg-0 border-bottom innerlist \" customlabelreplaced=\"\">\n <div class=\"ysi-amenity-item d-flex justify-content-between align-items-top p-2 p-lg-0\" customlabelreplaced=\"\">\n\n <span class=\"col p-0\" data-selenium-id=\"CommAmenity1\" customlabelreplaced=\"\">Contemporary design</span>\n\n <span customlabelreplaced=\"\">\n\n\n </span>\n </div>\n </li>\n <li class=\"p-0 py-md-2 pl-md-2 pr-md-3 mb-2 mb-lg-0 border-bottom innerlist ca_00\" customlabelreplaced=\"\">\n <div class=\"ysi-amenity-item d-flex justify-content-between align-items-top p-2 p-lg-0\" customlabelreplaced=\"\">\n\n <span class=\"col p-0\" data-selenium-id=\"CommAmenity2\" customlabelreplaced=\"\">Generous fenestration</span>\n\n <span customlabelreplaced=\"\">\n\n <a aria-label=\"Amenities photo Generous fenestration\" class=\"amenities-camera-img d-none d-lg-inline btn p-0\" data-selenium-id=\"CommAmenityPic2\" data-slide-ids=\"ca_00\" customlabelreplaced=\"\">\n <svg width=\"16px\" height=\"16px\" fill=\"currentColor\" class=\"text-xs\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z\"></path></svg>\n </a>\n\n </span>\n </div>\n <div class=\"w-100 amenities-info-block d-block d-lg-none px-2 pt-0 pb-2\" customlabelreplaced=\"\">\n <p class=\"text-xs mb-2 mb-lg-0\" customlabelreplaced=\"\">\n \n </p>\n <div class=\"photogallery\" customlabelreplaced=\"\">\n <div class=\"item-index\" customlabelreplaced=\"\">1 of 1</div>\n \t<div class=\"ysi-picture-widget ysi-picture-wrapper \" customlabelreplaced=\"\">\n\t<picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/252329/4s3a3751.jpg\">\n<source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/252329/4s3a3751.jpg\">\n<source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/252329/4s3a3751.jpg\">\n<source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/252329/4s3a3751.jpg\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/252329/4s3a3751.jpg\" class=\"w-100 img-fluid\" alt=\"A living room with a chair, a table, and a shelf with vases.\" loading=\"lazy\">\n</picture>\n\n\n\n\t</div>\n\n\n </div>\n </div>\n </li>\n <li class=\"p-0 py-md-2 pl-md-2 pr-md-3 mb-2 mb-lg-0 border-bottom innerlist \" customlabelreplaced=\"\">\n <div class=\"ysi-amenity-item d-flex justify-content-between align-items-top p-2 p-lg-0\" customlabelreplaced=\"\">\n\n <span class=\"col p-0\" data-selenium-id=\"CommAmenity3\" customlabelreplaced=\"\">Independant entrance</span>\n\n <span customlabelreplaced=\"\">\n\n\n </span>\n </div>\n </li>\n <li class=\"p-0 py-md-2 pl-md-2 pr-md-3 mb-2 mb-lg-0 border-bottom innerlist \" customlabelreplaced=\"\">\n <div class=\"ysi-amenity-item d-flex justify-content-between align-items-top p-2 p-lg-0\" customlabelreplaced=\"\">\n\n <span class=\"col p-0\" data-selenium-id=\"CommAmenity4\" customlabelreplaced=\"\">9-foot ceilings</span>\n\n <span customlabelreplaced=\"\">\n\n\n </span>\n </div>\n </li>\n <li class=\"p-0 py-md-2 pl-md-2 pr-md-3 mb-2 mb-lg-0 border-bottom innerlist \" customlabelreplaced=\"\">\n <div class=\"ysi-amenity-item d-flex justify-content-between align-items-top p-2 p-lg-0\" customlabelreplaced=\"\">\n\n <span class=\"col p-0\" data-selenium-id=\"CommAmenity5\" customlabelreplaced=\"\">Brand-new apartments</span>\n\n <span customlabelreplaced=\"\">\n\n\n </span>\n </div>\n </li>\n </ul>\n </div>\n\n <section aria-label=\"Image carousel\" id=\"sidCommunityAmenitiesImages\" class=\"photogallery with-captions col-lg-6 carousel slide d-none d-lg-block pl-md-3\" data-ride=\"carousel\" data-interval=\"false\" data-gallery-type=\"amenitiescarousel\" data-initialized=\"true\">\n <div class=\"carousel-inner\" aria-live=\"assertive\" customlabelreplaced=\"\">\n <div class=\"carousel-item active\" id=\"ca_00\" customlabelreplaced=\"\">\n <div class=\"item\" customlabelreplaced=\"\">\n \t<div class=\"ysi-picture-widget ysi-picture-wrapper \" customlabelreplaced=\"\">\n\t<picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/252329/4s3a3751.jpg\">\n<source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/252329/4s3a3751.jpg\">\n<source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/252329/4s3a3751.jpg\">\n<source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/252329/4s3a3751.jpg\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/252329/4s3a3751.jpg\" class=\"d-block m-auto img-fluid\" alt=\"A living room with a chair, a table, and a shelf with vases.\">\n</picture>\n\n\n\n\t</div>\n\n\n <div class=\"item-caption w-100 bg-dark text-white p-2\" customlabelreplaced=\"\">Generous fenestration</div>\n <div class=\"item-index\" customlabelreplaced=\"\">1 of 1</div>\n </div>\n </div>\n </div>\n </section>\n </div>\n </div>\n\n <div class=\"tab-pane apartment-amenities\" id=\"apartment-amenities\" role=\"tabpanel\" aria-labelledby=\"apartment-amenities-tab\" aria-hidden=\"true\" customlabelreplaced=\"\">\n\n <div class=\"row\" id=\"ApartmentAmenities\" customlabelreplaced=\"\">\n <div class=\"col-lg-6 title-style-default text-left mt-lg-2 mb-lg-4 w-100 p-3\" customlabelreplaced=\"\">\n <ul class=\"list-unstyled ysi-amenity-list\" customlabelreplaced=\"\">\n\n <li class=\"p-0 py-md-2 pl-md-2 pr-md-3 mb-2 mb-lg-0 border-bottom innerlist aa_00\" customlabelreplaced=\"\">\n <div class=\"ysi-amenity-item d-flex justify-content-between align-items-top p-1 py-md-0\" customlabelreplaced=\"\">\n\n <span class=\"col p-0\" data-selenium-id=\"AptAmenity1\" customlabelreplaced=\"\">Stainless-steel refrigerator</span>\n <span customlabelreplaced=\"\">\n <a aria-label=\"Amenity Photo Stainless-steel refrigerator\" class=\"amenities-camera-img d-none d-lg-inline btn p-0\" data-selenium-id=\"AptAmenityPic1\" data-slide-ids=\"aa_00\" customlabelreplaced=\"\">\n <svg width=\"16px\" height=\"16px\" fill=\"currentColor\" class=\"text-xs\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z\"></path></svg>\n </a>\n </span>\n </div>\n <div class=\"w-100 amenities-info-block d-block d-lg-none px-2 pt-0 pb-2\" customlabelreplaced=\"\">\n <p class=\"text-xs mb-2 mb-lg-0\" customlabelreplaced=\"\">\n \n </p>\n <div class=\"photogallery\" customlabelreplaced=\"\">\n <div class=\"item-index\" customlabelreplaced=\"\">1 of 1</div>\n \t<div class=\"ysi-picture-widget ysi-picture-wrapper \" customlabelreplaced=\"\">\n\t<picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/252329/4s3a3812-1920x1080(1).jpg\">\n<source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/252329/4s3a3812-1920x1080(1).jpg\">\n<source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/252329/4s3a3812-1920x1080(1).jpg\">\n<source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/252329/4s3a3812-1920x1080(1).jpg\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/252329/4s3a3812-1920x1080(1).jpg\" class=\"w-100 img-fluid\" alt=\"A modern kitchen with a stove top oven and a refrigerator.\" loading=\"lazy\">\n</picture>\n\n\n\n\t</div>\n\n\n </div>\n </div>\n </li>\n <li class=\"p-0 py-md-2 pl-md-2 pr-md-3 mb-2 mb-lg-0 border-bottom innerlist \" customlabelreplaced=\"\">\n <div class=\"ysi-amenity-item d-flex justify-content-between align-items-top p-1 py-md-0\" customlabelreplaced=\"\">\n\n <span class=\"col p-0\" data-selenium-id=\"AptAmenity2\" customlabelreplaced=\"\">Stainless-steel stove</span>\n <span customlabelreplaced=\"\">\n </span>\n </div>\n </li>\n <li class=\"p-0 py-md-2 pl-md-2 pr-md-3 mb-2 mb-lg-0 border-bottom innerlist \" customlabelreplaced=\"\">\n <div class=\"ysi-amenity-item d-flex justify-content-between align-items-top p-1 py-md-0\" customlabelreplaced=\"\">\n\n <span class=\"col p-0\" data-selenium-id=\"AptAmenity3\" customlabelreplaced=\"\">Stainless-steel dishwasher</span>\n <span customlabelreplaced=\"\">\n </span>\n </div>\n </li>\n <li class=\"p-0 py-md-2 pl-md-2 pr-md-3 mb-2 mb-lg-0 border-bottom innerlist \" customlabelreplaced=\"\">\n <div class=\"ysi-amenity-item d-flex justify-content-between align-items-top p-1 py-md-0\" customlabelreplaced=\"\">\n\n <span class=\"col p-0\" data-selenium-id=\"AptAmenity4\" customlabelreplaced=\"\">Stacked washer and dryer</span>\n <span customlabelreplaced=\"\">\n </span>\n </div>\n </li>\n <li class=\"p-0 py-md-2 pl-md-2 pr-md-3 mb-2 mb-lg-0 border-bottom innerlist aa_10\" customlabelreplaced=\"\">\n <div class=\"ysi-amenity-item d-flex justify-content-between align-items-top p-1 py-md-0\" customlabelreplaced=\"\">\n\n <span class=\"col p-0\" data-selenium-id=\"AptAmenity5\" customlabelreplaced=\"\">Electric fireplace in the living room (selected units)</span>\n <span customlabelreplaced=\"\">\n <a aria-label=\"Amenity Photo Electric fireplace in the living room (selected units)\" class=\"amenities-camera-img d-none d-lg-inline btn p-0\" data-selenium-id=\"AptAmenityPic5\" data-slide-ids=\"aa_10\" customlabelreplaced=\"\">\n <svg width=\"16px\" height=\"16px\" fill=\"currentColor\" class=\"text-xs\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z\"></path></svg>\n </a>\n </span>\n </div>\n <div class=\"w-100 amenities-info-block d-block d-lg-none px-2 pt-0 pb-2\" customlabelreplaced=\"\">\n <p class=\"text-xs mb-2 mb-lg-0\" customlabelreplaced=\"\">\n \n </p>\n <div class=\"photogallery\" customlabelreplaced=\"\">\n <div class=\"item-index\" customlabelreplaced=\"\">1 of 1</div>\n \t<div class=\"ysi-picture-widget ysi-picture-wrapper \" customlabelreplaced=\"\">\n\t<picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/252329/4s3a3722_modif-2-17-1920x1080.jpg\">\n<source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/252329/4s3a3722_modif-2-17-1920x1080.jpg\">\n<source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/252329/4s3a3722_modif-2-17-1920x1080.jpg\">\n<source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/252329/4s3a3722_modif-2-17-1920x1080.jpg\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/252329/4s3a3722_modif-2-17-1920x1080.jpg\" class=\"w-100 img-fluid\" alt=\"A living room with a white couch, a fireplace, and a television mounted on the wall.\" loading=\"lazy\">\n</picture>\n\n\n\n\t</div>\n\n\n </div>\n </div>\n </li>\n <li class=\"p-0 py-md-2 pl-md-2 pr-md-3 mb-2 mb-lg-0 border-bottom innerlist \" customlabelreplaced=\"\">\n <div class=\"ysi-amenity-item d-flex justify-content-between align-items-top p-1 py-md-0\" customlabelreplaced=\"\">\n\n <span class=\"col p-0\" data-selenium-id=\"AptAmenity6\" customlabelreplaced=\"\">Spacious balconies</span>\n <span customlabelreplaced=\"\">\n </span>\n </div>\n </li>\n <li class=\"p-0 py-md-2 pl-md-2 pr-md-3 mb-2 mb-lg-0 border-bottom innerlist \" customlabelreplaced=\"\">\n <div class=\"ysi-amenity-item d-flex justify-content-between align-items-top p-1 py-md-0\" customlabelreplaced=\"\">\n\n <span class=\"col p-0\" data-selenium-id=\"AptAmenity7\" customlabelreplaced=\"\">High-speed Internet</span>\n <span customlabelreplaced=\"\">\n </span>\n </div>\n </li>\n <li class=\"p-0 py-md-2 pl-md-2 pr-md-3 mb-2 mb-lg-0 border-bottom innerlist \" customlabelreplaced=\"\">\n <div class=\"ysi-amenity-item d-flex justify-content-between align-items-top p-1 py-md-0\" customlabelreplaced=\"\">\n\n <span class=\"col p-0\" data-selenium-id=\"AptAmenity8\" customlabelreplaced=\"\">Quartz countertops</span>\n <span customlabelreplaced=\"\">\n </span>\n </div>\n </li>\n <li class=\"p-0 py-md-2 pl-md-2 pr-md-3 mb-2 mb-lg-0 border-bottom innerlist aa_20\" customlabelreplaced=\"\">\n <div class=\"ysi-amenity-item d-flex justify-content-between align-items-top p-1 py-md-0\" customlabelreplaced=\"\">\n\n <span class=\"col p-0\" data-selenium-id=\"AptAmenity9\" customlabelreplaced=\"\">Glass shower</span>\n <span customlabelreplaced=\"\">\n <a aria-label=\"Amenity Photo Glass shower\" class=\"amenities-camera-img d-none d-lg-inline btn p-0\" data-selenium-id=\"AptAmenityPic9\" data-slide-ids=\"aa_20\" customlabelreplaced=\"\">\n <svg width=\"16px\" height=\"16px\" fill=\"currentColor\" class=\"text-xs\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z\"></path></svg>\n </a>\n </span>\n </div>\n <div class=\"w-100 amenities-info-block d-block d-lg-none px-2 pt-0 pb-2\" customlabelreplaced=\"\">\n <p class=\"text-xs mb-2 mb-lg-0\" customlabelreplaced=\"\">\n \n </p>\n <div class=\"photogallery\" customlabelreplaced=\"\">\n <div class=\"item-index\" customlabelreplaced=\"\">1 of 1</div>\n \t<div class=\"ysi-picture-widget ysi-picture-wrapper \" customlabelreplaced=\"\">\n\t<picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/252329/4s3a3841-1920x1080(1).jpg\">\n<source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/252329/4s3a3841-1920x1080(1).jpg\">\n<source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/252329/4s3a3841-1920x1080(1).jpg\">\n<source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/252329/4s3a3841-1920x1080(1).jpg\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/252329/4s3a3841-1920x1080(1).jpg\" class=\"w-100 img-fluid\" alt=\"A white bathroom with a marble picture on the wall.\" loading=\"lazy\">\n</picture>\n\n\n\n\t</div>\n\n\n </div>\n </div>\n </li>\n <li class=\"p-0 py-md-2 pl-md-2 pr-md-3 mb-2 mb-lg-0 border-bottom innerlist \" customlabelreplaced=\"\">\n <div class=\"ysi-amenity-item d-flex justify-content-between align-items-top p-1 py-md-0\" customlabelreplaced=\"\">\n\n <span class=\"col p-0\" data-selenium-id=\"AptAmenity10\" customlabelreplaced=\"\">Storage lockers</span>\n <span customlabelreplaced=\"\">\n </span>\n </div>\n </li>\n <li class=\"p-0 py-md-2 pl-md-2 pr-md-3 mb-2 mb-lg-0 border-bottom innerlist \" customlabelreplaced=\"\">\n <div class=\"ysi-amenity-item d-flex justify-content-between align-items-top p-1 py-md-0\" customlabelreplaced=\"\">\n\n <span class=\"col p-0\" data-selenium-id=\"AptAmenity11\" customlabelreplaced=\"\">Water consumption fees</span>\n <span customlabelreplaced=\"\">\n </span>\n </div>\n </li>\n <li class=\"p-0 py-md-2 pl-md-2 pr-md-3 mb-2 mb-lg-0 border-bottom innerlist \" customlabelreplaced=\"\">\n <div class=\"ysi-amenity-item d-flex justify-content-between align-items-top p-1 py-md-0\" customlabelreplaced=\"\">\n\n <span class=\"col p-0\" data-selenium-id=\"AptAmenity12\" customlabelreplaced=\"\">High-end light fixtures, faucets, doors and moulding</span>\n <span customlabelreplaced=\"\">\n </span>\n </div>\n </li>\n <li class=\"p-0 py-md-2 pl-md-2 pr-md-3 mb-2 mb-lg-0 border-bottom innerlist \" customlabelreplaced=\"\">\n <div class=\"ysi-amenity-item d-flex justify-content-between align-items-top p-1 py-md-0\" customlabelreplaced=\"\">\n\n <span class=\"col p-0\" data-selenium-id=\"AptAmenity13\" customlabelreplaced=\"\">Multiple layers engineering floor</span>\n <span customlabelreplaced=\"\">\n </span>\n </div>\n </li>\n <li class=\"p-0 py-md-2 pl-md-2 pr-md-3 mb-2 mb-lg-0 border-bottom innerlist \" customlabelreplaced=\"\">\n <div class=\"ysi-amenity-item d-flex justify-content-between align-items-top p-1 py-md-0\" customlabelreplaced=\"\">\n\n <span class=\"col p-0\" data-selenium-id=\"AptAmenity14\" customlabelreplaced=\"\">Ceramic floor</span>\n <span customlabelreplaced=\"\">\n </span>\n </div>\n </li>\n </ul>\n </div>\n\n <section aria-label=\"Image carousel\" id=\"sidApartmentAmenitiesImages\" class=\"photogallery with-captions col-lg-6 carousel slide d-none d-lg-block pl-lg-3\" data-ride=\"carousel\" data-interval=\"false\" data-gallery-type=\"amenitiescarousel\">\n <div class=\"carousel-inner\" aria-live=\"assertive\" customlabelreplaced=\"\">\n <div class=\"carousel-item active\" id=\"aa_00\" customlabelreplaced=\"\">\n <div class=\"item\" customlabelreplaced=\"\">\n \t<div class=\"ysi-picture-widget ysi-picture-wrapper \" customlabelreplaced=\"\">\n\t<picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/252329/4s3a3812-1920x1080(1).jpg\">\n<source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/252329/4s3a3812-1920x1080(1).jpg\">\n<source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/252329/4s3a3812-1920x1080(1).jpg\">\n<source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/252329/4s3a3812-1920x1080(1).jpg\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/252329/4s3a3812-1920x1080(1).jpg\" class=\"d-block m-auto img-fluid\" alt=\"A modern kitchen with a stove top oven and a refrigerator.\">\n</picture>\n\n\n\n\t</div>\n\n\n <div class=\"item-caption w-100 bg-dark text-white p-2\" customlabelreplaced=\"\">Stainless-steel refrigerator</div>\n <div class=\"item-index\" customlabelreplaced=\"\">1 of 3</div>\n </div>\n </div>\n <div class=\"carousel-item \" id=\"aa_10\" customlabelreplaced=\"\">\n <div class=\"item\" customlabelreplaced=\"\">\n \t<div class=\"ysi-picture-widget ysi-picture-wrapper \" customlabelreplaced=\"\">\n\t<picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/252329/4s3a3722_modif-2-17-1920x1080.jpg\">\n<source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/252329/4s3a3722_modif-2-17-1920x1080.jpg\">\n<source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/252329/4s3a3722_modif-2-17-1920x1080.jpg\">\n<source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/252329/4s3a3722_modif-2-17-1920x1080.jpg\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/252329/4s3a3722_modif-2-17-1920x1080.jpg\" class=\"d-block m-auto img-fluid\" alt=\"A living room with a white couch, a fireplace, and a television mounted on the wall.\" loading=\"lazy\">\n</picture>\n\n\n\n\t</div>\n\n\n <div class=\"item-caption w-100 bg-dark text-white p-2\" customlabelreplaced=\"\">Electric fireplace in the living room (selected units)</div>\n <div class=\"item-index\" customlabelreplaced=\"\">2 of 3</div>\n </div>\n </div>\n <div class=\"carousel-item \" id=\"aa_20\" customlabelreplaced=\"\">\n <div class=\"item\" customlabelreplaced=\"\">\n \t<div class=\"ysi-picture-widget ysi-picture-wrapper \" customlabelreplaced=\"\">\n\t<picture>\n<source media=\"(min-width: 1200px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/252329/4s3a3841-1920x1080(1).jpg\">\n<source media=\"(min-width: 992px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/252329/4s3a3841-1920x1080(1).jpg\">\n<source media=\"(min-width: 768px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/252329/4s3a3841-1920x1080(1).jpg\">\n<source media=\"(min-width: 576px)\" srcset=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/252329/4s3a3841-1920x1080(1).jpg\"><img src=\"https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/252329/4s3a3841-1920x1080(1).jpg\" class=\"d-block m-auto img-fluid\" alt=\"A white bathroom with a marble picture on the wall.\" loading=\"lazy\">\n</picture>\n\n\n\n\t</div>\n\n\n <div class=\"item-caption w-100 bg-dark text-white p-2\" customlabelreplaced=\"\">Glass shower</div>\n <div class=\"item-index\" customlabelreplaced=\"\">3 of 3</div>\n </div>\n </div>\n <button type=\"button\" class=\"carousel-control-prev gallery-prev\" data-target=\"#sidApartmentAmenitiesImages\" data-slide=\"prev\" data-selenium-id=\"CarouserlBtnPrevious\" aria-label=\"Previous Image\" customlabelreplaced=\"\"></button>\n <button type=\"button\" class=\"carousel-control-next gallery-next\" data-target=\"#sidApartmentAmenitiesImages\" data-slide=\"next\" data-selenium-id=\"CarouserlBtnNext\" aria-label=\"Next Image\" customlabelreplaced=\"\"></button>\n </div>\n </section>\n </div>\n </div>\n </div>\n <!-- Pet policy -->\n <div class=\"row section-divider-1\" customlabelreplaced=\"\">\n <div class=\"col-12 p-0\" customlabelreplaced=\"\">\n <h2 class=\"mt-5 mb-4\" customlabelreplaced=\"\">Pet Policy</h2>\n \n\n <div class=\"row\" customlabelreplaced=\"\">\n\n <div class=\"col-12 col-lg col-md-6 mb-5\" customlabelreplaced=\"\">\n <div class=\"h5 font-weight-normal\" customlabelreplaced=\"\">\n\n <span aria-hidden=\"true\" class=\"fas fa-paw\" customlabelreplaced=\"\"></span>\n\n <span class=\"ml-2\" customlabelreplaced=\"\">\n <span data-selenium-id=\"PetCategory1\" role=\"heading\" aria-level=\"3\" customlabelreplaced=\"\">Pets </span>\n </span>\n\n </div>\n\n <div class=\"pet-info w-100\" customlabelreplaced=\"\">\n <span customlabelreplaced=\"\">\n Allowed\n </span>\n </div>\n <div class=\"rent-info w-100 mt-2\" customlabelreplaced=\"\">\n\n </div>\n\n <div class=\"comment-block w-100 mt-2\" customlabelreplaced=\"\">\n </div>\n\n </div>\n <div class=\"col-12 col-lg col-md-6 mb-5\" customlabelreplaced=\"\">\n <div class=\"h5 font-weight-normal\" customlabelreplaced=\"\">\n\n <span aria-hidden=\"true\" class=\"fas fa-cat\" customlabelreplaced=\"\"></span>\n\n <span class=\"ml-2\" customlabelreplaced=\"\">\n <span data-selenium-id=\"PetCategory2\" role=\"heading\" aria-level=\"3\" customlabelreplaced=\"\">Cats </span>\n </span>\n\n </div>\n\n <div class=\"pet-info w-100\" customlabelreplaced=\"\">\n <span customlabelreplaced=\"\">\n Allowed\n </span>\n </div>\n <div class=\"rent-info w-100 mt-2\" customlabelreplaced=\"\">\n\n </div>\n\n <div class=\"comment-block w-100 mt-2\" customlabelreplaced=\"\">\n </div>\n\n </div>\n <div class=\"col-12 col-lg col-md-6 mb-5\" customlabelreplaced=\"\">\n <div class=\"h5 font-weight-normal\" customlabelreplaced=\"\">\n\n <span aria-hidden=\"true\" class=\"fas fa-dog\" customlabelreplaced=\"\"></span>\n\n <span class=\"ml-2\" customlabelreplaced=\"\">\n <span data-selenium-id=\"PetCategory3\" role=\"heading\" aria-level=\"3\" customlabelreplaced=\"\">Dogs </span>\n </span>\n\n </div>\n\n <div class=\"pet-info w-100\" customlabelreplaced=\"\">\n <span customlabelreplaced=\"\">\n Allowed\n </span>\n </div>\n <div class=\"rent-info w-100 mt-2\" customlabelreplaced=\"\">\n\n </div>\n\n <div class=\"comment-block w-100 mt-2\" customlabelreplaced=\"\">\n </div>\n\n </div>\n\n </div>\n\n </div>\n </div>\n \n \n \n\n\n\t\t\n\n\n\n\t</div>\n\n\n\n</div></div></div></div><div class=\"scroll-section align-items-start px-xl-8 px-md-3\" customlabelreplaced=\"\"><div class=\"container-fluid\" customlabelreplaced=\"\"><div class=\"row\" customlabelreplaced=\"\"><div class=\"border-top justify-content-start align-items-stretch flex-column d-flex text-center text-md-left py-4 py-md-5 col-12 col-lg-12\" customlabelreplaced=\"\">\n\n\n</div></div></div></div><div class=\"scroll-section align-items-start px-xl-5 px-md-3\" customlabelreplaced=\"\"><div class=\"container-fluid\" customlabelreplaced=\"\"><div class=\"row\" customlabelreplaced=\"\"><div class=\"border-top justify-content-start align-items-stretch flex-column d-flex text-left py-4 py-md-5 col-12 col-lg-12\" customlabelreplaced=\"\">\n <div id=\"faq\" class=\"property-detail-page-section\" customlabelreplaced=\"\">\n <h2 class=\"mb-3\" customlabelreplaced=\"\">Frequently Asked Questions</h2>\n \n\n<div class=\"faq-widget w-100\" customlabelreplaced=\"\">\n <div class=\"container\" customlabelreplaced=\"\">\n <div class=\"row\" id=\"faq-data\" customlabelreplaced=\"\">\n <div class=\"col-12\" customlabelreplaced=\"\">\n <div id=\"partialfaqaccordionlayout\" customlabelreplaced=\"\">\n <div class=\"faq-accordion-widget my-lg-5 my-3\" customlabelreplaced=\"\">\n <div id=\"faqAccordion\" class=\"accordion\" aria-multiselectable=\"true\" customlabelreplaced=\"\">\n <div itemscope=\"\" itemprop=\"mainEntity\" itemtype=\"https://schema.org/Question\" class=\"card mb-3\" customlabelreplaced=\"\">\n <div class=\"card-header\" id=\"heading_1\" customlabelreplaced=\"\">\n <h2 itemprop=\"name\" class=\"mb-0 h5\" customlabelreplaced=\"\">\n <a data-toggle=\"collapse\" href=\"https://www.brigil.com/apartments/qc/gatineau/ruisseaux-lepine-i/default#faqAccordion_1\" aria-expanded=\"false\" aria-controls=\"faqAccordion_1\" class=\"text-decoration-none accordion-trigger collapsed\" customlabelreplaced=\"\">\n <b class=\"fa text-muted text-xs mt-1 float-right fa-caret-down\" aria-hidden=\"true\" customlabelreplaced=\"\"></b>\n <span class=\"question\" customlabelreplaced=\"\">What is the best neighbourhood to rent an apartment in Gatineau?</span>\n\n </a>\n </h2>\n </div>\n <div itemscope=\"\" itemprop=\"acceptedAnswer\" itemtype=\"https://schema.org/Answer\" id=\"faqAccordion_1\" class=\"collapse\" aria-labelledby=\"heading_1\" style=\"\" customlabelreplaced=\"\">\n <div class=\"card-body\" customlabelreplaced=\"\">\n <div class=\"row\" customlabelreplaced=\"\">\n <div class=\"col-12\" itemprop=\"text\" customlabelreplaced=\"\">\n <p class=\"m-0 p-0 answer\" customlabelreplaced=\"\"></p><p customlabelreplaced=\"\">If you're searching for a peaceful yet well-connected area to rent in Gatineau, the Buckingham sector is a top choice. Ruisseaux Lépine offers modern 2- and 3-bedroom apartments in a quiet residential enclave surrounded by nature, while still maintaining proximity to Gatineau’s urban offerings. Residents enjoy a calm and refined living environment with convenient access to green spaces, transit, and local cafés. For those who appreciate a balance of serenity and sophistication, Buckingham is one of Gatineau’s most desirable areas for rental living.</p>\n </div>\n </div>\n </div>\n </div>\n </div>\n <div itemscope=\"\" itemprop=\"mainEntity\" itemtype=\"https://schema.org/Question\" class=\"card mb-3\" customlabelreplaced=\"\">\n <div class=\"card-header\" id=\"heading_2\" customlabelreplaced=\"\">\n <h2 itemprop=\"name\" class=\"mb-0 h5\" customlabelreplaced=\"\">\n <a data-toggle=\"collapse\" href=\"https://www.brigil.com/apartments/qc/gatineau/ruisseaux-lepine-i/default#faqAccordion_2\" aria-expanded=\"false\" aria-controls=\"faqAccordion_2\" class=\"text-decoration-none accordion-trigger collapsed\" customlabelreplaced=\"\">\n <b class=\"fa text-muted text-xs mt-1 float-right fa-caret-down\" aria-hidden=\"true\" customlabelreplaced=\"\"></b>\n <span class=\"question\" customlabelreplaced=\"\">What makes living in the Buckingham sector of Gatineau unique?</span>\n\n </a>\n </h2>\n </div>\n <div itemscope=\"\" itemprop=\"acceptedAnswer\" itemtype=\"https://schema.org/Answer\" id=\"faqAccordion_2\" class=\"collapse\" aria-labelledby=\"heading_2\" style=\"\" customlabelreplaced=\"\">\n <div class=\"card-body\" customlabelreplaced=\"\">\n <div class=\"row\" customlabelreplaced=\"\">\n <div class=\"col-12\" itemprop=\"text\" customlabelreplaced=\"\">\n <p class=\"m-0 p-0 answer\" customlabelreplaced=\"\"></p><p customlabelreplaced=\"\">Buckingham combines a small-town charm with big-city connectivity. At Ruisseaux Lépine, residents live in a quiet, upscale apartment community designed for comfort and elegance. Expansive layouts, natural light, and contemporary finishes set the tone indoors, while lush surroundings and nearby parks offer tranquility outdoors. You're close to everyday essentials, dining spots, and scenic walking trails, all while enjoying a community atmosphere that feels welcoming and exclusive. This is refined apartment living with a naturally peaceful rhythm.</p>\n </div>\n </div>\n </div>\n </div>\n </div>\n <div itemscope=\"\" itemprop=\"mainEntity\" itemtype=\"https://schema.org/Question\" class=\"card mb-3\" customlabelreplaced=\"\">\n <div class=\"card-header\" id=\"heading_3\" customlabelreplaced=\"\">\n <h2 itemprop=\"name\" class=\"mb-0 h5\" customlabelreplaced=\"\">\n <a data-toggle=\"collapse\" href=\"https://www.brigil.com/apartments/qc/gatineau/ruisseaux-lepine-i/default#faqAccordion_3\" aria-expanded=\"false\" aria-controls=\"faqAccordion_3\" class=\"text-decoration-none accordion-trigger collapsed\" customlabelreplaced=\"\">\n <b class=\"fa text-muted text-xs mt-1 float-right fa-caret-down\" aria-hidden=\"true\" customlabelreplaced=\"\"></b>\n <span class=\"question\" customlabelreplaced=\"\">What are some things to do in Buckingham, Gatineau?</span>\n\n </a>\n </h2>\n </div>\n <div itemscope=\"\" itemprop=\"acceptedAnswer\" itemtype=\"https://schema.org/Answer\" id=\"faqAccordion_3\" class=\"collapse\" aria-labelledby=\"heading_3\" style=\"\" customlabelreplaced=\"\">\n <div class=\"card-body\" customlabelreplaced=\"\">\n <div class=\"row\" customlabelreplaced=\"\">\n <div class=\"col-12\" itemprop=\"text\" customlabelreplaced=\"\">\n <p class=\"m-0 p-0 answer\" customlabelreplaced=\"\"></p><p customlabelreplaced=\"\">From nature lovers to foodies, Buckingham has something for everyone. Near Ruisseaux Lépine, you can:</p>\n\n<ul customlabelreplaced=\"\">\n\t<li customlabelreplaced=\"\">Explore scenic green spaces and wooded walking trails</li>\n\t<li customlabelreplaced=\"\">Grab a coffee at local cafés just minutes away</li>\n\t<li customlabelreplaced=\"\">Dine at a variety of restaurants offering casual and upscale options</li>\n\t<li customlabelreplaced=\"\">Enjoy outdoor recreation in nearby parks</li>\n\t<li customlabelreplaced=\"\">Take weekend trips to downtown Gatineau or Ottawa with ease</li>\n</ul>\n\n<p customlabelreplaced=\"\">This location offers the perfect mix of natural serenity and lifestyle convenience.</p>\n </div>\n </div>\n </div>\n </div>\n </div>\n <div itemscope=\"\" itemprop=\"mainEntity\" itemtype=\"https://schema.org/Question\" class=\"card mb-3\" customlabelreplaced=\"\">\n <div class=\"card-header\" id=\"heading_4\" customlabelreplaced=\"\">\n <h2 itemprop=\"name\" class=\"mb-0 h5\" customlabelreplaced=\"\">\n <a data-toggle=\"collapse\" href=\"https://www.brigil.com/apartments/qc/gatineau/ruisseaux-lepine-i/default#faqAccordion_4\" aria-expanded=\"false\" aria-controls=\"faqAccordion_4\" class=\"text-decoration-none accordion-trigger collapsed\" customlabelreplaced=\"\">\n <b class=\"fa text-muted text-xs mt-1 float-right fa-caret-down\" aria-hidden=\"true\" customlabelreplaced=\"\"></b>\n <span class=\"question\" customlabelreplaced=\"\">How close is the Buckingham area to major employers in Ottawa?</span>\n\n </a>\n </h2>\n </div>\n <div itemscope=\"\" itemprop=\"acceptedAnswer\" itemtype=\"https://schema.org/Answer\" id=\"faqAccordion_4\" class=\"collapse\" aria-labelledby=\"heading_4\" style=\"\" customlabelreplaced=\"\">\n <div class=\"card-body\" customlabelreplaced=\"\">\n <div class=\"row\" customlabelreplaced=\"\">\n <div class=\"col-12\" itemprop=\"text\" customlabelreplaced=\"\">\n <p class=\"m-0 p-0 answer\" customlabelreplaced=\"\"></p><p customlabelreplaced=\"\">Living at Ruisseaux Lépine in Gatineau’s Buckingham sector puts you within a reasonable commute to Ottawa’s business core. Thanks to easy access to regional highways and public transit, professionals working in Ottawa’s downtown, government districts, or healthcare hubs can commute efficiently while returning home to a peaceful, upscale residence. Whether you work in the public or private sector, the location provides convenient connectivity with none of the noise.</p>\n </div>\n </div>\n </div>\n </div>\n </div>\n <div itemscope=\"\" itemprop=\"mainEntity\" itemtype=\"https://schema.org/Question\" class=\"card mb-3\" customlabelreplaced=\"\">\n <div class=\"card-header\" id=\"heading_5\" customlabelreplaced=\"\">\n <h2 itemprop=\"name\" class=\"mb-0 h5\" customlabelreplaced=\"\">\n <a data-toggle=\"collapse\" href=\"https://www.brigil.com/apartments/qc/gatineau/ruisseaux-lepine-i/default#faqAccordion_5\" aria-expanded=\"false\" aria-controls=\"faqAccordion_5\" class=\"text-decoration-none accordion-trigger collapsed\" customlabelreplaced=\"\">\n <b class=\"fa text-muted text-xs mt-1 float-right fa-caret-down\" aria-hidden=\"true\" customlabelreplaced=\"\"></b>\n <span class=\"question\" customlabelreplaced=\"\">What are the best apartment amenities in Gatineau?</span>\n\n </a>\n </h2>\n </div>\n <div itemscope=\"\" itemprop=\"acceptedAnswer\" itemtype=\"https://schema.org/Answer\" id=\"faqAccordion_5\" class=\"collapse\" aria-labelledby=\"heading_5\" style=\"\" customlabelreplaced=\"\">\n <div class=\"card-body\" customlabelreplaced=\"\">\n <div class=\"row\" customlabelreplaced=\"\">\n <div class=\"col-12\" itemprop=\"text\" customlabelreplaced=\"\">\n <p class=\"m-0 p-0 answer\" customlabelreplaced=\"\"></p><p customlabelreplaced=\"\">At Ruisseaux Lépine, residents enjoy thoughtfully designed amenities that enhance both everyday comfort and lifestyle:</p>\n\n<ul customlabelreplaced=\"\">\n\t<li customlabelreplaced=\"\">Open-concept floor plans with high ceilings and abundant natural light</li>\n\t<li customlabelreplaced=\"\">Quartz kitchen countertops and stainless-steel appliances</li>\n\t<li customlabelreplaced=\"\">Private balconies or terraces to enjoy the fresh air</li>\n\t<li customlabelreplaced=\"\">Stylish flooring and refined modern finishes throughout</li>\n\t<li customlabelreplaced=\"\">Outdoor storage for added convenience</li>\n</ul>\n\n<p customlabelreplaced=\"\">These well-appointed features make it easy to relax, entertain, and feel at home in Gatineau’s Buckingham sector</p>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n\n </div>\n</div>\n\n \n\n\n </div>\n\n</div></div></div></div><div class=\"scroll-section align-items-start px-xl-8 px-md-4 bg-light\" customlabelreplaced=\"\"><div class=\"container-fluid\" customlabelreplaced=\"\"><div class=\"row\" customlabelreplaced=\"\"><div class=\"border-top justify-content-center align-items-center align-items-md-stretch flex-column d-flex text-center text-md-left py-4 py-md-5 col-12 col-lg-12\" customlabelreplaced=\"\">\n\n\n\n</div></div></div></div><div class=\"container\" customlabelreplaced=\"\"><div class=\"row\" customlabelreplaced=\"\"><div class=\"col-12 col-lg-12\" customlabelreplaced=\"\"></div></div></div></div></div></div>\n\n<!-- Map modal (for displaying bird's eye view, street view) -->\n\n\n\n<!-- Review modal -->\n\n\n <!-- Image modal -->\n\n\n\n\n\n <!-- end modal -->\n\t\n <!-- Video modal -->\n\n <!-- 3D Tour modal -->\n\t<!--Inclusive fees modal-->\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n\n \n \n \n \n\n\n <!-- Modal Schedule Tour -->\n \n\n <!-- Modal Contact Us -->\n \n\n \n\n <!-- Modal Amenity Photogallery -->\n \n <!-- Modal Floorplan Photogallery -->\n \n\n \n \n\n \n\n \n \n\n \n\n \n\n \n \n\n \n\n \n\n\n\n\n </div></div></div></main><div height=\"1\" width=\"1\" style=\"position: absolute; top: 0px; left: 0px; border-width: medium; border-style: none; border-color: currentcolor; border-image: none; visibility: hidden;\" data-original-tag=\"iframe\"></div>\n\n <!--do not remove-->\n\n \n\n \n\n\n\n\n \n \n\n\n\n\n <yardi-widget-craigslist></yardi-widget-craigslist>\n \n\n\n\n \n \n\n\n \n \n \n \n \n \n <link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/pages/corp-site-property-detail.scss.558856.134306847849683249.css\" media=\"all\">\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/filters.scss.558856.134306847849683249.css\" media=\"all\">\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/ysi.datepicker.558856.134306847849683249.css\" media=\"all\">\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/schedule-a-tour.558856.134306847849683249.css\" media=\"all\">\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/photogallery-default-widget.558856.134306847849683249.css\" media=\"all\">\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/modal-widget.558856.134306847849683249.css\" media=\"all\">\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/amenityicons/amenity-icons.558856.134306847849683249.css\" media=\"all\">\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/pages/corp-site-property-detail-enhanced.scss.558856.134306847849683249.css\" media=\"all\">\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/office-hours-layout1-widget.558856.134306847849683249.css\" media=\"all\">\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/map-widget.558856.134306847849683249.css\" media=\"all\">\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/map-local-area.558856.134306847849683249.css\" media=\"all\">\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/map-local-area-layout-2.558856.134306847849683249.css\" media=\"all\">\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/amenities-tab-layout-widget.558856.134306847849683249.css\" media=\"all\">\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/functional/ysi-grid.558856.134306847849683249.css\" media=\"all\">\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/floorplans-optimized-image-modal.558856.134306847849683249.css\" media=\"all\">\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/accessibility-options.558856.134306847849683249.css\" media=\"all\">\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/address-widget.558856.134306847849683249.css\" media=\"all\">\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n \n\n \n\n \n\n <!--\n <yardi-add-sass path=\"widgets/go-to-top\" async=\"true\" />\n-->\n\n<div id=\"goToTop\" role=\"complementary\" aria-labelledby=\"gototoparialabel\" customlabelreplaced=\"\">\n <button data-selenium-id=\"btngototop\" class=\"btn btn-dark border-0 widget-left\" customlabelreplaced=\"\"><svg width=\"16px\" height=\"26px\" fill=\"currentColor\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z\"></path></svg><span class=\"sr-only\" id=\"gototoparialabel\" customlabelreplaced=\"\">Go to top</span></button>\n</div>\n\n\n \n\n <!--Accessibility Modal -->\n \n <!-- Second modal -->\n \n \n \n\n \n \n \n \n\n \n\n \n<div id=\"help-widget\" class=\"w-100 widget-right\" role=\"complementary\" aria-label=\"Front desk - how can we help you?\" customlabelreplaced=\"\">\n \n\n\n \n\n<link rel=\"stylesheet\" href=\"https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/help-widget-default.558856.134306847849683249.css\" media=\"all\">\n\n\n<!---START: Layout horizontal--->\n<!---NOTE: .frontdesk-animation is used for animation. Remove class if you want to remove animation--->\n\n<div id=\"frontDesk-widget-horizontal\" class=\"frontDesk-widget-horizontal horizontal position-fixed d-flex frontdesk-animation\" customlabelreplaced=\"\">\n\t<button id=\"btnFrontDesk\" type=\"button\" class=\"btn btn-primary hide-frontDesk-widget bell\" aria-expanded=\"true\" data-selenium-id=\"showHidefrontDeskWidget\" customlabelreplaced=\"\" aria-label=\"Hide Front Desk\">\n\t\t<span class=\"d-block bounce-dot\" customlabelreplaced=\"\"></span>\n <span class=\"btn-bell d-inline-block\" customlabelreplaced=\"\">\n <span class=\"fas fa-concierge-bell\" aria-hidden=\"true\" customlabelreplaced=\"\"></span>\n <span class=\"sr-only\" customlabelreplaced=\"\">Front desk options </span>\n </span>\n\t</button>\n\t<div id=\"frontDesk-widget-wrapper\" class=\"frontDesk-widget-wrapper open-widget\" customlabelreplaced=\"\">\n <!-- Email Us - modal -->\n <button id=\"email-us-btn\" data-modal-url=\"/contactus?IsDialog=1&IsFrontDesk=true&IsforCorpProperty=1&RCPropertyId=1975503\" type=\"button\" class=\"btn btn-primary email-us-btn widget-btns trigger-popup\" data-selenium-id=\"emailUs\" data-toggle=\"tooltip\" data-placement=\"top\" data-animation=\"true\" data-title=\"Email Us\" customlabelreplaced=\"\" data-original-title=\"Email Us\" tabindex=\"0\"><svg focusable=\"false\" aria-hidden=\"true\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" stroke-width=\"2\"><g stroke-width=\"2\" transform=\"translate(0, 0)\"><polyline data-cap=\"butt\" data-color=\"color-2\" points=\"1.614 3.558 12 13 22.385 3.559\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"2\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\"></polyline> <rect x=\"1\" y=\"3\" width=\"22\" height=\"18\" rx=\"2\" ry=\"2\" fill=\"none\" stroke=\"#ffffff\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-width=\"2\" stroke-linejoin=\"miter\"></rect></g></svg><span class=\"sr-only\" customlabelreplaced=\"\">Email Us</span></button>\n\n <!-- Call Us - mobile -->\n <a id=\"call-us-btn-phone\" href=\"tel:(819) 303-4826\" role=\"button\" class=\"btn btn-primary click-to-call-href click-to-call-title call-us-btn widget-btns d-inline-block d-md-none\" data-selenium-id=\"callUsPhone\" data-toggle=\"tooltip\" data-placement=\"top\" data-animation=\"true\" data-title=\"Call Us at (819) 303-4826\" customlabelreplaced=\"\" data-original-title=\"Call Us at (819) 303-4826\" tabindex=\"0\"><svg focusable=\"false\" aria-hidden=\"true\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 48 48\" stroke-width=\"4\"><g stroke-width=\"4\" transform=\"translate(0, 0)\"><path d=\"M31.041,28.94l-3.423,4.279A36.116,36.116,0,0,1,14.782,20.384l4.279-3.423a2.908,2.908,0,0,0,.84-3.45L16,4.728a2.908,2.908,0,0,0-3.39-1.635L5.186,5.019A2.925,2.925,0,0,0,3.028,8.25,43.142,43.142,0,0,0,39.751,44.973a2.925,2.925,0,0,0,3.23-2.158l1.926-7.425A2.91,2.91,0,0,0,43.273,32l-8.782-3.9A2.907,2.907,0,0,0,31.041,28.94Z\" fill=\"none\" stroke=\"#ffffff\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-width=\"4\" stroke-linejoin=\"miter\"></path></g></svg><span class=\"sr-only\" customlabelreplaced=\"\">Call Us</span></a>\n <!-- Call Us - desktop -->\n <button id=\"call-us-btn\" aria-label=\"Call Us\" type=\"button\" class=\"btn btn-primary click-to-call-title call-us-btn widget-btns trigger-popup d-none d-md-inline-block\" data-selenium-id=\"callUsDesktop\" data-toggle=\"tooltip\" data-placement=\"top\" data-animation=\"true\" data-title=\"Call Us at (819) 303-4826\" customlabelreplaced=\"\" data-original-title=\"Call Us at (819) 303-4826\" tabindex=\"0\"><svg focusable=\"false\" aria-hidden=\"true\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 48 48\" stroke-width=\"4\"><g stroke-width=\"4\" transform=\"translate(0, 0)\"><path d=\"M31.041,28.94l-3.423,4.279A36.116,36.116,0,0,1,14.782,20.384l4.279-3.423a2.908,2.908,0,0,0,.84-3.45L16,4.728a2.908,2.908,0,0,0-3.39-1.635L5.186,5.019A2.925,2.925,0,0,0,3.028,8.25,43.142,43.142,0,0,0,39.751,44.973a2.925,2.925,0,0,0,3.23-2.158l1.926-7.425A2.91,2.91,0,0,0,43.273,32l-8.782-3.9A2.907,2.907,0,0,0,31.041,28.94Z\" fill=\"none\" stroke=\"#ffffff\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-width=\"4\" stroke-linejoin=\"miter\"></path></g></svg></button>\n \n\n\n\n\n\n\n\n </div>\n</div>\n<!---END: Layout horizontal--->\n<!--- Show/Hide aria-label for Front Desk button --->\n\n\n \n\n <!--START Modal: Contact Us / Email Us -->\n <div id=\"email-us-window\" class=\"popup-widgets-window draggable scrollable \" customlabelreplaced=\"\">\n <div class=\"popup-content\" customlabelreplaced=\"\">\n <div class=\"popup-header modal-header\" customlabelreplaced=\"\">\n <h2 class=\"m-0 text-truncate\" customlabelreplaced=\"\">Contact Us </h2>\n <button class=\"close\" aria-label=\"Close this dialog window\" data-selenium-id=\"close\" customlabelreplaced=\"\"> <span aria-hidden=\"true\" class=\"fa fa-times\" customlabelreplaced=\"\"></span></button>\n </div>\n <div id=\"help-widget-email-modal-body\" class=\"popup-body p-4\" customlabelreplaced=\"\">\n </div>\n </div>\n </div>\n <!--END Modal: Contact Us / Email Us -->\n <!--START Modal: Call Us -->\n <div id=\"call-us-window\" class=\"popup-widgets-window draggable scrollable \" customlabelreplaced=\"\">\n <div class=\"popup-content\" customlabelreplaced=\"\">\n <div class=\"popup-header modal-header\" customlabelreplaced=\"\">\n <h2 class=\"m-0 text-truncate\" customlabelreplaced=\"\">Call Us</h2>\n <button class=\"close\" aria-label=\"Close this dialog window\" data-selenium-id=\"close\" customlabelreplaced=\"\"> <span aria-hidden=\"true\" class=\"fa fa-times\" customlabelreplaced=\"\"></span></button>\n </div>\n <div class=\"popup-body p-4 text-center\" customlabelreplaced=\"\">\n <strong class=\"text-xl mb-4 d-block\" customlabelreplaced=\"\">\n\n \n\n <div class=\"ysi-phone-widget ysi-phone-wrapper\" customlabelreplaced=\"\">\n <div class=\"d-inline-flex\" customlabelreplaced=\"\">\n <a data-selenium-id=\"click_to_call\" href=\"tel:+1 819-303-4826\" aria-label=\"Call 6881530 Canada Inc (Brigil) at +1 819-303-4826\" class=\"ysi-phone-number click-to-call-href text-decoration-none color-inherit \" customlabelreplaced=\"\">\n <span aria-hidden=\"true\" class=\"fa-flip-horizontal fas fa-phone mobile-phone-icon\" customlabelreplaced=\"\"></span>\n <span class=\"click-to-call ml-2 text-underline\" customlabelreplaced=\"\">+1 819-303-4826</span>\n </a>\n\n </div>\n </div>\n \n</strong>\n \n \n <div class=\"ysi-office-hours-widget ysi-office-hours-wrapper\" customlabelreplaced=\"\">\n <div class=\"d-inline-flex\" customlabelreplaced=\"\">\n <div class=\"ysi-office-hours\" data-selenium-id=\"SID_footer_officeHours\" customlabelreplaced=\"\">\n <ul class=\"list-unstyled mb-0\" customlabelreplaced=\"\">\n <li class=\" \" customlabelreplaced=\"\">\n <span class=\"office-hours-day\" data-selenium-id=\"OHMonday\" customlabelreplaced=\"\">Monday: </span>\n <span class=\"office-hours-time\" data-selenium-id=\"OHMondayTime\" customlabelreplaced=\"\">10 AM <span class=\"sr-only\" customlabelreplaced=\"\">to</span> - 7 PM</span>\n</li>\n <li class=\" \" customlabelreplaced=\"\">\n <span class=\"office-hours-day\" data-selenium-id=\"OHTuesday\" customlabelreplaced=\"\">Tuesday: </span>\n <span class=\"office-hours-time\" data-selenium-id=\"OHTuesdayTime\" customlabelreplaced=\"\">10 AM <span class=\"sr-only\" customlabelreplaced=\"\">to</span> - 7 PM</span>\n</li>\n <li class=\" \" customlabelreplaced=\"\">\n <span class=\"office-hours-day\" data-selenium-id=\"OHWednesday\" customlabelreplaced=\"\">Wednesday: </span>\n <span class=\"office-hours-time\" data-selenium-id=\"OHWednesdayTime\" customlabelreplaced=\"\">10 AM <span class=\"sr-only\" customlabelreplaced=\"\">to</span> - 7 PM</span>\n</li>\n <li class=\" \" customlabelreplaced=\"\">\n <span class=\"office-hours-day\" data-selenium-id=\"OHThursday\" customlabelreplaced=\"\">Thursday: </span>\n <span class=\"office-hours-time\" data-selenium-id=\"OHThursdayTime\" customlabelreplaced=\"\">10 AM <span class=\"sr-only\" customlabelreplaced=\"\">to</span> - 7 PM</span>\n</li>\n <li class=\" \" customlabelreplaced=\"\">\n <span class=\"office-hours-day\" data-selenium-id=\"OHFriday\" customlabelreplaced=\"\">Friday: </span>\n <span class=\"office-hours-time\" data-selenium-id=\"OHFridayTime\" customlabelreplaced=\"\">10 AM <span class=\"sr-only\" customlabelreplaced=\"\">to</span> - 5 PM</span>\n</li>\n <li class=\" \" customlabelreplaced=\"\">\n <span class=\"office-hours-day\" data-selenium-id=\"OHSaturday\" customlabelreplaced=\"\">Saturday: </span>\n <span class=\"office-hours-time\" data-selenium-id=\"OHSaturdayTime\" customlabelreplaced=\"\">10 AM <span class=\"sr-only\" customlabelreplaced=\"\">to</span> - 5 PM</span>\n</li>\n <li class=\" \" customlabelreplaced=\"\">\n <span class=\"office-hours-day\" data-selenium-id=\"OHSunday\" customlabelreplaced=\"\">Sunday: </span>\n <span class=\"office-hours-time\" data-selenium-id=\"OHSundayTime\" customlabelreplaced=\"\">10 AM <span class=\"sr-only\" customlabelreplaced=\"\">to</span> - 5 PM</span>\n</li>\n </ul>\n </div>\n </div>\n </div>\n\n </div>\n <div class=\"border-top px-4 py-4 text-center\" customlabelreplaced=\"\">\n \n\n\n\n\n<div class=\"ysi-address-widget ysi-address-wrapper\" customlabelreplaced=\"\">\n <div class=\"d-inline-flex\" customlabelreplaced=\"\">\n <address class=\"ysi-address\">\n <a class=\"address-link color-inherit d-block\" href=\"https://maps.google.com/?q=1%20-%20320%20Rue%20%C3%89lisabeth-Chauvin%20%20Gatineau,%20%20QC%20%20J8L%200Z4\" target=\"_blank\" rel=\"noreferrer\" customlabelreplaced=\"\">\n <div itemprop=\"name\" data-selenium-id=\"address_propname\" customlabelreplaced=\"\">Ruisseaux Lépine</div>\n <div itemprop=\"address\" customlabelreplaced=\"\">\n <div data-selenium-id=\"address_street\" customlabelreplaced=\"\">\n 1 - 320 Rue Élisabeth-Chauvin\n </div>\n <div customlabelreplaced=\"\">\n <span data-selenium-id=\"address_city\" customlabelreplaced=\"\">Gatineau</span>, <span data-selenium-id=\"address_state\" customlabelreplaced=\"\">QC</span><span data-selenium-id=\"address_zip\" customlabelreplaced=\"\"> J8L 0Z4</span>\n </div>\n </div>\n\t\t\t\t\t<span class=\"sr-only\" customlabelreplaced=\"\">Opens in a new tab</span>\n </a>\n </address>\n\n </div>\n</div>\n\n\n </div>\n </div>\n </div>\n <!--END Modal: Call Us -->\n\n\n \n <!-- START Modal: RentCafe Conversations -->\n <div id=\"rentcafe-conversations-window\" class=\"popup-widgets-window draggable scrollable \" customlabelreplaced=\"\">\n <div class=\"popup-content\" customlabelreplaced=\"\">\n <div class=\"popup-header modal-header\" customlabelreplaced=\"\">\n <h2 class=\"rentcafe-conversations-title m-0 text-truncate\" customlabelreplaced=\"\">Chat With Us</h2>\n \n <button class=\"close\" aria-label=\"Close this dialog window\" data-selenium-id=\"close\" customlabelreplaced=\"\"> <span aria-hidden=\"true\" class=\"fa fa-times\" customlabelreplaced=\"\"></span></button>\n </div>\n <div id=\"rentcafe-conversations-modal-body\" class=\"popup-body p-4\" customlabelreplaced=\"\">\n </div>\n </div>\n </div>\n\n\n</div>\n \n \n \n \n\n \n \n \n \n <!-- Nudge positioning -->\n \n \n\n\n \n \n <link href=\"https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/intlTelInput.558856.134306847849683249.css\" rel=\"stylesheet\" type=\"text/css\">\n\n\n \n\n \n <yardi-widget-siteeditorscript></yardi-widget-siteeditorscript>\n\n\n\n\n\n\n\n\n<div style=\"position: absolute; left: 0px; top: -2px; height: 1px; overflow: hidden; visibility: hidden; width: 1px;\"><span style=\"position: absolute; font-size: 300px; width: auto; height: auto; margin: 0px; padding: 0px; font-family: Roboto, Arial, sans-serif;\">BESbswy</span></div></body></html>"}} | |
| \ No newline at end of file | ||
added
tests/fixtures/brigil/1507847e89ed4c1f34f4.html
+3237 −0
@@ -0,0 +1,3237 @@ | ||
| 1 | +<html lang="en" style="--helpwidget-bottom-offset: 118px;"><script async="" src="https://www.googletagmanager.com/gtm.js?id=GTM-TL4S4ZL"></script><head> | |
| 2 | + | |
| 3 | + <style> | |
| 4 | + #ot-sdk-btn-floating { | |
| 5 | + z-index: 99999 !important; /* 1 less than "Skip to main content" link, see skip-navigation-link.scss */ | |
| 6 | + } | |
| 7 | + </style> | |
| 8 | + <script type="text/javascript"> | |
| 9 | + window.dataLayer = window.dataLayer || []; | |
| 10 | + function gtag() { dataLayer.push(arguments); } | |
| 11 | + </script> | |
| 12 | + <!-- OneTrust Cookies Consent Notice start --> | |
| 13 | + <script id="onetrust-script" src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" data-document-language="true" async="" type="text/javascript" charset="UTF-8" data-domain-script="019b0a3f-47cc-7952-bf04-817bd4831622"></script> | |
| 14 | + <script type="text/javascript"> | |
| 15 | + function OptanonWrapper() { | |
| 16 | + // The "Powered by OneTrust" img inside .ot-pc-footer-logo has redundant alt text | |
| 17 | + // since the wrapping anchor already has aria-label. Hide the img from the | |
| 18 | + // accessibility tree so screen readers don't announce it twice. | |
| 19 | + function fixPoweredByImage() { | |
| 20 | + var img = document.querySelector('.ot-pc-footer-logo img'); | |
| 21 | + if (img) { | |
| 22 | + img.setAttribute('aria-hidden', 'true'); | |
| 23 | + return true; | |
| 24 | + } | |
| 25 | + return false; | |
| 26 | + } | |
| 27 | + | |
| 28 | + // OneTrust accordion buttons reference ot-status-id-* in aria-labelledby but those | |
| 29 | + // elements are never rendered for toggle-style categories, leaving dangling ID refs. | |
| 30 | + // Strip any ID tokens that don't resolve to an actual DOM element. | |
| 31 | + function fixMissingAriaLabelledBy() { | |
| 32 | + var container = document.getElementById('onetrust-pc-sdk'); | |
| 33 | + if (!container) return false; | |
| 34 | + container.querySelectorAll('[aria-labelledby]').forEach(function (el) { | |
| 35 | + var ids = el.getAttribute('aria-labelledby').split(/\s+/); | |
| 36 | + var valid = ids.filter(function (id) { return id && document.getElementById(id); }); | |
| 37 | + if (valid.length !== ids.length) { | |
| 38 | + el.setAttribute('aria-labelledby', valid.join(' ')); | |
| 39 | + } | |
| 40 | + }); | |
| 41 | + return true; | |
| 42 | + } | |
| 43 | + | |
| 44 | + var imgDone = fixPoweredByImage(); | |
| 45 | + var ariaDone = fixMissingAriaLabelledBy(); | |
| 46 | + | |
| 47 | + if (!imgDone || !ariaDone) { | |
| 48 | + // Preferences panel may be lazy-injected when user first opens it | |
| 49 | + var sdk = document.getElementById('onetrust-consent-sdk') || document.body; | |
| 50 | + var observer = new MutationObserver(function () { | |
| 51 | + if (!imgDone) imgDone = fixPoweredByImage(); | |
| 52 | + if (!ariaDone) ariaDone = fixMissingAriaLabelledBy(); | |
| 53 | + if (imgDone && ariaDone) observer.disconnect(); | |
| 54 | + }); | |
| 55 | + observer.observe(sdk, { childList: true, subtree: true }); | |
| 56 | + } | |
| 57 | + } | |
| 58 | + </script> | |
| 59 | + <!-- OneTrust Cookies Consent Notice end --> | |
| 60 | + | |
| 61 | + | |
| 62 | +<meta charset="utf-8"> | |
| 63 | +<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| 64 | +<meta name="viewport" content="width=device-width, initial-scale=1.0 "> | |
| 65 | + <title>1 & 2 Bedroom Apartments in Gatineau | Horizon</title> | |
| 66 | + <meta name="description" content="Discover spacious apartments at Horizon! Choose from 1 & 2 bedroom layouts in beautiful Gatineau."> | |
| 67 | + <meta name="referrer" content="always"> | |
| 68 | + <meta name="keywords" content="apartments, rentals, apartment guide, apartment finder, apartment search, apartment locator, apartments for rent, apartment listings"> | |
| 69 | + <meta name="author" content="Horizon"> | |
| 70 | + <link rel="canonical" href="https://www.brigil.com/horizon-condo/floorplans"> | |
| 71 | + | |
| 72 | + | |
| 73 | + <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin=""> | |
| 74 | + <link rel="preconnect" href="https://resource.rentcafe.com"> | |
| 75 | + | |
| 76 | + | |
| 77 | +<link rel="preload" href="https://cdngeneralmvc.rentcafe.com/common/scss/fontawesome/webfonts/ysi-fa-solid.woff2" as="font" type="font/woff2" crossorigin="anonymous"> | |
| 78 | + | |
| 79 | + <meta name="theme-color" content="#999"> | |
| 80 | + <link href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,w_152,h_152/s3/2/252329/brigil-favicon(9).png" rel="apple-touch-icon"> | |
| 81 | + <link rel="manifest" href="/manifest.json"> | |
| 82 | + <link href="https://resource.rentcafe.com/image/upload/q_auto,f_auto/s3/2/252329/brigil-favicon(9).png" type="image/x-icon" rel="shortcut icon"> | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | +<!-- Google Tag Manager --> | |
| 94 | +<script> | |
| 95 | +(function(w,d,s,l,i){ | |
| 96 | + w[l]=w[l]||[]; | |
| 97 | + w[l].push({'gtm.start': new Date().getTime(), event:'gtm.js'}); | |
| 98 | + var f=d.getElementsByTagName(s)[0], | |
| 99 | + j=d.createElement(s), | |
| 100 | + dl = l != 'dataLayer' ? '&l=' + l : ''; | |
| 101 | + j.async = true; | |
| 102 | + j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl; | |
| 103 | + f.parentNode.insertBefore(j,f); | |
| 104 | +})(window,document,'script','dataLayer','GTM-TL4S4ZL'); | |
| 105 | +</script> | |
| 106 | +<!-- End Google Tag Manager --> | |
| 107 | + | |
| 108 | + | |
| 109 | +<meta name="google-site-verification" content="Bc0Bvvgc7MLwJ3m8vVx4aVXYRPF5i1_lDItPBncbur4"> | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + <link href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/brigil_prop1.545862.134322949393644098.css" rel="stylesheet" type="text/css" id="mainCSS"> | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + <script>window.ysi={callbacks:[],registerCallback:function(i){"function"==typeof i&&this.callbacks.push(i)},init:function(){ysi.MQBreakpointListener&&ysi.MQBreakpointListener.init(),ysi.main();for(var i=0;i<ysi.callbacks.length;i++)ysi.callbacks[i]();ysi.smartclasses&&ysi.smartclasses.init()},main:function(){}},document.addEventListener("DOMContentLoaded",function(i){window.location.pathname.indexOf("/index")>-1&&history.replaceState(null,"",window.location.pathname.replace("index","")+window.location.search),ysi.init()});</script><script src="https://cdn.cookielaw.org/scripttemplates/202608.1.0/otBannerSdk.js" async="" type="text/javascript"></script><style id="onetrust-style">#onetrust-banner-sdk .onetrust-vendors-list-handler{cursor:pointer;color:#1f96db;font-size:inherit;font-weight:bold;text-decoration:none;margin-left:5px;white-space:normal;word-wrap:break-word;text-align:left}#onetrust-banner-sdk .onetrust-vendors-list-handler:hover{color:#1f96db}#onetrust-banner-sdk:focus{outline:2px solid #000;outline-offset:-2px}#onetrust-banner-sdk a:focus{outline:2px solid #000}#onetrust-banner-sdk #onetrust-accept-btn-handler,#onetrust-banner-sdk #onetrust-reject-all-handler,#onetrust-banner-sdk #onetrust-pc-btn-handler{outline-offset:1px}#onetrust-banner-sdk.ot-bnr-w-logo .ot-bnr-logo{height:64px;width:64px}#onetrust-banner-sdk #onetrust-policy svg,#onetrust-banner-sdk .banner-option svg{height:13px;width:13px;margin-left:1px}#onetrust-banner-sdk #onetrust-policy svg.ot-ext-lnk,#onetrust-banner-sdk .banner-option svg.ot-ext-lnk{vertical-align:middle}#onetrust-banner-sdk .ot-tcf2-vendor-count.ot-text-bold{font-weight:bold}#onetrust-banner-sdk .ot-button-order-0{order:0}#onetrust-banner-sdk .ot-button-order-1{order:1}#onetrust-banner-sdk .ot-button-order-2{order:2}#onetrust-banner-sdk #onetrust-close-btn-container svg{height:10px;width:10px;pointer-events:none}#onetrust-banner-sdk .ot-close-icon,#onetrust-pc-sdk .ot-close-icon,#ot-sync-ntfy .ot-close-icon{background-size:contain;background-repeat:no-repeat;background-position:center;height:12px;width:12px}#onetrust-banner-sdk .powered-by-logo,#onetrust-banner-sdk .ot-pc-footer-logo a,#onetrust-pc-sdk .powered-by-logo,#onetrust-pc-sdk .ot-pc-footer-logo a,#ot-sync-ntfy .powered-by-logo,#ot-sync-ntfy .ot-pc-footer-logo a{background-size:contain;background-repeat:no-repeat;background-position:center;height:25px;width:152px;display:block;text-decoration:none;font-size:.75em}#onetrust-banner-sdk .powered-by-logo:hover,#onetrust-banner-sdk .ot-pc-footer-logo a:hover,#onetrust-pc-sdk .powered-by-logo:hover,#onetrust-pc-sdk .ot-pc-footer-logo a:hover,#ot-sync-ntfy .powered-by-logo:hover,#ot-sync-ntfy .ot-pc-footer-logo a:hover{color:#565656}#onetrust-banner-sdk h3 *,#onetrust-banner-sdk h4 *,#onetrust-banner-sdk h6 *,#onetrust-banner-sdk button *,#onetrust-banner-sdk a[data-parent-id] *,#onetrust-banner-sdk p[role=heading] *,#onetrust-pc-sdk h3 *,#onetrust-pc-sdk h4 *,#onetrust-pc-sdk h6 *,#onetrust-pc-sdk button *,#onetrust-pc-sdk a[data-parent-id] *,#onetrust-pc-sdk p[role=heading] *,#ot-sync-ntfy h3 *,#ot-sync-ntfy h4 *,#ot-sync-ntfy h6 *,#ot-sync-ntfy button *,#ot-sync-ntfy a[data-parent-id] *,#ot-sync-ntfy p[role=heading] *{font-size:inherit;font-weight:inherit;color:inherit}#onetrust-banner-sdk .ot-hide,#onetrust-pc-sdk .ot-hide,#ot-sync-ntfy .ot-hide{display:none !important}#onetrust-banner-sdk button.ot-link-btn:hover,#onetrust-pc-sdk button.ot-link-btn:hover,#ot-sync-ntfy button.ot-link-btn:hover{text-decoration:underline;opacity:1}#onetrust-pc-sdk .ot-sdk-row .ot-sdk-column{padding:0}#onetrust-pc-sdk .ot-sdk-container{padding-right:0}#onetrust-pc-sdk .ot-sdk-row{flex-direction:initial;width:100%}#onetrust-pc-sdk [type=checkbox]:checked,#onetrust-pc-sdk [type=checkbox]:not(:checked){pointer-events:initial}#onetrust-pc-sdk [type=checkbox]:disabled+label::before,#onetrust-pc-sdk [type=checkbox]:disabled+label:after,#onetrust-pc-sdk [type=checkbox]:disabled+label,#onetrust-pc-sdk [type=checkbox][aria-disabled=true]+label::before,#onetrust-pc-sdk [type=checkbox][aria-disabled=true]+label:after,#onetrust-pc-sdk [type=checkbox][aria-disabled=true]+label{pointer-events:none;opacity:.8}#onetrust-pc-sdk #vendor-list-content{transform:translate3d(0, 0, 0)}#onetrust-pc-sdk li input[type=checkbox]{z-index:1}#onetrust-pc-sdk li .ot-checkbox label{z-index:2}#onetrust-pc-sdk li .ot-checkbox input[type=checkbox]{height:auto;width:auto}#onetrust-pc-sdk li .host-title a,#onetrust-pc-sdk li .ot-host-name a,#onetrust-pc-sdk li .accordion-text,#onetrust-pc-sdk li .ot-acc-txt{z-index:2;position:relative}#onetrust-pc-sdk input{margin:3px .1ex}#onetrust-pc-sdk .pc-logo,#onetrust-pc-sdk .ot-pc-logo{height:60px;width:180px;background-position:center;background-size:contain;background-repeat:no-repeat;display:inline-flex;justify-content:center;align-items:center}#onetrust-pc-sdk .pc-logo img,#onetrust-pc-sdk .ot-pc-logo img{max-height:100%;max-width:100%}#onetrust-pc-sdk .pc-logo svg,#onetrust-pc-sdk .ot-pc-logo svg{height:60px;width:180px}#onetrust-pc-sdk #close-pc-btn-handler>svg{margin:auto;display:block;height:12px;width:12px}#onetrust-pc-sdk #ot-pc-desc svg,#onetrust-pc-sdk .ot-desc-cntr svg,#onetrust-pc-sdk .ot-cat-grp svg{height:13px;width:13px;margin-left:-7px;vertical-align:middle;margin-right:5px}#onetrust-pc-sdk #ot-pc-desc svg.ot-ext-lnk{margin-right:8px}#onetrust-pc-sdk #ot-pc-desc .ot-userid-desc svg.ot-ext-lnk,#onetrust-pc-sdk #ot-pc-desc~.ot-userid-desc svg.ot-ext-lnk{margin-left:3px;margin-right:8px}#onetrust-pc-sdk .ot-host-hdr>a{display:inline-block}#onetrust-pc-sdk input[aria-disabled=true],#onetrust-banner-sdk input[aria-disabled=true]{pointer-events:none;opacity:.6}#onetrust-pc-sdk input[aria-disabled=true]+label,#onetrust-banner-sdk input[aria-disabled=true]+label{pointer-events:none;opacity:.6;cursor:not-allowed}#onetrust-pc-sdk .screen-reader-only,#onetrust-pc-sdk .ot-scrn-rdr,.ot-sdk-cookie-policy .screen-reader-only,.ot-sdk-cookie-policy .ot-scrn-rdr{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}#onetrust-pc-sdk.ot-fade-in,.onetrust-pc-dark-filter.ot-fade-in,#onetrust-banner-sdk.ot-fade-in,.ot-confirm-dialog-overlay.ot-fade-in{animation-name:onetrust-fade-in;animation-duration:400ms;animation-timing-function:ease-in-out}#onetrust-pc-sdk.ot-hide{display:none !important}.onetrust-pc-dark-filter.ot-hide{display:none !important}#ot-sdk-btn.ot-sdk-show-settings,#ot-sdk-btn.optanon-show-settings{color:#fff;background-color:#468254;height:auto;white-space:normal;word-wrap:break-word;padding:.8em 2em;font-size:.8em;line-height:1.2;cursor:pointer;-moz-transition:.1s ease;-o-transition:.1s ease;-webkit-transition:1s ease;transition:.1s ease}#ot-sdk-btn.ot-sdk-show-settings:hover,#ot-sdk-btn.optanon-show-settings:hover{color:#fff;background-color:#2c6415}#ot-sdk-btn.ot-sdk-show-settings:active,#ot-sdk-btn.optanon-show-settings:active{color:#fff;background-color:#2c6415;border:1px solid rgba(162,192,169,.5)}.onetrust-pc-dark-filter{background:rgba(0,0,0,.5);z-index:2147483646;width:100%;height:100%;overflow:hidden;position:fixed;top:0;bottom:0;left:0}@keyframes onetrust-fade-in{0%{opacity:0}100%{opacity:1}}.ot-cookie-label{text-decoration:underline}@media only screen and (min-width: 426px)and (max-width: 896px)and (orientation: landscape){#onetrust-pc-sdk p{font-size:.75em}}#onetrust-banner-sdk .banner-option-input:focus+label{outline:1px solid #000;outline-style:auto}.category-vendors-list-handler+a:focus,.category-vendors-list-handler+a:focus-visible{outline:2px solid #000}#onetrust-pc-sdk .ot-userid-title{margin-top:10px}#onetrust-pc-sdk .ot-userid-title>span,#onetrust-pc-sdk .ot-userid-timestamp>span{font-weight:700}#onetrust-pc-sdk .ot-userid-desc{font-style:italic}#onetrust-pc-sdk .ot-host-desc a{pointer-events:initial}#onetrust-pc-sdk .ot-ven-hdr>p a{position:relative;z-index:2;pointer-events:initial}#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info a,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info a{margin-right:8px}#onetrust-pc-sdk .ot-vnd-item svg.ot-ext-lnk{align-self:center}#onetrust-pc-sdk .ot-pc-footer-logo svg,#onetrust-pc-sdk .ot-pc-footer-logo img{width:136px;height:16px}#onetrust-pc-sdk .ot-pur-vdr-count{font-weight:400;font-size:.8em;padding-top:3px;display:block}#onetrust-pc-sdk p[role=heading] .ot-pur-vdr-count{font-weight:400 !important;font-size:.8em !important}#onetrust-banner-sdk #onetrust-policy .ot-optout-signal,#onetrust-pc-sdk #ot-pc-content .ot-optout-signal{border:1px solid #32ae88;border-radius:3px;padding:5px;margin-bottom:10px;background-color:#f9fffa;font-size:.85rem;line-height:2}#onetrust-banner-sdk #onetrust-policy .ot-optout-signal .ot-optout-icon,#onetrust-pc-sdk #ot-pc-content .ot-optout-signal .ot-optout-icon{display:inline;margin-right:5px}#onetrust-banner-sdk #onetrust-policy .ot-optout-signal svg,#onetrust-pc-sdk #ot-pc-content .ot-optout-signal svg{height:20px;width:30px}#onetrust-banner-sdk #onetrust-policy .ot-optout-signal svg.ot-source-sprite,#onetrust-pc-sdk #ot-pc-content .ot-optout-signal svg.ot-source-sprite{position:relative;bottom:-3px}#onetrust-banner-sdk #onetrust-policy .ot-optout-signal svg:not(.ot-source-sprite),#onetrust-pc-sdk #ot-pc-content .ot-optout-signal svg:not(.ot-source-sprite){transform:scale(0.5)}#onetrust-banner-sdk #onetrust-policy .ot-optout-signal svg:not(.ot-source-sprite) path,#onetrust-pc-sdk #ot-pc-content .ot-optout-signal svg:not(.ot-source-sprite) path{fill:#32ae88}#onetrust-consent-sdk .ot-general-modal{overflow:hidden;position:fixed;margin:0 auto;top:50%;left:50%;width:40%;padding:1.5rem;max-width:575px;min-width:575px;z-index:2147483647;border-radius:2.5px;transform:translate(-50%, -50%)}#onetrust-consent-sdk .ot-signature-health-group{margin-top:1rem;padding-left:1.25rem;padding-right:1.25rem;margin-bottom:.625rem;width:calc(100% - 2.5rem)}#onetrust-consent-sdk .ot-signature-health-group .ot-signature-health-form{gap:.5rem}#onetrust-consent-sdk .ot-signature-health .ot-signature-health-form{width:70%;gap:.35rem}#onetrust-consent-sdk .ot-signature-health .ot-signature-input{height:38px;padding:6px 10px;background-color:#fff;border:1px solid #d1d1d1;border-radius:4px;box-shadow:none;box-sizing:border-box}#onetrust-consent-sdk .ot-signature-health .ot-signature-subtitle{font-size:1.125rem}#onetrust-consent-sdk .ot-signature-health .ot-signature-group-title{font-size:1.25rem;font-weight:bold}#onetrust-consent-sdk .ot-signature-health,#onetrust-consent-sdk .ot-signature-health-group{display:flex;flex-direction:column;gap:1rem}#onetrust-consent-sdk .ot-signature-health .ot-signature-cont,#onetrust-consent-sdk .ot-signature-health-group .ot-signature-cont{display:flex;flex-direction:column;gap:.25rem}#onetrust-consent-sdk .ot-signature-health .ot-signature-paragraph,#onetrust-consent-sdk .ot-signature-health-group .ot-signature-paragraph{margin:0;line-height:20px;font-size:max(14px,.875rem)}#onetrust-consent-sdk .ot-signature-health .ot-health-signature-error,#onetrust-consent-sdk .ot-signature-health-group .ot-health-signature-error{color:#4d4d4d;font-size:min(12px,.75rem)}#onetrust-consent-sdk .ot-signature-health .ot-signature-buttons-cont,#onetrust-consent-sdk .ot-signature-health-group .ot-signature-buttons-cont{margin-top:max(.75rem,2%);gap:1rem;display:flex;justify-content:flex-end}#onetrust-consent-sdk .ot-signature-health .ot-signature-button,#onetrust-consent-sdk .ot-signature-health-group .ot-signature-button{flex:1;height:auto;color:#fff;cursor:pointer;line-height:1.2;min-width:125px;font-weight:600;font-size:.813em;border-radius:2px;padding:12px 10px;white-space:normal;word-wrap:break-word;word-break:break-word;background-color:#68b631;border:2px solid #68b631}#onetrust-consent-sdk .ot-signature-health .ot-signature-button.reject,#onetrust-consent-sdk .ot-signature-health-group .ot-signature-button.reject{background-color:#fff}#onetrust-consent-sdk .ot-input-field-cont{display:flex;flex-direction:column;gap:.5rem}#onetrust-consent-sdk .ot-input-field-cont .ot-signature-input{width:65%}#onetrust-consent-sdk .ot-signature-health-form{display:flex;flex-direction:column}#onetrust-consent-sdk .ot-signature-health-form .ot-signature-label{margin-bottom:0;line-height:20px;font-size:max(14px,.875rem)}#onetrust-consent-sdk #onetrust-sprite-svg{display:none}@media only screen and (max-width: 600px){#onetrust-consent-sdk .ot-general-modal{min-width:100%}#onetrust-consent-sdk .ot-signature-health .ot-signature-health-form{width:100%}#onetrust-consent-sdk .ot-input-field-cont .ot-signature-input{width:100%}}#onetrust-banner-sdk,#onetrust-pc-sdk,#ot-sdk-cookie-policy,#ot-sync-ntfy{font-size:16px}#onetrust-banner-sdk *,#onetrust-banner-sdk ::after,#onetrust-banner-sdk ::before,#onetrust-pc-sdk *,#onetrust-pc-sdk ::after,#onetrust-pc-sdk ::before,#ot-sdk-cookie-policy *,#ot-sdk-cookie-policy ::after,#ot-sdk-cookie-policy ::before,#ot-sync-ntfy *,#ot-sync-ntfy ::after,#ot-sync-ntfy ::before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}#onetrust-banner-sdk div,#onetrust-banner-sdk span,#onetrust-banner-sdk h1,#onetrust-banner-sdk h2,#onetrust-banner-sdk h3,#onetrust-banner-sdk h4,#onetrust-banner-sdk h5,#onetrust-banner-sdk h6,#onetrust-banner-sdk p,#onetrust-banner-sdk img,#onetrust-banner-sdk svg,#onetrust-banner-sdk button,#onetrust-banner-sdk section,#onetrust-banner-sdk a,#onetrust-banner-sdk label,#onetrust-banner-sdk input,#onetrust-banner-sdk ul,#onetrust-banner-sdk li,#onetrust-banner-sdk nav,#onetrust-banner-sdk table,#onetrust-banner-sdk thead,#onetrust-banner-sdk tr,#onetrust-banner-sdk td,#onetrust-banner-sdk tbody,#onetrust-banner-sdk .ot-main-content,#onetrust-banner-sdk .ot-toggle,#onetrust-banner-sdk #ot-content,#onetrust-banner-sdk #ot-pc-content,#onetrust-banner-sdk .checkbox,#onetrust-pc-sdk div,#onetrust-pc-sdk span,#onetrust-pc-sdk h1,#onetrust-pc-sdk h2,#onetrust-pc-sdk h3,#onetrust-pc-sdk h4,#onetrust-pc-sdk h5,#onetrust-pc-sdk h6,#onetrust-pc-sdk p,#onetrust-pc-sdk img,#onetrust-pc-sdk svg,#onetrust-pc-sdk button,#onetrust-pc-sdk section,#onetrust-pc-sdk a,#onetrust-pc-sdk label,#onetrust-pc-sdk input,#onetrust-pc-sdk ul,#onetrust-pc-sdk li,#onetrust-pc-sdk nav,#onetrust-pc-sdk table,#onetrust-pc-sdk thead,#onetrust-pc-sdk tr,#onetrust-pc-sdk td,#onetrust-pc-sdk tbody,#onetrust-pc-sdk .ot-main-content,#onetrust-pc-sdk .ot-toggle,#onetrust-pc-sdk #ot-content,#onetrust-pc-sdk #ot-pc-content,#onetrust-pc-sdk .checkbox,#ot-sdk-cookie-policy div,#ot-sdk-cookie-policy span,#ot-sdk-cookie-policy h1,#ot-sdk-cookie-policy h2,#ot-sdk-cookie-policy h3,#ot-sdk-cookie-policy h4,#ot-sdk-cookie-policy h5,#ot-sdk-cookie-policy h6,#ot-sdk-cookie-policy p,#ot-sdk-cookie-policy img,#ot-sdk-cookie-policy svg,#ot-sdk-cookie-policy button,#ot-sdk-cookie-policy section,#ot-sdk-cookie-policy a,#ot-sdk-cookie-policy label,#ot-sdk-cookie-policy input,#ot-sdk-cookie-policy ul,#ot-sdk-cookie-policy li,#ot-sdk-cookie-policy nav,#ot-sdk-cookie-policy table,#ot-sdk-cookie-policy thead,#ot-sdk-cookie-policy tr,#ot-sdk-cookie-policy td,#ot-sdk-cookie-policy tbody,#ot-sdk-cookie-policy .ot-main-content,#ot-sdk-cookie-policy .ot-toggle,#ot-sdk-cookie-policy #ot-content,#ot-sdk-cookie-policy #ot-pc-content,#ot-sdk-cookie-policy .checkbox,#ot-sync-ntfy div,#ot-sync-ntfy span,#ot-sync-ntfy h1,#ot-sync-ntfy h2,#ot-sync-ntfy h3,#ot-sync-ntfy h4,#ot-sync-ntfy h5,#ot-sync-ntfy h6,#ot-sync-ntfy p,#ot-sync-ntfy img,#ot-sync-ntfy svg,#ot-sync-ntfy button,#ot-sync-ntfy section,#ot-sync-ntfy a,#ot-sync-ntfy label,#ot-sync-ntfy input,#ot-sync-ntfy ul,#ot-sync-ntfy li,#ot-sync-ntfy nav,#ot-sync-ntfy table,#ot-sync-ntfy thead,#ot-sync-ntfy tr,#ot-sync-ntfy td,#ot-sync-ntfy tbody,#ot-sync-ntfy .ot-main-content,#ot-sync-ntfy .ot-toggle,#ot-sync-ntfy #ot-content,#ot-sync-ntfy #ot-pc-content,#ot-sync-ntfy .checkbox{font-family:inherit;font-weight:normal;-webkit-font-smoothing:auto;letter-spacing:normal;line-height:normal;padding:0;margin:0;height:auto;min-height:0;max-height:none;width:auto;min-width:0;max-width:none;border-radius:0;border:none;clear:none;float:none;position:static;bottom:auto;left:auto;right:auto;top:auto;text-align:left;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;white-space:normal;background:none;overflow:visible;vertical-align:baseline;visibility:visible;z-index:auto;box-shadow:none}#onetrust-banner-sdk img,#onetrust-pc-sdk img,#ot-sdk-cookie-policy img,#ot-sync-ntfy img{overflow:hidden !important}#onetrust-banner-sdk label:before,#onetrust-banner-sdk label:after,#onetrust-banner-sdk .checkbox:after,#onetrust-banner-sdk .checkbox:before,#onetrust-pc-sdk label:before,#onetrust-pc-sdk label:after,#onetrust-pc-sdk .checkbox:after,#onetrust-pc-sdk .checkbox:before,#ot-sdk-cookie-policy label:before,#ot-sdk-cookie-policy label:after,#ot-sdk-cookie-policy .checkbox:after,#ot-sdk-cookie-policy .checkbox:before,#ot-sync-ntfy label:before,#ot-sync-ntfy label:after,#ot-sync-ntfy .checkbox:after,#ot-sync-ntfy .checkbox:before{content:"";content:none}#onetrust-banner-sdk .ot-sdk-container,#onetrust-pc-sdk .ot-sdk-container,#ot-sdk-cookie-policy .ot-sdk-container{position:relative;width:100%;max-width:100%;margin:0 auto;padding:0 20px;box-sizing:border-box}#onetrust-banner-sdk .ot-sdk-column,#onetrust-banner-sdk .ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-column,#onetrust-pc-sdk .ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-column,#ot-sdk-cookie-policy .ot-sdk-columns{width:100%;float:left;box-sizing:border-box;padding:0;display:initial}@media(min-width: 400px){#onetrust-banner-sdk .ot-sdk-container,#onetrust-pc-sdk .ot-sdk-container,#ot-sdk-cookie-policy .ot-sdk-container{width:90%;padding:0}}@media(min-width: 550px){#onetrust-banner-sdk .ot-sdk-container,#onetrust-pc-sdk .ot-sdk-container,#ot-sdk-cookie-policy .ot-sdk-container{width:100%}#onetrust-banner-sdk .ot-sdk-column,#onetrust-banner-sdk .ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-column,#onetrust-pc-sdk .ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-column,#ot-sdk-cookie-policy .ot-sdk-columns{margin-left:4%}#onetrust-banner-sdk .ot-sdk-column:first-child,#onetrust-banner-sdk .ot-sdk-columns:first-child,#onetrust-pc-sdk .ot-sdk-column:first-child,#onetrust-pc-sdk .ot-sdk-columns:first-child,#ot-sdk-cookie-policy .ot-sdk-column:first-child,#ot-sdk-cookie-policy .ot-sdk-columns:first-child{margin-left:0}#onetrust-banner-sdk .ot-sdk-two.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-two.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-two.ot-sdk-columns{width:13.3333333333%}#onetrust-banner-sdk .ot-sdk-three.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-three.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-three.ot-sdk-columns{width:22%}#onetrust-banner-sdk .ot-sdk-four.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-four.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-four.ot-sdk-columns{width:30.6666666667%}#onetrust-banner-sdk .ot-sdk-eight.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-eight.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-eight.ot-sdk-columns{width:65.3333333333%}#onetrust-banner-sdk .ot-sdk-nine.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-nine.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-nine.ot-sdk-columns{width:74%}#onetrust-banner-sdk .ot-sdk-ten.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-ten.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-ten.ot-sdk-columns{width:82.6666666667%}#onetrust-banner-sdk .ot-sdk-eleven.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-eleven.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-eleven.ot-sdk-columns{width:91.3333333333%}#onetrust-banner-sdk .ot-sdk-twelve.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-twelve.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-twelve.ot-sdk-columns{width:100%;margin-left:0}}#onetrust-banner-sdk h1,#onetrust-banner-sdk h2,#onetrust-banner-sdk h3,#onetrust-banner-sdk h4,#onetrust-banner-sdk h5,#onetrust-banner-sdk h6,#onetrust-banner-sdk p[role=heading],#onetrust-pc-sdk h1,#onetrust-pc-sdk h2,#onetrust-pc-sdk h3,#onetrust-pc-sdk h4,#onetrust-pc-sdk h5,#onetrust-pc-sdk h6,#onetrust-pc-sdk p[role=heading],#ot-sdk-cookie-policy h1,#ot-sdk-cookie-policy h2,#ot-sdk-cookie-policy h3,#ot-sdk-cookie-policy h4,#ot-sdk-cookie-policy h5,#ot-sdk-cookie-policy h6,#ot-sdk-cookie-policy p[role=heading]{margin-top:0;font-weight:600;font-family:inherit}#onetrust-banner-sdk h1,#onetrust-pc-sdk h1,#ot-sdk-cookie-policy h1{font-size:1.5rem;line-height:1.2}#onetrust-banner-sdk h2,#onetrust-pc-sdk h2,#ot-sdk-cookie-policy h2{font-size:1.5rem;line-height:1.25}#onetrust-banner-sdk h3,#onetrust-pc-sdk h3,#ot-sdk-cookie-policy h3{font-size:1.5rem;line-height:1.3}#onetrust-banner-sdk h4,#onetrust-pc-sdk h4,#ot-sdk-cookie-policy h4{font-size:1.5rem;line-height:1.35}#onetrust-banner-sdk h5,#onetrust-pc-sdk h5,#ot-sdk-cookie-policy h5{font-size:1.5rem;line-height:1.5}#onetrust-banner-sdk h6,#onetrust-pc-sdk h6,#ot-sdk-cookie-policy h6{font-size:1.5rem;line-height:1.6}@media(min-width: 550px){#onetrust-banner-sdk h1,#onetrust-pc-sdk h1,#ot-sdk-cookie-policy h1{font-size:1.5rem}#onetrust-banner-sdk h2,#onetrust-pc-sdk h2,#ot-sdk-cookie-policy h2{font-size:1.5rem}#onetrust-banner-sdk h3,#onetrust-pc-sdk h3,#ot-sdk-cookie-policy h3{font-size:1.5rem}#onetrust-banner-sdk h4,#onetrust-pc-sdk h4,#ot-sdk-cookie-policy h4{font-size:1.5rem}#onetrust-banner-sdk h5,#onetrust-pc-sdk h5,#ot-sdk-cookie-policy h5{font-size:1.5rem}#onetrust-banner-sdk h6,#onetrust-pc-sdk h6,#ot-sdk-cookie-policy h6{font-size:1.5rem}}#onetrust-banner-sdk p:not([role=heading]),#onetrust-pc-sdk p:not([role=heading]),#ot-sdk-cookie-policy p:not([role=heading]){margin:0 0 1em 0;font-family:inherit;line-height:normal}#onetrust-banner-sdk a,#onetrust-pc-sdk a,#ot-sdk-cookie-policy a{color:#565656;text-decoration:none}#onetrust-banner-sdk a:hover,#onetrust-pc-sdk a:hover,#ot-sdk-cookie-policy a:hover{color:#565656;text-decoration:underline}#onetrust-banner-sdk .ot-sdk-button,#onetrust-banner-sdk button,#onetrust-pc-sdk .ot-sdk-button,#onetrust-pc-sdk button,#ot-sdk-cookie-policy .ot-sdk-button,#ot-sdk-cookie-policy button{margin-bottom:1rem;font-family:inherit}#onetrust-banner-sdk .ot-sdk-button,#onetrust-banner-sdk button,#onetrust-pc-sdk .ot-sdk-button,#onetrust-pc-sdk button,#ot-sdk-cookie-policy .ot-sdk-button,#ot-sdk-cookie-policy button{display:inline-block;height:38px;padding:0 30px;color:#555;text-align:center;font-size:.9em;font-weight:400;line-height:38px;letter-spacing:.01em;text-decoration:none;white-space:nowrap;background-color:rgba(0,0,0,0);border-radius:2px;border:1px solid #bbb;cursor:pointer;box-sizing:border-box}#onetrust-banner-sdk .ot-sdk-button:hover,#onetrust-banner-sdk :not(.ot-leg-btn-container):not(.ot-confirm-dialog-buttons)>button:not(.ot-link-btn):hover,#onetrust-banner-sdk :not(.ot-leg-btn-container):not(.ot-confirm-dialog-buttons)>button:not(.ot-link-btn):focus,#onetrust-pc-sdk .ot-sdk-button:hover,#onetrust-pc-sdk :not(.ot-leg-btn-container):not(.ot-confirm-dialog-buttons)>button:not(.ot-link-btn):hover,#onetrust-pc-sdk :not(.ot-leg-btn-container):not(.ot-confirm-dialog-buttons)>button:not(.ot-link-btn):focus,#ot-sdk-cookie-policy .ot-sdk-button:hover,#ot-sdk-cookie-policy :not(.ot-leg-btn-container):not(.ot-confirm-dialog-buttons)>button:not(.ot-link-btn):hover,#ot-sdk-cookie-policy :not(.ot-leg-btn-container):not(.ot-confirm-dialog-buttons)>button:not(.ot-link-btn):focus{color:#333;border-color:#888;opacity:.9}#onetrust-banner-sdk .ot-sdk-button:focus,#onetrust-banner-sdk :not(.ot-leg-btn-container)>button:focus,#onetrust-pc-sdk .ot-sdk-button:focus,#onetrust-pc-sdk :not(.ot-leg-btn-container)>button:focus,#ot-sdk-cookie-policy .ot-sdk-button:focus,#ot-sdk-cookie-policy :not(.ot-leg-btn-container)>button:focus{outline:2px solid #000}#onetrust-banner-sdk .ot-sdk-button.ot-sdk-button-primary,#onetrust-banner-sdk button.ot-sdk-button-primary,#onetrust-banner-sdk input[type=submit].ot-sdk-button-primary,#onetrust-banner-sdk input[type=reset].ot-sdk-button-primary,#onetrust-banner-sdk input[type=button].ot-sdk-button-primary,#onetrust-pc-sdk .ot-sdk-button.ot-sdk-button-primary,#onetrust-pc-sdk button.ot-sdk-button-primary,#onetrust-pc-sdk input[type=submit].ot-sdk-button-primary,#onetrust-pc-sdk input[type=reset].ot-sdk-button-primary,#onetrust-pc-sdk input[type=button].ot-sdk-button-primary,#ot-sdk-cookie-policy .ot-sdk-button.ot-sdk-button-primary,#ot-sdk-cookie-policy button.ot-sdk-button-primary,#ot-sdk-cookie-policy input[type=submit].ot-sdk-button-primary,#ot-sdk-cookie-policy input[type=reset].ot-sdk-button-primary,#ot-sdk-cookie-policy input[type=button].ot-sdk-button-primary{color:#fff;background-color:#33c3f0;border-color:#33c3f0}#onetrust-banner-sdk .ot-sdk-button.ot-sdk-button-primary:hover,#onetrust-banner-sdk button.ot-sdk-button-primary:hover,#onetrust-banner-sdk input[type=submit].ot-sdk-button-primary:hover,#onetrust-banner-sdk input[type=reset].ot-sdk-button-primary:hover,#onetrust-banner-sdk input[type=button].ot-sdk-button-primary:hover,#onetrust-banner-sdk .ot-sdk-button.ot-sdk-button-primary:focus,#onetrust-banner-sdk button.ot-sdk-button-primary:focus,#onetrust-banner-sdk input[type=submit].ot-sdk-button-primary:focus,#onetrust-banner-sdk input[type=reset].ot-sdk-button-primary:focus,#onetrust-banner-sdk input[type=button].ot-sdk-button-primary:focus,#onetrust-pc-sdk .ot-sdk-button.ot-sdk-button-primary:hover,#onetrust-pc-sdk button.ot-sdk-button-primary:hover,#onetrust-pc-sdk input[type=submit].ot-sdk-button-primary:hover,#onetrust-pc-sdk input[type=reset].ot-sdk-button-primary:hover,#onetrust-pc-sdk input[type=button].ot-sdk-button-primary:hover,#onetrust-pc-sdk .ot-sdk-button.ot-sdk-button-primary:focus,#onetrust-pc-sdk button.ot-sdk-button-primary:focus,#onetrust-pc-sdk input[type=submit].ot-sdk-button-primary:focus,#onetrust-pc-sdk input[type=reset].ot-sdk-button-primary:focus,#onetrust-pc-sdk input[type=button].ot-sdk-button-primary:focus,#ot-sdk-cookie-policy .ot-sdk-button.ot-sdk-button-primary:hover,#ot-sdk-cookie-policy button.ot-sdk-button-primary:hover,#ot-sdk-cookie-policy input[type=submit].ot-sdk-button-primary:hover,#ot-sdk-cookie-policy input[type=reset].ot-sdk-button-primary:hover,#ot-sdk-cookie-policy input[type=button].ot-sdk-button-primary:hover,#ot-sdk-cookie-policy .ot-sdk-button.ot-sdk-button-primary:focus,#ot-sdk-cookie-policy button.ot-sdk-button-primary:focus,#ot-sdk-cookie-policy input[type=submit].ot-sdk-button-primary:focus,#ot-sdk-cookie-policy input[type=reset].ot-sdk-button-primary:focus,#ot-sdk-cookie-policy input[type=button].ot-sdk-button-primary:focus{color:#fff;background-color:#1eaedb;border-color:#1eaedb}#onetrust-banner-sdk input[type=text],#onetrust-pc-sdk input[type=text],#ot-sdk-cookie-policy input[type=text]{height:38px;padding:6px 10px;background-color:#fff;border:1px solid #707070;border-radius:4px;box-shadow:none;box-sizing:border-box}#onetrust-banner-sdk input[type=text],#onetrust-pc-sdk input[type=text],#ot-sdk-cookie-policy input[type=text]{-webkit-appearance:none;-moz-appearance:none;appearance:none}#onetrust-banner-sdk input[type=text]:focus,#onetrust-pc-sdk input[type=text]:focus,#ot-sdk-cookie-policy input[type=text]:focus{border:1px solid #000;outline:0}#onetrust-banner-sdk label,#onetrust-pc-sdk label,#ot-sdk-cookie-policy label{display:block;margin-bottom:.5rem;font-weight:600}#onetrust-banner-sdk input[type=checkbox],#onetrust-pc-sdk input[type=checkbox],#ot-sdk-cookie-policy input[type=checkbox]{display:inline}#onetrust-banner-sdk ul,#onetrust-pc-sdk ul,#ot-sdk-cookie-policy ul{list-style:circle inside}#onetrust-banner-sdk ul,#onetrust-pc-sdk ul,#ot-sdk-cookie-policy ul{padding-left:0;margin-top:0}#onetrust-banner-sdk ul ul,#onetrust-pc-sdk ul ul,#ot-sdk-cookie-policy ul ul{margin:1.5rem 0 1.5rem 3rem;font-size:90%}#onetrust-banner-sdk li,#onetrust-pc-sdk li,#ot-sdk-cookie-policy li{margin-bottom:1rem}#onetrust-banner-sdk th,#onetrust-banner-sdk td,#onetrust-pc-sdk th,#onetrust-pc-sdk td,#ot-sdk-cookie-policy th,#ot-sdk-cookie-policy td{padding:12px 15px;text-align:left;border-bottom:1px solid #e1e1e1}#onetrust-banner-sdk button,#onetrust-pc-sdk button,#ot-sdk-cookie-policy button{margin-bottom:1rem;font-family:inherit}#onetrust-banner-sdk .ot-sdk-container:after,#onetrust-banner-sdk .ot-sdk-row:after,#onetrust-pc-sdk .ot-sdk-container:after,#onetrust-pc-sdk .ot-sdk-row:after,#ot-sdk-cookie-policy .ot-sdk-container:after,#ot-sdk-cookie-policy .ot-sdk-row:after{content:"";display:table;clear:both}#onetrust-banner-sdk .ot-sdk-row,#onetrust-pc-sdk .ot-sdk-row,#ot-sdk-cookie-policy .ot-sdk-row{margin:0;max-width:none;display:block}.ot-go-modal-error-msg:empty{margin:0;line-height:0}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide){background:rgba(0,0,0,.5);z-index:2147483648;width:100%;height:100%;overflow:hidden;position:fixed;top:0;left:0}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal{display:flex;flex-direction:column;overflow:hidden;position:relative;margin:5% auto;width:440px;max-width:90%;max-height:90vh;border-radius:8px;z-index:2147483649;background-color:#fff;box-shadow:0 4px 24px rgba(0,0,0,.15)}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-header{display:flex;justify-content:flex-end;align-items:center;padding:12px 16px}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-header .ot-go-modal-close{width:44px;height:44px;background-size:12px;margin:-18px -18px 0 0;border:none;display:inline-block;padding:0;background-repeat:no-repeat;background-position:center;position:absolute;top:1em;cursor:pointer}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-body{padding:0 28px 28px;overflow-y:auto}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-title{font-size:1.25em;font-weight:700;margin-bottom:12px;text-align:center}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-desc{font-size:.88em;margin:0 0 20px;line-height:1.5;text-align:center}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper{position:relative;margin-bottom:4px}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-email{width:100%;padding:10px 36px 10px 12px;border:1px solid #d8d8d8;border-radius:4px;font-size:.95em;outline:none;box-sizing:border-box;color:inherit;background-color:rgba(0,0,0,0)}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-email::placeholder{color:inherit;opacity:.6}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-error-icon{position:absolute;right:10px;top:50%;transform:translateY(-50%);width:16px;height:16px;border-radius:50%;background-color:#d93025}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-error-icon::after{content:"!";color:#fff;font-size:11px;font-weight:bold;display:flex;align-items:center;justify-content:center;height:100%}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-error-msg{color:#d93025 !important;font-size:.82em;margin:4px 0 8px}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons{display:flex;gap:12px;margin-top:20px}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel,#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit{flex:1;padding:10px 16px;border-radius:4px;font-size:.88em;font-weight:600;cursor:pointer;text-align:center;box-sizing:border-box}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel{border:1px solid;background-color:rgba(0,0,0,0)}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel:hover{background-color:rgba(0,0,0,.05)}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit{position:relative}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit:hover:not(.ot-go-btn-loading){opacity:.8}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit.ot-go-btn-loading{pointer-events:none;opacity:.85}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit .ot-go-btn-spinner{display:inline-block;width:16px;height:16px;border:2px solid rgba(255,255,255,.3);border-top-color:#fff;border-radius:50%;animation:ot-go-spin .6s linear infinite;vertical-align:middle}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state{text-align:center;padding:20px 0}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-success-shield{width:56px;height:56px;margin:0 auto 20px}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-modal-confirm-msg{font-size:.95em;color:inherit;margin-bottom:24px;line-height:1.5;padding:0 10px}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-modal-close-btn{display:block;width:100%;border-radius:4px;font-size:.88em;font-weight:600;cursor:pointer;box-sizing:border-box}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-modal-close-btn:hover{opacity:.8}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel,#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit{padding:0}@media(max-width: 500px){#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal{width:95%;margin:10% auto}.ot-go-modal-buttons{flex-direction:column;gap:0px !important;flex-direction:column-reverse !important}.ot-go-modal-buttons .ot-go-modal-cancel,.ot-go-modal-buttons .ot-go-modal-submit{width:100%;flex:none}}@keyframes ot-go-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}#onetrust-banner-sdk{box-shadow:0 0 18px rgba(0,0,0,.2)}#onetrust-banner-sdk.otFlat{position:fixed;z-index:2147483645;bottom:0;right:0;left:0;background-color:#fff;max-height:90%;overflow-x:hidden;overflow-y:auto}#onetrust-banner-sdk.otFlat.top{top:0px;bottom:auto}#onetrust-banner-sdk.otRelFont{font-size:1rem}#onetrust-banner-sdk>.ot-sdk-container{overflow:hidden}#onetrust-banner-sdk::-webkit-scrollbar{width:11px}#onetrust-banner-sdk::-webkit-scrollbar-thumb{border-radius:10px;background:#c1c1c1}#onetrust-banner-sdk{scrollbar-arrow-color:#c1c1c1;scrollbar-darkshadow-color:#c1c1c1;scrollbar-face-color:#c1c1c1;scrollbar-shadow-color:#c1c1c1}#onetrust-banner-sdk #onetrust-policy{margin:1.25em 0 .625em 2em;overflow:hidden}#onetrust-banner-sdk #onetrust-policy .ot-gv-list-handler{float:left;font-size:.82em;padding:0;margin-bottom:0;border:0;line-height:normal;height:auto;width:auto}#onetrust-banner-sdk #onetrust-policy-title{font-size:1.2em;line-height:1.3;margin-bottom:10px}#onetrust-banner-sdk #onetrust-group-container{position:relative}#onetrust-banner-sdk #onetrust-policy-text{clear:both;text-align:left;font-size:.88em;line-height:1.4}#onetrust-banner-sdk #onetrust-policy-text *{font-size:inherit;line-height:inherit}#onetrust-banner-sdk #onetrust-policy-text a{font-weight:bold}#onetrust-banner-sdk #onetrust-policy-title,#onetrust-banner-sdk #onetrust-policy-text{color:dimgray;float:left}#onetrust-banner-sdk #onetrust-button-group-parent{min-height:1px;text-align:center}#onetrust-banner-sdk #onetrust-button-group{display:inline-block}#onetrust-banner-sdk #onetrust-accept-btn-handler,#onetrust-banner-sdk #onetrust-reject-all-handler,#onetrust-banner-sdk #onetrust-pc-btn-handler{background-color:#68b631;color:#fff;border-color:#68b631;margin-right:1em;min-width:125px;height:auto;white-space:normal;word-break:break-word;word-wrap:break-word;padding:12px 10px;line-height:1.2;font-size:.813em;font-weight:600}#onetrust-banner-sdk #onetrust-pc-btn-handler.cookie-setting-link{background-color:#fff;border:none;color:#68b631;text-decoration:underline;padding-left:0;padding-right:0}#onetrust-banner-sdk .onetrust-close-btn-ui{width:44px;height:44px;background-size:12px;border:none;position:relative;margin:auto;padding:0}#onetrust-banner-sdk .banner_logo{display:none}#onetrust-banner-sdk.ot-bnr-w-logo .ot-bnr-logo{position:absolute;top:50%;transform:translateY(-50%);left:0px;margin-right:5px}#onetrust-banner-sdk.ot-bnr-w-logo #onetrust-policy{margin-left:65px}#onetrust-banner-sdk .ot-b-addl-desc{clear:both;float:left;display:block}#onetrust-banner-sdk #banner-options{float:left;display:table;margin-right:0;margin-left:1em;width:calc(100% - 1em)}#onetrust-banner-sdk .banner-option-input{cursor:pointer;width:auto;height:auto;border:none;padding:0;padding-right:3px;margin:0 0 10px;font-size:.82em;line-height:1.4}#onetrust-banner-sdk .banner-option-input *{pointer-events:none;font-size:inherit;line-height:inherit}#onetrust-banner-sdk .banner-option-input[aria-expanded=true]~.banner-option-details{display:block;height:auto}#onetrust-banner-sdk .banner-option-input[aria-expanded=true] .ot-arrow-container{transform:rotate(90deg)}#onetrust-banner-sdk .banner-option{margin-bottom:12px;margin-left:0;border:none;float:left;padding:0}#onetrust-banner-sdk .banner-option:first-child{padding-left:2px}#onetrust-banner-sdk .banner-option:not(:first-child){padding:0;border:none}#onetrust-banner-sdk .banner-option-header{cursor:pointer;display:inline-block}#onetrust-banner-sdk .banner-option-header :first-child{color:dimgray;font-weight:bold;float:left}#onetrust-banner-sdk .banner-option-header .ot-arrow-container{display:inline-block;border-top:6px solid rgba(0,0,0,0);border-bottom:6px solid rgba(0,0,0,0);border-left:6px solid dimgray;margin-left:10px;vertical-align:middle}#onetrust-banner-sdk .banner-option-details{display:none;font-size:.83em;line-height:1.5;padding:10px 0px 5px 10px;margin-right:10px;height:0px}#onetrust-banner-sdk .banner-option-details *{font-size:inherit;line-height:inherit;color:dimgray}#onetrust-banner-sdk .ot-arrow-container,#onetrust-banner-sdk .banner-option-details{transition:all 300ms ease-in 0s;-webkit-transition:all 300ms ease-in 0s;-moz-transition:all 300ms ease-in 0s;-o-transition:all 300ms ease-in 0s}#onetrust-banner-sdk .ot-dpd-container{float:left}#onetrust-banner-sdk .ot-dpd-title{margin-bottom:10px}#onetrust-banner-sdk .ot-dpd-title,#onetrust-banner-sdk .ot-dpd-desc{font-size:.88em;line-height:1.4;color:dimgray}#onetrust-banner-sdk .ot-dpd-title *,#onetrust-banner-sdk .ot-dpd-desc *{font-size:inherit;line-height:inherit}#onetrust-banner-sdk.ot-iab-2 #onetrust-policy-text *{margin-bottom:0}#onetrust-banner-sdk.ot-iab-2 .onetrust-vendors-list-handler{display:block;margin-left:0;margin-top:5px;clear:both;margin-bottom:0;padding:0;border:0;height:auto;width:auto}#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group button{display:block}#onetrust-banner-sdk.ot-close-btn-link{padding-top:25px}#onetrust-banner-sdk.ot-close-btn-link #onetrust-close-btn-container{top:15px;transform:none;right:15px}#onetrust-banner-sdk.ot-close-btn-link #onetrust-close-btn-container button{padding:0;white-space:pre-wrap;border:none;height:auto;line-height:1.5;text-decoration:underline;font-size:.69em}#onetrust-banner-sdk #onetrust-policy-text,#onetrust-banner-sdk .ot-dpd-desc,#onetrust-banner-sdk .ot-b-addl-desc{font-size:.813em;line-height:1.5}#onetrust-banner-sdk .ot-dpd-desc{margin-bottom:10px}#onetrust-banner-sdk .ot-dpd-desc>.ot-b-addl-desc{margin-top:10px;margin-bottom:10px;font-size:1em}@media only screen and (max-width: 425px){#onetrust-banner-sdk #onetrust-close-btn-container{position:absolute;top:6px;right:2px}#onetrust-banner-sdk #onetrust-policy{margin-left:0;margin-top:3em}#onetrust-banner-sdk #onetrust-button-group{display:block}#onetrust-banner-sdk #onetrust-accept-btn-handler,#onetrust-banner-sdk #onetrust-reject-all-handler,#onetrust-banner-sdk #onetrust-pc-btn-handler{width:100%}#onetrust-banner-sdk .onetrust-close-btn-ui{top:auto;transform:none}#onetrust-banner-sdk #onetrust-policy-title{display:inline;float:none}#onetrust-banner-sdk #banner-options{margin:0;padding:0;width:100%}}@media only screen and (max-width: 550px){#onetrust-button-group.ot-button-order-container #onetrust-accept-btn-handler,#onetrust-button-group.ot-button-order-container #onetrust-reject-all-handler,#onetrust-button-group.ot-button-order-container #onetrust-pc-btn-handler{margin-right:0}#onetrust-banner-sdk .has-reject-all-button div#onetrust-button-group.ot-button-order-container #onetrust-accept-btn-handler,#onetrust-banner-sdk .has-reject-all-button div#onetrust-button-group.ot-button-order-container #onetrust-reject-all-handler,#onetrust-banner-sdk .has-reject-all-button div#onetrust-button-group.ot-button-order-container #onetrust-pc-btn-handler{margin-right:0}}@media only screen and (min-width: 426px)and (max-width: 896px){#onetrust-banner-sdk #onetrust-close-btn-container{position:absolute;top:0;right:0}#onetrust-banner-sdk #onetrust-policy{margin-left:1em;margin-right:1em}#onetrust-banner-sdk .onetrust-close-btn-ui{top:10px;right:10px}#onetrust-banner-sdk:not(.ot-iab-2) #onetrust-group-container{width:95%}#onetrust-banner-sdk.ot-iab-2 #onetrust-group-container{width:100%}#onetrust-banner-sdk.ot-bnr-w-logo #onetrust-button-group-parent{padding-left:50px}#onetrust-banner-sdk #onetrust-button-group-parent{width:100%;position:relative;margin-left:0}#onetrust-banner-sdk #onetrust-button-group button{display:inline-block}#onetrust-banner-sdk #onetrust-button-group{margin-right:0;text-align:center}#onetrust-banner-sdk #onetrust-button-group.ot-button-order-container #onetrust-accept-btn-handler,#onetrust-banner-sdk #onetrust-button-group.ot-button-order-container #onetrust-reject-all-handler,#onetrust-banner-sdk #onetrust-button-group.ot-button-order-container #onetrust-pc-btn-handler{width:auto}#onetrust-banner-sdk .has-reject-all-button #onetrust-button-group.ot-button-order-container{display:inline-flex;flex-wrap:wrap}#onetrust-banner-sdk .has-reject-all-button #onetrust-button-group.ot-button-order-container #onetrust-pc-btn-handler,#onetrust-banner-sdk .has-reject-all-button #onetrust-button-group.ot-button-order-container #onetrust-reject-all-handler,#onetrust-banner-sdk .has-reject-all-button #onetrust-button-group.ot-button-order-container #onetrust-accept-btn-handler{float:none}#onetrust-banner-sdk .has-reject-all-button #onetrust-button-group.ot-button-order-container *[class*=ot-button-order-]:nth-of-type(1){margin-right:auto !important}#onetrust-banner-sdk .has-reject-all-button #onetrust-pc-btn-handler{float:left}#onetrust-banner-sdk .has-reject-all-button #onetrust-reject-all-handler,#onetrust-banner-sdk .has-reject-all-button #onetrust-accept-btn-handler{float:right}#onetrust-banner-sdk .has-reject-all-button #onetrust-button-group{width:calc(100% - 2em);margin-right:0}#onetrust-banner-sdk .has-reject-all-button #onetrust-pc-btn-handler.cookie-setting-link{padding-left:0px;text-align:left}#onetrust-banner-sdk.ot-buttons-fw .ot-sdk-three button{width:100%;text-align:center}#onetrust-banner-sdk.ot-buttons-fw #onetrust-button-group-parent button{float:none}#onetrust-banner-sdk.ot-buttons-fw #onetrust-pc-btn-handler.cookie-setting-link{text-align:center}}@media only screen and (min-width: 550px){#onetrust-banner-sdk .banner-option:not(:first-child){border-left:1px solid #d8d8d8;padding-left:25px}}@media only screen and (min-width: 425px)and (max-width: 550px){#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group,#onetrust-banner-sdk.ot-iab-2 .banner-option{width:100%}#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group #onetrust-accept-btn-handler,#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group #onetrust-reject-all-handler,#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group #onetrust-pc-btn-handler{width:100%}#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group #onetrust-accept-btn-handler,#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group #onetrust-reject-all-handler{float:left}#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group.ot-button-order-container{width:auto}}@media only screen and (min-width: 769px){#onetrust-banner-sdk #onetrust-button-group{margin-right:30%}#onetrust-banner-sdk #banner-options{margin-left:2em;margin-right:5em;margin-bottom:1.25em;width:calc(100% - 7em)}}@media only screen and (min-width: 897px)and (max-width: 1023px){#onetrust-banner-sdk.vertical-align-content #onetrust-button-group-parent{position:absolute;top:50%;left:80%;transform:translateY(-50%)}#onetrust-banner-sdk #onetrust-close-btn-container{top:50%;margin:auto;transform:translate(-50%, -50%);position:absolute;padding:0;right:0}#onetrust-banner-sdk #onetrust-close-btn-container button{position:relative;margin:0;right:-22px;top:2px}}@media only screen and (min-width: 1024px){#onetrust-banner-sdk #onetrust-close-btn-container{top:50%;margin:auto;transform:translate(-50%, -50%);position:absolute;right:0}#onetrust-banner-sdk #onetrust-close-btn-container button{right:-12px}#onetrust-banner-sdk #onetrust-policy{margin-left:2em}#onetrust-banner-sdk.vertical-align-content #onetrust-button-group-parent{position:absolute;top:50%;left:60%;transform:translateY(-50%)}#onetrust-banner-sdk .ot-optout-signal{width:50%}#onetrust-banner-sdk.ot-iab-2 #onetrust-policy-title{width:50%}#onetrust-banner-sdk.ot-iab-2 #onetrust-policy-text,#onetrust-banner-sdk.ot-iab-2 :not(.ot-dpd-desc)>.ot-b-addl-desc{margin-bottom:1em;width:50%;border-right:1px solid #d8d8d8;padding-right:1rem}#onetrust-banner-sdk.ot-iab-2 #onetrust-policy-text{margin-bottom:0;padding-bottom:1em}#onetrust-banner-sdk.ot-iab-2 :not(.ot-dpd-desc)>.ot-b-addl-desc{margin-bottom:0;padding-bottom:1em}#onetrust-banner-sdk.ot-iab-2 .ot-dpd-container{width:45%;padding-left:1rem;display:inline-block;float:none}#onetrust-banner-sdk.ot-iab-2 .ot-dpd-title{line-height:1.7}#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group-parent{left:auto;right:4%;margin-left:0}#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group button{display:block}#onetrust-banner-sdk:not(.ot-iab-2) #onetrust-button-group-parent{margin:auto;width:30%}#onetrust-banner-sdk:not(.ot-iab-2) #onetrust-group-container{width:60%}#onetrust-banner-sdk #onetrust-button-group{margin-right:auto}#onetrust-banner-sdk #onetrust-accept-btn-handler,#onetrust-banner-sdk #onetrust-reject-all-handler,#onetrust-banner-sdk #onetrust-pc-btn-handler{margin-top:1em}}@media only screen and (min-width: 890px){#onetrust-banner-sdk.ot-buttons-fw:not(.ot-iab-2) #onetrust-button-group-parent{padding-left:3%;padding-right:4%;margin-left:0}#onetrust-banner-sdk.ot-buttons-fw:not(.ot-iab-2) #onetrust-button-group{margin-right:0;margin-top:1.25em;width:100%}#onetrust-banner-sdk.ot-buttons-fw:not(.ot-iab-2) #onetrust-button-group button{width:100%;margin-bottom:5px;margin-top:5px}#onetrust-banner-sdk.ot-buttons-fw:not(.ot-iab-2) #onetrust-button-group button:last-of-type{margin-bottom:20px}}@media only screen and (min-width: 1280px){#onetrust-banner-sdk:not(.ot-iab-2) #onetrust-group-container{width:55%}#onetrust-banner-sdk:not(.ot-iab-2) #onetrust-button-group-parent{width:44%;padding-left:2%;padding-right:2%}#onetrust-banner-sdk:not(.ot-iab-2).vertical-align-content #onetrust-button-group-parent{position:absolute;left:55%}} | |
| 125 | + | |
| 126 | + #onetrust-consent-sdk #onetrust-banner-sdk { | |
| 127 | + background-color: #FFFFFF; | |
| 128 | + } | |
| 129 | + | |
| 130 | + #onetrust-consent-sdk #onetrust-policy-title, | |
| 131 | + #onetrust-consent-sdk #onetrust-policy-text, | |
| 132 | + #onetrust-consent-sdk .ot-b-addl-desc, | |
| 133 | + #onetrust-consent-sdk .ot-dpd-desc, | |
| 134 | + #onetrust-consent-sdk .ot-dpd-title, | |
| 135 | + #onetrust-consent-sdk #onetrust-policy-text *:not(.onetrust-vendors-list-handler), | |
| 136 | + #onetrust-consent-sdk .ot-dpd-desc *:not(.onetrust-vendors-list-handler), | |
| 137 | + #onetrust-consent-sdk #onetrust-banner-sdk #banner-options *, | |
| 138 | + #onetrust-banner-sdk .ot-cat-header, | |
| 139 | + #onetrust-banner-sdk .ot-optout-signal, | |
| 140 | + #onetrust-consent-sdk .ot-go-modal-title, | |
| 141 | + #onetrust-consent-sdk .ot-go-modal-desc, | |
| 142 | + #onetrust-banner-sdk .ot-go-modal-title, | |
| 143 | + #onetrust-banner-sdk .ot-go-modal-desc { | |
| 144 | + color: #000000; | |
| 145 | + } | |
| 146 | + #onetrust-consent-sdk .ot-go-modal-cancel, | |
| 147 | + #onetrust-banner-sdk .ot-go-modal-cancel | |
| 148 | + { | |
| 149 | + color: #000000 !important; | |
| 150 | + } | |
| 151 | + | |
| 152 | + #onetrust-consent-sdk .ot-go-modal-close-btn, | |
| 153 | + #onetrust-banner-sdk .ot-go-modal-close-btn, | |
| 154 | + #onetrust-consent-sdk .ot-go-modal-submit, | |
| 155 | + #onetrust-banner-sdk .ot-go-modal-submit { | |
| 156 | + color: #FFFFFF !important; | |
| 157 | + } | |
| 158 | + | |
| 159 | + #onetrust-consent-sdk .ot-go-modal-cancel, | |
| 160 | + #onetrust-banner-sdk .ot-go-modal-cancel { | |
| 161 | + border-color: #000000 !important; | |
| 162 | + } | |
| 163 | + | |
| 164 | + | |
| 165 | + #onetrust-consent-sdk .ot-go-modal-email, | |
| 166 | + #onetrust-banner-sdk .ot-go-modal-email { | |
| 167 | + border-color: #000000 !important; | |
| 168 | + background-color: rgb(255, 255, 255); | |
| 169 | + } | |
| 170 | + | |
| 171 | + #onetrust-consent-sdk .ot-go-modal-email:focus, | |
| 172 | + #onetrust-banner-sdk .ot-go-modal-email:focus { | |
| 173 | + border-color: #000000; | |
| 174 | + } | |
| 175 | + | |
| 176 | + #onetrust-consent-sdk .ot-go-modal-email::placeholder, | |
| 177 | + #onetrust-banner-sdk .ot-go-modal-email::placeholder { | |
| 178 | + color: #000000; | |
| 179 | + } | |
| 180 | + | |
| 181 | + #onetrust-consent-sdk #onetrust-banner-sdk .banner-option-details { | |
| 182 | + background-color: #E9E9E9; | |
| 183 | + } | |
| 184 | + | |
| 185 | + #onetrust-consent-sdk #onetrust-banner-sdk a[href], | |
| 186 | + #onetrust-consent-sdk #onetrust-banner-sdk a[href] font, | |
| 187 | + #onetrust-consent-sdk #onetrust-banner-sdk .ot-link-btn { | |
| 188 | + color: #000000; | |
| 189 | + } | |
| 190 | + | |
| 191 | + #onetrust-consent-sdk #onetrust-accept-btn-handler, | |
| 192 | + #onetrust-banner-sdk #onetrust-reject-all-handler, | |
| 193 | + #onetrust-banner-sdk #ot-dialog-confirm-handler, | |
| 194 | + #onetrust-consent-sdk .ot-go-modal-close-btn, | |
| 195 | + #onetrust-banner-sdk .ot-go-modal-close-btn, | |
| 196 | + #onetrust-consent-sdk .ot-go-modal-submit, | |
| 197 | + #onetrust-banner-sdk .ot-go-modal-submit { | |
| 198 | + background-color: #00467f;border-color: #00467f; | |
| 199 | + color: #FFFFFF; | |
| 200 | + } | |
| 201 | + #onetrust-consent-sdk #onetrust-banner-sdk *:focus, | |
| 202 | + #onetrust-consent-sdk #onetrust-banner-sdk:focus { | |
| 203 | + outline-color: #000000; | |
| 204 | + outline-width: 1px; | |
| 205 | + outline-style: solid; | |
| 206 | + } | |
| 207 | + #onetrust-consent-sdk #onetrust-pc-btn-handler, | |
| 208 | + #onetrust-consent-sdk #onetrust-pc-btn-handler.cookie-setting-link, | |
| 209 | + #onetrust-consent-sdk #ot-dialog-cancel-handler { | |
| 210 | + color: #000000; border-color: #000000; | |
| 211 | + background-color: #FFFFFF; | |
| 212 | + }#onetrust-banner-sdk #onetrust-policy-text a.ot-cookie-policy-link, | |
| 213 | + #onetrust-banner-sdk #onetrust-policy-text a.ot-imprint-link { | |
| 214 | + margin-left: 5px; | |
| 215 | + }#onetrust-pc-sdk .ot-go-group{border:1px solid #d8d8d8 !important;border-radius:1px;margin-bottom:15px !important;float:left;width:calc(100% - 2px)}#onetrust-pc-sdk .ot-go-section-header{float:left;padding-bottom:10px;font-size:1em;width:100%;font-weight:bold;color:#333;text-align:left;margin:0}.ot-go-modal-error-msg:empty{margin:0;line-height:0}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide){background:rgba(0,0,0,.5);z-index:2147483648;width:100%;height:100%;overflow:hidden;position:fixed;top:0;left:0}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal{display:flex;flex-direction:column;overflow:hidden;position:relative;margin:5% auto;width:440px;max-width:90%;max-height:90vh;border-radius:8px;z-index:2147483649;background-color:#fff;box-shadow:0 4px 24px rgba(0,0,0,.15)}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-header{display:flex;justify-content:flex-end;align-items:center;padding:12px 16px}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-header .ot-go-modal-close{width:44px;height:44px;background-size:12px;margin:-18px -18px 0 0;border:none;display:inline-block;padding:0;background-repeat:no-repeat;background-position:center;position:absolute;top:1em;cursor:pointer}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-body{padding:0 28px 28px;overflow-y:auto}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-title{font-size:1.25em;font-weight:700;margin-bottom:12px;text-align:center}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-desc{font-size:.88em;margin:0 0 20px;line-height:1.5;text-align:center}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper{position:relative;margin-bottom:4px}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-email{width:100%;padding:10px 36px 10px 12px;border:1px solid #d8d8d8;border-radius:4px;font-size:.95em;outline:none;box-sizing:border-box;color:inherit;background-color:rgba(0,0,0,0)}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-email::placeholder{color:inherit;opacity:.6}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-error-icon{position:absolute;right:10px;top:50%;transform:translateY(-50%);width:16px;height:16px;border-radius:50%;background-color:#d93025}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-error-icon::after{content:"!";color:#fff;font-size:11px;font-weight:bold;display:flex;align-items:center;justify-content:center;height:100%}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-error-msg{color:#d93025 !important;font-size:.82em;margin:4px 0 8px}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons{display:flex;gap:12px;margin-top:20px}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel,#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit{flex:1;padding:10px 16px;border-radius:4px;font-size:.88em;font-weight:600;cursor:pointer;text-align:center;box-sizing:border-box}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel{border:1px solid;background-color:rgba(0,0,0,0)}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel:hover{background-color:rgba(0,0,0,.05)}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit{position:relative}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit:hover:not(.ot-go-btn-loading){opacity:.8}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit.ot-go-btn-loading{pointer-events:none;opacity:.85}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit .ot-go-btn-spinner{display:inline-block;width:16px;height:16px;border:2px solid rgba(255,255,255,.3);border-top-color:#fff;border-radius:50%;animation:ot-go-spin .6s linear infinite;vertical-align:middle}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state{text-align:center;padding:20px 0}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-success-shield{width:56px;height:56px;margin:0 auto 20px}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-modal-confirm-msg{font-size:.95em;color:inherit;margin-bottom:24px;line-height:1.5;padding:0 10px}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-modal-close-btn{display:block;width:100%;border-radius:4px;font-size:.88em;font-weight:600;cursor:pointer;box-sizing:border-box}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-modal-close-btn:hover{opacity:.8}@media(max-width: 500px){#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal{width:95%;margin:10% auto}.ot-go-modal-buttons{flex-direction:column;gap:0px !important;flex-direction:column-reverse !important}.ot-go-modal-buttons .ot-go-modal-cancel,.ot-go-modal-buttons .ot-go-modal-submit{width:100%;flex:none}}@keyframes ot-go-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes ot-slide-in-left{from{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}to{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}}@keyframes ot-slide-in-right{from{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}to{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}}@keyframes ot-slide-out-left{from{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}to{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}}@keyframes ot-slide-out-right{from{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}to{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}}#onetrust-pc-sdk.otPcPanel.ot-slide-out-right{-webkit-animation-name:ot-slide-out-right;animation-name:ot-slide-out-right}#onetrust-pc-sdk.otPcPanel.ot-slide-in-left{-webkit-animation-name:ot-slide-in-left;animation-name:ot-slide-in-left}#onetrust-pc-sdk.otPcPanel.ot-slide-in-right{-webkit-animation-name:ot-slide-in-right;animation-name:ot-slide-in-right}#onetrust-pc-sdk.otPcPanel.ot-slide-out-left{-webkit-animation-name:ot-slide-out-left;animation-name:ot-slide-out-left}@media print,(prefers-reduced-motion){.ot-animated{-webkit-animation:initial !important;animation:initial !important;-webkit-transition:none !important;transition:none !important}#onetrust-pc-sdk.otPcPanel.ot-slide-out-left{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}#onetrust-pc-sdk.otPcPanel.ot-slide-out-right{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}}#onetrust-pc-sdk{--ot-footer-space: 10rem;position:fixed;display:flex;flex-direction:column;z-index:2147483647;bottom:0;left:0;background-color:#fff;max-width:min(480px,100vw);min-width:min(480px,100vw);height:100%;max-height:100vh;-webkit-box-shadow:0px 2px 10px -3px #999;-moz-box-shadow:0px 2px 10px -3px #999;box-shadow:0px 2px 10px -3px #999}#onetrust-pc-sdk>div[role=dialog]{display:flex;flex-direction:column;flex:1 1 auto;min-height:0;overflow:hidden}#onetrust-pc-sdk.otRelFont{font-size:1rem}#onetrust-pc-sdk.otPcPanel.right,#onetrust-pc-sdk.otPcPanel[dir=rtl]{right:0;left:auto}#onetrust-pc-sdk.otPcPanel.right-rtl[dir=rtl]{left:0;right:auto}#onetrust-pc-sdk.otPcPanel.ot-animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}#onetrust-pc-sdk #close-pc-btn-handler.ot-close-icon{background-color:rgba(0,0,0,0);border:none;margin-right:4px}#onetrust-pc-sdk .ot-optout-signal{margin-top:.625rem}#onetrust-pc-sdk .ot-pc-scrollbar::-webkit-scrollbar-track{margin-right:20px}#onetrust-pc-sdk .ot-pc-scrollbar::-webkit-scrollbar{width:11px}#onetrust-pc-sdk .ot-pc-scrollbar::-webkit-scrollbar-thumb{border-radius:10px;background:#d8d8d8}#onetrust-pc-sdk .ot-pc-scrollbar{scrollbar-arrow-color:#d8d8d8;scrollbar-darkshadow-color:#d8d8d8;scrollbar-face-color:#d8d8d8;scrollbar-shadow-color:#d8d8d8}#onetrust-pc-sdk.ot-ftr-stacked{--ot-footer-space: 13.125rem}#onetrust-pc-sdk.ot-ftr-stacked .ot-pc-refuse-all-handler{margin-bottom:0px}#onetrust-pc-sdk.ot-ftr-stacked .ot-pc-footer button{width:100%;max-width:none}#onetrust-pc-sdk.ot-ftr-stacked #ot-lst-cnt{max-height:84%}#onetrust-pc-sdk #ot-addtl-venlst .ot-arw-cntr,#onetrust-pc-sdk #ot-addtl-venlst .ot-plus-minus,#onetrust-pc-sdk .ot-hide-tgl{visibility:hidden}#onetrust-pc-sdk #ot-addtl-venlst .ot-arw-cntr *,#onetrust-pc-sdk #ot-addtl-venlst .ot-plus-minus *,#onetrust-pc-sdk .ot-hide-tgl *{visibility:hidden}#onetrust-pc-sdk .ot-pc-header{height:auto;min-height:2.5rem;border-bottom:1px solid #e9e9e9;padding:10px 0 10px 25px;flex:0 0 auto}#onetrust-pc-sdk .ot-pc-logo{height:40px;width:120px}#onetrust-pc-sdk .ot-close-icon{float:right;height:10px;width:10px;margin-top:10px;margin-right:5px}#onetrust-pc-sdk #ot-pc-content,#onetrust-pc-sdk #ot-pc-lst{position:relative;top:auto;bottom:auto;flex:1 1 auto;min-height:0}#onetrust-pc-sdk #ot-pc-content{padding-left:2px;padding-right:10px;margin-left:23px;margin-right:7px;width:calc(100% - 42px);overflow-y:auto}#onetrust-pc-sdk #ot-pc-lst{width:100%}#onetrust-pc-sdk .ot-pc-footer{position:relative;bottom:auto;width:100%;max-height:var(--ot-footer-space);border-top:1px solid #d8d8d8;flex:0 0 auto;overflow-y:auto}#onetrust-pc-sdk .ot-pc-footer button{margin-top:19px}#onetrust-pc-sdk .ot-button-order-0{float:left !important;margin-right:10px !important;margin-bottom:25px !important}#onetrust-pc-sdk .ot-btn-container{text-align:left;padding:0 25px}#onetrust-pc-sdk .ot-btn-container button{min-width:calc(50% - 5px)}#onetrust-pc-sdk .ot-btn-container.ot-button-order-container{height:100%;display:flex;flex-direction:column;gap:.5rem;justify-content:space-around}#onetrust-pc-sdk .ot-btn-container.ot-button-order-container .ot-pc-refuse-all-handler,#onetrust-pc-sdk .ot-btn-container.ot-button-order-container .save-preference-btn-handler,#onetrust-pc-sdk .ot-btn-container.ot-button-order-container #accept-recommended-btn-handler{width:100%;float:none !important;margin:0 !important;min-height:40px}#onetrust-pc-sdk .ot-pc-footer-logo{padding-left:25px;height:30px;background:#f4f4f4;text-align:right}#onetrust-pc-sdk .ot-pc-footer-logo a{display:inline-block;margin-top:2px;margin-right:10px}#onetrust-pc-sdk .ot-pc-footer-logo img,#onetrust-pc-sdk .ot-pc-footer-logo svg{margin-top:3px}#onetrust-pc-sdk.otPcPanel[dir=rtl] .ot-pc-footer-logo{direction:rtl}#onetrust-pc-sdk.otPcPanel[dir=rtl] .ot-pc-footer-logo a{margin-right:25px}#onetrust-pc-sdk button{display:inline-block;font-size:.75em;letter-spacing:.08em;max-width:394px;padding:12px 30px;line-height:1;word-break:break-word;word-wrap:break-word;white-space:normal;font-weight:bold;height:auto}#onetrust-pc-sdk button:hover,#onetrust-pc-sdk button:focus{color:#fff;border-color:#68b631}#onetrust-pc-sdk .ot-link-btn{padding:0;margin-bottom:0;border:0;font-weight:normal;line-height:normal;width:auto;height:auto}#onetrust-pc-sdk #accept-recommended-btn-handler{margin-right:10px;margin-bottom:25px}#onetrust-pc-sdk .ot-pc-refuse-all-handler{margin-right:5px}#onetrust-pc-sdk .ot-tgl{float:right;position:relative;z-index:1}#onetrust-pc-sdk .ot-tgl input:checked+.ot-switch .ot-switch-nob{background-color:#468254;border:1px solid #fff}#onetrust-pc-sdk .ot-tgl input:checked+.ot-switch .ot-switch-nob:before{-webkit-transform:translateX(21px);-ms-transform:translateX(21px);transform:translateX(21px);background-color:#fff}#onetrust-pc-sdk .ot-tgl input:focus+.ot-switch .ot-switch-nob{box-shadow:0 0 1px #2196f3;outline-style:auto !important;outline-width:1px !important}#onetrust-pc-sdk .ot-switch{position:relative;display:inline-block;width:45px;height:25px;margin-bottom:0}#onetrust-pc-sdk .ot-switch-nob{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#767676;border:1px solid #ddd;transition:all .2s ease-in 0s;-moz-transition:all .2s ease-in 0s;-o-transition:all .2s ease-in 0s;-webkit-transition:all .2s ease-in 0s;border-radius:20px}#onetrust-pc-sdk .ot-switch-nob:before{position:absolute;content:"";height:18px;width:18px;bottom:3px;left:2px;background-color:#fff;-webkit-transition:.4s;transition:.4s;border-radius:20px}#onetrust-pc-sdk .ot-chkbox{z-index:1}#onetrust-pc-sdk .ot-chkbox input{width:28px !important;height:28px !important}#onetrust-pc-sdk .ot-chkbox input:checked~label::before{background-color:#3860be}#onetrust-pc-sdk .ot-chkbox input+label::after{content:none;color:#fff}#onetrust-pc-sdk .ot-chkbox input:checked+label::after{content:""}#onetrust-pc-sdk .ot-chkbox input:focus+label::before{outline-style:solid;outline-width:2px;outline-style:auto}#onetrust-pc-sdk .ot-chkbox input[aria-checked=mixed]~label::before{background-color:#3860be}#onetrust-pc-sdk .ot-chkbox input[aria-checked=mixed]+label::after{content:""}#onetrust-pc-sdk .ot-chkbox label{position:relative;display:flex;align-items:center;cursor:pointer;min-height:28px}#onetrust-pc-sdk .ot-chkbox label::before,#onetrust-pc-sdk .ot-chkbox label::after{position:absolute;content:"";display:inline-block;border-radius:3px}#onetrust-pc-sdk .ot-chkbox label::before{height:18px;width:18px;border:1px solid #3860be;left:0px;left:4px;top:4px}#onetrust-pc-sdk .ot-chkbox label::after{height:5px;width:9px;border-left:3px solid;border-bottom:3px solid;transform:rotate(-45deg);-o-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);left:8px;top:8px}#onetrust-pc-sdk .ot-label-txt{display:none}#onetrust-pc-sdk .ot-chkbox input,#onetrust-pc-sdk .ot-tgl input{position:absolute;opacity:0;width:0;height:0}#onetrust-pc-sdk .ot-arw-cntr{left:5px;float:right;position:relative;pointer-events:none}#onetrust-pc-sdk .ot-arw{width:16px;height:16px;margin-left:5px;color:dimgray;display:inline-block;vertical-align:middle;-webkit-transition:all 150ms ease-in 0s;-moz-transition:all 150ms ease-in 0s;-o-transition:all 150ms ease-in 0s;transition:all 150ms ease-in 0s}#onetrust-pc-sdk input:checked~.ot-acc-hdr .ot-arw,#onetrust-pc-sdk button[aria-expanded=true]~.ot-acc-hdr .ot-arw-cntr svg{transform:rotate(90deg);-o-transform:rotate(90deg);-ms-transform:rotate(90deg);-webkit-transform:rotate(90deg)}#onetrust-pc-sdk input[type=checkbox]:focus+.ot-acc-hdr{outline:1px solid #000}#onetrust-pc-sdk .ot-acc-hdr{display:inline-block;width:100%;justify-content:flex-start !important}#onetrust-pc-sdk .ot-enbl-chr .ot-acc-hdr{justify-content:space-between}#onetrust-pc-sdk .ot-cat-item p[role=heading]{max-width:60%;line-height:1.5}#onetrust-pc-sdk .ot-enbl-chr .ot-cat-item p[role=heading]{max-width:90%}#onetrust-pc-sdk #ot-fltr-modal .ot-label-txt{display:inline-block;font-size:.85em;color:dimgray}#onetrust-pc-sdk .ot-label-status{font-size:.75em;display:none;position:relative;top:2px;padding-right:5px;float:left}#onetrust-pc-sdk .ot-plus-minus{width:20px;height:20px;font-size:1.5em;position:relative;display:inline-block;margin-right:5px;top:3px}#onetrust-pc-sdk .ot-plus-minus span{position:absolute;background:#27455c;border-radius:1px}#onetrust-pc-sdk .ot-plus-minus span:first-of-type{top:25%;bottom:25%;width:10%;left:45%}#onetrust-pc-sdk .ot-plus-minus span:last-of-type{left:25%;right:25%;height:10%;top:45%}#onetrust-pc-sdk button[aria-expanded=true]~.ot-acc-hdr .ot-arw,#onetrust-pc-sdk button[aria-expanded=true]~.ot-acc-hdr .ot-plus-minus span:first-of-type,#onetrust-pc-sdk button[aria-expanded=true]~.ot-acc-hdr .ot-plus-minus span:last-of-type{transform:rotate(90deg)}#onetrust-pc-sdk button[aria-expanded=true]~.ot-acc-hdr .ot-plus-minus span:last-of-type{left:50%;right:50%}#onetrust-pc-sdk .ot-host-item,#onetrust-pc-sdk .ot-ven-item{padding-right:0}#onetrust-pc-sdk .ot-host-item .ot-plus-minus,#onetrust-pc-sdk .ot-ven-item .ot-plus-minus{float:left;margin-right:8px;margin-top:10px}#onetrust-pc-sdk .ot-ven-item ul{list-style:none inside;font-size:100%;margin:0}#onetrust-pc-sdk .ot-ven-item ul li{margin:0 !important;padding:0;border:none !important}#onetrust-pc-sdk .ot-hide-acc>button{pointer-events:none}#onetrust-pc-sdk .ot-hide-acc .ot-plus-minus>*,#onetrust-pc-sdk .ot-hide-acc .ot-arw-cntr>*{visibility:hidden}#onetrust-pc-sdk .ot-hide-acc .ot-acc-hdr{min-height:30px}#onetrust-pc-sdk #ot-pc-title,#onetrust-pc-sdk #ot-pc-desc,#onetrust-pc-sdk #ot-category-title,#onetrust-pc-sdk .ot-cat-header,#onetrust-pc-sdk .ot-cat-item p:last-of-type:not([role=heading]){color:dimgray}#onetrust-pc-sdk #ot-pc-title{margin-top:20px;margin-bottom:10px}#onetrust-pc-sdk #ot-pc-desc,#onetrust-pc-sdk .ot-cat-item p{font-size:.79em;line-height:1.4}#onetrust-pc-sdk #ot-pc-desc *,#onetrust-pc-sdk .ot-cat-item p *{font-size:inherit;line-height:inherit}#onetrust-pc-sdk #ot-category-title,#onetrust-pc-sdk #ot-pc-title{font-size:1.125em;line-height:1.2}#onetrust-pc-sdk #ot-pc-desc{clear:both;font-size:.813em;line-height:1.5;margin-bottom:25px}#onetrust-pc-sdk #ot-pc-desc *{font-size:inherit;line-height:inherit}#onetrust-pc-sdk #ot-pc-desc a.privacy-notice-link,#onetrust-pc-sdk #ot-pc-desc a.ot-imprint-handler{margin-right:8px}#onetrust-pc-sdk #ot-pc-desc li{padding:10px 0px}#onetrust-pc-sdk #ot-pc-desc,#onetrust-pc-sdk #accept-recommended-btn-handler,#onetrust-pc-sdk #ot-pc-title,#onetrust-pc-sdk #ot-category-title,#onetrust-pc-sdk .ot-cat-header{float:left}#onetrust-pc-sdk #ot-category-title{width:100%;text-align:left}#onetrust-pc-sdk #ot-pc-title,#onetrust-pc-sdk #ot-category-title,#onetrust-pc-sdk .ot-cat-header,#onetrust-pc-sdk #ot-lst-title,#onetrust-pc-sdk .ot-ven-hdr .ot-ven-name,#onetrust-pc-sdk .ot-always-active{font-weight:bold}#onetrust-pc-sdk a{color:#656565;cursor:pointer}#onetrust-pc-sdk a:hover{color:#3860be}#onetrust-pc-sdk .ot-always-active{float:right;color:#3860be;margin-top:-2px}#onetrust-pc-sdk .ot-cat-header,#onetrust-pc-sdk .ot-always-active{font-size:.88em;line-height:1.4;position:relative}#onetrust-pc-sdk .ot-cat-item{margin-top:25px;line-height:1.1}#onetrust-pc-sdk .ot-cat-item p:last-of-type:not([role=heading]){clear:both;padding-top:15px;margin:0}#onetrust-pc-sdk .ot-acc-txt p ul,#onetrust-pc-sdk .ot-cat-item ul,#onetrust-pc-sdk li.ot-subgrp p ul{margin:0px;list-style:disc;margin-left:15px}#onetrust-pc-sdk .ot-acc-txt p ul li,#onetrust-pc-sdk .ot-cat-item ul li,#onetrust-pc-sdk li.ot-subgrp p ul li{font-size:inherit;margin:5px 0 0 0;padding:0;border:none}#onetrust-pc-sdk .ot-subgrp-cntr{display:inline-block;width:100%}#onetrust-pc-sdk .ot-subgrp-cntr .ot-tgl-cntr{float:right}#onetrust-pc-sdk .ot-subgrp-cntr .ot-tgl-cntr.ot-always-active-subgroup{width:auto}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li p,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li h5{font-size:.813em;line-height:1.5;color:dimgray}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr{display:inline-block;width:100%;vertical-align:middle}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-txt{margin:0}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li{margin:10px 0 0 0;padding:0;border:none}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li p{clear:both;float:left;padding-top:10px;margin:0}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li h5,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li p[aria-level="5"]{font-weight:bold;margin-bottom:0;float:left;position:relative;top:6px;padding-top:0}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp{margin-left:20px;overflow:hidden}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp>p ul:first-child{padding-bottom:7.5px}#onetrust-pc-sdk ul.ot-subgrps{margin:0}#onetrust-pc-sdk .ot-hlst-cntr,#onetrust-pc-sdk .ot-vlst-cntr{margin-top:3px;overflow:hidden;clear:both;padding-left:2px;padding-bottom:2px}#onetrust-pc-sdk .ot-always-active-subgroup{width:auto;padding-left:0px !important;top:3px;position:relative}#onetrust-pc-sdk .category-vendors-list-handler,#onetrust-pc-sdk .category-vendors-list-handler+a,#onetrust-pc-sdk .category-host-list-handler{color:#3860be;margin-left:0;font-size:.813em;text-decoration:none;float:left;margin-top:5px}#onetrust-pc-sdk .category-vendors-list-handler:hover,#onetrust-pc-sdk .category-vendors-list-handler+a:hover,#onetrust-pc-sdk .category-host-list-handler:hover{text-decoration-line:underline}#onetrust-pc-sdk .category-vendors-list-handler+a{clear:none}#onetrust-pc-sdk .ot-vlst-cntr svg.ot-ext-lnk,#onetrust-pc-sdk .ot-ven-hdr svg.ot-ext-lnk,#onetrust-pc-sdk .ot-host-hdr svg.ot-ext-lnk,#onetrust-pc-sdk .ot-cat-grp svg.ot-ext-lnk{display:inline-block;height:13px;width:13px;background-repeat:no-repeat;margin-left:1px;cursor:pointer;vertical-align:middle}#onetrust-pc-sdk .ot-ven-hdr svg.ot-ext-lnk{margin-bottom:-1px}#onetrust-pc-sdk .back-btn-handler{min-height:20px;font-size:1em;text-decoration:none}#onetrust-pc-sdk .back-btn-handler svg{width:12px;height:12px}#onetrust-pc-sdk .back-btn-handler:hover{opacity:.6}#onetrust-pc-sdk #ot-lst-title h3,#onetrust-pc-sdk #ot-lst-title p[aria-level="3"]{word-break:break-word;word-wrap:break-word;margin-bottom:0;color:#656565;font-weight:bold;margin-left:15px;display:inline-block;font-size:1em}#onetrust-pc-sdk #ot-lst-title{margin-top:15px;font-size:1em}#onetrust-pc-sdk #ot-pc-hdr{display:inline-block;padding-left:27px;padding-right:17px;width:calc(100% - 44px)}#onetrust-pc-sdk #ot-pc-hdr input::placeholder{color:#707070;font-style:italic}#onetrust-pc-sdk #vendor-search-handler{height:31px;width:100%;border-radius:50px;font-size:.8em;padding-right:35px;padding-left:15px;float:left;margin-left:15px}#onetrust-pc-sdk #ot-lst-cnt{transform:translate3d(0, 0, 0);position:relative;padding-left:27px;margin-right:10px;margin-top:10px;width:calc(100% - 37px);top:0;bottom:70px;height:calc(100% - 94px);overflow-y:auto;overflow-x:hidden}#onetrust-pc-sdk #ot-pc-lst .ot-tgl-cntr{right:32px;position:absolute;margin-top:10px;height:20px}#onetrust-pc-sdk #ot-pc-lst:not(.ot-enbl-chr):not(.ot-hosts-ui) .ot-tgl-cntr{right:12px}#onetrust-pc-sdk #ot-sel-blk{position:sticky;position:-webkit-sticky;width:100%;display:inline-block;top:0;overflow:hidden;z-index:3}#onetrust-pc-sdk #ot-sel-blk p{font-size:.75em;color:#6b6b6b;margin:0;display:inline-block}#onetrust-pc-sdk .ot-enbl-chr>:not(.ot-hosts-ui) .ot-sel-all{padding-right:33px}#onetrust-pc-sdk .ot-enbl-chr .ot-hosts-ui .ot-sel-all{padding-right:23px}#onetrust-pc-sdk .ot-enbl-chr .ot-accordion-layout h4~.ot-tgl+.ot-tgl,#onetrust-pc-sdk .ot-enbl-chr .ot-accordion-layout p[aria-level="4"]~.ot-tgl+.ot-tgl{right:105px}#onetrust-pc-sdk .ot-enbl-chr .ot-cat-item h5+.ot-tgl-cntr,#onetrust-pc-sdk .ot-enbl-chr .ot-cat-item p[aria-level="5"]+.ot-tgl-cntr{padding-left:31px;padding-right:13px}#onetrust-pc-sdk #ot-pc-lst:not(.ot-enbl-chr) .ot-tgl-cntr .ot-arw-cntr,#onetrust-pc-sdk #ot-pc-lst:not(.ot-enbl-chr) .ot-tgl-cntr .ot-arw-cntr *{visibility:hidden}#onetrust-pc-sdk #ot-pc-content:not(.ot-enbl-chr) .ot-pli-hdr.ot-leg-border-color span:first-child{text-align:center}#onetrust-pc-sdk #ot-pc-content:not(.ot-enbl-chr) .ot-pli-hdr.ot-leg-border-color span:last-child{text-align:right}#onetrust-pc-sdk .ot-hosts-ui:not(.ot-enbl-chr) .ot-tgl-cntr{right:23px}#onetrust-pc-sdk .ot-hosts-ui #ot-sel-blk{width:100%}#onetrust-pc-sdk .ot-lst-subhdr{display:inline-block;width:100%;margin-top:10px}#onetrust-pc-sdk .ot-lst-subhdr svg{width:30px;height:30px;position:absolute;float:left;right:-15px}#onetrust-pc-sdk .ot-search-cntr{float:left;width:82%;position:relative}#onetrust-pc-sdk .ot-fltr-cntr{float:right;right:15px;position:relative}#onetrust-pc-sdk #ot-filter-list-header{display:block;box-sizing:border-box;margin-bottom:10px;float:left;width:100%;text-decoration:none;color:#3860be;font-size:.9em;font-weight:bold;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0);padding:1px 1px 1px 15px;word-wrap:break-word;overflow-wrap:break-word}#onetrust-pc-sdk #filter-btn-handler{background-color:#3860be;border-radius:17px;display:inline-block;position:relative;width:32px;height:32px;-moz-transition:.1s ease;-o-transition:.1s ease;-webkit-transition:1s ease;transition:.1s ease;padding:0;margin:0}#onetrust-pc-sdk #filter-btn-handler:hover{opacity:.7}#onetrust-pc-sdk #filter-btn-handler svg{width:12px;margin:6px 10px 0 9px;display:block;height:12px;position:static;right:auto;top:auto}#onetrust-pc-sdk .ot-ven-link,#onetrust-pc-sdk .ot-ven-legclaim-link{color:#3860be;text-decoration:none;display:inline-block;margin-top:10px;transform:translate(0, 1%);-o-transform:translate(0, 1%);-ms-transform:translate(0, 1%);-webkit-transform:translate(0, 1%);z-index:2;position:relative;font-size:.75em}#onetrust-pc-sdk .ot-ven-link:hover,#onetrust-pc-sdk .ot-ven-legclaim-link:hover{text-decoration:underline}#onetrust-pc-sdk .ot-ven-link *,#onetrust-pc-sdk .ot-ven-legclaim-link *{font-size:inherit}#onetrust-pc-sdk .ot-ven-name{vertical-align:middle}#onetrust-pc-sdk .ot-ven-hdr,#onetrust-pc-sdk .ot-host-hdr{width:calc(100% - 165px);height:auto;float:left;text-align:left;word-break:break-word;word-wrap:break-word;vertical-align:middle;padding-bottom:2px;padding-left:2px}#onetrust-pc-sdk .ot-host-hdr{pointer-events:none;position:relative;z-index:1}#onetrust-pc-sdk .ot-host-hdr .ot-host-name{pointer-events:none}#onetrust-pc-sdk .ot-host-hdr a{pointer-events:initial}#onetrust-pc-sdk #ot-host-lst .ot-host-info{font-size:.7em;line-height:1.1}#onetrust-pc-sdk #ot-host-lst .ot-host-name,#onetrust-pc-sdk #ot-host-lst .ot-host-name a{color:dimgray;font-size:.81em;font-weight:bold;line-height:1.4;margin-bottom:5px;position:relative}#onetrust-pc-sdk #ot-host-lst .ot-host-name a,#onetrust-pc-sdk #ot-host-lst .ot-host-info a{font-size:1em}#onetrust-pc-sdk #ot-host-lst .ot-host-desc{width:100%;margin-bottom:5px}#onetrust-pc-sdk #ot-host-lst .ot-host-expand,#onetrust-pc-sdk #ot-host-lst .ot-host-desc{color:dimgray;font-size:.69em;line-height:1.4;float:left;font-weight:normal}#onetrust-pc-sdk #ot-host-lst .ot-host-hdr>a{text-decoration:underline;font-size:.69em;position:relative;z-index:2;margin-bottom:5px;line-height:1.4}#onetrust-pc-sdk #ot-host-lst .ot-host-expand{color:#3860be}#onetrust-pc-sdk #ot-host-lst .ot-host-expand *{font-size:inherit}#onetrust-pc-sdk .ot-host-opt{margin:0;font-size:inherit;display:inline-block;width:100%}#onetrust-pc-sdk .ot-host-opt .ot-host-info{border:none;font-size:.8em;color:dimgray;display:inline-block;width:calc(100% - 20px);padding:10px;margin-bottom:10px;background-color:#f8f8f8}#onetrust-pc-sdk .ot-host-opt .ot-host-info>div{overflow:auto}#onetrust-pc-sdk .ot-host-opt li>dl{font-size:.8em;margin:5px 0}#onetrust-pc-sdk .ot-host-opt li>dl>div{padding:5px 0;display:flex}#onetrust-pc-sdk .ot-host-opt li>dl>div dt{width:30%;float:left}#onetrust-pc-sdk .ot-host-opt li>dl>div dd{width:70%;float:left;word-break:break-word;word-wrap:break-word}#onetrust-pc-sdk #ot-ven-lst .ot-acc-hdr{overflow:hidden;cursor:pointer}#onetrust-pc-sdk .ot-ven-dets{border-radius:2px;margin-top:10px;background-color:#f8f8f8}#onetrust-pc-sdk .ot-ven-dets li:first-child p:first-child{border-top:none}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc:not(:first-child){border-top:1px solid #ddd !important}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc:nth-child(n+3) p{display:inline-block}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc:nth-child(n+3) p:nth-of-type(odd){width:30%}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc:nth-child(n+3) p:nth-of-type(even){width:50%;word-break:break-word;word-wrap:break-word}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc p,#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc h5{padding-top:5px;padding-bottom:5px;display:block}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc h5,#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc p[aria-level="5"]{display:inline-block}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc p:nth-last-child(-n+1){padding-bottom:10px}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc p:nth-child(-n+2):not(.disc-pur):not([role=heading]){padding-top:10px}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc .disc-pur-cont{display:inline}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc .disc-pur{position:relative;width:50% !important;word-break:break-word;word-wrap:break-word;left:calc(30% + 17px)}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc .disc-pur:nth-child(-n+1){position:static}#onetrust-pc-sdk .ot-ven-dets p,#onetrust-pc-sdk .ot-ven-dets h5,#onetrust-pc-sdk .ot-ven-dets span{font-size:.69em;text-align:left;vertical-align:middle;word-break:break-word;word-wrap:break-word;margin:0;padding-bottom:10px;padding-left:15px;color:#2e3644}#onetrust-pc-sdk .ot-ven-dets h5,#onetrust-pc-sdk .ot-ven-dets p[aria-level="5"]{padding-top:5px;line-height:1.5}#onetrust-pc-sdk .ot-ven-dets span{color:dimgray;padding:0;vertical-align:baseline}#onetrust-pc-sdk .ot-ven-dets .ot-ven-pur h5,#onetrust-pc-sdk .ot-ven-dets .ot-ven-pur p[aria-level="5"]{border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9;padding-bottom:5px;margin-bottom:5px;font-weight:bold}#onetrust-pc-sdk #no-results{text-align:center;margin-top:30px;height:calc(100% - 300px);margin-left:27px}#onetrust-pc-sdk #no-results span{font-weight:bold}#onetrust-pc-sdk #no-results p{font-size:1em;color:#2e3644;word-break:break-word;word-wrap:break-word}#onetrust-pc-sdk #ot-fltr-modal{right:13px;top:87px;height:90%;max-height:370px;display:none;-moz-transition:.2s ease;-o-transition:.2s ease;-webkit-transition:2s ease;transition:.2s ease;opacity:1;position:absolute}#onetrust-pc-sdk #ot-fltr-cnt{z-index:2147483646;background-color:#fff;position:relative;height:100%;max-width:325px;border-radius:3px;padding-right:10px;padding-bottom:5px;-webkit-box-shadow:0px 0px 12px 2px #c7c5c7;-moz-box-shadow:0px 0px 12px 2px #c7c5c7;box-shadow:0px 0px 12px 2px #c7c5c7}#onetrust-pc-sdk .ot-fltr-scrlcnt{overflow-y:auto;overflow-x:hidden;clear:both;max-height:calc(100% - 60px);border:none;padding:0;margin:0;min-width:0}#onetrust-pc-sdk #ot-anchor{border:12px solid rgba(0,0,0,0);display:none;position:absolute;z-index:2147483647;right:36px;top:75px;transform:rotate(45deg);-o-transform:rotate(45deg);-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);background-color:#fff;-webkit-box-shadow:-3px -3px 5px -2px #c7c5c7;-moz-box-shadow:-3px -3px 5px -2px #c7c5c7;box-shadow:-3px -3px 5px -2px #c7c5c7}#onetrust-pc-sdk .ot-fltr-btns{margin-left:15px}#onetrust-pc-sdk #filter-apply-handler{margin-right:15px}#onetrust-pc-sdk .ot-fltr-opt{margin-bottom:5px;margin-left:15px;min-height:20px;width:75%}#onetrust-pc-sdk .ot-fltr-opt label{padding-left:30px;margin-bottom:0}#onetrust-pc-sdk .ot-fltr-opt p{display:inline-block;margin:0;font-size:.9em;color:#2e3644}#onetrust-pc-sdk #ot-sel-blk .ot-chkbox{width:20px;height:20px;float:right}#onetrust-pc-sdk .line-through label::after,#onetrust-pc-sdk[dir=rtl] .line-through label::after{height:auto;border-left:0;transform:none;-o-transform:none;-ms-transform:none;-webkit-transform:none;left:9px;top:12px}#onetrust-pc-sdk #ot-selall-vencntr label,#onetrust-pc-sdk #ot-selall-adtlvencntr label,#onetrust-pc-sdk #ot-selall-hostcntr label,#onetrust-pc-sdk #ot-selall-licntr label,#onetrust-pc-sdk #ot-selall-gnvencntr label{position:relative;display:inline-block;margin:0}#onetrust-pc-sdk #ot-selall-vencntr input,#onetrust-pc-sdk #ot-selall-adtlvencntr input,#onetrust-pc-sdk #ot-selall-hostcntr input,#onetrust-pc-sdk #ot-selall-licntr input,#onetrust-pc-sdk #ot-selall-gnvencntr input{height:auto;width:auto;border-radius:0;font-size:initial;padding:0;float:none}#onetrust-pc-sdk #ot-ven-lst:first-child{border-top:1px solid #e2e2e2}#onetrust-pc-sdk #vdr-lst-dsc{font-size:.812em;line-height:1.5;padding:10px 15px 5px 15px}#onetrust-pc-sdk #close-pc-btn-handler{margin:0;float:right;height:44px;width:44px;background-size:10px}#onetrust-pc-sdk #close-pc-btn-handler svg{display:block}#onetrust-pc-sdk .ot-close-icon{padding:0;background-color:rgba(0,0,0,0);border:none}#onetrust-pc-sdk #clear-filters-handler{float:right;max-width:200px;margin-bottom:10px;text-decoration:none;margin-top:20px;font-weight:bold;color:#3860be;font-size:.9em;letter-spacing:normal;border:none;padding:1px;border:1px solid #3860be;padding:5px 10px}#onetrust-pc-sdk #clear-filters-handler:hover{color:#2285f7}#onetrust-pc-sdk #clear-filters-handler:focus{outline:#000 solid 1px}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item{position:relative;border-radius:1px;margin:0;padding:0;border:1px solid #d8d8d8;border-top:none;float:left;width:calc(100% - 2px)}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item:first-of-type{margin-top:10px;border-top:1px solid #d8d8d8}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item .ot-vlst-cntr:first-child{margin-top:15px}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item .ot-acc-grpdesc{font-size:.813em;line-height:1.5;padding-left:20px;padding-right:20px;width:calc(100% - 40px)}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item .ot-acc-grpdesc ul{padding-bottom:5px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-hdr{padding-top:11.5px;padding-bottom:11.5px;padding-left:20px;padding-right:15px;width:calc(100% - 35px);display:inline-block;position:relative;min-height:25px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-txt{width:100%;padding:0px}#onetrust-pc-sdk .ot-accordion-layout .ot-subgrp-cntr,#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpdesc+.ot-leg-btn-container{padding-left:20px;padding-right:16px;width:calc(100% - 36px)}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpdesc+.ot-leg-btn-container{margin-top:5px;margin-bottom:10px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpcntr{z-index:1;position:relative}#onetrust-pc-sdk .ot-accordion-layout input[type=checkbox]:checked~.ot-acc-txt.ot-acc-grpcntr{width:auto;padding-bottom:15px}#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header{float:none;font-size:.88em;color:#2e3644;margin:0;display:inline-block;height:auto;word-wrap:break-word;vertical-align:middle;min-height:inherit}#onetrust-pc-sdk .ot-accordion-layout .ot-vlst-cntr,#onetrust-pc-sdk .ot-accordion-layout .ot-hlst-cntr{padding-left:20px;width:calc(100% - 20px);display:inline-block;margin-top:0;padding-bottom:2px}#onetrust-pc-sdk .ot-accordion-layout h4~.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout h4~.ot-always-active,#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-always-active{right:16px}#onetrust-pc-sdk .ot-accordion-layout h4~.ot-tgl+.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-tgl+.ot-tgl{right:88px}#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header+.ot-arw-cntr{right:10px;margin-top:-2px;left:auto}#onetrust-pc-sdk .ot-accordion-layout h4~.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout h4~.ot-always-active,#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-always-active,#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header+.ot-arw-cntr{position:absolute;top:60%;transform:translateY(-50%)}#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-always-active{position:relative;transform:none;right:0}#onetrust-pc-sdk #ot-category-title{padding-bottom:10px}#onetrust-pc-sdk .ot-pli-hdr{color:#77808e;overflow:hidden;padding-top:7.5px;padding-bottom:7.5px;width:calc(100% - 2px);border-top-left-radius:3px;border-top-right-radius:3px}#onetrust-pc-sdk .ot-pli-hdr .ot-li-title{float:right;font-size:.813em}#onetrust-pc-sdk .ot-pli-hdr span:first-child{top:50%;transform:translateY(50%);max-width:80px}#onetrust-pc-sdk .ot-pli-hdr span:last-child{text-align:center;max-width:95px}#onetrust-pc-sdk .ot-pli-hdr.ot-leg-border-color{background-color:#f8f8f8;border:1px solid #e9e9e9}#onetrust-pc-sdk .ot-pli-hdr.ot-leg-border-color span:first-child{text-align:left;width:80px}#onetrust-pc-sdk .ot-subgrp>h5,#onetrust-pc-sdk .ot-subgrp>p[aria-level="5"],#onetrust-pc-sdk .ot-cat-header{width:calc(100% - 130px);max-width:60%}#onetrust-pc-sdk .ot-pli-hdr~.ot-cat-item .ot-subgrp>h5,#onetrust-pc-sdk .ot-pli-hdr~.ot-cat-item .ot-subgrp>p[aria-level="5"],#onetrust-pc-sdk .ot-pli-hdr~.ot-cat-item .ot-cat-header{width:calc(100% - 145px)}#onetrust-pc-sdk .ot-pli-hdr~.ot-cat-item h5+.ot-tgl-cntr,#onetrust-pc-sdk .ot-pli-hdr~.ot-cat-item p[aria-level="5"]+.ot-tgl-cntr,#onetrust-pc-sdk .ot-pli-hdr~.ot-cat-item .ot-cat-header+.ot-tgl{padding-left:28px}#onetrust-pc-sdk .ot-acc-grpcntr .ot-acc-grpdesc{margin-bottom:5px}#onetrust-pc-sdk .ot-acc-grpcntr .ot-subgrp-cntr{border-top:1px solid #e9e9e9}#onetrust-pc-sdk .ot-acc-grpcntr .ot-subgrp-cntr ul.ot-subgrps li{margin-top:5px;margin-bottom:5px}#onetrust-pc-sdk .ot-acc-hdr .ot-arw-cntr+.ot-tgl,#onetrust-pc-sdk .ot-cat-item h4+.ot-tgl,#onetrust-pc-sdk .ot-acc-txt h4+.ot-tgl-cntr,#onetrust-pc-sdk .ot-cat-item p[aria-level="4"]+.ot-tgl,#onetrust-pc-sdk .ot-acc-txt p[aria-level="4"]+.ot-tgl-cntr{padding-left:30px}#onetrust-pc-sdk .ot-sel-all-hdr,#onetrust-pc-sdk .ot-sel-all-chkbox{position:relative;display:inline-block;width:100%}#onetrust-pc-sdk .ot-sel-all-chkbox{z-index:1}#onetrust-pc-sdk .ot-li-hdr,#onetrust-pc-sdk .ot-consent-hdr{float:right;font-size:.813em;line-height:normal;text-align:center;word-break:break-word;word-wrap:break-word}#onetrust-pc-sdk .ot-li-hdr{max-width:100px;min-width:100px}#onetrust-pc-sdk .ot-consent-hdr{margin-right:5px;max-width:55px}#onetrust-pc-sdk .ot-ven-litgl+.ot-arw-cntr{margin-left:81px}#onetrust-pc-sdk .ot-sel-all{margin:0;position:relative;padding-right:13px;float:right}#onetrust-pc-sdk #ot-selall-hostcntr,#onetrust-pc-sdk #ot-selall-vencntr{right:20px;position:relative}#onetrust-pc-sdk #ot-selall-licntr{position:relative;right:79px}#onetrust-pc-sdk #ot-pc-lst #ot-ven-lst .ot-sel-all{position:relative;display:inline-block;width:20px;height:25px}#onetrust-pc-sdk #ot-pc-lst #ot-ven-lst .ot-sel-all label{position:absolute;padding:0;width:18px;height:18px}#onetrust-pc-sdk .ot-always-active-group .ot-cat-header{width:55%}#onetrust-pc-sdk .ot-leg-btn-container{display:inline-block;width:100%;margin-top:10px}#onetrust-pc-sdk .ot-leg-btn-container button{height:auto;padding:6.5px 8px;margin-bottom:0;letter-spacing:0;line-height:normal}#onetrust-pc-sdk .ot-leg-btn-container svg{display:none;height:14px;width:14px;padding-right:5px;vertical-align:sub}#onetrust-pc-sdk .ot-active-leg-btn{cursor:default;pointer-events:none}#onetrust-pc-sdk .ot-active-leg-btn svg{display:inline-block}#onetrust-pc-sdk .ot-remove-objection-handler{border:none;text-decoration:underline;padding:0;font-size:.82em;font-weight:600;line-height:1.4;padding-left:10px}#onetrust-pc-sdk .ot-obj-leg-btn-handler span{font-weight:bold;text-align:center;font-size:.91em;line-height:1.5}#onetrust-pc-sdk[dir=rtl] input~.ot-acc-hdr .ot-arw,#onetrust-pc-sdk[dir=rtl] #ot-back-arw{transform:rotate(180deg);-o-transform:rotate(180deg);-ms-transform:rotate(180deg);-webkit-transform:rotate(180deg)}#onetrust-pc-sdk[dir=rtl] input:checked~.ot-acc-hdr .ot-arw{transform:rotate(270deg);-o-transform:rotate(270deg);-ms-transform:rotate(270deg);-webkit-transform:rotate(270deg)}#onetrust-pc-sdk[dir=rtl] .ot-chkbox label::after{transform:rotate(45deg);-webkit-transform:rotate(45deg);-o-transform:rotate(45deg);-ms-transform:rotate(45deg);border-left:0;border-right:3px solid}#onetrust-pc-sdk[dir=rtl] .ot-lst-subhdr svg{right:0}#onetrust-pc-sdk .ot-ven-ctgl,#onetrust-pc-sdk .ot-ven-litgl,#onetrust-pc-sdk .ot-host-tgl,#onetrust-pc-sdk .ot-ven-gvctgl{position:relative;display:inline-block;width:20px;height:20px;margin-left:60px}#onetrust-pc-sdk .ot-ven-ctgl label,#onetrust-pc-sdk .ot-ven-litgl label,#onetrust-pc-sdk .ot-host-tgl label,#onetrust-pc-sdk .ot-ven-gvctgl label{position:absolute;margin:0}#onetrust-pc-sdk #ot-host-lst .ot-host-expand{clear:both;float:none;display:block}#onetrust-pc-sdk ul{list-style:none}#onetrust-pc-sdk ul li:not(.ot-fltr-opt){position:relative;margin:0;padding:15px 15px 15px 15px;border-bottom:1px solid #e2e2e2}#onetrust-pc-sdk ul li h3,#onetrust-pc-sdk ul li h4,#onetrust-pc-sdk ul li p[aria-level="3"],#onetrust-pc-sdk ul li p[aria-level="4"]{font-size:.75em;color:#656565;margin:0;height:auto;word-break:break-word;word-wrap:break-word}#onetrust-pc-sdk ul li p:not([role=heading]){margin:0;font-size:.7em}#onetrust-pc-sdk .ot-ven-item>button:focus,#onetrust-pc-sdk .ot-host-item>button:focus,#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item>button:focus,#onetrust-pc-sdk .ot-acc-cntr>button:focus{outline:#000 solid 2px}#onetrust-pc-sdk .ot-ven-item>button,#onetrust-pc-sdk .ot-host-item>button,#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item>button,#onetrust-pc-sdk .ot-acc-cntr>button{position:absolute;cursor:pointer;width:100%;height:100%;margin:0;top:0;left:0;z-index:1;max-width:none;border:none}#onetrust-pc-sdk .ot-ven-item>button[aria-expanded=false]~.ot-acc-txt,#onetrust-pc-sdk .ot-host-item>button[aria-expanded=false]~.ot-acc-txt,#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item>button[aria-expanded=false]~.ot-acc-txt,#onetrust-pc-sdk .ot-acc-cntr>button[aria-expanded=false]~.ot-acc-txt{margin-top:0;max-height:0;overflow:hidden;width:100%;transition:.25s ease-out;display:none}#onetrust-pc-sdk .ot-ven-item>button[aria-expanded=true]~.ot-acc-txt,#onetrust-pc-sdk .ot-host-item>button[aria-expanded=true]~.ot-acc-txt,#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item>button[aria-expanded=true]~.ot-acc-txt,#onetrust-pc-sdk .ot-acc-cntr>button[aria-expanded=true]~.ot-acc-txt{transition:.1s ease-in;width:auto;overflow:auto;display:block}#onetrust-pc-sdk .ot-host-item>button:focus{outline:0;border:2px solid #000}#onetrust-pc-sdk.ot-addtl-vendors>:not(.ot-enbl-chr) #ot-selall-licntr{right:135px}#onetrust-pc-sdk.ot-addtl-vendors>:not(.ot-enbl-chr) #ot-selall-adtlvencntr,#onetrust-pc-sdk.ot-addtl-vendors>:not(.ot-enbl-chr) #ot-selall-gnvencntr{right:40px}#onetrust-pc-sdk.ot-addtl-vendors .ot-li-hdr{margin-right:15px}#onetrust-pc-sdk.ot-addtl-vendors #ot-selall-licntr{right:115px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) #ot-sel-blk{background-color:#f9f9fc;border:1px solid #e2e2e2;width:auto;padding-bottom:5px;padding-top:5px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) .ot-sel-all{padding-right:23px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) ul li{border:1px solid #e2e2e2;margin-bottom:10px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) .ot-sel-all-chkbox{float:right;width:auto;right:3px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) .ot-tgl-cntr{right:12px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) .ot-ven-ctgl{margin-left:75px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) .ot-ven-litgl+.ot-arw-cntr{margin-left:95px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) .ot-acc-cntr>.ot-acc-hdr{padding-top:10px;padding-bottom:10px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) #ot-addtl-venlst .ot-tgl-cntr{right:32px}#onetrust-pc-sdk.ot-addtl-vendors #ot-ven-lst:first-child{border-top:none}#onetrust-pc-sdk.ot-addtl-vendors #ot-selall-vencntr{right:40px;position:absolute}#onetrust-pc-sdk #ot-selall-adtlvencntr,#onetrust-pc-sdk #ot-selall-gnvencntr{position:relative;right:20px}#onetrust-pc-sdk .ot-acc-cntr{position:relative;border-left:1px solid #e2e2e2;border-right:1px solid #e2e2e2;border-bottom:1px solid #e2e2e2}#onetrust-pc-sdk .ot-acc-cntr>.ot-acc-hdr{background-color:#f9f9fc;padding-left:15px;padding-top:5px;padding-bottom:5px;width:calc(100% - 15px)}#onetrust-pc-sdk .ot-acc-cntr>.ot-acc-hdr .ot-plus-minus{vertical-align:middle;top:auto}#onetrust-pc-sdk .ot-acc-cntr>.ot-acc-hdr .ot-arw-cntr{right:10px;left:auto}#onetrust-pc-sdk .ot-acc-cntr.ot-add-tech .ot-acc-hdr{padding:10px 0 10px 15px}#onetrust-pc-sdk .ot-acc-cntr>button[aria-expanded=true]~.ot-acc-hdr{border-bottom:1px solid #e2e2e2}#onetrust-pc-sdk .ot-acc-cntr>.ot-acc-txt{padding-left:10px;padding-right:10px;padding-top:10px;position:relative;z-index:1}#onetrust-pc-sdk .ot-acc-cntr .ot-addtl-venbox{display:none}#onetrust-pc-sdk .ot-vensec-title{font-size:.813em;vertical-align:middle;display:inline-block}#onetrust-pc-sdk.ot-close-btn-link #close-pc-btn-handler{border:none;height:auto;line-height:1.5;text-decoration:underline;font-size:.69em;background:none;right:15px;top:15px;width:auto;position:absolute;font-weight:normal}#onetrust-pc-sdk .ot-cat-header{float:left;font-weight:600;font-size:.875em;line-height:1.5;max-width:90%;vertical-align:middle}#onetrust-pc-sdk .ot-vnd-item>button:focus{outline:#000 solid 2px}#onetrust-pc-sdk .ot-vnd-item>button{position:absolute;cursor:pointer;width:100%;height:100%;margin:0;top:0;left:0;z-index:1;max-width:none;border:none}#onetrust-pc-sdk .ot-vnd-item>button[aria-expanded=false]~.ot-acc-txt{margin-top:0;max-height:0;opacity:0;overflow:hidden;width:100%;transition:.25s ease-out;display:none}#onetrust-pc-sdk .ot-vnd-item>button[aria-expanded=true]~.ot-acc-txt{transition:.1s ease-in;margin-top:10px;width:100%;overflow:auto;display:block}#onetrust-pc-sdk .ot-vnd-item>button[aria-expanded=true]~.ot-acc-grpcntr{width:auto;margin-top:0px;padding-bottom:10px}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item{position:relative;border-radius:2px;margin:0;padding:0;border:1px solid #d8d8d8;border-top:none;width:calc(100% - 2px);float:left}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item:first-of-type{margin-top:10px;border-top:1px solid #d8d8d8}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpdesc{padding-left:20px;padding-right:20px;width:calc(100% - 40px);font-size:.812em;margin-bottom:10px;margin-top:15px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpdesc>ul{padding-top:10px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpdesc>ul li{padding-top:0;line-height:1.5;padding-bottom:10px}#onetrust-pc-sdk .ot-accordion-layout div+.ot-acc-grpdesc{margin-top:5px}#onetrust-pc-sdk .ot-accordion-layout .ot-vlst-cntr:first-child{margin-top:10px}#onetrust-pc-sdk .ot-accordion-layout .ot-vlst-cntr:last-child,#onetrust-pc-sdk .ot-accordion-layout .ot-hlst-cntr:last-child{margin-bottom:5px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-hdr{padding-top:11.5px;padding-bottom:11.5px;padding-left:20px;padding-right:20px;width:calc(100% - 40px);display:inline-block}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-txt{width:100%;padding:0}#onetrust-pc-sdk .ot-accordion-layout .ot-subgrp-cntr{padding-left:20px;padding-right:15px;padding-bottom:0;width:calc(100% - 35px)}#onetrust-pc-sdk .ot-accordion-layout .ot-subgrp{padding-right:5px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpcntr{z-index:1;position:relative}#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header+.ot-arw-cntr{position:absolute;top:50%;transform:translateY(-50%);right:20px;margin-top:-2px}#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header+.ot-arw-cntr .ot-arw{width:15px;height:20px;margin-left:5px;color:dimgray}#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header{float:none;color:#2e3644;margin:0;display:inline-block;height:auto;word-wrap:break-word;min-height:inherit}#onetrust-pc-sdk .ot-accordion-layout .ot-vlst-cntr,#onetrust-pc-sdk .ot-accordion-layout .ot-hlst-cntr{padding-left:20px;width:calc(100% - 20px);display:inline-block;margin-top:0;padding-bottom:2px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-hdr{position:relative;min-height:25px}#onetrust-pc-sdk .ot-accordion-layout h4~.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout h4~.ot-always-active{position:absolute;top:50%;transform:translateY(-50%);right:20px}#onetrust-pc-sdk .ot-accordion-layout h4~.ot-tgl+.ot-tgl{right:95px}#onetrust-pc-sdk .ot-accordion-layout .category-vendors-list-handler,#onetrust-pc-sdk .ot-accordion-layout .category-vendors-list-handler+a{margin-top:5px}#onetrust-pc-sdk #ot-pc-lst{display:flex;flex-direction:column}#onetrust-pc-sdk #ot-lst-cnt{margin-top:1rem;max-height:calc(100% - 100px)}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info-cntr{border:1px solid #d8d8d8;padding:.75rem 2rem;padding-bottom:0;width:auto;margin-top:.5rem}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info{margin-bottom:1rem;padding-left:.75rem;padding-right:.75rem;display:flex;flex-direction:column}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info>div{display:flex}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info[data-vnd-info-key*=DPOEmail]{border-top:1px solid #d8d8d8;padding-top:1rem}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info[data-vnd-info-key*=DPOLink]{border-bottom:1px solid #d8d8d8;padding-bottom:1rem}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info .ot-vnd-lbl{font-weight:bold;font-size:.85em;margin-bottom:.5rem}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info .ot-vnd-cnt{margin-left:.5rem;font-weight:500;font-size:.85rem}#onetrust-pc-sdk .ot-vs-list,#onetrust-pc-sdk .ot-vnd-serv{width:auto;padding:1rem 1.25rem;padding-bottom:0}#onetrust-pc-sdk .ot-vs-list .ot-vnd-serv-hdr-cntr,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-serv-hdr-cntr{padding-bottom:.75rem;border-bottom:1px solid #d8d8d8}#onetrust-pc-sdk .ot-vs-list .ot-vnd-serv-hdr-cntr .ot-vnd-serv-hdr,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-serv-hdr-cntr .ot-vnd-serv-hdr{font-weight:600;font-size:.95em;line-height:2;margin-left:.5rem}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item{border:none;margin:0;padding:0}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item button,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item button{outline:none;border-bottom:1px solid #d8d8d8}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item button[aria-expanded=true],#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item button[aria-expanded=true]{border-bottom:none}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item:first-child,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item:first-child{margin-top:.25rem;border-top:unset}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item:last-child,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item:last-child{margin-bottom:.5rem}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item:last-child button,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item:last-child button{border-bottom:none}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info-cntr,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info-cntr{border:1px solid #d8d8d8;padding:.75rem 1.75rem;padding-bottom:0;width:auto;margin-top:.5rem}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info{margin-bottom:1rem;padding-left:.75rem;padding-right:.75rem;display:flex;flex-direction:column}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info>div,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info>div{display:flex}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info[data-vnd-info-key*=DPOEmail],#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info[data-vnd-info-key*=DPOEmail]{border-top:1px solid #d8d8d8;padding-top:1rem}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info[data-vnd-info-key*=DPOLink],#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info[data-vnd-info-key*=DPOLink]{border-bottom:1px solid #d8d8d8;padding-bottom:1rem}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info .ot-vnd-lbl,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info .ot-vnd-lbl{font-weight:bold;font-size:.85em;margin-bottom:.5rem}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info .ot-vnd-cnt,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info .ot-vnd-cnt{margin-left:.5rem;font-weight:500;font-size:.85rem}#onetrust-pc-sdk .ot-vs-list.ot-vnd-subgrp-cnt,#onetrust-pc-sdk .ot-vnd-serv.ot-vnd-subgrp-cnt{padding-left:40px}#onetrust-pc-sdk .ot-vs-list.ot-vnd-subgrp-cnt .ot-vnd-serv-hdr-cntr .ot-vnd-serv-hdr,#onetrust-pc-sdk .ot-vnd-serv.ot-vnd-subgrp-cnt .ot-vnd-serv-hdr-cntr .ot-vnd-serv-hdr{font-size:.8em}#onetrust-pc-sdk .ot-vs-list.ot-vnd-subgrp-cnt .ot-cat-header,#onetrust-pc-sdk .ot-vnd-serv.ot-vnd-subgrp-cnt .ot-cat-header{font-size:.8em}#onetrust-pc-sdk .ot-subgrp-cntr .ot-vnd-serv{margin-bottom:1rem;padding:1rem .95rem}#onetrust-pc-sdk .ot-subgrp-cntr .ot-vnd-serv .ot-vnd-serv-hdr-cntr{padding-bottom:.75rem;border-bottom:1px solid #d8d8d8}#onetrust-pc-sdk .ot-subgrp-cntr .ot-vnd-serv .ot-vnd-serv-hdr-cntr .ot-vnd-serv-hdr{font-weight:700;font-size:.8em;line-height:20px;margin-left:.82rem}#onetrust-pc-sdk .ot-subgrp-cntr .ot-cat-header{font-weight:700;font-size:.8em;line-height:20px}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-vnd-serv .ot-vnd-lst-cont .ot-accordion-layout .ot-acc-hdr div.ot-chkbox{margin-left:.82rem}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr{padding:.7rem 0;margin:0;display:flex;width:100%;align-items:center;justify-content:space-between}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr div:first-child,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr div:first-child,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr div:first-child,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr div:first-child,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr div:first-child,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr div:first-child,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr div:first-child{margin-left:.5rem}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr div:last-child,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr div:last-child,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr div:last-child,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr div:last-child,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr div:last-child,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr div:last-child,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr div:last-child{margin-right:.5rem;margin-left:.5rem}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-always-active,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-always-active,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-always-active,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-always-active,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-always-active,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-always-active,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-always-active{position:relative;right:unset;top:unset;transform:unset}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-plus-minus,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-plus-minus,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-plus-minus,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-plus-minus,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-plus-minus,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-plus-minus,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-plus-minus{top:0}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-arw-cntr,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-arw-cntr,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-arw-cntr,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-arw-cntr,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-arw-cntr,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-arw-cntr,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-arw-cntr{float:none;top:unset;right:unset;transform:unset;margin-top:-2px;position:relative}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-cat-header,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-cat-header,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-cat-header,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-cat-header,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-cat-header,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-cat-header,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-cat-header{flex:1;margin:0 .5rem}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-tgl,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-tgl,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-tgl,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-tgl,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-tgl,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-tgl,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-tgl{position:relative;transform:none;right:0;top:0;float:none}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-chkbox,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-chkbox,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-chkbox,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-chkbox,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-chkbox{position:relative;margin:0 .5rem}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-chkbox label,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-chkbox label,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-chkbox label,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox label,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-chkbox label,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox label,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-chkbox label{padding:0}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-chkbox label::before,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-chkbox label::before,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-chkbox label::before,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox label::before,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-chkbox label::before,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox label::before,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-chkbox label::before{position:relative}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-chkbox input,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-chkbox input,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-chkbox input,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox input,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-chkbox input,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox input,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-chkbox input{position:absolute;cursor:pointer;width:100%;height:100%;opacity:0;margin:0;top:0;left:0;z-index:1}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp .ot-acc-hdr h5.ot-cat-header,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp .ot-acc-hdr h4.ot-cat-header,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp .ot-acc-hdr p[aria-level="5"].ot-cat-header,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp .ot-acc-hdr p[aria-level="4"].ot-cat-header{margin:0}#onetrust-pc-sdk .ot-vs-config .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp h5,#onetrust-pc-sdk .ot-vs-config .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp p[aria-level="5"]{top:0;line-height:20px}#onetrust-pc-sdk .ot-vs-list{display:flex;flex-direction:column;padding:0;margin:.5rem 4px}#onetrust-pc-sdk .ot-vs-selc-all{display:flex;padding:0;float:unset;align-items:center;justify-content:flex-start}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf{justify-content:flex-end}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf.ot-caret-conf .ot-sel-all-chkbox{margin-right:48px}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf .ot-sel-all-chkbox{margin:0;padding:0;margin-right:14px;justify-content:flex-end}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf #ot-selall-vencntr.ot-chkbox,#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf #ot-selall-vencntr.ot-tgl{display:inline-block;right:unset;width:auto;height:auto;float:none}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf #ot-selall-vencntr label{width:45px;height:25px}#onetrust-pc-sdk .ot-vs-selc-all .ot-sel-all-chkbox{margin-right:11px;margin-left:.75rem;display:flex;align-items:center}#onetrust-pc-sdk .ot-vs-selc-all .sel-all-hdr{margin:0 1.25rem;font-size:.812em;line-height:normal;text-align:center;word-break:break-word;word-wrap:break-word}#onetrust-pc-sdk .ot-vnd-list-cnt #ot-selall-vencntr.ot-chkbox{float:unset;right:0}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf.ot-caret-conf .ot-sel-all-chkbox{margin-right:.5rem}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf .ot-sel-all-chkbox{margin-right:15px}#onetrust-pc-sdk #ot-sel-blk .ot-chkbox{right:unset}#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-tgl{padding:0}#onetrust-pc-sdk .ot-vs-list{margin-top:.5rem}#onetrust-pc-sdk .ot-pgph-link{font-size:.813em;margin-top:5px;position:relative}#onetrust-pc-sdk .ot-pgph-link.ot-pgph-link-subgroup{margin-bottom:1rem;clear:both;display:block}#onetrust-pc-sdk .ot-pgph-contr{margin:0 2.5rem}#onetrust-pc-sdk .ot-pgph-title{font-size:1.18rem;margin-bottom:2rem}#onetrust-pc-sdk .ot-pgph-desc{font-size:1rem;font-weight:400;margin-bottom:2rem;line-height:1.5rem}#onetrust-pc-sdk .ot-pgph-desc:not(:last-child):after{content:"";width:96%;display:block;margin:0 auto;padding-bottom:2rem;border-bottom:1px solid #e9e9e9}@media(min-width: 768px){#onetrust-pc-sdk.ot-tgl-with-label .ot-label-status{display:inline}#onetrust-pc-sdk.ot-tgl-with-label #ot-pc-lst .ot-label-status{display:none}}@media only screen and (max-width: 600px){#onetrust-pc-sdk{max-width:100%;min-width:100%}#onetrust-pc-sdk .ot-ftr-stacked button{width:100%}#onetrust-pc-sdk #ot-lst-cnt,#onetrust-pc-sdk #ot-pc-hdr{margin-top:0;padding:0 5px 0 10px;width:calc(100% - 25px)}#onetrust-pc-sdk .ot-btn-container.ot-button-order-container{height:100%;display:flex;flex-direction:column;justify-content:space-around}#onetrust-pc-sdk .ot-btn-container.ot-button-order-container .ot-pc-refuse-all-handler,#onetrust-pc-sdk .ot-btn-container.ot-button-order-container .save-preference-btn-handler,#onetrust-pc-sdk .ot-btn-container.ot-button-order-container #accept-recommended-btn-handler{width:100%;float:none !important;margin:0 !important}}@media only screen and (max-width: 425px){#onetrust-pc-sdk.otPcPanel{left:0;min-width:100%;height:100%;top:0;border-radius:0}#onetrust-pc-sdk #ot-host-lst .ot-chkbox{margin-left:0}#onetrust-pc-sdk #ot-pc-content{margin:0 10px 0 20px}#onetrust-pc-sdk p{font-size:.7em}#onetrust-pc-sdk .ot-tgl-cntr{width:auto}#onetrust-pc-sdk #vendor-search-handler{font-size:1em}#onetrust-pc-sdk #ot-lst-cnt{height:calc(100% - 95px)}#onetrust-pc-sdk .ot-switch+p{max-width:80%}#onetrust-pc-sdk button{letter-spacing:.01em}#onetrust-pc-sdk .save-preference-btn-handler{margin-top:0}#onetrust-pc-sdk .ot-search-cntr{width:75%}}@media only screen and (max-width: 320px){#onetrust-pc-sdk #ot-fltr-cnt{margin-left:15px}}@media only screen and (max-width: 896px)and (max-height: 425px)and (orientation: landscape){#onetrust-pc-sdk{left:0;top:0;min-width:100%;height:100%;border-radius:0}#onetrust-pc-sdk .ot-pc-header{height:auto;min-height:20px}#onetrust-pc-sdk .ot-pc-header .ot-pc-logo{max-height:30px}#onetrust-pc-sdk .ot-pc-footer{max-height:90px;height:100%}#onetrust-pc-sdk .ot-pc-footer .ot-btn-container{overflow-y:auto;overflow-x:hidden;max-height:calc(100% - 30px)}#onetrust-pc-sdk #ot-pc-content,#onetrust-pc-sdk #ot-pc-lst{bottom:auto;height:auto !important}#onetrust-pc-sdk.ot-ftr-stacked #ot-pc-content{bottom:auto}#onetrust-pc-sdk button{letter-spacing:.02em}#onetrust-pc-sdk #ot-anchor{left:initial;right:50px}#onetrust-pc-sdk #ot-lst-title{margin-top:12px}#onetrust-pc-sdk #ot-lst-title *{font-size:inherit}#onetrust-pc-sdk #ot-pc-hdr input{margin-right:0;padding-right:45px}#onetrust-pc-sdk .ot-switch+p{max-width:85%}#onetrust-pc-sdk #ot-lst-cnt{max-height:none;overflow:initial}#onetrust-pc-sdk #ot-lst-cnt.no-results{height:auto}#onetrust-pc-sdk input{font-size:1em !important}#onetrust-pc-sdk p{font-size:.6em}#onetrust-pc-sdk #ot-pc-lst{overflow:auto}#onetrust-pc-sdk #ot-fltr-modal{width:100%;height:100%;max-height:none;top:0}#onetrust-pc-sdk #ot-sel-blk{position:static}#onetrust-pc-sdk #ot-fltr-cnt{height:250px;width:100%}#onetrust-pc-sdk.ot-shw-fltr #ot-anchor{display:none !important}#onetrust-pc-sdk.ot-shw-fltr #ot-pc-lst{height:100% !important;overflow:hidden;top:0px}#onetrust-pc-sdk.ot-shw-fltr #ot-fltr-cnt{margin:0;height:100%;padding:10px;top:0;width:calc(100% - 20px);position:absolute;right:0;left:0;max-width:none}#onetrust-pc-sdk.ot-shw-fltr .ot-fltr-scrlcnt{max-height:calc(100% - 65px)}}@media screen and (max-height: 450px){#onetrust-pc-sdk .ot-pc-header{max-height:15vh;overflow:hidden}#onetrust-pc-sdk .ot-pc-footer{max-height:min(var(--ot-footer-space),30vh) !important;overflow-y:auto;scrollbar-gutter:stable;box-sizing:border-box}#onetrust-pc-sdk .ot-pc-footer .ot-btn-container{overflow-y:visible !important;max-height:none !important}#onetrust-pc-sdk #ot-pc-content{flex:1 1 auto;min-height:20vh}} | |
| 216 | + #onetrust-consent-sdk #onetrust-pc-sdk, | |
| 217 | + #onetrust-consent-sdk #ot-search-cntr, | |
| 218 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-switch.ot-toggle, | |
| 219 | + #onetrust-consent-sdk #onetrust-pc-sdk ot-grp-hdr1 .checkbox, | |
| 220 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-title:after | |
| 221 | + ,#onetrust-consent-sdk #onetrust-pc-sdk #ot-sel-blk, | |
| 222 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-fltr-cnt, | |
| 223 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-anchor { | |
| 224 | + background-color: #FFFFFF; | |
| 225 | + } | |
| 226 | + | |
| 227 | + #onetrust-consent-sdk #onetrust-pc-sdk h3, | |
| 228 | + #onetrust-consent-sdk #onetrust-pc-sdk h4, | |
| 229 | + #onetrust-consent-sdk #onetrust-pc-sdk h5, | |
| 230 | + #onetrust-consent-sdk #onetrust-pc-sdk h6, | |
| 231 | + #onetrust-consent-sdk #onetrust-pc-sdk p, | |
| 232 | + #onetrust-consent-sdk #onetrust-pc-sdk span[id^="ot-header-id"], | |
| 233 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pvcy-txt, | |
| 234 | + #onetrust-consent-sdk #onetrust-pc-sdk #privacy-text, | |
| 235 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-ven-lst .ot-ven-opts p, | |
| 236 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-desc, | |
| 237 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-title, | |
| 238 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-title-mobile, | |
| 239 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-li-title, | |
| 240 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-sel-all-hdr span, | |
| 241 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-host-lst .ot-host-info, | |
| 242 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-fltr-modal #modal-header, | |
| 243 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-checkbox label span, | |
| 244 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst #ot-sel-blk p, | |
| 245 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst #ot-lst-title h3, | |
| 246 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst #ot-lst-title p[aria-level="3"], | |
| 247 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst .back-btn-handler p, | |
| 248 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst .ot-ven-name, | |
| 249 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst #ot-ven-lst .consent-category, | |
| 250 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-leg-btn-container .ot-inactive-leg-btn, | |
| 251 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-label-status, | |
| 252 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-chkbox label span, | |
| 253 | + #onetrust-consent-sdk #onetrust-pc-sdk #clear-filters-handler, | |
| 254 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-optout-signal, | |
| 255 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-title, | |
| 256 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-desc | |
| 257 | + { | |
| 258 | + color: #000000; | |
| 259 | + } | |
| 260 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-cancel | |
| 261 | + { | |
| 262 | + color: #000000 !important; | |
| 263 | + } | |
| 264 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-close-btn, | |
| 265 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-submit | |
| 266 | + { | |
| 267 | + color: #FFFFFF !important; | |
| 268 | + } | |
| 269 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-cancel | |
| 270 | + { | |
| 271 | + border-color: #000000 !important; | |
| 272 | + } | |
| 273 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-email | |
| 274 | + { | |
| 275 | + border-color: #000000 !important; | |
| 276 | + background-color: rgb(255, 255, 255); | |
| 277 | + } | |
| 278 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-email:focus | |
| 279 | + { | |
| 280 | + border-color: #000000; | |
| 281 | + } | |
| 282 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-email::placeholder | |
| 283 | + { | |
| 284 | + color: #000000; | |
| 285 | + } | |
| 286 | + #onetrust-consent-sdk #onetrust-pc-sdk .privacy-notice-link, | |
| 287 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-pgph-link, | |
| 288 | + #onetrust-consent-sdk #onetrust-pc-sdk .category-vendors-list-handler, | |
| 289 | + #onetrust-consent-sdk #onetrust-pc-sdk .category-vendors-list-handler + a, | |
| 290 | + #onetrust-consent-sdk #onetrust-pc-sdk .category-host-list-handler, | |
| 291 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-ven-link, | |
| 292 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-ven-legclaim-link, | |
| 293 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-host-lst .ot-host-name a, | |
| 294 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-host-lst .ot-acc-hdr .ot-host-expand, | |
| 295 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-host-lst .ot-host-info a, | |
| 296 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-content #ot-pc-desc .ot-link-btn, | |
| 297 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info a, | |
| 298 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info a, | |
| 299 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-desc a | |
| 300 | + { | |
| 301 | + color: #000000; | |
| 302 | + } | |
| 303 | + #onetrust-consent-sdk #onetrust-pc-sdk .category-vendors-list-handler:hover { text-decoration: underline;} | |
| 304 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-acc-grpcntr.ot-acc-txt, | |
| 305 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-acc-txt .ot-subgrp-tgl .ot-switch.ot-toggle | |
| 306 | + { | |
| 307 | + background-color: #F8F8F8; | |
| 308 | + } | |
| 309 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-host-lst .ot-host-info, | |
| 310 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-acc-txt .ot-ven-dets | |
| 311 | + { | |
| 312 | + background-color: #F8F8F8; | |
| 313 | + } | |
| 314 | + #onetrust-consent-sdk #onetrust-pc-sdk | |
| 315 | + button:not(#clear-filters-handler):not(.ot-close-icon):not(#filter-btn-handler):not(.ot-remove-objection-handler):not(.ot-obj-leg-btn-handler):not([aria-expanded]):not(.ot-link-btn):not(.ot-go-modal-cancel):not(.ot-go-modal-close), | |
| 316 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-leg-btn-container .ot-active-leg-btn { | |
| 317 | + background-color: #00467f;border-color: #00467f; | |
| 318 | + color: #FFFFFF; | |
| 319 | + } | |
| 320 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-active-menu { | |
| 321 | + border-color: #00467f; | |
| 322 | + } | |
| 323 | + | |
| 324 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-leg-btn-container .ot-remove-objection-handler{ | |
| 325 | + background-color: transparent; | |
| 326 | + border: 1px solid transparent; | |
| 327 | + } | |
| 328 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-leg-btn-container .ot-inactive-leg-btn { | |
| 329 | + background-color: #FFFFFF; | |
| 330 | + color: #4D4D4D; border-color: #4D4D4D; | |
| 331 | + }#onetrust-consent-sdk #onetrust-pc-sdk .ot-tgl input:checked+.ot-switch .ot-switch-nob { | |
| 332 | + background-color: #468254; | |
| 333 | + } | |
| 334 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-switch-nob { | |
| 335 | + background-color: #767676; | |
| 336 | + } | |
| 337 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-tgl input:focus + .ot-switch, .ot-switch .ot-switch-nob, .ot-switch .ot-switch-nob:before, | |
| 338 | + #onetrust-pc-sdk .ot-checkbox input[type="checkbox"]:focus + label::before, | |
| 339 | + #onetrust-pc-sdk .ot-chkbox input[type="checkbox"]:focus + label::before { | |
| 340 | + outline-color: #000000; | |
| 341 | + outline-width: 1px; | |
| 342 | + outline-offset: 1px; | |
| 343 | + } | |
| 344 | + #onetrust-pc-sdk .ot-host-item > button:focus, #onetrust-pc-sdk .ot-ven-item > button:focus { | |
| 345 | + border: 1px solid #000000; | |
| 346 | + } | |
| 347 | + #onetrust-consent-sdk #onetrust-pc-sdk *:focus, | |
| 348 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-vlst-cntr > a:focus { | |
| 349 | + outline: 1px solid #000000; | |
| 350 | + outline-offset: 1px; | |
| 351 | + }#ot-sdk-btn-floating .ot-floating-button__front {background-color: #00467f !important;}.ot-sdk-cookie-policy{font-family:inherit;font-size:16px}.ot-sdk-cookie-policy.otRelFont{font-size:1rem}.ot-sdk-cookie-policy h3,.ot-sdk-cookie-policy h4,.ot-sdk-cookie-policy h6,.ot-sdk-cookie-policy p,.ot-sdk-cookie-policy li,.ot-sdk-cookie-policy a,.ot-sdk-cookie-policy th,.ot-sdk-cookie-policy #cookie-policy-description,.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group,.ot-sdk-cookie-policy #cookie-policy-title{color:dimgray}.ot-sdk-cookie-policy #cookie-policy-description{margin-bottom:1em}.ot-sdk-cookie-policy h4{font-size:1.2em}.ot-sdk-cookie-policy h6{font-size:1em;margin-top:2em}.ot-sdk-cookie-policy th{min-width:75px}.ot-sdk-cookie-policy a,.ot-sdk-cookie-policy a:hover{background:#fff}.ot-sdk-cookie-policy thead{background-color:#f6f6f4;font-weight:bold}.ot-sdk-cookie-policy .ot-mobile-border{display:none}.ot-sdk-cookie-policy section{margin-bottom:2em}.ot-sdk-cookie-policy table{border-collapse:inherit}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy{font-family:inherit;font-size:1rem}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h3,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h4,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h6,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy p,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy li,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy th,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-description,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-title{color:dimgray}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-description{margin-bottom:1em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-subgroup{margin-left:1.5em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-description,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group-desc,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-table-header,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy span,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td{font-size:.9em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td span,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td a{font-size:inherit}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group{font-size:1em;margin-bottom:.6em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-title{margin-bottom:1.2em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy>section{margin-bottom:1em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy th{min-width:75px}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a:hover{background:#fff}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy thead{background-color:#f6f6f4;font-weight:bold}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-mobile-border{display:none}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy section{margin-bottom:2em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-subgroup ul li{list-style:disc;margin-left:1.5em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-subgroup ul li h4{display:inline-block}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table{border-collapse:inherit;margin:auto;border:1px solid #d7d7d7;border-radius:5px;border-spacing:initial;width:100%;overflow:hidden}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table th,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table td{border-bottom:1px solid #d7d7d7;border-right:1px solid #d7d7d7}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr:last-child td{border-bottom:0px}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr th:last-child,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr td:last-child{border-right:0px}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table .ot-host,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table .ot-cookies-type{width:25%}.ot-sdk-cookie-policy[dir=rtl]{text-align:left}#ot-sdk-cookie-policy h3{font-size:1.5em}@media only screen and (max-width: 530px){.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) table,.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) thead,.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tbody,.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) th,.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) td,.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tr{display:block}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) thead tr{position:absolute;top:-9999px;left:-9999px}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tr{margin:0 0 1em 0}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tr:nth-child(odd),.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tr:nth-child(odd) a{background:#f6f6f4}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) td{border:none;border-bottom:1px solid #eee;position:relative;padding-left:50%}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) td:before{position:absolute;height:100%;left:6px;width:40%;padding-right:10px}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) .ot-mobile-border{display:inline-block;background-color:#e4e4e4;position:absolute;height:100%;top:0;left:45%;width:2px}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) td:before{content:attr(data-label);font-weight:bold}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) li{word-break:break-word;word-wrap:break-word}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table{overflow:hidden}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table td{border:none;border-bottom:1px solid #d7d7d7}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy thead,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy tbody,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy th,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy tr{display:block}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table .ot-host,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table .ot-cookies-type{width:auto}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy tr{margin:0 0 1em 0}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td:before{height:100%;width:40%;padding-right:10px}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td:before{content:attr(data-label);font-weight:bold}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy li{word-break:break-word;word-wrap:break-word}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy thead tr{position:absolute;top:-9999px;left:-9999px;z-index:-9999}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr:last-child td{border-bottom:1px solid #d7d7d7;border-right:0px}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr:last-child td:last-child{border-bottom:0px}} | |
| 352 | + | |
| 353 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h5, | |
| 354 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h6, | |
| 355 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy li, | |
| 356 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy p, | |
| 357 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a, | |
| 358 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy span, | |
| 359 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td, | |
| 360 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-description { | |
| 361 | + color: #696969; | |
| 362 | + } | |
| 363 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy th { | |
| 364 | + color: #696969; | |
| 365 | + } | |
| 366 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group { | |
| 367 | + color: #696969; | |
| 368 | + } | |
| 369 | + | |
| 370 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-title { | |
| 371 | + color: #696969; | |
| 372 | + } | |
| 373 | + | |
| 374 | + | |
| 375 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table th { | |
| 376 | + background-color: #F8F8F8; | |
| 377 | + } | |
| 378 | + | |
| 379 | + .ot-floating-button__front{background-image:url('https://cdn.cookielaw.org/logos/4e85079a-4e3a-4ba5-a0ac-b85ac51e9d47/8af65b67-6f9c-4e8b-ba65-66a5ba202e28/07fc66da-1dcf-4ee3-bcc3-3d076d98b1b9/ot_persistent_cookie_transparent.png')} | |
| 380 | + @keyframes slide-down-custom { | |
| 381 | + 0% { | |
| 382 | + bottom: 674px !important; | |
| 383 | + } | |
| 384 | + 100% { | |
| 385 | + bottom: 0px; | |
| 386 | + } | |
| 387 | + } | |
| 388 | + @-webkit-keyframes slide-down-custom { | |
| 389 | + 0% { | |
| 390 | + bottom: 674px !important; | |
| 391 | + } | |
| 392 | + 100% { | |
| 393 | + bottom: 0px; | |
| 394 | + } | |
| 395 | + } | |
| 396 | + @-moz-keyframes slide-down-custom { | |
| 397 | + 0% { | |
| 398 | + bottom: 674px !important; | |
| 399 | + } | |
| 400 | + 100% { | |
| 401 | + bottom: 0px; | |
| 402 | + } | |
| 403 | + } | |
| 404 | + #ot-sdk-btn-floating.ot-floating-button{position:fixed;bottom:10px;opacity:0;width:50px;height:50px;line-height:15px;cursor:pointer;background-color:rgba(0,0,0,0);transition:all 300ms ease;z-index:2147483646;animation:otFloatingBtnIntro 800ms ease 0ms 1 forwards}#ot-sdk-btn-floating.ot-floating-button.ot-hide{display:none}#ot-sdk-btn-floating.ot-floating-button::before,#ot-sdk-btn-floating.ot-floating-button::after{text-transform:none;line-height:1;user-select:none;pointer-events:none;position:absolute;transform:scale(0);opacity:0;transition:all 300ms ease;display:block;height:auto}#ot-sdk-btn-floating.ot-floating-button::before{content:"";border:5px solid rgba(0,0,0,0);z-index:1001;top:50%;border-left-width:0;border-right-color:#333;right:calc(0em - 5px);transform:translate(10px, -50%)}#ot-sdk-btn-floating.ot-floating-button::after{content:attr(data-title);position:absolute;text-align:center;top:50%;left:calc(100% + 5px);transform:translate(10px, -50%);font-size:.75rem;min-width:3em;max-width:21em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding:5px;border-radius:.3ch;box-shadow:0 1em 2em -0.5em rgba(0,0,0,.35);background:#333;color:#fff;z-index:2147483645}#ot-sdk-btn-floating.ot-floating-button:hover::before,#ot-sdk-btn-floating.ot-floating-button:hover::after{opacity:1}#ot-sdk-btn-floating.ot-floating-button:hover::before{transform:translate(0.5em, -50%) scale(1)}#ot-sdk-btn-floating.ot-floating-button:hover::after{transform:translate(0.5em, -50%) scale(1)}#ot-sdk-btn-floating.ot-floating-button.ot-pc-open .ot-floating-button__front{transform:rotateY(-180deg)}#ot-sdk-btn-floating.ot-floating-button.ot-pc-open .ot-floating-button__back{transform:rotateY(0)}#ot-sdk-btn-floating .ot-floating-button__front,#ot-sdk-btn-floating .ot-floating-button__back{position:absolute;width:100%;height:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:#6aaae4;border-radius:10px;box-shadow:0 4px 8px 0 rgba(0,0,0,.2);transition:transform .6s;transform-style:preserve-3d}#ot-sdk-btn-floating .ot-floating-button__front{background-color:#6aaae4;transform:rotateY(0)}#ot-sdk-btn-floating .ot-floating-button__front.custom-persistent-icon{background-position:center center;background-repeat:no-repeat;background-size:100%;border-radius:100px}#ot-sdk-btn-floating .ot-floating-button__front svg:not(.ot-source-sprite){width:30px;height:37px}#ot-sdk-btn-floating .ot-floating-button__front svg.ot-source-sprite{width:50px;height:50px}#ot-sdk-btn-floating .ot-floating-button__back{background-color:#fff;transform:rotateY(-180deg)}#ot-sdk-btn-floating .ot-floating-button__back.custom-persistent-icon{background-position:center center;background-repeat:no-repeat;background-size:100%;border-radius:100px}#ot-sdk-btn-floating .ot-floating-button__back svg{width:24px;height:24px}#ot-sdk-btn-floating.ot-floating-button button{padding:0;background-color:rgba(0,0,0,0);border:0;width:100%;height:100%;cursor:pointer}#ot-sdk-btn-floating.ot-floating-button button>*{pointer-events:none}#ot-sdk-btn-floating .ot-optout-ntfy{position:absolute;top:50%;left:calc(100% + 10px);transform:translateY(-50%) scale(0);opacity:0;display:flex;align-items:center;gap:8px;font-size:.85rem;white-space:nowrap;padding:10px 16px;border-radius:6px;border:1px solid #d4d4d4;background:#fff;color:#333;z-index:2147483645;pointer-events:none;transition:all 300ms ease}#ot-sdk-btn-floating .ot-optout-ntfy.ot-hide{display:none}#ot-sdk-btn-floating .ot-optout-ntfy.ot-ntfy-show{opacity:1;transform:translateY(-50%) scale(1)}#ot-sdk-btn-floating .ot-optout-ntfy .ot-optout-ntfy-icon{display:inline-block;width:12px;height:12px;min-width:12px;background-color:#3d8539;border-radius:2px}#ot-sdk-btn-floating .ot-optout-ntfy .ot-optout-ntfy-icon.ot-optout-not-honored{display:inline-block;width:12px;height:12px;background-color:rgba(0,0,0,0);border:1px solid #d4d4d4;border-left:2px solid #3d8539;border-radius:0}#ot-sdk-btn-floating .ot-optout-ntfy .ot-optout-ntfy-txt{font-weight:400;line-height:1.4}#ot-sdk-btn-floating.ot-floating-button.ot-ntfy-active::before,#ot-sdk-btn-floating.ot-floating-button.ot-ntfy-active::after{display:none}@keyframes otFloatingBtnIntro{0%{opacity:0;left:-75px}100%{opacity:1;left:1%}}@keyframes otFloatingBtnImageIntro{0%{opacity:0;transform:scale(0) rotate(-270deg)}100%{opacity:100%;transform:scale(0.95) rotate(0deg)}}</style> | |
| 405 | + | |
| 406 | + | |
| 407 | + | |
| 408 | + | |
| 409 | +<script>window.ysi.customlabels = {"French - Canada":"French","City, Post Code, Address, Property Name":"Find your home","English - United States":"English"}; </script><script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.flatpickr.134322934460000000.js"></script><script src="chrome-extension://liecbddmkiiihnedobmlmillhodjkdmb/js/recordConsoleEvents.js"></script></head> | |
| 410 | + | |
| 411 | +<body id="innerpage" data-new-gr-c-s-check-loaded="14.1310.0" data-gr-ext-installed=""> | |
| 412 | + | |
| 413 | + | |
| 414 | +<!-- Google Tag Manager (noscript) --> | |
| 415 | +<noscript> | |
| 416 | + <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TL4S4ZL" height="0" width="0" style="display:none;visibility:hidden" customlabelreplaced=""> | |
| 417 | + </iframe> | |
| 418 | +</noscript> | |
| 419 | +<!-- End Google Tag Manager (noscript) --> | |
| 420 | + | |
| 421 | + | |
| 422 | + | |
| 423 | + | |
| 424 | + | |
| 425 | + | |
| 426 | + | |
| 427 | + <style>#acsWidget{position:fixed;z-index:1038;bottom:15px;padding:0;margin:0;background:transparent;border:none;left:15px}#acsWidget.widget-right{left:auto;right:11px}</style> | |
| 428 | + | |
| 429 | + | |
| 430 | + <!-- Accessibility Button --> | |
| 431 | + <div id="acsWidget" role="complementary" class="widget-left" style="bottom:60px;background-color:transparent!important;" customlabelreplaced=""> | |
| 432 | + <button id="acsBtn" data-acs-applied="" type="button" class="accessibility-button btn mt-3 m-0 p-0 border-0 " data-toggle="modal" data-target="#acsModal" style="background-color:transparent!important;background-image:none;box-shadow:none;" aria-label="Open Accessibility Options" customlabelreplaced=""> | |
| 433 | + <svg class="rounded-circle" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="56px" height="56px" viewBox="0 0 64 64"> | |
| 434 | + <rect x="4" y="4" width="56" height="56" rx="100" ry="100" fill="#000000"></rect> | |
| 435 | + <g transform="translate(12.5 12.5) scale(0.6)"> | |
| 436 | + <circle data-color="color-2" cx="32" cy="8" r="6" fill="#ffffff"></circle> | |
| 437 | + <path d="M55.5,16H8.5a2.5,2.5,0,0,0,0,5L24,22V59a3,3,0,0,0,6,0l1-21h2l1,21a3,3,0,0,0,6,0V22l15.5-1a2.5,2.5,0,0,0,0-5Z" fill="#ffffff"></path> | |
| 438 | + </g> | |
| 439 | + </svg> | |
| 440 | + <span id="acsCheck" class="nu nu-check text-xs rounded-circle d-none" style="background-color: #000000 !important; box-shadow: 0 0 0px 4px #000000 !important" customlabelreplaced=""></span> | |
| 441 | + </button> | |
| 442 | + </div> | |
| 443 | + <style> | |
| 444 | + /* Only apply hover effect to stand-alone button (.accessibility-button), not help widget */ | |
| 445 | + #acsBtn.accessibility-button svg:hover { | |
| 446 | + box-shadow: 0 0 0px 3px #000000 !important; | |
| 447 | + } | |
| 448 | + #acsModal .modal-header, .closeModal .modal-header { | |
| 449 | + background-color: #000000 !important; | |
| 450 | + } | |
| 451 | + #acsModal .modal-footer.customColor, .closeModal .modal-footer.customColor { | |
| 452 | + background-color: #000000 !important; | |
| 453 | + } | |
| 454 | + </style> | |
| 455 | + | |
| 456 | + | |
| 457 | + <style>a#skip-nav{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}a#skip-nav:focus,a#skip-nav:active{position:fixed;bottom:10px;left:10px;width:auto;height:auto;text-decoration:underline;background:white;padding:5px 20px 10px;z-index:100000}</style> | |
| 458 | + | |
| 459 | + | |
| 460 | +<a id="skip-nav" href="#main-content" customlabelreplaced="">Skip to main content</a> | |
| 461 | + | |
| 462 | + | |
| 463 | + | |
| 464 | + | |
| 465 | + | |
| 466 | + | |
| 467 | + | |
| 468 | + | |
| 469 | + | |
| 470 | + | |
| 471 | + | |
| 472 | + | |
| 473 | + | |
| 474 | + <nav id="ysi-mobile-navbar" aria-label="main navigation" class="ysi-navbar-mobile navbar w-100 d-xl-none navbar-light bg-white" style="width: 100%; " aria-hidden="true"> | |
| 475 | + <button id="nav-btn" class="navbar-toggler collapsed " style=" " type="button" data-toggle="collapse" data-target="#navbarMobileCollapse" aria-controls="navbarMobileCollapse" aria-expanded="false" aria-label="Toggle navigation" aria-haspopup="true" customlabelreplaced=""> | |
| 476 | + <svg class="ysi-svg-icon ysi-svg-icon-bars" width="1em" height="1em" viewBox="0 0 256 256"><path d="m 24,66 h 208 c 4,0 8,-4 8,-8 V 38 c 0,-4 -4,-8 -8,-8 H 24 c -4,0 -8,4 -8,8 v 20 c 0,4 4,8 8,8 z m 0,80 h 208 c 4,0 8,-4 8,-8 v -20 c 0,-4 -4,-8 -8,-8 H 24 c -4,0 -8,4 -8,8 v 20 c 0,4 4,8 8,8 z m 0,80 h 208 c 4,0 8,-4 8,-8 v -20 c 0,-4 -4,-8 -8,-8 H 24 c -4,0 -8,4 -8,8 v 20 c 0,4 4,8 8,8 z"></path></svg> | |
| 477 | + <svg class="ysi-svg-icon ysi-svg-icon-times" width="1em" height="1em" viewBox="0 0 256 256"><rect transform="rotate(45, 128, 128)" width="244" height="44.8" x="6" y="108" rx="12" ry="12"></rect><rect transform="rotate(-45, 128, 128)" width="244" height="44.8" x="6" y="108" rx="12" ry="12"></rect></svg> | |
| 478 | + </button> | |
| 479 | + <style>#mobile-logo697 img{box-sizing:content-box}@media (min-width: 992px){#mobile-logo697 img{width:232px}}</style><div class="ysi-logo-widget ysi-logo-wrapper" data-widget-order="1" customlabelreplaced="" aria-hidden="true"><a href="/horizon-condo" class="d-inline-block" customlabelreplaced=""><picture id="mobile-logo697"> | |
| 480 | + | |
| 481 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1920,h_621,c_crop/q_auto,f_auto,c_fit,w_155,h_50,dpr_2/s3/2/252329/brigil-horizon-proplogo.png 2x"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1920,h_621,c_crop/q_auto,f_auto,c_limit,w_155,h_50/s3/2/252329/brigil-horizon-proplogo.png" class="w-100 h-100 d-inline-block img-fluid" alt="A logo for Chateau Golf is displayed.at Horizon Apartments, Gatineau, QC J9A 0G9" title="Condominium property logo and branding" width="155" height="50"> | |
| 482 | +</picture> | |
| 483 | +</a></div> | |
| 484 | + | |
| 485 | + | |
| 486 | + <div class="navbar-right pr-2" customlabelreplaced=""> | |
| 487 | + | |
| 488 | + | |
| 489 | + <div class="dropdown ysi-translate-widget ysi-translate-dropdown px-2 " customlabelreplaced=""> | |
| 490 | + <a data-selenium-id="translate" class="dropdown-toggle color-inherit text-decoration-none" href="#" onclick="elementLanguageFocus()" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" customlabelreplaced=""> | |
| 491 | + <span aria-hidden="true" class="fas fa-globe-americas" customlabelreplaced=""></span> <span class="sr-only" customlabelreplaced="">Language</span> | |
| 492 | + </a> | |
| 493 | + <ul class="dropdown-menu dropdown-menu-right" customlabelreplaced=""> | |
| 494 | + | |
| 495 | + <li customlabelreplaced=""> | |
| 496 | + <a data-selenium-id="lang-1" class="dropdown-item px-3 language-drowndown-item" href="javascript:getPack('en-us')" aria-label="English Language" customlabelreplaced=""> | |
| 497 | + <span class="ml-2" customlabelreplaced="">English</span> | |
| 498 | + </a> | |
| 499 | + </li> | |
| 500 | + <li customlabelreplaced=""> | |
| 501 | + <a data-selenium-id="lang-1" class="dropdown-item px-3 language-drowndown-item" href="javascript:getPack('fr-ca')" aria-label="French Language" customlabelreplaced=""> | |
| 502 | + <span class="ml-2" customlabelreplaced="">French</span> | |
| 503 | + </a> | |
| 504 | + </li> | |
| 505 | + </ul> | |
| 506 | + </div> | |
| 507 | + <input type="hidden" id="translate-request-verification-token" name="translate-request-verification-token" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ1jRqjbwyWWAEfQ33tCI22seWvkcrQFek3ED1rbg3gMdEtJ-k7nubaSjXKiZWqAGT3MyCCWxLOL2fViVt5kBGgaCNjNyiVn1GfbuPFjT1085IayHkNJt6LfHaOdIPNGrmI"> | |
| 508 | + | |
| 509 | + | |
| 510 | + | |
| 511 | + | |
| 512 | + | |
| 513 | + | |
| 514 | + <div class="dropdown ysi-login-link-widget ysi-login-dropdown d-inline" style="max-width: max-content;" customlabelreplaced="" aria-hidden="true"> | |
| 515 | + | |
| 516 | + <a data-selenium-id="loginlinks" class="dropdown-toggle color-inherit text-decoration-none " href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" style="" customlabelreplaced=""> | |
| 517 | + <svg class="ysi-svg-icon ysi-svg-icon-user" width="1em" height="1em" viewBox="0 0 256 256"><path d="m 128,128 c 35.35,0 64,-28.7 64,-64 C 192,28.7 163.4,0 128,0 92.7,0 64,28.7 64,64 c 0,35.4 28.65,64 64,64 z m 44.8,16 h -8.4 c -11.1,5.1 -23.5,8 -36.5,8 -13,0 -25.3,-2.9 -36.5,-8 H 83.2 C 46.1,144 16,174.1 16,211.2 V 232 c 0,13.3 10.8,24 24,24 h 176 c 13.3,0 24,-10.8 24,-24 V 211.2 C 240,174.1 209.9,144 172.8,144 Z"></path></svg> | |
| 518 | + <span class="sr-only" customlabelreplaced="">Login</span> | |
| 519 | + </a> | |
| 520 | + | |
| 521 | + <div class="dropdown-menu dropdown-menu-right" customlabelreplaced=""> | |
| 522 | + | |
| 523 | + | |
| 524 | + | |
| 525 | + <ul class="dropdown-list list-unstyled mb-0" customlabelreplaced=""> | |
| 526 | + <li customlabelreplaced=""> | |
| 527 | + <a data-selenium-id="residentlogin" class="dropdown-item track-resident-login" href="https://brigil.securecafe.com/residentservices/horizon-condo/userlogin.aspx?dropdownlangid=999&PropLeadSource_1975512=portal" rel="noopener" target="_Blank" customlabelreplaced=""> Resident <span class="sr-only" customlabelreplaced="">Login Opens in a new tab</span> </a> | |
| 528 | + </li> | |
| 529 | + | |
| 530 | + <li customlabelreplaced=""> | |
| 531 | + <a data-selenium-id="applicantlogin" class="dropdown-item track-applicant-login" href="https://brigil.securecafe.com/onlineleasing/horizon-condo/guestlogin.aspx?dropdownlangid=999&PropLeadSource_1975512=portal" rel="noopener" target="_Blank" customlabelreplaced=""> Applicant <span class="sr-only" customlabelreplaced="">Login Opens in a new tab</span> </a> | |
| 532 | + </li> | |
| 533 | + | |
| 534 | + </ul> | |
| 535 | + </div> | |
| 536 | + </div> | |
| 537 | + | |
| 538 | + | |
| 539 | + | |
| 540 | + | |
| 541 | + <style>.mobile-only .click-to-call{display:none}</style> | |
| 542 | + | |
| 543 | + <div class="ysi-phone-widget ysi-phone-wrapper mobile-only d-inline ml-2 text-primary" customlabelreplaced=""> | |
| 544 | + <div class="d-inline-flex" customlabelreplaced=""> | |
| 545 | + <a data-selenium-id="click_to_call" onclick="fireGaPhone()" href="tel:+1 819-303-3449" aria-label="Call Horizon at +1 819-303-3449" class="ysi-phone-number click-to-call-href color-inherit " customlabelreplaced=""> | |
| 546 | + <svg class="ysi-svg-icon mobile-phone-icon" width="1em" height="1em" viewBox="0 0 256 256"><path d="M 9.3,12.3 61.3,0.3 c 5.6,-1.3 11.5,1.6 13.7,6.9 L 99,63.3 c 2.1,4.9 0.7,10.6 -3.4,14 L 65.3,102 c 18,38.3 49.4,70.2 88.6,88.6 l 24.8,-30.3 c 3.4,-4.1 9.1,-5.5 14,-3.4 l 56,24 c 5.3,2.3 8.3,8.1 7,13.8 L 243.7,246.7 C 242.4,252.1 237.6,256 232,256 103.9,256 0,152.3 0,24 0,18.4 3.8,13.6 9.3,12.3 Z"></path></svg> | |
| 547 | + <span class="click-to-call" customlabelreplaced="">+1 819-303-3449</span> | |
| 548 | + </a> | |
| 549 | + | |
| 550 | + </div> | |
| 551 | + </div> | |
| 552 | + <script> | |
| 553 | + function fireGaPhone() { | |
| 554 | + if (typeof gtag != 'undefined') { | |
| 555 | + var myPage = location.pathname.replace("/", ""); | |
| 556 | + if (myPage == "") { myPage = "index"; } | |
| 557 | + if (true ) { | |
| 558 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 559 | + gtag('event', 'phone_call', { 'property_name': propertyName, 'page_name': document.title, 'page_url': window.location.href, 'header_phone_number': '+1 819-303-3449'}); | |
| 560 | + } | |
| 561 | + gtag('event', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 562 | + gtag('rc.send', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 563 | + } | |
| 564 | + } | |
| 565 | + </script> | |
| 566 | + | |
| 567 | + </div> | |
| 568 | + <div class="collapse navbar-collapse" id="navbarMobileCollapse" customlabelreplaced=""> | |
| 569 | + <ul class="nav navbar-nav pt-3 custom-scroll" customlabelreplaced=""> | |
| 570 | + <li class="nav-item" customlabelreplaced=""> | |
| 571 | + <a onclick="fireGA4menu(this)" data-selenium-id="mobile_amenitiesaspx_MenuLink" href="/horizon-condo/amenities" class="nav-link" customlabelreplaced=""> | |
| 572 | + Amenities </a> | |
| 573 | + </li> | |
| 574 | + <li class="nav-item" customlabelreplaced=""> | |
| 575 | + <a onclick="fireGA4menu(this)" data-selenium-id="mobile_mapsanddirectionsaspx_MenuLink" href="/horizon-condo/mapsanddirections" class="nav-link" customlabelreplaced=""> | |
| 576 | + Neighbourhood </a> | |
| 577 | + </li> | |
| 578 | + <li class="nav-item" customlabelreplaced=""> | |
| 579 | + <a onclick="fireGA4menu(this)" data-selenium-id="mobile_https://resource.rentcafe.com/image/upload/s3/2/252329/2026-08-25_horizon_brochure_communaute´_web_plans_compressed.pdfaspx_MenuLink" ioi="true" href="https://resource.rentcafe.com/image/upload/s3/2/252329/2026-08-25_horizon_brochure_communaute´_web_plans_compressed.pdf" class="nav-link" target="_blank" customlabelreplaced=""> | |
| 580 | + Brochure <span class="sr-only" customlabelreplaced="">opens in a new tab</span> </a> | |
| 581 | + </li> | |
| 582 | + <li class="nav-item active" customlabelreplaced=""> | |
| 583 | + <a onclick="fireGA4menu(this)" data-selenium-id="mobile_floorplansaspx_MenuLink" href="/horizon-condo/floorplans" aria-current="page" class="nav-link" customlabelreplaced=""> | |
| 584 | + Units & Pricing </a> | |
| 585 | + </li> | |
| 586 | + <li class="nav-item" customlabelreplaced=""> | |
| 587 | + <a onclick="fireGA4menu(this)" data-selenium-id="mobile_photogalleryaspx_MenuLink" href="/horizon-condo/photogallery" class="nav-link" customlabelreplaced=""> | |
| 588 | + Gallery </a> | |
| 589 | + </li> | |
| 590 | + </ul> | |
| 591 | + </div> | |
| 592 | + </nav> | |
| 593 | +<script> | |
| 594 | + function fireGA4menu(item) { | |
| 595 | + if (typeof gtag !== 'undefined') { | |
| 596 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 597 | + var destination = item.getAttribute('href'); | |
| 598 | + gtag('event', 'menu_link', { | |
| 599 | + 'property_name': propertyName, 'button_label': item.innerText, 'page_name': document.title, 'page_url': window.location.href, | |
| 600 | + 'destination_url': window.location.host + destination | |
| 601 | + }); | |
| 602 | + } | |
| 603 | + } | |
| 604 | +</script> | |
| 605 | + | |
| 606 | + | |
| 607 | + | |
| 608 | +<script> | |
| 609 | +window.addEventListener("load", () => { | |
| 610 | + document.querySelectorAll('button.navbar-toggler[aria-expanded]').forEach((hamburger) => { | |
| 611 | + const update = () => { | |
| 612 | + hamburger.setAttribute( | |
| 613 | + "aria-label", | |
| 614 | + hamburger.getAttribute("aria-expanded") === "true" | |
| 615 | + ? "Close navigation" | |
| 616 | + : "Toggle navigation" | |
| 617 | + ); | |
| 618 | + }; | |
| 619 | + | |
| 620 | + update(); | |
| 621 | + | |
| 622 | + new MutationObserver(update).observe(hamburger, { | |
| 623 | + attributes: true, | |
| 624 | + attributeFilter: ["aria-expanded"], | |
| 625 | + }); | |
| 626 | + }); | |
| 627 | +}); | |
| 628 | +</script> | |
| 629 | + | |
| 630 | + | |
| 631 | + | |
| 632 | + <header><div class="topbar py-0 px-5 text-primary bg-secondary ysi-row d-none d-xl-flex" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""><div class="justify-content-start align-items-center flex-row d-flex text-left p-0 col-12 col-lg-4" customlabelreplaced=""> | |
| 633 | + <div class="mr-2" style="font-size: 18px;" customlabelreplaced="">Communities by</div> | |
| 634 | + <div class="ysi-picture-widget ysi-picture-wrapper " customlabelreplaced=""> | |
| 635 | + <a href="https://brigil.com/specials-and-promotions" class="" title="logoat Horizon Apartments, Gatineau, QC J9A 0G9, Opens in new tab" aria-label="logoat Horizon Apartments, Gatineau, QC J9A 0G9, Opens in new tab" target="_blank" rel="noopener" customlabelreplaced=""><picture><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_232,h_96,c_crop/q_auto,f_auto,c_lfill,w_231,ar_2.416,g_auto/s3/2/252329/layer_1%20(12).png" class="w-100 h-100 max-height-24 img-fluid" alt="logoat Horizon Apartments, Gatineau, QC J9A 0G9" title="logo"> | |
| 636 | +</picture> | |
| 637 | +</a> | |
| 638 | + | |
| 639 | + | |
| 640 | + | |
| 641 | + </div> | |
| 642 | + | |
| 643 | +</div><div class="p-0 col-12 offset-0 d-flex justify-content-end align-items-center flex-row text-right col-lg-8" customlabelreplaced=""> | |
| 644 | + | |
| 645 | + <div class="d-flex flex-row align-items-center justify-content-end" customlabelreplaced=""> | |
| 646 | + <a href="https://www.brigil.com/specials-and-promotions" class="nav-link text-decoration-none letter-spacing-1" target="_blank" customlabelreplaced="">For Rent</a> | |
| 647 | + <a href="https://www.brigil.com/specials-and-promotions#forsales" class="nav-link text-decoration-none letter-spacing-1" target="_blank" customlabelreplaced="">For Sale</a> | |
| 648 | + <a href="https://www.brigil.com/commercial-development" class="nav-link text-decoration-none letter-spacing-1" target="_blank" customlabelreplaced="">Commercial</a> | |
| 649 | + <a href="https://batisseurcitoyen.brigil.com/en" class="link-en nav-link text-decoration-none letter-spacing-1" target="_blank" customlabelreplaced="">About Brigil</a> | |
| 650 | + <a href="https://batisseurcitoyen.brigil.com/" class="link-fr nav-link text-decoration-none letter-spacing-1" target="_blank" customlabelreplaced="">About Brigil</a> | |
| 651 | + <a href="https://www.brigil.com/contactus" class="nav-link text-decoration-none letter-spacing-1" target="_blank" customlabelreplaced="">Contact Us</a> | |
| 652 | + </div> | |
| 653 | + | |
| 654 | + </div></div></div></div><div data-offset-top="189" id="stickyTopSentinel0" class="stickytopsentinel" style="position: absolute; left: 0px; width: 1px; height: 1px; z-index: 0;"></div><div class="sticky-top py-3 px-5 text-primary bg-white ysi-row w-100 d-none d-xl-flex" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""><div class="justify-content-start align-items-center flex-row d-flex text-left p-0 col-12 col-lg-1" customlabelreplaced=""><style>#logo844 img{box-sizing:content-box}@media (min-width: 992px){#logo844 img{width:232px}}</style><div class="ysi-logo-widget ysi-logo-wrapper " data-widget-order="1" customlabelreplaced="" aria-hidden="false"><a href="/horizon-condo" class="d-inline-block" customlabelreplaced=""><picture id="logo844"> | |
| 655 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1920,h_621,c_crop/q_auto,f_auto,c_fit,w_232,h_75,dpr_2/s3/2/252329/brigil-horizon-proplogo.png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1920,h_621,c_crop/q_auto,f_auto,c_limit,w_232,h_75/s3/2/252329/brigil-horizon-proplogo.png"> | |
| 656 | + | |
| 657 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1920,h_621,c_crop/q_auto,f_auto,c_fit,w_155,h_50,dpr_2/s3/2/252329/brigil-horizon-proplogo.png 2x"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1920,h_621,c_crop/q_auto,f_auto,c_limit,w_155,h_50/s3/2/252329/brigil-horizon-proplogo.png" class="w-100 h-100 d-inline-block img-fluid" alt="A logo for Chateau Golf is displayed.at Horizon Apartments, Gatineau, QC J9A 0G9" title="Condominium property logo and branding" width="155" height="50"> | |
| 658 | +</picture> | |
| 659 | +</a></div> | |
| 660 | + | |
| 661 | +</div><div class="justify-content-start align-items-center flex-row d-flex text-left pl-xl-4 col-12 col-lg-7" customlabelreplaced=""> <style> | |
| 662 | + #navbarCollapse .nav.navbar-nav { | |
| 663 | + background-color: #ffffff; | |
| 664 | + } | |
| 665 | + </style> | |
| 666 | + <nav id="ysi-navbar" aria-label="main navigation" class="ysi-navbar navbar navbar-expand navbar-light" style="" aria-hidden="false"> | |
| 667 | + <div class="navbar-collapse collapse navbar-z-index " style="width: 100%; " id="navbarCollapse" customlabelreplaced=""> | |
| 668 | + <ul class="nav navbar-nav " customlabelreplaced=""> | |
| 669 | + <li class="nav-item m-auto" customlabelreplaced=""> | |
| 670 | + <a onclick="fireGA4menu(this)" data-selenium-id="amenitiesaspx_MenuLink" href="/horizon-condo/amenities" class="nav-link" customlabelreplaced=""> | |
| 671 | + Amenities </a> | |
| 672 | + </li> | |
| 673 | + <li class="nav-item m-auto" customlabelreplaced=""> | |
| 674 | + <a onclick="fireGA4menu(this)" data-selenium-id="mapsanddirectionsaspx_MenuLink" href="/horizon-condo/mapsanddirections" class="nav-link" customlabelreplaced=""> | |
| 675 | + Neighbourhood </a> | |
| 676 | + </li> | |
| 677 | + <li class="nav-item m-auto" customlabelreplaced=""> | |
| 678 | + <a onclick="fireGA4menu(this)" data-selenium-id="https://resource.rentcafe.com/image/upload/s3/2/252329/2026-08-25_horizon_brochure_communaute´_web_plans_compressed.pdfaspx_MenuLink" ioi="true" href="https://resource.rentcafe.com/image/upload/s3/2/252329/2026-08-25_horizon_brochure_communaute´_web_plans_compressed.pdf" class="nav-link" target="_blank" customlabelreplaced=""> | |
| 679 | + Brochure <span class="sr-only" customlabelreplaced="">opens in a new tab</span> </a> | |
| 680 | + </li> | |
| 681 | + <li class="nav-item active m-auto" customlabelreplaced=""> | |
| 682 | + <a onclick="fireGA4menu(this)" data-selenium-id="floorplansaspx_MenuLink" href="/horizon-condo/floorplans" aria-current="page" class="nav-link" customlabelreplaced=""> | |
| 683 | + Units & Pricing </a> | |
| 684 | + </li> | |
| 685 | + <li class="nav-item m-auto" customlabelreplaced=""> | |
| 686 | + <a onclick="fireGA4menu(this)" data-selenium-id="photogalleryaspx_MenuLink" href="/horizon-condo/photogallery" class="nav-link" customlabelreplaced=""> | |
| 687 | + Gallery </a> | |
| 688 | + </li> | |
| 689 | + </ul> | |
| 690 | + </div> | |
| 691 | + </nav> | |
| 692 | + | |
| 693 | +<script> | |
| 694 | + function fireGA4menu(item) { | |
| 695 | + if (typeof gtag !== 'undefined') { | |
| 696 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 697 | + var destination = item.getAttribute('href'); | |
| 698 | + gtag('event', 'menu_link', { | |
| 699 | + 'property_name': propertyName, 'button_label': item.innerText, 'page_name': document.title, 'page_url': window.location.href, | |
| 700 | + 'destination_url': window.location.host + destination | |
| 701 | + }); | |
| 702 | + } | |
| 703 | + } | |
| 704 | +</script> | |
| 705 | + | |
| 706 | + | |
| 707 | + | |
| 708 | +<script> | |
| 709 | +window.addEventListener("load", () => { | |
| 710 | + document.querySelectorAll('button.navbar-toggler[aria-expanded]').forEach((hamburger) => { | |
| 711 | + const update = () => { | |
| 712 | + hamburger.setAttribute( | |
| 713 | + "aria-label", | |
| 714 | + hamburger.getAttribute("aria-expanded") === "true" | |
| 715 | + ? "Close navigation" | |
| 716 | + : "Toggle navigation" | |
| 717 | + ); | |
| 718 | + }; | |
| 719 | + | |
| 720 | + update(); | |
| 721 | + | |
| 722 | + new MutationObserver(update).observe(hamburger, { | |
| 723 | + attributes: true, | |
| 724 | + attributeFilter: ["aria-expanded"], | |
| 725 | + }); | |
| 726 | + }); | |
| 727 | +}); | |
| 728 | +</script> | |
| 729 | + | |
| 730 | +</div><div class="p-0 col-12 offset-0 d-flex justify-content-end align-items-center flex-row text-left col-lg-4" customlabelreplaced=""> | |
| 731 | + | |
| 732 | + <style>.mobile-only .click-to-call{display:none}</style> | |
| 733 | + | |
| 734 | + <div class="ysi-phone-widget ysi-phone-wrapper mr-4 " customlabelreplaced=""> | |
| 735 | + <div class="d-inline-flex" customlabelreplaced=""> | |
| 736 | + <a data-selenium-id="click_to_call" onclick="fireGaPhone()" href="tel:+1 819-303-3449" aria-label="Call Horizon at +1 819-303-3449" class="ysi-phone-number click-to-call-href text-decoration-none color-inherit text-white" customlabelreplaced=""> | |
| 737 | + <span aria-hidden="true" class="fa-flip-horizontal fas fa-phone text-primary" customlabelreplaced=""></span> | |
| 738 | + <span data-selenium-id="click_to_call_span" class="click-to-call ml-2 text-underline" customlabelreplaced="">+1 819-303-3449</span> | |
| 739 | + </a> | |
| 740 | + | |
| 741 | + </div> | |
| 742 | + </div> | |
| 743 | + <script> | |
| 744 | + function fireGaPhone() { | |
| 745 | + if (typeof gtag != 'undefined') { | |
| 746 | + var myPage = location.pathname.replace("/", ""); | |
| 747 | + if (myPage == "") { myPage = "index"; } | |
| 748 | + if (true ) { | |
| 749 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 750 | + gtag('event', 'phone_call', { 'property_name': propertyName, 'page_name': document.title, 'page_url': window.location.href, 'header_phone_number': '+1 819-303-3449'}); | |
| 751 | + } | |
| 752 | + gtag('event', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 753 | + gtag('rc.send', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 754 | + } | |
| 755 | + } | |
| 756 | + </script> | |
| 757 | + | |
| 758 | + | |
| 759 | + <div class="dropdown ysi-translate-widget ysi-translate-dropdown px-2 d-none d-lg-flex" customlabelreplaced=""> | |
| 760 | + <a data-selenium-id="translate" class="dropdown-toggle color-inherit " href="#" onclick="elementLanguageFocus()" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" customlabelreplaced=""> | |
| 761 | + <span aria-hidden="true" class="fas fa-globe-americas" customlabelreplaced=""></span> <span class="" customlabelreplaced="">Language</span> | |
| 762 | + </a> | |
| 763 | + <ul class="dropdown-menu " customlabelreplaced=""> | |
| 764 | + | |
| 765 | + <li customlabelreplaced=""> | |
| 766 | + <a data-selenium-id="lang-1" class="dropdown-item px-3 language-drowndown-item" href="javascript:getPack('en-us')" aria-label="English Language" customlabelreplaced=""> | |
| 767 | + <span class="ml-2" customlabelreplaced="">English</span> | |
| 768 | + </a> | |
| 769 | + </li> | |
| 770 | + <li customlabelreplaced=""> | |
| 771 | + <a data-selenium-id="lang-1" class="dropdown-item px-3 language-drowndown-item" href="javascript:getPack('fr-ca')" aria-label="French Language" customlabelreplaced=""> | |
| 772 | + <span class="ml-2" customlabelreplaced="">French</span> | |
| 773 | + </a> | |
| 774 | + </li> | |
| 775 | + </ul> | |
| 776 | + </div> | |
| 777 | + <input type="hidden" id="translate-request-verification-token" name="translate-request-verification-token" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ1jRqjbwyWWAEfQ33tCI22seWvkcrQFek3ED1rbg3gMdEtJ-k7nubaSjXKiZWqAGT3MyCCWxLOL2fViVt5kBGgaCNjNyiVn1GfbuPFjT1085IayHkNJt6LfHaOdIPNGrmI"> | |
| 778 | + | |
| 779 | + | |
| 780 | + | |
| 781 | + | |
| 782 | + <div class="dropdown ysi-login-link-widget ysi-login-dropdown text-uppercase" style="max-width: max-content;" customlabelreplaced="" aria-hidden="true"> | |
| 783 | + | |
| 784 | + <a data-selenium-id="loginlinks" class="dropdown-toggle btn " style="" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" customlabelreplaced=""> | |
| 785 | + <span aria-hidden="true" class="fas fa-user mr-1" customlabelreplaced=""></span> | |
| 786 | + <span customlabelreplaced="">Login</span> | |
| 787 | + </a> | |
| 788 | + | |
| 789 | + <div class="dropdown-menu dropdown-menu-right" customlabelreplaced=""> | |
| 790 | + | |
| 791 | + | |
| 792 | + | |
| 793 | + <ul class="dropdown-list list-unstyled mb-0" customlabelreplaced=""> | |
| 794 | + <li customlabelreplaced=""> | |
| 795 | + <a data-selenium-id="residentlogin" class="dropdown-item track-resident-login" href="https://brigil.securecafe.com/residentservices/horizon-condo/userlogin.aspx?dropdownlangid=999&PropLeadSource_1975512=portal" rel="noopener" target="_Blank" customlabelreplaced=""> Resident <span class="sr-only" customlabelreplaced="">Login Opens in a new tab</span> </a> | |
| 796 | + </li> | |
| 797 | + | |
| 798 | + <li customlabelreplaced=""> | |
| 799 | + <a data-selenium-id="applicantlogin" class="dropdown-item track-applicant-login" href="https://brigil.securecafe.com/onlineleasing/horizon-condo/guestlogin.aspx?dropdownlangid=999&PropLeadSource_1975512=portal" rel="noopener" target="_Blank" customlabelreplaced=""> Applicant <span class="sr-only" customlabelreplaced="">Login Opens in a new tab</span> </a> | |
| 800 | + </li> | |
| 801 | + | |
| 802 | + </ul> | |
| 803 | + </div> | |
| 804 | + </div> | |
| 805 | + | |
| 806 | + | |
| 807 | + | |
| 808 | + <style>.btn-reach-animated-icon{position:relative;isolation:isolate;background:none !important;border-radius:25px !important;padding-left:2rem;padding-right:4rem;margin-bottom:0 !important;overflow:hidden}.btn-reach-animated-icon.bg-white:focus,.btn-reach-animated-icon.bg-white:hover,.btn-reach-animated-icon.bg-black:focus,.btn-reach-animated-icon.bg-black:hover,.btn-reach-animated-icon.bg-primary:focus,.btn-reach-animated-icon.bg-primary:hover,.btn-reach-animated-icon.bg-secondary:focus,.btn-reach-animated-icon.bg-secondary:hover{background:transparent !important}.btn-reach-animated-icon span{position:absolute;top:50%;right:0;margin-left:0 !important;padding-right:2rem;z-index:2;transition:padding-right .75s;transform:translateY(-50%)}.btn-reach-animated-icon:hover span,.btn-reach-animated-icon:focus span{padding-right:1rem}.btn-reach-animated-icon::before{content:'';position:absolute;width:100%;height:100%;top:0;right:0%;background:#0001;border-radius:25px;z-index:-1;transition:all .75s}.btn-reach-animated-icon[class*="btn-outline-"]::before{opacity:0}.btn-reach-animated-icon.bg-white::before{background:#fff;opacity:1}.btn-reach-animated-icon.bg-black::before{background:#000;opacity:1}.btn-reach-animated-icon.bg-primary::before{background:#2D3D4D;opacity:1}.btn-reach-animated-icon.bg-secondary::before{background:#E6E4D7;opacity:1}.btn-reach-animated-icon:hover::before,.btn-reach-animated-icon:focus::before{right:calc(-100% + 45px);opacity:1}.btn-reach-animated-icon::after{content:'';position:absolute;width:100%;height:100%;top:0;left:0;background:#0001;opacity:.6;border-radius:25px !important;z-index:-2}.btn-reach-animated-icon[class*="btn-outline-"]::after{opacity:0;transition:all .75s}.btn-reach-animated-icon.bg-white::after{background:#fff}.btn-reach-animated-icon.bg-black::after{background:#000}.btn-reach-animated-icon.bg-primary::after{background:#2D3D4D}.btn-reach-animated-icon.bg-secondary::after{background:#E6E4D7}.btn-reach-animated-icon[class*="btn-outline-"]:hover::after,.btn-reach-animated-icon[class*="btn-outline-"]:focus::after{opacity:.6}.btn-reach-animated-icon.text-white{color:#fff}.btn-reach-animated-icon.text-black{color:#000}.btn-reach-animated-icon.text-primary{color:#2D3D4D}.btn-reach-animated-icon.text-secondary{color:#E6E4D7}.btn-primary.btn-reach-animated-icon::before,.btn-primary.btn-reach-animated-icon::after{background:#2D3D4D}.btn-outline-primary.btn-reach-animated-icon::before,.btn-outline-primary.btn-reach-animated-icon::after{background:#E6E4D7}.btn-secondary.btn-reach-animated-icon::before,.btn-secondary.btn-reach-animated-icon::after{background:#E6E4D7}.btn-outline-secondary.btn-reach-animated-icon::before,.btn-outline-secondary.btn-reach-animated-icon::after{background:#2D3D4D}.btn-success.btn-reach-animated-icon::before,.btn-success.btn-reach-animated-icon::after{background:#198754}.btn-danger.btn-reach-animated-icon::before,.btn-danger.btn-reach-animated-icon::after{background:#dc3545}.btn-warning.btn-reach-animated-icon::before,.btn-warning.btn-reach-animated-icon::after{background:#ffc107}.btn-info.btn-reach-animated-icon::before,.btn-info.btn-reach-animated-icon::after{background:#0dcaf0}.btn-light.btn-reach-animated-icon::before,.btn-light.btn-reach-animated-icon::after{background:#f8f9fa}.btn-dark.btn-reach-animated-icon::before,.btn-dark.btn-reach-animated-icon::after{background:#343a40}.btn-black.btn-reach-animated-icon::before,.btn-black.btn-reach-animated-icon::after{background:#000}.btn-white.btn-reach-animated-icon::before,.btn-white.btn-reach-animated-icon::after{background:#fff}</style> | |
| 809 | + | |
| 810 | + | |
| 811 | +<div class="ysi-button-widget ysi-button-wrapper " customlabelreplaced=""> | |
| 812 | + <a data-selenium-id="h-row3-col3-btn" class="btn btn-reach-animated-icon btn-outline-primary letter-spacing-1 pl-4 pr-xl-6 btn-md btn-primary" href="https://calendly.com/horizon-par-brigil/horizon-on-site-visit?utm_term=p1942894" style="" customlabelreplaced=""> | |
| 813 | + Plan a visit | |
| 814 | + <span aria-hidden="true" class="nu nu-arrow-right ml-2" style="" customlabelreplaced=""></span> | |
| 815 | + </a> | |
| 816 | +</div></div></div></div></div><div class="py-2 px-5 text-primary bg-secondary ysi-row d-flex d-xl-none" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""> | |
| 817 | + <div class="justify-content-center align-items-center flex-row d-flex text-left col-12" customlabelreplaced=""> | |
| 818 | + <a href="https://brigil.com/specials-and-promotions" target="_blank" customlabelreplaced=""> | |
| 819 | + <div class="d-flex justify-content-center" customlabelreplaced=""> | |
| 820 | + <span class="nu nu-arrow-left mr-2" customlabelreplaced=""></span><div class="mr-2" customlabelreplaced="">More communities by</div> | |
| 821 | + </div> | |
| 822 | + </a> | |
| 823 | + <div class="ysi-picture-widget ysi-picture-wrapper " customlabelreplaced=""> | |
| 824 | + <a href="https://brigil.com/specials-and-promotions" class="" title="logoat Horizon Apartments, Gatineau, QC J9A 0G9, Opens in new tab" aria-label="logoat Horizon Apartments, Gatineau, QC J9A 0G9, Opens in new tab" target="_blank" rel="noopener" customlabelreplaced=""><picture><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_232,h_96,c_crop/q_auto,f_auto,c_lfill,w_231,ar_2.416,g_auto/s3/2/252329/layer_1%20(12).png" class="w-100 h-100 max-height-24 img-fluid" alt="logoat Horizon Apartments, Gatineau, QC J9A 0G9" title="logo"> | |
| 825 | +</picture> | |
| 826 | +</a> | |
| 827 | + | |
| 828 | + | |
| 829 | + | |
| 830 | + </div> | |
| 831 | + | |
| 832 | +</div> | |
| 833 | + </div></div></div></header> | |
| 834 | + <!--do not remove--> | |
| 835 | + <main id="main-content"> | |
| 836 | + <div class="bg-white" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""> | |
| 837 | + <div class="justify-content-start align-items-stretch flex-column d-flex text-left col-12" customlabelreplaced=""><div class="row" customlabelreplaced=""> | |
| 838 | + <div class="justify-content-start align-items-stretch flex-column d-flex text-left col-12" customlabelreplaced=""></div> | |
| 839 | + </div><div class="px-lg-5 pt-lg-6 px-3 pt-4 row" customlabelreplaced=""><div class="pb-3 col-12 offset-0 d-flex justify-content-center align-items-stretch flex-column text-center text-lg-center col-lg-12" customlabelreplaced=""><h1 class="page-heading" data-selenium-id="SID_h1Tag" customlabelreplaced="">1 & 2 Bedroom Apartments in Gatineau</h1></div></div><div customlabelreplaced=""><div class="container" customlabelreplaced=""><div class="row" customlabelreplaced=""><div class="col-12 offset-0 d-flex justify-content-center align-items-stretch flex-column text-center col-lg-12" customlabelreplaced=""> | |
| 840 | + | |
| 841 | + | |
| 842 | + | |
| 843 | + | |
| 844 | + | |
| 845 | + <div class="row" customlabelreplaced=""> | |
| 846 | + <div class="col-12 mb-3" data-selenium-id="FloorplansTopNarrative" customlabelreplaced=""> | |
| 847 | + | |
| 848 | + | |
| 849 | + | |
| 850 | + | |
| 851 | + </div> | |
| 852 | + </div> | |
| 853 | + | |
| 854 | + <div class="row" customlabelreplaced=""> | |
| 855 | + <div class="col-12 page-content-floorplans floorplans-layout-tab" customlabelreplaced=""> | |
| 856 | + | |
| 857 | + | |
| 858 | + | |
| 859 | + <div id="fp-container" customlabelreplaced=""> | |
| 860 | + | |
| 861 | + | |
| 862 | + | |
| 863 | + | |
| 864 | + | |
| 865 | + | |
| 866 | +<!-- Optimized Floor Plans Layout Start --> | |
| 867 | +<div class="page-content-floorplans optimized mt-3 pagebreak-before" customlabelreplaced=""> | |
| 868 | + | |
| 869 | + <!-- views menu --> | |
| 870 | + | |
| 871 | + <div class="tab-content" customlabelreplaced=""> | |
| 872 | + <div class="tab-pane fade show active" id="gridView" customlabelreplaced=""> | |
| 873 | + | |
| 874 | + <!-- START: filters --> | |
| 875 | + <div id="floorplans-filter" class="border-bottom mb-5" customlabelreplaced=""> | |
| 876 | + <form class="form-row row" id="aptsearch" method="post" action="/availableunits"> | |
| 877 | + <input type="hidden" id="request-verification-token" name="request-verification-token" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ1jRqjbwyWWAEfQ33tCI22seWvkcrQFek3ED1rbg3gMdEtJ-k7nubaSjXKiZWqAGT3MyCCWxLOL2fViVt5kBGgaCNjNyiVn1GfbuPFjT1085IayHkNJt6LfHaOdIPNGrmI"> | |
| 878 | + <!-- Beds dropdown --> | |
| 879 | + <div class="form-group col-6 col-sm-6 col-md" customlabelreplaced=""> | |
| 880 | + <div id="beds-dropdown" class="dropdown floating-label floating-label-sm" customlabelreplaced=""> | |
| 881 | + <button class="btn btn-sm dropdown-toggle pr-5" type="button" id="beds-dropdown-toggle" data-toggle="dropdown" data-persist="true" aria-expanded="false" customlabelreplaced=""><span>Bedrooms</span> </button> | |
| 882 | + <div class="p-3 dropdown-menu text-sm" aria-labelledby="beds-dropdown-toggle" customlabelreplaced=""> | |
| 883 | + <fieldset> | |
| 884 | + <legend class="sr-only" customlabelreplaced="">Choose your desired number of bedrooms</legend> | |
| 885 | + <div class="checkbox" customlabelreplaced=""> | |
| 886 | + <input id="1-beds-checkbox" type="checkbox" value="1" name="bedrooms" class="beds-checkbox mr-2"> | |
| 887 | + <label for="1-beds-checkbox" customlabelreplaced=""> | |
| 888 | + 1 Bedroom | |
| 889 | + </label> | |
| 890 | + </div> | |
| 891 | + <div class="checkbox" customlabelreplaced=""> | |
| 892 | + <input id="2-beds-checkbox" type="checkbox" value="2" name="bedrooms" class="beds-checkbox mr-2"> | |
| 893 | + <label for="2-beds-checkbox" customlabelreplaced=""> | |
| 894 | + 2 Bedrooms | |
| 895 | + </label> | |
| 896 | + </div> | |
| 897 | + </fieldset> | |
| 898 | + <div customlabelreplaced=""> | |
| 899 | + <button id="beds-clear" type="button" class="float-left d-none btn btn-link font-base text-muted text-capitalize btn-sm" customlabelreplaced="">Clear</button> | |
| 900 | + <button id="beds-done" type="button" class="float-right btn btn-link font-base text-black text-capitalize btn-sm" customlabelreplaced="">Done</button> | |
| 901 | + </div> | |
| 902 | + </div> | |
| 903 | + </div> | |
| 904 | + </div> | |
| 905 | + <!-- Baths dropdown --> | |
| 906 | + <div class="form-group col-6 col-sm-6 col-md" customlabelreplaced=""> | |
| 907 | + <div id="baths-dropdown" class="dropdown floating-label floating-label-sm" customlabelreplaced=""> | |
| 908 | + <button class="btn btn-sm dropdown-toggle pr-5" type="button" id="baths-dropdown-toggle" data-toggle="dropdown" data-persist="true" aria-expanded="false" customlabelreplaced=""><span>Bathrooms</span> </button> | |
| 909 | + <div class="p-3 dropdown-menu text-sm" aria-labelledby="baths-dropdown-toggle" customlabelreplaced=""> | |
| 910 | + <fieldset> | |
| 911 | + <legend class="sr-only" customlabelreplaced="">Choose your desired number of bathrooms</legend> | |
| 912 | + <div class="checkbox" customlabelreplaced=""> | |
| 913 | + <input id="1-baths-checkbox" type="checkbox" value="1" name="bathrooms" class="baths-checkbox mr-2"> | |
| 914 | + <label for="1-baths-checkbox" customlabelreplaced=""> | |
| 915 | + 1 Bathroom | |
| 916 | + </label> | |
| 917 | + </div> | |
| 918 | + </fieldset> | |
| 919 | + <div id="baths-error" class="dropdown-error" customlabelreplaced=""></div> | |
| 920 | + <div customlabelreplaced=""> | |
| 921 | + <button id="baths-clear" type="button" class="d-none float-left btn btn-sm btn-link font-base text-muted text-capitalize" customlabelreplaced="">Clear</button> | |
| 922 | + <button id="baths-done" type="button" class="float-right btn btn-sm btn-link font-base text-black text-capitalize" customlabelreplaced="">Done</button> | |
| 923 | + </div> | |
| 924 | + </div> | |
| 925 | + </div> | |
| 926 | + </div> | |
| 927 | + <!-- Unit size dropdown --> | |
| 928 | + <div class="form-group col-12 col-sm-6 col-md" customlabelreplaced=""> | |
| 929 | + <div id="unit-size-dropdown" class="dropdown floating-label floating-label-sm" customlabelreplaced=""> | |
| 930 | + <button class="btn btn-sm dropdown-toggle pr-5" type="button" id="unit-size-dropdown-toggle" data-toggle="dropdown" data-persist="true" aria-expanded="false" customlabelreplaced=""> | |
| 931 | + <span customlabelreplaced="">Unit Size</span> | |
| 932 | + </button> | |
| 933 | + <div class="p-3 dropdown-menu dropdown-menu-right text-sm" aria-labelledby="unit-size-dropdown-toggle" customlabelreplaced=""> | |
| 934 | + <div class="range" customlabelreplaced=""> | |
| 935 | + <div class="field" customlabelreplaced=""> | |
| 936 | + <div class="input-group-sm" customlabelreplaced=""> | |
| 937 | + <div class="floating-label floating-label-sm" customlabelreplaced=""> | |
| 938 | + <label for="min-unit-size" customlabelreplaced="">Min</label> | |
| 939 | + <input aria-describedby="unit-size-error" aria-label="minimum square Feet" id="min-unit-size" class="form-control form-control-sm" name="min-unit-size" type="number" data-max="1320" data-min="506" data-arealabel="Sq. Ft." min="0" step="100" placeholder="Min"> | |
| 940 | + </div> | |
| 941 | + <div class="input-group-append" customlabelreplaced=""> | |
| 942 | + <span class="input-group-text" customlabelreplaced="">Sq. Ft.</span> | |
| 943 | + </div> | |
| 944 | + </div> | |
| 945 | + </div> | |
| 946 | + <div class="p-2" customlabelreplaced=""> to </div> | |
| 947 | + <div class="field" customlabelreplaced=""> | |
| 948 | + <div class="input-group-sm" customlabelreplaced=""> | |
| 949 | + <div class="floating-label floating-label-sm" customlabelreplaced=""> | |
| 950 | + <label for="max-unit-size" customlabelreplaced="">Max</label> | |
| 951 | + <input aria-describedby="unit-size-error" aria-label="maximum square Feet" id="max-unit-size" class="form-control form-control-sm" name="max-unit-size" type="number" data-max="1320" data-min="506" data-arealabel="Sq. Ft." min="0" step="100" placeholder="Max"> | |
| 952 | + </div> | |
| 953 | + <div class="input-group-append" customlabelreplaced=""> | |
| 954 | + <span class="input-group-text" customlabelreplaced="">Sq. Ft.</span> | |
| 955 | + </div> | |
| 956 | + </div> | |
| 957 | + </div> | |
| 958 | + </div> | |
| 959 | + <div id="unit-size-error" aria-hidden="true" class="dropdown-error" customlabelreplaced=""></div> | |
| 960 | + <div customlabelreplaced=""> | |
| 961 | + <button id="unit-size-clear" type="button" class="d-none float-left btn btn-sm btn-link font-base text-muted text-capitalize" customlabelreplaced="">Clear</button> | |
| 962 | + <button id="unit-size-done" type="button" class="float-right btn btn-sm btn-link font-base text-black text-capitalize" customlabelreplaced="">Done</button> | |
| 963 | + </div> | |
| 964 | + </div> | |
| 965 | + </div> | |
| 966 | + </div> | |
| 967 | + <!-- Rent dropdown --> | |
| 968 | + <div class="form-group col-12 col-sm-6 col-md" customlabelreplaced=""> | |
| 969 | + <div id="rent-dropdown" class="dropdown floating-label floating-label-sm" data-currency="$" customlabelreplaced=""> | |
| 970 | + <button id="rent-dropdown-toggle" class="btn btn-sm dropdown-toggle pr-5" type="button" data-toggle="dropdown" data-persist="true" aria-expanded="false" customlabelreplaced=""> | |
| 971 | + <span customlabelreplaced="">Price Range </span> | |
| 972 | + </button> | |
| 973 | + <div class="p-3 dropdown-menu dropdown-menu-right text-sm" aria-labelledby="rent-dropdown-toggle" customlabelreplaced=""> | |
| 974 | + <div class="range" customlabelreplaced=""> | |
| 975 | + <div class="field" customlabelreplaced=""> | |
| 976 | + <div class="input-group-sm" customlabelreplaced=""> | |
| 977 | + <div class="input-group-prepend" customlabelreplaced=""> | |
| 978 | + <span class="input-group-text" customlabelreplaced="">$</span> | |
| 979 | + </div> | |
| 980 | + <div class="floating-label floating-label-sm" customlabelreplaced=""> | |
| 981 | + <label for="min-rent" customlabelreplaced="">Min</label> | |
| 982 | + <input aria-describedby="rent-error" aria-label="Minimum Price" id="min-rent" class="form-control form-control-sm" name="min-rent" type="number" data-max="2004" data-min="0" min="0" step="100" placeholder="Min"> | |
| 983 | + </div> | |
| 984 | + </div> | |
| 985 | + </div> | |
| 986 | + <div class="p-2" customlabelreplaced=""> to </div> | |
| 987 | + <div class="field" customlabelreplaced=""> | |
| 988 | + <div class="input-group-sm" customlabelreplaced=""> | |
| 989 | + <div class="input-group-prepend" customlabelreplaced=""> | |
| 990 | + <span class="input-group-text" customlabelreplaced="">$</span> | |
| 991 | + </div> | |
| 992 | + <div class="floating-label floating-label-sm" customlabelreplaced=""> | |
| 993 | + <label for="max-rent" customlabelreplaced="">Max</label> | |
| 994 | + <input aria-describedby="rent-error" aria-label="Maximum Price" id="max-rent" class="form-control form-control-sm" name="max-rent" type="number" data-max="2004" data-min="0" min="0" step="100" placeholder="Max"> | |
| 995 | + </div> | |
| 996 | + </div> | |
| 997 | + </div> | |
| 998 | + </div> | |
| 999 | + <div id="rent-error" aria-hidden="true" class="dropdown-error" role="alert" customlabelreplaced=""></div> | |
| 1000 | + <div customlabelreplaced=""> | |
| 1001 | + <button id="rent-clear" type="button" class="d-none float-left btn btn-sm btn-link font-base text-muted text-capitalize" customlabelreplaced="">Clear</button> | |
| 1002 | + <button id="rent-done" type="button" class="float-right btn btn-sm btn-link font-base text-black text-capitalize" customlabelreplaced="">Done</button> | |
| 1003 | + </div> | |
| 1004 | + </div> | |
| 1005 | + </div> | |
| 1006 | + </div> | |
| 1007 | + <!-- Move-in date --> | |
| 1008 | + <div class="form-group input-group col-12 col-sm-6 col-md filter-input floating-label floating-label-sm" customlabelreplaced=""> | |
| 1009 | + <label for="move-in-date" customlabelreplaced="">Move-In Date</label> | |
| 1010 | + <input type="text" class="form-control form-control-sm flatpickr-input" id="move-in-date" name="move-in-date" value="" placeholder="dd/MM/yyyy" customlabelreplaced=""><div class="flatpickr-calendar animate static" tabindex="-1"><div class="flatpickr-months"><span class="flatpickr-prev-month flatpickr-disabled" tabindex="0" aria-label="Previous Month" role="button"></span><div class="flatpickr-month"><div class="flatpickr-current-month"><select class="flatpickr-monthDropdown-months" aria-label="Month" tabindex="0"><option class="flatpickr-monthDropdown-month" value="" disabled="">Select Month</option><option class="flatpickr-monthDropdown-month" value="7" tabindex="-1">August</option><option class="flatpickr-monthDropdown-month" value="8" tabindex="-1">September</option><option class="flatpickr-monthDropdown-month" value="9" tabindex="-1">October</option><option class="flatpickr-monthDropdown-month" value="10" tabindex="-1">November</option><option class="flatpickr-monthDropdown-month" value="11" tabindex="-1">December</option></select><select class="flatpickr-yearDropdown-years" tabindex="0" aria-label="Year" style="text-align-last:left"><option value="" disabled="">Select Year</option><option value="2026">2026</option><option value="2027">2027</option><option value="2028">2028</option><option value="2029">2029</option><option value="2030">2030</option><option value="2031">2031</option><option value="2032">2032</option><option value="2033">2033</option><option value="2034">2034</option><option value="2035">2035</option><option value="2036">2036</option></select><div class="numInputWrapper" style="display: none;"><input class="numInput cur-year" type="number" tabindex="0" aria-label="Year" min="2026"><span class="arrowUp"></span><span class="arrowDown"></span></div></div></div><span class="flatpickr-next-month" tabindex="0" aria-label="Next Month" role="button"></span></div><div class="flatpickr-innerContainer"><div class="flatpickr-rContainer"><div class="flatpickr-weekdays"><div class="flatpickr-weekdaycontainer"> | |
| 1011 | + <span class="flatpickr-weekday"> | |
| 1012 | + Sun</span><span class="flatpickr-weekday">Mon</span><span class="flatpickr-weekday">Tue</span><span class="flatpickr-weekday">Wed</span><span class="flatpickr-weekday">Thu</span><span class="flatpickr-weekday">Fri</span><span class="flatpickr-weekday">Sat | |
| 1013 | + </span> | |
| 1014 | + </div></div><div class="flatpickr-days" tabindex="-1"><div class="dayContainer"><span class="flatpickr-day prevMonthDay flatpickr-disabled ysi-date-disabled" aria-label="Sunday, July 26, 2026. Unavailable" role="button">26</span><span class="flatpickr-day prevMonthDay flatpickr-disabled ysi-date-disabled" aria-label="Monday, July 27, 2026. Unavailable" role="button">27</span><span class="flatpickr-day prevMonthDay flatpickr-disabled ysi-date-disabled" aria-label="Tuesday, July 28, 2026. Unavailable" role="button">28</span><span class="flatpickr-day prevMonthDay flatpickr-disabled ysi-date-disabled" aria-label="Wednesday, July 29, 2026. Unavailable" role="button">29</span><span class="flatpickr-day prevMonthDay flatpickr-disabled ysi-date-disabled" aria-label="Thursday, July 30, 2026. Unavailable" role="button">30</span><span class="flatpickr-day prevMonthDay flatpickr-disabled ysi-date-disabled" aria-label="Friday, July 31, 2026. Unavailable" role="button">31</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Saturday, August 1, 2026. Unavailable" role="button">1</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Sunday, August 2, 2026. Unavailable" role="button">2</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Monday, August 3, 2026. Unavailable" role="button">3</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Tuesday, August 4, 2026. Unavailable" role="button">4</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Wednesday, August 5, 2026. Unavailable" role="button">5</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Thursday, August 6, 2026. Unavailable" role="button">6</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Friday, August 7, 2026. Unavailable" role="button">7</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Saturday, August 8, 2026. Unavailable" role="button">8</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Sunday, August 9, 2026. Unavailable" role="button">9</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Monday, August 10, 2026. Unavailable" role="button">10</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Tuesday, August 11, 2026. Unavailable" role="button">11</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Wednesday, August 12, 2026. Unavailable" role="button">12</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Thursday, August 13, 2026. Unavailable" role="button">13</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Friday, August 14, 2026. Unavailable" role="button">14</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Saturday, August 15, 2026. Unavailable" role="button">15</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Sunday, August 16, 2026. Unavailable" role="button">16</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Monday, August 17, 2026. Unavailable" role="button">17</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Tuesday, August 18, 2026. Unavailable" role="button">18</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Wednesday, August 19, 2026. Unavailable" role="button">19</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Thursday, August 20, 2026. Unavailable" role="button">20</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Friday, August 21, 2026. Unavailable" role="button">21</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Saturday, August 22, 2026. Unavailable" role="button">22</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Sunday, August 23, 2026. Unavailable" role="button">23</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Monday, August 24, 2026. Unavailable" role="button">24</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Tuesday, August 25, 2026. Unavailable" role="button">25</span><span class="flatpickr-day flatpickr-disabled ysi-date-disabled" aria-label="Wednesday, August 26, 2026. Unavailable" role="button">26</span><span class="flatpickr-day today ysi-date-disabled" aria-label="Thursday, August 27, 2026. Unavailable" aria-current="date" tabindex="-1" aria-pressed="false" role="button">27</span><span class="flatpickr-day " aria-label="Friday, August 28, 2026" tabindex="-1" aria-pressed="false" role="button">28</span><span class="flatpickr-day " aria-label="Saturday, August 29, 2026" tabindex="-1" aria-pressed="false" role="button">29</span><span class="flatpickr-day " aria-label="Sunday, August 30, 2026" tabindex="-1" aria-pressed="false" role="button">30</span><span class="flatpickr-day " aria-label="Monday, August 31, 2026" tabindex="-1" aria-pressed="false" role="button">31</span><span class="flatpickr-day nextMonthDay" aria-label="Tuesday, September 1, 2026" tabindex="-1" aria-pressed="false" role="button">1</span><span class="flatpickr-day nextMonthDay" aria-label="Wednesday, September 2, 2026" tabindex="-1" aria-pressed="false" role="button">2</span><span class="flatpickr-day nextMonthDay" aria-label="Thursday, September 3, 2026" tabindex="-1" aria-pressed="false" role="button">3</span><span class="flatpickr-day nextMonthDay" aria-label="Friday, September 4, 2026" tabindex="-1" aria-pressed="false" role="button">4</span><span class="flatpickr-day nextMonthDay" aria-label="Saturday, September 5, 2026" tabindex="-1" aria-pressed="false" role="button">5</span></div></div></div></div></div> | |
| 1015 | + <div class="input-group-append" customlabelreplaced=""> | |
| 1016 | + <button class="btn btn-light btn-sm border" id="move-in-date-button" type="button" aria-label="Open calendar" customlabelreplaced=""><span aria-hidden="true" class="fa fa-calendar text-muted" customlabelreplaced=""></span></button> | |
| 1017 | + </div> | |
| 1018 | + <input type="hidden" name="showAvailability" id="showAvailability" value="0"> | |
| 1019 | + </div> | |
| 1020 | + <!-- Apartment number --> | |
| 1021 | + <input name="__RequestVerificationToken" type="hidden" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ1jRqjbwyWWAEfQ33tCI22seWvkcrQFek3ED1rbg3gMdEtJ-k7nubaSjXKiZWqAGT3MyCCWxLOL2fViVt5kBGgaCNjNyiVn1GfbuPFjT1085IayHkNJt6LfHaOdIPNGrmI"></form> | |
| 1022 | + </div> | |
| 1023 | + <!-- END: filters --> | |
| 1024 | + | |
| 1025 | + | |
| 1026 | + <div id="floorplans-container" class="row align-items-stretch" role="alert" aria-live="assertive" customlabelreplaced=""> | |
| 1027 | + | |
| 1028 | + | |
| 1029 | +<!-- Hidden input for layout type (false = optimized) --> | |
| 1030 | +<input type="hidden" id="UseUpdatedFloorPlanLayout" name="UseUpdatedFloorPlanLayout" value="false"> | |
| 1031 | + | |
| 1032 | + | |
| 1033 | + | |
| 1034 | + <div id="fp-container-6150465" class=" col-sm-6 col-lg-4 fp-container pb-4 mb-2 col-12 " translate-content="" customlabelreplaced=""> | |
| 1035 | + <div class="" customlabelreplaced=""> | |
| 1036 | + <div class="card text-center h-100 " customlabelreplaced=""> | |
| 1037 | + <div class="card-header bg-transparent border-bottom-0 pt-4 pb-0" customlabelreplaced=""> | |
| 1038 | + <h2 id="fp-header-0" class="card-title h4 font-weight-bold text-capitalize" customlabelreplaced=""> | |
| 1039 | + 1 Bedroom | |
| 1040 | + </h2> | |
| 1041 | + | |
| 1042 | + <ul class="list-unstyled list-inline mb-2 text-sm" customlabelreplaced=""> | |
| 1043 | + | |
| 1044 | + | |
| 1045 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1046 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bed text-dark text-md mr-1" customlabelreplaced=""></span>1 <span customlabelreplaced="">Bed</span></div> | |
| 1047 | + </li> | |
| 1048 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1049 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bathroom text-dark text-md mr-1" customlabelreplaced=""></span>1 <span customlabelreplaced="">Bath</span></div> | |
| 1050 | + </li> | |
| 1051 | + <li class="list-inline-item w-100" customlabelreplaced=""> | |
| 1052 | + <div class="d-flex align-items-center justify-content-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-area font-weight-medium text-dark text-md mr-1" customlabelreplaced=""></span>506-<span class="sr-only" customlabelreplaced="">to</span>735 Sq. Ft.</div> | |
| 1053 | + </li> | |
| 1054 | + </ul> | |
| 1055 | + | |
| 1056 | + | |
| 1057 | + | |
| 1058 | + </div> | |
| 1059 | + <div class="card-img fp-thumb px-3 d-flex justify-content-center align-items-center" customlabelreplaced=""> | |
| 1060 | + <a class="modal-button mw-100 mh-100 show-floorplans-image-button btn btn-link p-0" aria-label="1 Bedroom Floor plan image, opens a dialog" href="javascript:void(0)" aria-controls="fp-modal" data-screen="modal-content-6150465" data-image-modal="modal-body-6150465" data-toggle="modal" data-imagemodal-label="fp-modalLabel6150465" data-target="#fp-modal" onclick="(function(){document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6150465')})();" customlabelreplaced=""> | |
| 1061 | + <div class="ysi-picture-widget ysi-picture-wrapper " customlabelreplaced=""> | |
| 1062 | + <picture> | |
| 1063 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/12delhorizon_type_1cc%20%20(1b).png"> | |
| 1064 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540,h_260/s3/2/252329/12delhorizon_type_1cc%20%20(1b).png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/12delhorizon_type_1cc%20%20(1b).png" class="card-img-top px-1 img-fluid" alt="1 bed 1 bathat Horizon Apartments, Quebec, J9A 0G9" title="1 bed 1 bath" width="491" height="260"> | |
| 1065 | +</picture> | |
| 1066 | + | |
| 1067 | + | |
| 1068 | + | |
| 1069 | + </div> | |
| 1070 | + | |
| 1071 | + | |
| 1072 | + </a> | |
| 1073 | + </div> | |
| 1074 | + <div class="card-body" customlabelreplaced=""> | |
| 1075 | + <div class="p-2 fieldset bg-light border rounded d-flex flex-column align-items-center justify-content-center mb-2" customlabelreplaced=""> | |
| 1076 | +<p class="legend" customlabelreplaced=""></p> | |
| 1077 | + | |
| 1078 | + | |
| 1079 | + <div class="d-flex align-items-center" customlabelreplaced=""> | |
| 1080 | + <span class="font-weight-bold mb-1 text-md" customlabelreplaced=""> | |
| 1081 | + <span class="text-sm text-muted" customlabelreplaced="">Starting at</span> | |
| 1082 | + $1,480.00 | |
| 1083 | + <span class="text-sm text-muted" customlabelreplaced="">/Month</span> | |
| 1084 | + </span> | |
| 1085 | + | |
| 1086 | + </div> | |
| 1087 | + | |
| 1088 | + | |
| 1089 | + | |
| 1090 | + | |
| 1091 | + | |
| 1092 | + </div> | |
| 1093 | + | |
| 1094 | + <div class="row" customlabelreplaced=""> | |
| 1095 | + <div class="btn btn-outline-dark btn-block modal-button w-100" style="visibility:hidden;" customlabelreplaced=""> | |
| 1096 | + <wbr> </div> | |
| 1097 | + <div class="col-12 my-2 " customlabelreplaced=""> | |
| 1098 | + <a href="#myContactModal" role="button" class="btn btn-primary btn-block btn-block track-dialog dialog-button floorplan-action-button" data-floorplan-name="1 Bedroom" data-modal-url="/horizon-condo/contactus?IsDialog=1" data-selenium-id="floorplan-0-contact-btn" onclick="setGA4Cookie('GT', '1 Bedroom', '1', '506', '735', '1480', '1480');" customlabelreplaced=""> | |
| 1099 | + Contact Us <span class="sr-only" customlabelreplaced=""> for 1 Bedroom , opens a dialog</span> | |
| 1100 | + </a> | |
| 1101 | + </div> | |
| 1102 | + | |
| 1103 | + <div class="col-12" customlabelreplaced=""> | |
| 1104 | + <div class="btn-group dropup w-100" customlabelreplaced=""> | |
| 1105 | + <a id="guided-tour-btn-0" href="javascript:void(0);" class="btn btn-outline-dark btn-block floorplan-action-button" onclick="setGA4Cookie('GT', '1 Bedroom', '1', '506', '735', '1480', '1480'); ysi.floorplanOptimized.tourPageRedirect('/horizon-condo/scheduletour?tourType=GT&floorplan=1 Bedroom&beds=1')" data-floorplan-name="1 Bedroom" customlabelreplaced=""> | |
| 1106 | + Guided Tour <span class="sr-only" customlabelreplaced=""> for 1 Bedroom</span> | |
| 1107 | + </a> | |
| 1108 | + </div> | |
| 1109 | + </div> | |
| 1110 | + </div> | |
| 1111 | + | |
| 1112 | + </div> | |
| 1113 | + | |
| 1114 | + </div> | |
| 1115 | + </div> | |
| 1116 | + </div> | |
| 1117 | + <div id="fp-container-6156796" class=" col-sm-6 col-lg-4 fp-container pb-4 mb-2 col-12 " translate-content="" customlabelreplaced=""> | |
| 1118 | + <div class="" customlabelreplaced=""> | |
| 1119 | + <div class="card text-center h-100 " customlabelreplaced=""> | |
| 1120 | + <div class="card-header bg-transparent border-bottom-0 pt-4 pb-0" customlabelreplaced=""> | |
| 1121 | + <h2 id="fp-header-1" class="card-title h4 font-weight-bold text-capitalize" customlabelreplaced=""> | |
| 1122 | + 2 Bedrooms* | |
| 1123 | + </h2> | |
| 1124 | + | |
| 1125 | + <ul class="list-unstyled list-inline mb-2 text-sm" customlabelreplaced=""> | |
| 1126 | + | |
| 1127 | + | |
| 1128 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1129 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bed text-dark text-md mr-1" customlabelreplaced=""></span>2 <span customlabelreplaced="">Bed</span></div> | |
| 1130 | + </li> | |
| 1131 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1132 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bathroom text-dark text-md mr-1" customlabelreplaced=""></span>1 <span customlabelreplaced="">Bath</span></div> | |
| 1133 | + </li> | |
| 1134 | + <li class="list-inline-item w-100" customlabelreplaced=""> | |
| 1135 | + <div class="d-flex align-items-center justify-content-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-area font-weight-medium text-dark text-md mr-1" customlabelreplaced=""></span>603-<span class="sr-only" customlabelreplaced="">to</span>840 Sq. Ft.</div> | |
| 1136 | + </li> | |
| 1137 | + </ul> | |
| 1138 | + | |
| 1139 | + | |
| 1140 | + | |
| 1141 | + </div> | |
| 1142 | + <div class="card-img fp-thumb px-3 d-flex justify-content-center align-items-center" customlabelreplaced=""> | |
| 1143 | + <a class="modal-button mw-100 mh-100 show-floorplans-image-button btn btn-link p-0" aria-label="2 Bedrooms* Floor plan image, opens a dialog" href="javascript:void(0)" aria-controls="fp-modal" data-screen="modal-content-6156796" data-image-modal="modal-body-6156796" data-toggle="modal" data-imagemodal-label="fp-modalLabel6156796" data-target="#fp-modal" onclick="(function(){document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6156796')})();" customlabelreplaced=""> | |
| 1144 | + <div class="ysi-picture-widget ysi-picture-wrapper " customlabelreplaced=""> | |
| 1145 | + <picture> | |
| 1146 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/2delhorizon_type_2cc.png"> | |
| 1147 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540,h_260/s3/2/252329/2delhorizon_type_2cc.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/2delhorizon_type_2cc.png" class="card-img-top px-1 img-fluid" alt="A floor plan of a house with a living room, dining room, kitchen, and bathrooms." width="495" height="260"> | |
| 1148 | +</picture> | |
| 1149 | + | |
| 1150 | + | |
| 1151 | + | |
| 1152 | + </div> | |
| 1153 | + | |
| 1154 | + | |
| 1155 | + </a> | |
| 1156 | + </div> | |
| 1157 | + <div class="card-body" customlabelreplaced=""> | |
| 1158 | + <div class="p-2 fieldset bg-light border rounded d-flex flex-column align-items-center justify-content-center mb-2" customlabelreplaced=""> | |
| 1159 | +<p class="legend" customlabelreplaced=""></p> | |
| 1160 | + | |
| 1161 | + | |
| 1162 | + <div class="d-flex align-items-center" customlabelreplaced=""> | |
| 1163 | + <span class="font-weight-bold mb-1 text-md" customlabelreplaced=""> | |
| 1164 | + <span class="text-sm text-muted" customlabelreplaced="">Starting at</span> | |
| 1165 | + $1,540.00 | |
| 1166 | + <span class="text-sm text-muted" customlabelreplaced="">/Month</span> | |
| 1167 | + </span> | |
| 1168 | + | |
| 1169 | + </div> | |
| 1170 | + | |
| 1171 | + | |
| 1172 | + | |
| 1173 | + | |
| 1174 | + | |
| 1175 | + </div> | |
| 1176 | + | |
| 1177 | + <div class="row" customlabelreplaced=""> | |
| 1178 | + <div class="btn btn-outline-dark btn-block modal-button w-100" style="visibility:hidden;" customlabelreplaced=""> | |
| 1179 | + <wbr> </div> | |
| 1180 | + <div class="col-12 my-2 " customlabelreplaced=""> | |
| 1181 | + <a href="#myContactModal" role="button" class="btn btn-primary btn-block btn-block track-dialog dialog-button floorplan-action-button" data-floorplan-name="2 Bedrooms*" data-modal-url="/horizon-condo/contactus?IsDialog=1" data-selenium-id="floorplan-1-contact-btn" onclick="setGA4Cookie('GT', '2 Bedrooms*', '2', '603', '840', '1540', '1540');" customlabelreplaced=""> | |
| 1182 | + Contact Us <span class="sr-only" customlabelreplaced=""> for 2 Bedrooms* , opens a dialog</span> | |
| 1183 | + </a> | |
| 1184 | + </div> | |
| 1185 | + | |
| 1186 | + <div class="col-12" customlabelreplaced=""> | |
| 1187 | + <div class="btn-group dropup w-100" customlabelreplaced=""> | |
| 1188 | + <a id="guided-tour-btn-1" href="javascript:void(0);" class="btn btn-outline-dark btn-block floorplan-action-button" onclick="setGA4Cookie('GT', '2 Bedrooms*', '2', '603', '840', '1540', '1540'); ysi.floorplanOptimized.tourPageRedirect('/horizon-condo/scheduletour?tourType=GT&floorplan=2 Bedrooms*&beds=2')" data-floorplan-name="2 Bedrooms*" customlabelreplaced=""> | |
| 1189 | + Guided Tour <span class="sr-only" customlabelreplaced=""> for 2 Bedrooms*</span> | |
| 1190 | + </a> | |
| 1191 | + </div> | |
| 1192 | + </div> | |
| 1193 | + </div> | |
| 1194 | + | |
| 1195 | + </div> | |
| 1196 | + | |
| 1197 | + </div> | |
| 1198 | + </div> | |
| 1199 | + </div> | |
| 1200 | + <div id="fp-container-6737878" class=" col-sm-6 col-lg-4 fp-container pb-4 mb-2 col-12 " translate-content="" customlabelreplaced=""> | |
| 1201 | + <div class="" customlabelreplaced=""> | |
| 1202 | + <div class="card text-center h-100 " customlabelreplaced=""> | |
| 1203 | + <div class="card-header bg-transparent border-bottom-0 pt-4 pb-0" customlabelreplaced=""> | |
| 1204 | + <h2 id="fp-header-2" class="card-title h4 font-weight-bold text-capitalize" customlabelreplaced=""> | |
| 1205 | + 2 Bedrooms | |
| 1206 | + </h2> | |
| 1207 | + | |
| 1208 | + <ul class="list-unstyled list-inline mb-2 text-sm" customlabelreplaced=""> | |
| 1209 | + | |
| 1210 | + | |
| 1211 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1212 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bed text-dark text-md mr-1" customlabelreplaced=""></span>2 <span customlabelreplaced="">Bed</span></div> | |
| 1213 | + </li> | |
| 1214 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1215 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bathroom text-dark text-md mr-1" customlabelreplaced=""></span>1 <span customlabelreplaced="">Bath</span></div> | |
| 1216 | + </li> | |
| 1217 | + <li class="list-inline-item w-100" customlabelreplaced=""> | |
| 1218 | + <div class="d-flex align-items-center justify-content-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-area font-weight-medium text-dark text-md mr-1" customlabelreplaced=""></span>735 Sq. Ft.</div> | |
| 1219 | + </li> | |
| 1220 | + </ul> | |
| 1221 | + | |
| 1222 | + | |
| 1223 | + | |
| 1224 | + </div> | |
| 1225 | + <div class="card-img fp-thumb px-3 d-flex justify-content-center align-items-center" customlabelreplaced=""> | |
| 1226 | + <a class="modal-button mw-100 mh-100 show-floorplans-image-button btn btn-link p-0" aria-label="2 Bedrooms Floor plan image, opens a dialog" href="javascript:void(0)" aria-controls="fp-modal" data-screen="modal-content-6737878" data-image-modal="modal-body-6737878" data-toggle="modal" data-imagemodal-label="fp-modalLabel6737878" data-target="#fp-modal" onclick="(function(){document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6737878')})();" customlabelreplaced=""> | |
| 1227 | + <div class="ysi-picture-widget ysi-picture-wrapper " customlabelreplaced=""> | |
| 1228 | + <picture> | |
| 1229 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/model_2-2.jpg"> | |
| 1230 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540,h_260/s3/2/252329/model_2-2.jpg"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/model_2-2.jpg" class="card-img-top px-1 img-fluid" alt="A floor plan of a two-bedroom apartment with a living room, kitchen, and bathroom." width="260" height="260"> | |
| 1231 | +</picture> | |
| 1232 | + | |
| 1233 | + | |
| 1234 | + | |
| 1235 | + </div> | |
| 1236 | + | |
| 1237 | + | |
| 1238 | + </a> | |
| 1239 | + </div> | |
| 1240 | + <div class="card-body" customlabelreplaced=""> | |
| 1241 | + <div class="p-2 fieldset bg-light border rounded d-flex flex-column align-items-center justify-content-center mb-2" customlabelreplaced=""> | |
| 1242 | +<p class="legend" customlabelreplaced=""></p> | |
| 1243 | + | |
| 1244 | + | |
| 1245 | + <div class="d-flex align-items-center" customlabelreplaced=""> | |
| 1246 | + <span class="font-weight-bold mb-1 text-md" customlabelreplaced=""> | |
| 1247 | + <span class="text-sm text-muted" customlabelreplaced="">Starting at</span> | |
| 1248 | + $1,720.00 | |
| 1249 | + <span class="text-sm text-muted" customlabelreplaced="">/Month</span> | |
| 1250 | + </span> | |
| 1251 | + | |
| 1252 | + </div> | |
| 1253 | + | |
| 1254 | + | |
| 1255 | + | |
| 1256 | + | |
| 1257 | + | |
| 1258 | + </div> | |
| 1259 | + | |
| 1260 | + <div class="row" customlabelreplaced=""> | |
| 1261 | + <div class="btn btn-outline-dark btn-block modal-button w-100" style="visibility:hidden;" customlabelreplaced=""> | |
| 1262 | + <wbr> </div> | |
| 1263 | + <div class="col-12 my-2 " customlabelreplaced=""> | |
| 1264 | + <a href="#myContactModal" role="button" class="btn btn-primary btn-block btn-block track-dialog dialog-button floorplan-action-button" data-floorplan-name="2 Bedrooms" data-modal-url="/horizon-condo/contactus?IsDialog=1" data-selenium-id="floorplan-2-contact-btn" onclick="setGA4Cookie('GT', '2 Bedrooms', '2', '735', '735', '1720', '1720');" customlabelreplaced=""> | |
| 1265 | + Contact Us <span class="sr-only" customlabelreplaced=""> for 2 Bedrooms , opens a dialog</span> | |
| 1266 | + </a> | |
| 1267 | + </div> | |
| 1268 | + | |
| 1269 | + <div class="col-12" customlabelreplaced=""> | |
| 1270 | + <div class="btn-group dropup w-100" customlabelreplaced=""> | |
| 1271 | + <a id="guided-tour-btn-2" href="javascript:void(0);" class="btn btn-outline-dark btn-block floorplan-action-button" onclick="setGA4Cookie('GT', '2 Bedrooms', '2', '735', '735', '1720', '1720'); ysi.floorplanOptimized.tourPageRedirect('/horizon-condo/scheduletour?tourType=GT&floorplan=2 Bedrooms&beds=2')" data-floorplan-name="2 Bedrooms" customlabelreplaced=""> | |
| 1272 | + Guided Tour <span class="sr-only" customlabelreplaced=""> for 2 Bedrooms</span> | |
| 1273 | + </a> | |
| 1274 | + </div> | |
| 1275 | + </div> | |
| 1276 | + </div> | |
| 1277 | + | |
| 1278 | + </div> | |
| 1279 | + | |
| 1280 | + </div> | |
| 1281 | + </div> | |
| 1282 | + </div> | |
| 1283 | + <div id="fp-container-6249267" class=" col-sm-6 col-lg-4 fp-container pb-4 mb-2 col-12 " translate-content="" customlabelreplaced=""> | |
| 1284 | + <div class="" customlabelreplaced=""> | |
| 1285 | + <div class="card text-center h-100 " customlabelreplaced=""> | |
| 1286 | + <div class="card-header bg-transparent border-bottom-0 pt-4 pb-0" customlabelreplaced=""> | |
| 1287 | + <h2 id="fp-header-3" class="card-title h4 font-weight-bold text-capitalize" customlabelreplaced=""> | |
| 1288 | + Penthouse | |
| 1289 | + </h2> | |
| 1290 | + | |
| 1291 | + <ul class="list-unstyled list-inline mb-2 text-sm" customlabelreplaced=""> | |
| 1292 | + | |
| 1293 | + | |
| 1294 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1295 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bed text-dark text-md mr-1" customlabelreplaced=""></span>1 <span customlabelreplaced="">Bed</span></div> | |
| 1296 | + </li> | |
| 1297 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1298 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bathroom text-dark text-md mr-1" customlabelreplaced=""></span>1 <span customlabelreplaced="">Bath</span></div> | |
| 1299 | + </li> | |
| 1300 | + <li class="list-inline-item w-100" customlabelreplaced=""> | |
| 1301 | + <div class="d-flex align-items-center justify-content-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-area font-weight-medium text-dark text-md mr-1" customlabelreplaced=""></span>593-<span class="sr-only" customlabelreplaced="">to</span>735 Sq. Ft.</div> | |
| 1302 | + </li> | |
| 1303 | + </ul> | |
| 1304 | + | |
| 1305 | + | |
| 1306 | + | |
| 1307 | + </div> | |
| 1308 | + <div class="card-img fp-thumb px-3 d-flex justify-content-center align-items-center" customlabelreplaced=""> | |
| 1309 | + <a class="modal-button mw-100 mh-100 show-floorplans-image-button btn btn-link p-0" aria-label="Penthouse Floor plan image, opens a dialog" href="javascript:void(0)" aria-controls="fp-modal" data-screen="modal-content-6249267" data-image-modal="modal-body-6249267" data-toggle="modal" data-imagemodal-label="fp-modalLabel6249267" data-target="#fp-modal" onclick="(function(){document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6249267')})();" customlabelreplaced=""> | |
| 1310 | + <div class="ysi-picture-widget ysi-picture-wrapper " customlabelreplaced=""> | |
| 1311 | + <picture> | |
| 1312 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/12delhorizon_type_ph_1cc_1sdb.png"> | |
| 1313 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540,h_260/s3/2/252329/12delhorizon_type_ph_1cc_1sdb.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/12delhorizon_type_ph_1cc_1sdb.png" class="card-img-top px-1 img-fluid" alt="1 bedroom 1 bathroom floorplan with balcony at Horizon Apartments, Gatineau, Quebec" title="1 bedroom 1 bathroom floorplan with balcony" width="527" height="260" loading="lazy"> | |
| 1314 | +</picture> | |
| 1315 | + | |
| 1316 | + | |
| 1317 | + | |
| 1318 | + </div> | |
| 1319 | + | |
| 1320 | + | |
| 1321 | + </a> | |
| 1322 | + </div> | |
| 1323 | + <div class="card-body" customlabelreplaced=""> | |
| 1324 | + <div class="p-2 fieldset bg-light border rounded d-flex flex-column align-items-center justify-content-center mb-2" customlabelreplaced=""> | |
| 1325 | +<p class="legend" customlabelreplaced=""></p> | |
| 1326 | + | |
| 1327 | + | |
| 1328 | + <div class="d-flex align-items-center" customlabelreplaced=""> | |
| 1329 | + <span class="font-weight-bold mb-1 text-md" customlabelreplaced=""> | |
| 1330 | + <span class="text-sm text-muted" customlabelreplaced=""></span> | |
| 1331 | + Inquire for details | |
| 1332 | + <span class="text-sm text-muted" customlabelreplaced=""></span> | |
| 1333 | + </span> | |
| 1334 | + | |
| 1335 | + </div> | |
| 1336 | + | |
| 1337 | + | |
| 1338 | + | |
| 1339 | + | |
| 1340 | + | |
| 1341 | + </div> | |
| 1342 | + | |
| 1343 | + <div class="row" customlabelreplaced=""> | |
| 1344 | + <div class="btn btn-outline-dark btn-block modal-button w-100" style="visibility:hidden;" customlabelreplaced=""> | |
| 1345 | + <wbr> </div> | |
| 1346 | + <div class="col-12 my-2 " customlabelreplaced=""> | |
| 1347 | + <a href="#myContactModal" role="button" class="btn btn-primary btn-block btn-block track-dialog dialog-button floorplan-action-button" data-floorplan-name="Penthouse" data-modal-url="/horizon-condo/contactus?IsDialog=1" data-selenium-id="floorplan-3-contact-btn" onclick="setGA4Cookie('GT', 'Penthouse', '1', '593', '735', '0', '0');" customlabelreplaced=""> | |
| 1348 | + Contact Us <span class="sr-only" customlabelreplaced=""> for Penthouse , opens a dialog</span> | |
| 1349 | + </a> | |
| 1350 | + </div> | |
| 1351 | + | |
| 1352 | + <div class="col-12" customlabelreplaced=""> | |
| 1353 | + <div class="btn-group dropup w-100" customlabelreplaced=""> | |
| 1354 | + <a id="guided-tour-btn-3" href="javascript:void(0);" class="btn btn-outline-dark btn-block floorplan-action-button" onclick="setGA4Cookie('GT', 'Penthouse', '1', '593', '735', '0', '0'); ysi.floorplanOptimized.tourPageRedirect('/horizon-condo/scheduletour?tourType=GT&floorplan=Penthouse&beds=1')" data-floorplan-name="Penthouse" customlabelreplaced=""> | |
| 1355 | + Guided Tour <span class="sr-only" customlabelreplaced=""> for Penthouse</span> | |
| 1356 | + </a> | |
| 1357 | + </div> | |
| 1358 | + </div> | |
| 1359 | + </div> | |
| 1360 | + | |
| 1361 | + </div> | |
| 1362 | + | |
| 1363 | + </div> | |
| 1364 | + </div> | |
| 1365 | + </div> | |
| 1366 | + <div id="fp-container-6737894" class=" col-sm-6 col-lg-4 fp-container pb-4 mb-2 col-12 " translate-content="" customlabelreplaced=""> | |
| 1367 | + <div class="" customlabelreplaced=""> | |
| 1368 | + <div class="card text-center h-100 " customlabelreplaced=""> | |
| 1369 | + <div class="card-header bg-transparent border-bottom-0 pt-4 pb-0" customlabelreplaced=""> | |
| 1370 | + <h2 id="fp-header-4" class="card-title h4 font-weight-bold text-capitalize" customlabelreplaced=""> | |
| 1371 | + Penthouse 2 Bedrooms* + Loft | |
| 1372 | + </h2> | |
| 1373 | + | |
| 1374 | + <ul class="list-unstyled list-inline mb-2 text-sm" customlabelreplaced=""> | |
| 1375 | + | |
| 1376 | + | |
| 1377 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1378 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bed text-dark text-md mr-1" customlabelreplaced=""></span>2 <span customlabelreplaced="">Bed</span></div> | |
| 1379 | + </li> | |
| 1380 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1381 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bathroom text-dark text-md mr-1" customlabelreplaced=""></span>1 <span customlabelreplaced="">Bath</span></div> | |
| 1382 | + </li> | |
| 1383 | + <li class="list-inline-item w-100" customlabelreplaced=""> | |
| 1384 | + <div class="d-flex align-items-center justify-content-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-area font-weight-medium text-dark text-md mr-1" customlabelreplaced=""></span>1,320 Sq. Ft.</div> | |
| 1385 | + </li> | |
| 1386 | + </ul> | |
| 1387 | + | |
| 1388 | + | |
| 1389 | + | |
| 1390 | + </div> | |
| 1391 | + <div class="card-img fp-thumb px-3 d-flex justify-content-center align-items-center" customlabelreplaced=""> | |
| 1392 | + <a class="modal-button mw-100 mh-100 show-floorplans-image-button btn btn-link p-0" aria-label="Penthouse 2 Bedrooms* + Loft Floor plan image, opens a dialog" href="javascript:void(0)" aria-controls="fp-modal" data-screen="modal-content-6737894" data-image-modal="modal-body-6737894" data-toggle="modal" data-imagemodal-label="fp-modalLabel6737894" data-target="#fp-modal" onclick="(function(){document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6737894')})();" customlabelreplaced=""> | |
| 1393 | + <div class="ysi-picture-widget ysi-picture-wrapper " customlabelreplaced=""> | |
| 1394 | + <picture> | |
| 1395 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/model_1-1l.jpg"> | |
| 1396 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540,h_260/s3/2/252329/model_1-1l.jpg"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/model_1-1l.jpg" class="card-img-top px-1 img-fluid" alt="A floor plan of a two-story apartment with a living room, kitchen, and bedrooms." width="187" height="260" loading="lazy"> | |
| 1397 | +</picture> | |
| 1398 | + | |
| 1399 | + | |
| 1400 | + | |
| 1401 | + </div> | |
| 1402 | + | |
| 1403 | + | |
| 1404 | + </a> | |
| 1405 | + </div> | |
| 1406 | + <div class="card-body" customlabelreplaced=""> | |
| 1407 | + <div class="p-2 fieldset bg-light border rounded d-flex flex-column align-items-center justify-content-center mb-2" customlabelreplaced=""> | |
| 1408 | +<p class="legend" customlabelreplaced=""></p> | |
| 1409 | + | |
| 1410 | + | |
| 1411 | + <div class="d-flex align-items-center" customlabelreplaced=""> | |
| 1412 | + <span class="font-weight-bold mb-1 text-md" customlabelreplaced=""> | |
| 1413 | + <span class="text-sm text-muted" customlabelreplaced="">Starting at</span> | |
| 1414 | + $1,848.00 | |
| 1415 | + <span class="text-sm text-muted" customlabelreplaced="">/Month</span> | |
| 1416 | + </span> | |
| 1417 | + | |
| 1418 | + </div> | |
| 1419 | + | |
| 1420 | + | |
| 1421 | + | |
| 1422 | + | |
| 1423 | + | |
| 1424 | + </div> | |
| 1425 | + | |
| 1426 | + <div class="row" customlabelreplaced=""> | |
| 1427 | + <div class="btn btn-outline-dark btn-block modal-button w-100" style="visibility:hidden;" customlabelreplaced=""> | |
| 1428 | + <wbr> </div> | |
| 1429 | + <div class="col-12 my-2 " customlabelreplaced=""> | |
| 1430 | + <a href="#myContactModal" role="button" class="btn btn-primary btn-block btn-block track-dialog dialog-button floorplan-action-button" data-floorplan-name="Penthouse 2 Bedrooms* + Loft" data-modal-url="/horizon-condo/contactus?IsDialog=1" data-selenium-id="floorplan-4-contact-btn" onclick="setGA4Cookie('GT', 'Penthouse 2 Bedrooms* + Loft', '2', '1320', '1320', '1848', '1848');" customlabelreplaced=""> | |
| 1431 | + Contact Us <span class="sr-only" customlabelreplaced=""> for Penthouse 2 Bedrooms* + Loft , opens a dialog</span> | |
| 1432 | + </a> | |
| 1433 | + </div> | |
| 1434 | + | |
| 1435 | + <div class="col-12" customlabelreplaced=""> | |
| 1436 | + <div class="btn-group dropup w-100" customlabelreplaced=""> | |
| 1437 | + <a id="guided-tour-btn-4" href="javascript:void(0);" class="btn btn-outline-dark btn-block floorplan-action-button" onclick="setGA4Cookie('GT', 'Penthouse 2 Bedrooms* + Loft', '2', '1320', '1320', '1848', '1848'); ysi.floorplanOptimized.tourPageRedirect('/horizon-condo/scheduletour?tourType=GT&floorplan=Penthouse 2 Bedrooms* + Loft&beds=2')" data-floorplan-name="Penthouse 2 Bedrooms* + Loft" customlabelreplaced=""> | |
| 1438 | + Guided Tour <span class="sr-only" customlabelreplaced=""> for Penthouse 2 Bedrooms* + Loft</span> | |
| 1439 | + </a> | |
| 1440 | + </div> | |
| 1441 | + </div> | |
| 1442 | + </div> | |
| 1443 | + | |
| 1444 | + </div> | |
| 1445 | + | |
| 1446 | + </div> | |
| 1447 | + </div> | |
| 1448 | + </div> | |
| 1449 | + <div id="fp-container-6156797" class=" col-sm-6 col-lg-4 fp-container pb-4 mb-2 col-12 " translate-content="" customlabelreplaced=""> | |
| 1450 | + <div class="" customlabelreplaced=""> | |
| 1451 | + <div class="card text-center h-100 " customlabelreplaced=""> | |
| 1452 | + <div class="card-header bg-transparent border-bottom-0 pt-4 pb-0" customlabelreplaced=""> | |
| 1453 | + <h2 id="fp-header-5" class="card-title h4 font-weight-bold text-capitalize" customlabelreplaced=""> | |
| 1454 | + Penthouse 2 Bedrooms + Loft | |
| 1455 | + </h2> | |
| 1456 | + | |
| 1457 | + <ul class="list-unstyled list-inline mb-2 text-sm" customlabelreplaced=""> | |
| 1458 | + | |
| 1459 | + | |
| 1460 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1461 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bed text-dark text-md mr-1" customlabelreplaced=""></span>2 <span customlabelreplaced="">Bed</span></div> | |
| 1462 | + </li> | |
| 1463 | + <li class="list-inline-item mr-2" customlabelreplaced=""> | |
| 1464 | + <div class="d-flex align-items-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-bathroom text-dark text-md mr-1" customlabelreplaced=""></span>1 <span customlabelreplaced="">Bath</span></div> | |
| 1465 | + </li> | |
| 1466 | + <li class="list-inline-item w-100" customlabelreplaced=""> | |
| 1467 | + <div class="d-flex align-items-center justify-content-center" customlabelreplaced=""><span aria-hidden="true" class="nu nu-area font-weight-medium text-dark text-md mr-1" customlabelreplaced=""></span>603-<span class="sr-only" customlabelreplaced="">to</span>1,063 Sq. Ft.</div> | |
| 1468 | + </li> | |
| 1469 | + </ul> | |
| 1470 | + | |
| 1471 | + | |
| 1472 | + | |
| 1473 | + </div> | |
| 1474 | + <div class="card-img fp-thumb px-3 d-flex justify-content-center align-items-center" customlabelreplaced=""> | |
| 1475 | + <a class="modal-button mw-100 mh-100 show-floorplans-image-button btn btn-link p-0" aria-label="Penthouse 2 Bedrooms + Loft Floor plan image, opens a dialog" href="javascript:void(0)" aria-controls="fp-modal" data-screen="modal-content-6156797" data-image-modal="modal-body-6156797" data-toggle="modal" data-imagemodal-label="fp-modalLabel6156797" data-target="#fp-modal" onclick="(function(){document.getElementById('fp-modal').setAttribute('aria-labelledby','fp-modalLabel6156797')})();" customlabelreplaced=""> | |
| 1476 | + <div class="ysi-picture-widget ysi-picture-wrapper " customlabelreplaced=""> | |
| 1477 | + <picture> | |
| 1478 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/1delhorizon_type_ph.png"> | |
| 1479 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540,h_260/s3/2/252329/1delhorizon_type_ph.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576,h_260/s3/2/252329/1delhorizon_type_ph.png" class="card-img-top px-1 img-fluid" alt="3D floor plan with outdoor terrace at Horizon Apartments, Gatineau" title="3D floor plan with outdoor terrace" width="491" height="260" loading="lazy"> | |
| 1480 | +</picture> | |
| 1481 | + | |
| 1482 | + | |
| 1483 | + | |
| 1484 | + </div> | |
| 1485 | + | |
| 1486 | + | |
| 1487 | + </a> | |
| 1488 | + </div> | |
| 1489 | + <div class="card-body" customlabelreplaced=""> | |
| 1490 | + <div class="p-2 fieldset bg-light border rounded d-flex flex-column align-items-center justify-content-center mb-2" customlabelreplaced=""> | |
| 1491 | +<p class="legend" customlabelreplaced=""></p> | |
| 1492 | + | |
| 1493 | + | |
| 1494 | + <div class="d-flex align-items-center" customlabelreplaced=""> | |
| 1495 | + <span class="font-weight-bold mb-1 text-md" customlabelreplaced=""> | |
| 1496 | + <span class="text-sm text-muted" customlabelreplaced="">Starting at</span> | |
| 1497 | + $2,004.00 | |
| 1498 | + <span class="text-sm text-muted" customlabelreplaced="">/Month</span> | |
| 1499 | + </span> | |
| 1500 | + | |
| 1501 | + </div> | |
| 1502 | + | |
| 1503 | + | |
| 1504 | + | |
| 1505 | + | |
| 1506 | + | |
| 1507 | + </div> | |
| 1508 | + | |
| 1509 | + <div class="row" customlabelreplaced=""> | |
| 1510 | + <div class="btn btn-outline-dark btn-block modal-button w-100" style="visibility:hidden;" customlabelreplaced=""> | |
| 1511 | + <wbr> </div> | |
| 1512 | + <div class="col-12 my-2 " customlabelreplaced=""> | |
| 1513 | + <a href="#myContactModal" role="button" class="btn btn-primary btn-block btn-block track-dialog dialog-button floorplan-action-button" data-floorplan-name="Penthouse 2 Bedrooms + Loft" data-modal-url="/horizon-condo/contactus?IsDialog=1" data-selenium-id="floorplan-5-contact-btn" onclick="setGA4Cookie('GT', 'Penthouse 2 Bedrooms + Loft', '2', '603', '1063', '2004', '2004');" customlabelreplaced=""> | |
| 1514 | + Contact Us <span class="sr-only" customlabelreplaced=""> for Penthouse 2 Bedrooms + Loft , opens a dialog</span> | |
| 1515 | + </a> | |
| 1516 | + </div> | |
| 1517 | + | |
| 1518 | + <div class="col-12" customlabelreplaced=""> | |
| 1519 | + <div class="btn-group dropup w-100" customlabelreplaced=""> | |
| 1520 | + <a id="guided-tour-btn-5" href="javascript:void(0);" class="btn btn-outline-dark btn-block floorplan-action-button" onclick="setGA4Cookie('GT', 'Penthouse 2 Bedrooms + Loft', '2', '603', '1063', '2004', '2004'); ysi.floorplanOptimized.tourPageRedirect('/horizon-condo/scheduletour?tourType=GT&floorplan=Penthouse 2 Bedrooms + Loft&beds=2')" data-floorplan-name="Penthouse 2 Bedrooms + Loft" customlabelreplaced=""> | |
| 1521 | + Guided Tour <span class="sr-only" customlabelreplaced=""> for Penthouse 2 Bedrooms + Loft</span> | |
| 1522 | + </a> | |
| 1523 | + </div> | |
| 1524 | + </div> | |
| 1525 | + </div> | |
| 1526 | + | |
| 1527 | + </div> | |
| 1528 | + | |
| 1529 | + </div> | |
| 1530 | + </div> | |
| 1531 | + </div> | |
| 1532 | + <input type="hidden" name="leasingtype" id="leasingtype" value="conventional"> | |
| 1533 | + <!-- Image modal --> | |
| 1534 | + | |
| 1535 | + | |
| 1536 | + | |
| 1537 | + | |
| 1538 | +<div class="modal fade fp-modal" id="fp-modal" role="dialog" aria-labelledby="fp-modalLabel6150465" aria-hidden="true" customlabelreplaced=""> | |
| 1539 | + <div class="modal-dialog modal-fullscreen" role="document" customlabelreplaced=""> | |
| 1540 | + <div id="modal-content-6150465" class="modal-content" customlabelreplaced=""> | |
| 1541 | + <div class="modal-header" customlabelreplaced=""> | |
| 1542 | + <h2 class="h3 m-0" id="fp-modalLabel6150465" customlabelreplaced="">1 Bedroom</h2> | |
| 1543 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" customlabelreplaced=""> | |
| 1544 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 1545 | + </button> | |
| 1546 | + </div> | |
| 1547 | + <div id="modal-body-6150465" class="modal-body px-0 pt-0 pb-2" customlabelreplaced=""> | |
| 1548 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" customlabelreplaced=""> | |
| 1549 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" customlabelreplaced=""> | |
| 1550 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" customlabelreplaced=""> | |
| 1551 | + <li class="list-inline-item" customlabelreplaced="">1 Bed</li> | |
| 1552 | + <li class="list-inline-item" customlabelreplaced="">1 Bath</li> | |
| 1553 | + <li class="list-inline-item" customlabelreplaced="">506-<span class="sr-only" customlabelreplaced="">to</span>735 Sq. Ft.</li> | |
| 1554 | + </ul> | |
| 1555 | + </div> | |
| 1556 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" customlabelreplaced=""> | |
| 1557 | + <div class="d-inline-block position-relative" customlabelreplaced=""> | |
| 1558 | + <span class="text-dark font-weight-medium text-2x" customlabelreplaced="">$1,480.00</span><span customlabelreplaced="">/ month</span> | |
| 1559 | + | |
| 1560 | + </div> | |
| 1561 | + </div> | |
| 1562 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" customlabelreplaced=""> | |
| 1563 | + <span customlabelreplaced="">Available On: </span> <span customlabelreplaced="">31/08/2026</span> | |
| 1564 | + <a href="#myContactModal" aria-label=" Contact Us for 1 Bedroom , opens a dialog" class="btn btn-primary ml-3 track-dialog dialog-button" data-floorplan-name="1 Bedroom" data-modal-url="/horizon-condo/contactus?IsDialog=1" data-selenium-id="floorplan-0-contact-btn" customlabelreplaced=""> | |
| 1565 | + Contact Us | |
| 1566 | + </a> | |
| 1567 | + </div> | |
| 1568 | + </div> | |
| 1569 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6150465-0" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 1570 | + | |
| 1571 | + <div class="carousel-inner" aria-live="assertive" customlabelreplaced=""> | |
| 1572 | + | |
| 1573 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6150465-0-1" tabindex="0" customlabelreplaced=""> | |
| 1574 | + | |
| 1575 | + <div class="item" customlabelreplaced=""> | |
| 1576 | + | |
| 1577 | + <picture> | |
| 1578 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/252329/12delhorizon_type_1cc%20%20(1b).png"> | |
| 1579 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/252329/12delhorizon_type_1cc%20%20(1b).png"> | |
| 1580 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/252329/12delhorizon_type_1cc%20%20(1b).png"> | |
| 1581 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/252329/12delhorizon_type_1cc%20%20(1b).png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/252329/12delhorizon_type_1cc%20%20(1b).png" class="img-fluid" alt="1 bed 1 bathat Horizon Apartments, Quebec, J9A 0G9" title="1 bed 1 bath" loading="lazy"> | |
| 1582 | +</picture> | |
| 1583 | + | |
| 1584 | + | |
| 1585 | + </div> | |
| 1586 | + | |
| 1587 | + | |
| 1588 | + </div> | |
| 1589 | + </div> | |
| 1590 | + | |
| 1591 | + | |
| 1592 | + | |
| 1593 | + </section> | |
| 1594 | + </div> | |
| 1595 | + </div> | |
| 1596 | + <div id="modal-content-6156796" class="modal-content" customlabelreplaced=""> | |
| 1597 | + <div class="modal-header" customlabelreplaced=""> | |
| 1598 | + <h2 class="h3 m-0" id="fp-modalLabel6156796" customlabelreplaced="">2 Bedrooms*</h2> | |
| 1599 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" customlabelreplaced=""> | |
| 1600 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 1601 | + </button> | |
| 1602 | + </div> | |
| 1603 | + <div id="modal-body-6156796" class="modal-body px-0 pt-0 pb-2" customlabelreplaced=""> | |
| 1604 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" customlabelreplaced=""> | |
| 1605 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" customlabelreplaced=""> | |
| 1606 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" customlabelreplaced=""> | |
| 1607 | + <li class="list-inline-item" customlabelreplaced="">2 Beds</li> | |
| 1608 | + <li class="list-inline-item" customlabelreplaced="">1 Bath</li> | |
| 1609 | + <li class="list-inline-item" customlabelreplaced="">603-<span class="sr-only" customlabelreplaced="">to</span>840 Sq. Ft.</li> | |
| 1610 | + </ul> | |
| 1611 | + </div> | |
| 1612 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" customlabelreplaced=""> | |
| 1613 | + <div class="d-inline-block position-relative" customlabelreplaced=""> | |
| 1614 | + <span class="text-dark font-weight-medium text-2x" customlabelreplaced="">$1,540.00</span><span customlabelreplaced="">/ month</span> | |
| 1615 | + | |
| 1616 | + </div> | |
| 1617 | + </div> | |
| 1618 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" customlabelreplaced=""> | |
| 1619 | + <span customlabelreplaced="">Available On: </span> <span customlabelreplaced="">Available Now</span> | |
| 1620 | + <a href="#myContactModal" aria-label=" Contact Us for 2 Bedrooms* , opens a dialog" class="btn btn-primary ml-3 track-dialog dialog-button" data-floorplan-name="2 Bedrooms*" data-modal-url="/horizon-condo/contactus?IsDialog=1" data-selenium-id="floorplan-1-contact-btn" customlabelreplaced=""> | |
| 1621 | + Contact Us | |
| 1622 | + </a> | |
| 1623 | + </div> | |
| 1624 | + </div> | |
| 1625 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6156796-1" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 1626 | + | |
| 1627 | + <div class="carousel-inner" aria-live="assertive" customlabelreplaced=""> | |
| 1628 | + | |
| 1629 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6156796-1-1" tabindex="0" customlabelreplaced=""> | |
| 1630 | + | |
| 1631 | + <div class="item" customlabelreplaced=""> | |
| 1632 | + | |
| 1633 | + <picture> | |
| 1634 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/252329/2delhorizon_type_2cc.png"> | |
| 1635 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/252329/2delhorizon_type_2cc.png"> | |
| 1636 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/252329/2delhorizon_type_2cc.png"> | |
| 1637 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/252329/2delhorizon_type_2cc.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/252329/2delhorizon_type_2cc.png" class="img-fluid" alt="A floor plan of a house with a living room, dining room, kitchen, and bathrooms." loading="lazy"> | |
| 1638 | +</picture> | |
| 1639 | + | |
| 1640 | + | |
| 1641 | + </div> | |
| 1642 | + | |
| 1643 | + | |
| 1644 | + </div> | |
| 1645 | + </div> | |
| 1646 | + | |
| 1647 | + | |
| 1648 | + | |
| 1649 | + </section> | |
| 1650 | + </div> | |
| 1651 | + </div> | |
| 1652 | + <div id="modal-content-6737878" class="modal-content" customlabelreplaced=""> | |
| 1653 | + <div class="modal-header" customlabelreplaced=""> | |
| 1654 | + <h2 class="h3 m-0" id="fp-modalLabel6737878" customlabelreplaced="">2 Bedrooms</h2> | |
| 1655 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" customlabelreplaced=""> | |
| 1656 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 1657 | + </button> | |
| 1658 | + </div> | |
| 1659 | + <div id="modal-body-6737878" class="modal-body px-0 pt-0 pb-2" customlabelreplaced=""> | |
| 1660 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" customlabelreplaced=""> | |
| 1661 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" customlabelreplaced=""> | |
| 1662 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" customlabelreplaced=""> | |
| 1663 | + <li class="list-inline-item" customlabelreplaced="">2 Beds</li> | |
| 1664 | + <li class="list-inline-item" customlabelreplaced="">1 Bath</li> | |
| 1665 | + <li class="list-inline-item" customlabelreplaced="">735 Sq. Ft.</li> | |
| 1666 | + </ul> | |
| 1667 | + </div> | |
| 1668 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" customlabelreplaced=""> | |
| 1669 | + <div class="d-inline-block position-relative" customlabelreplaced=""> | |
| 1670 | + <span class="text-dark font-weight-medium text-2x" customlabelreplaced="">$1,720.00</span><span customlabelreplaced="">/ month</span> | |
| 1671 | + | |
| 1672 | + </div> | |
| 1673 | + </div> | |
| 1674 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" customlabelreplaced=""> | |
| 1675 | + <span customlabelreplaced="">Available On: </span> <span customlabelreplaced="">Available Now</span> | |
| 1676 | + <a href="#myContactModal" aria-label=" Contact Us for 2 Bedrooms , opens a dialog" class="btn btn-primary ml-3 track-dialog dialog-button" data-floorplan-name="2 Bedrooms" data-modal-url="/horizon-condo/contactus?IsDialog=1" data-selenium-id="floorplan-2-contact-btn" customlabelreplaced=""> | |
| 1677 | + Contact Us | |
| 1678 | + </a> | |
| 1679 | + </div> | |
| 1680 | + </div> | |
| 1681 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6737878-2" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 1682 | + | |
| 1683 | + <div class="carousel-inner" aria-live="assertive" customlabelreplaced=""> | |
| 1684 | + | |
| 1685 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6737878-2-1" tabindex="0" customlabelreplaced=""> | |
| 1686 | + | |
| 1687 | + <div class="item" customlabelreplaced=""> | |
| 1688 | + | |
| 1689 | + <picture> | |
| 1690 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/252329/model_2-2.jpg"> | |
| 1691 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/252329/model_2-2.jpg"> | |
| 1692 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/252329/model_2-2.jpg"> | |
| 1693 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/252329/model_2-2.jpg"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/252329/model_2-2.jpg" class="img-fluid" alt="A floor plan of a two-bedroom apartment with a living room, kitchen, and bathroom." loading="lazy"> | |
| 1694 | +</picture> | |
| 1695 | + | |
| 1696 | + | |
| 1697 | + </div> | |
| 1698 | + | |
| 1699 | + | |
| 1700 | + </div> | |
| 1701 | + </div> | |
| 1702 | + | |
| 1703 | + | |
| 1704 | + | |
| 1705 | + </section> | |
| 1706 | + </div> | |
| 1707 | + </div> | |
| 1708 | + <div id="modal-content-6249267" class="modal-content" customlabelreplaced=""> | |
| 1709 | + <div class="modal-header" customlabelreplaced=""> | |
| 1710 | + <h2 class="h3 m-0" id="fp-modalLabel6249267" customlabelreplaced="">Penthouse</h2> | |
| 1711 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" customlabelreplaced=""> | |
| 1712 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 1713 | + </button> | |
| 1714 | + </div> | |
| 1715 | + <div id="modal-body-6249267" class="modal-body px-0 pt-0 pb-2" customlabelreplaced=""> | |
| 1716 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" customlabelreplaced=""> | |
| 1717 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" customlabelreplaced=""> | |
| 1718 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" customlabelreplaced=""> | |
| 1719 | + <li class="list-inline-item" customlabelreplaced="">1 Bed</li> | |
| 1720 | + <li class="list-inline-item" customlabelreplaced="">1 Bath</li> | |
| 1721 | + <li class="list-inline-item" customlabelreplaced="">593-<span class="sr-only" customlabelreplaced="">to</span>735 Sq. Ft.</li> | |
| 1722 | + </ul> | |
| 1723 | + </div> | |
| 1724 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" customlabelreplaced=""> | |
| 1725 | + <div class="d-inline-block position-relative" customlabelreplaced=""> | |
| 1726 | + <span class="text-dark font-weight-medium text-2x" customlabelreplaced=""></span><span customlabelreplaced="">/ month</span> | |
| 1727 | + | |
| 1728 | + </div> | |
| 1729 | + </div> | |
| 1730 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" customlabelreplaced=""> | |
| 1731 | + <span customlabelreplaced="">Available On: </span> <span customlabelreplaced="">30/09/2026</span> | |
| 1732 | + <a href="#myContactModal" aria-label=" Contact Us for Penthouse , opens a dialog" class="btn btn-primary ml-3 track-dialog dialog-button" data-floorplan-name="Penthouse" data-modal-url="/horizon-condo/contactus?IsDialog=1" data-selenium-id="floorplan-3-contact-btn" customlabelreplaced=""> | |
| 1733 | + Contact Us | |
| 1734 | + </a> | |
| 1735 | + </div> | |
| 1736 | + </div> | |
| 1737 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6249267-3" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 1738 | + | |
| 1739 | + <div class="carousel-inner" aria-live="assertive" customlabelreplaced=""> | |
| 1740 | + | |
| 1741 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6249267-3-1" tabindex="0" customlabelreplaced=""> | |
| 1742 | + | |
| 1743 | + <div class="item" customlabelreplaced=""> | |
| 1744 | + | |
| 1745 | + <picture> | |
| 1746 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/252329/12delhorizon_type_ph_1cc_1sdb.png"> | |
| 1747 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/252329/12delhorizon_type_ph_1cc_1sdb.png"> | |
| 1748 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/252329/12delhorizon_type_ph_1cc_1sdb.png"> | |
| 1749 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/252329/12delhorizon_type_ph_1cc_1sdb.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/252329/12delhorizon_type_ph_1cc_1sdb.png" class="img-fluid" alt="1 bedroom 1 bathroom floorplan with balcony at Horizon Apartments, Gatineau, Quebec" title="1 bedroom 1 bathroom floorplan with balcony" loading="lazy"> | |
| 1750 | +</picture> | |
| 1751 | + | |
| 1752 | + | |
| 1753 | + </div> | |
| 1754 | + | |
| 1755 | + | |
| 1756 | + </div> | |
| 1757 | + </div> | |
| 1758 | + | |
| 1759 | + | |
| 1760 | + | |
| 1761 | + </section> | |
| 1762 | + </div> | |
| 1763 | + </div> | |
| 1764 | + <div id="modal-content-6737894" class="modal-content" customlabelreplaced=""> | |
| 1765 | + <div class="modal-header" customlabelreplaced=""> | |
| 1766 | + <h2 class="h3 m-0" id="fp-modalLabel6737894" customlabelreplaced="">Penthouse 2 Bedrooms* + Loft</h2> | |
| 1767 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" customlabelreplaced=""> | |
| 1768 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 1769 | + </button> | |
| 1770 | + </div> | |
| 1771 | + <div id="modal-body-6737894" class="modal-body px-0 pt-0 pb-2" customlabelreplaced=""> | |
| 1772 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" customlabelreplaced=""> | |
| 1773 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" customlabelreplaced=""> | |
| 1774 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" customlabelreplaced=""> | |
| 1775 | + <li class="list-inline-item" customlabelreplaced="">2 Beds</li> | |
| 1776 | + <li class="list-inline-item" customlabelreplaced="">1 Bath</li> | |
| 1777 | + <li class="list-inline-item" customlabelreplaced="">1,320 Sq. Ft.</li> | |
| 1778 | + </ul> | |
| 1779 | + </div> | |
| 1780 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" customlabelreplaced=""> | |
| 1781 | + <div class="d-inline-block position-relative" customlabelreplaced=""> | |
| 1782 | + <span class="text-dark font-weight-medium text-2x" customlabelreplaced="">$1,848.00</span><span customlabelreplaced="">/ month</span> | |
| 1783 | + | |
| 1784 | + </div> | |
| 1785 | + </div> | |
| 1786 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" customlabelreplaced=""> | |
| 1787 | + <span customlabelreplaced="">Available On: </span> <span customlabelreplaced="">Available Now</span> | |
| 1788 | + <a href="#myContactModal" aria-label=" Contact Us for Penthouse 2 Bedrooms* + Loft , opens a dialog" class="btn btn-primary ml-3 track-dialog dialog-button" data-floorplan-name="Penthouse 2 Bedrooms* + Loft" data-modal-url="/horizon-condo/contactus?IsDialog=1" data-selenium-id="floorplan-4-contact-btn" customlabelreplaced=""> | |
| 1789 | + Contact Us | |
| 1790 | + </a> | |
| 1791 | + </div> | |
| 1792 | + </div> | |
| 1793 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6737894-4" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 1794 | + | |
| 1795 | + <div class="carousel-inner" aria-live="assertive" customlabelreplaced=""> | |
| 1796 | + | |
| 1797 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6737894-4-1" tabindex="0" customlabelreplaced=""> | |
| 1798 | + | |
| 1799 | + <div class="item" customlabelreplaced=""> | |
| 1800 | + | |
| 1801 | + <picture> | |
| 1802 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/252329/model_1-1l.jpg"> | |
| 1803 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/252329/model_1-1l.jpg"> | |
| 1804 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/252329/model_1-1l.jpg"> | |
| 1805 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/252329/model_1-1l.jpg"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/252329/model_1-1l.jpg" class="img-fluid" alt="A floor plan of a two-story apartment with a living room, kitchen, and bedrooms." loading="lazy"> | |
| 1806 | +</picture> | |
| 1807 | + | |
| 1808 | + | |
| 1809 | + </div> | |
| 1810 | + | |
| 1811 | + | |
| 1812 | + </div> | |
| 1813 | + </div> | |
| 1814 | + | |
| 1815 | + | |
| 1816 | + | |
| 1817 | + </section> | |
| 1818 | + </div> | |
| 1819 | + </div> | |
| 1820 | + <div id="modal-content-6156797" class="modal-content" customlabelreplaced=""> | |
| 1821 | + <div class="modal-header" customlabelreplaced=""> | |
| 1822 | + <h2 class="h3 m-0" id="fp-modalLabel6156797" customlabelreplaced="">Penthouse 2 Bedrooms + Loft</h2> | |
| 1823 | + <button type="button" class="close" data-dismiss="modal" data-selenium-id="FloorPlanCloseModalDialogButton" aria-label="close dialog" customlabelreplaced=""> | |
| 1824 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 1825 | + </button> | |
| 1826 | + </div> | |
| 1827 | + <div id="modal-body-6156797" class="modal-body px-0 pt-0 pb-2" customlabelreplaced=""> | |
| 1828 | + <div class="fp-details row no-gutters bg-light p-3 d-flex justify-content-between align-item-center mb-3" customlabelreplaced=""> | |
| 1829 | + <div class="col-12 col-md-auto text-center text-md-left mb-2 mb-md-0 d-md-flex align-items-center" customlabelreplaced=""> | |
| 1830 | + <ul class="list-unstyled element-divider list-inline mb-0 text-md" customlabelreplaced=""> | |
| 1831 | + <li class="list-inline-item" customlabelreplaced="">2 Beds</li> | |
| 1832 | + <li class="list-inline-item" customlabelreplaced="">1 Bath</li> | |
| 1833 | + <li class="list-inline-item" customlabelreplaced="">603-<span class="sr-only" customlabelreplaced="">to</span>1,063 Sq. Ft.</li> | |
| 1834 | + </ul> | |
| 1835 | + </div> | |
| 1836 | + <div class="col-12 col-md-auto text-center mb-2 mb-md-0" customlabelreplaced=""> | |
| 1837 | + <div class="d-inline-block position-relative" customlabelreplaced=""> | |
| 1838 | + <span class="text-dark font-weight-medium text-2x" customlabelreplaced="">$2,004.00</span><span customlabelreplaced="">/ month</span> | |
| 1839 | + | |
| 1840 | + </div> | |
| 1841 | + </div> | |
| 1842 | + <div class="col-12 col-md-auto text-center text-md-right mb-2 mb-md-0" customlabelreplaced=""> | |
| 1843 | + <span customlabelreplaced="">Available On: </span> <span customlabelreplaced="">Available Now</span> | |
| 1844 | + <a href="#myContactModal" aria-label=" Contact Us for Penthouse 2 Bedrooms + Loft , opens a dialog" class="btn btn-primary ml-3 track-dialog dialog-button" data-floorplan-name="Penthouse 2 Bedrooms + Loft" data-modal-url="/horizon-condo/contactus?IsDialog=1" data-selenium-id="floorplan-5-contact-btn" customlabelreplaced=""> | |
| 1845 | + Contact Us | |
| 1846 | + </a> | |
| 1847 | + </div> | |
| 1848 | + </div> | |
| 1849 | + <section aria-label="Floorplan Image carousel" id="FPImagecarousel-6156797-5" class="photogallery carousel slide" data-gallery-type="modal" data-ride="carousel" data-interval="false"> | |
| 1850 | + | |
| 1851 | + <div class="carousel-inner" aria-live="assertive" customlabelreplaced=""> | |
| 1852 | + | |
| 1853 | + <div role="tabpanel" class="carousel-item active" id="FPImagecarousel-6156797-5-1" tabindex="0" customlabelreplaced=""> | |
| 1854 | + | |
| 1855 | + <div class="item" customlabelreplaced=""> | |
| 1856 | + | |
| 1857 | + <picture> | |
| 1858 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_1140/s3/2/252329/1delhorizon_type_ph.png"> | |
| 1859 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_960/s3/2/252329/1delhorizon_type_ph.png"> | |
| 1860 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_720/s3/2/252329/1delhorizon_type_ph.png"> | |
| 1861 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_540/s3/2/252329/1delhorizon_type_ph.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/2/252329/1delhorizon_type_ph.png" class="img-fluid" alt="3D floor plan with outdoor terrace at Horizon Apartments, Gatineau" title="3D floor plan with outdoor terrace" loading="lazy"> | |
| 1862 | +</picture> | |
| 1863 | + | |
| 1864 | + | |
| 1865 | + </div> | |
| 1866 | + | |
| 1867 | + | |
| 1868 | + </div> | |
| 1869 | + </div> | |
| 1870 | + | |
| 1871 | + | |
| 1872 | + | |
| 1873 | + </section> | |
| 1874 | + </div> | |
| 1875 | + </div> | |
| 1876 | + | |
| 1877 | + </div> | |
| 1878 | +</div> | |
| 1879 | + <!-- end modal --> | |
| 1880 | + <script> | |
| 1881 | + function setGA4Cookie(tour, fpname, size, minSqft, maxSqft, minRent, maxRent) { | |
| 1882 | + var obj = new Object(); | |
| 1883 | + obj.tourType = tour; | |
| 1884 | + obj.fpName = fpname; | |
| 1885 | + obj.fpSize = size + ' Bed(s)'; | |
| 1886 | + obj.sqft = (minSqft === maxSqft) ? maxSqft : minSqft + '-' + maxSqft; | |
| 1887 | + obj.price = (minRent === maxRent) ? maxRent : minRent + '-' + maxRent; | |
| 1888 | + ysi.cookie.create('ga4cookie', JSON.stringify(obj)); | |
| 1889 | + } | |
| 1890 | + </script> | |
| 1891 | + | |
| 1892 | + </div> | |
| 1893 | + </div> | |
| 1894 | + <div class="tab-pane fade" id="mapView" customlabelreplaced=""> | |
| 1895 | + Map View | |
| 1896 | + </div> | |
| 1897 | + </div> | |
| 1898 | +</div> | |
| 1899 | +<!-- Optimized Floor Plans Layout End --> | |
| 1900 | + | |
| 1901 | + | |
| 1902 | + | |
| 1903 | + | |
| 1904 | + | |
| 1905 | + | |
| 1906 | + | |
| 1907 | + </div> | |
| 1908 | + </div> | |
| 1909 | + </div> | |
| 1910 | + <div class="row" customlabelreplaced=""> | |
| 1911 | + <div class="col-12 mt-3" data-selenium-id="FloorplansBottomNarrative" customlabelreplaced=""> | |
| 1912 | + | |
| 1913 | + | |
| 1914 | + | |
| 1915 | + | |
| 1916 | + </div> | |
| 1917 | + </div> | |
| 1918 | + <div class="modal fade" id="myContactModal" role="dialog" aria-labelledby="myContactModalTitle" aria-modal="true" aria-hidden="true" customlabelreplaced=""> | |
| 1919 | + <div class="modal-dialog" customlabelreplaced=""> | |
| 1920 | + <div class="modal-content" customlabelreplaced=""> | |
| 1921 | + <div class="modal-header" customlabelreplaced=""> | |
| 1922 | + <h2 id="myContactModalTitle" class="h3 m-0" customlabelreplaced="">Get Notified</h2> | |
| 1923 | + <button type="button" class="close" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""><svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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></button> | |
| 1924 | + </div> | |
| 1925 | + <!-- Modal body --> | |
| 1926 | + <div id="modalbodycontact" class="modal-body" customlabelreplaced=""> | |
| 1927 | + </div> | |
| 1928 | + </div> | |
| 1929 | + </div> | |
| 1930 | + </div> | |
| 1931 | + <div class="modal fade" id="PreQualify" role="dialog" aria-labelledby="PreQualifyLabel" aria-hidden="true" customlabelreplaced=""> | |
| 1932 | + <div class="modal-dialog modal-lg" customlabelreplaced=""> | |
| 1933 | + <div class="modal-content" customlabelreplaced=""> | |
| 1934 | + <div class="modal-header" customlabelreplaced=""> | |
| 1935 | + <h2 class="h3 m-0" id="PreQualifyLabel" customlabelreplaced="">Pre-Qualify Now</h2> | |
| 1936 | + <button type="button" class="close" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""> | |
| 1937 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 1938 | + </button> | |
| 1939 | + </div> | |
| 1940 | + <div id="PrequalBody" class="modal-body" customlabelreplaced=""> | |
| 1941 | + | |
| 1942 | + <div class="modal-dialog modal-lg" role="document" customlabelreplaced=""> | |
| 1943 | + <div class="modal-content" customlabelreplaced=""> | |
| 1944 | + <div class="modal-body" customlabelreplaced=""> | |
| 1945 | + </div> | |
| 1946 | + </div> | |
| 1947 | + </div> | |
| 1948 | + | |
| 1949 | + </div> | |
| 1950 | + </div> | |
| 1951 | + </div> | |
| 1952 | + </div> | |
| 1953 | + <div class="modal fade true-cost-cal " id="myLeaseCostModal" role="dialog" aria-labelledby="leasecostmodalid" aria-hidden="true" customlabelreplaced=""> | |
| 1954 | + <div class="modal-dialog modal-fullscreen" customlabelreplaced=""> | |
| 1955 | + <div class="modal-content modal-calc-content" customlabelreplaced=""> | |
| 1956 | + <div class="modal-header" customlabelreplaced=""> | |
| 1957 | + <h3 class="modal-title font-weight-bold" id="leasecostmodalid" customlabelreplaced=""> | |
| 1958 | + | |
| 1959 | +Lease Cost Calculator Result | |
| 1960 | +</h3> | |
| 1961 | + <button type="button" class="close" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""><svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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></button> | |
| 1962 | + </div> | |
| 1963 | + <!-- Modal body --> | |
| 1964 | + <div id="myLeaseCostModalBody" class="modal-body modal-calc-body pt-0" customlabelreplaced=""> | |
| 1965 | + </div> | |
| 1966 | + </div> | |
| 1967 | + </div> | |
| 1968 | + </div> | |
| 1969 | + <!-- Video modal --> | |
| 1970 | +<div class="modal fade modal-dialog-gallery modal-dialog-gallery-video" id="floorplans-video-modal" role="dialog" aria-modal="true" aria-hidden="true" aria-labelledby="floorplans-video-modal-header" customlabelreplaced=""> | |
| 1971 | + <div class="modal-dialog modal-xl" customlabelreplaced=""> | |
| 1972 | + <div class="modal-content" customlabelreplaced=""> | |
| 1973 | + <div class="modal-header" customlabelreplaced=""> | |
| 1974 | + <h2 class="h3 m-0" id="floorplans-video-modal-header" customlabelreplaced="">Floor Plan Video</h2> | |
| 1975 | + <button type="button" class="close" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""><svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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></button> | |
| 1976 | + </div> | |
| 1977 | + <div id="floorplans-video-modal-body" class="modal-body" customlabelreplaced=""> | |
| 1978 | + <div class="embed-container" customlabelreplaced=""> | |
| 1979 | + <div id="floorplans-video-embed" class="embed-responsive embed-responsive-16by9 embed-body" customlabelreplaced=""> | |
| 1980 | + <!-- embedded video loaded here --> | |
| 1981 | + </div> | |
| 1982 | + </div> | |
| 1983 | + </div> | |
| 1984 | + </div> | |
| 1985 | + </div> | |
| 1986 | +</div> | |
| 1987 | + <!-- 3D Tour modal --> | |
| 1988 | +<div class="modal fade" id="floorplans-3dtour-modal" role="dialog" aria-modal="true" aria-hidden="true" aria-labelledby="floorplans-3dtour-modal-header" customlabelreplaced=""> | |
| 1989 | + <div class="modal-dialog modal-xl" customlabelreplaced=""> | |
| 1990 | + <div class="modal-content" customlabelreplaced=""> | |
| 1991 | + <div class="modal-header" customlabelreplaced=""> | |
| 1992 | + <h2 class="h3 m-0" id="floorplans-3dtour-modal-header" customlabelreplaced="">3D Tour</h2> | |
| 1993 | + <button type="button" class="close" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""><svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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></button> | |
| 1994 | + </div> | |
| 1995 | + <div id="floorplans-3dtour-modal-body" class="modal-body" customlabelreplaced=""> | |
| 1996 | + <div class="embed-container" customlabelreplaced=""> | |
| 1997 | + <div id="floorplans-3dtour-embed" class="embed-responsive embed-body" customlabelreplaced=""> | |
| 1998 | + <!-- embedded 3D tour loaded here --> | |
| 1999 | + </div> | |
| 2000 | + </div> | |
| 2001 | + </div> | |
| 2002 | + </div> | |
| 2003 | + </div> | |
| 2004 | +</div> <!--Inclusive fees modal--> | |
| 2005 | + | |
| 2006 | + | |
| 2007 | + | |
| 2008 | + | |
| 2009 | + | |
| 2010 | + | |
| 2011 | + | |
| 2012 | + <script> | |
| 2013 | + function GASubmitTrack(propertyName, calledFrom) { | |
| 2014 | + //add form type to ga4 cookie | |
| 2015 | + if (true ) { | |
| 2016 | + var ga4Cookie = ysi.cookie.read("ga4cookie"); | |
| 2017 | + if (ga4Cookie) { | |
| 2018 | + var jsonObj = JSON.parse(ga4Cookie); | |
| 2019 | + jsonObj.formType = calledFrom; | |
| 2020 | + ysi.cookie.create('ga4cookie', JSON.stringify(jsonObj)); | |
| 2021 | + | |
| 2022 | + } | |
| 2023 | + } | |
| 2024 | + if (typeof gtag != 'undefined') { | |
| 2025 | + var text = ""; | |
| 2026 | + switch (calledFrom) { | |
| 2027 | + case "availabilityalert": | |
| 2028 | + text = "Off"; | |
| 2029 | + break; | |
| 2030 | + case "scheduletour": | |
| 2031 | + text = "Schedule a Tour"; | |
| 2032 | + break; | |
| 2033 | + default: | |
| 2034 | + text = "Contact Us Submit"; | |
| 2035 | + break; | |
| 2036 | + } | |
| 2037 | + gtag('event', 'Contact Us', { 'event_category': 'Contact Us', 'event_action': text, 'event_label': propertyName }); | |
| 2038 | + gtag('rc.send', 'Contact Us', { 'event_category': 'Contact Us', 'event_action': text, 'event_label': propertyName }); | |
| 2039 | + } | |
| 2040 | + } | |
| 2041 | + | |
| 2042 | + </script> | |
| 2043 | + | |
| 2044 | + </div></div></div></div><div class="pt-4 row" customlabelreplaced=""> | |
| 2045 | + <div class="justify-content-start align-items-stretch flex-column d-flex text-left col-12" customlabelreplaced=""></div> | |
| 2046 | + </div><div class="row" customlabelreplaced=""> | |
| 2047 | + <div class="justify-content-start align-items-stretch flex-column d-flex text-left col-12" customlabelreplaced=""></div> | |
| 2048 | + </div></div> | |
| 2049 | + </div></div></div> | |
| 2050 | + </main> | |
| 2051 | + <!--do not remove--> | |
| 2052 | + | |
| 2053 | + <footer><div class="py-6 px-3 text-white bg-primary ysi-row hover-underline-wrapper link-white-fade-wrapper" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""><div class="justify-content-start align-items-start flex-column d-flex text-left pb-5 pb-lg-0 col-12 col-lg-3 col-xl-3 footer-border" customlabelreplaced=""><div class="mb-4" customlabelreplaced=""> | |
| 2054 | + <div class="h4 font-base text-white font-weight-bold" customlabelreplaced="" lang=""><span customlabelreplaced="">Contact Us</span></div> | |
| 2055 | + </div> | |
| 2056 | + | |
| 2057 | + <a href="https://maps.app.goo.gl/z6r7FVvjHa6gwca66" target="_blank" class="d-flex justify-content-start align-items-center mb-4" customlabelreplaced="" lang=""><font color="#ffffff" customlabelreplaced="">12 Rue de l'Horizon, Gatineau, QC J9A 0H3</font></a> | |
| 2058 | + | |
| 2059 | + | |
| 2060 | + | |
| 2061 | + <style>.mobile-only .click-to-call{display:none}</style> | |
| 2062 | + | |
| 2063 | + <div class="ysi-phone-widget ysi-phone-wrapper " customlabelreplaced=""> | |
| 2064 | + <div class="d-inline-flex" customlabelreplaced=""> | |
| 2065 | + <a data-selenium-id="click_to_call" onclick="fireGaPhone()" href="tel:+1 819-303-3449" aria-label="Call Horizon at +1 819-303-3449" class="ysi-phone-number click-to-call-href text-decoration-none color-inherit ml-0 text-decoration-none text-white" customlabelreplaced=""> | |
| 2066 | + <span aria-hidden="true" class="fa-flip-horizontal " customlabelreplaced=""></span> | |
| 2067 | + <span data-selenium-id="click_to_call_span" class="click-to-call ml-2 text-underline" customlabelreplaced="">+1 819-303-3449</span> | |
| 2068 | + </a> | |
| 2069 | + | |
| 2070 | + </div> | |
| 2071 | + </div> | |
| 2072 | + <script> | |
| 2073 | + function fireGaPhone() { | |
| 2074 | + if (typeof gtag != 'undefined') { | |
| 2075 | + var myPage = location.pathname.replace("/", ""); | |
| 2076 | + if (myPage == "") { myPage = "index"; } | |
| 2077 | + if (true ) { | |
| 2078 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 2079 | + gtag('event', 'phone_call', { 'property_name': propertyName, 'page_name': document.title, 'page_url': window.location.href, 'header_phone_number': '+1 819-303-3449'}); | |
| 2080 | + } | |
| 2081 | + gtag('event', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 2082 | + gtag('rc.send', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 2083 | + } | |
| 2084 | + } | |
| 2085 | + </script> | |
| 2086 | +<div class="mb-5" customlabelreplaced=""> | |
| 2087 | + <a href="mailto:location@brigil.com" class="text-decoration-none font-base text-white" customlabelreplaced="" lang=""> | |
| 2088 | + location@brigil.com | |
| 2089 | + </a> | |
| 2090 | + </div> | |
| 2091 | + | |
| 2092 | + <style>ul.ysi-socialmedia-popover-icons li a,ul.ysi-socialmedia-popover-icons p a,.ysi-socialmedia-widget li a,.ysi-socialmedia-widget p a{margin:1px 0}ul.ysi-socialmedia-icons li a,ul.ysi-socialmedia-icons p a,.ysi-socialmedia-widget li a,.ysi-socialmedia-widget p a{margin:0}ul.ysi-socialmedia-icons,ul.ysi-socialmedia-popover-icons,.ysi-socialmedia-widget{margin-bottom:0}ul.ysi-socialmedia-icons li a,ul.ysi-socialmedia-icons p a,ul.ysi-socialmedia-popover-icons li a,ul.ysi-socialmedia-popover-icons p a,.ysi-socialmedia-widget li a,.ysi-socialmedia-widget p a{width:40px;height:40px;display:inline-block;line-height:2.2;color:#fff;font-size:1.2rem;text-align:center}ul.ysi-socialmedia-icons li a.facebook_icon,ul.ysi-socialmedia-icons p a.facebook_icon,ul.ysi-socialmedia-popover-icons li a.facebook_icon,ul.ysi-socialmedia-popover-icons p a.facebook_icon,.ysi-socialmedia-widget li a.facebook_icon,.ysi-socialmedia-widget p a.facebook_icon{background:#3b5998;-moz-transition:background-color 1s 0.001s,color 1s;-o-transition:background-color 1s 0.001s,color 1s;-webkit-transition:background-color 1s 0.001s,color 1s;transition:background-color 1s 0.001s,color 1s}ul.ysi-socialmedia-icons li a.facebook_icon:hover,ul.ysi-socialmedia-icons p a.facebook_icon:hover,ul.ysi-socialmedia-popover-icons li a.facebook_icon:hover,ul.ysi-socialmedia-popover-icons p a.facebook_icon:hover,.ysi-socialmedia-widget li a.facebook_icon:hover,.ysi-socialmedia-widget p a.facebook_icon:hover{background:#4565ab}ul.ysi-socialmedia-icons li a.twitter_icon,ul.ysi-socialmedia-icons p a.twitter_icon,ul.ysi-socialmedia-popover-icons li a.twitter_icon,ul.ysi-socialmedia-popover-icons p a.twitter_icon,.ysi-socialmedia-widget li a.twitter_icon,.ysi-socialmedia-widget p a.twitter_icon{background:#2CAAE1;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.twitter_icon:hover,ul.ysi-socialmedia-icons p a.twitter_icon:hover,ul.ysi-socialmedia-popover-icons li a.twitter_icon:hover,ul.ysi-socialmedia-popover-icons p a.twitter_icon:hover,.ysi-socialmedia-widget li a.twitter_icon:hover,.ysi-socialmedia-widget p a.twitter_icon:hover{background:#2fb4ed}ul.ysi-socialmedia-icons li a.pinterest_icon,ul.ysi-socialmedia-icons p a.pinterest_icon,ul.ysi-socialmedia-popover-icons li a.pinterest_icon,ul.ysi-socialmedia-popover-icons p a.pinterest_icon,.ysi-socialmedia-widget li a.pinterest_icon,.ysi-socialmedia-widget p a.pinterest_icon{background:#C13238;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.pinterest_icon:hover,ul.ysi-socialmedia-icons p a.pinterest_icon:hover,ul.ysi-socialmedia-popover-icons li a.pinterest_icon:hover,ul.ysi-socialmedia-popover-icons p a.pinterest_icon:hover,.ysi-socialmedia-widget li a.pinterest_icon:hover,.ysi-socialmedia-widget p a.pinterest_icon:hover{background:#cc353a}ul.ysi-socialmedia-icons li a.instagram_icon,ul.ysi-socialmedia-icons p a.instagram_icon,ul.ysi-socialmedia-popover-icons li a.instagram_icon,ul.ysi-socialmedia-popover-icons p a.instagram_icon,.ysi-socialmedia-widget li a.instagram_icon,.ysi-socialmedia-widget p a.instagram_icon{background:#49709b;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.instagram_icon:hover,ul.ysi-socialmedia-icons p a.instagram_icon:hover,ul.ysi-socialmedia-popover-icons li a.instagram_icon:hover,ul.ysi-socialmedia-popover-icons p a.instagram_icon:hover,.ysi-socialmedia-widget li a.instagram_icon:hover,.ysi-socialmedia-widget p a.instagram_icon:hover{background:#608bba}ul.ysi-socialmedia-icons li a.linkedin_icon,ul.ysi-socialmedia-icons p a.linkedin_icon,ul.ysi-socialmedia-popover-icons li a.linkedin_icon,ul.ysi-socialmedia-popover-icons p a.linkedin_icon,.ysi-socialmedia-widget li a.linkedin_icon,.ysi-socialmedia-widget p a.linkedin_icon{background:#005a87;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.linkedin_icon:hover,ul.ysi-socialmedia-icons p a.linkedin_icon:hover,ul.ysi-socialmedia-popover-icons li a.linkedin_icon:hover,ul.ysi-socialmedia-popover-icons p a.linkedin_icon:hover,.ysi-socialmedia-widget li a.linkedin_icon:hover,.ysi-socialmedia-widget p a.linkedin_icon:hover{background:#0472a5}ul.ysi-socialmedia-icons li a.youtube_icon,ul.ysi-socialmedia-icons p a.youtube_icon,ul.ysi-socialmedia-popover-icons li a.youtube_icon,ul.ysi-socialmedia-popover-icons p a.youtube_icon,.ysi-socialmedia-widget li a.youtube_icon,.ysi-socialmedia-widget p a.youtube_icon{background:#c9322b;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.youtube_icon:hover,ul.ysi-socialmedia-icons p a.youtube_icon:hover,ul.ysi-socialmedia-popover-icons li a.youtube_icon:hover,ul.ysi-socialmedia-popover-icons p a.youtube_icon:hover,.ysi-socialmedia-widget li a.youtube_icon:hover,.ysi-socialmedia-widget p a.youtube_icon:hover{background:#dd3830}ul.ysi-socialmedia-icons li a.yelp_icon,ul.ysi-socialmedia-icons p a.yelp_icon,ul.ysi-socialmedia-popover-icons li a.yelp_icon,ul.ysi-socialmedia-popover-icons p a.yelp_icon,.ysi-socialmedia-widget li a.yelp_icon,.ysi-socialmedia-widget p a.yelp_icon{background:#DE3C43;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.yelp_icon:hover,ul.ysi-socialmedia-icons p a.yelp_icon:hover,ul.ysi-socialmedia-popover-icons li a.yelp_icon:hover,ul.ysi-socialmedia-popover-icons p a.yelp_icon:hover,.ysi-socialmedia-widget li a.yelp_icon:hover,.ysi-socialmedia-widget p a.yelp_icon:hover{background:#ea3f45}ul.ysi-socialmedia-icons li a.snapchat_icon,ul.ysi-socialmedia-icons p a.snapchat_icon,ul.ysi-socialmedia-popover-icons li a.snapchat_icon,ul.ysi-socialmedia-popover-icons p a.snapchat_icon,.ysi-socialmedia-widget li a.snapchat_icon,.ysi-socialmedia-widget p a.snapchat_icon{background:#E0E237;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.snapchat_icon:hover,ul.ysi-socialmedia-icons p a.snapchat_icon:hover,ul.ysi-socialmedia-popover-icons li a.snapchat_icon:hover,ul.ysi-socialmedia-popover-icons p a.snapchat_icon:hover,.ysi-socialmedia-widget li a.snapchat_icon:hover,.ysi-socialmedia-widget p a.snapchat_icon:hover{background:#efef39}ul.ysi-socialmedia-icons li a.more-social-icons,ul.ysi-socialmedia-icons p a.more-social-icons,ul.ysi-socialmedia-popover-icons li a.more-social-icons,ul.ysi-socialmedia-popover-icons p a.more-social-icons,.ysi-socialmedia-widget li a.more-social-icons,.ysi-socialmedia-widget p a.more-social-icons{background:#6e6e6e;-moz-transition:background-color 1s 0.5s,color 1s;-o-transition:background-color 1s 0.5s,color 1s;-webkit-transition:background-color 1s 0.5s,color 1s;transition:background-color 1s 0.5s,color 1s}ul.ysi-socialmedia-icons li a.more-social-icons:hover,ul.ysi-socialmedia-icons p a.more-social-icons:hover,ul.ysi-socialmedia-popover-icons li a.more-social-icons:hover,ul.ysi-socialmedia-popover-icons p a.more-social-icons:hover,.ysi-socialmedia-widget li a.more-social-icons:hover,.ysi-socialmedia-widget p a.more-social-icons:hover{background:#888888}.ysi-socialmedia-widget ul{padding-left:0;list-style:none}.ysi-socialmedia-widget p{margin-bottom:0}.ysi-socialmedia-widget.icon-white ul li a,.ysi-socialmedia-widget.icon-white p a{color:#fff;background:none}.ysi-socialmedia-widget.icon-white ul li a:hover,.ysi-socialmedia-widget.icon-white p a:hover{color:#f8f9fa;background:none}.ysi-socialmedia-widget.icon-light ul li a,.ysi-socialmedia-widget.icon-light p a{color:#f8f9fa;background:none}.ysi-socialmedia-widget.icon-light ul li a:hover,.ysi-socialmedia-widget.icon-light p a:hover{color:#fff;background:none}.ysi-socialmedia-widget.icon-dark ul li a,.ysi-socialmedia-widget.icon-dark p a{color:#343a40;background:none}.ysi-socialmedia-widget.icon-dark ul li a:hover,.ysi-socialmedia-widget.icon-dark p a:hover{color:#2D3D4D;background:none}.ysi-socialmedia-widget.icon-primary ul li a,.ysi-socialmedia-widget.icon-primary p a{color:#2D3D4D;background:none}.ysi-socialmedia-widget.icon-primary ul li a:hover,.ysi-socialmedia-widget.icon-primary p a:hover{color:#2D3D4D;background:none}.ysi-socialmedia-widget.icon-secondary ul li a,.ysi-socialmedia-widget.icon-secondary p a{color:#E6E4D7;background:none}.ysi-socialmedia-widget.icon-secondary ul li a:hover,.ysi-socialmedia-widget.icon-secondary p a:hover{color:#E6E4D7;background:none}.ysi-socialmedia-widget.background-light ul li a,.ysi-socialmedia-widget.background-light p a{background-color:#f8f9fa}.ysi-socialmedia-widget.background-light ul li a:hover,.ysi-socialmedia-widget.background-light p a:hover{background-color:#f8f9fa}.ysi-socialmedia-widget.background-dark ul li a,.ysi-socialmedia-widget.background-dark p a{background-color:#000}.ysi-socialmedia-widget.background-dark ul li a:hover,.ysi-socialmedia-widget.background-dark p a:hover{background-color:#000}.ysi-socialmedia-widget.background-primary ul li a,.ysi-socialmedia-widget.background-primary p a{background-color:#2D3D4D}.ysi-socialmedia-widget.background-primary ul li a:hover,.ysi-socialmedia-widget.background-primary p a:hover{background-color:#2D3D4D}.ysi-socialmedia-widget.background-secondary ul li a,.ysi-socialmedia-widget.background-secondary p a{background-color:#E6E4D7}.ysi-socialmedia-widget.background-secondary ul li a:hover,.ysi-socialmedia-widget.background-secondary p a:hover{background-color:#E6E4D7}.ysi-socialmedia-widget.rounded ul li a,.ysi-socialmedia-widget.rounded p a{border-radius:50px}.ysi-socialmedia-widget.square ul li a,.ysi-socialmedia-widget.square p a{border-radius:0px}.ysi-socialmedia-widget.regular ul li a,.ysi-socialmedia-widget.regular p a{font-size:1.2rem;width:45px;height:45px}.ysi-socialmedia-widget.large ul li a,.ysi-socialmedia-widget.large p a{font-size:2.5rem;width:60px;height:60px;line-height:1.5}.ysi-socialmedia-widget.horizontal ul,.ysi-socialmedia-widget.horizontal p{line-height:10px}.ysi-socialmedia-widget.horizontal ul li,.ysi-socialmedia-widget.horizontal p li{display:inline-block}.ysi-socialmedia-widget.vertical ul li,.ysi-socialmedia-widget.vertical p{margin:3px 0}.ysi-socialmedia-widget.outline-light ul li a,.ysi-socialmedia-widget.outline-light p a{border:1px solid #f8f9fa;background:none}.ysi-socialmedia-widget.outline-light ul li a:hover,.ysi-socialmedia-widget.outline-light p a:hover{border:1px solid #fff;background:none}.ysi-socialmedia-widget.outline-dark ul li a,.ysi-socialmedia-widget.outline-dark p a{border:1px solid #343a40;background:none;color:#343a40}.ysi-socialmedia-widget.outline-dark ul li a:hover,.ysi-socialmedia-widget.outline-dark p a:hover{border:1px solid #343a40;background:none;color:#343a40}.ysi-socialmedia-widget.outline-primary ul li a,.ysi-socialmedia-widget.outline-primary p a{border:1px solid #2D3D4D}.ysi-socialmedia-widget.outline-primary ul li a:hover,.ysi-socialmedia-widget.outline-primary p a:hover{border:1px solid #2D3D4D}.ysi-socialmedia-widget.outline-secondary ul li a,.ysi-socialmedia-widget.outline-secondary p a{border:1px solid #E6E4D7}.ysi-socialmedia-widget.outline-secondary ul li a:hover,.ysi-socialmedia-widget.outline-secondary p a:hover{border:1px solid #E6E4D7}.ysi-socialmedia-widget.left,.ysi-socialmedia-widget.right{position:fixed;z-index:5;top:0;padding:0 3px}.ysi-socialmedia-widget.left{left:0}.ysi-socialmedia-widget.right{right:0}.ysi-socialmedia-share.horizontal ul{float:inherit}.ysi-socialmedia-share.horizontal ul li{float:inherit;margin-left:0.25rem}.ysi-socialmedia-share.horizontal ul li a.more-social-icons{height:20px;line-height:1;margin:0;background:#c7c7c7;color:#6e6e6e}.ysi-socialmedia-follow.horizontal{line-height:0}.ysi-socialmedia-follow.horizontal ul.ysi-socialmedia-icons{display:inline-flex}.ysi-socialmedia-follow.horizontal ul.ysi-socialmedia-icons li{margin-right:0.4rem}.ysi-socialmedia-follow.horizontal ul.ysi-socialmedia-icons li a,.ysi-socialmedia-follow.horizontal ul.ysi-socialmedia-popover-icons li a{width:auto;height:auto;line-height:initial}ul.ysi-socialmedia-icons li a.ysi-share,ul.ysi-socialmedia-popover-icons li a.ysi-share,.ysi-socialmedia-share p a.ysi-share{font:11px/18px 'Helvetica Neue', Arial, sans-serif;color:#fff;background:#6e6e6e;height:20px;line-height:18px;padding:1px 8px 1px 6px;border:none;border-radius:3px;outline:0;width:unset;height:unset}ul.ysi-socialmedia-icons li a.ysi-share:hover,ul.ysi-socialmedia-popover-icons li a.ysi-share:hover,.ysi-socialmedia-share p a.ysi-share:hover{text-decoration:none}ul.ysi-socialmedia-icons li a.ysi-share i,ul.ysi-socialmedia-popover-icons li a.ysi-share i,.ysi-socialmedia-share p a.ysi-share i{margin-right:.3em;font-size:1.2em}ul.ysi-socialmedia-icons li a.ysi-share.facebook,ul.ysi-socialmedia-popover-icons li a.ysi-share.facebook,.ysi-socialmedia-share p a.ysi-share.facebook{background:#4267b2}ul.ysi-socialmedia-icons li a.ysi-share.facebook:hover,ul.ysi-socialmedia-popover-icons li a.ysi-share.facebook:hover,.ysi-socialmedia-share p a.ysi-share.facebook:hover{background:#365899}ul.ysi-socialmedia-icons li a.ysi-share.twitter,ul.ysi-socialmedia-popover-icons li a.ysi-share.twitter,.ysi-socialmedia-share p a.ysi-share.twitter{background:#1b95e0}ul.ysi-socialmedia-icons li a.ysi-share.twitter:hover,ul.ysi-socialmedia-popover-icons li a.ysi-share.twitter:hover,.ysi-socialmedia-share p a.ysi-share.twitter:hover{background:#0c7abf}ul.ysi-socialmedia-icons li a.ysi-share.twitter i,ul.ysi-socialmedia-popover-icons li a.ysi-share.twitter i,.ysi-socialmedia-share p a.ysi-share.twitter i{font-size:inherit}ul.ysi-socialmedia-icons li a.ysi-share.pinterest,ul.ysi-socialmedia-popover-icons li a.ysi-share.pinterest,.ysi-socialmedia-share p a.ysi-share.pinterest{background:#C13238}ul.ysi-socialmedia-icons li a.ysi-share.pinterest i,ul.ysi-socialmedia-popover-icons li a.ysi-share.pinterest i,.ysi-socialmedia-share p a.ysi-share.pinterest i{font-size:inherit}ul.ysi-socialmedia-icons li a.ysi-share.linkedin,ul.ysi-socialmedia-popover-icons li a.ysi-share.linkedin,.ysi-socialmedia-share p a.ysi-share.linkedin{background:#005a87}@media (max-width: 991.98px){.d-md-none-down{display:none !important}}</style> | |
| 2093 | + | |
| 2094 | + <div class="ysi-socialmedia-widget ysi-socialmedia-wrapper ysi-socialmedia-link footer-social-media-icons horizontal icon-primary rounded background-light rounded small " customlabelreplaced=""> | |
| 2095 | + <ul class="ysi-socialmedia-icons" data-selenium-id="footersocialmediainner" customlabelreplaced=""> | |
| 2096 | + <li class="social-media-facebook " customlabelreplaced=""> | |
| 2097 | + <a href="https://www.facebook.com/BRIGIL/" target="_blank" aria-label="Facebook, opens in new tab" rel="noopener" data-selenium-id="SM_FaceBookIcon" class="facebook_icon" customlabelreplaced=""> | |
| 2098 | + <span aria-hidden="true" class="nu nu-secondary_facebook_logo fab fa-facebook-f" customlabelreplaced=""></span> | |
| 2099 | + </a> | |
| 2100 | + </li> | |
| 2101 | + <li class="social-media-linkedin " customlabelreplaced=""> | |
| 2102 | + <a href="https://www.linkedin.com/company/brigil" target="_blank" aria-label="LinkedIn, opens in new tab" rel="noopener" data-selenium-id="SM_LinkedInIcon" class="linkedin_icon" customlabelreplaced=""> | |
| 2103 | + <span aria-hidden="true" class="fab fa-linkedin" customlabelreplaced=""></span> | |
| 2104 | + </a> | |
| 2105 | + </li> | |
| 2106 | + <li class="social-media-instagram " customlabelreplaced=""> | |
| 2107 | + <a href="https://instagram.com/brigilhomes" target="_blank" aria-label="Instagram, opens in new tab" rel="noopener" data-selenium-id="SM_InstagramIcon" class="instagram_icon" customlabelreplaced=""> | |
| 2108 | + <span aria-hidden="true" class="fab fa-instagram" customlabelreplaced=""></span> | |
| 2109 | + </a> | |
| 2110 | + </li> | |
| 2111 | + <li class="social-media-youtube " customlabelreplaced=""> | |
| 2112 | + <a href="https://www.youtube.com/@brigil8001" target="_blank" aria-label="Youtube, opens in new tab" rel="noopener" data-selenium-id="SM_YoutubeIcon" class="youtube_icon" customlabelreplaced=""> | |
| 2113 | + <span aria-hidden="true" class="fab fa-youtube" customlabelreplaced=""></span> | |
| 2114 | + </a> | |
| 2115 | + </li> | |
| 2116 | + </ul> | |
| 2117 | + | |
| 2118 | + </div> | |
| 2119 | + <div class="ysi-socialmedia-widget ysi-socialmedia-popover-wrapper d-none" customlabelreplaced=""> | |
| 2120 | + <ul class="ysi-socialmedia-popover-icons list-inline text-center list-inline" customlabelreplaced=""> | |
| 2121 | + </ul> | |
| 2122 | + | |
| 2123 | + </div> | |
| 2124 | + <div class="ysi-picture-widget ysi-picture-wrapper mt-5 mt-lg-0 footer-logo w-50" customlabelreplaced=""> | |
| 2125 | + <a href="/" class="" customlabelreplaced=""><picture> | |
| 2126 | +<source media="(min-width: 2560px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_lfill,w_800,g_auto/s3/themes/brigil_prop1/images/CompanyLogo_Light.png"> | |
| 2127 | +<source media="(min-width: 1920px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_lfill,w_640,g_auto/s3/themes/brigil_prop1/images/CompanyLogo_Light.png"> | |
| 2128 | +<source media="(min-width: 1440px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_lfill,w_480,g_auto/s3/themes/brigil_prop1/images/CompanyLogo_Light.png"> | |
| 2129 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_lfill,w_360,g_auto/s3/themes/brigil_prop1/images/CompanyLogo_Light.png"> | |
| 2130 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_lfill,w_300,g_auto/s3/themes/brigil_prop1/images/CompanyLogo_Light.png"> | |
| 2131 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_992/s3/themes/brigil_prop1/images/CompanyLogo_Light.png"> | |
| 2132 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_768/s3/themes/brigil_prop1/images/CompanyLogo_Light.png"><img src="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_limit,w_576/s3/themes/brigil_prop1/images/CompanyLogo_Light.png" class="mt-4 mt-lg-6 img-fluid" alt="" loading="lazy"> | |
| 2133 | +</picture> | |
| 2134 | +</a> | |
| 2135 | + | |
| 2136 | + | |
| 2137 | + | |
| 2138 | + </div> | |
| 2139 | + | |
| 2140 | +</div><div class="justify-content-start align-items-start flex-column d-flex text-left py-5 py-lg-0 col-12 col-lg-3 footer-border text-decoration-none useful-footer-links" customlabelreplaced=""> | |
| 2141 | + <div class="h4 font-base text-white mb-4 font-weight-bold" customlabelreplaced=""> | |
| 2142 | + <span customlabelreplaced="">Useful Links</span> | |
| 2143 | + </div> | |
| 2144 | + | |
| 2145 | + | |
| 2146 | + <ul class="list-unstyled" customlabelreplaced=""> | |
| 2147 | + <li customlabelreplaced=""><a class="color-inherit" target="_blank" href="https://batisseurcitoyen.brigil.com/" customlabelreplaced="">About Us <span class="sr-only" customlabelreplaced="">opens in new tab</span></a></li> | |
| 2148 | + <li customlabelreplaced=""><a class="color-inherit" target="_blank" href="https://www.brigil.com/specials-and-promotions" customlabelreplaced="">For Rent <span class="sr-only" customlabelreplaced="">opens in new tab</span></a></li> | |
| 2149 | + <li customlabelreplaced=""><a class="color-inherit" target="_blank" href="https://www.brigil.com/specials-and-promotions#forsales" customlabelreplaced="">For Sale <span class="sr-only" customlabelreplaced="">opens in new tab</span></a></li> | |
| 2150 | + <li customlabelreplaced=""><a class="color-inherit" target="_blank" href="https://www.brigil.com/commercial-development" customlabelreplaced="">Commercial <span class="sr-only" customlabelreplaced="">opens in new tab</span></a></li> | |
| 2151 | + <li customlabelreplaced=""><a class="color-inherit" target="_blank" href="https://www.brigil.com/faq" customlabelreplaced="">FAQ <span class="sr-only" customlabelreplaced="">opens in new tab</span></a></li> | |
| 2152 | + <li customlabelreplaced=""><a class="color-inherit" target="_blank" href="https://www.brigil.com/privacy-and-personal-information-protection-policy" customlabelreplaced="">Personal Information Protection Policy <span class="sr-only" customlabelreplaced="">opens in new tab</span></a></li> | |
| 2153 | + <li customlabelreplaced=""><a class="color-inherit" target="_blank" href="https://www.brigil.com/cookie-policy" customlabelreplaced="">Cookie Policy <span class="sr-only" customlabelreplaced="">opens in new tab</span></a></li> | |
| 2154 | + | |
| 2155 | + | |
| 2156 | + </ul> | |
| 2157 | + <div id="additionalmenuid-1594-4977" style="display: none;" customlabelreplaced="">1594</div> | |
| 2158 | +</div><div class="justify-content-start align-items-start flex-column d-flex text-left pt-5 pt-lg-0 col-12 col-lg-6 col-xl-6 communities-footer-links" customlabelreplaced=""> | |
| 2159 | + <div class="h4 font-base text-white mb-4 font-weight-bold" customlabelreplaced=""> | |
| 2160 | + Our Communities | |
| 2161 | + </div> | |
| 2162 | + | |
| 2163 | + | |
| 2164 | + <ul class="list-unstyled" customlabelreplaced=""> | |
| 2165 | + <li customlabelreplaced=""><a class="color-inherit" href="/le-columbia" customlabelreplaced="">Le Columbia </a></li> | |
| 2166 | + <li customlabelreplaced=""><a class="color-inherit" href="/domaine-du-vieux-port/default" customlabelreplaced="">Domaine du Vieux-Port </a></li> | |
| 2167 | + <li customlabelreplaced=""><a class="color-inherit" href="/chateau-golf" customlabelreplaced="">Château Golf </a></li> | |
| 2168 | + <li customlabelreplaced=""><a class="color-inherit" href="/champlain-village-urbain" customlabelreplaced="">Champlain Village Urbain </a></li> | |
| 2169 | + <li customlabelreplaced=""><a class="color-inherit" href="/ruisseaux-lepine-i/default" customlabelreplaced="">Ruisseaux Lépine </a></li> | |
| 2170 | + <li customlabelreplaced=""><a class="color-inherit" href="/ruisseaux-lepine-ii/default" customlabelreplaced="">Ruisseaux Lépine II </a></li> | |
| 2171 | + <li customlabelreplaced=""><a class="color-inherit" href="/horizon-condo" customlabelreplaced="">Horizon </a></li> | |
| 2172 | + <li customlabelreplaced=""><a class="color-inherit" href="/aura-rivermead/default.aspx" customlabelreplaced="">Aura – Rivermead </a></li> | |
| 2173 | + <li customlabelreplaced=""><a class="color-inherit" href="/canevas" customlabelreplaced="">Canevas </a></li> | |
| 2174 | + <li customlabelreplaced=""><a class="color-inherit" href="/plateau-du-parc/default.aspx" customlabelreplaced="">Plateau du Parc </a></li> | |
| 2175 | + <li customlabelreplaced=""><a class="color-inherit" href="/jardins-mcconnell/default.aspx" customlabelreplaced="">Jardins McConnell </a></li> | |
| 2176 | + <li customlabelreplaced=""><a class="color-inherit" href="/the-dale" customlabelreplaced="">The Dale </a></li> | |
| 2177 | + <li customlabelreplaced=""><a class="color-inherit" href="/929-richmond" customlabelreplaced="">929 Richmond </a></li> | |
| 2178 | + <li customlabelreplaced=""><a class="color-inherit" href="/baseline-rd" customlabelreplaced="">Baseline </a></li> | |
| 2179 | + <li customlabelreplaced=""><a class="color-inherit" href="/petries-landing-i" customlabelreplaced="">Petrie’s Landing I </a></li> | |
| 2180 | + <li customlabelreplaced=""><a class="color-inherit" href="/petries-landing-ii" customlabelreplaced="">Petrie’s Landing II </a></li> | |
| 2181 | + <li customlabelreplaced=""><a class="color-inherit" href="/center-park-st/default" customlabelreplaced="">Center Park </a></li> | |
| 2182 | + <li customlabelreplaced=""><a class="color-inherit" href="/460-st-laurent/default" customlabelreplaced="">460 St-Laurent </a></li> | |
| 2183 | + <li customlabelreplaced=""><a class="color-inherit" href="/kanata-lakes-av" customlabelreplaced="">Kanata Lakes </a></li> | |
| 2184 | + | |
| 2185 | + | |
| 2186 | + </ul> | |
| 2187 | + <div id="additionalmenuid-1193-9984" style="display: none;" customlabelreplaced="">1193</div> | |
| 2188 | +</div></div></div></div><div class="px-5 py-4 text-white bg-primary ysi-row hover-underline-wrapper link-white-fade-wrapper" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""> | |
| 2189 | + <div class="justify-content-center align-items-center flex-column d-flex text-center col-12" customlabelreplaced=""> | |
| 2190 | + | |
| 2191 | +<div class="ysi-copyright" customlabelreplaced=""> | |
| 2192 | + <svg role="img" alt="Equal housing opportunity" aria-labelledby="svgeho" focusable="false" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="1em" height=".884em" viewBox="0 0 15.2 10.72"> | |
| 2193 | + <title id="svgeho">Equal housing opportunity</title> | |
| 2194 | + <defs><style> | |
| 2195 | + .cls-1 { | |
| 2196 | + fill-rule: evenodd; | |
| 2197 | + } | |
| 2198 | + </style></defs> | |
| 2199 | + <path class="cls-1" d="M7.54,0,0,3.72V5.46H.84V10.7H14.19V5.46h1V3.72Zm5,9.12H2.48V4.34l5.06-2.6,5,2.6Z"></path> | |
| 2200 | + <polygon class="cls-1" points="9.85 6.02 5.18 6.02 5.18 4.34 9.85 4.34 9.85 6.02 9.85 6.02"></polygon> | |
| 2201 | + <polygon class="cls-1" points="9.85 8.44 5.18 8.44 5.18 6.76 9.85 6.76 9.85 8.44 9.85 8.44"></polygon> | |
| 2202 | + </svg> | |
| 2203 | + <span id="footerText" data-selenium-id="customCopyrightText" customlabelreplaced="">© 2026 by Brigil.</span> | |
| 2204 | + <span customlabelreplaced=""> | <span customlabelreplaced="">Powered by RentCafe </span>(© <span customlabelreplaced="">2026 </span> Yardi Systems, Inc.<span customlabelreplaced=""> All Rights Reserved.</span>)</span> | |
| 2205 | +</div> | |
| 2206 | +</div> | |
| 2207 | + </div></div></div></footer> | |
| 2208 | + | |
| 2209 | + | |
| 2210 | + | |
| 2211 | + | |
| 2212 | + | |
| 2213 | + | |
| 2214 | + <yardi-widget-craigslist></yardi-widget-craigslist> | |
| 2215 | + | |
| 2216 | +<script> | |
| 2217 | +ysi.registerCallback(function () { | |
| 2218 | + if (typeof ClickTrack != "undefined") { | |
| 2219 | + ClickTrack._PageDisplayName = 'SG9tZSNTeXN0ZW0uUmFuZG9t-ER%2btLH5xchE%3d'; | |
| 2220 | + ClickTrack.SiteSection = 'PropertyPortal' ; | |
| 2221 | + ClickTrack._CCDisplayName = ''; | |
| 2222 | + ClickTrack.CCQS = ''; | |
| 2223 | + ClickTrack._ULI = ''; | |
| 2224 | + ClickTrack._Property = 'MTk3NTUxMiNTeXN0ZW0uUmFuZG9t-bHVpjkWuW1o%3d'; | |
| 2225 | + ClickTrack.isPreview = ''; | |
| 2226 | + | |
| 2227 | + | |
| 2228 | + ClickTrack.init(); | |
| 2229 | + } | |
| 2230 | + | |
| 2231 | + ysi.clicktrack && ysi.clicktrack.CheckAndPassCTUserAndVisit('securecafe.com','securecafeapplicant.com','rentcafe.com'); | |
| 2232 | +}); | |
| 2233 | +</script> | |
| 2234 | + | |
| 2235 | + | |
| 2236 | + | |
| 2237 | + | |
| 2238 | + | |
| 2239 | +<input type="hidden" id="dni-request-verification-token" name="dni-request-verification-token" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ1jRqjbwyWWAEfQ33tCI22seWvkcrQFek3ED1rbg3gMdEtJ-k7nubaSjXKiZWqAGT3MyCCWxLOL2fViVt5kBGgaCNjNyiVn1GfbuPFjT1085IayHkNJt6LfHaOdIPNGrmI"> | |
| 2240 | +<script> | |
| 2241 | + | |
| 2242 | + var leadAttrSecureCafe = "securecafe.com"; | |
| 2243 | + var leadAttrReactOle = "securecafeapplicant.com"; | |
| 2244 | + var leadAttrRentCafe = "rentcafe.com"; | |
| 2245 | + | |
| 2246 | + function leadAttrHrefMatchesOleDomains(href) { | |
| 2247 | + if (!href) return false; | |
| 2248 | + var h = href.trim().toLowerCase(); | |
| 2249 | + var d0 = leadAttrSecureCafe.toLowerCase(); | |
| 2250 | + var d1 = leadAttrReactOle.toLowerCase(); | |
| 2251 | + var d2 = leadAttrRentCafe.toLowerCase(); | |
| 2252 | + return (d0.length && h.indexOf(d0) > -1) || (d1.length && h.indexOf(d1) > -1) || (d2.length && h.indexOf(d2) > -1); | |
| 2253 | + } | |
| 2254 | + | |
| 2255 | + function leadAttrHrefIsReactOleHostedUrl(href) { | |
| 2256 | + if (!href) return false; | |
| 2257 | + var h = href.trim().toLowerCase(); | |
| 2258 | + var d1 = leadAttrReactOle.toLowerCase(); | |
| 2259 | + var d2 = leadAttrRentCafe.toLowerCase(); | |
| 2260 | + return (d1.length && h.indexOf(d1) > -1) || (d2.length && h.indexOf(d2) > -1); | |
| 2261 | + } | |
| 2262 | + | |
| 2263 | + ysi.registerCallback(function () { | |
| 2264 | + | |
| 2265 | + if (!ysi.cookie.read('PropLeadSource_' + 1975512)) { | |
| 2266 | + if ('' === 'True') { | |
| 2267 | + ysi.cookie.create("PropLeadSource_" + 1975512, 'rentcafe',30); | |
| 2268 | + } else { | |
| 2269 | + ysi.cookie.create("PropLeadSource_" + 1975512, 'portal', 30); | |
| 2270 | + } | |
| 2271 | + } | |
| 2272 | + | |
| 2273 | + if (typeof RCTPCampaign != "undefined") { | |
| 2274 | + | |
| 2275 | + console.log("Initializing RCTP Campaign"); | |
| 2276 | + | |
| 2277 | + RCTPCampaign.PId = "1975512"; | |
| 2278 | + RCTPCampaign.UrlPattern = "/horizon-condo"; | |
| 2279 | + RCTPCampaign.UseMVCDNI = "1"; | |
| 2280 | + RCTPCampaign.init(); | |
| 2281 | + | |
| 2282 | + RCTPCampaign.DoExecuteAfterCampaignLoad(function () { | |
| 2283 | + if (RCTPCampaign.CampaignDetails.CampaignID != "0" && RCTPCampaign.CampaignDetails.CampaignID != "") { | |
| 2284 | + | |
| 2285 | + console.log("RC Campaign Type - " + RCTPCampaign.CampaignDetails.CampaignType); | |
| 2286 | + console.log("RC Campaign Id - " + RCTPCampaign.CampaignDetails.CampaignID); | |
| 2287 | + if (RCTPCampaign.CampaignDetails.CampaignType == "StandardCampaign") | |
| 2288 | + { | |
| 2289 | + ysi.cookie.create("RCStandardCampaignId_" + 1975512, RCTPCampaign.CampaignDetails.CampaignID); | |
| 2290 | + } | |
| 2291 | + else | |
| 2292 | + { | |
| 2293 | + ysi.cookie.create("RCDynamicCampaignId_" + 1975512, RCTPCampaign.CampaignDetails.CampaignID); | |
| 2294 | + } | |
| 2295 | + document.querySelectorAll('.click-to-call').forEach(function(dots) { | |
| 2296 | + dots.innerHTML = RCTPCampaign.CampaignDetails.Phone; | |
| 2297 | + }); | |
| 2298 | + document.querySelectorAll('.click-to-call-href').forEach(function(dots) { | |
| 2299 | + dots.href = "tel:" + RCTPCampaign.CampaignDetails.Phone; | |
| 2300 | + }); | |
| 2301 | + document.querySelectorAll('.click_to_call_href_nudge').forEach(function(dots) { | |
| 2302 | + dots.href = "tel:" + RCTPCampaign.CampaignDetails.Phone; | |
| 2303 | + }); | |
| 2304 | + document.querySelectorAll('.click-to-call-title').forEach(function(dots) { | |
| 2305 | + dots.title = "Call Us at " + RCTPCampaign.CampaignDetails.Phone; | |
| 2306 | + dots.setAttribute("data-original-title","Call Us at " + RCTPCampaign.CampaignDetails.Phone); | |
| 2307 | + }); | |
| 2308 | + | |
| 2309 | + if ( RCTPCampaign.CampaignDetails.CampaignID != "0" && RCTPCampaign.CampaignDetails.CampaignID != "" ) { | |
| 2310 | + document.querySelectorAll('a:not(.donottrack)').forEach( | |
| 2311 | + function (el) { | |
| 2312 | + var href = el.getAttribute('href'); | |
| 2313 | + if (href) { | |
| 2314 | + if (leadAttrHrefMatchesOleDomains(href)) { | |
| 2315 | + el.href = RCTPCampaign.AppendCrossDomainParamsInURL(href) | |
| 2316 | + } | |
| 2317 | + } | |
| 2318 | + }); | |
| 2319 | + } | |
| 2320 | + | |
| 2321 | + | |
| 2322 | + } | |
| 2323 | + | |
| 2324 | + | |
| 2325 | + }); | |
| 2326 | + | |
| 2327 | + | |
| 2328 | + } | |
| 2329 | + | |
| 2330 | + | |
| 2331 | + if (ysi.cookie.read('PropLeadSource_' + 1975512)) | |
| 2332 | + { | |
| 2333 | + | |
| 2334 | + var propleadsource=ysi.cookie.read('PropLeadSource_' + 1975512) | |
| 2335 | + document.querySelectorAll('a:not(.donottrack)').forEach( | |
| 2336 | + function (el) { | |
| 2337 | + var href = el.getAttribute('href'); | |
| 2338 | + if (href) { | |
| 2339 | + if (leadAttrHrefMatchesOleDomains(href) && !leadAttrHrefIsReactOleHostedUrl(href)) { | |
| 2340 | + if (href.indexOf("PropLeadSource") === -1) | |
| 2341 | + { | |
| 2342 | + if (href.indexOf("?") == -1) { | |
| 2343 | + href = href + "?"; | |
| 2344 | + } else { | |
| 2345 | + href = href + "&"; | |
| 2346 | + } | |
| 2347 | + href = href + 'PropLeadSource_' + 1975512 + "=" + propleadsource; | |
| 2348 | + el.setAttribute('href', href); | |
| 2349 | + } | |
| 2350 | + } | |
| 2351 | + } | |
| 2352 | + }); | |
| 2353 | + } | |
| 2354 | + }); | |
| 2355 | + | |
| 2356 | +</script> | |
| 2357 | + | |
| 2358 | + <script> | |
| 2359 | + // Set visited timestamp, regardless of whether a nudge is on this page | |
| 2360 | + let visited = localStorage.getItem('timestamp'); | |
| 2361 | + if (!visited) { | |
| 2362 | + localStorage.setItem('timestamp', new Date().getTime()); | |
| 2363 | + } | |
| 2364 | + | |
| 2365 | + let innerPage = document.getElementById("innerpage"); | |
| 2366 | + // We check if device uses common breakpoint 767px, has touch capabilities, or supports DocumentTouch interface (supported by some older mobile browsers) | |
| 2367 | + let isMobileorTablet = window.matchMedia('(max-width: 767px)').mactches || ('ontouchstart' in window) || (window.DocumentTouch && document instanceof window.DocumentTouch); | |
| 2368 | + if (innerPage && !isMobileorTablet) { | |
| 2369 | + | |
| 2370 | + console.log('Not mobile or tablet'); | |
| 2371 | + let mainEle = document.querySelector("main"); | |
| 2372 | + let bannerImg = mainEle.previousElementSibling; | |
| 2373 | + | |
| 2374 | + | |
| 2375 | + if (bannerImg.classList.contains("fixed-background") && !bannerImg.classList.contains("ysi-innerpage-banner")) { | |
| 2376 | + console.log("No Banner Image Widget") | |
| 2377 | + bannerImg.classList.add("center-top"); | |
| 2378 | + let nudgeEle = document.getElementById("nudgeTop"); | |
| 2379 | + let menuEle = document.querySelector(".sticky-top"); | |
| 2380 | + | |
| 2381 | + function updateBackgroundPosition() { | |
| 2382 | + /* | |
| 2383 | + *We use the height of the nudge to correct | |
| 2384 | + *the position of the banner image when set to parallax | |
| 2385 | + */ | |
| 2386 | + let menuHeight = menuEle.offsetHeight; | |
| 2387 | + let nudgeHeight = nudgeEle.offsetHeight; | |
| 2388 | + bannerImg.style.backgroundPositionY = (nudgeHeight + menuHeight) + 'px'; | |
| 2389 | + } | |
| 2390 | + | |
| 2391 | + // Update background position | |
| 2392 | + updateBackgroundPosition(); | |
| 2393 | + | |
| 2394 | + // Update if window resized | |
| 2395 | + //window.addEventListener("resize", updateBackgroundPosition); | |
| 2396 | + | |
| 2397 | + // We chech for changes in the nudge widget | |
| 2398 | + let resizeObserver = new ResizeObserver(() => { | |
| 2399 | + updateBackgroundPosition(); | |
| 2400 | + }); | |
| 2401 | + | |
| 2402 | + resizeObserver.observe(nudgeEle); | |
| 2403 | + | |
| 2404 | + // We remove the classes that cause bg image to blow out | |
| 2405 | + bannerImg.classList.remove("cover", "center-center") | |
| 2406 | + }; | |
| 2407 | + | |
| 2408 | + } | |
| 2409 | + </script> | |
| 2410 | + | |
| 2411 | + | |
| 2412 | + | |
| 2413 | + | |
| 2414 | + | |
| 2415 | +<script> | |
| 2416 | + ysi.SiteId = 'NDIxOTc2-8yeVb%2b3Q0Bo%3d'; | |
| 2417 | + ysi.registerCallback(function () { | |
| 2418 | + ysi.SiteId='NDIxOTc2-8yeVb%2b3Q0Bo%3d'; | |
| 2419 | + if (window.location.search ) { | |
| 2420 | + if (window.location.search.includes("touchpoint")) { | |
| 2421 | + if (!ysi.cookie.read('Propleadtouchpoint_' + 1975512)) { | |
| 2422 | + var urlParams = new URLSearchParams(window.location.search); | |
| 2423 | + urlParams.forEach(function (value, key) { | |
| 2424 | + if (key == "touchpoint" && value.length > 0) { | |
| 2425 | + ysi.cookie.create("Propleadtouchpoint_" + 1975512, value, 0.0138889); | |
| 2426 | + } | |
| 2427 | + }); | |
| 2428 | + } | |
| 2429 | + } | |
| 2430 | + if (window.location.search.includes("conversationguid")) { | |
| 2431 | + | |
| 2432 | + var urlParams = new URLSearchParams(window.location.search); | |
| 2433 | + urlParams.forEach(function (value, key) { | |
| 2434 | + if (key == "conversationguid" && value.length > 0 && value.length != "undefined") { | |
| 2435 | + var conversationguidval = value; | |
| 2436 | + ysi.cookie.create("cgid", conversationguidval, 0.0138889); | |
| 2437 | + } | |
| 2438 | + }); | |
| 2439 | + } | |
| 2440 | + | |
| 2441 | + if (window.location.search.includes("ccpid")) { | |
| 2442 | + if (!ysi.cookie.read('ccpid_' + 1975512)) { | |
| 2443 | + var urlParams = new URLSearchParams(window.location.search); | |
| 2444 | + urlParams.forEach(function (value, key) { | |
| 2445 | + if (key == "ccpid" && value.length > 0) { | |
| 2446 | + ysi.cookie.create("ccpid_" + 1975512, value, 0.0138889); | |
| 2447 | + } | |
| 2448 | + }); | |
| 2449 | + } | |
| 2450 | + } | |
| 2451 | + | |
| 2452 | + } | |
| 2453 | + }); | |
| 2454 | + | |
| 2455 | + | |
| 2456 | +</script> | |
| 2457 | + | |
| 2458 | + | |
| 2459 | + | |
| 2460 | + | |
| 2461 | + | |
| 2462 | + | |
| 2463 | + | |
| 2464 | + | |
| 2465 | + | |
| 2466 | + | |
| 2467 | + <link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/widgets/photogallery-default-widget.545862.134322949393644098.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/widgets/photogallery-default-widget.545862.134322949393644098.css"></noscript> | |
| 2468 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/widgets/modal-widget.545862.134322949393644098.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/widgets/modal-widget.545862.134322949393644098.css"></noscript> | |
| 2469 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/ysi.datepicker.545862.134322949393644098.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/ysi.datepicker.545862.134322949393644098.css"></noscript> | |
| 2470 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/widgets/floorplans-optimized-layout-widget.545862.134322949393644098.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/widgets/floorplans-optimized-layout-widget.545862.134322949393644098.css"></noscript> | |
| 2471 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/widgets/floorplans-filter.545862.134322949393644098.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/widgets/floorplans-filter.545862.134322949393644098.css"></noscript> | |
| 2472 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/widgets/floorplans-optimized-image-modal.545862.134322949393644098.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/widgets/floorplans-optimized-image-modal.545862.134322949393644098.css"></noscript> | |
| 2473 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/widgets/prequal-widget.545862.134322949393644098.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/widgets/prequal-widget.545862.134322949393644098.css"></noscript> | |
| 2474 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/widgets/accessibility-options.545862.134322949393644098.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/widgets/accessibility-options.545862.134322949393644098.css"></noscript> | |
| 2475 | + | |
| 2476 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.bsn.134322934430000000.js"></script> | |
| 2477 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.lib.134322934460000000.js"></script> | |
| 2478 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.smartclasses.134322934470000000.js"></script> | |
| 2479 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/siteeditor-preview.134322934220000000.js"></script> | |
| 2480 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/incompatible-browser.134322934150000000.js" nomodule="nomodule"></script> | |
| 2481 | +<script src="https://cdngeneralmvc.rentcafe.com/admin/admin-area.js" defer="defer"></script> | |
| 2482 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.bootstrap.carousel.134322934410000000.js"></script> | |
| 2483 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/focus-scroll-visible.134322934300000000.js"></script> | |
| 2484 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/socialmedia-widget.134322934400000000.js"></script> | |
| 2485 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/floating-label-dropdown.134322934290000000.js"></script> | |
| 2486 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/form-contact-session.134322934300000000.js"></script> | |
| 2487 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.datepicker.134322934440000000.js"></script> | |
| 2488 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.modal.134322934460000000.js"></script> | |
| 2489 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/login-links-dropdown.134322934320000000.js"></script> | |
| 2490 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/menu.134322934340000000.js"></script> | |
| 2491 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/floorplans-widget.134322934300000000.js"></script> | |
| 2492 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/contactus.134322934260000000.js"></script> | |
| 2493 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/contactmodal-widget.134322934250000000.js"></script> | |
| 2494 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/servertranslation.134322934220000000.js"></script> | |
| 2495 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/floorplan-optimized-image-modals.134322934300000000.js"></script> | |
| 2496 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/floorplan-optimized-layout-widget.134322934300000000.js"></script> | |
| 2497 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/recaptcha-widget.134322934370000000.js"></script> | |
| 2498 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/modal-widget.134322934340000000.js"></script> | |
| 2499 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/prequal-widget.134322934360000000.js"></script> | |
| 2500 | +<script src="https://t.rentcafe.com/rctv1.4.min.js"></script> | |
| 2501 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/clicktrack-widget.134322934250000000.js"></script> | |
| 2502 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/leadattributionanddni.134322934320000000.js"></script> | |
| 2503 | +<script>document.addEventListener("click", function (e) { | |
| 2504 | + const trigger = e.target.closest('[class*="scrollto-smartclass-target-"]'); | |
| 2505 | + if (!trigger) return; | |
| 2506 | + | |
| 2507 | + // Find the target class name | |
| 2508 | + const targetClass = Array.from(trigger.classList).find(c => | |
| 2509 | + c.includes("scrollto-smartclass-target-") | |
| 2510 | + ); | |
| 2511 | + if (!targetClass) return; | |
| 2512 | + | |
| 2513 | + const id = targetClass.split("scrollto-smartclass-target-")[1].split("--")[0]; | |
| 2514 | + const target = document.querySelector(".scrollto-smartclass-name-" + id); | |
| 2515 | + | |
| 2516 | + if (!target) return; | |
| 2517 | + | |
| 2518 | + // STOP the original scrollIntoView | |
| 2519 | + e.preventDefault(); | |
| 2520 | + e.stopImmediatePropagation(); | |
| 2521 | + | |
| 2522 | + // Apply custom offset scroll (5vh) | |
| 2523 | + const offset = window.innerHeight * 0.1; | |
| 2524 | + const elementPosition = target.getBoundingClientRect().top + window.pageYOffset; | |
| 2525 | + const offsetPosition = elementPosition - offset; | |
| 2526 | + | |
| 2527 | + window.scrollTo({ | |
| 2528 | + top: offsetPosition, | |
| 2529 | + behavior: "smooth" | |
| 2530 | + }); | |
| 2531 | +}, true); // <-- use capture phase to override original listener</script> | |
| 2532 | + | |
| 2533 | + <script>ysi.serviceworker={register:function(){if("serviceWorker"in navigator){let e=document.getElementById("mainCSS"),r=e?encodeURI(e.getAttribute("href")):"",i=r?r.substr(r.indexOf(".")+1,r.lastIndexOf(".")-r.indexOf(".")-1):"",s=document.querySelectorAll("[data-name=property-logo]")[0],t=s?"PICTURE"===s.tagName?s.getElementsByTagName("img")[0].src:s.src:"",o="/serviceworker.js?version="+i+"&css="+r+"&logo="+(t=t?encodeURI(t):"")+"&serviceworker=1";navigator.serviceWorker.register(o)}}},ysi.serviceworker&&ysi.serviceworker.register();</script> | |
| 2534 | + | |
| 2535 | + | |
| 2536 | + | |
| 2537 | + | |
| 2538 | + | |
| 2539 | + | |
| 2540 | + | |
| 2541 | + | |
| 2542 | + | |
| 2543 | + | |
| 2544 | + | |
| 2545 | + | |
| 2546 | + | |
| 2547 | + | |
| 2548 | + | |
| 2549 | + | |
| 2550 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.localstorage.134322934460000000.js"></script> | |
| 2551 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/adwords_gadid.134322934040000000.js"></script> | |
| 2552 | + | |
| 2553 | + | |
| 2554 | + <!-- | |
| 2555 | + <yardi-add-sass path="widgets/go-to-top" async="true" /> | |
| 2556 | +--> | |
| 2557 | + | |
| 2558 | +<div id="goToTop" role="complementary" aria-labelledby="gototoparialabel" customlabelreplaced=""> | |
| 2559 | + <button data-selenium-id="btngototop" class="btn btn-dark border-0 widget-left" customlabelreplaced=""><svg width="16px" height="26px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z"></path></svg><span class="sr-only" id="gototoparialabel" customlabelreplaced="">Go to top</span></button> | |
| 2560 | +</div> | |
| 2561 | + | |
| 2562 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/go-to-top.134322934300000000.js" defer="defer"></script> | |
| 2563 | + | |
| 2564 | + | |
| 2565 | + <!--Accessibility Modal --> | |
| 2566 | + <div class="modal hide fade" id="acsModal" role="dialog" aria-labelledby="acsModalTitle" aria-modal="true" aria-hidden="true" customlabelreplaced=""> | |
| 2567 | + <div class="modal-dialog modal-dialog-scrollable modal-left" role="document" customlabelreplaced=""> | |
| 2568 | + <div class="modal-content" customlabelreplaced=""> | |
| 2569 | + <div class="modal-header" customlabelreplaced=""> | |
| 2570 | + <span class="modal-title" id="acsModalTitle" role="heading" aria-level="2" customlabelreplaced=""> | |
| 2571 | + Accessibility Options | |
| 2572 | + </span> | |
| 2573 | + <button id="acsClose" type="button" class="close acs-Close" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""> | |
| 2574 | + <svg width="14px" height="22px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 2575 | + </button> | |
| 2576 | + </div> | |
| 2577 | + <div class="modal-body" id="acsOptions" customlabelreplaced=""> | |
| 2578 | + <!--Color Adjustments Container --> | |
| 2579 | + <div class="acs-adjustment-container" id="colorAdjustment" data-ysi-acs-container="colorContainer" customlabelreplaced=""> | |
| 2580 | + <div class="acs-category-title" role="heading" aria-level="3" customlabelreplaced="">Color Adjustment</div> | |
| 2581 | + <div class="acs-adjustments-group" customlabelreplaced=""> | |
| 2582 | + <button type="button" class="acs-adjustment acs-color-choice " aria-pressed="false" data-ysi-acs-color-adjustment="" data-ysi-acs-light-contrast="" data-ysi-acs-color="light" customlabelreplaced=""> | |
| 2583 | + <div class="acs-adjustment-content" customlabelreplaced=""> | |
| 2584 | + <svg class="acs-adjustment-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="48px" height="48px" viewBox="0 0 48 48"> | |
| 2585 | + <g stroke-width="2" transform="translate(0, 0)"> | |
| 2586 | + <line data-color="color-2" fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" x1="2" y1="24" x2="6" y2="24" stroke-linejoin="miter"></line> | |
| 2587 | + <line data-color="color-2" fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" x1="8.444" y1="8.444" x2="11.272" y2="11.272" stroke-linejoin="miter"></line> | |
| 2588 | + <line data-color="color-2" fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" x1="24" y1="2" x2="24" y2="6" stroke-linejoin="miter"></line> | |
| 2589 | + <line data-color="color-2" fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" x1="39.556" y1="8.444" x2="36.728" y2="11.272" stroke-linejoin="miter"></line> | |
| 2590 | + <line data-color="color-2" fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" x1="46" y1="24" x2="42" y2="24" stroke-linejoin="miter"></line> | |
| 2591 | + <line data-color="color-2" fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" x1="39.556" y1="39.556" x2="36.728" y2="36.728" stroke-linejoin="miter"></line> | |
| 2592 | + <line data-color="color-2" fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" x1="24" y1="46" x2="24" y2="42" stroke-linejoin="miter"></line> | |
| 2593 | + <line data-color="color-2" fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" x1="8.444" y1="39.556" x2="11.272" y2="36.728" stroke-linejoin="miter"></line> | |
| 2594 | + <circle fill="none" stroke="#444444" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" cx="24" cy="24" r="12" stroke-linejoin="miter"></circle> | |
| 2595 | + </g> | |
| 2596 | + </svg> | |
| 2597 | + <span class="acs-adjustment-title" customlabelreplaced="">Light Contrast</span> | |
| 2598 | + </div> | |
| 2599 | + </button> | |
| 2600 | + <button type="button" class="acs-adjustment acs-color-choice " aria-pressed="false" data-ysi-acs-color-adjustment="" data-ysi-acs-dark-contrast="" data-ysi-acs-color="dark" customlabelreplaced=""> | |
| 2601 | + <div class="acs-adjustment-content" customlabelreplaced=""> | |
| 2602 | + <svg class="acs-adjustment-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="32px" height="32px" viewBox="0 0 32 32"> | |
| 2603 | + <g transform="translate(0, 0)"> | |
| 2604 | + <path fill="#444444" d="M29.7,18.5c-1.2,0.3-2.3,0.5-3.5,0.5C18.9,19,13,13.1,13,5.8c0-1.1,0.2-2.3,0.5-3.5c0.1-0.3,0-0.7-0.3-1 | |
| 2605 | + C13,1,12.6,0.9,12.2,1C5.6,2.8,1,8.9,1,15.7C1,24.2,7.8,31,16.3,31c6.9,0,12.9-4.6,14.7-11.2c0.1-0.3,0-0.7-0.3-1 | |
| 2606 | + S30.1,18.4,29.7,18.5z"></path> | |
| 2607 | + </g> | |
| 2608 | + </svg> | |
| 2609 | + <span class="acs-adjustment-title" customlabelreplaced="">Dark Contrast</span> | |
| 2610 | + </div> | |
| 2611 | + </button> | |
| 2612 | + <button type="button" class="acs-adjustment acs-color-choice " aria-pressed="false" data-ysi-acs-color-adjustment="" data-ysi-acs-monochrome="" data-ysi-acs-color="monochrome" customlabelreplaced=""> | |
| 2613 | + <div class="acs-adjustment-content" customlabelreplaced=""> | |
| 2614 | + <svg class="acs-adjustment-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="32px" height="32px" viewBox="0 0 32 32"> | |
| 2615 | + <g transform="translate(0, 0)"> | |
| 2616 | + <rect y="1" width="11" height="30" fill="#444444"></rect> | |
| 2617 | + <rect x="17" y="1" width="7" height="30" fill="#444444" opacity="0.7" data-color="color-2"></rect> | |
| 2618 | + <rect x="30" y="1" width="2" height="30" fill="#444444" opacity="0.4"></rect> | |
| 2619 | + </g> | |
| 2620 | + </svg> | |
| 2621 | + <span class="acs-adjustment-title" customlabelreplaced="">Monochrome</span> | |
| 2622 | + </div> | |
| 2623 | + </button> | |
| 2624 | + <button type="button" class="acs-adjustment acs-color-choice " aria-pressed="false" data-ysi-acs-color-adjustment="" data-ysi-acs-high-saturation="" data-ysi-acs-color="high-saturation" customlabelreplaced=""> | |
| 2625 | + <div class="acs-adjustment-content" customlabelreplaced=""> | |
| 2626 | + <svg class="acs-adjustment-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="32px" height="32px" viewBox="0 0 32 32"> | |
| 2627 | + <g transform="translate(0, 0)"> | |
| 2628 | + <path fill="#444444" d="M27.3,4.7c-3-3-7-4.7-11.3-4.7S7.7,1.7,4.7,4.7c-6.2,6.2-6.2,16.4,0,22.6c3,3,7,4.7,11.3,4.7 | |
| 2629 | + s8.3-1.7,11.3-4.7C33.6,21.1,33.6,10.9,27.3,4.7z M6.1,6.1C8.7,3.5,12.3,2,16,2c3.4,0,6.6,1.2,9.2,3.4L5.4,25.2 | |
| 2630 | + C0.7,19.7,0.9,11.3,6.1,6.1z"></path> | |
| 2631 | + </g> | |
| 2632 | + </svg> | |
| 2633 | + <span class="acs-adjustment-title" customlabelreplaced="">High Saturation</span> | |
| 2634 | + </div> | |
| 2635 | + </button> | |
| 2636 | + <button type="button" class="acs-adjustment acs-color-choice " aria-pressed="false" data-ysi-acs-color-adjustment="" data-ysi-acs-low-saturation="" data-ysi-acs-color="low-saturation" customlabelreplaced=""> | |
| 2637 | + <div class="acs-adjustment-content" customlabelreplaced=""> | |
| 2638 | + <svg class="acs-adjustment-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="32px" height="32px" viewBox="0 0 32 32"> | |
| 2639 | + <g stroke-width="2" transform="translate(0, 0)"> | |
| 2640 | + <path data-color="color-2" data-stroke="none" d="M26.607,5.393,5.393,26.607A15,15,0,0,0,26.607,5.393Z" fill="#444444" opacity="0.5"></path> | |
| 2641 | + <line data-cap="butt" x1="26.607" y1="5.393" x2="5.393" y2="26.607" fill="none" stroke="#444444" stroke-miterlimit="10" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter"></line> | |
| 2642 | + <circle cx="16" cy="16" r="15" fill="none" stroke="#444444" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></circle> | |
| 2643 | + </g> | |
| 2644 | + </svg> | |
| 2645 | + <span class="acs-adjustment-title" customlabelreplaced="">Low Saturation</span> | |
| 2646 | + </div> | |
| 2647 | + </button> | |
| 2648 | + <button type="button" class="acs-adjustment acs-color-choice " aria-pressed="false" data-ysi-acs-color-adjustment="" data-ysi-acs-invert-colors="" data-ysi-acs-color="invert-colors" customlabelreplaced=""> | |
| 2649 | + <div class="acs-adjustment-content" customlabelreplaced=""> | |
| 2650 | + <svg class="acs-adjustment-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="32px" height="32px" viewBox="0 0 32 32"> | |
| 2651 | + <g transform="translate(0, 0)"> | |
| 2652 | + <polygon data-color="color-2" fill="#444444" points="7,14 9,14 9,11 12,11 12,9 9,9 9,6 7,6 7,9 4,9 4,11 7,11 "></polygon> | |
| 2653 | + <path fill="#444444" d="M31,2H1C0.448,2,0,2.448,0,3v26c0,0.552,0.448,1,1,1h30c0.552,0,1-0.448,1-1V3C32,2.448,31.552,2,31,2z | |
| 2654 | + M28,23h-8v-2h8V23z M2.154,28H2V4h27.846L2.154,28z"></path> | |
| 2655 | + </g> | |
| 2656 | + </svg> | |
| 2657 | + <span class="acs-adjustment-title" customlabelreplaced="">Invert Colors</span> | |
| 2658 | + </div> | |
| 2659 | + </button> | |
| 2660 | + </div> | |
| 2661 | + <!-- --> | |
| 2662 | + </div> | |
| 2663 | + <!-- Text Adjustment Container --> | |
| 2664 | + <div class="acs-adjustment-container" id="textAdjustment" data-ysi-acs-container="textContainer" customlabelreplaced=""> | |
| 2665 | + <div class="acs-category-title" role="heading" aria-level="3" customlabelreplaced="">Text Adjustment</div> | |
| 2666 | + <div class="acs-adjustments-group" customlabelreplaced=""> | |
| 2667 | + <button id="textSizing" aria-pressed="" data-ysi-acs-text-scaling="" data-ysi-text-adjustment="acs-default" type="button" class="acs-adjustment acs-text-enlarge-choice " data-toggle="tooltip" data-placement="right" data-animation="true" data-title="Click button to cycle between regular, large, and extra large text sizes. " customlabelreplaced="" data-original-title="Click button to cycle between regular, large, and extra large text sizes. "><div class="acs-adjustment-content" customlabelreplaced=""> | |
| 2668 | + <svg class="acs-adjustment-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="32px" height="32px" viewBox="0 0 32 32"><g transform="translate(0, 0)"><path d="M14,19.438V3h3.558a2,2,0,0,1,1.9,1.368L20,6h2V0H2V6H4l.544-1.632A2,2,0,0,1,6.442,3H10V19.438a2,2,0,0,1-1.515,1.941L6,22v2H18V22l-2.485-.621A2,2,0,0,1,14,19.438Z" fill="#444444"></path><polygon points="24 12 21 12 21 9 19 9 19 12 16 12 16 14 19 14 19 17 21 17 21 14 24 14 24 12" fill="#444444" data-color="color-2"></polygon></g></svg> | |
| 2669 | + <span class="acs-adjustment-title" customlabelreplaced="">Enlarge Text</span> | |
| 2670 | + <span class="acs-adjustment-description" customlabelreplaced=""></span> | |
| 2671 | + <div class="d-flex w-100 h-10" customlabelreplaced=""><span class="w-50 h-60 badge-pill border-2 acs-indicator " data-ysi-acs-indicator-large="" customlabelreplaced=""></span><span class="w-50 h-60 ml-1 badge-pill border-2 acs-indicator " data-ysi-acs-indicator-extra-large="" customlabelreplaced=""></span></div> | |
| 2672 | + </div></button> | |
| 2673 | + </div> | |
| 2674 | + </div> | |
| 2675 | + </div> | |
| 2676 | + <div class="modal-footer flex-column customColor" customlabelreplaced=""> | |
| 2677 | + <button id="resetAcs" type="button" class="btn btn-sm" style="background-color: #000000" customlabelreplaced="">Reset Accessibility Widget</button> | |
| 2678 | + <button id="acsHide" type="button" class="accessibility-button btn btn-sm mt-2" data-target="#closeModalToggle" data-toggle="modal" style="background-color: #000000" customlabelreplaced="">Remove Accessibility Widget</button> | |
| 2679 | + <span class="acs-powered-by m-0 pt-3" customlabelreplaced="">Powered by RentCafe</span> | |
| 2680 | + </div> | |
| 2681 | + </div> | |
| 2682 | + </div> | |
| 2683 | + </div> | |
| 2684 | + <!-- Second modal --> | |
| 2685 | + <div class="modal hide fade closeModal" role="dialog" aria-modal="true" id="closeModalToggle" aria-hidden="true" aria-labelledby="closeModalTitle" tabindex="-1" customlabelreplaced=""> | |
| 2686 | + <div class="modal-dialog modal-dialog-centered modal-left" customlabelreplaced=""> | |
| 2687 | + <div class="modal-content" customlabelreplaced=""> | |
| 2688 | + <div class="modal-header" customlabelreplaced=""> | |
| 2689 | + <span class="modal-title" id="closeModalTitle" customlabelreplaced="">Are you sure you want to remove the accessibility widget?</span> | |
| 2690 | + <button type="button" class="close acs-Close" data-dismiss="modal" aria-label="close dialog" customlabelreplaced=""> | |
| 2691 | + <svg width="14px" height="22px" fill="#000" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path 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> | |
| 2692 | + </button> | |
| 2693 | + </div> | |
| 2694 | + <div class="modal-body" id="confirmModal" customlabelreplaced=""> | |
| 2695 | + This will reset any color adjustments you made and remove the accessibility widget from the website. The accessibility widget can be restored by completely closing and reopening the browser. | |
| 2696 | + </div> | |
| 2697 | + <div class="modal-footer justify-content-end" customlabelreplaced=""> | |
| 2698 | + <button class="accessibility-button btn btn-sm btn-underline mr-sm-3" data-target="#acsModal" data-toggle="modal" customlabelreplaced="">Cancel</button> | |
| 2699 | + <button class="btn btn-sm" data-dismiss="modal" id="closeAccs" customlabelreplaced="">Confirm</button> | |
| 2700 | + | |
| 2701 | + </div> | |
| 2702 | + </div> | |
| 2703 | + </div> | |
| 2704 | + </div> | |
| 2705 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/accessibility-options-widget.134322934240000000.js"></script> | |
| 2706 | + | |
| 2707 | + | |
| 2708 | + | |
| 2709 | + | |
| 2710 | + <style> | |
| 2711 | + :root { | |
| 2712 | + --helpwidget-background-color: #2d3d4d; | |
| 2713 | + --helpwidget-outline-color: #ffffff; | |
| 2714 | + } | |
| 2715 | + </style> | |
| 2716 | +<div id="help-widget" class="w-100 widget-right" role="complementary" aria-label="Front desk - how can we help you?" customlabelreplaced=""> | |
| 2717 | + <input type="hidden" name="propertyid" id="propertyid" value="1975512"> | |
| 2718 | + | |
| 2719 | + | |
| 2720 | + <script> | |
| 2721 | + | |
| 2722 | + function callusGA4trackM() { | |
| 2723 | + if (typeof gtag != 'undefined') { | |
| 2724 | + gtag('event', 'phone_call', { 'property_name': document.querySelector('meta[name="author"]').content, 'page_name': document.title, 'page_url': window.location.href, 'header_phone_number': '(819) 303-3449'}); | |
| 2725 | + } | |
| 2726 | + } | |
| 2727 | + | |
| 2728 | + </script> | |
| 2729 | + | |
| 2730 | +<link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/widgets/help-widget-default.545862.134322949393644098.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/widgets/help-widget-default.545862.134322949393644098.css"></noscript> | |
| 2731 | + | |
| 2732 | + | |
| 2733 | +<!---START: Layout horizontal---> | |
| 2734 | +<!---NOTE: .frontdesk-animation is used for animation. Remove class if you want to remove animation---> | |
| 2735 | + | |
| 2736 | +<div id="frontDesk-widget-horizontal" class="frontDesk-widget-horizontal horizontal position-fixed d-flex " customlabelreplaced=""> | |
| 2737 | + <button id="btnFrontDesk" type="button" class="btn btn-primary hide-frontDesk-widget bell animation-bell" aria-expanded="false" data-selenium-id="showHidefrontDeskWidget" customlabelreplaced="" aria-label="Show Front Desk"> | |
| 2738 | + <span class="d-block bounce-dot" customlabelreplaced=""></span> | |
| 2739 | + <span class="btn-bell d-inline-block" customlabelreplaced=""> | |
| 2740 | + <span class="fas fa-concierge-bell" aria-hidden="true" customlabelreplaced=""></span> | |
| 2741 | + <span class="sr-only" customlabelreplaced="">Front desk options </span> | |
| 2742 | + </span> | |
| 2743 | + </button> | |
| 2744 | + <div id="frontDesk-widget-wrapper" class="frontDesk-widget-wrapper close-widget" customlabelreplaced=""> | |
| 2745 | + <!-- Email Us - modal --> | |
| 2746 | + <button id="email-us-btn" data-modal-url="/horizon-condo/contactus?IsDialog=1&IsFrontDesk=true" type="button" class="btn btn-primary email-us-btn widget-btns trigger-popup" data-selenium-id="emailUs" data-toggle="tooltip" data-placement="top" data-animation="true" data-title="Email Us" customlabelreplaced="" data-original-title="Email Us" tabindex="-1" disabled="disabled" aria-hidden="true"><svg focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px" height="24px" viewBox="0 0 24 24" stroke-width="2"><g stroke-width="2" transform="translate(0, 0)"><polyline data-cap="butt" data-color="color-2" points="1.614 3.558 12 13 22.385 3.559" fill="none" stroke="#ffffff" stroke-miterlimit="10" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter"></polyline> <rect x="1" y="3" width="22" height="18" rx="2" ry="2" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect></g></svg><span class="sr-only" customlabelreplaced="">Email Us</span></button> | |
| 2747 | + | |
| 2748 | + <!-- Call Us - mobile --> | |
| 2749 | + <a id="call-us-btn-phone" href="tel:(819) 303-3449" onclick="callusGA4trackM();" class="btn btn-primary click-to-call-href click-to-call-title call-us-btn widget-btns d-inline-block d-md-none" data-selenium-id="callUsPhone" data-toggle="tooltip" data-placement="top" data-animation="true" data-title="Call Us at (819) 303-3449" customlabelreplaced="" data-original-title="Call Us at (819) 303-3449" tabindex="-1" aria-hidden="true"><svg focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px" height="24px" viewBox="0 0 48 48" stroke-width="4"><g stroke-width="4" transform="translate(0, 0)"><path d="M31.041,28.94l-3.423,4.279A36.116,36.116,0,0,1,14.782,20.384l4.279-3.423a2.908,2.908,0,0,0,.84-3.45L16,4.728a2.908,2.908,0,0,0-3.39-1.635L5.186,5.019A2.925,2.925,0,0,0,3.028,8.25,43.142,43.142,0,0,0,39.751,44.973a2.925,2.925,0,0,0,3.23-2.158l1.926-7.425A2.91,2.91,0,0,0,43.273,32l-8.782-3.9A2.907,2.907,0,0,0,31.041,28.94Z" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="4" stroke-linejoin="miter"></path></g></svg><span class="sr-only" customlabelreplaced="">Call Us</span></a> | |
| 2750 | + <!-- Call Us - desktop --> | |
| 2751 | + <button id="call-us-btn" aria-label="Call Us" type="button" class="btn btn-primary click-to-call-title call-us-btn widget-btns trigger-popup d-none d-md-inline-block" data-selenium-id="callUsDesktop" data-toggle="tooltip" data-placement="top" data-animation="true" data-title="Call Us at (819) 303-3449" customlabelreplaced="" data-original-title="Call Us at (819) 303-3449" tabindex="-1" disabled="disabled" aria-hidden="true"><svg focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px" height="24px" viewBox="0 0 48 48" stroke-width="4"><g stroke-width="4" transform="translate(0, 0)"><path d="M31.041,28.94l-3.423,4.279A36.116,36.116,0,0,1,14.782,20.384l4.279-3.423a2.908,2.908,0,0,0,.84-3.45L16,4.728a2.908,2.908,0,0,0-3.39-1.635L5.186,5.019A2.925,2.925,0,0,0,3.028,8.25,43.142,43.142,0,0,0,39.751,44.973a2.925,2.925,0,0,0,3.23-2.158l1.926-7.425A2.91,2.91,0,0,0,43.273,32l-8.782-3.9A2.907,2.907,0,0,0,31.041,28.94Z" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="4" stroke-linejoin="miter"></path></g></svg></button> | |
| 2752 | + | |
| 2753 | + | |
| 2754 | + | |
| 2755 | + | |
| 2756 | + | |
| 2757 | + | |
| 2758 | + <!-- Schedule tour --> | |
| 2759 | + <button id="schedule-a-tour-btn" data-modal-url="/horizon-condo/scheduletour?IsDialog=true" type="button" class="btn btn-primary schedule-a-tour-btn widget-btns trigger-popup" data-selenium-id="scheduleTour" data-toggle="tooltip" data-placement="top" data-animation="true" data-title="Schedule a Tour" customlabelreplaced="" data-original-title="Schedule a Tour" tabindex="-1" disabled="disabled" aria-hidden="true"><svg focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px" height="24px" viewBox="0 0 24 24" stroke-width="2"><g stroke-width="2" transform="translate(0, 0)"><rect data-color="color-2" x="5" y="12" width="2" height="1" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect> <rect data-color="color-2" x="11" y="12" width="2" height="1" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect> <rect data-color="color-2" x="5" y="17" width="2" height="1" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect> <rect data-color="color-2" x="11" y="17" width="2" height="1" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect> <rect data-color="color-2" x="17" y="12" width="2" height="1" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect> <rect data-color="color-2" data-stroke="none" x="5" y="12" width="2" height="1" fill="#ffffff"></rect> <rect data-color="color-2" data-stroke="none" x="11" y="12" width="2" height="1" fill="#ffffff"></rect> <rect data-color="color-2" data-stroke="none" x="5" y="17" width="2" height="1" fill="#ffffff"></rect> <rect data-color="color-2" data-stroke="none" x="11" y="17" width="2" height="1" fill="#ffffff"></rect> <rect data-color="color-2" data-stroke="none" x="17" y="12" width="2" height="1" fill="#ffffff"></rect> <rect x="1" y="3" width="22" height="19" rx="2" ry="2" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></rect> <line x1="6" y1="1" x2="6" y2="4" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></line> <line x1="18" y1="1" x2="18" y2="4" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="2" stroke-linejoin="miter"></line> <line x1="1" y1="8" x2="23" y2="8" fill="none" stroke="#ffffff" stroke-miterlimit="10" stroke-width="2"></line></g></svg><span class="sr-only" customlabelreplaced="">Schedule a Tour</span></button> | |
| 2760 | + | |
| 2761 | + | |
| 2762 | + </div> | |
| 2763 | +</div> | |
| 2764 | +<!---END: Layout horizontal---> | |
| 2765 | +<!--- Show/Hide aria-label for Front Desk button ---> | |
| 2766 | +<script> | |
| 2767 | +(function (d) { | |
| 2768 | + "use strict"; | |
| 2769 | + function updateBtnFrontDeskAriaLabel(btn) { | |
| 2770 | + if (!btn || btn.id !== "btnFrontDesk") return; | |
| 2771 | + var expanded = btn.getAttribute("aria-expanded"); | |
| 2772 | + btn.setAttribute("aria-label", expanded === "true" ? "Hide Front Desk" : "Show Front Desk"); | |
| 2773 | + } | |
| 2774 | + function init() { | |
| 2775 | + var btn = d.getElementById("btnFrontDesk"); | |
| 2776 | + if (!btn) return; | |
| 2777 | + updateBtnFrontDeskAriaLabel(btn); | |
| 2778 | + if (window.MutationObserver) { | |
| 2779 | + var observer = new MutationObserver(function () { updateBtnFrontDeskAriaLabel(btn); }); | |
| 2780 | + observer.observe(btn, { attributes: true, attributeFilter: ["aria-expanded"] }); | |
| 2781 | + } | |
| 2782 | + } | |
| 2783 | + if (d.readyState === "loading") d.addEventListener("DOMContentLoaded", init); | |
| 2784 | + else init(); | |
| 2785 | +})(document); | |
| 2786 | +</script> | |
| 2787 | + | |
| 2788 | + <style> | |
| 2789 | + :root { | |
| 2790 | + --helpwidget-window-x-offset: 0px; | |
| 2791 | + --helpwidget-window-y-offset: 0px; | |
| 2792 | + } | |
| 2793 | + </style> | |
| 2794 | + | |
| 2795 | + <!--START Modal: Contact Us / Email Us --> | |
| 2796 | + <div id="email-us-window" class="popup-widgets-window draggable scrollable " customlabelreplaced=""> | |
| 2797 | + <div class="popup-content" customlabelreplaced=""> | |
| 2798 | + <div class="popup-header modal-header" customlabelreplaced=""> | |
| 2799 | + <h2 class="m-0 text-truncate" customlabelreplaced="">Contact Us </h2> | |
| 2800 | + <button class="close" aria-label="Close this dialog window" data-selenium-id="close" customlabelreplaced=""> <span aria-hidden="true" class="fa fa-times" customlabelreplaced=""></span></button> | |
| 2801 | + </div> | |
| 2802 | + <div id="help-widget-email-modal-body" class="popup-body p-4" customlabelreplaced=""> | |
| 2803 | + </div> | |
| 2804 | + </div> | |
| 2805 | + </div> | |
| 2806 | + <!--END Modal: Contact Us / Email Us --> | |
| 2807 | + <!--START Modal: Call Us --> | |
| 2808 | + <div id="call-us-window" class="popup-widgets-window draggable scrollable " customlabelreplaced=""> | |
| 2809 | + <div class="popup-content" customlabelreplaced=""> | |
| 2810 | + <div class="popup-header modal-header" customlabelreplaced=""> | |
| 2811 | + <h2 class="m-0 text-truncate" customlabelreplaced="">Call Us</h2> | |
| 2812 | + <button class="close" aria-label="Close this dialog window" data-selenium-id="close" customlabelreplaced=""> <span aria-hidden="true" class="fa fa-times" customlabelreplaced=""></span></button> | |
| 2813 | + </div> | |
| 2814 | + <div class="popup-body p-4 text-center" customlabelreplaced=""> | |
| 2815 | + <strong class="text-xl mb-4 d-block" customlabelreplaced=""> | |
| 2816 | + | |
| 2817 | + <style>.mobile-only .click-to-call{display:none}</style> | |
| 2818 | + | |
| 2819 | + <div class="ysi-phone-widget ysi-phone-wrapper" customlabelreplaced=""> | |
| 2820 | + <div class="d-inline-flex" customlabelreplaced=""> | |
| 2821 | + <a data-selenium-id="click_to_call" onclick="fireGaPhone()" href="tel:+1 819-303-3449" aria-label="Call Horizon at +1 819-303-3449" class="ysi-phone-number click-to-call-href text-decoration-none color-inherit " customlabelreplaced=""> | |
| 2822 | + <span aria-hidden="true" class="fa-flip-horizontal fas fa-phone mobile-phone-icon" customlabelreplaced=""></span> | |
| 2823 | + <span class="click-to-call ml-2 text-underline" customlabelreplaced="">+1 819-303-3449</span> | |
| 2824 | + </a> | |
| 2825 | + | |
| 2826 | + </div> | |
| 2827 | + </div> | |
| 2828 | + <script> | |
| 2829 | + function fireGaPhone() { | |
| 2830 | + if (typeof gtag != 'undefined') { | |
| 2831 | + var myPage = location.pathname.replace("/", ""); | |
| 2832 | + if (myPage == "") { myPage = "index"; } | |
| 2833 | + if (true ) { | |
| 2834 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 2835 | + gtag('event', 'phone_call', { 'property_name': propertyName, 'page_name': document.title, 'page_url': window.location.href, 'header_phone_number': '+1 819-303-3449'}); | |
| 2836 | + } | |
| 2837 | + gtag('event', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 2838 | + gtag('rc.send', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 2839 | + } | |
| 2840 | + } | |
| 2841 | + </script> | |
| 2842 | +</strong> | |
| 2843 | + | |
| 2844 | + | |
| 2845 | + <div class="ysi-office-hours-widget ysi-office-hours-wrapper" customlabelreplaced=""> | |
| 2846 | + <div class="d-inline-flex" customlabelreplaced=""> | |
| 2847 | + <div class="ysi-office-hours" data-selenium-id="SID_footer_officeHours" customlabelreplaced=""> | |
| 2848 | + <ul class="list-unstyled mb-0" customlabelreplaced=""> | |
| 2849 | + <li class=" " customlabelreplaced=""> | |
| 2850 | + <span class="office-hours-day" data-selenium-id="OHMonday" customlabelreplaced="">Monday: </span> | |
| 2851 | + <span class="office-hours-time" data-selenium-id="OHMondayTime" customlabelreplaced="">10 AM <span class="sr-only" customlabelreplaced="">to</span> - 7 PM</span> | |
| 2852 | +</li> | |
| 2853 | + <li class=" " customlabelreplaced=""> | |
| 2854 | + <span class="office-hours-day" data-selenium-id="OHTuesday" customlabelreplaced="">Tuesday: </span> | |
| 2855 | + <span class="office-hours-time" data-selenium-id="OHTuesdayTime" customlabelreplaced="">10 AM <span class="sr-only" customlabelreplaced="">to</span> - 7 PM</span> | |
| 2856 | +</li> | |
| 2857 | + <li class=" " customlabelreplaced=""> | |
| 2858 | + <span class="office-hours-day" data-selenium-id="OHWednesday" customlabelreplaced="">Wednesday: </span> | |
| 2859 | + <span class="office-hours-time" data-selenium-id="OHWednesdayTime" customlabelreplaced="">10 AM <span class="sr-only" customlabelreplaced="">to</span> - 7 PM</span> | |
| 2860 | +</li> | |
| 2861 | + <li class=" " customlabelreplaced=""> | |
| 2862 | + <span class="office-hours-day" data-selenium-id="OHThursday" customlabelreplaced="">Thursday: </span> | |
| 2863 | + <span class="office-hours-time" data-selenium-id="OHThursdayTime" customlabelreplaced="">10 AM <span class="sr-only" customlabelreplaced="">to</span> - 7 PM</span> | |
| 2864 | +</li> | |
| 2865 | + <li class=" " customlabelreplaced=""> | |
| 2866 | + <span class="office-hours-day" data-selenium-id="OHFriday" customlabelreplaced="">Friday: </span> | |
| 2867 | + <span class="office-hours-time" data-selenium-id="OHFridayTime" customlabelreplaced="">10 AM <span class="sr-only" customlabelreplaced="">to</span> - 5 PM</span> | |
| 2868 | +</li> | |
| 2869 | + <li class=" " customlabelreplaced=""> | |
| 2870 | + <span class="office-hours-day" data-selenium-id="OHSaturday" customlabelreplaced="">Saturday: </span> | |
| 2871 | + <span class="office-hours-time" data-selenium-id="OHSaturdayTime" customlabelreplaced="">10 AM <span class="sr-only" customlabelreplaced="">to</span> - 5 PM</span> | |
| 2872 | +</li> | |
| 2873 | + <li class=" " customlabelreplaced=""> | |
| 2874 | + <span class="office-hours-day" data-selenium-id="OHSunday" customlabelreplaced="">Sunday: </span> | |
| 2875 | + <span class="office-hours-time" data-selenium-id="OHSundayTime" customlabelreplaced="">10 AM <span class="sr-only" customlabelreplaced="">to</span> - 5 PM</span> | |
| 2876 | +</li> | |
| 2877 | + </ul> | |
| 2878 | + </div> | |
| 2879 | + </div> | |
| 2880 | + </div> | |
| 2881 | + | |
| 2882 | + </div> | |
| 2883 | + <div class="border-top px-4 py-4 text-center" customlabelreplaced=""> | |
| 2884 | + | |
| 2885 | + | |
| 2886 | + | |
| 2887 | + | |
| 2888 | + | |
| 2889 | +<div class="ysi-address-widget ysi-address-wrapper vertical" customlabelreplaced=""> | |
| 2890 | + <div class="d-inline-flex" customlabelreplaced=""> | |
| 2891 | + <address class="ysi-address"> | |
| 2892 | + <a class="address-link color-inherit d-block" href="https://maps.google.com?q=12 rue de l Horizon Gatineau, QC J9A 0G9" target="_blank" rel="noreferrer" customlabelreplaced=""> | |
| 2893 | + <div itemprop="name" data-selenium-id="address_propname" customlabelreplaced="">Horizon</div> | |
| 2894 | + <div itemprop="address" customlabelreplaced=""> | |
| 2895 | + <div data-selenium-id="address_street" customlabelreplaced=""> | |
| 2896 | + 12 rue de l Horizon | |
| 2897 | + </div> | |
| 2898 | + <div customlabelreplaced=""> | |
| 2899 | + <span data-selenium-id="address_city" customlabelreplaced="">Gatineau</span>, <span data-selenium-id="address_state" customlabelreplaced="">QC</span><span data-selenium-id="address_zip" customlabelreplaced=""> J9A 0G9</span> | |
| 2900 | + </div> | |
| 2901 | + </div> | |
| 2902 | + <span class="sr-only" customlabelreplaced="">Opens in a new tab</span> | |
| 2903 | + </a> | |
| 2904 | + </address> | |
| 2905 | + | |
| 2906 | + </div> | |
| 2907 | +</div> | |
| 2908 | + | |
| 2909 | + | |
| 2910 | + </div> | |
| 2911 | + </div> | |
| 2912 | + </div> | |
| 2913 | + <!--END Modal: Call Us --> | |
| 2914 | + | |
| 2915 | + | |
| 2916 | + <input type="hidden" name="urlpattern" id="helpwidget-urlpattern" value="/horizon-condo"> | |
| 2917 | + <!-- START Modal: RentCafe Conversations --> | |
| 2918 | + <div id="rentcafe-conversations-window" class="popup-widgets-window draggable scrollable " customlabelreplaced=""> | |
| 2919 | + <div class="popup-content" customlabelreplaced=""> | |
| 2920 | + <div class="popup-header modal-header" customlabelreplaced=""> | |
| 2921 | + <h2 class="rentcafe-conversations-title m-0 text-truncate" customlabelreplaced="">Chat With Us</h2> | |
| 2922 | + <button id="rentcafe-conversations-menu" class="menu d-none" aria-label="Show menu for this dialog window" customlabelreplaced=""><i class="fas fa-ellipsis-h" aria-hidden="true" customlabelreplaced=""></i></button> | |
| 2923 | + <button class="close" aria-label="Close this dialog window" data-selenium-id="close" customlabelreplaced=""> <span aria-hidden="true" class="fa fa-times" customlabelreplaced=""></span></button> | |
| 2924 | + </div> | |
| 2925 | + <div id="rentcafe-conversations-modal-body" class="popup-body p-4" customlabelreplaced=""> | |
| 2926 | + </div> | |
| 2927 | + </div> | |
| 2928 | + </div> | |
| 2929 | + | |
| 2930 | + <div id="schedule-a-tour-window" class="popup-widgets-window draggable scrollable " customlabelreplaced=""> | |
| 2931 | + <div class="popup-content" customlabelreplaced=""> | |
| 2932 | + <div class="popup-header modal-header" customlabelreplaced=""> | |
| 2933 | + <h2 class="m-0 text-truncate" customlabelreplaced="">Schedule A Tour</h2> | |
| 2934 | + <button class="close" aria-label="Close this dialog window" data-selenium-id="close" customlabelreplaced=""> <span aria-hidden="true" class="fa fa-times" customlabelreplaced=""></span></button> | |
| 2935 | + </div> | |
| 2936 | + <div id="help-widget-schedule-a-tour-modal-body" class="popup-body" customlabelreplaced=""> | |
| 2937 | + <!-- Modal content loaded here --> | |
| 2938 | + </div> | |
| 2939 | + </div> | |
| 2940 | + </div> | |
| 2941 | + | |
| 2942 | +</div> | |
| 2943 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.modal.134322934460000000.js"></script> | |
| 2944 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/recaptcha-widget.134322934370000000.js"></script> | |
| 2945 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/contactus.134322934260000000.js"></script> | |
| 2946 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/contactmodal-widget.134322934250000000.js"></script> | |
| 2947 | +<script> | |
| 2948 | + | |
| 2949 | + | |
| 2950 | + function textGA4track(eventName) { | |
| 2951 | + if (typeof gtag != 'undefined') { | |
| 2952 | + gtag('event', eventName, { 'property_name': document.querySelector('meta[name="author"]').content, 'page_url': window.location.href, 'page_name': document.title, 'form_name': 'text_us', 'button_label': 'text_us' }); | |
| 2953 | + } | |
| 2954 | + } | |
| 2955 | + | |
| 2956 | + let chatBtn = document.querySelector('#rentcafe-conversations-webchat-btn'); | |
| 2957 | + if (chatBtn) { | |
| 2958 | + chatBtn.addEventListener('click', function () { | |
| 2959 | + if (typeof gtag != 'undefined') { | |
| 2960 | + gtag('event', 'rentcafe_chatbot', { | |
| 2961 | + 'property_name': document.querySelector('meta[name="author"]').content, | |
| 2962 | + 'page_url': window.location.href, | |
| 2963 | + 'page_name': document.title, | |
| 2964 | + 'form_name': 'chat', | |
| 2965 | + 'button_label': 'chat_with_us' | |
| 2966 | + }); | |
| 2967 | + } | |
| 2968 | + }); | |
| 2969 | + } | |
| 2970 | + | |
| 2971 | + let textUsBtn = document.querySelector('#text-us-btn'); | |
| 2972 | + if (textUsBtn) { | |
| 2973 | + textUsBtn.addEventListener('click', function () { | |
| 2974 | + textGA4track('front_desk'); | |
| 2975 | + }); | |
| 2976 | + } | |
| 2977 | + | |
| 2978 | + let rccTextUsBtn = document.querySelector('#rentcafe-conversations-sms-btn'); | |
| 2979 | + if (rccTextUsBtn) { | |
| 2980 | + rccTextUsBtn.addEventListener('click', function () { | |
| 2981 | + textGA4track('rentcafe_chatbot'); | |
| 2982 | + }); | |
| 2983 | + } | |
| 2984 | + | |
| 2985 | + let emailUsBtn = document.querySelector('#email-us-btn'); | |
| 2986 | + if (emailUsBtn) { | |
| 2987 | + emailUsBtn.addEventListener('click', function () { | |
| 2988 | + if (typeof gtag != 'undefined') { | |
| 2989 | + gtag('event', 'open_modal', { | |
| 2990 | + 'property_name': document.querySelector('meta[name="author"]').content, | |
| 2991 | + 'page_url': window.location.href, | |
| 2992 | + 'page_name': document.title, | |
| 2993 | + 'form_name': 'contact_us', | |
| 2994 | + 'button_label': 'email_us' | |
| 2995 | + }); | |
| 2996 | + } | |
| 2997 | + }); | |
| 2998 | + } | |
| 2999 | + | |
| 3000 | + // Desktop Call Us button | |
| 3001 | + let callUsDbtn = document.querySelector('#call-us-btn'); | |
| 3002 | + if (callUsDbtn) { | |
| 3003 | + callUsDbtn.addEventListener('click', function() { | |
| 3004 | + if (typeof gtag !== 'undefined') { | |
| 3005 | + gtag('event', 'open_modal', { | |
| 3006 | + 'property_name': document.querySelector('meta[name="author"]').content, | |
| 3007 | + 'page_url': window.location.href, | |
| 3008 | + 'page_name': document.title, | |
| 3009 | + 'form_name': 'call_us', | |
| 3010 | + 'button_label': 'call_us' | |
| 3011 | + }); | |
| 3012 | + } | |
| 3013 | + }); | |
| 3014 | + } | |
| 3015 | + | |
| 3016 | + // Schedule A Tour button | |
| 3017 | + let scheduleTourBtn = document.querySelector('#schedule-a-tour-btn'); | |
| 3018 | + if (scheduleTourBtn) { | |
| 3019 | + scheduleTourBtn.addEventListener('click', function() { | |
| 3020 | + if (typeof gtag !== 'undefined') { | |
| 3021 | + gtag('event', 'open_modal', { | |
| 3022 | + 'property_name': document.querySelector('meta[name="author"]').content, | |
| 3023 | + 'page_url': window.location.href, | |
| 3024 | + 'page_name': document.title, | |
| 3025 | + 'form_name': 'schedule_a_tour', | |
| 3026 | + 'button_label': 'schedule_a_tour' | |
| 3027 | + }); | |
| 3028 | + } | |
| 3029 | + }); | |
| 3030 | + } | |
| 3031 | + | |
| 3032 | +</script> | |
| 3033 | + <script data-rcc_conversations="widget" data-src="https://webchat.omni.cafe/webchatjs/e8716e22-c568-4512-9c85-4a43edb5f88a/app.js?nocache=1&gaTracking=&buttonbgcolor=2d3d4d&buttontextcolor=ffffff&chatheader=0&embed=false" id="rccAppScript" defer=""></script> | |
| 3034 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/help-widget-rcc.134322934300000000.js"></script> | |
| 3035 | + <script> | |
| 3036 | + ysi.RCCSMSChannelUuid = ''; | |
| 3037 | + ysi.RCCDniUuids = JSON.parse("{\u00228554088872\u0022:\u002247745626-37bc-4d40-84f8-dcf292fda4d5\u0022,\u00228555501252\u0022:\u0022\u0022,\u00228555285299\u0022:\u0022\u0022,\u00228664907180\u0022:\u0022\u0022,\u00228666525671\u0022:\u0022\u0022,\u00228665119358\u0022:\u0022\u0022,\u00228774470299\u0022:\u0022\u0022,\u00228336101155\u0022:\u0022\u0022,\u00228883689112\u0022:\u0022\u0022,\u00228666559631\u0022:\u0022\u0022,\u00228885164350\u0022:\u0022\u0022,\u00228332706323\u0022:\u0022\u0022,\u00228774783301\u0022:\u0022\u0022,\u00228337009142\u0022:\u0022\u0022,\u00228668796841\u0022:\u0022\u0022}"); | |
| 3038 | + </script> | |
| 3039 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/help-widget.134322934310000000.js"></script> | |
| 3040 | + <!-- Nudge positioning --> | |
| 3041 | + <script> | |
| 3042 | + ysi.helpWidgetOverlapNudge = false; | |
| 3043 | + </script> | |
| 3044 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/help-widget-nudge-positioning.134322934300000000.js"></script> | |
| 3045 | + <!-- ScheduleTourEnabled --> | |
| 3046 | + <link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/ysi.datepicker.545862.134322949393644098.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/ysi.datepicker.545862.134322949393644098.css"></noscript> | |
| 3047 | + <link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/widgets/schedule-a-tour.545862.134322949393644098.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/widgets/schedule-a-tour.545862.134322949393644098.css"></noscript> | |
| 3048 | + <link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/widgets/help-widget-schedule-a-tour.545862.134322949393644098.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/widgets/help-widget-schedule-a-tour.545862.134322949393644098.css"></noscript> | |
| 3049 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.datepicker.134322934440000000.js" defer="defer"></script> | |
| 3050 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/widgets/schedule-tour.134322934380000000.js" defer="defer"></script> | |
| 3051 | + | |
| 3052 | + | |
| 3053 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/intltelinput.134322934150000000.js"></script> | |
| 3054 | + <script src="https://cdngeneralmvc.rentcafe.com/common/js/inttelphoneinput.134322934160000000.js"></script> | |
| 3055 | + <link href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/intlTelInput.545862.134322949393644098.css" rel="stylesheet" type="text/css"> | |
| 3056 | +<link data-href="https://cdngeneralmvc.rentcafe.com/css/scss/421976/brigil_prop1/overlayscrollbar.545862.134322949393644098.css" rel="stylesheet" type="text/css" id="overlayScrollbarStyle"> | |
| 3057 | +<script src="https://cdngeneralmvc.rentcafe.com/common/js/ysi.scrollbars.134322934460000000.js"></script> | |
| 3058 | +<script data-src="https://cdngeneralmvc.rentcafe.com/common/js/overlayscrollbars.134322934200000000.js" data-delayload="true" id="overlayScrollbarScript" data-callback="load"></script> <script type="application/ld+json"> | |
| 3059 | +{ | |
| 3060 | + "@context": "https://www.schema.org", | |
| 3061 | + "@type": [ | |
| 3062 | + "LocalBusiness", | |
| 3063 | + "ApartmentComplex" | |
| 3064 | + ], | |
| 3065 | + "url": "https://www.brigil.com/horizon-condo/", | |
| 3066 | + "logo": "https://resource.rentcafe.com/image/upload/q_auto,f_auto/s3/2/252329/brigil-horizon-proplogo.png", | |
| 3067 | + "image": "https://resource.rentcafe.com/image/upload/q_auto,f_auto/s3/2/252329/p1942894_horizon_community_thumbnail.jpg", | |
| 3068 | + "priceRange": "$$", | |
| 3069 | + "petsAllowed": true, | |
| 3070 | + "accommodationFloorPlan": [ | |
| 3071 | + { | |
| 3072 | + "@type": "FloorPlan", | |
| 3073 | + "name": "1 Bedroom", | |
| 3074 | + "numberOfBedrooms": 1, | |
| 3075 | + "numberOfFullBathrooms": 1.0, | |
| 3076 | + "floorSize": { | |
| 3077 | + "@type": "QuantitativeValue", | |
| 3078 | + "minValue": 506.0, | |
| 3079 | + "maxValue": 735.0 | |
| 3080 | + } | |
| 3081 | + }, | |
| 3082 | + { | |
| 3083 | + "@type": "FloorPlan", | |
| 3084 | + "name": "2 Bedrooms*", | |
| 3085 | + "numberOfBedrooms": 2, | |
| 3086 | + "numberOfFullBathrooms": 1.0, | |
| 3087 | + "floorSize": { | |
| 3088 | + "@type": "QuantitativeValue", | |
| 3089 | + "minValue": 603.0, | |
| 3090 | + "maxValue": 840.0 | |
| 3091 | + } | |
| 3092 | + }, | |
| 3093 | + { | |
| 3094 | + "@type": "FloorPlan", | |
| 3095 | + "name": "2 Bedrooms", | |
| 3096 | + "numberOfBedrooms": 2, | |
| 3097 | + "numberOfFullBathrooms": 1.0, | |
| 3098 | + "floorSize": { | |
| 3099 | + "@type": "QuantitativeValue", | |
| 3100 | + "minValue": 735.0, | |
| 3101 | + "maxValue": 735.0 | |
| 3102 | + } | |
| 3103 | + }, | |
| 3104 | + { | |
| 3105 | + "@type": "FloorPlan", | |
| 3106 | + "name": "Penthouse", | |
| 3107 | + "numberOfBedrooms": 1, | |
| 3108 | + "numberOfFullBathrooms": 1.0, | |
| 3109 | + "floorSize": { | |
| 3110 | + "@type": "QuantitativeValue", | |
| 3111 | + "minValue": 593.0, | |
| 3112 | + "maxValue": 735.0 | |
| 3113 | + } | |
| 3114 | + }, | |
| 3115 | + { | |
| 3116 | + "@type": "FloorPlan", | |
| 3117 | + "name": "Penthouse 2 Bedrooms* + Loft", | |
| 3118 | + "numberOfBedrooms": 2, | |
| 3119 | + "numberOfFullBathrooms": 1.0, | |
| 3120 | + "floorSize": { | |
| 3121 | + "@type": "QuantitativeValue", | |
| 3122 | + "minValue": 1320.0, | |
| 3123 | + "maxValue": 1320.0 | |
| 3124 | + } | |
| 3125 | + }, | |
| 3126 | + { | |
| 3127 | + "@type": "FloorPlan", | |
| 3128 | + "name": "Penthouse 2 Bedrooms + Loft", | |
| 3129 | + "numberOfBedrooms": 2, | |
| 3130 | + "numberOfFullBathrooms": 1.0, | |
| 3131 | + "floorSize": { | |
| 3132 | + "@type": "QuantitativeValue", | |
| 3133 | + "minValue": 603.0, | |
| 3134 | + "maxValue": 1063.0 | |
| 3135 | + } | |
| 3136 | + } | |
| 3137 | + ], | |
| 3138 | + "sameAs": [ | |
| 3139 | + "https://www.facebook.com/BRIGIL/", | |
| 3140 | + "https://www.linkedin.com/company/brigil", | |
| 3141 | + "https://instagram.com/brigilhomes", | |
| 3142 | + "https://www.youtube.com/@brigil8001" | |
| 3143 | + ], | |
| 3144 | + "openingHoursSpecification": [ | |
| 3145 | + { | |
| 3146 | + "@type": "OpeningHoursSpecification", | |
| 3147 | + "dayOfWeek": [ | |
| 3148 | + "Monday" | |
| 3149 | + ], | |
| 3150 | + "opens": "10:00:00", | |
| 3151 | + "closes": "19:00:00" | |
| 3152 | + }, | |
| 3153 | + { | |
| 3154 | + "@type": "OpeningHoursSpecification", | |
| 3155 | + "dayOfWeek": [ | |
| 3156 | + "Tuesday" | |
| 3157 | + ], | |
| 3158 | + "opens": "10:00:00", | |
| 3159 | + "closes": "19:00:00" | |
| 3160 | + }, | |
| 3161 | + { | |
| 3162 | + "@type": "OpeningHoursSpecification", | |
| 3163 | + "dayOfWeek": [ | |
| 3164 | + "Wednesday" | |
| 3165 | + ], | |
| 3166 | + "opens": "10:00:00", | |
| 3167 | + "closes": "19:00:00" | |
| 3168 | + }, | |
| 3169 | + { | |
| 3170 | + "@type": "OpeningHoursSpecification", | |
| 3171 | + "dayOfWeek": [ | |
| 3172 | + "Thursday" | |
| 3173 | + ], | |
| 3174 | + "opens": "10:00:00", | |
| 3175 | + "closes": "19:00:00" | |
| 3176 | + }, | |
| 3177 | + { | |
| 3178 | + "@type": "OpeningHoursSpecification", | |
| 3179 | + "dayOfWeek": [ | |
| 3180 | + "Friday" | |
| 3181 | + ], | |
| 3182 | + "opens": "10:00:00", | |
| 3183 | + "closes": "17:00:00" | |
| 3184 | + }, | |
| 3185 | + { | |
| 3186 | + "@type": "OpeningHoursSpecification", | |
| 3187 | + "dayOfWeek": [ | |
| 3188 | + "Saturday" | |
| 3189 | + ], | |
| 3190 | + "opens": "10:00:00", | |
| 3191 | + "closes": "17:00:00" | |
| 3192 | + }, | |
| 3193 | + { | |
| 3194 | + "@type": "OpeningHoursSpecification", | |
| 3195 | + "dayOfWeek": [ | |
| 3196 | + "Sunday" | |
| 3197 | + ], | |
| 3198 | + "opens": "10:00:00", | |
| 3199 | + "closes": "17:00:00" | |
| 3200 | + } | |
| 3201 | + ], | |
| 3202 | + "name": "Horizon", | |
| 3203 | + "address": { | |
| 3204 | + "@type": "PostalAddress", | |
| 3205 | + "addressLocality": "Gatineau", | |
| 3206 | + "addressRegion": "QC", | |
| 3207 | + "addressCountry": "CA", | |
| 3208 | + "postalCode": "J9A 0G9", | |
| 3209 | + "streetAddress": "12 rue de l Horizon" | |
| 3210 | + }, | |
| 3211 | + "telephone": "(819) 743-1771", | |
| 3212 | + "hasMap": "" | |
| 3213 | +}</script> | |
| 3214 | + | |
| 3215 | + | |
| 3216 | + <yardi-widget-siteeditorscript></yardi-widget-siteeditorscript> | |
| 3217 | + | |
| 3218 | + | |
| 3219 | +<script>(function(){function c(){var b=a.contentDocument||(a.contentWindow&&a.contentWindow.document);if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'a31d8ddc6a0eff11',t:'MTc4Nzg1OTY5MA=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script><iframe height="1" width="1" style="position: absolute; top: 0px; left: 0px; border-width: medium; border-style: none; border-color: currentcolor; border-image: none; visibility: hidden;"></iframe> | |
| 3220 | + | |
| 3221 | +<script></script> | |
| 3222 | + | |
| 3223 | + | |
| 3224 | +<div id="onetrust-consent-sdk" data-nosnippet="true"><div class="onetrust-pc-dark-filter ot-fade-in" style="z-index:2147483645;"></div><div id="onetrust-banner-sdk" class="otFlat bottom ot-wo-title vertical-align-content" tabindex="0" aria-label="You must interact with the banner to dismiss it." style="bottom: 0px;"><div role="dialog" aria-modal="true" aria-label="You must interact with the banner to dismiss it."><div class="ot-sdk-container"><div class="ot-sdk-row"><div id="onetrust-group-container" class="ot-sdk-eight ot-sdk-columns"><div class="banner_logo"></div><div id="onetrust-policy"><div id="onetrust-policy-text">We use cookies and similar technologies (“Cookies”) as described in our Cookies Notice to collect information that helps us personalize your experience, record and analyze how you use our sites and services, and for targeted marketing. This information may also be collected by or shared with third parties. You can manage the use of Cookies in [Cookies Settings]. By clicking [Accept All] you consent to our use of Cookies.<a class="ot-cookie-policy-link" href="https://resources.yardi.com/legal/cookie-notice/" aria-label="More information about your privacy, opens in a new tab" rel="noopener noreferrer" target="_blank">Cookie Notice</a></div></div></div><div id="onetrust-button-group-parent" class="ot-sdk-three ot-sdk-columns has-reject-all-button"><div id="onetrust-button-group"><button id="onetrust-pc-btn-handler" aria-label="Cookies Settings, Opens the preference center dialog" aria-haspopup="dialog">Cookies Settings</button> <button id="onetrust-reject-all-handler">Reject All</button> <button id="onetrust-accept-btn-handler">Accept All Cookies</button></div></div></div></div><!-- Close Button --><div id="onetrust-close-btn-container"></div><!-- Close Button END--></div><div class="ot-force-consent-live-region ot-sr-only" aria-live="assertive" aria-atomic="true" style="position: absolute; width: 1px; height: 1px; padding: 0px; margin: -1px; overflow: hidden; clip: rect(0px, 0px, 0px, 0px); white-space: nowrap; border: 0px;"></div></div><div id="onetrust-pc-sdk" class="otPcPanel ot-hide ot-fade-in" lang="en"><div role="dialog" aria-modal="true" style="height: 100%;" aria-label="Privacy Preference Center"><!-- PC Header --><div class="ot-pc-header"><div class="ot-pc-logo"><img alt="OneTrust Company Logo" src="https://cdn.cookielaw.org/logos/4e85079a-4e3a-4ba5-a0ac-b85ac51e9d47/221d7757-1dc9-428d-971d-642d2cbb865a/d0529638-efff-446e-aa23-ea449b9acaa8/blank.png"></div></div><div id="ot-pc-content" class="ot-pc-scrollbar"><div class="ot-optout-signal ot-hide"><div class="ot-optout-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true"></svg></div><span id="ot-pc-gpc-txt"></span></div><h2 id="ot-pc-title">Privacy Preference Center</h2><div id="ot-pc-desc">Cookies are small data files that are placed on your computer or mobile device when you visit a website or use an online service. Cookies are widely used by organizations (like Yardi) in order to make their websites or services work, or to function more efficiently, as well as to provide reporting information. There are two types of cookies: session cookies and persistent cookies. Session cookies are stored in temporary memory, not retained after an end-user's browsing session ends and do not obtain information from the end-user's device. On the other hand, persistent cookies persist on your device in the browser's subfolder and are activated again once you visit the site that created the particular cookie and remains for the duration period set within the cookie's file. | |
| 3225 | +<br><br> | |
| 3226 | +Cookies set by the website or service operator are called "first party cookies." Cookies set by parties other than the website or service operator are called "third party cookies." Third party cookies typically enable certain third-party features or functionality to be provided on or through websites or services (such as, advertising, interactive content and analytics). The parties that set these third-party cookies can recognize an individual's computer both when they visit the website or use the service in question and also when they visit certain other websites. Click on the different category headings to find out more and change our default settings. | |
| 3227 | + <br><a href="/privacypolicy" class="privacy-notice-link" rel="noopener noreferrer" target="_blank" aria-label="More information about your privacy, opens in a new tab">Cookie Notice</a></div><button id="accept-recommended-btn-handler" ot-button-order="0">Allow All</button><section class="ot-sdk-row ot-cat-grp"><h3 id="ot-category-title"> Manage Consent Preferences</h3><div class="ot-accordion-layout ot-cat-item ot-vs-config" data-optanongroupid="C0001"><button ot-accordion="true" aria-expanded="false" aria-controls="ot-desc-id-C0001" aria-labelledby="ot-header-id-C0001 ot-status-id-C0001"></button><!-- Accordion header --><div class="ot-acc-hdr ot-always-active-group"><div class="ot-plus-minus"><span></span><span></span></div><h4 class="ot-cat-header" id="ot-header-id-C0001">Essential Website Cookies</h4><div id="ot-status-id-C0001" class="ot-always-active">Always Active</div></div><!-- accordion detail --><div class="ot-acc-grpcntr ot-acc-txt"><p class="ot-acc-grpdesc ot-category-desc" id="ot-desc-id-C0001">These cookies are strictly necessary to provide you with services available through our Sites and to use some of the Sites’ features, such as access to secure areas.</p><div class="ot-hlst-cntr"><button class="ot-link-btn category-host-list-handler" dir="ltr" aria-label="Essential Website Cookies - Cookie Details button opens Cookie List menu" data-parent-id="C0001">Cookies Details</button></div></div></div><div class="ot-accordion-layout ot-cat-item ot-vs-config" data-optanongroupid="C0004"><button ot-accordion="true" aria-expanded="false" aria-controls="ot-desc-id-C0004" aria-labelledby="ot-header-id-C0004"></button><!-- Accordion header --><div class="ot-acc-hdr"><div class="ot-plus-minus"><span></span><span></span></div><h4 class="ot-cat-header" id="ot-header-id-C0004">Targeting/Advertising Cookies</h4><div class="ot-tgl"><input type="checkbox" name="ot-group-id-C0004" id="ot-group-id-C0004" role="switch" class="category-switch-handler" data-optanongroupid="C0004" aria-labelledby="ot-header-id-C0004"> <label class="ot-switch" for="ot-group-id-C0004"><span class="ot-switch-nob"></span> <span class="ot-label-txt">Targeting/Advertising Cookies</span></label> </div></div><!-- accordion detail --><div class="ot-acc-grpcntr ot-acc-txt"><p class="ot-acc-grpdesc ot-category-desc" id="ot-desc-id-C0004">These cookies are used to make advertising messages more relevant to you. They perform functions like preventing the same ad from continuously reappearing, ensuring that ads are properly displayed for advertisers, and in some cases selecting advertisements that are based on your interests.</p><div class="ot-hlst-cntr"><button class="ot-link-btn category-host-list-handler" dir="ltr" aria-label="Targeting/Advertising Cookies - Cookie Details button opens Cookie List menu" data-parent-id="C0004">Cookies Details</button></div></div></div><div class="ot-accordion-layout ot-cat-item ot-vs-config" data-optanongroupid="C0002"><button ot-accordion="true" aria-expanded="false" aria-controls="ot-desc-id-C0002" aria-labelledby="ot-header-id-C0002"></button><!-- Accordion header --><div class="ot-acc-hdr"><div class="ot-plus-minus"><span></span><span></span></div><h4 class="ot-cat-header" id="ot-header-id-C0002">Performance and Functionality Cookies</h4><div class="ot-tgl"><input type="checkbox" name="ot-group-id-C0002" id="ot-group-id-C0002" role="switch" class="category-switch-handler" data-optanongroupid="C0002" aria-labelledby="ot-header-id-C0002"> <label class="ot-switch" for="ot-group-id-C0002"><span class="ot-switch-nob"></span> <span class="ot-label-txt">Performance and Functionality Cookies</span></label> </div></div><!-- accordion detail --><div class="ot-acc-grpcntr ot-acc-txt"><p class="ot-acc-grpdesc ot-category-desc" id="ot-desc-id-C0002">These cookies are used to enhance the performance and functionality of our Sites; to manage your preferences; to analyze and personalize your use of, or to generally help us better understand how our Sites are being used. We think that these cookies will improve your experience when using the Sites but are not essential. However, without these cookies, certain functionality (like videos) may become unavailable.</p><div class="ot-hlst-cntr"><button class="ot-link-btn category-host-list-handler" dir="ltr" aria-label="Performance and Functionality Cookies - Cookie Details button opens Cookie List menu" data-parent-id="C0002">Cookies Details</button></div></div></div><!-- Non Accordion Group --><!-- Accordion Group section starts --><!-- Accordion Group section ends --></section></div><section id="ot-pc-lst" class="ot-hide ot-pc-scrollbar"><div id="ot-pc-hdr"><div id="ot-lst-title"><button class="ot-link-btn back-btn-handler" aria-label="Back"><svg id="ot-back-arw" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 444.531 444.531" xml:space="preserve"><title>Back Button</title><g><path fill="#656565" d="M213.13,222.409L351.88,83.653c7.05-7.043,10.567-15.657,10.567-25.841c0-10.183-3.518-18.793-10.567-25.835 | |
| 3228 | + l-21.409-21.416C323.432,3.521,314.817,0,304.637,0s-18.791,3.521-25.841,10.561L92.649,196.425 | |
| 3229 | + c-7.044,7.043-10.566,15.656-10.566,25.841s3.521,18.791,10.566,25.837l186.146,185.864c7.05,7.043,15.66,10.564,25.841,10.564 | |
| 3230 | + s18.795-3.521,25.834-10.564l21.409-21.412c7.05-7.039,10.567-15.604,10.567-25.697c0-10.085-3.518-18.746-10.567-25.978 | |
| 3231 | + L213.13,222.409z"></path></g></svg></button><h3>Cookie List</h3></div><div class="ot-lst-subhdr"><div class="ot-search-cntr"><p role="status" class="ot-scrn-rdr"></p><input id="vendor-search-handler" type="text" name="vendor-search-handler" placeholder="Search…" aria-label="Cookie list search"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 -30 110 110" aria-hidden="true"><title>Search Icon</title><path fill="#2e3644" d="M55.146,51.887L41.588,37.786c3.486-4.144,5.396-9.358,5.396-14.786c0-12.682-10.318-23-23-23s-23,10.318-23,23 | |
| 3232 | + s10.318,23,23,23c4.761,0,9.298-1.436,13.177-4.162l13.661,14.208c0.571,0.593,1.339,0.92,2.162,0.92 | |
| 3233 | + c0.779,0,1.518-0.297,2.079-0.837C56.255,54.982,56.293,53.08,55.146,51.887z M23.984,6c9.374,0,17,7.626,17,17s-7.626,17-17,17 | |
| 3234 | + s-17-7.626-17-17S14.61,6,23.984,6z"></path></svg></div><div class="ot-fltr-cntr"><button id="filter-btn-handler" aria-label="Filter Cookie List" aria-haspopup="true" aria-expanded="false"><svg role="presentation" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 402.577 402.577" xml:space="preserve"><title>Filter Icon</title><g><path fill="#fff" d="M400.858,11.427c-3.241-7.421-8.85-11.132-16.854-11.136H18.564c-7.993,0-13.61,3.715-16.846,11.136 | |
| 3235 | + c-3.234,7.801-1.903,14.467,3.999,19.985l140.757,140.753v138.755c0,4.955,1.809,9.232,5.424,12.854l73.085,73.083 | |
| 3236 | + c3.429,3.614,7.71,5.428,12.851,5.428c2.282,0,4.66-0.479,7.135-1.43c7.426-3.238,11.14-8.851,11.14-16.845V172.166L396.861,31.413 | |
| 3237 | + C402.765,25.895,404.093,19.231,400.858,11.427z"></path></g></svg></button></div><div id="ot-anchor"></div><section id="ot-fltr-modal"><div id="ot-fltr-cnt"><button id="clear-filters-handler">Clear</button><fieldset class="ot-fltr-scrlcnt ot-pc-scrollbar"><legend id="ot-filter-list-header"></legend><ul class="ot-fltr-opts"><li class="ot-fltr-opt"><div class="ot-chkbox"><input id="chkbox-id" type="checkbox" class="category-filter-handler"> <label for="chkbox-id"><span class="ot-label-txt">checkbox label</span></label> <span class="ot-label-status">label</span></div></li></ul><div class="ot-fltr-btns"><button id="filter-apply-handler">Apply</button> <button id="filter-cancel-handler">Cancel</button></div></fieldset></div></section></div></div><section id="ot-lst-cnt" class="ot-pc-scrollbar"><div id="ot-sel-blk"><div class="ot-sel-all"><div class="ot-sel-all-hdr"><span class="ot-consent-hdr">Consent</span> <span class="ot-li-hdr">Leg.Interest</span></div><div class="ot-sel-all-chkbox"><div class="ot-chkbox" id="ot-selall-hostcntr"><input id="select-all-hosts-groups-handler" type="checkbox"> <label for="select-all-hosts-groups-handler"><span class="ot-label-txt">checkbox label</span></label> <span class="ot-label-status">label</span></div><div class="ot-chkbox" id="ot-selall-vencntr"><input id="select-all-vendor-groups-handler" type="checkbox"> <label for="select-all-vendor-groups-handler"><span class="ot-label-txt">checkbox label</span></label> <span class="ot-label-status">label</span></div><div class="ot-chkbox" id="ot-selall-licntr"><input id="select-all-vendor-leg-handler" type="checkbox"> <label for="select-all-vendor-leg-handler"><span class="ot-label-txt">checkbox label</span></label> <span class="ot-label-status">label</span></div></div></div></div><div class="ot-sdk-row"><div class="ot-sdk-column"><ul id="ot-host-lst"></ul></div></div></section></section><!-- Footer buttons and logo --><div class="ot-pc-footer ot-pc-scrollbar"><div class="ot-btn-container"><button class="ot-pc-refuse-all-handler" ot-button-order="1">Reject All</button> <button class="save-preference-btn-handler onetrust-close-btn-handler" ot-button-order="2">Confirm My Choices</button></div><div class="ot-pc-footer-logo"><a href="https://www.onetrust.com/solutions/consent-and-preferences/" target="_blank" rel="noopener noreferrer" aria-label="Powered by OneTrust Opens in a new Tab"><img alt="Powered by Onetrust" src="https://cdn.cookielaw.org/logos/static/powered_by_logo.svg" title="Powered by OneTrust Opens in a new Tab" aria-hidden="true"></a></div></div><!-- Cookie subgroup container --><!-- Vendor list link --><!-- Cookie lost link --><!-- Toggle HTML element --><!-- Checkbox HTML --><!-- Arrow SVG element --><!-- plus minus--><!-- Accordion basic element --><span class="ot-scrn-rdr" aria-atomic="true" aria-live="polite"></span><!-- Vendor Service container and item template --></div><iframe class="ot-text-resize" sandbox="allow-same-origin" title="onetrust-text-resize" style="position: absolute; top: -50000px; width: 100em;" aria-hidden="true"></iframe></div><div id="ot-sdk-btn-floating" class="ot-floating-button ot-hide" data-title="Cookies Settings"><div class="ot-floating-button__front custom-persistent-icon"><button type="button" class="ot-floating-button__open" aria-label="Cookies Settings" aria-haspopup="dialog"></button></div><div class="ot-floating-button__back custom-persistent-icon"><button type="button" class="ot-floating-button__close" aria-label="Close Preferences" aria-hidden="true" style="display: none;"><!--?xml version="1.0" encoding="UTF-8"?--> <svg role="presentation" tabindex="-1" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg"><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="Banner_02" class="ot-floating-button__svg-fill" transform="translate(-318.000000, -725.000000)" fill="#292B2E" fill-rule="nonzero"><g id="Group-2" transform="translate(305.000000, 712.000000)"><g id="icon/16px/white/close"><polygon id="Line1" points="13.3333333 14.9176256 35.0823744 36.6666667 36.6666667 35.0823744 14.9176256 13.3333333"></polygon><polygon id="Line2" transform="translate(25.000000, 25.000000) scale(-1, 1) translate(-25.000000, -25.000000) " points="13.3333333 14.9176256 35.0823744 36.6666667 36.6666667 35.0823744 14.9176256 13.3333333"></polygon></g></g></g></g></svg></button></div></div></div><iframe id="nr-ext-rsicon" style="position: absolute; display: none; width: 50px; height: 50px; z-index: 2147483647; border-style: none; background: transparent;"></iframe></body><grammarly-desktop-integration data-grammarly-shadow-root="true" style="visibility: visible !important;"></grammarly-desktop-integration></html> | |
| \ No newline at end of file | ||
added
tests/fixtures/brigil/1bc1f1e0dd511ab7e609.html
+940 −0
@@ -0,0 +1,6187 @@ | ||
| 1 | +<html lang="en" itemscope="" itemtype="https://schema.org/FAQPage" style="--vw: 11.87px; scroll-padding-top: 80px; --helpwidget-bottom-offset: 200px;"><head> | |
| 2 | + | |
| 3 | + <style> | |
| 4 | + #ot-sdk-btn-floating { | |
| 5 | + z-index: 99999 !important; /* 1 less than "Skip to main content" link, see skip-navigation-link.scss */ | |
| 6 | + } | |
| 7 | + </style> | |
| 8 | + <script async="" src="https://tags.srv.stackadapt.com/events.js"></script><script async="" src="https://www.googletagmanager.com/gtm.js?id=GTM-TL4S4ZL"></script><script type="text/javascript"> | |
| 9 | + window.dataLayer = window.dataLayer || []; | |
| 10 | + function gtag() { dataLayer.push(arguments); } | |
| 11 | + </script> | |
| 12 | + <!-- OneTrust Cookies Consent Notice start --> | |
| 13 | + <script id="onetrust-script" src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" data-document-language="true" async="" type="text/javascript" charset="UTF-8" data-domain-script="019b0a3f-47cc-7952-bf04-817bd4831622"></script> | |
| 14 | + <script type="text/javascript"> | |
| 15 | + function OptanonWrapper() { | |
| 16 | + // The "Powered by OneTrust" img inside .ot-pc-footer-logo has redundant alt text | |
| 17 | + // since the wrapping anchor already has aria-label. Hide the img from the | |
| 18 | + // accessibility tree so screen readers don't announce it twice. | |
| 19 | + function fixPoweredByImage() { | |
| 20 | + var img = document.querySelector('.ot-pc-footer-logo img'); | |
| 21 | + if (img) { | |
| 22 | + img.setAttribute('aria-hidden', 'true'); | |
| 23 | + return true; | |
| 24 | + } | |
| 25 | + return false; | |
| 26 | + } | |
| 27 | + | |
| 28 | + // OneTrust accordion buttons reference ot-status-id-* in aria-labelledby but those | |
| 29 | + // elements are never rendered for toggle-style categories, leaving dangling ID refs. | |
| 30 | + // Strip any ID tokens that don't resolve to an actual DOM element. | |
| 31 | + function fixMissingAriaLabelledBy() { | |
| 32 | + var container = document.getElementById('onetrust-pc-sdk'); | |
| 33 | + if (!container) return false; | |
| 34 | + container.querySelectorAll('[aria-labelledby]').forEach(function (el) { | |
| 35 | + var ids = el.getAttribute('aria-labelledby').split(/\s+/); | |
| 36 | + var valid = ids.filter(function (id) { return id && document.getElementById(id); }); | |
| 37 | + if (valid.length !== ids.length) { | |
| 38 | + el.setAttribute('aria-labelledby', valid.join(' ')); | |
| 39 | + } | |
| 40 | + }); | |
| 41 | + return true; | |
| 42 | + } | |
| 43 | + | |
| 44 | + var imgDone = fixPoweredByImage(); | |
| 45 | + var ariaDone = fixMissingAriaLabelledBy(); | |
| 46 | + | |
| 47 | + if (!imgDone || !ariaDone) { | |
| 48 | + // Preferences panel may be lazy-injected when user first opens it | |
| 49 | + var sdk = document.getElementById('onetrust-consent-sdk') || document.body; | |
| 50 | + var observer = new MutationObserver(function () { | |
| 51 | + if (!imgDone) imgDone = fixPoweredByImage(); | |
| 52 | + if (!ariaDone) ariaDone = fixMissingAriaLabelledBy(); | |
| 53 | + if (imgDone && ariaDone) observer.disconnect(); | |
| 54 | + }); | |
| 55 | + observer.observe(sdk, { childList: true, subtree: true }); | |
| 56 | + } | |
| 57 | + } | |
| 58 | + </script> | |
| 59 | + <!-- OneTrust Cookies Consent Notice end --> | |
| 60 | + | |
| 61 | + | |
| 62 | +<meta charset="utf-8"> | |
| 63 | +<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| 64 | +<meta name="viewport" content="width=device-width, initial-scale=1.0 "> | |
| 65 | + <title>Property details for Aura Rivermead in Gatineau, QC</title> | |
| 66 | + <meta name="description" content="Check out photos, floor plans, amenities, rental rates & availability at Aura Rivermead in Gatineau, QC and submit your lease application today!"> | |
| 67 | + <meta name="referrer" content="always"> | |
| 68 | + <meta name="keywords" content=""> | |
| 69 | + <meta name="author" content="Aura Rivermead"> | |
| 70 | + <link rel="canonical" href="https://www.brigil.com/apartments/qc/gatineau/aura-rivermead/default"> | |
| 71 | + | |
| 72 | + | |
| 73 | + <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin=""> | |
| 74 | + <link rel="preconnect" href="https://resource.rentcafe.com"> | |
| 75 | + | |
| 76 | + | |
| 77 | + <link rel="preload" as="image" href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_lfill,w_420,ar_1/s3/2/252329/aura%20rivermead_photo_gallery_01.png" media="(max-width: 419.99px)" fetchpriority="high"> | |
| 78 | + <link rel="preload" as="image" href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_lfill,w_576,ar_1/s3/2/252329/aura%20rivermead_photo_gallery_01.png" media="(min-width: 420px) and (max-width: 575.99px) and (-webkit-max-device-pixel-ratio: 1.99), (min-width: 420px) and (max-width: 575.99px) and (max-resolution: 1.99dppx)" fetchpriority="high"> | |
| 79 | + <link rel="preload" as="image" href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,c_fill,w_576,ar_1,dpr_2/s3/2/252329/aura%20rivermead_photo_gallery_01.png" media="(min-width: 420px) and (max-width: 575.99px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 420px) and (max-width: 575.99px) and (min-resolution: 2dppx)" fetchpriority="high"> | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | +<link rel="preload" href="https://cdngeneralmvc.rentcafe.com/common/scss/fontawesome/webfonts/ysi-fa-solid.woff2" as="font" type="font/woff2" crossorigin="anonymous"> | |
| 84 | + | |
| 85 | + <meta name="theme-color" content="#999"> | |
| 86 | + <link href="https://resource.rentcafe.com/image/upload/q_auto,f_auto,w_152,h_152/s3/2/252329/brigil-favicon.png" rel="apple-touch-icon"> | |
| 87 | + <link rel="manifest" href="/manifest.json"> | |
| 88 | + <link href="https://resource.rentcafe.com/image/upload/q_auto,f_auto/s3/2/252329/brigil-favicon.png" type="image/x-icon" rel="shortcut icon"> | |
| 89 | + | |
| 90 | + | |
| 91 | + <!-- Google tag (gtag.js) --> <script async="" src="https://www.googletagmanager.com/gtag/js?id=G-VPZPDPV6N2"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('set', 'linker', {'domains': ['www.brigil.com', 'securecafe.com', 'rentcafe.com', 'securecafenet.com', 'securecafeapplicant.com']}); gtag('js', new Date()); gtag('config', 'G-VPZPDPV6N2'); gtag('config', 'G-FLK5J6Y89X');</script> | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | +<!-- Google Tag Manager --> | |
| 100 | +<script> | |
| 101 | +(function(w,d,s,l,i){ | |
| 102 | + w[l]=w[l]||[]; | |
| 103 | + w[l].push({'gtm.start': new Date().getTime(), event:'gtm.js'}); | |
| 104 | + var f=d.getElementsByTagName(s)[0], | |
| 105 | + j=d.createElement(s), | |
| 106 | + dl=l!='dataLayer'?'&l='+l:''; | |
| 107 | + j.async=true; | |
| 108 | + j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl; | |
| 109 | + f.parentNode.insertBefore(j,f); | |
| 110 | +})(window,document,'script','dataLayer','GTM-TL4S4ZL'); | |
| 111 | +</script> | |
| 112 | +<!-- End Google Tag Manager --> | |
| 113 | + | |
| 114 | + | |
| 115 | +<script>!function(s,a,e,v,n,t,z){if(s.saq)return;n=s.saq=function(){n.callMethod?n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!s._saq)s._saq=n;n.push=n;n.loaded=!0;n.version='1.0';n.queue=[];t=a.createElement(e);t.async=!0;t.src=v;z=a.getElementsByTagName(e)[0];z.parentNode.insertBefore(t,z)}(window,document,'script','https://tags.srv.stackadapt.com/events.js');saq('ts', 'EFvi46X5uHLaQKX7qNrypQ');</script> | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + <link href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/brigil_corp1.558856.134323225561398335.css" rel="stylesheet" type="text/css" id="mainCSS"> | |
| 121 | +<link href="https://cdngeneralmvc.rentcafe.com/css/scss/399463/brigil_corp1/widgets/photogallery-propertydetails-widget.558856.134323225561398335.css" rel="stylesheet" type="text/css"> | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + <style>brigil_corp1_/css/scss/399463/brigil_corp1/widgets/google-font-local-fallback-widget.558856.134323225561398335.css:nodata</style> | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + <script>window.ysi={callbacks:[],registerCallback:function(i){"function"==typeof i&&this.callbacks.push(i)},init:function(){ysi.MQBreakpointListener&&ysi.MQBreakpointListener.init(),ysi.main();for(var i=0;i<ysi.callbacks.length;i++)ysi.callbacks[i]();ysi.smartclasses&&ysi.smartclasses.init()},main:function(){}},document.addEventListener("DOMContentLoaded",function(i){window.location.pathname.indexOf("/index")>-1&&history.replaceState(null,"",window.location.pathname.replace("index","")+window.location.search),ysi.init()});</script><script src="https://cdn.cookielaw.org/scripttemplates/202608.1.0/otBannerSdk.js" async="" type="text/javascript"></script><style id="onetrust-style">#onetrust-banner-sdk .onetrust-vendors-list-handler{cursor:pointer;color:#1f96db;font-size:inherit;font-weight:bold;text-decoration:none;margin-left:5px;white-space:normal;word-wrap:break-word;text-align:left}#onetrust-banner-sdk .onetrust-vendors-list-handler:hover{color:#1f96db}#onetrust-banner-sdk:focus{outline:2px solid #000;outline-offset:-2px}#onetrust-banner-sdk a:focus{outline:2px solid #000}#onetrust-banner-sdk #onetrust-accept-btn-handler,#onetrust-banner-sdk #onetrust-reject-all-handler,#onetrust-banner-sdk #onetrust-pc-btn-handler{outline-offset:1px}#onetrust-banner-sdk.ot-bnr-w-logo .ot-bnr-logo{height:64px;width:64px}#onetrust-banner-sdk #onetrust-policy svg,#onetrust-banner-sdk .banner-option svg{height:13px;width:13px;margin-left:1px}#onetrust-banner-sdk #onetrust-policy svg.ot-ext-lnk,#onetrust-banner-sdk .banner-option svg.ot-ext-lnk{vertical-align:middle}#onetrust-banner-sdk .ot-tcf2-vendor-count.ot-text-bold{font-weight:bold}#onetrust-banner-sdk .ot-button-order-0{order:0}#onetrust-banner-sdk .ot-button-order-1{order:1}#onetrust-banner-sdk .ot-button-order-2{order:2}#onetrust-banner-sdk #onetrust-close-btn-container svg{height:10px;width:10px;pointer-events:none}#onetrust-banner-sdk .ot-close-icon,#onetrust-pc-sdk .ot-close-icon,#ot-sync-ntfy .ot-close-icon{background-size:contain;background-repeat:no-repeat;background-position:center;height:12px;width:12px}#onetrust-banner-sdk .powered-by-logo,#onetrust-banner-sdk .ot-pc-footer-logo a,#onetrust-pc-sdk .powered-by-logo,#onetrust-pc-sdk .ot-pc-footer-logo a,#ot-sync-ntfy .powered-by-logo,#ot-sync-ntfy .ot-pc-footer-logo a{background-size:contain;background-repeat:no-repeat;background-position:center;height:25px;width:152px;display:block;text-decoration:none;font-size:.75em}#onetrust-banner-sdk .powered-by-logo:hover,#onetrust-banner-sdk .ot-pc-footer-logo a:hover,#onetrust-pc-sdk .powered-by-logo:hover,#onetrust-pc-sdk .ot-pc-footer-logo a:hover,#ot-sync-ntfy .powered-by-logo:hover,#ot-sync-ntfy .ot-pc-footer-logo a:hover{color:#565656}#onetrust-banner-sdk h3 *,#onetrust-banner-sdk h4 *,#onetrust-banner-sdk h6 *,#onetrust-banner-sdk button *,#onetrust-banner-sdk a[data-parent-id] *,#onetrust-banner-sdk p[role=heading] *,#onetrust-pc-sdk h3 *,#onetrust-pc-sdk h4 *,#onetrust-pc-sdk h6 *,#onetrust-pc-sdk button *,#onetrust-pc-sdk a[data-parent-id] *,#onetrust-pc-sdk p[role=heading] *,#ot-sync-ntfy h3 *,#ot-sync-ntfy h4 *,#ot-sync-ntfy h6 *,#ot-sync-ntfy button *,#ot-sync-ntfy a[data-parent-id] *,#ot-sync-ntfy p[role=heading] *{font-size:inherit;font-weight:inherit;color:inherit}#onetrust-banner-sdk .ot-hide,#onetrust-pc-sdk .ot-hide,#ot-sync-ntfy .ot-hide{display:none !important}#onetrust-banner-sdk button.ot-link-btn:hover,#onetrust-pc-sdk button.ot-link-btn:hover,#ot-sync-ntfy button.ot-link-btn:hover{text-decoration:underline;opacity:1}#onetrust-pc-sdk .ot-sdk-row .ot-sdk-column{padding:0}#onetrust-pc-sdk .ot-sdk-container{padding-right:0}#onetrust-pc-sdk .ot-sdk-row{flex-direction:initial;width:100%}#onetrust-pc-sdk [type=checkbox]:checked,#onetrust-pc-sdk [type=checkbox]:not(:checked){pointer-events:initial}#onetrust-pc-sdk [type=checkbox]:disabled+label::before,#onetrust-pc-sdk [type=checkbox]:disabled+label:after,#onetrust-pc-sdk [type=checkbox]:disabled+label,#onetrust-pc-sdk [type=checkbox][aria-disabled=true]+label::before,#onetrust-pc-sdk [type=checkbox][aria-disabled=true]+label:after,#onetrust-pc-sdk [type=checkbox][aria-disabled=true]+label{pointer-events:none;opacity:.8}#onetrust-pc-sdk #vendor-list-content{transform:translate3d(0, 0, 0)}#onetrust-pc-sdk li input[type=checkbox]{z-index:1}#onetrust-pc-sdk li .ot-checkbox label{z-index:2}#onetrust-pc-sdk li .ot-checkbox input[type=checkbox]{height:auto;width:auto}#onetrust-pc-sdk li .host-title a,#onetrust-pc-sdk li .ot-host-name a,#onetrust-pc-sdk li .accordion-text,#onetrust-pc-sdk li .ot-acc-txt{z-index:2;position:relative}#onetrust-pc-sdk input{margin:3px .1ex}#onetrust-pc-sdk .pc-logo,#onetrust-pc-sdk .ot-pc-logo{height:60px;width:180px;background-position:center;background-size:contain;background-repeat:no-repeat;display:inline-flex;justify-content:center;align-items:center}#onetrust-pc-sdk .pc-logo img,#onetrust-pc-sdk .ot-pc-logo img{max-height:100%;max-width:100%}#onetrust-pc-sdk .pc-logo svg,#onetrust-pc-sdk .ot-pc-logo svg{height:60px;width:180px}#onetrust-pc-sdk #close-pc-btn-handler>svg{margin:auto;display:block;height:12px;width:12px}#onetrust-pc-sdk #ot-pc-desc svg,#onetrust-pc-sdk .ot-desc-cntr svg,#onetrust-pc-sdk .ot-cat-grp svg{height:13px;width:13px;margin-left:-7px;vertical-align:middle;margin-right:5px}#onetrust-pc-sdk #ot-pc-desc svg.ot-ext-lnk{margin-right:8px}#onetrust-pc-sdk #ot-pc-desc .ot-userid-desc svg.ot-ext-lnk,#onetrust-pc-sdk #ot-pc-desc~.ot-userid-desc svg.ot-ext-lnk{margin-left:3px;margin-right:8px}#onetrust-pc-sdk .ot-host-hdr>a{display:inline-block}#onetrust-pc-sdk input[aria-disabled=true],#onetrust-banner-sdk input[aria-disabled=true]{pointer-events:none;opacity:.6}#onetrust-pc-sdk input[aria-disabled=true]+label,#onetrust-banner-sdk input[aria-disabled=true]+label{pointer-events:none;opacity:.6;cursor:not-allowed}#onetrust-pc-sdk .screen-reader-only,#onetrust-pc-sdk .ot-scrn-rdr,.ot-sdk-cookie-policy .screen-reader-only,.ot-sdk-cookie-policy .ot-scrn-rdr{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}#onetrust-pc-sdk.ot-fade-in,.onetrust-pc-dark-filter.ot-fade-in,#onetrust-banner-sdk.ot-fade-in,.ot-confirm-dialog-overlay.ot-fade-in{animation-name:onetrust-fade-in;animation-duration:400ms;animation-timing-function:ease-in-out}#onetrust-pc-sdk.ot-hide{display:none !important}.onetrust-pc-dark-filter.ot-hide{display:none !important}#ot-sdk-btn.ot-sdk-show-settings,#ot-sdk-btn.optanon-show-settings{color:#fff;background-color:#468254;height:auto;white-space:normal;word-wrap:break-word;padding:.8em 2em;font-size:.8em;line-height:1.2;cursor:pointer;-moz-transition:.1s ease;-o-transition:.1s ease;-webkit-transition:1s ease;transition:.1s ease}#ot-sdk-btn.ot-sdk-show-settings:hover,#ot-sdk-btn.optanon-show-settings:hover{color:#fff;background-color:#2c6415}#ot-sdk-btn.ot-sdk-show-settings:active,#ot-sdk-btn.optanon-show-settings:active{color:#fff;background-color:#2c6415;border:1px solid rgba(162,192,169,.5)}.onetrust-pc-dark-filter{background:rgba(0,0,0,.5);z-index:2147483646;width:100%;height:100%;overflow:hidden;position:fixed;top:0;bottom:0;left:0}@keyframes onetrust-fade-in{0%{opacity:0}100%{opacity:1}}.ot-cookie-label{text-decoration:underline}@media only screen and (min-width: 426px)and (max-width: 896px)and (orientation: landscape){#onetrust-pc-sdk p{font-size:.75em}}#onetrust-banner-sdk .banner-option-input:focus+label{outline:1px solid #000;outline-style:auto}.category-vendors-list-handler+a:focus,.category-vendors-list-handler+a:focus-visible{outline:2px solid #000}#onetrust-pc-sdk .ot-userid-title{margin-top:10px}#onetrust-pc-sdk .ot-userid-title>span,#onetrust-pc-sdk .ot-userid-timestamp>span{font-weight:700}#onetrust-pc-sdk .ot-userid-desc{font-style:italic}#onetrust-pc-sdk .ot-host-desc a{pointer-events:initial}#onetrust-pc-sdk .ot-ven-hdr>p a{position:relative;z-index:2;pointer-events:initial}#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info a,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info a{margin-right:8px}#onetrust-pc-sdk .ot-vnd-item svg.ot-ext-lnk{align-self:center}#onetrust-pc-sdk .ot-pc-footer-logo svg,#onetrust-pc-sdk .ot-pc-footer-logo img{width:136px;height:16px}#onetrust-pc-sdk .ot-pur-vdr-count{font-weight:400;font-size:.8em;padding-top:3px;display:block}#onetrust-pc-sdk p[role=heading] .ot-pur-vdr-count{font-weight:400 !important;font-size:.8em !important}#onetrust-banner-sdk #onetrust-policy .ot-optout-signal,#onetrust-pc-sdk #ot-pc-content .ot-optout-signal{border:1px solid #32ae88;border-radius:3px;padding:5px;margin-bottom:10px;background-color:#f9fffa;font-size:.85rem;line-height:2}#onetrust-banner-sdk #onetrust-policy .ot-optout-signal .ot-optout-icon,#onetrust-pc-sdk #ot-pc-content .ot-optout-signal .ot-optout-icon{display:inline;margin-right:5px}#onetrust-banner-sdk #onetrust-policy .ot-optout-signal svg,#onetrust-pc-sdk #ot-pc-content .ot-optout-signal svg{height:20px;width:30px}#onetrust-banner-sdk #onetrust-policy .ot-optout-signal svg.ot-source-sprite,#onetrust-pc-sdk #ot-pc-content .ot-optout-signal svg.ot-source-sprite{position:relative;bottom:-3px}#onetrust-banner-sdk #onetrust-policy .ot-optout-signal svg:not(.ot-source-sprite),#onetrust-pc-sdk #ot-pc-content .ot-optout-signal svg:not(.ot-source-sprite){transform:scale(0.5)}#onetrust-banner-sdk #onetrust-policy .ot-optout-signal svg:not(.ot-source-sprite) path,#onetrust-pc-sdk #ot-pc-content .ot-optout-signal svg:not(.ot-source-sprite) path{fill:#32ae88}#onetrust-consent-sdk .ot-general-modal{overflow:hidden;position:fixed;margin:0 auto;top:50%;left:50%;width:40%;padding:1.5rem;max-width:575px;min-width:575px;z-index:2147483647;border-radius:2.5px;transform:translate(-50%, -50%)}#onetrust-consent-sdk .ot-signature-health-group{margin-top:1rem;padding-left:1.25rem;padding-right:1.25rem;margin-bottom:.625rem;width:calc(100% - 2.5rem)}#onetrust-consent-sdk .ot-signature-health-group .ot-signature-health-form{gap:.5rem}#onetrust-consent-sdk .ot-signature-health .ot-signature-health-form{width:70%;gap:.35rem}#onetrust-consent-sdk .ot-signature-health .ot-signature-input{height:38px;padding:6px 10px;background-color:#fff;border:1px solid #d1d1d1;border-radius:4px;box-shadow:none;box-sizing:border-box}#onetrust-consent-sdk .ot-signature-health .ot-signature-subtitle{font-size:1.125rem}#onetrust-consent-sdk .ot-signature-health .ot-signature-group-title{font-size:1.25rem;font-weight:bold}#onetrust-consent-sdk .ot-signature-health,#onetrust-consent-sdk .ot-signature-health-group{display:flex;flex-direction:column;gap:1rem}#onetrust-consent-sdk .ot-signature-health .ot-signature-cont,#onetrust-consent-sdk .ot-signature-health-group .ot-signature-cont{display:flex;flex-direction:column;gap:.25rem}#onetrust-consent-sdk .ot-signature-health .ot-signature-paragraph,#onetrust-consent-sdk .ot-signature-health-group .ot-signature-paragraph{margin:0;line-height:20px;font-size:max(14px,.875rem)}#onetrust-consent-sdk .ot-signature-health .ot-health-signature-error,#onetrust-consent-sdk .ot-signature-health-group .ot-health-signature-error{color:#4d4d4d;font-size:min(12px,.75rem)}#onetrust-consent-sdk .ot-signature-health .ot-signature-buttons-cont,#onetrust-consent-sdk .ot-signature-health-group .ot-signature-buttons-cont{margin-top:max(.75rem,2%);gap:1rem;display:flex;justify-content:flex-end}#onetrust-consent-sdk .ot-signature-health .ot-signature-button,#onetrust-consent-sdk .ot-signature-health-group .ot-signature-button{flex:1;height:auto;color:#fff;cursor:pointer;line-height:1.2;min-width:125px;font-weight:600;font-size:.813em;border-radius:2px;padding:12px 10px;white-space:normal;word-wrap:break-word;word-break:break-word;background-color:#68b631;border:2px solid #68b631}#onetrust-consent-sdk .ot-signature-health .ot-signature-button.reject,#onetrust-consent-sdk .ot-signature-health-group .ot-signature-button.reject{background-color:#fff}#onetrust-consent-sdk .ot-input-field-cont{display:flex;flex-direction:column;gap:.5rem}#onetrust-consent-sdk .ot-input-field-cont .ot-signature-input{width:65%}#onetrust-consent-sdk .ot-signature-health-form{display:flex;flex-direction:column}#onetrust-consent-sdk .ot-signature-health-form .ot-signature-label{margin-bottom:0;line-height:20px;font-size:max(14px,.875rem)}#onetrust-consent-sdk #onetrust-sprite-svg{display:none}@media only screen and (max-width: 600px){#onetrust-consent-sdk .ot-general-modal{min-width:100%}#onetrust-consent-sdk .ot-signature-health .ot-signature-health-form{width:100%}#onetrust-consent-sdk .ot-input-field-cont .ot-signature-input{width:100%}}#onetrust-banner-sdk,#onetrust-pc-sdk,#ot-sdk-cookie-policy,#ot-sync-ntfy{font-size:16px}#onetrust-banner-sdk *,#onetrust-banner-sdk ::after,#onetrust-banner-sdk ::before,#onetrust-pc-sdk *,#onetrust-pc-sdk ::after,#onetrust-pc-sdk ::before,#ot-sdk-cookie-policy *,#ot-sdk-cookie-policy ::after,#ot-sdk-cookie-policy ::before,#ot-sync-ntfy *,#ot-sync-ntfy ::after,#ot-sync-ntfy ::before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}#onetrust-banner-sdk div,#onetrust-banner-sdk span,#onetrust-banner-sdk h1,#onetrust-banner-sdk h2,#onetrust-banner-sdk h3,#onetrust-banner-sdk h4,#onetrust-banner-sdk h5,#onetrust-banner-sdk h6,#onetrust-banner-sdk p,#onetrust-banner-sdk img,#onetrust-banner-sdk svg,#onetrust-banner-sdk button,#onetrust-banner-sdk section,#onetrust-banner-sdk a,#onetrust-banner-sdk label,#onetrust-banner-sdk input,#onetrust-banner-sdk ul,#onetrust-banner-sdk li,#onetrust-banner-sdk nav,#onetrust-banner-sdk table,#onetrust-banner-sdk thead,#onetrust-banner-sdk tr,#onetrust-banner-sdk td,#onetrust-banner-sdk tbody,#onetrust-banner-sdk .ot-main-content,#onetrust-banner-sdk .ot-toggle,#onetrust-banner-sdk #ot-content,#onetrust-banner-sdk #ot-pc-content,#onetrust-banner-sdk .checkbox,#onetrust-pc-sdk div,#onetrust-pc-sdk span,#onetrust-pc-sdk h1,#onetrust-pc-sdk h2,#onetrust-pc-sdk h3,#onetrust-pc-sdk h4,#onetrust-pc-sdk h5,#onetrust-pc-sdk h6,#onetrust-pc-sdk p,#onetrust-pc-sdk img,#onetrust-pc-sdk svg,#onetrust-pc-sdk button,#onetrust-pc-sdk section,#onetrust-pc-sdk a,#onetrust-pc-sdk label,#onetrust-pc-sdk input,#onetrust-pc-sdk ul,#onetrust-pc-sdk li,#onetrust-pc-sdk nav,#onetrust-pc-sdk table,#onetrust-pc-sdk thead,#onetrust-pc-sdk tr,#onetrust-pc-sdk td,#onetrust-pc-sdk tbody,#onetrust-pc-sdk .ot-main-content,#onetrust-pc-sdk .ot-toggle,#onetrust-pc-sdk #ot-content,#onetrust-pc-sdk #ot-pc-content,#onetrust-pc-sdk .checkbox,#ot-sdk-cookie-policy div,#ot-sdk-cookie-policy span,#ot-sdk-cookie-policy h1,#ot-sdk-cookie-policy h2,#ot-sdk-cookie-policy h3,#ot-sdk-cookie-policy h4,#ot-sdk-cookie-policy h5,#ot-sdk-cookie-policy h6,#ot-sdk-cookie-policy p,#ot-sdk-cookie-policy img,#ot-sdk-cookie-policy svg,#ot-sdk-cookie-policy button,#ot-sdk-cookie-policy section,#ot-sdk-cookie-policy a,#ot-sdk-cookie-policy label,#ot-sdk-cookie-policy input,#ot-sdk-cookie-policy ul,#ot-sdk-cookie-policy li,#ot-sdk-cookie-policy nav,#ot-sdk-cookie-policy table,#ot-sdk-cookie-policy thead,#ot-sdk-cookie-policy tr,#ot-sdk-cookie-policy td,#ot-sdk-cookie-policy tbody,#ot-sdk-cookie-policy .ot-main-content,#ot-sdk-cookie-policy .ot-toggle,#ot-sdk-cookie-policy #ot-content,#ot-sdk-cookie-policy #ot-pc-content,#ot-sdk-cookie-policy .checkbox,#ot-sync-ntfy div,#ot-sync-ntfy span,#ot-sync-ntfy h1,#ot-sync-ntfy h2,#ot-sync-ntfy h3,#ot-sync-ntfy h4,#ot-sync-ntfy h5,#ot-sync-ntfy h6,#ot-sync-ntfy p,#ot-sync-ntfy img,#ot-sync-ntfy svg,#ot-sync-ntfy button,#ot-sync-ntfy section,#ot-sync-ntfy a,#ot-sync-ntfy label,#ot-sync-ntfy input,#ot-sync-ntfy ul,#ot-sync-ntfy li,#ot-sync-ntfy nav,#ot-sync-ntfy table,#ot-sync-ntfy thead,#ot-sync-ntfy tr,#ot-sync-ntfy td,#ot-sync-ntfy tbody,#ot-sync-ntfy .ot-main-content,#ot-sync-ntfy .ot-toggle,#ot-sync-ntfy #ot-content,#ot-sync-ntfy #ot-pc-content,#ot-sync-ntfy .checkbox{font-family:inherit;font-weight:normal;-webkit-font-smoothing:auto;letter-spacing:normal;line-height:normal;padding:0;margin:0;height:auto;min-height:0;max-height:none;width:auto;min-width:0;max-width:none;border-radius:0;border:none;clear:none;float:none;position:static;bottom:auto;left:auto;right:auto;top:auto;text-align:left;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;white-space:normal;background:none;overflow:visible;vertical-align:baseline;visibility:visible;z-index:auto;box-shadow:none}#onetrust-banner-sdk img,#onetrust-pc-sdk img,#ot-sdk-cookie-policy img,#ot-sync-ntfy img{overflow:hidden !important}#onetrust-banner-sdk label:before,#onetrust-banner-sdk label:after,#onetrust-banner-sdk .checkbox:after,#onetrust-banner-sdk .checkbox:before,#onetrust-pc-sdk label:before,#onetrust-pc-sdk label:after,#onetrust-pc-sdk .checkbox:after,#onetrust-pc-sdk .checkbox:before,#ot-sdk-cookie-policy label:before,#ot-sdk-cookie-policy label:after,#ot-sdk-cookie-policy .checkbox:after,#ot-sdk-cookie-policy .checkbox:before,#ot-sync-ntfy label:before,#ot-sync-ntfy label:after,#ot-sync-ntfy .checkbox:after,#ot-sync-ntfy .checkbox:before{content:"";content:none}#onetrust-banner-sdk .ot-sdk-container,#onetrust-pc-sdk .ot-sdk-container,#ot-sdk-cookie-policy .ot-sdk-container{position:relative;width:100%;max-width:100%;margin:0 auto;padding:0 20px;box-sizing:border-box}#onetrust-banner-sdk .ot-sdk-column,#onetrust-banner-sdk .ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-column,#onetrust-pc-sdk .ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-column,#ot-sdk-cookie-policy .ot-sdk-columns{width:100%;float:left;box-sizing:border-box;padding:0;display:initial}@media(min-width: 400px){#onetrust-banner-sdk .ot-sdk-container,#onetrust-pc-sdk .ot-sdk-container,#ot-sdk-cookie-policy .ot-sdk-container{width:90%;padding:0}}@media(min-width: 550px){#onetrust-banner-sdk .ot-sdk-container,#onetrust-pc-sdk .ot-sdk-container,#ot-sdk-cookie-policy .ot-sdk-container{width:100%}#onetrust-banner-sdk .ot-sdk-column,#onetrust-banner-sdk .ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-column,#onetrust-pc-sdk .ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-column,#ot-sdk-cookie-policy .ot-sdk-columns{margin-left:4%}#onetrust-banner-sdk .ot-sdk-column:first-child,#onetrust-banner-sdk .ot-sdk-columns:first-child,#onetrust-pc-sdk .ot-sdk-column:first-child,#onetrust-pc-sdk .ot-sdk-columns:first-child,#ot-sdk-cookie-policy .ot-sdk-column:first-child,#ot-sdk-cookie-policy .ot-sdk-columns:first-child{margin-left:0}#onetrust-banner-sdk .ot-sdk-two.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-two.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-two.ot-sdk-columns{width:13.3333333333%}#onetrust-banner-sdk .ot-sdk-three.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-three.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-three.ot-sdk-columns{width:22%}#onetrust-banner-sdk .ot-sdk-four.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-four.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-four.ot-sdk-columns{width:30.6666666667%}#onetrust-banner-sdk .ot-sdk-eight.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-eight.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-eight.ot-sdk-columns{width:65.3333333333%}#onetrust-banner-sdk .ot-sdk-nine.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-nine.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-nine.ot-sdk-columns{width:74%}#onetrust-banner-sdk .ot-sdk-ten.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-ten.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-ten.ot-sdk-columns{width:82.6666666667%}#onetrust-banner-sdk .ot-sdk-eleven.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-eleven.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-eleven.ot-sdk-columns{width:91.3333333333%}#onetrust-banner-sdk .ot-sdk-twelve.ot-sdk-columns,#onetrust-pc-sdk .ot-sdk-twelve.ot-sdk-columns,#ot-sdk-cookie-policy .ot-sdk-twelve.ot-sdk-columns{width:100%;margin-left:0}}#onetrust-banner-sdk h1,#onetrust-banner-sdk h2,#onetrust-banner-sdk h3,#onetrust-banner-sdk h4,#onetrust-banner-sdk h5,#onetrust-banner-sdk h6,#onetrust-banner-sdk p[role=heading],#onetrust-pc-sdk h1,#onetrust-pc-sdk h2,#onetrust-pc-sdk h3,#onetrust-pc-sdk h4,#onetrust-pc-sdk h5,#onetrust-pc-sdk h6,#onetrust-pc-sdk p[role=heading],#ot-sdk-cookie-policy h1,#ot-sdk-cookie-policy h2,#ot-sdk-cookie-policy h3,#ot-sdk-cookie-policy h4,#ot-sdk-cookie-policy h5,#ot-sdk-cookie-policy h6,#ot-sdk-cookie-policy p[role=heading]{margin-top:0;font-weight:600;font-family:inherit}#onetrust-banner-sdk h1,#onetrust-pc-sdk h1,#ot-sdk-cookie-policy h1{font-size:1.5rem;line-height:1.2}#onetrust-banner-sdk h2,#onetrust-pc-sdk h2,#ot-sdk-cookie-policy h2{font-size:1.5rem;line-height:1.25}#onetrust-banner-sdk h3,#onetrust-pc-sdk h3,#ot-sdk-cookie-policy h3{font-size:1.5rem;line-height:1.3}#onetrust-banner-sdk h4,#onetrust-pc-sdk h4,#ot-sdk-cookie-policy h4{font-size:1.5rem;line-height:1.35}#onetrust-banner-sdk h5,#onetrust-pc-sdk h5,#ot-sdk-cookie-policy h5{font-size:1.5rem;line-height:1.5}#onetrust-banner-sdk h6,#onetrust-pc-sdk h6,#ot-sdk-cookie-policy h6{font-size:1.5rem;line-height:1.6}@media(min-width: 550px){#onetrust-banner-sdk h1,#onetrust-pc-sdk h1,#ot-sdk-cookie-policy h1{font-size:1.5rem}#onetrust-banner-sdk h2,#onetrust-pc-sdk h2,#ot-sdk-cookie-policy h2{font-size:1.5rem}#onetrust-banner-sdk h3,#onetrust-pc-sdk h3,#ot-sdk-cookie-policy h3{font-size:1.5rem}#onetrust-banner-sdk h4,#onetrust-pc-sdk h4,#ot-sdk-cookie-policy h4{font-size:1.5rem}#onetrust-banner-sdk h5,#onetrust-pc-sdk h5,#ot-sdk-cookie-policy h5{font-size:1.5rem}#onetrust-banner-sdk h6,#onetrust-pc-sdk h6,#ot-sdk-cookie-policy h6{font-size:1.5rem}}#onetrust-banner-sdk p:not([role=heading]),#onetrust-pc-sdk p:not([role=heading]),#ot-sdk-cookie-policy p:not([role=heading]){margin:0 0 1em 0;font-family:inherit;line-height:normal}#onetrust-banner-sdk a,#onetrust-pc-sdk a,#ot-sdk-cookie-policy a{color:#565656;text-decoration:none}#onetrust-banner-sdk a:hover,#onetrust-pc-sdk a:hover,#ot-sdk-cookie-policy a:hover{color:#565656;text-decoration:underline}#onetrust-banner-sdk .ot-sdk-button,#onetrust-banner-sdk button,#onetrust-pc-sdk .ot-sdk-button,#onetrust-pc-sdk button,#ot-sdk-cookie-policy .ot-sdk-button,#ot-sdk-cookie-policy button{margin-bottom:1rem;font-family:inherit}#onetrust-banner-sdk .ot-sdk-button,#onetrust-banner-sdk button,#onetrust-pc-sdk .ot-sdk-button,#onetrust-pc-sdk button,#ot-sdk-cookie-policy .ot-sdk-button,#ot-sdk-cookie-policy button{display:inline-block;height:38px;padding:0 30px;color:#555;text-align:center;font-size:.9em;font-weight:400;line-height:38px;letter-spacing:.01em;text-decoration:none;white-space:nowrap;background-color:rgba(0,0,0,0);border-radius:2px;border:1px solid #bbb;cursor:pointer;box-sizing:border-box}#onetrust-banner-sdk .ot-sdk-button:hover,#onetrust-banner-sdk :not(.ot-leg-btn-container):not(.ot-confirm-dialog-buttons)>button:not(.ot-link-btn):hover,#onetrust-banner-sdk :not(.ot-leg-btn-container):not(.ot-confirm-dialog-buttons)>button:not(.ot-link-btn):focus,#onetrust-pc-sdk .ot-sdk-button:hover,#onetrust-pc-sdk :not(.ot-leg-btn-container):not(.ot-confirm-dialog-buttons)>button:not(.ot-link-btn):hover,#onetrust-pc-sdk :not(.ot-leg-btn-container):not(.ot-confirm-dialog-buttons)>button:not(.ot-link-btn):focus,#ot-sdk-cookie-policy .ot-sdk-button:hover,#ot-sdk-cookie-policy :not(.ot-leg-btn-container):not(.ot-confirm-dialog-buttons)>button:not(.ot-link-btn):hover,#ot-sdk-cookie-policy :not(.ot-leg-btn-container):not(.ot-confirm-dialog-buttons)>button:not(.ot-link-btn):focus{color:#333;border-color:#888;opacity:.9}#onetrust-banner-sdk .ot-sdk-button:focus,#onetrust-banner-sdk :not(.ot-leg-btn-container)>button:focus,#onetrust-pc-sdk .ot-sdk-button:focus,#onetrust-pc-sdk :not(.ot-leg-btn-container)>button:focus,#ot-sdk-cookie-policy .ot-sdk-button:focus,#ot-sdk-cookie-policy :not(.ot-leg-btn-container)>button:focus{outline:2px solid #000}#onetrust-banner-sdk .ot-sdk-button.ot-sdk-button-primary,#onetrust-banner-sdk button.ot-sdk-button-primary,#onetrust-banner-sdk input[type=submit].ot-sdk-button-primary,#onetrust-banner-sdk input[type=reset].ot-sdk-button-primary,#onetrust-banner-sdk input[type=button].ot-sdk-button-primary,#onetrust-pc-sdk .ot-sdk-button.ot-sdk-button-primary,#onetrust-pc-sdk button.ot-sdk-button-primary,#onetrust-pc-sdk input[type=submit].ot-sdk-button-primary,#onetrust-pc-sdk input[type=reset].ot-sdk-button-primary,#onetrust-pc-sdk input[type=button].ot-sdk-button-primary,#ot-sdk-cookie-policy .ot-sdk-button.ot-sdk-button-primary,#ot-sdk-cookie-policy button.ot-sdk-button-primary,#ot-sdk-cookie-policy input[type=submit].ot-sdk-button-primary,#ot-sdk-cookie-policy input[type=reset].ot-sdk-button-primary,#ot-sdk-cookie-policy input[type=button].ot-sdk-button-primary{color:#fff;background-color:#33c3f0;border-color:#33c3f0}#onetrust-banner-sdk .ot-sdk-button.ot-sdk-button-primary:hover,#onetrust-banner-sdk button.ot-sdk-button-primary:hover,#onetrust-banner-sdk input[type=submit].ot-sdk-button-primary:hover,#onetrust-banner-sdk input[type=reset].ot-sdk-button-primary:hover,#onetrust-banner-sdk input[type=button].ot-sdk-button-primary:hover,#onetrust-banner-sdk .ot-sdk-button.ot-sdk-button-primary:focus,#onetrust-banner-sdk button.ot-sdk-button-primary:focus,#onetrust-banner-sdk input[type=submit].ot-sdk-button-primary:focus,#onetrust-banner-sdk input[type=reset].ot-sdk-button-primary:focus,#onetrust-banner-sdk input[type=button].ot-sdk-button-primary:focus,#onetrust-pc-sdk .ot-sdk-button.ot-sdk-button-primary:hover,#onetrust-pc-sdk button.ot-sdk-button-primary:hover,#onetrust-pc-sdk input[type=submit].ot-sdk-button-primary:hover,#onetrust-pc-sdk input[type=reset].ot-sdk-button-primary:hover,#onetrust-pc-sdk input[type=button].ot-sdk-button-primary:hover,#onetrust-pc-sdk .ot-sdk-button.ot-sdk-button-primary:focus,#onetrust-pc-sdk button.ot-sdk-button-primary:focus,#onetrust-pc-sdk input[type=submit].ot-sdk-button-primary:focus,#onetrust-pc-sdk input[type=reset].ot-sdk-button-primary:focus,#onetrust-pc-sdk input[type=button].ot-sdk-button-primary:focus,#ot-sdk-cookie-policy .ot-sdk-button.ot-sdk-button-primary:hover,#ot-sdk-cookie-policy button.ot-sdk-button-primary:hover,#ot-sdk-cookie-policy input[type=submit].ot-sdk-button-primary:hover,#ot-sdk-cookie-policy input[type=reset].ot-sdk-button-primary:hover,#ot-sdk-cookie-policy input[type=button].ot-sdk-button-primary:hover,#ot-sdk-cookie-policy .ot-sdk-button.ot-sdk-button-primary:focus,#ot-sdk-cookie-policy button.ot-sdk-button-primary:focus,#ot-sdk-cookie-policy input[type=submit].ot-sdk-button-primary:focus,#ot-sdk-cookie-policy input[type=reset].ot-sdk-button-primary:focus,#ot-sdk-cookie-policy input[type=button].ot-sdk-button-primary:focus{color:#fff;background-color:#1eaedb;border-color:#1eaedb}#onetrust-banner-sdk input[type=text],#onetrust-pc-sdk input[type=text],#ot-sdk-cookie-policy input[type=text]{height:38px;padding:6px 10px;background-color:#fff;border:1px solid #707070;border-radius:4px;box-shadow:none;box-sizing:border-box}#onetrust-banner-sdk input[type=text],#onetrust-pc-sdk input[type=text],#ot-sdk-cookie-policy input[type=text]{-webkit-appearance:none;-moz-appearance:none;appearance:none}#onetrust-banner-sdk input[type=text]:focus,#onetrust-pc-sdk input[type=text]:focus,#ot-sdk-cookie-policy input[type=text]:focus{border:1px solid #000;outline:0}#onetrust-banner-sdk label,#onetrust-pc-sdk label,#ot-sdk-cookie-policy label{display:block;margin-bottom:.5rem;font-weight:600}#onetrust-banner-sdk input[type=checkbox],#onetrust-pc-sdk input[type=checkbox],#ot-sdk-cookie-policy input[type=checkbox]{display:inline}#onetrust-banner-sdk ul,#onetrust-pc-sdk ul,#ot-sdk-cookie-policy ul{list-style:circle inside}#onetrust-banner-sdk ul,#onetrust-pc-sdk ul,#ot-sdk-cookie-policy ul{padding-left:0;margin-top:0}#onetrust-banner-sdk ul ul,#onetrust-pc-sdk ul ul,#ot-sdk-cookie-policy ul ul{margin:1.5rem 0 1.5rem 3rem;font-size:90%}#onetrust-banner-sdk li,#onetrust-pc-sdk li,#ot-sdk-cookie-policy li{margin-bottom:1rem}#onetrust-banner-sdk th,#onetrust-banner-sdk td,#onetrust-pc-sdk th,#onetrust-pc-sdk td,#ot-sdk-cookie-policy th,#ot-sdk-cookie-policy td{padding:12px 15px;text-align:left;border-bottom:1px solid #e1e1e1}#onetrust-banner-sdk button,#onetrust-pc-sdk button,#ot-sdk-cookie-policy button{margin-bottom:1rem;font-family:inherit}#onetrust-banner-sdk .ot-sdk-container:after,#onetrust-banner-sdk .ot-sdk-row:after,#onetrust-pc-sdk .ot-sdk-container:after,#onetrust-pc-sdk .ot-sdk-row:after,#ot-sdk-cookie-policy .ot-sdk-container:after,#ot-sdk-cookie-policy .ot-sdk-row:after{content:"";display:table;clear:both}#onetrust-banner-sdk .ot-sdk-row,#onetrust-pc-sdk .ot-sdk-row,#ot-sdk-cookie-policy .ot-sdk-row{margin:0;max-width:none;display:block}.ot-go-modal-error-msg:empty{margin:0;line-height:0}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide){background:rgba(0,0,0,.5);z-index:2147483648;width:100%;height:100%;overflow:hidden;position:fixed;top:0;left:0}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal{display:flex;flex-direction:column;overflow:hidden;position:relative;margin:5% auto;width:440px;max-width:90%;max-height:90vh;border-radius:8px;z-index:2147483649;background-color:#fff;box-shadow:0 4px 24px rgba(0,0,0,.15)}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-header{display:flex;justify-content:flex-end;align-items:center;padding:12px 16px}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-header .ot-go-modal-close{width:44px;height:44px;background-size:12px;margin:-18px -18px 0 0;border:none;display:inline-block;padding:0;background-repeat:no-repeat;background-position:center;position:absolute;top:1em;cursor:pointer}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-body{padding:0 28px 28px;overflow-y:auto}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-title{font-size:1.25em;font-weight:700;margin-bottom:12px;text-align:center}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-desc{font-size:.88em;margin:0 0 20px;line-height:1.5;text-align:center}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper{position:relative;margin-bottom:4px}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-email{width:100%;padding:10px 36px 10px 12px;border:1px solid #d8d8d8;border-radius:4px;font-size:.95em;outline:none;box-sizing:border-box;color:inherit;background-color:rgba(0,0,0,0)}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-email::placeholder{color:inherit;opacity:.6}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-error-icon{position:absolute;right:10px;top:50%;transform:translateY(-50%);width:16px;height:16px;border-radius:50%;background-color:#d93025}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-error-icon::after{content:"!";color:#fff;font-size:11px;font-weight:bold;display:flex;align-items:center;justify-content:center;height:100%}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-error-msg{color:#d93025 !important;font-size:.82em;margin:4px 0 8px}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons{display:flex;gap:12px;margin-top:20px}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel,#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit{flex:1;padding:10px 16px;border-radius:4px;font-size:.88em;font-weight:600;cursor:pointer;text-align:center;box-sizing:border-box}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel{border:1px solid;background-color:rgba(0,0,0,0)}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel:hover{background-color:rgba(0,0,0,.05)}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit{position:relative}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit:hover:not(.ot-go-btn-loading){opacity:.8}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit.ot-go-btn-loading{pointer-events:none;opacity:.85}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit .ot-go-btn-spinner{display:inline-block;width:16px;height:16px;border:2px solid rgba(255,255,255,.3);border-top-color:#fff;border-radius:50%;animation:ot-go-spin .6s linear infinite;vertical-align:middle}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state{text-align:center;padding:20px 0}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-success-shield{width:56px;height:56px;margin:0 auto 20px}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-modal-confirm-msg{font-size:.95em;color:inherit;margin-bottom:24px;line-height:1.5;padding:0 10px}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-modal-close-btn{display:block;width:100%;border-radius:4px;font-size:.88em;font-weight:600;cursor:pointer;box-sizing:border-box}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-modal-close-btn:hover{opacity:.8}#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel,#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit{padding:0}@media(max-width: 500px){#onetrust-banner-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal{width:95%;margin:10% auto}.ot-go-modal-buttons{flex-direction:column;gap:0px !important;flex-direction:column-reverse !important}.ot-go-modal-buttons .ot-go-modal-cancel,.ot-go-modal-buttons .ot-go-modal-submit{width:100%;flex:none}}@keyframes ot-go-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}#onetrust-banner-sdk{box-shadow:0 0 18px rgba(0,0,0,.2)}#onetrust-banner-sdk.otFlat{position:fixed;z-index:2147483645;bottom:0;right:0;left:0;background-color:#fff;max-height:90%;overflow-x:hidden;overflow-y:auto}#onetrust-banner-sdk.otFlat.top{top:0px;bottom:auto}#onetrust-banner-sdk.otRelFont{font-size:1rem}#onetrust-banner-sdk>.ot-sdk-container{overflow:hidden}#onetrust-banner-sdk::-webkit-scrollbar{width:11px}#onetrust-banner-sdk::-webkit-scrollbar-thumb{border-radius:10px;background:#c1c1c1}#onetrust-banner-sdk{scrollbar-arrow-color:#c1c1c1;scrollbar-darkshadow-color:#c1c1c1;scrollbar-face-color:#c1c1c1;scrollbar-shadow-color:#c1c1c1}#onetrust-banner-sdk #onetrust-policy{margin:1.25em 0 .625em 2em;overflow:hidden}#onetrust-banner-sdk #onetrust-policy .ot-gv-list-handler{float:left;font-size:.82em;padding:0;margin-bottom:0;border:0;line-height:normal;height:auto;width:auto}#onetrust-banner-sdk #onetrust-policy-title{font-size:1.2em;line-height:1.3;margin-bottom:10px}#onetrust-banner-sdk #onetrust-group-container{position:relative}#onetrust-banner-sdk #onetrust-policy-text{clear:both;text-align:left;font-size:.88em;line-height:1.4}#onetrust-banner-sdk #onetrust-policy-text *{font-size:inherit;line-height:inherit}#onetrust-banner-sdk #onetrust-policy-text a{font-weight:bold}#onetrust-banner-sdk #onetrust-policy-title,#onetrust-banner-sdk #onetrust-policy-text{color:dimgray;float:left}#onetrust-banner-sdk #onetrust-button-group-parent{min-height:1px;text-align:center}#onetrust-banner-sdk #onetrust-button-group{display:inline-block}#onetrust-banner-sdk #onetrust-accept-btn-handler,#onetrust-banner-sdk #onetrust-reject-all-handler,#onetrust-banner-sdk #onetrust-pc-btn-handler{background-color:#68b631;color:#fff;border-color:#68b631;margin-right:1em;min-width:125px;height:auto;white-space:normal;word-break:break-word;word-wrap:break-word;padding:12px 10px;line-height:1.2;font-size:.813em;font-weight:600}#onetrust-banner-sdk #onetrust-pc-btn-handler.cookie-setting-link{background-color:#fff;border:none;color:#68b631;text-decoration:underline;padding-left:0;padding-right:0}#onetrust-banner-sdk .onetrust-close-btn-ui{width:44px;height:44px;background-size:12px;border:none;position:relative;margin:auto;padding:0}#onetrust-banner-sdk .banner_logo{display:none}#onetrust-banner-sdk.ot-bnr-w-logo .ot-bnr-logo{position:absolute;top:50%;transform:translateY(-50%);left:0px;margin-right:5px}#onetrust-banner-sdk.ot-bnr-w-logo #onetrust-policy{margin-left:65px}#onetrust-banner-sdk .ot-b-addl-desc{clear:both;float:left;display:block}#onetrust-banner-sdk #banner-options{float:left;display:table;margin-right:0;margin-left:1em;width:calc(100% - 1em)}#onetrust-banner-sdk .banner-option-input{cursor:pointer;width:auto;height:auto;border:none;padding:0;padding-right:3px;margin:0 0 10px;font-size:.82em;line-height:1.4}#onetrust-banner-sdk .banner-option-input *{pointer-events:none;font-size:inherit;line-height:inherit}#onetrust-banner-sdk .banner-option-input[aria-expanded=true]~.banner-option-details{display:block;height:auto}#onetrust-banner-sdk .banner-option-input[aria-expanded=true] .ot-arrow-container{transform:rotate(90deg)}#onetrust-banner-sdk .banner-option{margin-bottom:12px;margin-left:0;border:none;float:left;padding:0}#onetrust-banner-sdk .banner-option:first-child{padding-left:2px}#onetrust-banner-sdk .banner-option:not(:first-child){padding:0;border:none}#onetrust-banner-sdk .banner-option-header{cursor:pointer;display:inline-block}#onetrust-banner-sdk .banner-option-header :first-child{color:dimgray;font-weight:bold;float:left}#onetrust-banner-sdk .banner-option-header .ot-arrow-container{display:inline-block;border-top:6px solid rgba(0,0,0,0);border-bottom:6px solid rgba(0,0,0,0);border-left:6px solid dimgray;margin-left:10px;vertical-align:middle}#onetrust-banner-sdk .banner-option-details{display:none;font-size:.83em;line-height:1.5;padding:10px 0px 5px 10px;margin-right:10px;height:0px}#onetrust-banner-sdk .banner-option-details *{font-size:inherit;line-height:inherit;color:dimgray}#onetrust-banner-sdk .ot-arrow-container,#onetrust-banner-sdk .banner-option-details{transition:all 300ms ease-in 0s;-webkit-transition:all 300ms ease-in 0s;-moz-transition:all 300ms ease-in 0s;-o-transition:all 300ms ease-in 0s}#onetrust-banner-sdk .ot-dpd-container{float:left}#onetrust-banner-sdk .ot-dpd-title{margin-bottom:10px}#onetrust-banner-sdk .ot-dpd-title,#onetrust-banner-sdk .ot-dpd-desc{font-size:.88em;line-height:1.4;color:dimgray}#onetrust-banner-sdk .ot-dpd-title *,#onetrust-banner-sdk .ot-dpd-desc *{font-size:inherit;line-height:inherit}#onetrust-banner-sdk.ot-iab-2 #onetrust-policy-text *{margin-bottom:0}#onetrust-banner-sdk.ot-iab-2 .onetrust-vendors-list-handler{display:block;margin-left:0;margin-top:5px;clear:both;margin-bottom:0;padding:0;border:0;height:auto;width:auto}#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group button{display:block}#onetrust-banner-sdk.ot-close-btn-link{padding-top:25px}#onetrust-banner-sdk.ot-close-btn-link #onetrust-close-btn-container{top:15px;transform:none;right:15px}#onetrust-banner-sdk.ot-close-btn-link #onetrust-close-btn-container button{padding:0;white-space:pre-wrap;border:none;height:auto;line-height:1.5;text-decoration:underline;font-size:.69em}#onetrust-banner-sdk #onetrust-policy-text,#onetrust-banner-sdk .ot-dpd-desc,#onetrust-banner-sdk .ot-b-addl-desc{font-size:.813em;line-height:1.5}#onetrust-banner-sdk .ot-dpd-desc{margin-bottom:10px}#onetrust-banner-sdk .ot-dpd-desc>.ot-b-addl-desc{margin-top:10px;margin-bottom:10px;font-size:1em}@media only screen and (max-width: 425px){#onetrust-banner-sdk #onetrust-close-btn-container{position:absolute;top:6px;right:2px}#onetrust-banner-sdk #onetrust-policy{margin-left:0;margin-top:3em}#onetrust-banner-sdk #onetrust-button-group{display:block}#onetrust-banner-sdk #onetrust-accept-btn-handler,#onetrust-banner-sdk #onetrust-reject-all-handler,#onetrust-banner-sdk #onetrust-pc-btn-handler{width:100%}#onetrust-banner-sdk .onetrust-close-btn-ui{top:auto;transform:none}#onetrust-banner-sdk #onetrust-policy-title{display:inline;float:none}#onetrust-banner-sdk #banner-options{margin:0;padding:0;width:100%}}@media only screen and (max-width: 550px){#onetrust-button-group.ot-button-order-container #onetrust-accept-btn-handler,#onetrust-button-group.ot-button-order-container #onetrust-reject-all-handler,#onetrust-button-group.ot-button-order-container #onetrust-pc-btn-handler{margin-right:0}#onetrust-banner-sdk .has-reject-all-button div#onetrust-button-group.ot-button-order-container #onetrust-accept-btn-handler,#onetrust-banner-sdk .has-reject-all-button div#onetrust-button-group.ot-button-order-container #onetrust-reject-all-handler,#onetrust-banner-sdk .has-reject-all-button div#onetrust-button-group.ot-button-order-container #onetrust-pc-btn-handler{margin-right:0}}@media only screen and (min-width: 426px)and (max-width: 896px){#onetrust-banner-sdk #onetrust-close-btn-container{position:absolute;top:0;right:0}#onetrust-banner-sdk #onetrust-policy{margin-left:1em;margin-right:1em}#onetrust-banner-sdk .onetrust-close-btn-ui{top:10px;right:10px}#onetrust-banner-sdk:not(.ot-iab-2) #onetrust-group-container{width:95%}#onetrust-banner-sdk.ot-iab-2 #onetrust-group-container{width:100%}#onetrust-banner-sdk.ot-bnr-w-logo #onetrust-button-group-parent{padding-left:50px}#onetrust-banner-sdk #onetrust-button-group-parent{width:100%;position:relative;margin-left:0}#onetrust-banner-sdk #onetrust-button-group button{display:inline-block}#onetrust-banner-sdk #onetrust-button-group{margin-right:0;text-align:center}#onetrust-banner-sdk #onetrust-button-group.ot-button-order-container #onetrust-accept-btn-handler,#onetrust-banner-sdk #onetrust-button-group.ot-button-order-container #onetrust-reject-all-handler,#onetrust-banner-sdk #onetrust-button-group.ot-button-order-container #onetrust-pc-btn-handler{width:auto}#onetrust-banner-sdk .has-reject-all-button #onetrust-button-group.ot-button-order-container{display:inline-flex;flex-wrap:wrap}#onetrust-banner-sdk .has-reject-all-button #onetrust-button-group.ot-button-order-container #onetrust-pc-btn-handler,#onetrust-banner-sdk .has-reject-all-button #onetrust-button-group.ot-button-order-container #onetrust-reject-all-handler,#onetrust-banner-sdk .has-reject-all-button #onetrust-button-group.ot-button-order-container #onetrust-accept-btn-handler{float:none}#onetrust-banner-sdk .has-reject-all-button #onetrust-button-group.ot-button-order-container *[class*=ot-button-order-]:nth-of-type(1){margin-right:auto !important}#onetrust-banner-sdk .has-reject-all-button #onetrust-pc-btn-handler{float:left}#onetrust-banner-sdk .has-reject-all-button #onetrust-reject-all-handler,#onetrust-banner-sdk .has-reject-all-button #onetrust-accept-btn-handler{float:right}#onetrust-banner-sdk .has-reject-all-button #onetrust-button-group{width:calc(100% - 2em);margin-right:0}#onetrust-banner-sdk .has-reject-all-button #onetrust-pc-btn-handler.cookie-setting-link{padding-left:0px;text-align:left}#onetrust-banner-sdk.ot-buttons-fw .ot-sdk-three button{width:100%;text-align:center}#onetrust-banner-sdk.ot-buttons-fw #onetrust-button-group-parent button{float:none}#onetrust-banner-sdk.ot-buttons-fw #onetrust-pc-btn-handler.cookie-setting-link{text-align:center}}@media only screen and (min-width: 550px){#onetrust-banner-sdk .banner-option:not(:first-child){border-left:1px solid #d8d8d8;padding-left:25px}}@media only screen and (min-width: 425px)and (max-width: 550px){#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group,#onetrust-banner-sdk.ot-iab-2 .banner-option{width:100%}#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group #onetrust-accept-btn-handler,#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group #onetrust-reject-all-handler,#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group #onetrust-pc-btn-handler{width:100%}#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group #onetrust-accept-btn-handler,#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group #onetrust-reject-all-handler{float:left}#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group.ot-button-order-container{width:auto}}@media only screen and (min-width: 769px){#onetrust-banner-sdk #onetrust-button-group{margin-right:30%}#onetrust-banner-sdk #banner-options{margin-left:2em;margin-right:5em;margin-bottom:1.25em;width:calc(100% - 7em)}}@media only screen and (min-width: 897px)and (max-width: 1023px){#onetrust-banner-sdk.vertical-align-content #onetrust-button-group-parent{position:absolute;top:50%;left:80%;transform:translateY(-50%)}#onetrust-banner-sdk #onetrust-close-btn-container{top:50%;margin:auto;transform:translate(-50%, -50%);position:absolute;padding:0;right:0}#onetrust-banner-sdk #onetrust-close-btn-container button{position:relative;margin:0;right:-22px;top:2px}}@media only screen and (min-width: 1024px){#onetrust-banner-sdk #onetrust-close-btn-container{top:50%;margin:auto;transform:translate(-50%, -50%);position:absolute;right:0}#onetrust-banner-sdk #onetrust-close-btn-container button{right:-12px}#onetrust-banner-sdk #onetrust-policy{margin-left:2em}#onetrust-banner-sdk.vertical-align-content #onetrust-button-group-parent{position:absolute;top:50%;left:60%;transform:translateY(-50%)}#onetrust-banner-sdk .ot-optout-signal{width:50%}#onetrust-banner-sdk.ot-iab-2 #onetrust-policy-title{width:50%}#onetrust-banner-sdk.ot-iab-2 #onetrust-policy-text,#onetrust-banner-sdk.ot-iab-2 :not(.ot-dpd-desc)>.ot-b-addl-desc{margin-bottom:1em;width:50%;border-right:1px solid #d8d8d8;padding-right:1rem}#onetrust-banner-sdk.ot-iab-2 #onetrust-policy-text{margin-bottom:0;padding-bottom:1em}#onetrust-banner-sdk.ot-iab-2 :not(.ot-dpd-desc)>.ot-b-addl-desc{margin-bottom:0;padding-bottom:1em}#onetrust-banner-sdk.ot-iab-2 .ot-dpd-container{width:45%;padding-left:1rem;display:inline-block;float:none}#onetrust-banner-sdk.ot-iab-2 .ot-dpd-title{line-height:1.7}#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group-parent{left:auto;right:4%;margin-left:0}#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group button{display:block}#onetrust-banner-sdk:not(.ot-iab-2) #onetrust-button-group-parent{margin:auto;width:30%}#onetrust-banner-sdk:not(.ot-iab-2) #onetrust-group-container{width:60%}#onetrust-banner-sdk #onetrust-button-group{margin-right:auto}#onetrust-banner-sdk #onetrust-accept-btn-handler,#onetrust-banner-sdk #onetrust-reject-all-handler,#onetrust-banner-sdk #onetrust-pc-btn-handler{margin-top:1em}}@media only screen and (min-width: 890px){#onetrust-banner-sdk.ot-buttons-fw:not(.ot-iab-2) #onetrust-button-group-parent{padding-left:3%;padding-right:4%;margin-left:0}#onetrust-banner-sdk.ot-buttons-fw:not(.ot-iab-2) #onetrust-button-group{margin-right:0;margin-top:1.25em;width:100%}#onetrust-banner-sdk.ot-buttons-fw:not(.ot-iab-2) #onetrust-button-group button{width:100%;margin-bottom:5px;margin-top:5px}#onetrust-banner-sdk.ot-buttons-fw:not(.ot-iab-2) #onetrust-button-group button:last-of-type{margin-bottom:20px}}@media only screen and (min-width: 1280px){#onetrust-banner-sdk:not(.ot-iab-2) #onetrust-group-container{width:55%}#onetrust-banner-sdk:not(.ot-iab-2) #onetrust-button-group-parent{width:44%;padding-left:2%;padding-right:2%}#onetrust-banner-sdk:not(.ot-iab-2).vertical-align-content #onetrust-button-group-parent{position:absolute;left:55%}} | |
| 134 | + | |
| 135 | + #onetrust-consent-sdk #onetrust-banner-sdk { | |
| 136 | + background-color: #FFFFFF; | |
| 137 | + } | |
| 138 | + | |
| 139 | + #onetrust-consent-sdk #onetrust-policy-title, | |
| 140 | + #onetrust-consent-sdk #onetrust-policy-text, | |
| 141 | + #onetrust-consent-sdk .ot-b-addl-desc, | |
| 142 | + #onetrust-consent-sdk .ot-dpd-desc, | |
| 143 | + #onetrust-consent-sdk .ot-dpd-title, | |
| 144 | + #onetrust-consent-sdk #onetrust-policy-text *:not(.onetrust-vendors-list-handler), | |
| 145 | + #onetrust-consent-sdk .ot-dpd-desc *:not(.onetrust-vendors-list-handler), | |
| 146 | + #onetrust-consent-sdk #onetrust-banner-sdk #banner-options *, | |
| 147 | + #onetrust-banner-sdk .ot-cat-header, | |
| 148 | + #onetrust-banner-sdk .ot-optout-signal, | |
| 149 | + #onetrust-consent-sdk .ot-go-modal-title, | |
| 150 | + #onetrust-consent-sdk .ot-go-modal-desc, | |
| 151 | + #onetrust-banner-sdk .ot-go-modal-title, | |
| 152 | + #onetrust-banner-sdk .ot-go-modal-desc { | |
| 153 | + color: #000000; | |
| 154 | + } | |
| 155 | + #onetrust-consent-sdk .ot-go-modal-cancel, | |
| 156 | + #onetrust-banner-sdk .ot-go-modal-cancel | |
| 157 | + { | |
| 158 | + color: #000000 !important; | |
| 159 | + } | |
| 160 | + | |
| 161 | + #onetrust-consent-sdk .ot-go-modal-close-btn, | |
| 162 | + #onetrust-banner-sdk .ot-go-modal-close-btn, | |
| 163 | + #onetrust-consent-sdk .ot-go-modal-submit, | |
| 164 | + #onetrust-banner-sdk .ot-go-modal-submit { | |
| 165 | + color: #FFFFFF !important; | |
| 166 | + } | |
| 167 | + | |
| 168 | + #onetrust-consent-sdk .ot-go-modal-cancel, | |
| 169 | + #onetrust-banner-sdk .ot-go-modal-cancel { | |
| 170 | + border-color: #000000 !important; | |
| 171 | + } | |
| 172 | + | |
| 173 | + | |
| 174 | + #onetrust-consent-sdk .ot-go-modal-email, | |
| 175 | + #onetrust-banner-sdk .ot-go-modal-email { | |
| 176 | + border-color: #000000 !important; | |
| 177 | + background-color: rgb(255, 255, 255); | |
| 178 | + } | |
| 179 | + | |
| 180 | + #onetrust-consent-sdk .ot-go-modal-email:focus, | |
| 181 | + #onetrust-banner-sdk .ot-go-modal-email:focus { | |
| 182 | + border-color: #000000; | |
| 183 | + } | |
| 184 | + | |
| 185 | + #onetrust-consent-sdk .ot-go-modal-email::placeholder, | |
| 186 | + #onetrust-banner-sdk .ot-go-modal-email::placeholder { | |
| 187 | + color: #000000; | |
| 188 | + } | |
| 189 | + | |
| 190 | + #onetrust-consent-sdk #onetrust-banner-sdk .banner-option-details { | |
| 191 | + background-color: #E9E9E9; | |
| 192 | + } | |
| 193 | + | |
| 194 | + #onetrust-consent-sdk #onetrust-banner-sdk a[href], | |
| 195 | + #onetrust-consent-sdk #onetrust-banner-sdk a[href] font, | |
| 196 | + #onetrust-consent-sdk #onetrust-banner-sdk .ot-link-btn { | |
| 197 | + color: #000000; | |
| 198 | + } | |
| 199 | + | |
| 200 | + #onetrust-consent-sdk #onetrust-accept-btn-handler, | |
| 201 | + #onetrust-banner-sdk #onetrust-reject-all-handler, | |
| 202 | + #onetrust-banner-sdk #ot-dialog-confirm-handler, | |
| 203 | + #onetrust-consent-sdk .ot-go-modal-close-btn, | |
| 204 | + #onetrust-banner-sdk .ot-go-modal-close-btn, | |
| 205 | + #onetrust-consent-sdk .ot-go-modal-submit, | |
| 206 | + #onetrust-banner-sdk .ot-go-modal-submit { | |
| 207 | + background-color: #00467f;border-color: #00467f; | |
| 208 | + color: #FFFFFF; | |
| 209 | + } | |
| 210 | + #onetrust-consent-sdk #onetrust-banner-sdk *:focus, | |
| 211 | + #onetrust-consent-sdk #onetrust-banner-sdk:focus { | |
| 212 | + outline-color: #000000; | |
| 213 | + outline-width: 1px; | |
| 214 | + outline-style: solid; | |
| 215 | + } | |
| 216 | + #onetrust-consent-sdk #onetrust-pc-btn-handler, | |
| 217 | + #onetrust-consent-sdk #onetrust-pc-btn-handler.cookie-setting-link, | |
| 218 | + #onetrust-consent-sdk #ot-dialog-cancel-handler { | |
| 219 | + color: #000000; border-color: #000000; | |
| 220 | + background-color: #FFFFFF; | |
| 221 | + }#onetrust-banner-sdk #onetrust-policy-text a.ot-cookie-policy-link, | |
| 222 | + #onetrust-banner-sdk #onetrust-policy-text a.ot-imprint-link { | |
| 223 | + margin-left: 5px; | |
| 224 | + }#onetrust-pc-sdk .ot-go-group{border:1px solid #d8d8d8 !important;border-radius:1px;margin-bottom:15px !important;float:left;width:calc(100% - 2px)}#onetrust-pc-sdk .ot-go-section-header{float:left;padding-bottom:10px;font-size:1em;width:100%;font-weight:bold;color:#333;text-align:left;margin:0}.ot-go-modal-error-msg:empty{margin:0;line-height:0}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide){background:rgba(0,0,0,.5);z-index:2147483648;width:100%;height:100%;overflow:hidden;position:fixed;top:0;left:0}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal{display:flex;flex-direction:column;overflow:hidden;position:relative;margin:5% auto;width:440px;max-width:90%;max-height:90vh;border-radius:8px;z-index:2147483649;background-color:#fff;box-shadow:0 4px 24px rgba(0,0,0,.15)}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-header{display:flex;justify-content:flex-end;align-items:center;padding:12px 16px}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-header .ot-go-modal-close{width:44px;height:44px;background-size:12px;margin:-18px -18px 0 0;border:none;display:inline-block;padding:0;background-repeat:no-repeat;background-position:center;position:absolute;top:1em;cursor:pointer}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-body{padding:0 28px 28px;overflow-y:auto}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-title{font-size:1.25em;font-weight:700;margin-bottom:12px;text-align:center}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-desc{font-size:.88em;margin:0 0 20px;line-height:1.5;text-align:center}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper{position:relative;margin-bottom:4px}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-email{width:100%;padding:10px 36px 10px 12px;border:1px solid #d8d8d8;border-radius:4px;font-size:.95em;outline:none;box-sizing:border-box;color:inherit;background-color:rgba(0,0,0,0)}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-email::placeholder{color:inherit;opacity:.6}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-error-icon{position:absolute;right:10px;top:50%;transform:translateY(-50%);width:16px;height:16px;border-radius:50%;background-color:#d93025}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-input-wrapper .ot-go-modal-error-icon::after{content:"!";color:#fff;font-size:11px;font-weight:bold;display:flex;align-items:center;justify-content:center;height:100%}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-error-msg{color:#d93025 !important;font-size:.82em;margin:4px 0 8px}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons{display:flex;gap:12px;margin-top:20px}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel,#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit{flex:1;padding:10px 16px;border-radius:4px;font-size:.88em;font-weight:600;cursor:pointer;text-align:center;box-sizing:border-box}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel{border:1px solid;background-color:rgba(0,0,0,0)}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-cancel:hover{background-color:rgba(0,0,0,.05)}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit{position:relative}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit:hover:not(.ot-go-btn-loading){opacity:.8}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit.ot-go-btn-loading{pointer-events:none;opacity:.85}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-buttons .ot-go-modal-submit .ot-go-btn-spinner{display:inline-block;width:16px;height:16px;border:2px solid rgba(255,255,255,.3);border-top-color:#fff;border-radius:50%;animation:ot-go-spin .6s linear infinite;vertical-align:middle}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state{text-align:center;padding:20px 0}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-success-shield{width:56px;height:56px;margin:0 auto 20px}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-modal-confirm-msg{font-size:.95em;color:inherit;margin-bottom:24px;line-height:1.5;padding:0 10px}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-modal-close-btn{display:block;width:100%;border-radius:4px;font-size:.88em;font-weight:600;cursor:pointer;box-sizing:border-box}#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal-success-state .ot-go-modal-close-btn:hover{opacity:.8}@media(max-width: 500px){#onetrust-pc-sdk div.ot-go-modal-overlay:not(.ot-hide) .ot-go-modal{width:95%;margin:10% auto}.ot-go-modal-buttons{flex-direction:column;gap:0px !important;flex-direction:column-reverse !important}.ot-go-modal-buttons .ot-go-modal-cancel,.ot-go-modal-buttons .ot-go-modal-submit{width:100%;flex:none}}@keyframes ot-go-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes ot-slide-in-left{from{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}to{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}}@keyframes ot-slide-in-right{from{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}to{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}}@keyframes ot-slide-out-left{from{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}to{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}}@keyframes ot-slide-out-right{from{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}to{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}}#onetrust-pc-sdk.otPcPanel.ot-slide-out-right{-webkit-animation-name:ot-slide-out-right;animation-name:ot-slide-out-right}#onetrust-pc-sdk.otPcPanel.ot-slide-in-left{-webkit-animation-name:ot-slide-in-left;animation-name:ot-slide-in-left}#onetrust-pc-sdk.otPcPanel.ot-slide-in-right{-webkit-animation-name:ot-slide-in-right;animation-name:ot-slide-in-right}#onetrust-pc-sdk.otPcPanel.ot-slide-out-left{-webkit-animation-name:ot-slide-out-left;animation-name:ot-slide-out-left}@media print,(prefers-reduced-motion){.ot-animated{-webkit-animation:initial !important;animation:initial !important;-webkit-transition:none !important;transition:none !important}#onetrust-pc-sdk.otPcPanel.ot-slide-out-left{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}#onetrust-pc-sdk.otPcPanel.ot-slide-out-right{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}}#onetrust-pc-sdk{--ot-footer-space: 10rem;position:fixed;display:flex;flex-direction:column;z-index:2147483647;bottom:0;left:0;background-color:#fff;max-width:min(480px,100vw);min-width:min(480px,100vw);height:100%;max-height:100vh;-webkit-box-shadow:0px 2px 10px -3px #999;-moz-box-shadow:0px 2px 10px -3px #999;box-shadow:0px 2px 10px -3px #999}#onetrust-pc-sdk>div[role=dialog]{display:flex;flex-direction:column;flex:1 1 auto;min-height:0;overflow:hidden}#onetrust-pc-sdk.otRelFont{font-size:1rem}#onetrust-pc-sdk.otPcPanel.right,#onetrust-pc-sdk.otPcPanel[dir=rtl]{right:0;left:auto}#onetrust-pc-sdk.otPcPanel.right-rtl[dir=rtl]{left:0;right:auto}#onetrust-pc-sdk.otPcPanel.ot-animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}#onetrust-pc-sdk #close-pc-btn-handler.ot-close-icon{background-color:rgba(0,0,0,0);border:none;margin-right:4px}#onetrust-pc-sdk .ot-optout-signal{margin-top:.625rem}#onetrust-pc-sdk .ot-pc-scrollbar::-webkit-scrollbar-track{margin-right:20px}#onetrust-pc-sdk .ot-pc-scrollbar::-webkit-scrollbar{width:11px}#onetrust-pc-sdk .ot-pc-scrollbar::-webkit-scrollbar-thumb{border-radius:10px;background:#d8d8d8}#onetrust-pc-sdk .ot-pc-scrollbar{scrollbar-arrow-color:#d8d8d8;scrollbar-darkshadow-color:#d8d8d8;scrollbar-face-color:#d8d8d8;scrollbar-shadow-color:#d8d8d8}#onetrust-pc-sdk.ot-ftr-stacked{--ot-footer-space: 13.125rem}#onetrust-pc-sdk.ot-ftr-stacked .ot-pc-refuse-all-handler{margin-bottom:0px}#onetrust-pc-sdk.ot-ftr-stacked .ot-pc-footer button{width:100%;max-width:none}#onetrust-pc-sdk.ot-ftr-stacked #ot-lst-cnt{max-height:84%}#onetrust-pc-sdk #ot-addtl-venlst .ot-arw-cntr,#onetrust-pc-sdk #ot-addtl-venlst .ot-plus-minus,#onetrust-pc-sdk .ot-hide-tgl{visibility:hidden}#onetrust-pc-sdk #ot-addtl-venlst .ot-arw-cntr *,#onetrust-pc-sdk #ot-addtl-venlst .ot-plus-minus *,#onetrust-pc-sdk .ot-hide-tgl *{visibility:hidden}#onetrust-pc-sdk .ot-pc-header{height:auto;min-height:2.5rem;border-bottom:1px solid #e9e9e9;padding:10px 0 10px 25px;flex:0 0 auto}#onetrust-pc-sdk .ot-pc-logo{height:40px;width:120px}#onetrust-pc-sdk .ot-close-icon{float:right;height:10px;width:10px;margin-top:10px;margin-right:5px}#onetrust-pc-sdk #ot-pc-content,#onetrust-pc-sdk #ot-pc-lst{position:relative;top:auto;bottom:auto;flex:1 1 auto;min-height:0}#onetrust-pc-sdk #ot-pc-content{padding-left:2px;padding-right:10px;margin-left:23px;margin-right:7px;width:calc(100% - 42px);overflow-y:auto}#onetrust-pc-sdk #ot-pc-lst{width:100%}#onetrust-pc-sdk .ot-pc-footer{position:relative;bottom:auto;width:100%;max-height:var(--ot-footer-space);border-top:1px solid #d8d8d8;flex:0 0 auto;overflow-y:auto}#onetrust-pc-sdk .ot-pc-footer button{margin-top:19px}#onetrust-pc-sdk .ot-button-order-0{float:left !important;margin-right:10px !important;margin-bottom:25px !important}#onetrust-pc-sdk .ot-btn-container{text-align:left;padding:0 25px}#onetrust-pc-sdk .ot-btn-container button{min-width:calc(50% - 5px)}#onetrust-pc-sdk .ot-btn-container.ot-button-order-container{height:100%;display:flex;flex-direction:column;gap:.5rem;justify-content:space-around}#onetrust-pc-sdk .ot-btn-container.ot-button-order-container .ot-pc-refuse-all-handler,#onetrust-pc-sdk .ot-btn-container.ot-button-order-container .save-preference-btn-handler,#onetrust-pc-sdk .ot-btn-container.ot-button-order-container #accept-recommended-btn-handler{width:100%;float:none !important;margin:0 !important;min-height:40px}#onetrust-pc-sdk .ot-pc-footer-logo{padding-left:25px;height:30px;background:#f4f4f4;text-align:right}#onetrust-pc-sdk .ot-pc-footer-logo a{display:inline-block;margin-top:2px;margin-right:10px}#onetrust-pc-sdk .ot-pc-footer-logo img,#onetrust-pc-sdk .ot-pc-footer-logo svg{margin-top:3px}#onetrust-pc-sdk.otPcPanel[dir=rtl] .ot-pc-footer-logo{direction:rtl}#onetrust-pc-sdk.otPcPanel[dir=rtl] .ot-pc-footer-logo a{margin-right:25px}#onetrust-pc-sdk button{display:inline-block;font-size:.75em;letter-spacing:.08em;max-width:394px;padding:12px 30px;line-height:1;word-break:break-word;word-wrap:break-word;white-space:normal;font-weight:bold;height:auto}#onetrust-pc-sdk button:hover,#onetrust-pc-sdk button:focus{color:#fff;border-color:#68b631}#onetrust-pc-sdk .ot-link-btn{padding:0;margin-bottom:0;border:0;font-weight:normal;line-height:normal;width:auto;height:auto}#onetrust-pc-sdk #accept-recommended-btn-handler{margin-right:10px;margin-bottom:25px}#onetrust-pc-sdk .ot-pc-refuse-all-handler{margin-right:5px}#onetrust-pc-sdk .ot-tgl{float:right;position:relative;z-index:1}#onetrust-pc-sdk .ot-tgl input:checked+.ot-switch .ot-switch-nob{background-color:#468254;border:1px solid #fff}#onetrust-pc-sdk .ot-tgl input:checked+.ot-switch .ot-switch-nob:before{-webkit-transform:translateX(21px);-ms-transform:translateX(21px);transform:translateX(21px);background-color:#fff}#onetrust-pc-sdk .ot-tgl input:focus+.ot-switch .ot-switch-nob{box-shadow:0 0 1px #2196f3;outline-style:auto !important;outline-width:1px !important}#onetrust-pc-sdk .ot-switch{position:relative;display:inline-block;width:45px;height:25px;margin-bottom:0}#onetrust-pc-sdk .ot-switch-nob{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#767676;border:1px solid #ddd;transition:all .2s ease-in 0s;-moz-transition:all .2s ease-in 0s;-o-transition:all .2s ease-in 0s;-webkit-transition:all .2s ease-in 0s;border-radius:20px}#onetrust-pc-sdk .ot-switch-nob:before{position:absolute;content:"";height:18px;width:18px;bottom:3px;left:2px;background-color:#fff;-webkit-transition:.4s;transition:.4s;border-radius:20px}#onetrust-pc-sdk .ot-chkbox{z-index:1}#onetrust-pc-sdk .ot-chkbox input{width:28px !important;height:28px !important}#onetrust-pc-sdk .ot-chkbox input:checked~label::before{background-color:#3860be}#onetrust-pc-sdk .ot-chkbox input+label::after{content:none;color:#fff}#onetrust-pc-sdk .ot-chkbox input:checked+label::after{content:""}#onetrust-pc-sdk .ot-chkbox input:focus+label::before{outline-style:solid;outline-width:2px;outline-style:auto}#onetrust-pc-sdk .ot-chkbox input[aria-checked=mixed]~label::before{background-color:#3860be}#onetrust-pc-sdk .ot-chkbox input[aria-checked=mixed]+label::after{content:""}#onetrust-pc-sdk .ot-chkbox label{position:relative;display:flex;align-items:center;cursor:pointer;min-height:28px}#onetrust-pc-sdk .ot-chkbox label::before,#onetrust-pc-sdk .ot-chkbox label::after{position:absolute;content:"";display:inline-block;border-radius:3px}#onetrust-pc-sdk .ot-chkbox label::before{height:18px;width:18px;border:1px solid #3860be;left:0px;left:4px;top:4px}#onetrust-pc-sdk .ot-chkbox label::after{height:5px;width:9px;border-left:3px solid;border-bottom:3px solid;transform:rotate(-45deg);-o-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);left:8px;top:8px}#onetrust-pc-sdk .ot-label-txt{display:none}#onetrust-pc-sdk .ot-chkbox input,#onetrust-pc-sdk .ot-tgl input{position:absolute;opacity:0;width:0;height:0}#onetrust-pc-sdk .ot-arw-cntr{left:5px;float:right;position:relative;pointer-events:none}#onetrust-pc-sdk .ot-arw{width:16px;height:16px;margin-left:5px;color:dimgray;display:inline-block;vertical-align:middle;-webkit-transition:all 150ms ease-in 0s;-moz-transition:all 150ms ease-in 0s;-o-transition:all 150ms ease-in 0s;transition:all 150ms ease-in 0s}#onetrust-pc-sdk input:checked~.ot-acc-hdr .ot-arw,#onetrust-pc-sdk button[aria-expanded=true]~.ot-acc-hdr .ot-arw-cntr svg{transform:rotate(90deg);-o-transform:rotate(90deg);-ms-transform:rotate(90deg);-webkit-transform:rotate(90deg)}#onetrust-pc-sdk input[type=checkbox]:focus+.ot-acc-hdr{outline:1px solid #000}#onetrust-pc-sdk .ot-acc-hdr{display:inline-block;width:100%;justify-content:flex-start !important}#onetrust-pc-sdk .ot-enbl-chr .ot-acc-hdr{justify-content:space-between}#onetrust-pc-sdk .ot-cat-item p[role=heading]{max-width:60%;line-height:1.5}#onetrust-pc-sdk .ot-enbl-chr .ot-cat-item p[role=heading]{max-width:90%}#onetrust-pc-sdk #ot-fltr-modal .ot-label-txt{display:inline-block;font-size:.85em;color:dimgray}#onetrust-pc-sdk .ot-label-status{font-size:.75em;display:none;position:relative;top:2px;padding-right:5px;float:left}#onetrust-pc-sdk .ot-plus-minus{width:20px;height:20px;font-size:1.5em;position:relative;display:inline-block;margin-right:5px;top:3px}#onetrust-pc-sdk .ot-plus-minus span{position:absolute;background:#27455c;border-radius:1px}#onetrust-pc-sdk .ot-plus-minus span:first-of-type{top:25%;bottom:25%;width:10%;left:45%}#onetrust-pc-sdk .ot-plus-minus span:last-of-type{left:25%;right:25%;height:10%;top:45%}#onetrust-pc-sdk button[aria-expanded=true]~.ot-acc-hdr .ot-arw,#onetrust-pc-sdk button[aria-expanded=true]~.ot-acc-hdr .ot-plus-minus span:first-of-type,#onetrust-pc-sdk button[aria-expanded=true]~.ot-acc-hdr .ot-plus-minus span:last-of-type{transform:rotate(90deg)}#onetrust-pc-sdk button[aria-expanded=true]~.ot-acc-hdr .ot-plus-minus span:last-of-type{left:50%;right:50%}#onetrust-pc-sdk .ot-host-item,#onetrust-pc-sdk .ot-ven-item{padding-right:0}#onetrust-pc-sdk .ot-host-item .ot-plus-minus,#onetrust-pc-sdk .ot-ven-item .ot-plus-minus{float:left;margin-right:8px;margin-top:10px}#onetrust-pc-sdk .ot-ven-item ul{list-style:none inside;font-size:100%;margin:0}#onetrust-pc-sdk .ot-ven-item ul li{margin:0 !important;padding:0;border:none !important}#onetrust-pc-sdk .ot-hide-acc>button{pointer-events:none}#onetrust-pc-sdk .ot-hide-acc .ot-plus-minus>*,#onetrust-pc-sdk .ot-hide-acc .ot-arw-cntr>*{visibility:hidden}#onetrust-pc-sdk .ot-hide-acc .ot-acc-hdr{min-height:30px}#onetrust-pc-sdk #ot-pc-title,#onetrust-pc-sdk #ot-pc-desc,#onetrust-pc-sdk #ot-category-title,#onetrust-pc-sdk .ot-cat-header,#onetrust-pc-sdk .ot-cat-item p:last-of-type:not([role=heading]){color:dimgray}#onetrust-pc-sdk #ot-pc-title{margin-top:20px;margin-bottom:10px}#onetrust-pc-sdk #ot-pc-desc,#onetrust-pc-sdk .ot-cat-item p{font-size:.79em;line-height:1.4}#onetrust-pc-sdk #ot-pc-desc *,#onetrust-pc-sdk .ot-cat-item p *{font-size:inherit;line-height:inherit}#onetrust-pc-sdk #ot-category-title,#onetrust-pc-sdk #ot-pc-title{font-size:1.125em;line-height:1.2}#onetrust-pc-sdk #ot-pc-desc{clear:both;font-size:.813em;line-height:1.5;margin-bottom:25px}#onetrust-pc-sdk #ot-pc-desc *{font-size:inherit;line-height:inherit}#onetrust-pc-sdk #ot-pc-desc a.privacy-notice-link,#onetrust-pc-sdk #ot-pc-desc a.ot-imprint-handler{margin-right:8px}#onetrust-pc-sdk #ot-pc-desc li{padding:10px 0px}#onetrust-pc-sdk #ot-pc-desc,#onetrust-pc-sdk #accept-recommended-btn-handler,#onetrust-pc-sdk #ot-pc-title,#onetrust-pc-sdk #ot-category-title,#onetrust-pc-sdk .ot-cat-header{float:left}#onetrust-pc-sdk #ot-category-title{width:100%;text-align:left}#onetrust-pc-sdk #ot-pc-title,#onetrust-pc-sdk #ot-category-title,#onetrust-pc-sdk .ot-cat-header,#onetrust-pc-sdk #ot-lst-title,#onetrust-pc-sdk .ot-ven-hdr .ot-ven-name,#onetrust-pc-sdk .ot-always-active{font-weight:bold}#onetrust-pc-sdk a{color:#656565;cursor:pointer}#onetrust-pc-sdk a:hover{color:#3860be}#onetrust-pc-sdk .ot-always-active{float:right;color:#3860be;margin-top:-2px}#onetrust-pc-sdk .ot-cat-header,#onetrust-pc-sdk .ot-always-active{font-size:.88em;line-height:1.4;position:relative}#onetrust-pc-sdk .ot-cat-item{margin-top:25px;line-height:1.1}#onetrust-pc-sdk .ot-cat-item p:last-of-type:not([role=heading]){clear:both;padding-top:15px;margin:0}#onetrust-pc-sdk .ot-acc-txt p ul,#onetrust-pc-sdk .ot-cat-item ul,#onetrust-pc-sdk li.ot-subgrp p ul{margin:0px;list-style:disc;margin-left:15px}#onetrust-pc-sdk .ot-acc-txt p ul li,#onetrust-pc-sdk .ot-cat-item ul li,#onetrust-pc-sdk li.ot-subgrp p ul li{font-size:inherit;margin:5px 0 0 0;padding:0;border:none}#onetrust-pc-sdk .ot-subgrp-cntr{display:inline-block;width:100%}#onetrust-pc-sdk .ot-subgrp-cntr .ot-tgl-cntr{float:right}#onetrust-pc-sdk .ot-subgrp-cntr .ot-tgl-cntr.ot-always-active-subgroup{width:auto}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li p,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li h5{font-size:.813em;line-height:1.5;color:dimgray}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr{display:inline-block;width:100%;vertical-align:middle}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-txt{margin:0}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li{margin:10px 0 0 0;padding:0;border:none}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li p{clear:both;float:left;padding-top:10px;margin:0}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li h5,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li p[aria-level="5"]{font-weight:bold;margin-bottom:0;float:left;position:relative;top:6px;padding-top:0}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp{margin-left:20px;overflow:hidden}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp>p ul:first-child{padding-bottom:7.5px}#onetrust-pc-sdk ul.ot-subgrps{margin:0}#onetrust-pc-sdk .ot-hlst-cntr,#onetrust-pc-sdk .ot-vlst-cntr{margin-top:3px;overflow:hidden;clear:both;padding-left:2px;padding-bottom:2px}#onetrust-pc-sdk .ot-always-active-subgroup{width:auto;padding-left:0px !important;top:3px;position:relative}#onetrust-pc-sdk .category-vendors-list-handler,#onetrust-pc-sdk .category-vendors-list-handler+a,#onetrust-pc-sdk .category-host-list-handler{color:#3860be;margin-left:0;font-size:.813em;text-decoration:none;float:left;margin-top:5px}#onetrust-pc-sdk .category-vendors-list-handler:hover,#onetrust-pc-sdk .category-vendors-list-handler+a:hover,#onetrust-pc-sdk .category-host-list-handler:hover{text-decoration-line:underline}#onetrust-pc-sdk .category-vendors-list-handler+a{clear:none}#onetrust-pc-sdk .ot-vlst-cntr svg.ot-ext-lnk,#onetrust-pc-sdk .ot-ven-hdr svg.ot-ext-lnk,#onetrust-pc-sdk .ot-host-hdr svg.ot-ext-lnk,#onetrust-pc-sdk .ot-cat-grp svg.ot-ext-lnk{display:inline-block;height:13px;width:13px;background-repeat:no-repeat;margin-left:1px;cursor:pointer;vertical-align:middle}#onetrust-pc-sdk .ot-ven-hdr svg.ot-ext-lnk{margin-bottom:-1px}#onetrust-pc-sdk .back-btn-handler{min-height:20px;font-size:1em;text-decoration:none}#onetrust-pc-sdk .back-btn-handler svg{width:12px;height:12px}#onetrust-pc-sdk .back-btn-handler:hover{opacity:.6}#onetrust-pc-sdk #ot-lst-title h3,#onetrust-pc-sdk #ot-lst-title p[aria-level="3"]{word-break:break-word;word-wrap:break-word;margin-bottom:0;color:#656565;font-weight:bold;margin-left:15px;display:inline-block;font-size:1em}#onetrust-pc-sdk #ot-lst-title{margin-top:15px;font-size:1em}#onetrust-pc-sdk #ot-pc-hdr{display:inline-block;padding-left:27px;padding-right:17px;width:calc(100% - 44px)}#onetrust-pc-sdk #ot-pc-hdr input::placeholder{color:#707070;font-style:italic}#onetrust-pc-sdk #vendor-search-handler{height:31px;width:100%;border-radius:50px;font-size:.8em;padding-right:35px;padding-left:15px;float:left;margin-left:15px}#onetrust-pc-sdk #ot-lst-cnt{transform:translate3d(0, 0, 0);position:relative;padding-left:27px;margin-right:10px;margin-top:10px;width:calc(100% - 37px);top:0;bottom:70px;height:calc(100% - 94px);overflow-y:auto;overflow-x:hidden}#onetrust-pc-sdk #ot-pc-lst .ot-tgl-cntr{right:32px;position:absolute;margin-top:10px;height:20px}#onetrust-pc-sdk #ot-pc-lst:not(.ot-enbl-chr):not(.ot-hosts-ui) .ot-tgl-cntr{right:12px}#onetrust-pc-sdk #ot-sel-blk{position:sticky;position:-webkit-sticky;width:100%;display:inline-block;top:0;overflow:hidden;z-index:3}#onetrust-pc-sdk #ot-sel-blk p{font-size:.75em;color:#6b6b6b;margin:0;display:inline-block}#onetrust-pc-sdk .ot-enbl-chr>:not(.ot-hosts-ui) .ot-sel-all{padding-right:33px}#onetrust-pc-sdk .ot-enbl-chr .ot-hosts-ui .ot-sel-all{padding-right:23px}#onetrust-pc-sdk .ot-enbl-chr .ot-accordion-layout h4~.ot-tgl+.ot-tgl,#onetrust-pc-sdk .ot-enbl-chr .ot-accordion-layout p[aria-level="4"]~.ot-tgl+.ot-tgl{right:105px}#onetrust-pc-sdk .ot-enbl-chr .ot-cat-item h5+.ot-tgl-cntr,#onetrust-pc-sdk .ot-enbl-chr .ot-cat-item p[aria-level="5"]+.ot-tgl-cntr{padding-left:31px;padding-right:13px}#onetrust-pc-sdk #ot-pc-lst:not(.ot-enbl-chr) .ot-tgl-cntr .ot-arw-cntr,#onetrust-pc-sdk #ot-pc-lst:not(.ot-enbl-chr) .ot-tgl-cntr .ot-arw-cntr *{visibility:hidden}#onetrust-pc-sdk #ot-pc-content:not(.ot-enbl-chr) .ot-pli-hdr.ot-leg-border-color span:first-child{text-align:center}#onetrust-pc-sdk #ot-pc-content:not(.ot-enbl-chr) .ot-pli-hdr.ot-leg-border-color span:last-child{text-align:right}#onetrust-pc-sdk .ot-hosts-ui:not(.ot-enbl-chr) .ot-tgl-cntr{right:23px}#onetrust-pc-sdk .ot-hosts-ui #ot-sel-blk{width:100%}#onetrust-pc-sdk .ot-lst-subhdr{display:inline-block;width:100%;margin-top:10px}#onetrust-pc-sdk .ot-lst-subhdr svg{width:30px;height:30px;position:absolute;float:left;right:-15px}#onetrust-pc-sdk .ot-search-cntr{float:left;width:82%;position:relative}#onetrust-pc-sdk .ot-fltr-cntr{float:right;right:15px;position:relative}#onetrust-pc-sdk #ot-filter-list-header{display:block;box-sizing:border-box;margin-bottom:10px;float:left;width:100%;text-decoration:none;color:#3860be;font-size:.9em;font-weight:bold;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0);padding:1px 1px 1px 15px;word-wrap:break-word;overflow-wrap:break-word}#onetrust-pc-sdk #filter-btn-handler{background-color:#3860be;border-radius:17px;display:inline-block;position:relative;width:32px;height:32px;-moz-transition:.1s ease;-o-transition:.1s ease;-webkit-transition:1s ease;transition:.1s ease;padding:0;margin:0}#onetrust-pc-sdk #filter-btn-handler:hover{opacity:.7}#onetrust-pc-sdk #filter-btn-handler svg{width:12px;margin:6px 10px 0 9px;display:block;height:12px;position:static;right:auto;top:auto}#onetrust-pc-sdk .ot-ven-link,#onetrust-pc-sdk .ot-ven-legclaim-link{color:#3860be;text-decoration:none;display:inline-block;margin-top:10px;transform:translate(0, 1%);-o-transform:translate(0, 1%);-ms-transform:translate(0, 1%);-webkit-transform:translate(0, 1%);z-index:2;position:relative;font-size:.75em}#onetrust-pc-sdk .ot-ven-link:hover,#onetrust-pc-sdk .ot-ven-legclaim-link:hover{text-decoration:underline}#onetrust-pc-sdk .ot-ven-link *,#onetrust-pc-sdk .ot-ven-legclaim-link *{font-size:inherit}#onetrust-pc-sdk .ot-ven-name{vertical-align:middle}#onetrust-pc-sdk .ot-ven-hdr,#onetrust-pc-sdk .ot-host-hdr{width:calc(100% - 165px);height:auto;float:left;text-align:left;word-break:break-word;word-wrap:break-word;vertical-align:middle;padding-bottom:2px;padding-left:2px}#onetrust-pc-sdk .ot-host-hdr{pointer-events:none;position:relative;z-index:1}#onetrust-pc-sdk .ot-host-hdr .ot-host-name{pointer-events:none}#onetrust-pc-sdk .ot-host-hdr a{pointer-events:initial}#onetrust-pc-sdk #ot-host-lst .ot-host-info{font-size:.7em;line-height:1.1}#onetrust-pc-sdk #ot-host-lst .ot-host-name,#onetrust-pc-sdk #ot-host-lst .ot-host-name a{color:dimgray;font-size:.81em;font-weight:bold;line-height:1.4;margin-bottom:5px;position:relative}#onetrust-pc-sdk #ot-host-lst .ot-host-name a,#onetrust-pc-sdk #ot-host-lst .ot-host-info a{font-size:1em}#onetrust-pc-sdk #ot-host-lst .ot-host-desc{width:100%;margin-bottom:5px}#onetrust-pc-sdk #ot-host-lst .ot-host-expand,#onetrust-pc-sdk #ot-host-lst .ot-host-desc{color:dimgray;font-size:.69em;line-height:1.4;float:left;font-weight:normal}#onetrust-pc-sdk #ot-host-lst .ot-host-hdr>a{text-decoration:underline;font-size:.69em;position:relative;z-index:2;margin-bottom:5px;line-height:1.4}#onetrust-pc-sdk #ot-host-lst .ot-host-expand{color:#3860be}#onetrust-pc-sdk #ot-host-lst .ot-host-expand *{font-size:inherit}#onetrust-pc-sdk .ot-host-opt{margin:0;font-size:inherit;display:inline-block;width:100%}#onetrust-pc-sdk .ot-host-opt .ot-host-info{border:none;font-size:.8em;color:dimgray;display:inline-block;width:calc(100% - 20px);padding:10px;margin-bottom:10px;background-color:#f8f8f8}#onetrust-pc-sdk .ot-host-opt .ot-host-info>div{overflow:auto}#onetrust-pc-sdk .ot-host-opt li>dl{font-size:.8em;margin:5px 0}#onetrust-pc-sdk .ot-host-opt li>dl>div{padding:5px 0;display:flex}#onetrust-pc-sdk .ot-host-opt li>dl>div dt{width:30%;float:left}#onetrust-pc-sdk .ot-host-opt li>dl>div dd{width:70%;float:left;word-break:break-word;word-wrap:break-word}#onetrust-pc-sdk #ot-ven-lst .ot-acc-hdr{overflow:hidden;cursor:pointer}#onetrust-pc-sdk .ot-ven-dets{border-radius:2px;margin-top:10px;background-color:#f8f8f8}#onetrust-pc-sdk .ot-ven-dets li:first-child p:first-child{border-top:none}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc:not(:first-child){border-top:1px solid #ddd !important}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc:nth-child(n+3) p{display:inline-block}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc:nth-child(n+3) p:nth-of-type(odd){width:30%}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc:nth-child(n+3) p:nth-of-type(even){width:50%;word-break:break-word;word-wrap:break-word}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc p,#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc h5{padding-top:5px;padding-bottom:5px;display:block}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc h5,#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc p[aria-level="5"]{display:inline-block}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc p:nth-last-child(-n+1){padding-bottom:10px}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc p:nth-child(-n+2):not(.disc-pur):not([role=heading]){padding-top:10px}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc .disc-pur-cont{display:inline}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc .disc-pur{position:relative;width:50% !important;word-break:break-word;word-wrap:break-word;left:calc(30% + 17px)}#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc .disc-pur:nth-child(-n+1){position:static}#onetrust-pc-sdk .ot-ven-dets p,#onetrust-pc-sdk .ot-ven-dets h5,#onetrust-pc-sdk .ot-ven-dets span{font-size:.69em;text-align:left;vertical-align:middle;word-break:break-word;word-wrap:break-word;margin:0;padding-bottom:10px;padding-left:15px;color:#2e3644}#onetrust-pc-sdk .ot-ven-dets h5,#onetrust-pc-sdk .ot-ven-dets p[aria-level="5"]{padding-top:5px;line-height:1.5}#onetrust-pc-sdk .ot-ven-dets span{color:dimgray;padding:0;vertical-align:baseline}#onetrust-pc-sdk .ot-ven-dets .ot-ven-pur h5,#onetrust-pc-sdk .ot-ven-dets .ot-ven-pur p[aria-level="5"]{border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9;padding-bottom:5px;margin-bottom:5px;font-weight:bold}#onetrust-pc-sdk #no-results{text-align:center;margin-top:30px;height:calc(100% - 300px);margin-left:27px}#onetrust-pc-sdk #no-results span{font-weight:bold}#onetrust-pc-sdk #no-results p{font-size:1em;color:#2e3644;word-break:break-word;word-wrap:break-word}#onetrust-pc-sdk #ot-fltr-modal{right:13px;top:87px;height:90%;max-height:370px;display:none;-moz-transition:.2s ease;-o-transition:.2s ease;-webkit-transition:2s ease;transition:.2s ease;opacity:1;position:absolute}#onetrust-pc-sdk #ot-fltr-cnt{z-index:2147483646;background-color:#fff;position:relative;height:100%;max-width:325px;border-radius:3px;padding-right:10px;padding-bottom:5px;-webkit-box-shadow:0px 0px 12px 2px #c7c5c7;-moz-box-shadow:0px 0px 12px 2px #c7c5c7;box-shadow:0px 0px 12px 2px #c7c5c7}#onetrust-pc-sdk .ot-fltr-scrlcnt{overflow-y:auto;overflow-x:hidden;clear:both;max-height:calc(100% - 60px);border:none;padding:0;margin:0;min-width:0}#onetrust-pc-sdk #ot-anchor{border:12px solid rgba(0,0,0,0);display:none;position:absolute;z-index:2147483647;right:36px;top:75px;transform:rotate(45deg);-o-transform:rotate(45deg);-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);background-color:#fff;-webkit-box-shadow:-3px -3px 5px -2px #c7c5c7;-moz-box-shadow:-3px -3px 5px -2px #c7c5c7;box-shadow:-3px -3px 5px -2px #c7c5c7}#onetrust-pc-sdk .ot-fltr-btns{margin-left:15px}#onetrust-pc-sdk #filter-apply-handler{margin-right:15px}#onetrust-pc-sdk .ot-fltr-opt{margin-bottom:5px;margin-left:15px;min-height:20px;width:75%}#onetrust-pc-sdk .ot-fltr-opt label{padding-left:30px;margin-bottom:0}#onetrust-pc-sdk .ot-fltr-opt p{display:inline-block;margin:0;font-size:.9em;color:#2e3644}#onetrust-pc-sdk #ot-sel-blk .ot-chkbox{width:20px;height:20px;float:right}#onetrust-pc-sdk .line-through label::after,#onetrust-pc-sdk[dir=rtl] .line-through label::after{height:auto;border-left:0;transform:none;-o-transform:none;-ms-transform:none;-webkit-transform:none;left:9px;top:12px}#onetrust-pc-sdk #ot-selall-vencntr label,#onetrust-pc-sdk #ot-selall-adtlvencntr label,#onetrust-pc-sdk #ot-selall-hostcntr label,#onetrust-pc-sdk #ot-selall-licntr label,#onetrust-pc-sdk #ot-selall-gnvencntr label{position:relative;display:inline-block;margin:0}#onetrust-pc-sdk #ot-selall-vencntr input,#onetrust-pc-sdk #ot-selall-adtlvencntr input,#onetrust-pc-sdk #ot-selall-hostcntr input,#onetrust-pc-sdk #ot-selall-licntr input,#onetrust-pc-sdk #ot-selall-gnvencntr input{height:auto;width:auto;border-radius:0;font-size:initial;padding:0;float:none}#onetrust-pc-sdk #ot-ven-lst:first-child{border-top:1px solid #e2e2e2}#onetrust-pc-sdk #vdr-lst-dsc{font-size:.812em;line-height:1.5;padding:10px 15px 5px 15px}#onetrust-pc-sdk #close-pc-btn-handler{margin:0;float:right;height:44px;width:44px;background-size:10px}#onetrust-pc-sdk #close-pc-btn-handler svg{display:block}#onetrust-pc-sdk .ot-close-icon{padding:0;background-color:rgba(0,0,0,0);border:none}#onetrust-pc-sdk #clear-filters-handler{float:right;max-width:200px;margin-bottom:10px;text-decoration:none;margin-top:20px;font-weight:bold;color:#3860be;font-size:.9em;letter-spacing:normal;border:none;padding:1px;border:1px solid #3860be;padding:5px 10px}#onetrust-pc-sdk #clear-filters-handler:hover{color:#2285f7}#onetrust-pc-sdk #clear-filters-handler:focus{outline:#000 solid 1px}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item{position:relative;border-radius:1px;margin:0;padding:0;border:1px solid #d8d8d8;border-top:none;float:left;width:calc(100% - 2px)}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item:first-of-type{margin-top:10px;border-top:1px solid #d8d8d8}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item .ot-vlst-cntr:first-child{margin-top:15px}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item .ot-acc-grpdesc{font-size:.813em;line-height:1.5;padding-left:20px;padding-right:20px;width:calc(100% - 40px)}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item .ot-acc-grpdesc ul{padding-bottom:5px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-hdr{padding-top:11.5px;padding-bottom:11.5px;padding-left:20px;padding-right:15px;width:calc(100% - 35px);display:inline-block;position:relative;min-height:25px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-txt{width:100%;padding:0px}#onetrust-pc-sdk .ot-accordion-layout .ot-subgrp-cntr,#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpdesc+.ot-leg-btn-container{padding-left:20px;padding-right:16px;width:calc(100% - 36px)}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpdesc+.ot-leg-btn-container{margin-top:5px;margin-bottom:10px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpcntr{z-index:1;position:relative}#onetrust-pc-sdk .ot-accordion-layout input[type=checkbox]:checked~.ot-acc-txt.ot-acc-grpcntr{width:auto;padding-bottom:15px}#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header{float:none;font-size:.88em;color:#2e3644;margin:0;display:inline-block;height:auto;word-wrap:break-word;vertical-align:middle;min-height:inherit}#onetrust-pc-sdk .ot-accordion-layout .ot-vlst-cntr,#onetrust-pc-sdk .ot-accordion-layout .ot-hlst-cntr{padding-left:20px;width:calc(100% - 20px);display:inline-block;margin-top:0;padding-bottom:2px}#onetrust-pc-sdk .ot-accordion-layout h4~.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout h4~.ot-always-active,#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-always-active{right:16px}#onetrust-pc-sdk .ot-accordion-layout h4~.ot-tgl+.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-tgl+.ot-tgl{right:88px}#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header+.ot-arw-cntr{right:10px;margin-top:-2px;left:auto}#onetrust-pc-sdk .ot-accordion-layout h4~.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout h4~.ot-always-active,#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-always-active,#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header+.ot-arw-cntr{position:absolute;top:60%;transform:translateY(-50%)}#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout p[aria-level="4"]~.ot-always-active{position:relative;transform:none;right:0}#onetrust-pc-sdk #ot-category-title{padding-bottom:10px}#onetrust-pc-sdk .ot-pli-hdr{color:#77808e;overflow:hidden;padding-top:7.5px;padding-bottom:7.5px;width:calc(100% - 2px);border-top-left-radius:3px;border-top-right-radius:3px}#onetrust-pc-sdk .ot-pli-hdr .ot-li-title{float:right;font-size:.813em}#onetrust-pc-sdk .ot-pli-hdr span:first-child{top:50%;transform:translateY(50%);max-width:80px}#onetrust-pc-sdk .ot-pli-hdr span:last-child{text-align:center;max-width:95px}#onetrust-pc-sdk .ot-pli-hdr.ot-leg-border-color{background-color:#f8f8f8;border:1px solid #e9e9e9}#onetrust-pc-sdk .ot-pli-hdr.ot-leg-border-color span:first-child{text-align:left;width:80px}#onetrust-pc-sdk .ot-subgrp>h5,#onetrust-pc-sdk .ot-subgrp>p[aria-level="5"],#onetrust-pc-sdk .ot-cat-header{width:calc(100% - 130px);max-width:60%}#onetrust-pc-sdk .ot-pli-hdr~.ot-cat-item .ot-subgrp>h5,#onetrust-pc-sdk .ot-pli-hdr~.ot-cat-item .ot-subgrp>p[aria-level="5"],#onetrust-pc-sdk .ot-pli-hdr~.ot-cat-item .ot-cat-header{width:calc(100% - 145px)}#onetrust-pc-sdk .ot-pli-hdr~.ot-cat-item h5+.ot-tgl-cntr,#onetrust-pc-sdk .ot-pli-hdr~.ot-cat-item p[aria-level="5"]+.ot-tgl-cntr,#onetrust-pc-sdk .ot-pli-hdr~.ot-cat-item .ot-cat-header+.ot-tgl{padding-left:28px}#onetrust-pc-sdk .ot-acc-grpcntr .ot-acc-grpdesc{margin-bottom:5px}#onetrust-pc-sdk .ot-acc-grpcntr .ot-subgrp-cntr{border-top:1px solid #e9e9e9}#onetrust-pc-sdk .ot-acc-grpcntr .ot-subgrp-cntr ul.ot-subgrps li{margin-top:5px;margin-bottom:5px}#onetrust-pc-sdk .ot-acc-hdr .ot-arw-cntr+.ot-tgl,#onetrust-pc-sdk .ot-cat-item h4+.ot-tgl,#onetrust-pc-sdk .ot-acc-txt h4+.ot-tgl-cntr,#onetrust-pc-sdk .ot-cat-item p[aria-level="4"]+.ot-tgl,#onetrust-pc-sdk .ot-acc-txt p[aria-level="4"]+.ot-tgl-cntr{padding-left:30px}#onetrust-pc-sdk .ot-sel-all-hdr,#onetrust-pc-sdk .ot-sel-all-chkbox{position:relative;display:inline-block;width:100%}#onetrust-pc-sdk .ot-sel-all-chkbox{z-index:1}#onetrust-pc-sdk .ot-li-hdr,#onetrust-pc-sdk .ot-consent-hdr{float:right;font-size:.813em;line-height:normal;text-align:center;word-break:break-word;word-wrap:break-word}#onetrust-pc-sdk .ot-li-hdr{max-width:100px;min-width:100px}#onetrust-pc-sdk .ot-consent-hdr{margin-right:5px;max-width:55px}#onetrust-pc-sdk .ot-ven-litgl+.ot-arw-cntr{margin-left:81px}#onetrust-pc-sdk .ot-sel-all{margin:0;position:relative;padding-right:13px;float:right}#onetrust-pc-sdk #ot-selall-hostcntr,#onetrust-pc-sdk #ot-selall-vencntr{right:20px;position:relative}#onetrust-pc-sdk #ot-selall-licntr{position:relative;right:79px}#onetrust-pc-sdk #ot-pc-lst #ot-ven-lst .ot-sel-all{position:relative;display:inline-block;width:20px;height:25px}#onetrust-pc-sdk #ot-pc-lst #ot-ven-lst .ot-sel-all label{position:absolute;padding:0;width:18px;height:18px}#onetrust-pc-sdk .ot-always-active-group .ot-cat-header{width:55%}#onetrust-pc-sdk .ot-leg-btn-container{display:inline-block;width:100%;margin-top:10px}#onetrust-pc-sdk .ot-leg-btn-container button{height:auto;padding:6.5px 8px;margin-bottom:0;letter-spacing:0;line-height:normal}#onetrust-pc-sdk .ot-leg-btn-container svg{display:none;height:14px;width:14px;padding-right:5px;vertical-align:sub}#onetrust-pc-sdk .ot-active-leg-btn{cursor:default;pointer-events:none}#onetrust-pc-sdk .ot-active-leg-btn svg{display:inline-block}#onetrust-pc-sdk .ot-remove-objection-handler{border:none;text-decoration:underline;padding:0;font-size:.82em;font-weight:600;line-height:1.4;padding-left:10px}#onetrust-pc-sdk .ot-obj-leg-btn-handler span{font-weight:bold;text-align:center;font-size:.91em;line-height:1.5}#onetrust-pc-sdk[dir=rtl] input~.ot-acc-hdr .ot-arw,#onetrust-pc-sdk[dir=rtl] #ot-back-arw{transform:rotate(180deg);-o-transform:rotate(180deg);-ms-transform:rotate(180deg);-webkit-transform:rotate(180deg)}#onetrust-pc-sdk[dir=rtl] input:checked~.ot-acc-hdr .ot-arw{transform:rotate(270deg);-o-transform:rotate(270deg);-ms-transform:rotate(270deg);-webkit-transform:rotate(270deg)}#onetrust-pc-sdk[dir=rtl] .ot-chkbox label::after{transform:rotate(45deg);-webkit-transform:rotate(45deg);-o-transform:rotate(45deg);-ms-transform:rotate(45deg);border-left:0;border-right:3px solid}#onetrust-pc-sdk[dir=rtl] .ot-lst-subhdr svg{right:0}#onetrust-pc-sdk .ot-ven-ctgl,#onetrust-pc-sdk .ot-ven-litgl,#onetrust-pc-sdk .ot-host-tgl,#onetrust-pc-sdk .ot-ven-gvctgl{position:relative;display:inline-block;width:20px;height:20px;margin-left:60px}#onetrust-pc-sdk .ot-ven-ctgl label,#onetrust-pc-sdk .ot-ven-litgl label,#onetrust-pc-sdk .ot-host-tgl label,#onetrust-pc-sdk .ot-ven-gvctgl label{position:absolute;margin:0}#onetrust-pc-sdk #ot-host-lst .ot-host-expand{clear:both;float:none;display:block}#onetrust-pc-sdk ul{list-style:none}#onetrust-pc-sdk ul li:not(.ot-fltr-opt){position:relative;margin:0;padding:15px 15px 15px 15px;border-bottom:1px solid #e2e2e2}#onetrust-pc-sdk ul li h3,#onetrust-pc-sdk ul li h4,#onetrust-pc-sdk ul li p[aria-level="3"],#onetrust-pc-sdk ul li p[aria-level="4"]{font-size:.75em;color:#656565;margin:0;height:auto;word-break:break-word;word-wrap:break-word}#onetrust-pc-sdk ul li p:not([role=heading]){margin:0;font-size:.7em}#onetrust-pc-sdk .ot-ven-item>button:focus,#onetrust-pc-sdk .ot-host-item>button:focus,#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item>button:focus,#onetrust-pc-sdk .ot-acc-cntr>button:focus{outline:#000 solid 2px}#onetrust-pc-sdk .ot-ven-item>button,#onetrust-pc-sdk .ot-host-item>button,#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item>button,#onetrust-pc-sdk .ot-acc-cntr>button{position:absolute;cursor:pointer;width:100%;height:100%;margin:0;top:0;left:0;z-index:1;max-width:none;border:none}#onetrust-pc-sdk .ot-ven-item>button[aria-expanded=false]~.ot-acc-txt,#onetrust-pc-sdk .ot-host-item>button[aria-expanded=false]~.ot-acc-txt,#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item>button[aria-expanded=false]~.ot-acc-txt,#onetrust-pc-sdk .ot-acc-cntr>button[aria-expanded=false]~.ot-acc-txt{margin-top:0;max-height:0;overflow:hidden;width:100%;transition:.25s ease-out;display:none}#onetrust-pc-sdk .ot-ven-item>button[aria-expanded=true]~.ot-acc-txt,#onetrust-pc-sdk .ot-host-item>button[aria-expanded=true]~.ot-acc-txt,#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item>button[aria-expanded=true]~.ot-acc-txt,#onetrust-pc-sdk .ot-acc-cntr>button[aria-expanded=true]~.ot-acc-txt{transition:.1s ease-in;width:auto;overflow:auto;display:block}#onetrust-pc-sdk .ot-host-item>button:focus{outline:0;border:2px solid #000}#onetrust-pc-sdk.ot-addtl-vendors>:not(.ot-enbl-chr) #ot-selall-licntr{right:135px}#onetrust-pc-sdk.ot-addtl-vendors>:not(.ot-enbl-chr) #ot-selall-adtlvencntr,#onetrust-pc-sdk.ot-addtl-vendors>:not(.ot-enbl-chr) #ot-selall-gnvencntr{right:40px}#onetrust-pc-sdk.ot-addtl-vendors .ot-li-hdr{margin-right:15px}#onetrust-pc-sdk.ot-addtl-vendors #ot-selall-licntr{right:115px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) #ot-sel-blk{background-color:#f9f9fc;border:1px solid #e2e2e2;width:auto;padding-bottom:5px;padding-top:5px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) .ot-sel-all{padding-right:23px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) ul li{border:1px solid #e2e2e2;margin-bottom:10px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) .ot-sel-all-chkbox{float:right;width:auto;right:3px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) .ot-tgl-cntr{right:12px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) .ot-ven-ctgl{margin-left:75px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) .ot-ven-litgl+.ot-arw-cntr{margin-left:95px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) .ot-acc-cntr>.ot-acc-hdr{padding-top:10px;padding-bottom:10px}#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) #ot-addtl-venlst .ot-tgl-cntr{right:32px}#onetrust-pc-sdk.ot-addtl-vendors #ot-ven-lst:first-child{border-top:none}#onetrust-pc-sdk.ot-addtl-vendors #ot-selall-vencntr{right:40px;position:absolute}#onetrust-pc-sdk #ot-selall-adtlvencntr,#onetrust-pc-sdk #ot-selall-gnvencntr{position:relative;right:20px}#onetrust-pc-sdk .ot-acc-cntr{position:relative;border-left:1px solid #e2e2e2;border-right:1px solid #e2e2e2;border-bottom:1px solid #e2e2e2}#onetrust-pc-sdk .ot-acc-cntr>.ot-acc-hdr{background-color:#f9f9fc;padding-left:15px;padding-top:5px;padding-bottom:5px;width:calc(100% - 15px)}#onetrust-pc-sdk .ot-acc-cntr>.ot-acc-hdr .ot-plus-minus{vertical-align:middle;top:auto}#onetrust-pc-sdk .ot-acc-cntr>.ot-acc-hdr .ot-arw-cntr{right:10px;left:auto}#onetrust-pc-sdk .ot-acc-cntr.ot-add-tech .ot-acc-hdr{padding:10px 0 10px 15px}#onetrust-pc-sdk .ot-acc-cntr>button[aria-expanded=true]~.ot-acc-hdr{border-bottom:1px solid #e2e2e2}#onetrust-pc-sdk .ot-acc-cntr>.ot-acc-txt{padding-left:10px;padding-right:10px;padding-top:10px;position:relative;z-index:1}#onetrust-pc-sdk .ot-acc-cntr .ot-addtl-venbox{display:none}#onetrust-pc-sdk .ot-vensec-title{font-size:.813em;vertical-align:middle;display:inline-block}#onetrust-pc-sdk.ot-close-btn-link #close-pc-btn-handler{border:none;height:auto;line-height:1.5;text-decoration:underline;font-size:.69em;background:none;right:15px;top:15px;width:auto;position:absolute;font-weight:normal}#onetrust-pc-sdk .ot-cat-header{float:left;font-weight:600;font-size:.875em;line-height:1.5;max-width:90%;vertical-align:middle}#onetrust-pc-sdk .ot-vnd-item>button:focus{outline:#000 solid 2px}#onetrust-pc-sdk .ot-vnd-item>button{position:absolute;cursor:pointer;width:100%;height:100%;margin:0;top:0;left:0;z-index:1;max-width:none;border:none}#onetrust-pc-sdk .ot-vnd-item>button[aria-expanded=false]~.ot-acc-txt{margin-top:0;max-height:0;opacity:0;overflow:hidden;width:100%;transition:.25s ease-out;display:none}#onetrust-pc-sdk .ot-vnd-item>button[aria-expanded=true]~.ot-acc-txt{transition:.1s ease-in;margin-top:10px;width:100%;overflow:auto;display:block}#onetrust-pc-sdk .ot-vnd-item>button[aria-expanded=true]~.ot-acc-grpcntr{width:auto;margin-top:0px;padding-bottom:10px}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item{position:relative;border-radius:2px;margin:0;padding:0;border:1px solid #d8d8d8;border-top:none;width:calc(100% - 2px);float:left}#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item:first-of-type{margin-top:10px;border-top:1px solid #d8d8d8}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpdesc{padding-left:20px;padding-right:20px;width:calc(100% - 40px);font-size:.812em;margin-bottom:10px;margin-top:15px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpdesc>ul{padding-top:10px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpdesc>ul li{padding-top:0;line-height:1.5;padding-bottom:10px}#onetrust-pc-sdk .ot-accordion-layout div+.ot-acc-grpdesc{margin-top:5px}#onetrust-pc-sdk .ot-accordion-layout .ot-vlst-cntr:first-child{margin-top:10px}#onetrust-pc-sdk .ot-accordion-layout .ot-vlst-cntr:last-child,#onetrust-pc-sdk .ot-accordion-layout .ot-hlst-cntr:last-child{margin-bottom:5px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-hdr{padding-top:11.5px;padding-bottom:11.5px;padding-left:20px;padding-right:20px;width:calc(100% - 40px);display:inline-block}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-txt{width:100%;padding:0}#onetrust-pc-sdk .ot-accordion-layout .ot-subgrp-cntr{padding-left:20px;padding-right:15px;padding-bottom:0;width:calc(100% - 35px)}#onetrust-pc-sdk .ot-accordion-layout .ot-subgrp{padding-right:5px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpcntr{z-index:1;position:relative}#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header+.ot-arw-cntr{position:absolute;top:50%;transform:translateY(-50%);right:20px;margin-top:-2px}#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header+.ot-arw-cntr .ot-arw{width:15px;height:20px;margin-left:5px;color:dimgray}#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header{float:none;color:#2e3644;margin:0;display:inline-block;height:auto;word-wrap:break-word;min-height:inherit}#onetrust-pc-sdk .ot-accordion-layout .ot-vlst-cntr,#onetrust-pc-sdk .ot-accordion-layout .ot-hlst-cntr{padding-left:20px;width:calc(100% - 20px);display:inline-block;margin-top:0;padding-bottom:2px}#onetrust-pc-sdk .ot-accordion-layout .ot-acc-hdr{position:relative;min-height:25px}#onetrust-pc-sdk .ot-accordion-layout h4~.ot-tgl,#onetrust-pc-sdk .ot-accordion-layout h4~.ot-always-active{position:absolute;top:50%;transform:translateY(-50%);right:20px}#onetrust-pc-sdk .ot-accordion-layout h4~.ot-tgl+.ot-tgl{right:95px}#onetrust-pc-sdk .ot-accordion-layout .category-vendors-list-handler,#onetrust-pc-sdk .ot-accordion-layout .category-vendors-list-handler+a{margin-top:5px}#onetrust-pc-sdk #ot-pc-lst{display:flex;flex-direction:column}#onetrust-pc-sdk #ot-lst-cnt{margin-top:1rem;max-height:calc(100% - 100px)}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info-cntr{border:1px solid #d8d8d8;padding:.75rem 2rem;padding-bottom:0;width:auto;margin-top:.5rem}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info{margin-bottom:1rem;padding-left:.75rem;padding-right:.75rem;display:flex;flex-direction:column}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info>div{display:flex}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info[data-vnd-info-key*=DPOEmail]{border-top:1px solid #d8d8d8;padding-top:1rem}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info[data-vnd-info-key*=DPOLink]{border-bottom:1px solid #d8d8d8;padding-bottom:1rem}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info .ot-vnd-lbl{font-weight:bold;font-size:.85em;margin-bottom:.5rem}#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info .ot-vnd-cnt{margin-left:.5rem;font-weight:500;font-size:.85rem}#onetrust-pc-sdk .ot-vs-list,#onetrust-pc-sdk .ot-vnd-serv{width:auto;padding:1rem 1.25rem;padding-bottom:0}#onetrust-pc-sdk .ot-vs-list .ot-vnd-serv-hdr-cntr,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-serv-hdr-cntr{padding-bottom:.75rem;border-bottom:1px solid #d8d8d8}#onetrust-pc-sdk .ot-vs-list .ot-vnd-serv-hdr-cntr .ot-vnd-serv-hdr,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-serv-hdr-cntr .ot-vnd-serv-hdr{font-weight:600;font-size:.95em;line-height:2;margin-left:.5rem}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item{border:none;margin:0;padding:0}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item button,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item button{outline:none;border-bottom:1px solid #d8d8d8}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item button[aria-expanded=true],#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item button[aria-expanded=true]{border-bottom:none}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item:first-child,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item:first-child{margin-top:.25rem;border-top:unset}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item:last-child,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item:last-child{margin-bottom:.5rem}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item:last-child button,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item:last-child button{border-bottom:none}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info-cntr,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info-cntr{border:1px solid #d8d8d8;padding:.75rem 1.75rem;padding-bottom:0;width:auto;margin-top:.5rem}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info{margin-bottom:1rem;padding-left:.75rem;padding-right:.75rem;display:flex;flex-direction:column}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info>div,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info>div{display:flex}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info[data-vnd-info-key*=DPOEmail],#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info[data-vnd-info-key*=DPOEmail]{border-top:1px solid #d8d8d8;padding-top:1rem}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info[data-vnd-info-key*=DPOLink],#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info[data-vnd-info-key*=DPOLink]{border-bottom:1px solid #d8d8d8;padding-bottom:1rem}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info .ot-vnd-lbl,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info .ot-vnd-lbl{font-weight:bold;font-size:.85em;margin-bottom:.5rem}#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info .ot-vnd-cnt,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info .ot-vnd-cnt{margin-left:.5rem;font-weight:500;font-size:.85rem}#onetrust-pc-sdk .ot-vs-list.ot-vnd-subgrp-cnt,#onetrust-pc-sdk .ot-vnd-serv.ot-vnd-subgrp-cnt{padding-left:40px}#onetrust-pc-sdk .ot-vs-list.ot-vnd-subgrp-cnt .ot-vnd-serv-hdr-cntr .ot-vnd-serv-hdr,#onetrust-pc-sdk .ot-vnd-serv.ot-vnd-subgrp-cnt .ot-vnd-serv-hdr-cntr .ot-vnd-serv-hdr{font-size:.8em}#onetrust-pc-sdk .ot-vs-list.ot-vnd-subgrp-cnt .ot-cat-header,#onetrust-pc-sdk .ot-vnd-serv.ot-vnd-subgrp-cnt .ot-cat-header{font-size:.8em}#onetrust-pc-sdk .ot-subgrp-cntr .ot-vnd-serv{margin-bottom:1rem;padding:1rem .95rem}#onetrust-pc-sdk .ot-subgrp-cntr .ot-vnd-serv .ot-vnd-serv-hdr-cntr{padding-bottom:.75rem;border-bottom:1px solid #d8d8d8}#onetrust-pc-sdk .ot-subgrp-cntr .ot-vnd-serv .ot-vnd-serv-hdr-cntr .ot-vnd-serv-hdr{font-weight:700;font-size:.8em;line-height:20px;margin-left:.82rem}#onetrust-pc-sdk .ot-subgrp-cntr .ot-cat-header{font-weight:700;font-size:.8em;line-height:20px}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-vnd-serv .ot-vnd-lst-cont .ot-accordion-layout .ot-acc-hdr div.ot-chkbox{margin-left:.82rem}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr{padding:.7rem 0;margin:0;display:flex;width:100%;align-items:center;justify-content:space-between}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr div:first-child,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr div:first-child,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr div:first-child,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr div:first-child,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr div:first-child,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr div:first-child,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr div:first-child{margin-left:.5rem}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr div:last-child,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr div:last-child,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr div:last-child,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr div:last-child,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr div:last-child,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr div:last-child,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr div:last-child{margin-right:.5rem;margin-left:.5rem}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-always-active,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-always-active,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-always-active,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-always-active,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-always-active,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-always-active,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-always-active{position:relative;right:unset;top:unset;transform:unset}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-plus-minus,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-plus-minus,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-plus-minus,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-plus-minus,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-plus-minus,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-plus-minus,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-plus-minus{top:0}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-arw-cntr,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-arw-cntr,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-arw-cntr,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-arw-cntr,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-arw-cntr,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-arw-cntr,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-arw-cntr{float:none;top:unset;right:unset;transform:unset;margin-top:-2px;position:relative}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-cat-header,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-cat-header,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-cat-header,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-cat-header,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-cat-header,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-cat-header,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-cat-header{flex:1;margin:0 .5rem}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-tgl,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-tgl,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-tgl,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-tgl,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-tgl,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-tgl,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-tgl{position:relative;transform:none;right:0;top:0;float:none}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-chkbox,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-chkbox,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-chkbox,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-chkbox,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-chkbox{position:relative;margin:0 .5rem}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-chkbox label,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-chkbox label,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-chkbox label,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox label,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-chkbox label,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox label,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-chkbox label{padding:0}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-chkbox label::before,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-chkbox label::before,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-chkbox label::before,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox label::before,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-chkbox label::before,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox label::before,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-chkbox label::before{position:relative}#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-chkbox input,#onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-chkbox input,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-chkbox input,#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox input,#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-chkbox input,#onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox input,#onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-chkbox input{position:absolute;cursor:pointer;width:100%;height:100%;opacity:0;margin:0;top:0;left:0;z-index:1}#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp .ot-acc-hdr h5.ot-cat-header,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp .ot-acc-hdr h4.ot-cat-header,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp .ot-acc-hdr p[aria-level="5"].ot-cat-header,#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp .ot-acc-hdr p[aria-level="4"].ot-cat-header{margin:0}#onetrust-pc-sdk .ot-vs-config .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp h5,#onetrust-pc-sdk .ot-vs-config .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp p[aria-level="5"]{top:0;line-height:20px}#onetrust-pc-sdk .ot-vs-list{display:flex;flex-direction:column;padding:0;margin:.5rem 4px}#onetrust-pc-sdk .ot-vs-selc-all{display:flex;padding:0;float:unset;align-items:center;justify-content:flex-start}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf{justify-content:flex-end}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf.ot-caret-conf .ot-sel-all-chkbox{margin-right:48px}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf .ot-sel-all-chkbox{margin:0;padding:0;margin-right:14px;justify-content:flex-end}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf #ot-selall-vencntr.ot-chkbox,#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf #ot-selall-vencntr.ot-tgl{display:inline-block;right:unset;width:auto;height:auto;float:none}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf #ot-selall-vencntr label{width:45px;height:25px}#onetrust-pc-sdk .ot-vs-selc-all .ot-sel-all-chkbox{margin-right:11px;margin-left:.75rem;display:flex;align-items:center}#onetrust-pc-sdk .ot-vs-selc-all .sel-all-hdr{margin:0 1.25rem;font-size:.812em;line-height:normal;text-align:center;word-break:break-word;word-wrap:break-word}#onetrust-pc-sdk .ot-vnd-list-cnt #ot-selall-vencntr.ot-chkbox{float:unset;right:0}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf.ot-caret-conf .ot-sel-all-chkbox{margin-right:.5rem}#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf .ot-sel-all-chkbox{margin-right:15px}#onetrust-pc-sdk #ot-sel-blk .ot-chkbox{right:unset}#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-tgl{padding:0}#onetrust-pc-sdk .ot-vs-list{margin-top:.5rem}#onetrust-pc-sdk .ot-pgph-link{font-size:.813em;margin-top:5px;position:relative}#onetrust-pc-sdk .ot-pgph-link.ot-pgph-link-subgroup{margin-bottom:1rem;clear:both;display:block}#onetrust-pc-sdk .ot-pgph-contr{margin:0 2.5rem}#onetrust-pc-sdk .ot-pgph-title{font-size:1.18rem;margin-bottom:2rem}#onetrust-pc-sdk .ot-pgph-desc{font-size:1rem;font-weight:400;margin-bottom:2rem;line-height:1.5rem}#onetrust-pc-sdk .ot-pgph-desc:not(:last-child):after{content:"";width:96%;display:block;margin:0 auto;padding-bottom:2rem;border-bottom:1px solid #e9e9e9}@media(min-width: 768px){#onetrust-pc-sdk.ot-tgl-with-label .ot-label-status{display:inline}#onetrust-pc-sdk.ot-tgl-with-label #ot-pc-lst .ot-label-status{display:none}}@media only screen and (max-width: 600px){#onetrust-pc-sdk{max-width:100%;min-width:100%}#onetrust-pc-sdk .ot-ftr-stacked button{width:100%}#onetrust-pc-sdk #ot-lst-cnt,#onetrust-pc-sdk #ot-pc-hdr{margin-top:0;padding:0 5px 0 10px;width:calc(100% - 25px)}#onetrust-pc-sdk .ot-btn-container.ot-button-order-container{height:100%;display:flex;flex-direction:column;justify-content:space-around}#onetrust-pc-sdk .ot-btn-container.ot-button-order-container .ot-pc-refuse-all-handler,#onetrust-pc-sdk .ot-btn-container.ot-button-order-container .save-preference-btn-handler,#onetrust-pc-sdk .ot-btn-container.ot-button-order-container #accept-recommended-btn-handler{width:100%;float:none !important;margin:0 !important}}@media only screen and (max-width: 425px){#onetrust-pc-sdk.otPcPanel{left:0;min-width:100%;height:100%;top:0;border-radius:0}#onetrust-pc-sdk #ot-host-lst .ot-chkbox{margin-left:0}#onetrust-pc-sdk #ot-pc-content{margin:0 10px 0 20px}#onetrust-pc-sdk p{font-size:.7em}#onetrust-pc-sdk .ot-tgl-cntr{width:auto}#onetrust-pc-sdk #vendor-search-handler{font-size:1em}#onetrust-pc-sdk #ot-lst-cnt{height:calc(100% - 95px)}#onetrust-pc-sdk .ot-switch+p{max-width:80%}#onetrust-pc-sdk button{letter-spacing:.01em}#onetrust-pc-sdk .save-preference-btn-handler{margin-top:0}#onetrust-pc-sdk .ot-search-cntr{width:75%}}@media only screen and (max-width: 320px){#onetrust-pc-sdk #ot-fltr-cnt{margin-left:15px}}@media only screen and (max-width: 896px)and (max-height: 425px)and (orientation: landscape){#onetrust-pc-sdk{left:0;top:0;min-width:100%;height:100%;border-radius:0}#onetrust-pc-sdk .ot-pc-header{height:auto;min-height:20px}#onetrust-pc-sdk .ot-pc-header .ot-pc-logo{max-height:30px}#onetrust-pc-sdk .ot-pc-footer{max-height:90px;height:100%}#onetrust-pc-sdk .ot-pc-footer .ot-btn-container{overflow-y:auto;overflow-x:hidden;max-height:calc(100% - 30px)}#onetrust-pc-sdk #ot-pc-content,#onetrust-pc-sdk #ot-pc-lst{bottom:auto;height:auto !important}#onetrust-pc-sdk.ot-ftr-stacked #ot-pc-content{bottom:auto}#onetrust-pc-sdk button{letter-spacing:.02em}#onetrust-pc-sdk #ot-anchor{left:initial;right:50px}#onetrust-pc-sdk #ot-lst-title{margin-top:12px}#onetrust-pc-sdk #ot-lst-title *{font-size:inherit}#onetrust-pc-sdk #ot-pc-hdr input{margin-right:0;padding-right:45px}#onetrust-pc-sdk .ot-switch+p{max-width:85%}#onetrust-pc-sdk #ot-lst-cnt{max-height:none;overflow:initial}#onetrust-pc-sdk #ot-lst-cnt.no-results{height:auto}#onetrust-pc-sdk input{font-size:1em !important}#onetrust-pc-sdk p{font-size:.6em}#onetrust-pc-sdk #ot-pc-lst{overflow:auto}#onetrust-pc-sdk #ot-fltr-modal{width:100%;height:100%;max-height:none;top:0}#onetrust-pc-sdk #ot-sel-blk{position:static}#onetrust-pc-sdk #ot-fltr-cnt{height:250px;width:100%}#onetrust-pc-sdk.ot-shw-fltr #ot-anchor{display:none !important}#onetrust-pc-sdk.ot-shw-fltr #ot-pc-lst{height:100% !important;overflow:hidden;top:0px}#onetrust-pc-sdk.ot-shw-fltr #ot-fltr-cnt{margin:0;height:100%;padding:10px;top:0;width:calc(100% - 20px);position:absolute;right:0;left:0;max-width:none}#onetrust-pc-sdk.ot-shw-fltr .ot-fltr-scrlcnt{max-height:calc(100% - 65px)}}@media screen and (max-height: 450px){#onetrust-pc-sdk .ot-pc-header{max-height:15vh;overflow:hidden}#onetrust-pc-sdk .ot-pc-footer{max-height:min(var(--ot-footer-space),30vh) !important;overflow-y:auto;scrollbar-gutter:stable;box-sizing:border-box}#onetrust-pc-sdk .ot-pc-footer .ot-btn-container{overflow-y:visible !important;max-height:none !important}#onetrust-pc-sdk #ot-pc-content{flex:1 1 auto;min-height:20vh}} | |
| 225 | + #onetrust-consent-sdk #onetrust-pc-sdk, | |
| 226 | + #onetrust-consent-sdk #ot-search-cntr, | |
| 227 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-switch.ot-toggle, | |
| 228 | + #onetrust-consent-sdk #onetrust-pc-sdk ot-grp-hdr1 .checkbox, | |
| 229 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-title:after | |
| 230 | + ,#onetrust-consent-sdk #onetrust-pc-sdk #ot-sel-blk, | |
| 231 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-fltr-cnt, | |
| 232 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-anchor { | |
| 233 | + background-color: #FFFFFF; | |
| 234 | + } | |
| 235 | + | |
| 236 | + #onetrust-consent-sdk #onetrust-pc-sdk h3, | |
| 237 | + #onetrust-consent-sdk #onetrust-pc-sdk h4, | |
| 238 | + #onetrust-consent-sdk #onetrust-pc-sdk h5, | |
| 239 | + #onetrust-consent-sdk #onetrust-pc-sdk h6, | |
| 240 | + #onetrust-consent-sdk #onetrust-pc-sdk p, | |
| 241 | + #onetrust-consent-sdk #onetrust-pc-sdk span[id^="ot-header-id"], | |
| 242 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pvcy-txt, | |
| 243 | + #onetrust-consent-sdk #onetrust-pc-sdk #privacy-text, | |
| 244 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-ven-lst .ot-ven-opts p, | |
| 245 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-desc, | |
| 246 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-title, | |
| 247 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-title-mobile, | |
| 248 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-li-title, | |
| 249 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-sel-all-hdr span, | |
| 250 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-host-lst .ot-host-info, | |
| 251 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-fltr-modal #modal-header, | |
| 252 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-checkbox label span, | |
| 253 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst #ot-sel-blk p, | |
| 254 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst #ot-lst-title h3, | |
| 255 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst #ot-lst-title p[aria-level="3"], | |
| 256 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst .back-btn-handler p, | |
| 257 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst .ot-ven-name, | |
| 258 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst #ot-ven-lst .consent-category, | |
| 259 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-leg-btn-container .ot-inactive-leg-btn, | |
| 260 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-label-status, | |
| 261 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-chkbox label span, | |
| 262 | + #onetrust-consent-sdk #onetrust-pc-sdk #clear-filters-handler, | |
| 263 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-optout-signal, | |
| 264 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-title, | |
| 265 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-desc | |
| 266 | + { | |
| 267 | + color: #000000; | |
| 268 | + } | |
| 269 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-cancel | |
| 270 | + { | |
| 271 | + color: #000000 !important; | |
| 272 | + } | |
| 273 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-close-btn, | |
| 274 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-submit | |
| 275 | + { | |
| 276 | + color: #FFFFFF !important; | |
| 277 | + } | |
| 278 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-cancel | |
| 279 | + { | |
| 280 | + border-color: #000000 !important; | |
| 281 | + } | |
| 282 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-email | |
| 283 | + { | |
| 284 | + border-color: #000000 !important; | |
| 285 | + background-color: rgb(255, 255, 255); | |
| 286 | + } | |
| 287 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-email:focus | |
| 288 | + { | |
| 289 | + border-color: #000000; | |
| 290 | + } | |
| 291 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-go-modal-email::placeholder | |
| 292 | + { | |
| 293 | + color: #000000; | |
| 294 | + } | |
| 295 | + #onetrust-consent-sdk #onetrust-pc-sdk .privacy-notice-link, | |
| 296 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-pgph-link, | |
| 297 | + #onetrust-consent-sdk #onetrust-pc-sdk .category-vendors-list-handler, | |
| 298 | + #onetrust-consent-sdk #onetrust-pc-sdk .category-vendors-list-handler + a, | |
| 299 | + #onetrust-consent-sdk #onetrust-pc-sdk .category-host-list-handler, | |
| 300 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-ven-link, | |
| 301 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-ven-legclaim-link, | |
| 302 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-host-lst .ot-host-name a, | |
| 303 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-host-lst .ot-acc-hdr .ot-host-expand, | |
| 304 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-host-lst .ot-host-info a, | |
| 305 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-content #ot-pc-desc .ot-link-btn, | |
| 306 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info a, | |
| 307 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info a, | |
| 308 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-desc a | |
| 309 | + { | |
| 310 | + color: #000000; | |
| 311 | + } | |
| 312 | + #onetrust-consent-sdk #onetrust-pc-sdk .category-vendors-list-handler:hover { text-decoration: underline;} | |
| 313 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-acc-grpcntr.ot-acc-txt, | |
| 314 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-acc-txt .ot-subgrp-tgl .ot-switch.ot-toggle | |
| 315 | + { | |
| 316 | + background-color: #F8F8F8; | |
| 317 | + } | |
| 318 | + #onetrust-consent-sdk #onetrust-pc-sdk #ot-host-lst .ot-host-info, | |
| 319 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-acc-txt .ot-ven-dets | |
| 320 | + { | |
| 321 | + background-color: #F8F8F8; | |
| 322 | + } | |
| 323 | + #onetrust-consent-sdk #onetrust-pc-sdk | |
| 324 | + button:not(#clear-filters-handler):not(.ot-close-icon):not(#filter-btn-handler):not(.ot-remove-objection-handler):not(.ot-obj-leg-btn-handler):not([aria-expanded]):not(.ot-link-btn):not(.ot-go-modal-cancel):not(.ot-go-modal-close), | |
| 325 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-leg-btn-container .ot-active-leg-btn { | |
| 326 | + background-color: #00467f;border-color: #00467f; | |
| 327 | + color: #FFFFFF; | |
| 328 | + } | |
| 329 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-active-menu { | |
| 330 | + border-color: #00467f; | |
| 331 | + } | |
| 332 | + | |
| 333 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-leg-btn-container .ot-remove-objection-handler{ | |
| 334 | + background-color: transparent; | |
| 335 | + border: 1px solid transparent; | |
| 336 | + } | |
| 337 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-leg-btn-container .ot-inactive-leg-btn { | |
| 338 | + background-color: #FFFFFF; | |
| 339 | + color: #4D4D4D; border-color: #4D4D4D; | |
| 340 | + }#onetrust-consent-sdk #onetrust-pc-sdk .ot-tgl input:checked+.ot-switch .ot-switch-nob { | |
| 341 | + background-color: #468254; | |
| 342 | + } | |
| 343 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-switch-nob { | |
| 344 | + background-color: #767676; | |
| 345 | + } | |
| 346 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-tgl input:focus + .ot-switch, .ot-switch .ot-switch-nob, .ot-switch .ot-switch-nob:before, | |
| 347 | + #onetrust-pc-sdk .ot-checkbox input[type="checkbox"]:focus + label::before, | |
| 348 | + #onetrust-pc-sdk .ot-chkbox input[type="checkbox"]:focus + label::before { | |
| 349 | + outline-color: #000000; | |
| 350 | + outline-width: 1px; | |
| 351 | + outline-offset: 1px; | |
| 352 | + } | |
| 353 | + #onetrust-pc-sdk .ot-host-item > button:focus, #onetrust-pc-sdk .ot-ven-item > button:focus { | |
| 354 | + border: 1px solid #000000; | |
| 355 | + } | |
| 356 | + #onetrust-consent-sdk #onetrust-pc-sdk *:focus, | |
| 357 | + #onetrust-consent-sdk #onetrust-pc-sdk .ot-vlst-cntr > a:focus { | |
| 358 | + outline: 1px solid #000000; | |
| 359 | + outline-offset: 1px; | |
| 360 | + }#ot-sdk-btn-floating .ot-floating-button__front {background-color: #00467f !important;}.ot-sdk-cookie-policy{font-family:inherit;font-size:16px}.ot-sdk-cookie-policy.otRelFont{font-size:1rem}.ot-sdk-cookie-policy h3,.ot-sdk-cookie-policy h4,.ot-sdk-cookie-policy h6,.ot-sdk-cookie-policy p,.ot-sdk-cookie-policy li,.ot-sdk-cookie-policy a,.ot-sdk-cookie-policy th,.ot-sdk-cookie-policy #cookie-policy-description,.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group,.ot-sdk-cookie-policy #cookie-policy-title{color:dimgray}.ot-sdk-cookie-policy #cookie-policy-description{margin-bottom:1em}.ot-sdk-cookie-policy h4{font-size:1.2em}.ot-sdk-cookie-policy h6{font-size:1em;margin-top:2em}.ot-sdk-cookie-policy th{min-width:75px}.ot-sdk-cookie-policy a,.ot-sdk-cookie-policy a:hover{background:#fff}.ot-sdk-cookie-policy thead{background-color:#f6f6f4;font-weight:bold}.ot-sdk-cookie-policy .ot-mobile-border{display:none}.ot-sdk-cookie-policy section{margin-bottom:2em}.ot-sdk-cookie-policy table{border-collapse:inherit}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy{font-family:inherit;font-size:1rem}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h3,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h4,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h6,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy p,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy li,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy th,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-description,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-title{color:dimgray}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-description{margin-bottom:1em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-subgroup{margin-left:1.5em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-description,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group-desc,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-table-header,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy span,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td{font-size:.9em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td span,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td a{font-size:inherit}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group{font-size:1em;margin-bottom:.6em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-title{margin-bottom:1.2em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy>section{margin-bottom:1em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy th{min-width:75px}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a:hover{background:#fff}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy thead{background-color:#f6f6f4;font-weight:bold}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-mobile-border{display:none}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy section{margin-bottom:2em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-subgroup ul li{list-style:disc;margin-left:1.5em}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-subgroup ul li h4{display:inline-block}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table{border-collapse:inherit;margin:auto;border:1px solid #d7d7d7;border-radius:5px;border-spacing:initial;width:100%;overflow:hidden}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table th,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table td{border-bottom:1px solid #d7d7d7;border-right:1px solid #d7d7d7}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr:last-child td{border-bottom:0px}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr th:last-child,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr td:last-child{border-right:0px}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table .ot-host,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table .ot-cookies-type{width:25%}.ot-sdk-cookie-policy[dir=rtl]{text-align:left}#ot-sdk-cookie-policy h3{font-size:1.5em}@media only screen and (max-width: 530px){.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) table,.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) thead,.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tbody,.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) th,.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) td,.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tr{display:block}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) thead tr{position:absolute;top:-9999px;left:-9999px}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tr{margin:0 0 1em 0}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tr:nth-child(odd),.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tr:nth-child(odd) a{background:#f6f6f4}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) td{border:none;border-bottom:1px solid #eee;position:relative;padding-left:50%}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) td:before{position:absolute;height:100%;left:6px;width:40%;padding-right:10px}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) .ot-mobile-border{display:inline-block;background-color:#e4e4e4;position:absolute;height:100%;top:0;left:45%;width:2px}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) td:before{content:attr(data-label);font-weight:bold}.ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) li{word-break:break-word;word-wrap:break-word}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table{overflow:hidden}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table td{border:none;border-bottom:1px solid #d7d7d7}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy thead,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy tbody,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy th,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy tr{display:block}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table .ot-host,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table .ot-cookies-type{width:auto}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy tr{margin:0 0 1em 0}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td:before{height:100%;width:40%;padding-right:10px}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td:before{content:attr(data-label);font-weight:bold}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy li{word-break:break-word;word-wrap:break-word}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy thead tr{position:absolute;top:-9999px;left:-9999px;z-index:-9999}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr:last-child td{border-bottom:1px solid #d7d7d7;border-right:0px}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr:last-child td:last-child{border-bottom:0px}} | |
| 361 | + | |
| 362 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h5, | |
| 363 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h6, | |
| 364 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy li, | |
| 365 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy p, | |
| 366 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a, | |
| 367 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy span, | |
| 368 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td, | |
| 369 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-description { | |
| 370 | + color: #696969; | |
| 371 | + } | |
| 372 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy th { | |
| 373 | + color: #696969; | |
| 374 | + } | |
| 375 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group { | |
| 376 | + color: #696969; | |
| 377 | + } | |
| 378 | + | |
| 379 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-title { | |
| 380 | + color: #696969; | |
| 381 | + } | |
| 382 | + | |
| 383 | + | |
| 384 | + #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table th { | |
| 385 | + background-color: #F8F8F8; | |
| 386 | + } | |
| 387 | + | |
| 388 | + .ot-floating-button__front{background-image:url('https://cdn.cookielaw.org/logos/4e85079a-4e3a-4ba5-a0ac-b85ac51e9d47/8af65b67-6f9c-4e8b-ba65-66a5ba202e28/07fc66da-1dcf-4ee3-bcc3-3d076d98b1b9/ot_persistent_cookie_transparent.png')} | |
| 389 | + @keyframes slide-down-custom { | |
| 390 | + 0% { | |
| 391 | + bottom: 412px !important; | |
| 392 | + } | |
| 393 | + 100% { | |
| 394 | + bottom: 0px; | |
| 395 | + } | |
| 396 | + } | |
| 397 | + @-webkit-keyframes slide-down-custom { | |
| 398 | + 0% { | |
| 399 | + bottom: 412px !important; | |
| 400 | + } | |
| 401 | + 100% { | |
| 402 | + bottom: 0px; | |
| 403 | + } | |
| 404 | + } | |
| 405 | + @-moz-keyframes slide-down-custom { | |
| 406 | + 0% { | |
| 407 | + bottom: 412px !important; | |
| 408 | + } | |
| 409 | + 100% { | |
| 410 | + bottom: 0px; | |
| 411 | + } | |
| 412 | + } | |
| 413 | + #ot-sdk-btn-floating.ot-floating-button{position:fixed;bottom:10px;opacity:0;width:50px;height:50px;line-height:15px;cursor:pointer;background-color:rgba(0,0,0,0);transition:all 300ms ease;z-index:2147483646;animation:otFloatingBtnIntro 800ms ease 0ms 1 forwards}#ot-sdk-btn-floating.ot-floating-button.ot-hide{display:none}#ot-sdk-btn-floating.ot-floating-button::before,#ot-sdk-btn-floating.ot-floating-button::after{text-transform:none;line-height:1;user-select:none;pointer-events:none;position:absolute;transform:scale(0);opacity:0;transition:all 300ms ease;display:block;height:auto}#ot-sdk-btn-floating.ot-floating-button::before{content:"";border:5px solid rgba(0,0,0,0);z-index:1001;top:50%;border-left-width:0;border-right-color:#333;right:calc(0em - 5px);transform:translate(10px, -50%)}#ot-sdk-btn-floating.ot-floating-button::after{content:attr(data-title);position:absolute;text-align:center;top:50%;left:calc(100% + 5px);transform:translate(10px, -50%);font-size:.75rem;min-width:3em;max-width:21em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding:5px;border-radius:.3ch;box-shadow:0 1em 2em -0.5em rgba(0,0,0,.35);background:#333;color:#fff;z-index:2147483645}#ot-sdk-btn-floating.ot-floating-button:hover::before,#ot-sdk-btn-floating.ot-floating-button:hover::after{opacity:1}#ot-sdk-btn-floating.ot-floating-button:hover::before{transform:translate(0.5em, -50%) scale(1)}#ot-sdk-btn-floating.ot-floating-button:hover::after{transform:translate(0.5em, -50%) scale(1)}#ot-sdk-btn-floating.ot-floating-button.ot-pc-open .ot-floating-button__front{transform:rotateY(-180deg)}#ot-sdk-btn-floating.ot-floating-button.ot-pc-open .ot-floating-button__back{transform:rotateY(0)}#ot-sdk-btn-floating .ot-floating-button__front,#ot-sdk-btn-floating .ot-floating-button__back{position:absolute;width:100%;height:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:#6aaae4;border-radius:10px;box-shadow:0 4px 8px 0 rgba(0,0,0,.2);transition:transform .6s;transform-style:preserve-3d}#ot-sdk-btn-floating .ot-floating-button__front{background-color:#6aaae4;transform:rotateY(0)}#ot-sdk-btn-floating .ot-floating-button__front.custom-persistent-icon{background-position:center center;background-repeat:no-repeat;background-size:100%;border-radius:100px}#ot-sdk-btn-floating .ot-floating-button__front svg:not(.ot-source-sprite){width:30px;height:37px}#ot-sdk-btn-floating .ot-floating-button__front svg.ot-source-sprite{width:50px;height:50px}#ot-sdk-btn-floating .ot-floating-button__back{background-color:#fff;transform:rotateY(-180deg)}#ot-sdk-btn-floating .ot-floating-button__back.custom-persistent-icon{background-position:center center;background-repeat:no-repeat;background-size:100%;border-radius:100px}#ot-sdk-btn-floating .ot-floating-button__back svg{width:24px;height:24px}#ot-sdk-btn-floating.ot-floating-button button{padding:0;background-color:rgba(0,0,0,0);border:0;width:100%;height:100%;cursor:pointer}#ot-sdk-btn-floating.ot-floating-button button>*{pointer-events:none}#ot-sdk-btn-floating .ot-optout-ntfy{position:absolute;top:50%;left:calc(100% + 10px);transform:translateY(-50%) scale(0);opacity:0;display:flex;align-items:center;gap:8px;font-size:.85rem;white-space:nowrap;padding:10px 16px;border-radius:6px;border:1px solid #d4d4d4;background:#fff;color:#333;z-index:2147483645;pointer-events:none;transition:all 300ms ease}#ot-sdk-btn-floating .ot-optout-ntfy.ot-hide{display:none}#ot-sdk-btn-floating .ot-optout-ntfy.ot-ntfy-show{opacity:1;transform:translateY(-50%) scale(1)}#ot-sdk-btn-floating .ot-optout-ntfy .ot-optout-ntfy-icon{display:inline-block;width:12px;height:12px;min-width:12px;background-color:#3d8539;border-radius:2px}#ot-sdk-btn-floating .ot-optout-ntfy .ot-optout-ntfy-icon.ot-optout-not-honored{display:inline-block;width:12px;height:12px;background-color:rgba(0,0,0,0);border:1px solid #d4d4d4;border-left:2px solid #3d8539;border-radius:0}#ot-sdk-btn-floating .ot-optout-ntfy .ot-optout-ntfy-txt{font-weight:400;line-height:1.4}#ot-sdk-btn-floating.ot-floating-button.ot-ntfy-active::before,#ot-sdk-btn-floating.ot-floating-button.ot-ntfy-active::after{display:none}@keyframes otFloatingBtnIntro{0%{opacity:0;left:-75px}100%{opacity:1;left:1%}}@keyframes otFloatingBtnImageIntro{0%{opacity:0;transform:scale(0) rotate(-270deg)}100%{opacity:100%;transform:scale(0.95) rotate(0deg)}}</style> | |
| 414 | + | |
| 415 | + | |
| 416 | + | |
| 417 | + | |
| 418 | +<script>window.ysi.customlabels = {"City, Post Code, Address, Property Name":"Find your home","English - United States":"English","French - Canada":"French"}; </script><script type="text/javascript" charset="UTF-8" src="https://maps.googleapis.com/maps-api-v3/api/js/65/12f/common.js"></script><script type="text/javascript" charset="UTF-8" src="https://maps.googleapis.com/maps-api-v3/api/js/65/12f/util.js"></script></head> | |
| 419 | +<body id="propertydetail" class="enhanced"> | |
| 420 | + | |
| 421 | + | |
| 422 | +<!-- Google Tag Manager (noscript) --> | |
| 423 | +<noscript> | |
| 424 | + <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TL4S4ZL" height="0" width="0" style="display:none;visibility:hidden" customlabelreplaced=""></iframe> | |
| 425 | +</noscript> | |
| 426 | +<!-- End Google Tag Manager (noscript) --> | |
| 427 | + | |
| 428 | + | |
| 429 | + | |
| 430 | + | |
| 431 | + | |
| 432 | + | |
| 433 | + | |
| 434 | + <style>#acsWidget{position:fixed;z-index:1038;bottom:15px;padding:0;margin:0;background:transparent;border:none;left:15px}#acsWidget.widget-right{left:auto;right:11px}</style> | |
| 435 | + | |
| 436 | + | |
| 437 | + <!-- Accessibility Button --> | |
| 438 | + <div id="acsWidget" role="complementary" class="widget-left" style="bottom:60px;background-color:transparent!important;" customlabelreplaced=""> | |
| 439 | + <button id="acsBtn" data-acs-applied="" type="button" class="accessibility-button btn mt-3 m-0 p-0 border-0 " data-toggle="modal" data-target="#acsModal" style="background-color:transparent!important;background-image:none;box-shadow:none;" aria-label="Open Accessibility Options" customlabelreplaced=""> | |
| 440 | + <svg class="rounded-circle" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="56px" height="56px" viewBox="0 0 64 64"> | |
| 441 | + <rect x="4" y="4" width="56" height="56" rx="100" ry="100" fill="#000000"></rect> | |
| 442 | + <g transform="translate(12.5 12.5) scale(0.6)"> | |
| 443 | + <circle data-color="color-2" cx="32" cy="8" r="6" fill="#ffffff"></circle> | |
| 444 | + <path d="M55.5,16H8.5a2.5,2.5,0,0,0,0,5L24,22V59a3,3,0,0,0,6,0l1-21h2l1,21a3,3,0,0,0,6,0V22l15.5-1a2.5,2.5,0,0,0,0-5Z" fill="#ffffff"></path> | |
| 445 | + </g> | |
| 446 | + </svg> | |
| 447 | + <span id="acsCheck" class="nu nu-check text-xs rounded-circle d-none" style="background-color: #000000 !important; box-shadow: 0 0 0px 4px #000000 !important" customlabelreplaced=""></span> | |
| 448 | + </button> | |
| 449 | + </div> | |
| 450 | + <style> | |
| 451 | + /* Only apply hover effect to stand-alone button (.accessibility-button), not help widget */ | |
| 452 | + #acsBtn.accessibility-button svg:hover { | |
| 453 | + box-shadow: 0 0 0px 3px #000000 !important; | |
| 454 | + } | |
| 455 | + #acsModal .modal-header, .closeModal .modal-header { | |
| 456 | + background-color: #000000 !important; | |
| 457 | + } | |
| 458 | + #acsModal .modal-footer.customColor, .closeModal .modal-footer.customColor { | |
| 459 | + background-color: #000000 !important; | |
| 460 | + } | |
| 461 | + </style> | |
| 462 | + | |
| 463 | + | |
| 464 | + <style>a#skip-nav{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}a#skip-nav:focus,a#skip-nav:active{position:fixed;bottom:10px;left:10px;width:auto;height:auto;text-decoration:underline;background:white;padding:5px 20px 10px;z-index:100000}</style> | |
| 465 | + | |
| 466 | + | |
| 467 | +<a id="skip-nav" href="#main-content" customlabelreplaced="">Skip to main content</a> | |
| 468 | + | |
| 469 | + | |
| 470 | + | |
| 471 | + | |
| 472 | + | |
| 473 | + | |
| 474 | + | |
| 475 | + | |
| 476 | + | |
| 477 | + | |
| 478 | + | |
| 479 | + | |
| 480 | + | |
| 481 | + <nav id="ysi-mobile-navbar" aria-label="main navigation" class="ysi-navbar-mobile navbar w-100 d-xxl-none navbar-light bg-white" style="width: 100%; color: #2D3D4D; " aria-hidden="true"> | |
| 482 | + <button id="nav-btn" class="navbar-toggler collapsed " style=" color: #2D3D4D; " type="button" data-toggle="collapse" data-target="#navbarMobileCollapse" aria-controls="navbarMobileCollapse" aria-expanded="false" aria-label="Toggle navigation" aria-haspopup="true" customlabelreplaced=""> | |
| 483 | + <svg class="ysi-svg-icon ysi-svg-icon-bars" width="1em" height="1em" viewBox="0 0 256 256"><path d="m 24,66 h 208 c 4,0 8,-4 8,-8 V 38 c 0,-4 -4,-8 -8,-8 H 24 c -4,0 -8,4 -8,8 v 20 c 0,4 4,8 8,8 z m 0,80 h 208 c 4,0 8,-4 8,-8 v -20 c 0,-4 -4,-8 -8,-8 H 24 c -4,0 -8,4 -8,8 v 20 c 0,4 4,8 8,8 z m 0,80 h 208 c 4,0 8,-4 8,-8 v -20 c 0,-4 -4,-8 -8,-8 H 24 c -4,0 -8,4 -8,8 v 20 c 0,4 4,8 8,8 z"></path></svg> | |
| 484 | + <svg class="ysi-svg-icon ysi-svg-icon-times" width="1em" height="1em" viewBox="0 0 256 256"><rect transform="rotate(45, 128, 128)" width="244" height="44.8" x="6" y="108" rx="12" ry="12"></rect><rect transform="rotate(-45, 128, 128)" width="244" height="44.8" x="6" y="108" rx="12" ry="12"></rect></svg> | |
| 485 | + </button> | |
| 486 | + <style>#mobile-logo327 img{box-sizing:content-box}@media (min-width: 992px){#mobile-logo327 img{width:136px}}</style><div class="ysi-logo-widget ysi-logo-wrapper" data-widget-order="1" customlabelreplaced="" aria-hidden="true"><a href="/" class="d-inline-block" customlabelreplaced=""><picture id="mobile-logo327"> | |
| 487 | + | |
| 488 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6046,h_2444,c_crop/q_auto,f_auto,c_fit,w_99,h_40,dpr_2/s3/2/252329/brigil_logo_en_rgb.png 2x"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6046,h_2444,c_crop/q_auto,f_auto,c_limit,w_99,h_40/s3/2/252329/brigil_logo_en_rgb.png" class="d-inline-block img-fluid" alt="The image shows the word "bright" in large, bold letters." width="99" height="40"> | |
| 489 | +</picture> | |
| 490 | +</a></div> | |
| 491 | + | |
| 492 | + | |
| 493 | + <div class="navbar-right pr-2" customlabelreplaced=""> | |
| 494 | + | |
| 495 | + | |
| 496 | + <div class="dropdown ysi-translate-widget ysi-translate-dropdown px-2 " customlabelreplaced=""> | |
| 497 | + <a data-selenium-id="translate" class="dropdown-toggle color-inherit text-decoration-none" href="#" onclick="elementLanguageFocus()" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" customlabelreplaced=""> | |
| 498 | + <span aria-hidden="true" class="fas fa-globe-americas" customlabelreplaced=""></span> <span class="sr-only" customlabelreplaced="">Language</span> | |
| 499 | + </a> | |
| 500 | + <ul class="dropdown-menu dropdown-menu-right" customlabelreplaced=""> | |
| 501 | + | |
| 502 | + <li customlabelreplaced=""> | |
| 503 | + <a data-selenium-id="lang-1" class="dropdown-item px-3 language-drowndown-item" href="javascript:getPack('en-us')" aria-label="English Language" customlabelreplaced=""> | |
| 504 | + <span class="ml-2" customlabelreplaced="">English</span> | |
| 505 | + </a> | |
| 506 | + </li> | |
| 507 | + <li customlabelreplaced=""> | |
| 508 | + <a data-selenium-id="lang-1" class="dropdown-item px-3 language-drowndown-item" href="javascript:getPack('fr-ca')" aria-label="French Language" customlabelreplaced=""> | |
| 509 | + <span class="ml-2" customlabelreplaced="">French</span> | |
| 510 | + </a> | |
| 511 | + </li> | |
| 512 | + </ul> | |
| 513 | + </div> | |
| 514 | + <input type="hidden" id="translate-request-verification-token" name="translate-request-verification-token" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ1PXyrrEsWAx2xoDEklmmfRqu4Wo9sIgqBiOH4RKJrbn_oAFPg4JIWXfbKSnQ5nimFfpOfq1AKU5zFhySttqQJTBhS5IYuPNNCCcD39DOwfRniAil2TufsV6frYTFiaLoY"> | |
| 515 | + | |
| 516 | + | |
| 517 | + | |
| 518 | + | |
| 519 | + | |
| 520 | + | |
| 521 | + <div class="dropdown ysi-login-link-widget ysi-login-dropdown d-inline" style="max-width: max-content;" customlabelreplaced="" aria-hidden="true"> | |
| 522 | + | |
| 523 | + <a data-selenium-id="loginlinks" class="dropdown-toggle color-inherit text-decoration-none " href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" style="" customlabelreplaced=""> | |
| 524 | + <svg class="ysi-svg-icon ysi-svg-icon-user" width="1em" height="1em" viewBox="0 0 256 256"><path d="m 128,128 c 35.35,0 64,-28.7 64,-64 C 192,28.7 163.4,0 128,0 92.7,0 64,28.7 64,64 c 0,35.4 28.65,64 64,64 z m 44.8,16 h -8.4 c -11.1,5.1 -23.5,8 -36.5,8 -13,0 -25.3,-2.9 -36.5,-8 H 83.2 C 46.1,144 16,174.1 16,211.2 V 232 c 0,13.3 10.8,24 24,24 h 176 c 13.3,0 24,-10.8 24,-24 V 211.2 C 240,174.1 209.9,144 172.8,144 Z"></path></svg> | |
| 525 | + <span class="sr-only" customlabelreplaced="">Login</span> | |
| 526 | + </a> | |
| 527 | + | |
| 528 | + <div class="dropdown-menu dropdown-menu-right" customlabelreplaced=""> | |
| 529 | + | |
| 530 | + | |
| 531 | + | |
| 532 | + <ul class="dropdown-list list-unstyled mb-0" customlabelreplaced=""> | |
| 533 | + <li customlabelreplaced=""> | |
| 534 | + <a data-selenium-id="residentlogin" class="dropdown-item track-resident-login" href="https://brigil.securecafe.com/residentservices/apartmentsforrent/userlogin.aspx?dropdownlangid=999" rel="noopener" target="_Blank" customlabelreplaced=""> Resident <span class="sr-only" customlabelreplaced="">Login Opens in a new tab</span> </a> | |
| 535 | + </li> | |
| 536 | + | |
| 537 | + <li customlabelreplaced=""> | |
| 538 | + <a data-selenium-id="applicantlogin" class="dropdown-item track-applicant-login" href="https://brigil.securecafe.com/onlineleasing/apartmentsforrent/guestlogin.aspx?dropdownlangid=999" rel="noopener" target="_Blank" customlabelreplaced=""> Applicant <span class="sr-only" customlabelreplaced="">Login Opens in a new tab</span> </a> | |
| 539 | + </li> | |
| 540 | + | |
| 541 | + </ul> | |
| 542 | + </div> | |
| 543 | + </div> | |
| 544 | + | |
| 545 | + | |
| 546 | + | |
| 547 | + | |
| 548 | + <style>.mobile-only .click-to-call{display:none}</style> | |
| 549 | + | |
| 550 | + <div class="ysi-phone-widget ysi-phone-wrapper mobile-only d-inline ml-2 " customlabelreplaced=""> | |
| 551 | + <div class="d-inline-flex" customlabelreplaced=""> | |
| 552 | + <a data-selenium-id="click_to_call" onclick="fireGaPhone()" href="tel:+1 819-414-2758" aria-label="Call 6881530 Canada Inc (Brigil) at +1 819-414-2758" class="ysi-phone-number click-to-call-href color-inherit " customlabelreplaced=""> | |
| 553 | + <svg class="ysi-svg-icon mobile-phone-icon" width="1em" height="1em" viewBox="0 0 256 256"><path d="M 9.3,12.3 61.3,0.3 c 5.6,-1.3 11.5,1.6 13.7,6.9 L 99,63.3 c 2.1,4.9 0.7,10.6 -3.4,14 L 65.3,102 c 18,38.3 49.4,70.2 88.6,88.6 l 24.8,-30.3 c 3.4,-4.1 9.1,-5.5 14,-3.4 l 56,24 c 5.3,2.3 8.3,8.1 7,13.8 L 243.7,246.7 C 242.4,252.1 237.6,256 232,256 103.9,256 0,152.3 0,24 0,18.4 3.8,13.6 9.3,12.3 Z"></path></svg> | |
| 554 | + <span class="click-to-call" customlabelreplaced="">+1 819-414-2758</span> | |
| 555 | + </a> | |
| 556 | + | |
| 557 | + </div> | |
| 558 | + </div> | |
| 559 | + <script> | |
| 560 | + function fireGaPhone() { | |
| 561 | + if (typeof gtag != 'undefined') { | |
| 562 | + var myPage = location.pathname.replace("/", ""); | |
| 563 | + if (myPage == "") { myPage = "index"; } | |
| 564 | + if (true ) { | |
| 565 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 566 | + gtag('event', 'phone_call', { 'property_name': propertyName, 'page_name': document.title, 'page_url': window.location.href, 'header_phone_number': '+1 819-414-2758'}); | |
| 567 | + } | |
| 568 | + gtag('event', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 569 | + gtag('rc.send', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 570 | + } | |
| 571 | + } | |
| 572 | + </script> | |
| 573 | + | |
| 574 | + </div> | |
| 575 | + <div class="collapse navbar-collapse" id="navbarMobileCollapse" customlabelreplaced=""> | |
| 576 | + <ul class="nav navbar-nav pt-3 custom-scroll" customlabelreplaced=""> | |
| 577 | + <li class="nav-item" customlabelreplaced=""> | |
| 578 | + <a onclick="fireGA4menu(this)" data-selenium-id="mobile_specials-and-promotionsaspx_MenuLink" href="/specials-and-promotions" class="nav-link" customlabelreplaced=""> | |
| 579 | + For Rent </a> | |
| 580 | + </li> | |
| 581 | + <li class="nav-item" customlabelreplaced=""> | |
| 582 | + <a onclick="fireGA4menu(this)" data-selenium-id="mobile_specials-and-promotions#forsalesaspx_MenuLink" ioi="true" href="specials-and-promotions#forsales" class="nav-link" customlabelreplaced=""> | |
| 583 | + For Sale </a> | |
| 584 | + </li> | |
| 585 | + <li class="nav-item" customlabelreplaced=""> | |
| 586 | + <a onclick="fireGA4menu(this)" data-selenium-id="mobile_https://batisseurcitoyen.brigil.com/aspx_MenuLink" ioi="true" href="https://batisseurcitoyen.brigil.com/" class="nav-link" customlabelreplaced=""> | |
| 587 | + About Us </a> | |
| 588 | + </li> | |
| 589 | + <li class="nav-item" customlabelreplaced=""> | |
| 590 | + <a onclick="fireGA4menu(this)" data-selenium-id="mobile_commercialdevelopmentaspx_MenuLink" href="/commercialdevelopment" class="nav-link" customlabelreplaced=""> | |
| 591 | + Commercial </a> | |
| 592 | + </li> | |
| 593 | + <li class="nav-item" customlabelreplaced=""> | |
| 594 | + <a onclick="fireGA4menu(this)" data-selenium-id="mobile_contactusaspx_MenuLink" href="/contactus" class="nav-link" customlabelreplaced=""> | |
| 595 | + Contact Us </a> | |
| 596 | + </li> | |
| 597 | + <li class="nav-item" customlabelreplaced=""> | |
| 598 | + <a onclick="fireGA4menu(this)" data-selenium-id="mobile_searchlistingaspx_MenuLink" href="/searchlisting" class="nav-link" customlabelreplaced=""> | |
| 599 | + Our Properties </a> | |
| 600 | + </li> | |
| 601 | + </ul> | |
| 602 | + </div> | |
| 603 | + </nav> | |
| 604 | +<script> | |
| 605 | + function fireGA4menu(item) { | |
| 606 | + if (typeof gtag !== 'undefined') { | |
| 607 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 608 | + var destination = item.getAttribute('href'); | |
| 609 | + gtag('event', 'menu_link', { | |
| 610 | + 'property_name': propertyName, 'button_label': item.innerText, 'page_name': document.title, 'page_url': window.location.href, | |
| 611 | + 'destination_url': window.location.host + destination | |
| 612 | + }); | |
| 613 | + } | |
| 614 | + } | |
| 615 | +</script> | |
| 616 | + | |
| 617 | + | |
| 618 | + | |
| 619 | +<script> | |
| 620 | +window.addEventListener("load", () => { | |
| 621 | + document.querySelectorAll('button.navbar-toggler[aria-expanded]').forEach((hamburger) => { | |
| 622 | + const update = () => { | |
| 623 | + hamburger.setAttribute( | |
| 624 | + "aria-label", | |
| 625 | + hamburger.getAttribute("aria-expanded") === "true" | |
| 626 | + ? "Close navigation" | |
| 627 | + : "Toggle navigation" | |
| 628 | + ); | |
| 629 | + }; | |
| 630 | + | |
| 631 | + update(); | |
| 632 | + | |
| 633 | + new MutationObserver(update).observe(hamburger, { | |
| 634 | + attributes: true, | |
| 635 | + attributeFilter: ["aria-expanded"], | |
| 636 | + }); | |
| 637 | + }); | |
| 638 | +}); | |
| 639 | +</script> | |
| 640 | + | |
| 641 | + | |
| 642 | + | |
| 643 | + <div data-offset-top="0" id="stickyTopSentinel0" class="stickytopsentinel" style="position: absolute; left: 0px; width: 1px; height: 1px; z-index: 0; top: 0px;"></div><header class="sticky-top"><div class="py-3 px-5 text-primary bg-white ysi-row d-none d-xl-flex" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""><div class="justify-content-start align-items-center flex-row d-flex text-left col-12 col-lg-1" customlabelreplaced=""><style>#logo358 img{box-sizing:content-box}@media (min-width: 992px){#logo358 img{width:136px}}</style><div class="ysi-logo-widget ysi-logo-wrapper " data-widget-order="1" customlabelreplaced="" aria-hidden="false"><a href="/" class="d-inline-block" customlabelreplaced=""><picture id="logo358"> | |
| 644 | +<source media="(min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6046,h_2444,c_crop/q_auto,f_auto,c_fit,w_136,h_55,dpr_2/s3/2/252329/brigil_logo_en_rgb.png 2x"><source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6046,h_2444,c_crop/q_auto,f_auto,c_limit,w_136,h_55/s3/2/252329/brigil_logo_en_rgb.png"> | |
| 645 | + | |
| 646 | +<source media="(-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6046,h_2444,c_crop/q_auto,f_auto,c_fit,w_99,h_40,dpr_2/s3/2/252329/brigil_logo_en_rgb.png 2x"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_6046,h_2444,c_crop/q_auto,f_auto,c_limit,w_99,h_40/s3/2/252329/brigil_logo_en_rgb.png" class="d-inline-block img-fluid" alt="The image shows the word "bright" in large, bold letters." width="99" height="40"> | |
| 647 | +</picture> | |
| 648 | +</a></div> | |
| 649 | + | |
| 650 | +</div><div class="col-12 offset-0 d-flex justify-content-start align-items-center flex-row text-left col-lg-8" customlabelreplaced=""> | |
| 651 | +<div class="d-flex flex-row align-items-center justify-content-start flex-wrap" customlabelreplaced=""> | |
| 652 | + | |
| 653 | + <!-- TEMPORARILY HIDDEN <a href=".mega-menu-01" class="nav-link text-decoration-none" data-selenium-id="megamenuaspx_MenuLink" customlabelreplaced="" data-toggle-selector=".mega-menu-01">For Rent | For Sale <i class="d-none fas fa-caret-down" aria-hidden="true" customlabelreplaced=""></i></a> --> | |
| 654 | + | |
| 655 | + <a href="/specials-and-promotions" class="nav-link text-decoration-none" data-selenium-id="promotionsaspx_MenuLink" customlabelreplaced="">For Rent</a> | |
| 656 | + | |
| 657 | + <a href="/specials-and-promotions#forsales" class="nav-link text-decoration-none" data-selenium-id="promotionsaspx_MenuLink" customlabelreplaced="">For Sale</a> | |
| 658 | + | |
| 659 | + <a href="/commercial-development" class="nav-link text-decoration-none" data-selenium-id="promotionsaspx_MenuLink" customlabelreplaced="">Commercial</a> | |
| 660 | + | |
| 661 | + <a href="https://batisseurcitoyen.brigil.com/en" class="nav-link text-decoration-none" target="_blank" data-selenium-id="promotionsaspx_MenuLink" customlabelreplaced="">About Us</a> | |
| 662 | + | |
| 663 | + <a href="/contactus" class="nav-link text-decoration-none" data-selenium-id="contactusaspx_MenuLink" customlabelreplaced="">Contact Us</a> | |
| 664 | + | |
| 665 | +</div> <style> | |
| 666 | + #navbarCollapse .nav.navbar-nav { | |
| 667 | + background-color: #ffffff; | |
| 668 | + } | |
| 669 | + </style> | |
| 670 | + <nav id="ysi-navbar" aria-label="main navigation" class="ysi-navbar navbar navbar-expand d-none navbar-dark" style="" aria-hidden="false"> | |
| 671 | + <div class="navbar-collapse collapse navbar-z-index " style="width: 100%; " id="navbarCollapse" customlabelreplaced=""> | |
| 672 | + <ul class="nav navbar-nav " customlabelreplaced=""> | |
| 673 | + <li class="nav-item m-auto" customlabelreplaced=""> | |
| 674 | + <a onclick="fireGA4menu(this)" data-selenium-id="specials-and-promotionsaspx_MenuLink" href="/specials-and-promotions" class="nav-link" customlabelreplaced=""> | |
| 675 | + For Rent </a> | |
| 676 | + </li> | |
| 677 | + <li class="nav-item m-auto" customlabelreplaced=""> | |
| 678 | + <a onclick="fireGA4menu(this)" data-selenium-id="specials-and-promotions#forsalesaspx_MenuLink" ioi="true" href="specials-and-promotions#forsales" class="nav-link" customlabelreplaced=""> | |
| 679 | + For Sale </a> | |
| 680 | + </li> | |
| 681 | + <li class="nav-item m-auto" customlabelreplaced=""> | |
| 682 | + <a onclick="fireGA4menu(this)" data-selenium-id="https://batisseurcitoyen.brigil.com/aspx_MenuLink" ioi="true" href="https://batisseurcitoyen.brigil.com/" class="nav-link" customlabelreplaced=""> | |
| 683 | + About Us </a> | |
| 684 | + </li> | |
| 685 | + <li class="nav-item m-auto" customlabelreplaced=""> | |
| 686 | + <a onclick="fireGA4menu(this)" data-selenium-id="commercialdevelopmentaspx_MenuLink" href="/commercialdevelopment" class="nav-link" customlabelreplaced=""> | |
| 687 | + Commercial </a> | |
| 688 | + </li> | |
| 689 | + <li class="nav-item m-auto" customlabelreplaced=""> | |
| 690 | + <a onclick="fireGA4menu(this)" data-selenium-id="contactusaspx_MenuLink" href="/contactus" class="nav-link" customlabelreplaced=""> | |
| 691 | + Contact Us </a> | |
| 692 | + </li> | |
| 693 | + <li class="nav-item m-auto" customlabelreplaced=""> | |
| 694 | + <a onclick="fireGA4menu(this)" data-selenium-id="searchlistingaspx_MenuLink" href="/searchlisting" class="nav-link" customlabelreplaced=""> | |
| 695 | + Our Properties </a> | |
| 696 | + </li> | |
| 697 | + </ul> | |
| 698 | + </div> | |
| 699 | + </nav> | |
| 700 | + | |
| 701 | +<script> | |
| 702 | + function fireGA4menu(item) { | |
| 703 | + if (typeof gtag !== 'undefined') { | |
| 704 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 705 | + var destination = item.getAttribute('href'); | |
| 706 | + gtag('event', 'menu_link', { | |
| 707 | + 'property_name': propertyName, 'button_label': item.innerText, 'page_name': document.title, 'page_url': window.location.href, | |
| 708 | + 'destination_url': window.location.host + destination | |
| 709 | + }); | |
| 710 | + } | |
| 711 | + } | |
| 712 | +</script> | |
| 713 | + | |
| 714 | + | |
| 715 | + | |
| 716 | +<script> | |
| 717 | +window.addEventListener("load", () => { | |
| 718 | + document.querySelectorAll('button.navbar-toggler[aria-expanded]').forEach((hamburger) => { | |
| 719 | + const update = () => { | |
| 720 | + hamburger.setAttribute( | |
| 721 | + "aria-label", | |
| 722 | + hamburger.getAttribute("aria-expanded") === "true" | |
| 723 | + ? "Close navigation" | |
| 724 | + : "Toggle navigation" | |
| 725 | + ); | |
| 726 | + }; | |
| 727 | + | |
| 728 | + update(); | |
| 729 | + | |
| 730 | + new MutationObserver(update).observe(hamburger, { | |
| 731 | + attributes: true, | |
| 732 | + attributeFilter: ["aria-expanded"], | |
| 733 | + }); | |
| 734 | + }); | |
| 735 | +}); | |
| 736 | +</script> | |
| 737 | + | |
| 738 | +</div><div class="col-12 offset-0 d-flex justify-content-end align-items-center flex-row text-left col-lg-3 justify-content-lg-end" customlabelreplaced=""> | |
| 739 | + | |
| 740 | + <style>.mobile-only .click-to-call{display:none}</style> | |
| 741 | + | |
| 742 | + <div class="ysi-phone-widget ysi-phone-wrapper mr-4 " customlabelreplaced=""> | |
| 743 | + <div class="d-inline-flex" customlabelreplaced=""> | |
| 744 | + <a data-selenium-id="click_to_call" onclick="fireGaPhone()" href="tel:+1 819-414-2758" aria-label="Call 6881530 Canada Inc (Brigil) at +1 819-414-2758" class="ysi-phone-number click-to-call-href text-decoration-none color-inherit text-white" customlabelreplaced=""> | |
| 745 | + <span aria-hidden="true" class="fa-flip-horizontal fas fa-phone text-primary" customlabelreplaced=""></span> | |
| 746 | + <span data-selenium-id="click_to_call_span" class="click-to-call ml-2 text-underline" customlabelreplaced="">+1 819-414-2758</span> | |
| 747 | + </a> | |
| 748 | + | |
| 749 | + </div> | |
| 750 | + </div> | |
| 751 | + <script> | |
| 752 | + function fireGaPhone() { | |
| 753 | + if (typeof gtag != 'undefined') { | |
| 754 | + var myPage = location.pathname.replace("/", ""); | |
| 755 | + if (myPage == "") { myPage = "index"; } | |
| 756 | + if (true ) { | |
| 757 | + var propertyName = document.querySelector('meta[name="author"]').content; | |
| 758 | + gtag('event', 'phone_call', { 'property_name': propertyName, 'page_name': document.title, 'page_url': window.location.href, 'header_phone_number': '+1 819-414-2758'}); | |
| 759 | + } | |
| 760 | + gtag('event', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 761 | + gtag('rc.send', 'PhoneCall', { 'event_category': 'PhoneCall', 'event_action': 'PhoneClickHeader', 'event_label': myPage }); | |
| 762 | + } | |
| 763 | + } | |
| 764 | + </script> | |
| 765 | + | |
| 766 | + | |
| 767 | + <div class="dropdown ysi-translate-widget ysi-translate-dropdown px-2 d-none d-lg-flex" customlabelreplaced=""> | |
| 768 | + <a data-selenium-id="translate" class="dropdown-toggle color-inherit " href="#" onclick="elementLanguageFocus()" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" customlabelreplaced=""> | |
| 769 | + <span aria-hidden="true" class="fas fa-globe-americas" customlabelreplaced=""></span> <span class="" customlabelreplaced="">Language</span> | |
| 770 | + </a> | |
| 771 | + <ul class="dropdown-menu " customlabelreplaced=""> | |
| 772 | + | |
| 773 | + <li customlabelreplaced=""> | |
| 774 | + <a data-selenium-id="lang-1" class="dropdown-item px-3 language-drowndown-item" href="javascript:getPack('en-us')" aria-label="English Language" customlabelreplaced=""> | |
| 775 | + <span class="ml-2" customlabelreplaced="">English</span> | |
| 776 | + </a> | |
| 777 | + </li> | |
| 778 | + <li customlabelreplaced=""> | |
| 779 | + <a data-selenium-id="lang-1" class="dropdown-item px-3 language-drowndown-item" href="javascript:getPack('fr-ca')" aria-label="French Language" customlabelreplaced=""> | |
| 780 | + <span class="ml-2" customlabelreplaced="">French</span> | |
| 781 | + </a> | |
| 782 | + </li> | |
| 783 | + </ul> | |
| 784 | + </div> | |
| 785 | + <input type="hidden" id="translate-request-verification-token" name="translate-request-verification-token" value="CfDJ8CtwjdPBESBMu9DVKc5_ZZ1PXyrrEsWAx2xoDEklmmfRqu4Wo9sIgqBiOH4RKJrbn_oAFPg4JIWXfbKSnQ5nimFfpOfq1AKU5zFhySttqQJTBhS5IYuPNNCCcD39DOwfRniAil2TufsV6frYTFiaLoY"> | |
| 786 | + | |
| 787 | + | |
| 788 | + | |
| 789 | + | |
| 790 | + <div class="dropdown ysi-login-link-widget ysi-login-dropdown text-uppercase" style="max-width: max-content;" customlabelreplaced="" aria-hidden="true"> | |
| 791 | + | |
| 792 | + <a data-selenium-id="loginlinks" class="dropdown-toggle btn " style="" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" customlabelreplaced=""> | |
| 793 | + <span aria-hidden="true" class="fas fa-user mr-1" customlabelreplaced=""></span> | |
| 794 | + <span customlabelreplaced="">Login</span> | |
| 795 | + </a> | |
| 796 | + | |
| 797 | + <div class="dropdown-menu dropdown-menu-right" customlabelreplaced=""> | |
| 798 | + | |
| 799 | + | |
| 800 | + | |
| 801 | + <ul class="dropdown-list list-unstyled mb-0" customlabelreplaced=""> | |
| 802 | + <li customlabelreplaced=""> | |
| 803 | + <a data-selenium-id="residentlogin" class="dropdown-item track-resident-login" href="https://brigil.securecafe.com/residentservices/apartmentsforrent/userlogin.aspx?dropdownlangid=999" rel="noopener" target="_Blank" customlabelreplaced=""> Resident <span class="sr-only" customlabelreplaced="">Login Opens in a new tab</span> </a> | |
| 804 | + </li> | |
| 805 | + | |
| 806 | + <li customlabelreplaced=""> | |
| 807 | + <a data-selenium-id="applicantlogin" class="dropdown-item track-applicant-login" href="https://brigil.securecafe.com/onlineleasing/apartmentsforrent/guestlogin.aspx?dropdownlangid=999" rel="noopener" target="_Blank" customlabelreplaced=""> Applicant <span class="sr-only" customlabelreplaced="">Login Opens in a new tab</span> </a> | |
| 808 | + </li> | |
| 809 | + | |
| 810 | + </ul> | |
| 811 | + </div> | |
| 812 | + </div> | |
| 813 | + | |
| 814 | +</div></div></div></div><div class="py-5 text-primary bg-white ysi-row position-absolute mega-menu w-100 collapse mega-menu-01" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""><div class="col-12 offset-0 d-flex justify-content-start align-items-start flex-column text-left col-lg-2" customlabelreplaced=""> | |
| 815 | + <div class="font-base py-1 h5 font-weight-bold" customlabelreplaced=""> | |
| 816 | + Residential | |
| 817 | + </div> | |
| 818 | + <a href="/for-sale/our-communities" class="py-1 text-decoration-none mb-2" data-selenium-id="forsaleaspx_MenuLink" customlabelreplaced=""><span class="nu nu-arrow-right" aria-hidden="true" customlabelreplaced=""></span> For Sale</a> | |
| 819 | + <a href="/for-rent/our-communities" class="py-1 text-decoration-none mb-2" data-selenium-id="forrentaspx_MenuLink" customlabelreplaced=""><span class="nu nu-arrow-right" aria-hidden="true" customlabelreplaced=""></span> For Rent</a> | |
| 820 | + </div><div class="communities-nav-links col-12 offset-0 d-flex justify-content-start align-items-start flex-column text-left col-lg-4" customlabelreplaced=""><div class="temp-d-none" customlabelreplaced=""> | |
| 821 | + | |
| 822 | +<div class="font-base py-1 h5 font-weight-bold" customlabelreplaced=""> | |
| 823 | + Collections | |
| 824 | + </div> | |
| 825 | + <a href="/aura" class="py-1 text-decoration-none mb-2" data-selenium-id="auracollectionaspx_MenuLink" customlabelreplaced=""><span class="nu nu-arrow-right" aria-hidden="true" customlabelreplaced=""></span> Aura Collection</a> | |
| 826 | + <a href="/horizon" class="py-1 text-decoration-none mb-2" data-selenium-id="horizoncollectionaspx_MenuLink" customlabelreplaced=""><span class="nu nu-arrow-right" aria-hidden="true" customlabelreplaced=""></span> Horizon Collection</a> | |
| 827 | + <a href="/edition" class="py-1 text-decoration-none mb-2" data-selenium-id="editioncollectionaspx_MenuLink" customlabelreplaced=""><span class="nu nu-arrow-right" aria-hidden="true" customlabelreplaced=""></span> Edition Collection</a> | |
| 828 | + <a href="/comfort" class="py-1 text-decoration-none mb-2" data-selenium-id="comfortcollectionaspx_MenuLink" customlabelreplaced=""><span class="nu nu-arrow-right" aria-hidden="true" customlabelreplaced=""></span> Comfort Collection</a> | |
| 829 | + | |
| 830 | +</div> | |
| 831 | + | |
| 832 | + <div class="font-base py-1 h5 font-weight-bold" customlabelreplaced=""> | |
| 833 | + Our Communities | |
| 834 | + </div> | |
| 835 | + | |
| 836 | + | |
| 837 | + <ul class="list-unstyled" customlabelreplaced=""> | |
| 838 | + <li customlabelreplaced=""><a class="color-inherit" href="/le-columbia" customlabelreplaced="">Le Columbia </a></li> | |
| 839 | + <li customlabelreplaced=""><a class="color-inherit" href="/domaine-du-vieux-port/default" customlabelreplaced="">Domaine du Vieux-Port </a></li> | |
| 840 | + <li customlabelreplaced=""><a class="color-inherit" href="/chateau-golf" customlabelreplaced="">Château Golf </a></li> | |
| 841 | + <li customlabelreplaced=""><a class="color-inherit" href="/champlain-village-urbain" customlabelreplaced="">Champlain Village Urbain </a></li> | |
| 842 | + <li customlabelreplaced=""><a class="color-inherit" href="/ruisseaux-lepine-i/default" customlabelreplaced="">Ruisseaux Lépine </a></li> | |
| 843 | + <li customlabelreplaced=""><a class="color-inherit" href="/ruisseaux-lepine-ii/default" customlabelreplaced="">Ruisseaux Lépine II </a></li> | |
| 844 | + <li customlabelreplaced=""><a class="color-inherit" href="/horizon-condo" customlabelreplaced="">Horizon </a></li> | |
| 845 | + <li customlabelreplaced=""><a class="color-inherit" href="/aura-rivermead/default.aspx" customlabelreplaced="">Aura – Rivermead </a></li> | |
| 846 | + <li customlabelreplaced=""><a class="color-inherit" href="/canevas" customlabelreplaced="">Canevas </a></li> | |
| 847 | + <li customlabelreplaced=""><a class="color-inherit" href="/plateau-du-parc/default.aspx" customlabelreplaced="">Plateau du Parc </a></li> | |
| 848 | + <li customlabelreplaced=""><a class="color-inherit" href="/jardins-mcconnell/default.aspx" customlabelreplaced="">Jardins McConnell </a></li> | |
| 849 | + <li customlabelreplaced=""><a class="color-inherit" href="/the-dale" customlabelreplaced="">The Dale </a></li> | |
| 850 | + <li customlabelreplaced=""><a class="color-inherit" href="/929-richmond" customlabelreplaced="">929 Richmond </a></li> | |
| 851 | + <li customlabelreplaced=""><a class="color-inherit" href="/baseline-rd" customlabelreplaced="">Baseline </a></li> | |
| 852 | + <li customlabelreplaced=""><a class="color-inherit" href="/petries-landing-i" customlabelreplaced="">Petrie’s Landing I </a></li> | |
| 853 | + <li customlabelreplaced=""><a class="color-inherit" href="/petries-landing-ii" customlabelreplaced="">Petrie’s Landing II </a></li> | |
| 854 | + <li customlabelreplaced=""><a class="color-inherit" href="/center-park-st/default" customlabelreplaced="">Center Park </a></li> | |
| 855 | + <li customlabelreplaced=""><a class="color-inherit" href="/460-st-laurent/default" customlabelreplaced="">460 St-Laurent </a></li> | |
| 856 | + <li customlabelreplaced=""><a class="color-inherit" href="/kanata-lakes-av" customlabelreplaced="">Kanata Lakes </a></li> | |
| 857 | + | |
| 858 | + | |
| 859 | + </ul> | |
| 860 | + <div id="additionalmenuid-1193-5270" style="display: none;" customlabelreplaced="">1193</div> | |
| 861 | +</div><div class="col-12 offset-0 d-flex justify-content-stretch align-items-stretch flex-column text-left col-lg-3" customlabelreplaced=""> <div class="ysi-picture-widget ysi-picture-wrapper h-100 " customlabelreplaced=""> | |
| 862 | + <a href="/for-rent/our-communities" class="" title="A modern living room with a fireplace and a dining table." aria-label="A modern living room with a fireplace and a dining table." customlabelreplaced=""><picture> | |
| 863 | +<source media="(min-width: 4500px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1287,h_1080,c_crop/q_auto,f_auto,c_lfill,w_800,h_500,g_auto/s3/2/252329/mega-menu-residential-brigil.jpg"> | |
| 864 | +<source media="(min-width: 3840px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1287,h_1080,c_crop/q_auto,f_auto,c_lfill,w_1125,h_500,g_auto/s3/2/252329/mega-menu-residential-brigil.jpg"> | |
| 865 | +<source media="(min-width: 3200px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1287,h_1080,c_crop/q_auto,f_auto,c_lfill,w_960,h_500,g_auto/s3/2/252329/mega-menu-residential-brigil.jpg"> | |
| 866 | +<source media="(min-width: 2560px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1287,h_1080,c_crop/q_auto,f_auto,c_lfill,w_800,h_500,g_auto/s3/2/252329/mega-menu-residential-brigil.jpg"> | |
| 867 | +<source media="(min-width: 1920px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1287,h_1080,c_crop/q_auto,f_auto,c_lfill,w_640,h_500,g_auto/s3/2/252329/mega-menu-residential-brigil.jpg"> | |
| 868 | +<source media="(min-width: 1440px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1287,h_1080,c_crop/q_auto,f_auto,c_lfill,w_480,h_500,g_auto/s3/2/252329/mega-menu-residential-brigil.jpg"> | |
| 869 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1287,h_1080,c_crop/q_auto,f_auto,c_lfill,w_360,h_500,g_auto/s3/2/252329/mega-menu-residential-brigil.jpg"> | |
| 870 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1287,h_1080,c_crop/q_auto,f_auto,c_lfill,w_300,h_500,g_auto/s3/2/252329/mega-menu-residential-brigil.jpg"> | |
| 871 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1287,h_1080,c_crop/q_auto,f_auto,c_limit,w_992/s3/2/252329/mega-menu-residential-brigil.jpg"> | |
| 872 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1287,h_1080,c_crop/q_auto,f_auto,c_limit,w_768/s3/2/252329/mega-menu-residential-brigil.jpg"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1287,h_1080,c_crop/q_auto,f_auto,c_limit,w_576/s3/2/252329/mega-menu-residential-brigil.jpg" class="w-100 h-100 img-fluid" alt="A modern living room with a fireplace and a dining table." title="For Rent" loading="lazy"> | |
| 873 | +</picture> | |
| 874 | +</a> | |
| 875 | + | |
| 876 | + | |
| 877 | + <div class="picture-title-and-caption" customlabelreplaced=""> | |
| 878 | + <div class="picture-title h5" customlabelreplaced="">For Rent</div> | |
| 879 | + </div> | |
| 880 | + | |
| 881 | + </div> | |
| 882 | + | |
| 883 | +</div><div class="col-12 offset-0 d-flex justify-content-stretch align-items-stretch flex-column text-left col-lg-3" customlabelreplaced=""> <div class="ysi-picture-widget ysi-picture-wrapper h-100 " customlabelreplaced=""> | |
| 884 | + <a href="/for-sale/our-communities" class="" title="A street view of a city with people walking and biking." aria-label="A street view of a city with people walking and biking." customlabelreplaced=""><picture> | |
| 885 | +<source media="(min-width: 4500px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1727,h_1080,c_crop/q_auto,f_auto,c_lfill,w_800,h_500,g_auto/s3/2/252329/mega-menu-commercial_brigil.jpg"> | |
| 886 | +<source media="(min-width: 3840px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1727,h_1080,c_crop/q_auto,f_auto,c_lfill,w_1125,h_500,g_auto/s3/2/252329/mega-menu-commercial_brigil.jpg"> | |
| 887 | +<source media="(min-width: 3200px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1727,h_1080,c_crop/q_auto,f_auto,c_lfill,w_960,h_500,g_auto/s3/2/252329/mega-menu-commercial_brigil.jpg"> | |
| 888 | +<source media="(min-width: 2560px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1727,h_1080,c_crop/q_auto,f_auto,c_lfill,w_800,h_500,g_auto/s3/2/252329/mega-menu-commercial_brigil.jpg"> | |
| 889 | +<source media="(min-width: 1920px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1727,h_1080,c_crop/q_auto,f_auto,c_lfill,w_640,h_500,g_auto/s3/2/252329/mega-menu-commercial_brigil.jpg"> | |
| 890 | +<source media="(min-width: 1440px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1727,h_1080,c_crop/q_auto,f_auto,c_lfill,w_480,h_500,g_auto/s3/2/252329/mega-menu-commercial_brigil.jpg"> | |
| 891 | +<source media="(min-width: 1200px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1727,h_1080,c_crop/q_auto,f_auto,c_lfill,w_360,h_500,g_auto/s3/2/252329/mega-menu-commercial_brigil.jpg"> | |
| 892 | +<source media="(min-width: 992px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1727,h_1080,c_crop/q_auto,f_auto,c_lfill,w_300,h_500,g_auto/s3/2/252329/mega-menu-commercial_brigil.jpg"> | |
| 893 | +<source media="(min-width: 768px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1727,h_1080,c_crop/q_auto,f_auto,c_limit,w_992/s3/2/252329/mega-menu-commercial_brigil.jpg"> | |
| 894 | +<source media="(min-width: 576px)" srcset="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1727,h_1080,c_crop/q_auto,f_auto,c_limit,w_768/s3/2/252329/mega-menu-commercial_brigil.jpg"><img src="https://resource.rentcafe.com/image/upload/x_0,y_0,w_1727,h_1080,c_crop/q_auto,f_auto,c_limit,w_576/s3/2/252329/mega-menu-commercial_brigil.jpg" class="w-100 h-100 img-fluid" alt="A street view of a city with people walking and biking." title="For Sale" loading="lazy"> | |
| 895 | +</picture> | |
| 896 | +</a> | |
| 897 | + | |
| 898 | + | |
| 899 | + <div class="picture-title-and-caption" customlabelreplaced=""> | |
| 900 | + <div class="picture-title h5" customlabelreplaced="">For Sale</div> | |
| 901 | + </div> | |
| 902 | + | |
| 903 | + </div> | |
| 904 | + | |
| 905 | +</div></div></div></div></header> | |
| 906 | + | |
| 907 | + <!--do not remove--> | |
| 908 | + <main id="main-content"><div class="bg-white container-fluid p-0" customlabelreplaced=""><div class="row no-gutters" customlabelreplaced=""><div class="justify-content-start align-items-stretch flex-column d-flex text-left col-12 col-lg-12" customlabelreplaced=""> | |
| 909 | + | |
| 910 | + | |
| 911 | + | |
| 912 | + | |
| 913 | + | |
| 914 | + | |
| 915 | + | |
| 916 | + | |
| 917 | + | |
| 918 | + | |
| 919 | + | |
| 920 | + | |
| 921 | + | |
| 922 | + | |
| 923 | +<style>.property-details-section:not(:has(.flex-column>*)){display:none}</style> | |
| 924 | + | |
| 925 | +<style>.photogallery{width:100%;margin:0 auto;position:relative}.photogallery:before{content:'';display:block;width:1px;height:0;padding-bottom:33%;margin-left:-1px;float:left}.photogallery:after{content:"";display:table;clear:both}.photogallery[data-has-height="true"] .carousel-item .item a,.photogallery[data-has-height="true"] .carousel-item .item .yardi-widget-picture{display:flex;width:100%;height:100%}.photogallery[data-has-height="true"] .carousel-item .item picture{display:flex;justify-content:center;align-items:center;height:100%;width:100%}.photogallery .carousel-inner{background:rgba(0,0,0,0.05)}.photogallery .carousel-item{word-wrap:break-word;text-align:center}.photogallery .carousel-item .item{display:inline-block;vertical-align:top;position:relative;overflow:hidden;width:100%}.photogallery .carousel-item .item img{transition:all .2s linear;height:100%;width:100%}@supports (object-fit: cover){.photogallery .carousel-item .item img{object-fit:cover}}.photogallery .carousel-item .item-caption{display:block;background:rgba(0,0,0,0.6);padding:.86em 25px .86em 15px;position:absolute;bottom:0;left:0;right:0;transition:transform 0.3s ease;color:#fff;font-size:0.86rem;line-height:1.6em;max-height:3.2em;overflow:hidden;z-index:2;box-sizing:content-box;width:auto !important;padding-top:0 !important;padding-bottom:0 !important;border-top:.6em solid transparent !important;border-bottom:.6em solid transparent !important}.photogallery .carousel-item .item-caption:before{content:"...";display:block;float:right;line-height:inherit;padding:1.6em 0 0;font-weight:700;height:calc(1.6em + 1px);overflow:visible}@supports (display: -webkit-box) and (-webkit-line-clamp: 2) and (-webkit-box-orient: vertical){.photogallery .carousel-item .item-caption{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.photogallery .carousel-item .item-caption:before{display:none}}.photogallery .carousel-item .item a:has(img):focus{outline-offset:-2px !important;outline-width:2px !important}.photogallery .carousel-item .item a:has(img):focus .item-caption{right:2px;bottom:2px;left:2px}@media (hover: hover){.photogallery .carousel-item .item{background:transparent}.photogallery .carousel-item img,.photogallery .carousel-item img:not(:last-child){padding-bottom:0}.photogallery .carousel-item .item a .item-caption{bottom:0;max-height:none;padding-bottom:10px;transform:translateY(101%)}.photogallery .carousel-item .item a .item-caption:after{display:none}.photogallery .carousel-item .item a:hover .item-caption,.photogallery .carousel-item .item a:focus .item-caption{transform:translateY(0)}}.photogallery .item-index{position:absolute;font-size:.93rem;top:.3em;right:.3em;background:rgba(0,0,0,0.8);color:#fff;line-height:1em;padding:.3em}@media (min-width: 576px){.photogallery .item-index{display:none}}@media (hover: hover){.photogallery.key-activated .carousel-item.active .item a .item-caption{transform:translateY(0)}}.gallery-prev,.gallery-next{position:absolute;display:block;line-height:0px;font-size:0px;cursor:pointer;background:transparent;color:transparent;top:50%;-webkit-transform:translate(0, -50%);-ms-transform:translate(0, -50%);transform:translate(0, -50%);border:none;outline:none;width:auto;bottom:auto;z-index:4;padding:15px;transition:opacity .2s;text-decoration:none}.gallery-prev:hover,.gallery-prev:focus,.gallery-next:hover,.gallery-next:focus{outline:none;background:transparent;color:transparent}.gallery-prev:hover:before,.gallery-prev:focus:before,.gallery-next:hover:before,.gallery-next:focus:before{opacity:1}.gallery-prev:before,.gallery-next:before{font-family:"Font Awesome 5";font-weight:900;font-size:36px;line-height:1;color:#fff;opacity:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-shadow:0 0 12px #000}@media (hover: hover){.gallery-prev:before,.gallery-next:before{font-size:36px}}.gallery-prev{left:1%}.gallery-prev:before{content:"\f137"}.gallery-next{right:1%}.gallery-next:before{content:"\f138"}.carousel-indicators.gallery-thumbnails>*:focus{outline:none !important;box-shadow:none !important}.carousel-indicators.gallery-thumbnails>*:focus:after{opacity:1;box-shadow:inset 0 0 0 2px #000, inset 0 0 0 4px #2491eb, inset 0 0 0 6px #fff}.carousel-indicators.gallery-thumbnails>*:focus img{opacity:1;transform:scale3d(1.05, 1.05, 1)}.carousel-indicators.gallery-thumbnails>*:focus-visible:after{box-shadow:inset 0 0 0 0px #000, inset 0 0 0 3px #2491eb, inset 0 0 0 5px #fff !important;outline:2px solid rgba(11,161,242,0.9) !important}.carousel-item a:has(img):focus{outline:none !important;box-shadow:none !important}.carousel-item a:has(img):focus:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;box-shadow:inset 0 0 0 2px #000, inset 0 0 0 4px #2491eb, inset 0 0 0 6px #fff}.carousel-item a:has(img):focus:not(:focus-visible):after{box-shadow:none !important;outline:none !important}.carousel-item a:has(img):focus-visible:after{box-shadow:inset 0 0 0 2px #000, inset 0 0 0 6px #2491eb, inset 0 0 0 8px #fff !important;outline:2px solid rgba(11,161,242,0.9) !important}.photogallery .carousel-item .item a:focus .item-caption{right:3px;bottom:3px;left:3px}.carousel-control-next:focus,.carousel-control-prev:focus{box-shadow:0 0 0 2px #2491eb, 0 0 0 3px #000, 0 0 0 2px #fff inset !important;outline:1px solid rgba(11,161,242,0.9) !important}.carousel-control-next:focus-visible,.carousel-control-prev:focus-visible{box-shadow:0 0 0 3px #2491eb, 0 0 0 5px #000, 0 0 0 2px #fff inset !important;outline:2px solid rgba(11,161,242,0.9) !important}.carousel[data-gallery-type="masonry"] .carousel-item a:focus img,.carousel[data-gallery-type="tabs"] .carousel-item a:focus img,.carousel[data-gallery-type="tiled"] .carousel-item a:focus img{transform:scale3d(1.05, 1.05, 1)}.carousel[data-transition='crossfade'] .carousel-item{transition:transform .6s ease;opacity:1;z-index:1}.carousel[data-transition='crossfade'] .carousel-item-prev,.carousel[data-transition='crossfade'] .active.carousel-item-left,.carousel[data-transition='crossfade'] .carousel-item-next,.carousel[data-transition='crossfade'] .active.carousel-item-right{transform:scale(1.001, 1.001);z-index:2}.carousel[data-transition='crossfade'] .active.landscape.carousel-item-left,.carousel[data-transition='crossfade'] .active.portrait.carousel-item-left,.carousel[data-transition='crossfade'] .active.landscape.carousel-item-right,.carousel[data-transition='crossfade'] .active.portrait.carousel-item-right{animation:.6s both reverse carouselCrossFadeIn}.carousel[data-transition='crossfade'] .carousel-item-next.carousel-item-left,.carousel[data-transition='crossfade'] .carousel-item-prev.carousel-item-right{transform:scale(1, 1);animation:.6s both carouselCrossFadeIn;z-index:3}@keyframes carouselCrossFadeIn{from{opacity:0}to{opacity:1}}.carousel[data-transition='none'] .carousel-item{transition:none}.carousel-ysi-lazyinit .carousel-control-next,.carousel-ysi-lazyinit .carousel-control-prev,.carousel-ysi-lazyinit .carousel-indicators{display:none}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel.picture-overlay:after{content:none}.carousel.picture-overlay.overlay-10,.carousel.picture-overlay.overlay-20,.carousel.picture-overlay.overlay-30,.carousel.picture-overlay.overlay-40,.carousel.picture-overlay.overlay-50,.carousel.picture-overlay.overlay-60,.carousel.picture-overlay.overlay-70,.carousel.picture-overlay.overlay-80,.carousel.picture-overlay.overlay-90{background-color:initial}.carousel.picture-overlay.overlay-10 picture:after{background-color:rgba(0,0,0,0.1)}.carousel.picture-overlay.overlay-20 picture:after{background-color:rgba(0,0,0,0.2)}.carousel.picture-overlay.overlay-30 picture:after{background-color:rgba(0,0,0,0.3)}.carousel.picture-overlay.overlay-40 picture:after{background-color:rgba(0,0,0,0.4)}.carousel.picture-overlay.overlay-50 picture:after{background-color:rgba(0,0,0,0.5)}.carousel.picture-overlay.overlay-60 picture:after{background-color:rgba(0,0,0,0.6)}.carousel.picture-overlay.overlay-70 picture:after{background-color:rgba(0,0,0,0.7)}.carousel.picture-overlay.overlay-80 picture:after{background-color:rgba(0,0,0,0.8)}.carousel.picture-overlay.overlay-90 picture:after{background-color:rgba(0,0,0,0.9)}.carousel.picture-overlay picture{position:relative;width:100%;display:contents}.carousel.picture-overlay picture:after{content:"";position:absolute;width:100%;height:100%;background:rgba(0,0,0,0.4);top:0;left:0;z-index:1;pointer-events:none}.carousel[data-gallery-type="stackedthumbnailcarousel"] .carousel-indicators.gallery-thumbnails>*:not(.active):focus:after{opacity:1;box-shadow:inset 0 0 0 2px #000, inset 0 0 0 5px #2491eb, inset 0 0 0 7px #fff !important;outline:2px solid rgba(11,161,242,0.9) !important}.photogallery .carousel .carousel-item{padding:0}.photogallery .carousel .carousel-item .item{display:flex;align-items:center;justify-content:center;position:relative;width:auto}.photogallery .carousel .carousel-item .item a{position:relative;overflow:hidden;max-height:100%}.photogallery .carousel-item .item.item-with-ratio{position:absolute;top:0;right:0;bottom:0;left:0}.photogallery .carousel-item .item.item-with-ratio a{display:inline-flex;max-width:100%;max-height:100%;align-items:center;justify-content:center}.photogallery .carousel-item .item.item-with-ratio img{flex:0 0 auto;max-width:100%;max-height:100%}.carousel-indicators.gallery-dots{bottom:unset;top:100%}.d-flex>.photogallery .carousel-indicators.gallery-dots{top:unset}.dots-on-top .carousel-indicators.gallery-dots{bottom:auto;top:0;position:absolute;padding:0 10px;display:flex;justify-content:flex-end}.container .photogallery .item img{max-height:calc(100vw - 15px - 15px);width:unset;height:unset;max-width:100%;object-fit:unset;transition:none}@media (min-width: 576px){.container .photogallery .item img{max-height:calc(540px - 15px - 15px)}}@media (min-width: 768px){.container .photogallery .item img{max-height:calc(720px - 15px - 15px)}}@media (min-width: 992px){.container .photogallery .item img{max-height:calc(960px - 15px - 15px)}}@media (min-width: 1200px){.container .photogallery .item img{max-height:calc(1140px - 15px - 15px)}}.container .photogallery .carousel-inner-wrapper:before{content:'';display:block;width:1px;height:0;padding-bottom:33.3333%;margin-left:-1px;float:left;background:transparent}.photogallery:before{float:none;display:inline;margin-left:auto;width:1px}.photogallery .carousel-inner-wrapper{vertical-align:middle;width:100%;display:inline-flex;align-items:center}.photogallery[data-gallery-type="default"]:not(.normalized) .carousel-control-prev,.photogallery[data-gallery-type="default"]:not(.normalized) .carousel-control-next{opacity:0}.photogallery[data-gallery-type="default"] .carousel-inner{transition:background .2s}.photogallery[data-gallery-type="default"]:not(.normalized) .carousel-inner{background:none}.photogallery[data-gallery-type="default"][data-has-height="true"] .carousel-item .item picture img{width:100%;height:100%;object-fit:contain}.photogallery[data-gallery-type="default"][data-has-height="true"] .carousel-item .item picture img.object-fit-cover{min-width:100%;min-height:100%;object-fit:cover}@media (min-width: 576px){.carousel[data-slide-size] .carousel-item{width:50%}.carousel[data-slide-size="1"] .carousel-item{width:100%}}@media (min-width: 768px){.carousel[data-slide-size] .carousel-item{width:33.33%}.carousel[data-slide-size="1.5"] .carousel-item,.carousel[data-slide-size="2"] .carousel-item{width:50%}.carousel[data-slide-size="1"] .carousel-item{width:100%}.carousel[data-slide-size="1.5"] .carousel-inner{width:133%}.carousel[data-slide-size="1.5"] .gallery-next{right:25.56%}.carousel[data-slide-size="2.5"] .carousel-inner,.carousel[data-slide-size="3.5"] .carousel-inner,.carousel[data-slide-size="4.5"] .carousel-inner{width:120%}.carousel[data-slide-size="2.5"] .gallery-next,.carousel[data-slide-size="3.5"] .gallery-next,.carousel[data-slide-size="4.5"] .gallery-next{right:17.5%}}@media (min-width: 992px){.carousel[data-slide-size] .carousel-item{width:20%}.carousel[data-slide-size="3.5"] .carousel-item,.carousel[data-slide-size="4"] .carousel-item{width:25%}.carousel[data-slide-size="2.5"] .carousel-item,.carousel[data-slide-size="3"] .carousel-item{width:33.33%}.carousel[data-slide-size="1.5"] .carousel-item,.carousel[data-slide-size="2"] .carousel-item{width:50%}.carousel[data-slide-size="1"] .carousel-item{width:100%}.carousel[data-slide-size="3.5"] .carousel-inner{width:114%}.carousel[data-slide-size="3.5"] .gallery-next{right:13.16%}.carousel[data-slide-size="4.5"] .carousel-inner{width:111%}.carousel[data-slide-size="4.5"] .gallery-next{right:10.81%}}.on-deck:not(.active){display:block;position:absolute;top:0}.carousel[data-gallery-type="cards"] .carousel-item .item.item-with-ratio a{display:flex;margin:auto;height:100%;max-height:100% !important;flex-direction:column;justify-content:space-between}.carousel[data-gallery-type="cards"] .item-index{display:block;position:relative;right:0;top:0 !important;background:transparent;color:inherit;padding-top:.5em !important;padding-bottom:.5em !important}.carousel[data-gallery-type="cards"] .card,.carousel[data-gallery-type="cards"] .panel-thumbnail{height:100%}.carousel[data-gallery-type="cards"] .img-info{position:relative;width:100%;background:rgba(255,255,255,0.85);transform:none;padding:0}.carousel[data-gallery-type="cards"] .carousel-inner{background:transparent}.carousel[data-gallery-type="cards"] .featured-property-card .card-img-top{padding:0 0 66%;height:0;overflow:hidden;position:relative}.carousel[data-gallery-type="cards"] .featured-property-card .card-img-top a{display:block;position:absolute;height:100%;width:100%;background:rgba(0,0,0,0.025)}.carousel[data-gallery-type="cards"] .featured-property-card .card-img-top img{position:absolute;top:50%;left:0;right:0;transform:translateY(-50%)}.carousel[data-gallery-type="cards"] .item.col{height:100%;padding-left:5px;padding-right:5px}</style> | |
| 926 | + | |
| 927 | +<style>:root{--primary-color: $primary}#innerpage main>.container-fluid.p-0:has(#rentestimatepagecontainer){overflow:unset}#rentestimatepagecontainer{--rentestimate-iframe-offset: 0;--rentestimate-clip-top: 0}#rentestimatepagecontainer iframe{width:100%;display:block;height:0;border:0;clip-path:rect(var(--rentestimate-clip-top, 0) 100% 100% 0)}#iframeheader{background:inherit;background:#fff;top:var(--rentestimate-iframe-offset, 0);position:sticky;z-index:2;box-shadow:none;transition:box-shadow .3s}#iframeheader.sticky{box-shadow:0 .125rem .25rem -.25rem #00000085}#iframeheader .sticky-show{display:none}#iframeheader.sticky .sticky-show{display:block}#iframeFooter{box-shadow:0 -.125rem .25rem -.25rem #00000085;background:#fff;top:100dvh;position:absolute;left:0;right:0;z-index:1}#iframeFooter.sticky{bottom:-1px;position:sticky;top:unset !important}#sendEstimateModal .modal-content{overflow:hidden}#sendEstimateModal .modal-header{position:relative;z-index:2}#sendEstimateModal .invalid-feedback{color:#b51f2e;font-size:0.75rem;line-height:1.25}#sendEstimateModal .sms-optin-check .form-check-label::before,#sendEstimateModal .sms-optin-check .form-check-label::after{content:none !important;display:none !important;border:0 !important;background:none !important;box-shadow:none !important;margin-top:.3rem !important;margin:0 !important;padding:0 !important;min-width:0 !important;width:0 !important;height:0 !important;position:static !important;transform:none !important;outline:none !important}#sendEstimateModal .optin-terms,#sendEstimateModal .sms-optin-check .form-check-label,#sendEstimateModal .sms-optin-check .form-check-label p,#sendEstimateModal #costestimate-smsopttext,#sendEstimateModal #costestimate-smsopttext p,#sendEstimateModal .form-group:has(.sms-optin-check)>.mb-1{font-size:0.8125rem;line-height:1.45}#sendEstimateModal .sms-optin-check .form-check-label p:last-child,#sendEstimateModal #costestimate-smsopttext p:last-child{margin-bottom:0}#sendEstimateModal .optin-terms a,#sendEstimateModal .sms-optin-check .form-check-label a,#sendEstimateModal #costestimate-smsopttext a{font-size:inherit}#sendEstimateModal .form-group.position-relative #emailIcon.check-icon{position:absolute;right:0.75rem;top:50%;transform:translateY(-50%);pointer-events:none;line-height:1}#RentEstimateModal .modal-body{height:calc(100vh - 60px);min-height:calc(100vh - 60px);display:flex;flex-direction:column;overflow:hidden;padding:0}#RentEstimateModal #rentestimatepagecontainer{height:100% !important;min-height:100% !important;display:flex !important;flex-direction:column !important;overflow:hidden !important;position:relative !important;--rentestimate-clip-top: 0 !important;--rentestimate-iframe-offset: 0 !important}#RentEstimateModal #rentestimatepagecontainer iframe{flex:1 1 auto !important;height:calc(100vh - 60px) !important;min-height:calc(100vh - 60px) !important;max-height:calc(100vh - 60px) !important;width:100% !important;border:0 !important;clip-path:none !important;display:block !important;padding-bottom:5%}@media (max-width: 991.98px){#RentEstimateModal #rentestimatepagecontainer iframe{padding-bottom:45%}}#sendEstimateDescription{background:#fff;background:oklch(from #2D3D4D 0.98 0.02 h);background-size:cover}#sendEstimateDescription.has-background-image>div{margin-top:10rem;background:#fffd}#sendEstimateDescription svg.circle-small{height:.5rem;margin:0 .5rem}.message{display:flex;align-items:flex-start;gap:10px;padding:12px 20px;margin:10px 0;border-radius:4px;font-size:16px}.sicon{font-size:40px;color:#28a745;margin-top:0.75rem;margin-right:0.5rem}.eicon{font-size:40px;color:#dc3545;margin-top:0.75rem;margin-right:0.5rem}.success{background-color:#d4edda;border:1px solid #28a745}.error{background-color:#f8d7da;border:1px solid #dc3545}.left-48px{left:-48px !important}@media screen and (max-width: 768px){.left-48px{left:0px !important}}.gap-1{gap:1rem !important}.custom-text-lightgray{color:lightgray !important}</style> | |
| 928 | + | |
| 929 | + | |
| 930 | +<div class="bg-white container-fluid p-0 ysi-row speciality_property_detail_page" customlabelreplaced=""><div class="row no-gutters" customlabelreplaced=""><div class="col-12 col-lg-12" customlabelreplaced=""><div class="px-xl-8 px-md-4 px-3" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""><div class="col-12 px-md-3 col-lg-12" customlabelreplaced=""> | |
| 931 | + <nav aria-label="breadcrumb"> | |
| 932 | + <ol class="breadcrumb mt-3 p-0"> | |
| 933 | + <li class="breadcrumb-item" customlabelreplaced=""><a href="/" customlabelreplaced="">Home </a></li> | |
| 934 | + <li class="breadcrumb-item" customlabelreplaced=""><a href="/qc/our-communities" customlabelreplaced="">QC </a></li> | |
| 935 | + <li class="breadcrumb-item" customlabelreplaced=""><a href="/qc/gatineau/our-communities" customlabelreplaced="">Gatineau </a></li> | |
| 936 | + <li class="breadcrumb-item active" aria-current="page" customlabelreplaced="">Aura Rivermead</li> | |
| 937 | + </ol> | |
| 938 | + </nav> | |
| 939 | + </div></div></div></div><div class="px-xl-5 py-md-5 px-md-3 py-4 text-white bg-primary" customlabelreplaced=""><div class="container-fluid" customlabelreplaced=""><div class="row" customlabelreplaced=""><div class="col-12 col-lg-12" customlabelreplaced=""> | |
| 940 | +<!-- Address row --> | |
Diff truncated — file too large.